From 90cd9604a7db32fbec45a040a7bdb6aaa89b565c Mon Sep 17 00:00:00 2001 From: alex-pinkus <62194897+alex-pinkus@users.noreply.github.com> Date: Sat, 14 Aug 2021 09:10:20 -0700 Subject: [PATCH 001/151] Initial commit --- .gitignore | 104 +++++++++++++++++++++++++++++++++++++++++++++++++++++ LICENSE | 21 +++++++++++ README.md | 1 + 3 files changed, 126 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..67045665d --- /dev/null +++ b/.gitignore @@ -0,0 +1,104 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env +.env.test + +# parcel-bundler cache (https://parceljs.org/) +.cache + +# Next.js build output +.next + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and *not* Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port diff --git a/LICENSE b/LICENSE new file mode 100644 index 000000000..f158d7005 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +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/README.md b/README.md new file mode 100644 index 000000000..13d5f0c9d --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# experimental-tree-sitter-swift \ No newline at end of file From d888dea5fdff1d7da88ecdc90bcb893f5718e04a Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Wed, 25 Aug 2021 22:13:41 -0700 Subject: [PATCH 002/151] Initial package setup and README --- .gitignore | 108 ++------------------------------------- Cargo.toml | 26 ++++++++++ README.md | 82 ++++++++++++++++++++++++++++- binding.gyp | 19 +++++++ bindings/node/binding.cc | 28 ++++++++++ bindings/node/index.js | 19 +++++++ bindings/rust/build.rs | 40 +++++++++++++++ bindings/rust/lib.rs | 52 +++++++++++++++++++ grammar.js | 8 +++ package.json | 29 +++++++++++ src/scanner.c | 0 11 files changed, 306 insertions(+), 105 deletions(-) create mode 100644 Cargo.toml create mode 100644 binding.gyp create mode 100644 bindings/node/binding.cc create mode 100644 bindings/node/index.js create mode 100644 bindings/rust/build.rs create mode 100644 bindings/rust/lib.rs create mode 100644 grammar.js create mode 100644 package.json create mode 100644 src/scanner.c diff --git a/.gitignore b/.gitignore index 67045665d..c299b96f0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,104 +1,4 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -lerna-debug.log* - -# Diagnostic reports (https://nodejs.org/api/report.html) -report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json - -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Coverage directory used by tools like istanbul -coverage -*.lcov - -# nyc test coverage -.nyc_output - -# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Bower dependency directory (https://bower.io/) -bower_components - -# node-waf configuration -.lock-wscript - -# Compiled binary addons (https://nodejs.org/api/addons.html) -build/Release - -# Dependency directories -node_modules/ -jspm_packages/ - -# TypeScript v1 declaration files -typings/ - -# TypeScript cache -*.tsbuildinfo - -# Optional npm cache directory -.npm - -# Optional eslint cache -.eslintcache - -# Microbundle cache -.rpt2_cache/ -.rts2_cache_cjs/ -.rts2_cache_es/ -.rts2_cache_umd/ - -# Optional REPL history -.node_repl_history - -# Output of 'npm pack' -*.tgz - -# Yarn Integrity file -.yarn-integrity - -# dotenv environment variables file -.env -.env.test - -# parcel-bundler cache (https://parceljs.org/) -.cache - -# Next.js build output -.next - -# Nuxt.js build / generate output -.nuxt -dist - -# Gatsby files -.cache/ -# Comment in the public line in if your project uses Gatsby and *not* Next.js -# https://nextjs.org/blog/next-9-1#public-directory-support -# public - -# vuepress build output -.vuepress/dist - -# Serverless directories -.serverless/ - -# FuseBox cache -.fusebox/ - -# DynamoDB Local files -.dynamodb/ - -# TernJS port file -.tern-port +/package-lock.json +/node_modules +/src/* +!/src/scanner.c diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 000000000..d059514ad --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "tree-sitter-swift" +description = "swift grammar for the tree-sitter parsing library" +version = "0.0.1" +keywords = ["incremental", "parsing", "swift"] +categories = ["parsing", "text-editors"] +repository = "https://github.com/tree-sitter/tree-sitter-swift" +edition = "2018" +license = "MIT" + +build = "bindings/rust/build.rs" +include = [ + "bindings/rust/*", + "grammar.js", + "queries/*", + "src/*", +] + +[lib] +path = "bindings/rust/lib.rs" + +[dependencies] +tree-sitter = "~0.20.0" + +[build-dependencies] +cc = "1.0" diff --git a/README.md b/README.md index 13d5f0c9d..66d27ae40 100644 --- a/README.md +++ b/README.md @@ -1 +1,81 @@ -# experimental-tree-sitter-swift \ No newline at end of file +# experimental-tree-sitter-swift + +This contains an experimental [`tree-sitter`](https://tree-sitter.github.io/tree-sitter) grammar for the Swift +programming language. The grammar can generate a parser that is able to parse most basic Swift code. + +There are some known correctness issues in code that the generated parser claims to successfully parse, which are found +under the label [ast-incorrect](https://github.com/alex-pinkus/experimental-tree-sitter-swift/labels/ast-incorrect). The +parser was built with a priority on _generating an AST without errors_, with the correctness of the syntax tree taking +second priority. If you'd like to use it for your use cases, and the correctness issues prevent you from doing so, pull +requests are welcomed. + +## Getting started + +This grammar is structured similarly to any other tree-sitter grammar. As with most grammars, you can use the cli to +generate or test the parser, and to parse any arbitrary code. An overview of the CLI tool can be found +[here](https://tree-sitter.github.io/tree-sitter/creating-parsers#tool-overview). A moderate amount of work has gone +into building out a corpus, but the corpus mostly encodes the current state of the parser, including a few bugs that it +has. + +With this package checked out, a common workflow for editing the grammar will look something like: + +1. Make a change to `grammar.js`. +2. Run `tree-sitter generate && tree-sitter test` to see whether the change has had impact on existing parsing behavior. +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. + +If you simply want to _use_ the parser, and not modify it, you can depend on it from Rust code using the instructions in +the [rust bindings README](https://github.com/tree-sitter/tree-sitter/blob/master/lib/binding_rust/README.md). +Basically, you'll want to build the `parser.c` and `scanner.c` in your build script and use the generated files to +produce a parser that the bindings can interact with. I don't plan to publish this as a crate while it's still in the +`experimental` state. + +## 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. + +## Frequently asked questions + +### Isn't there already a Swift grammar? Why did you create another one? + +There is a Swift grammar that lives under the `tree-sitter` org, but it doesn't have a `LICENSE` file. Since it's not +licensed, I would have to be cautious about using it myself. I actually haven't looked at the code itself, or the +repository much at all, since I want to avoid potential licensing issues with this parser. A brief scan of the Github +issues tells me it's also not quite complete, but I haven't done a deep dive to see whether it's more complete than this +one. + +I created this parser to learn how to use tree-sitter. Looking at the landscape, it seemed like it might be useful to +others, so I decided to publish it. Since this has a permissive license, it seems like a good path forward for anyone +else whose needs are similar to my own. + +### If this isn't a fork of the existing Swift grammar, what is it based on? + +A lot of specific features were based off of the [Kotlin language grammar](https://github.com/fwcd/tree-sitter-kotlin), +since the two have many cosmetic similarities. For instance, both languages have trailing closure syntax. Some parts +also come from the [Rust grammar](https://github.com/tree-sitter/tree-sitter-rust), which this grammar should probably +copy more of. + +### Why is this `experimental`? What's experimental about it? + +That's a question that remains to be answered. If this grammar doesn't get used much, it will probably be experimental +forever. If there's interest in it, hopefully others are willing to help define what it would take to make this not +"experimental". Reaching a point where we can offer some stability guarantees is probably a good first step. + +### What stability guarantees do you offer? + +Currently none. It seems prudent that someday, the grammar would be versioned and any removal or changes to nodes would +be considered a breaking change, and accompanied by a major version bump. Right now, this is not the place to go for +stability unless you pin an exact commit hash. + +### 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 parsers 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. diff --git a/binding.gyp b/binding.gyp new file mode 100644 index 000000000..27228a91a --- /dev/null +++ b/binding.gyp @@ -0,0 +1,19 @@ +{ + "targets": [ + { + "target_name": "tree_sitter_swift_binding", + "include_dirs": [ + " +#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/bindings/node/index.js b/bindings/node/index.js new file mode 100644 index 000000000..18e2b52ed --- /dev/null +++ b/bindings/node/index.js @@ -0,0 +1,19 @@ +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/bindings/rust/build.rs b/bindings/rust/build.rs new file mode 100644 index 000000000..c6061f099 --- /dev/null +++ b/bindings/rust/build.rs @@ -0,0 +1,40 @@ +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); + + // If your language uses an external scanner written in C, + // then include this block of code: + + /* + let scanner_path = src_dir.join("scanner.c"); + c_config.file(&scanner_path); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + */ + + c_config.compile("parser"); + println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); + + // If your language uses an external scanner written in C++, + // then include this block of code: + + /* + let mut cpp_config = cc::Build::new(); + cpp_config.cpp(true); + cpp_config.include(&src_dir); + cpp_config + .flag_if_supported("-Wno-unused-parameter") + .flag_if_supported("-Wno-unused-but-set-variable"); + let scanner_path = src_dir.join("scanner.cc"); + cpp_config.file(&scanner_path); + cpp_config.compile("scanner"); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + */ +} diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs new file mode 100644 index 000000000..e7622d326 --- /dev/null +++ b/bindings/rust/lib.rs @@ -0,0 +1,52 @@ +//! 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 { + #[test] + fn test_can_load_grammar() { + let mut parser = tree_sitter::Parser::new(); + parser + .set_language(super::language()) + .expect("Error loading swift language"); + } +} diff --git a/grammar.js b/grammar.js new file mode 100644 index 000000000..9a840a660 --- /dev/null +++ b/grammar.js @@ -0,0 +1,8 @@ +module.exports = grammar({ + name: 'swift', + + rules: { + // TODO: add the actual grammar rules + source_file: $ => 'hello' + } +}); diff --git a/package.json b/package.json new file mode 100644 index 000000000..7af85f321 --- /dev/null +++ b/package.json @@ -0,0 +1,29 @@ +{ + "name": "experimental-tree-sitter-swift", + "version": "0.0.1", + "description": "An experimental tree-sitter grammar for the Swift programming language.", + "main": "grammar.js", + "scripts": { + "test": "tree-sitter test" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/alex-pinkus/experimental-tree-sitter-swift.git" + }, + "keywords": [ + "parser", + "swift" + ], + "author": "Alex Pinkus ", + "license": "MIT", + "bugs": { + "url": "https://github.com/alex-pinkus/experimental-tree-sitter-swift/issues" + }, + "homepage": "https://github.com/alex-pinkus/experimental-tree-sitter-swift#readme", + "dependencies": { + "nan": "^2.15.0" + }, + "devDependencies": { + "tree-sitter-cli": "^0.20.0" + } +} diff --git a/src/scanner.c b/src/scanner.c new file mode 100644 index 000000000..e69de29bb From 36c4719e8d4336eb6ef8be67158100b284f63b14 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Wed, 25 Aug 2021 22:31:04 -0700 Subject: [PATCH 003/151] Adding a semi-functional Swift grammar and corpus --- .prettierignore | 3 + .prettierrc.json | 1 + bindings/node/index.js | 6 +- corpus/annotations.txt | 65 ++ corpus/classes.txt | 664 +++++++++++++++++++ corpus/comments.txt | 83 +++ corpus/expressions.txt | 426 ++++++++++++ corpus/functions.txt | 521 +++++++++++++++ corpus/literals.txt | 175 +++++ corpus/statements.txt | 508 ++++++++++++++ corpus/types.txt | 209 ++++++ grammar.js | 1423 +++++++++++++++++++++++++++++++++++++++- package.json | 1 + src/scanner.c | 255 +++++++ 14 files changed, 4333 insertions(+), 7 deletions(-) create mode 100644 .prettierignore create mode 100644 .prettierrc.json create mode 100755 corpus/annotations.txt create mode 100755 corpus/classes.txt create mode 100755 corpus/comments.txt create mode 100755 corpus/expressions.txt create mode 100755 corpus/functions.txt create mode 100755 corpus/literals.txt create mode 100755 corpus/statements.txt create mode 100755 corpus/types.txt diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 000000000..6b6fdabfc --- /dev/null +++ b/.prettierignore @@ -0,0 +1,3 @@ +build +coverage +src diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 000000000..0967ef424 --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1 @@ +{} diff --git a/bindings/node/index.js b/bindings/node/index.js index 18e2b52ed..d80aaf76a 100644 --- a/bindings/node/index.js +++ b/bindings/node/index.js @@ -1,16 +1,16 @@ try { module.exports = require("../../build/Release/tree_sitter_swift_binding"); } catch (error1) { - if (error1.code !== 'MODULE_NOT_FOUND') { + 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') { + if (error2.code !== "MODULE_NOT_FOUND") { throw error2; } - throw error1 + throw error1; } } diff --git a/corpus/annotations.txt b/corpus/annotations.txt new file mode 100755 index 000000000..3501aa9b7 --- /dev/null +++ b/corpus/annotations.txt @@ -0,0 +1,65 @@ +================== +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)) + (value_binding_pattern (non_binding_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/corpus/classes.txt b/corpus/classes.txt new file mode 100755 index 000000000..f97a57043 --- /dev/null +++ b/corpus/classes.txt @@ -0,0 +1,664 @@ +================== +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 { + func aString() -> String { return "Hello World!" } + + func anotherString() -> String { return "Hello" + " " + "World" } +} + +--- + +(source_file + (class_declaration (type_identifier) + (class_body + (function_declaration + (simple_identifier) + (user_type (type_identifier)) + (function_body + (statements + (control_transfer_statement (line_string_literal))))) + (function_declaration (simple_identifier) (user_type (type_identifier)) (function_body + (statements + (control_transfer_statement + (additive_expression + (additive_expression + (line_string_literal) + (line_string_literal)) + (line_string_literal))))))))) + +================== +Class with modifiers +================== + +internal open class Test { + private(set) var isRunning: Bool + internal(set) var isFailed: Bool + private final func test() { } +} + +--- + +(source_file + (class_declaration + (modifiers (visibility_modifier) (inheritance_modifier)) + (type_identifier) + (class_body + (property_declaration + (modifiers (visibility_modifier)) + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation (user_type (type_identifier)))) + (property_declaration + (modifiers (visibility_modifier)) + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation (user_type (type_identifier)))) + (function_declaration + (modifiers (visibility_modifier) (inheritance_modifier)) + (simple_identifier) + (function_body))))) + +================== +Class with annotations +================== + +@objc(Test) +class Test : Protocol { + @objc(someArgument:) + func someFunction(with 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))) + (simple_identifier) + (external_parameter_name) + (parameter (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 (inheritance_modifier)) + (parameter (simple_identifier) (user_type (type_identifier))) + (optional_type (user_type (type_identifier))) + (computed_getter + (statements + (control_transfer_statement + (call_expression (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (navigation_expression + (simple_identifier) + (navigation_suffix (simple_identifier)))))))))) + (computed_setter + (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))) + (external_parameter_name) + (parameter (simple_identifier) (user_type (type_identifier) (type_arguments (user_type (type_identifier))))) + (user_type (type_identifier) (type_arguments (user_type (type_identifier)))) + (statements (control_transfer_statement (simple_identifier))))))) + +================== +Inheritance +================== + +class A : B {} + +class D : SomeInterface { } + +--- + +(source_file + (class_declaration + (type_identifier) + (inheritance_specifier (user_type (type_identifier))) + (class_body)) + (class_declaration + (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 { v = newValue } + } +} + +class SomethingElse: ThingProvider { + var thing: String { + guard let thing = optionalThing else { + fatalError() + } + return thing + } + + class func nothing() { } +} + +--- + +(source_file + (class_declaration + (type_identifier) + (class_body + (property_declaration + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation + (user_type (type_identifier))) + (integer_literal)) + (property_declaration + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation + (optional_type (user_type (type_identifier))))) + (property_declaration + (modifiers (property_modifier)) + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation + (user_type (type_identifier))) + (simple_identifier)) + (property_declaration + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation + (user_type (type_identifier))) + (computed_property (statements (simple_identifier)))) + (property_declaration + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation + (user_type (type_identifier))) + (computed_property + (computed_getter (statements (simple_identifier))) + (computed_setter (simple_identifier)))) + (property_declaration + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation (user_type (type_identifier))) + (computed_property + (computed_getter (statements (simple_identifier))) + (computed_setter (statements (assignment (directly_assignable_expression (simple_identifier)) (simple_identifier)))))))) + (class_declaration + (type_identifier) + (inheritance_specifier (user_type (type_identifier))) + (class_body + (property_declaration + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation (user_type (type_identifier))) + (computed_property + (statements + (guard_expression + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (simple_identifier) + (statements (call_expression (simple_identifier) (call_suffix (value_arguments))))) + (control_transfer_statement (simple_identifier))))) + (function_declaration (simple_identifier) (function_body))))) +================== +Structs +================== + +struct Adder { + var value: Int + + mutating func addOne() { + value += 1 + } +} + +--- + +(source_file + (class_declaration + (type_identifier) + (class_body + (property_declaration + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation + (user_type (type_identifier)))) + (function_declaration + (modifiers (function_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? +} + +public protocol FooProvider { + var foo: String { 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)))))) + (protocol_declaration + (modifiers (visibility_modifier)) + (type_identifier) + (protocol_body + (protocol_property_declaration + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation (user_type (type_identifier))) + (protocol_property_requirements)))) + (protocol_declaration + (type_identifier) + (protocol_body + (associatedtype_declaration + (type_identifier) + (user_type (type_identifier)) + (type_constraints + (type_constraint + (equality_constraint + (identifier (simple_identifier) (simple_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) + } +} + +--- + +(source_file + (class_declaration + (type_identifier) + (class_body + (property_declaration + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation (user_type (type_identifier)))) + (property_declaration + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation (user_type (type_identifier)))) + (function_declaration + (external_parameter_name) + (parameter (simple_identifier) (user_type (type_identifier))) + (external_parameter_name) + (parameter (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))))))))))) + +================== +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)) + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation (user_type (type_identifier))) + (call_expression + (prefix_expression (simple_identifier)) + (call_suffix (value_arguments (value_argument (line_string_literal)))))) + (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))))))) + (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) { } + +--- + +(source_file + (class_declaration + (identifier (simple_identifier) (simple_identifier)) + (class_body + (property_declaration + (modifiers (property_modifier)) + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (line_string_literal)) + (property_declaration + (modifiers (property_modifier)) + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation (user_type (type_identifier))) + (line_string_literal)))) + (class_declaration + (identifier (simple_identifier)) + (type_constraints + (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)) + (identifier (simple_identifier)) + (type_constraints + (type_constraint + (equality_constraint + (identifier (simple_identifier)) + (tuple_type + (simple_identifier) + (user_type (type_identifier)) + (simple_identifier) + (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! +} + +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))) + (simple_identifier) + (function_body)) + (property_declaration + (modifiers (attribute + (user_type (type_identifier)) + (simple_identifier) + (simple_identifier) + (line_string_literal))) + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation (user_type (type_identifier)))))) + (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))) + (simple_identifier))))) diff --git a/corpus/comments.txt b/corpus/comments.txt new file mode 100755 index 000000000..4328e5f1c --- /dev/null +++ b/corpus/comments.txt @@ -0,0 +1,83 @@ +================== +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)) + diff --git a/corpus/expressions.txt b/corpus/expressions.txt new file mode 100755 index 000000000..48322b661 --- /dev/null +++ b/corpus/expressions.txt @@ -0,0 +1,426 @@ +================== +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))) + +================== +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 + +--- + +(source_file (ternary_expression (simple_identifier) (simple_identifier) (simple_identifier))) + +================== +Multiple expressions on one line using semicolons +================== + +print(a); return b + +--- + +(source_file + (call_expression + (simple_identifier) + (call_suffix (value_arguments (value_argument (simple_identifier))))) + (control_transfer_statement (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 + (value_binding_pattern + (non_binding_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 + (value_binding_pattern + (non_binding_pattern (simple_identifier))) + (call_expression + (simple_identifier) + (call_suffix (value_arguments (value_argument (simple_identifier) (simple_identifier)))))) + (property_declaration + (value_binding_pattern + (non_binding_pattern (simple_identifier))) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument (simple_identifier)) + (value_argument (simple_identifier) (simple_identifier)))))) + (property_declaration + (value_binding_pattern (non_binding_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 + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (integer_literal)) + (property_declaration + (value_binding_pattern (non_binding_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 + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation (user_type (type_identifier))) + (prefix_expression (simple_identifier)))) + +================== +Tuple expressions +================== + +let a: (Int, Int) = (1, 2) +return (lhs: 3, rhs: 4) + +--- + +(source_file + (property_declaration + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation (tuple_type (user_type (type_identifier)) (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))))) + (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)))))) + +================== +Constructor calls +================== + +var result = Set() +var result2 = [String: [Complex<[String: Any]>]]() + +--- + +(source_file + (property_declaration + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (constructor_expression + (user_type (type_identifier) (type_arguments (user_type (type_identifier)))) + (constructor_suffix))) + (property_declaration + (value_binding_pattern (non_binding_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)))) + +================== +Inout functions +================== + +func modifyThis(_ toModify: inout [String: String]) { +} + +var this = [:] +modifyThis(&this) + +--- +(source_file + (function_declaration + (simple_identifier) + (external_parameter_name) + (parameter (simple_identifier) + (parameter_modifiers (parameter_modifier)) + (dictionary_type (user_type (type_identifier)) (user_type (type_identifier)))) + (function_body)) + (property_declaration + (value_binding_pattern (non_binding_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 + (value_binding_pattern (non_binding_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 + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (selector_expression (navigation_expression (self_expression) (navigation_suffix (simple_identifier))))) + (property_declaration + (value_binding_pattern (non_binding_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 + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (ternary_expression + (tuple_expression (equality_expression (simple_identifier))) + (array_literal (prefix_expression (simple_identifier))) + (array_literal))) + (property_declaration + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation (user_type (type_identifier))) + (ternary_expression + (simple_identifier) + (prefix_expression (simple_identifier)) + (prefix_expression (simple_identifier))))) + +====== +Range expression +====== + +string[..(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(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) + (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) + (external_parameter_name) + (parameter + (simple_identifier) + (user_type (type_identifier))) + (external_parameter_name) + (parameter + (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) (integer_literal) + (line_string_literal) (integer_literal) + (line_string_literal) (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) +} + +--- + +(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))))))))))) + +================== +Custom operators +================== + +precedencegroup MyPrecedence { + associativity: left + assignment: true + lowerThan: AdditionPrecedence +} + +infix operator -=- : MyPrecedence + +--- + +(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))) + +================== +Functions that throw +================== + +func anythingYouCanDo() throws -> Int { return -1 } +func iCanDoBetter() + throws + -> Int { return -2 } + +--- + +(source_file + (function_declaration + (simple_identifier) + (throws_modifier) + (user_type (type_identifier)) + (function_body + (statements + (control_transfer_statement (prefix_expression (integer_literal)))))) + (function_declaration + (simple_identifier) + (throws_modifier) + (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 + (user_type (type_identifier))) + (throws_modifier) + (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 (simple_identifier))) + (multiline_comment))))) +================== +Higher-order functions - pt 3 +================== + +test(2) { $0.doSomething() } + +--- +(source_file + (call_expression + (call_expression + (simple_identifier) + (call_suffix (value_arguments (value_argument (integer_literal))))) + (call_suffix + (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 (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 (simple_identifier) + (parameter_modifiers (parameter_modifier)) + (user_type (type_identifier)))))))) + +================== +Higher-order functions - pt 6 +================== + +test { [weak self, otherSelf] (a) in } + +--- +(source_file + (call_expression + (simple_identifier) + (call_suffix + (lambda_literal + (capture_list (simple_identifier) (simple_identifier)) + (lambda_function_type (lambda_function_type_parameters (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 (self_expression) (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 + (simple_identifier) + (optional_type (user_type (type_identifier))))) + (statements + (call_expression (simple_identifier) + (call_suffix + (value_arguments (value_argument (simple_identifier)))))))))) + +=============== +Function type with wildcard +=============== + +private lazy var onCatClosure: (_ cat: Cat) throws -> Void = { _ in +} + +--- + +(source_file + (property_declaration + (modifiers (visibility_modifier) (property_modifier)) + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation + (function_type + (tuple_type + (wildcard_pattern) + (simple_identifier) + (user_type (type_identifier))) + (throws_modifier) + (user_type (type_identifier)))) + (lambda_literal + (lambda_function_type (lambda_function_type_parameters (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) + (user_type (type_identifier)) + (function_body (statements (control_transfer_statement (line_string_literal))))) + (function_declaration + (simple_identifier) + (user_type (type_identifier)) + (user_type (type_identifier)) + (function_body (statements + (control_transfer_statement (call_expression (simple_identifier) (call_suffix (value_arguments)))))))) diff --git a/corpus/literals.txt b/corpus/literals.txt new file mode 100755 index 000000000..c460ebba7 --- /dev/null +++ b/corpus/literals.txt @@ -0,0 +1,175 @@ +================== +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. +""" + +--- + +(source_file + (line_string_literal) + (multi_line_string_literal)) + +================== +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 (interpolated_expression (line_string_literal))) + (multi_line_string_literal + (interpolated_expression (multi_line_string_literal))) + (line_string_literal) (multi_line_string_literal) (comment)) + +================== +Strings with newline escaping +================== + +""" +This is a string that acts as though it \ + is all on one line +""" + +--- + +(source_file (multi_line_string_literal)) + +================== +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 + (value_binding_pattern + (non_binding_pattern (simple_identifier))) + (array_literal (integer_literal) (integer_literal) (integer_literal))) + (property_declaration + (value_binding_pattern + (non_binding_pattern (simple_identifier))) + (dictionary_literal + (integer_literal) (line_string_literal) + (integer_literal) (line_string_literal) + (integer_literal) (line_string_literal) + (integer_literal) (line_string_literal)))) +===== +Trailing commas +===== + +[ + "Time": Date.now(), + "Success": true, +] + +[1, 2, 3, 4, 5,] + +--- + +(source_file + (dictionary_literal + (line_string_literal) + (call_expression + (navigation_expression + (simple_identifier) + (navigation_suffix (simple_identifier))) + (call_suffix (value_arguments))) + (line_string_literal) + (boolean_literal)) + (array_literal + (integer_literal) (integer_literal) (integer_literal) (integer_literal) (integer_literal))) + +================== +Nil +================== + +let _ = nil + +--- + +(source_file + (property_declaration (value_binding_pattern (non_binding_pattern (wildcard_pattern))))) diff --git a/corpus/statements.txt b/corpus/statements.txt new file mode 100755 index 000000000..7f6dde0af --- /dev/null +++ b/corpus/statements.txt @@ -0,0 +1,508 @@ +================== +Let statements +================== + +let singleVariable = 1 +let (tuple1, tuple2) = (2, 3) +let `default` = 0 + +--- + +(source_file + (property_declaration + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (integer_literal)) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (non_binding_pattern (simple_identifier)) + (non_binding_pattern (simple_identifier)))) + (tuple_expression (integer_literal) (integer_literal))) + (property_declaration + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (integer_literal))) + +================== +C-style compound declaration +================== + +var one = 1, two = 2, four = 4, eight = 8 + +--- + +(source_file + (property_declaration + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (integer_literal) + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (integer_literal) + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (integer_literal) + (value_binding_pattern (non_binding_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 value in values where value.isExcellent() { +} + +--- + +(source_file + (for_statement + (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 + (simple_identifier) + (simple_identifier) + (simple_identifier)) + (for_statement + (simple_identifier) + (simple_identifier) + (integer_literal) + (simple_identifier) + (integer_literal) + (simple_identifier)) + (for_statement + (simple_identifier) + (simple_identifier) + (where_clause + (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 { +} + +outerLoop: for outerObject in dataArray { + for innerObject in comparisonArray { + if outerObject == innerObject { + isValid = true + break outerLoop + } + } +} + +--- + +(source_file + (for_statement + (non_binding_pattern + (non_binding_pattern + (simple_identifier)) + (user_type (type_identifier))) + (simple_identifier)) + (loop_label) + (for_statement + (simple_identifier) + (simple_identifier) + (statements + (for_statement + (simple_identifier) + (simple_identifier) + (statements + (if_expression + (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 + (value_binding_pattern (non_binding_pattern (simple_identifier) (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" +} + +--- +(source_file + (switch_expression + (simple_identifier) + (switch_entry + (switch_pattern (simple_identifier)) + (statements (control_transfer_statement (line_string_literal)))) + (switch_entry + (switch_pattern (simple_identifier)) + (statements (control_transfer_statement (line_string_literal)))) + (switch_entry + (switch_pattern (line_string_literal)) + (statements (control_transfer_statement (line_string_literal)))))) + +================== +Weird switch statements +================== + +switch something { + case let .pattern2(_, bound): fallthrough + case .ident where someCondition: fallthrough + @unknown default: return "Goodbye" +} + +switch self { +case .notExecutable(let path?): + return "File not executable: \(path)" +} + +--- +(source_file + (switch_expression + (simple_identifier) + (switch_entry + (switch_pattern + (non_binding_pattern + (simple_identifier) + (wildcard_pattern) + (simple_identifier))) + (statements (simple_identifier))) + (switch_entry + (switch_pattern (simple_identifier)) + (simple_identifier) + (statements (simple_identifier))) + (switch_entry + (modifiers (attribute (user_type (type_identifier)))) + (statements (control_transfer_statement (line_string_literal))))) + (switch_expression + (self_expression) + (switch_entry + (switch_pattern + (simple_identifier) + (non_binding_pattern (simple_identifier))) + (statements (control_transfer_statement (line_string_literal (interpolated_expression (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_expression + (statements + (property_declaration + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (integer_literal))) + (catch_block + (binding_pattern + (binding_pattern + (non_binding_pattern + (simple_identifier))) + (user_type (type_identifier)))) + (catch_block + (binding_pattern + (user_type (type_identifier)) + (simple_identifier))) + (catch_block + (binding_pattern + (binding_pattern + (non_binding_pattern + (simple_identifier))) + (user_type (type_identifier))) + (where_clause + (equality_expression + (navigation_expression (simple_identifier) (navigation_suffix (simple_identifier))) + (integer_literal)))) + (catch_block + (binding_pattern + (non_binding_pattern + (user_type (type_identifier)) + (simple_identifier) + (simple_identifier)))) + (catch_block + (binding_pattern + (user_type (type_identifier)) + (simple_identifier) + (simple_identifier) + (non_binding_pattern (simple_identifier)))) + (catch_block)) + (do_expression + (statements + (property_declaration + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (integer_literal))))) + +================== +If let statements +================== + +if let something = doThing() { + anotherThing() +} + +if case .someCase(_) = otherThing() { +} + +if let something: MyType = doThing() { +} + +if a.isEmpty, let b = getB() { +} + +--- + +(source_file + (if_expression + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (call_expression (simple_identifier) (call_suffix (value_arguments))) + (statements (call_expression (simple_identifier) (call_suffix (value_arguments))))) + (if_expression + (binding_pattern (simple_identifier) (wildcard_pattern)) + (call_expression (simple_identifier) (call_suffix (value_arguments)))) + (if_expression + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation (user_type (type_identifier))) + (call_expression (simple_identifier) (call_suffix (value_arguments)))) + (if_expression + (navigation_expression (simple_identifier) (navigation_suffix (simple_identifier))) + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (call_expression (simple_identifier) (call_suffix (value_arguments))))) + +=============== +If let with function call +=============== + +if let a = try? Foo.getValue("key") { + return a +} +return default + +--- + +(source_file + (if_expression + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (call_expression + (try_expression + (navigation_expression (simple_identifier) + (navigation_suffix (simple_identifier)))) + (call_suffix + (value_arguments + (value_argument (line_string_literal))))) + (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_expression + (value_binding_pattern (non_binding_pattern (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_expression + (value_binding_pattern + (non_binding_pattern (simple_identifier))) + (call_expression (simple_identifier) (call_suffix (value_arguments))) + (value_binding_pattern (non_binding_pattern (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_expression + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (simple_identifier) + (if_expression (value_binding_pattern (non_binding_pattern (simple_identifier))) (simple_identifier))) + (if_expression + (equality_expression (simple_identifier) (simple_identifier)) + (if_expression + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (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 { } + +--- + +(source_file + (guard_expression + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (call_expression (simple_identifier) (call_suffix (value_arguments))) + (statements (call_expression (simple_identifier) (call_suffix (value_arguments))))) + (guard_expression + (call_expression (simple_identifier) (call_suffix (value_arguments))) + (statements (call_expression (simple_identifier) (call_suffix (value_arguments))))) + (guard_expression + (binding_pattern + (simple_identifier) (simple_identifier) + (non_binding_pattern (simple_identifier))) + (call_expression (simple_identifier) (call_suffix (value_arguments)))) + (guard_expression (binding_pattern (simple_identifier)) (simple_identifier))) +================== +Compound guard +================== + +guard let something = doThing(), something.isSpecial() else { + anotherThing() +} + +--- + +(source_file + (guard_expression + (value_binding_pattern (non_binding_pattern (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)))))) + +================ +Availability conditions +================ + +if #available(iOS 14.0, *) { + doSomething() +} + +if #available(iOS 13.0, *) { + return 3 +} else { + return 0 +} + +--- +(source_file + (if_expression (availability_condition + (identifier (simple_identifier)) + (real_literal)) + (statements (call_expression (simple_identifier) (call_suffix (value_arguments))))) + (if_expression (availability_condition + (identifier (simple_identifier)) + (real_literal)) + (statements (control_transfer_statement (integer_literal))) + (statements (control_transfer_statement (integer_literal))))) + diff --git a/corpus/types.txt b/corpus/types.txt new file mode 100755 index 000000000..a9b1f04bc --- /dev/null +++ b/corpus/types.txt @@ -0,0 +1,209 @@ +================== +Type references +================== + +something as Int +something as? A +something as! A + +--- + +(source_file + (as_expression + (simple_identifier) + (user_type (type_identifier))) + (as_expression + (simple_identifier) + (user_type (type_identifier))) + (as_expression + (simple_identifier) + (user_type (type_identifier)))) + +================== +Nested types +================== + +something as Some.NestedType + +--- + +(source_file + (as_expression + (simple_identifier) + (user_type (type_identifier) (type_identifier)))) + +================== +Deeply nested types +================== + +somethingElse as A.Deeply.Nested.Type + +--- + +(source_file + (as_expression + (simple_identifier) + (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) + (user_type (type_identifier) + (type_arguments + (user_type (type_identifier))))) + (as_expression + (simple_identifier) + (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) + (function_type + (tuple_type) + (user_type (type_identifier)))) + (as_expression + (simple_identifier) + (function_type + (tuple_type (user_type (type_identifier))) + (user_type (type_identifier)))) + (as_expression + (simple_identifier) + (function_type + (tuple_type + (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) + (function_type + (tuple_type + (user_type (type_identifier)) + (user_type + (type_identifier) + (type_arguments (user_type (type_identifier)))) + (user_type (type_identifier))) + (user_type (type_identifier)))) + (as_expression + (simple_identifier) + (function_type + (tuple_type + (user_type (type_identifier) (type_identifier)) + (tuple_type (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) + (function_type + (tuple_type + (simple_identifier) + (user_type (type_identifier)) + (simple_identifier) + (user_type (type_identifier))) + (user_type (type_identifier)))) + (property_declaration + (value_binding_pattern (non_binding_pattern (simple_identifier))) + (type_annotation + (tuple_type + (simple_identifier) + (user_type (type_identifier)) + (simple_identifier) + (user_type (type_identifier)))))) +================== +Nested optional types +================== + +private var dictionary: [String: Any?]? + +--- +(source_file + (property_declaration + (modifiers (visibility_modifier)) + (value_binding_pattern (non_binding_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)) + (value_binding_pattern (non_binding_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 (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)))))) diff --git a/grammar.js b/grammar.js index 9a840a660..ca74b4555 100644 --- a/grammar.js +++ b/grammar.js @@ -1,8 +1,1423 @@ +/* + * 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. + */ + +// Using an adapted version of https://kotlinlang.org/docs/reference/grammar.html + +const PREC = { + NAVIGATION: 13, + MULTIPLICATIVE: 12, + ADDITIVE: 11, + INFIX: 9, + NIL_COALESCING: 8, + CHECK: 7, + PREFIX: 7, + COMPARISON: 6, + POSTFIX: 6, + CAPTURE_LIST_ITEM: 6, + EQUALITY: 5, + CONJUNCTION: 4, + DISJUNCTION: 3, + RANGE: 2, + ASSIGNMENT: 1, + BLOCK: 1, + COMMENT: -1, + LAMBDA_LITERAL: -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)); +const LEXICAL_IDENTIFIER = /[a-zA-Z_][a-zA-Z_0-9]*/; +const CUSTOM_OPERATORS = token( + choice( + // https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html#ID418 + // This supports a subset of the operators that Swift does but I'm really not concerned about the esoteric ones. + // Someone who wants unicode support can add it. What this does do is: + // * Avoid the reserved operators by saying that certain characters are only available if you don't start with them. + // * Entirely forbid `<` as the last char because it creates ambiguity with type arguments + /[\\<>&?=][\/=\-+!*%<>&|^?~\.]*[\/=\-+!*%>&|^?~]+/, + /[\-+!*%|^~]+[\/=\-+!*%<>&|^?~]*[\/=\-+!*%>&|^?~]+/, + /[\-+!*%|^~\.]+[\/=\-+!*%<>&|^?~\.]*[\/=\-+!*%>&|^?~\.]+/, + /[\/]+[=\-+!*%<>&|^?~]*[=\-+!*%>&|^?~]+/, + /[\/]+[=\-+!*%<>&|^?~\.]*[=\-+!*%>&|^?~\.]+/ + ) +); + +// XXX need custom scanner for: +// * Custom operators and `<` for type arguments + module.exports = grammar({ - name: 'swift', + name: "swift", + + conflicts: ($) => [ + // @Type(... could either be an annotation constructor invocation or an annotated expression + [$.attribute], + + // 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], + ], + + extras: ($) => [ + $.comment, + $.multiline_comment, + $.directive, + /\s+/, // Whitespace + ], + + externals: ($) => [ + $.multiline_comment, + $._semi, + $._arrow_operator, + $._dot_operator, + $._three_dot_operator, + $._open_ended_range_operator, + $._conjunction_operator, + $._disjunction_operator, + $._nil_coalescing_operator, + $._equal_sign, + $._throws_keyword, + $._rethrows_keyword, + ], rules: { - // TODO: add the actual grammar rules - source_file: $ => 'hello' - } + //////////////////////////////// + // File Structure + //////////////////////////////// + + source_file: ($) => + seq(optional($.shebang_line), repeat(seq($._statement, $._semi))), + + shebang_line: ($) => seq("#!", /[^\r\n]*/), + + //////////////////////////////// + // Lexical Structure - https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html + //////////////////////////////// + + comment: ($) => prec(PREC.COMMENT, seq("//", /.*/)), + + // Identifiers + + simple_identifier: ($) => + choice( + LEXICAL_IDENTIFIER, + token(seq("`", LEXICAL_IDENTIFIER, "`")), + /\$[0-9]+/ + ), + + identifier: ($) => sep1($.simple_identifier, $._dot_operator), + + // Literals + + _basic_literal: ($) => + choice( + $.integer_literal, + $.hex_literal, + $.oct_literal, + $.bin_literal, + $.real_literal, + $.boolean_literal, + $._string_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), + + line_string_literal: ($) => + seq('"', repeat(choice($._line_string_content, $._interpolation)), '"'), + + _line_string_content: ($) => + choice($._line_str_text, $._line_str_escaped_char), + + _line_str_text: ($) => /[^\\"]+/, + + _line_str_escaped_char: ($) => + choice($._escaped_identifier, $._uni_character_literal), + + _uni_character_literal: ($) => seq("\\", "u", /[0-9a-fA-F]{4}/), // TODO: { } + + // TODO: # delimiter (probably use Rust's custom scanner for this) + multi_line_string_literal: ($) => + seq( + '"""', + repeat(choice($._multi_line_string_content, $._interpolation)), + '"""' + ), + + _multi_line_string_content: ($) => + choice($._multi_line_str_text, $._escaped_identifier, '"'), + + _interpolation: ($) => + seq("\\(", alias($._expression, $.interpolated_expression), ")"), + + _escaped_identifier: ($) => /\\[0\\tnr"'\n]/, + + _multi_line_str_text: ($) => /[^\\"]+/, + + //////////////////////////////// + // Types - https://docs.swift.org/swift-book/ReferenceManual/Types.html + //////////////////////////////// + + type_annotation: ($) => seq(":", $._possibly_implicitly_unwrapped_type), + + // This is only legal in a few positions + _possibly_implicitly_unwrapped_type: ($) => + seq($._type, optional(token.immediate("!"))), + + _type: ($) => + prec.right( + seq( + optional($.type_modifiers), + choice( + $.user_type, + $.tuple_type, + $.function_type, + $.array_type, + $.dictionary_type, + $.optional_type, + $._opaque_type + ) + ) + ), + + // The grammar just calls this whole thing a `type-identifier` but that's a bit confusing. + user_type: ($) => sep1($._simple_user_type, $._dot_operator), + + _simple_user_type: ($) => + prec.right( + seq( + alias($.simple_identifier, $.type_identifier), + optional($.type_arguments) + ) + ), + + tuple_type: ($) => seq("(", optional(sep1($._tuple_type_item, ",")), ")"), + + _tuple_type_item: ($) => + seq( + optional($._tuple_type_item_identifier), + optional($.parameter_modifiers), + $._type + ), + + _tuple_type_item_identifier: ($) => + seq(optional($.wildcard_pattern), $.simple_identifier, ":"), + + function_type: ($) => + seq( + $.tuple_type, + optional($.throws_modifier), + $._arrow_operator, + $._type + ), + + array_type: ($) => seq("[", $._type, "]"), + + dictionary_type: ($) => seq("[", $._type, ":", $._type, "]"), + + optional_type: ($) => + prec.left( + seq( + choice($.user_type, $.tuple_type, $.array_type, $.dictionary_type), + repeat1($._immediate_quest) + ) + ), + + _quest: ($) => "?", + _immediate_quest: ($) => token.immediate("?"), + + _opaque_type: ($) => seq("some", $.user_type), + + //////////////////////////////// + // Expressions - https://docs.swift.org/swift-book/ReferenceManual/Expressions.html + //////////////////////////////// + + _expression: ($) => + choice( + $.simple_identifier, + $._unary_expression, + $._binary_expression, + $.ternary_expression, + $._primary_expression, + seq($._expression, $._immediate_quest) + ), + + // 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(PREC.POSTFIX, seq($._expression, $._postfix_unary_operator)), + + call_expression: ($) => prec.left(seq($._expression, $.call_suffix)), + + constructor_expression: ($) => + prec.left( + seq( + choice($.array_type, $.dictionary_type, $.user_type), + $.constructor_suffix + ) + ), + + indexing_expression: ($) => + prec.left(PREC.POSTFIX, seq($._expression, $.indexing_suffix)), + + navigation_expression: ($) => + prec.left(PREC.NAVIGATION, seq($._expression, $.navigation_suffix)), + + // XXX precedence for ranges isn't right + open_start_range_expression: ($) => + prec.left( + PREC.RANGE, + seq( + choice($._open_ended_range_operator, $._three_dot_operator), + $._expression + ) + ), + + open_end_range_expression: ($) => + prec.left(PREC.RANGE, seq($._expression, $._three_dot_operator)), + + prefix_expression: ($) => + prec.right(PREC.PREFIX, seq($._prefix_unary_operator, $._expression)), + + as_expression: ($) => + prec.left(seq($._expression, $._as_operator, $._type)), + + selector_expression: ($) => + prec.left( + 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, + $.equality_expression, + $.conjunction_expression, + $.disjunction_expression, + $.bitwise_operation + ), + + multiplicative_expression: ($) => + prec.left( + PREC.MULTIPLICATIVE, + seq($._expression, $._multiplicative_operator, $._expression) + ), + + additive_expression: ($) => + prec.left( + PREC.ADDITIVE, + seq($._expression, $._additive_operator, $._expression) + ), + + range_expression: ($) => + prec.left( + PREC.RANGE, + seq( + $._expression, + choice($._open_ended_range_operator, $._three_dot_operator), + $._expression + ) + ), + + infix_expression: ($) => + prec.left( + PREC.INFIX, + seq($._expression, $.custom_operator, $._expression) + ), + + nil_coalescing_expression: ($) => + prec.left( + PREC.NIL_COALESCING, + seq($._expression, $._nil_coalescing_operator, $._expression) + ), + + check_expression: ($) => + prec.left(PREC.CHECK, seq($._expression, $._is_operator, $._expression)), + + comparison_expression: ($) => + prec.left(seq($._expression, $._comparison_operator, $._expression)), + + equality_expression: ($) => + prec.left( + PREC.EQUALITY, + seq($._expression, $._equality_operator, $._expression) + ), + + conjunction_expression: ($) => + prec.left( + PREC.CONJUNCTION, + seq($._expression, $._conjunction_operator, $._expression) + ), + + disjunction_expression: ($) => + prec.left( + PREC.DISJUNCTION, + seq($._expression, $._disjunction_operator, $._expression) + ), + + bitwise_operation: ($) => + prec.left(seq($._expression, $._bitwise_binary_operator, $._expression)), + + custom_operator: ($) => CUSTOM_OPERATORS, + + // Suffixes + + indexing_suffix: ($) => seq("[", sep1($._expression, ","), "]"), + + navigation_suffix: ($) => + seq( + $._dot_operator, + choice($.simple_identifier, $.tuple_expression, $.integer_literal) + ), + + call_suffix: ($) => + prec.left( + seq( + choice( + $.value_arguments, + sep1($._annotated_lambda, seq($.simple_identifier, ":")) + ) + ) + ), + + constructor_suffix: ($) => + prec.left( + seq( + choice( + seq("(", optional(sep1($.value_argument, ",")), ")"), + $._annotated_lambda + ) + ) + ), + + _annotated_lambda: ($) => + seq( + // repeat($.attribute), + $.lambda_literal + ), + + 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($.simple_identifier, ":")), + seq(optional(seq($.simple_identifier, ":")), $._expression) + ) + ) + ), + + ternary_expression: ($) => + prec.left( + seq($._expression, $._quest, $._expression, ":", $._expression) + ), + + _primary_expression: ($) => + choice( + $.tuple_expression, + $._basic_literal, + $._function_literal, + $._special_literal, + $.array_literal, + $.dictionary_literal, + $.self_expression, + $.super_expression, + $.if_expression, + $.guard_expression, + $.switch_expression, + $.do_expression, + $.try_expression, + $._referenceable_operator, + alias($._three_dot_operator, $.fully_open_range) + ), + + tuple_expression: ($) => + prec.left( + -1, + seq( + "(", + sep1( + seq(optional(seq($.simple_identifier, ":")), $._expression), + "," + ), + ")" + ) + ), + + array_literal: ($) => + seq("[", optional(sep1($._expression, ",")), optional(","), "]"), + + dictionary_literal: ($) => + seq( + "[", + choice(":", sep1($._dictionary_literal_item, ",")), + optional(","), + "]" + ), + + _dictionary_literal_item: ($) => seq($._expression, ":", $._expression), + + _special_literal: ($) => + choice( + "#file", + "#fileID", + "#filePath", + "#line", + "#column", + "#function", + "#dsohandle" + ), + + lambda_literal: ($) => + prec( + PREC.LAMBDA_LITERAL, + seq( + "{", + optional($.capture_list), + optional(seq(optional($.lambda_function_type), "in")), + optional($.statements), + "}" + ) + ), + + capture_list: ($) => seq("[", sep1($._capture_list_item, ","), "]"), + + _capture_list_item: ($) => + prec( + PREC.CAPTURE_LIST_ITEM, + choice( + "self", + seq( + optional($._capture_specifier), + $.simple_identifier, + optional(seq($._equal_sign, $._expression)) + ) + ) + ), + + _capture_specifier: ($) => + choice("weak", "unowned", "unowned(safe)", "unowned(unsafe)"), + + lambda_function_type: ($) => + seq( + choice( + $.lambda_function_type_parameters, + seq("(", optional($.lambda_function_type_parameters), ")") + ), + optional($.throws_modifier), + optional(seq($._arrow_operator, $._return_type)) + ), + + lambda_function_type_parameters: ($) => sep1($._lambda_parameter, ","), + + _lambda_parameter: ($) => + prec.left( + seq( + choice( + $.self_expression, + $.simple_identifier, + seq( + optional($.simple_identifier), + $.simple_identifier, + ":", + optional($.parameter_modifiers), + $._possibly_implicitly_unwrapped_type + ) + ) + ) + ), + + _function_literal: ($) => $.lambda_literal, + + self_expression: ($) => "self", + + super_expression: ($) => seq("super"), + + _else_options: ($) => choice($._block, $.if_expression), + + if_expression: ($) => + prec.right( + seq( + "if", + sep1(prec.left($._if_condition_sequence_item), ","), + choice($._block, seq($._block, "else", $._else_options)) + ) + ), + + _if_condition_sequence_item: ($) => + prec.left( + choice($._if_let_binding, $._expression, $.availability_condition) + ), + + _if_let_binding: ($) => + prec.left( + seq($._direct_or_indirect_binding, $._equal_sign, $._expression) + ), + + guard_expression: ($) => + prec.right( + seq( + "guard", + sep1(prec.left($._if_condition_sequence_item), ","), + "else", + $._block + ) + ), + + switch_expression: ($) => + seq("switch", $._expression, "{", repeat($.switch_entry), "}"), + + switch_entry: ($) => + seq( + optional($.modifiers), + choice( + seq("case", $.switch_pattern, repeat(seq(",", $.switch_pattern))), + "default" + ), + optional(seq("where", $._expression)), + ":", + $.statements, + optional("fallthrough") + ), + + switch_pattern: ($) => generate_pattern_matching_rule($, true, false, true), + + do_expression: ($) => seq("do", $._block, repeat($.catch_block)), + + catch_block: ($) => + seq( + "catch", + optional(generate_pattern_matching_rule($, true, false)), + optional($.where_clause), + $._block + ), + + where_clause: ($) => prec.left(seq("where", $._expression)), + + try_expression: ($) => + prec.left( + seq( + // XXX associativity or precedence seems wrong here + $._try_operator, + choice($._expression, $.assignment) + ) + ), + + _try_operator: ($) => choice("try", "try!", "try?"), + + _assignment_and_operator: ($) => choice("+=", "-=", "*=", "/=", "%=", "="), + + _equality_operator: ($) => choice("!=", "!==", "==", "==="), + + _comparison_operator: ($) => choice("<", ">", "<=", ">="), + + _is_operator: ($) => "is", + + _additive_operator: ($) => choice("+", "-"), + + _multiplicative_operator: ($) => choice("*", "/", "%"), + + _as_operator: ($) => choice("as", "as?", "as!"), + + _prefix_unary_operator: ($) => + prec.right(choice("++", "--", "-", "+", "!", "&", "~", $._dot_operator)), + + _bitwise_binary_operator: ($) => choice("&", "|", "^", "<<", ">>"), + + _postfix_unary_operator: ($) => choice("++", "--", "!"), + + directly_assignable_expression: ($) => + choice( + $.simple_identifier, + $.navigation_expression, + $.call_expression, + $.tuple_expression, + $.self_expression + ), + + //////////////////////////////// + // Statements - https://docs.swift.org/swift-book/ReferenceManual/Statements.html + //////////////////////////////// + + statements: ($) => + prec.left( + seq($._statement, repeat(seq($._semi, $._statement)), optional($._semi)) + ), + + _statement: ($) => + choice( + $._expression, + $._declaration, + $._loop_statement, + $.control_transfer_statement, + $.assignment, + $.availability_condition + ), + + _block: ($) => prec(PREC.BLOCK, seq("{", optional($.statements), "}")), + + _loop_statement: ($) => + seq( + optional($.loop_label), + choice($.for_statement, $.while_statement, $.repeat_while_statement) + ), + + loop_label: ($) => token(/[a-zA-Z_][a-zA-Z_0-9]*:/), + + for_statement: ($) => + prec.right( + seq( + "for", + generate_pattern_matching_rule($, true, true, false), + optional($.type_annotation), + "in", + $._expression, + optional($.where_clause), + $._block + ) + ), + + while_statement: ($) => + seq( + "while", + sep1(prec.left($._if_condition_sequence_item), ","), + "{", + optional($.statements), + "}" + ), + + repeat_while_statement: ($) => + prec.right( + seq( + "repeat", + "{", + optional($.statements), + "}", + "while", + sep1(prec.left($._if_condition_sequence_item), ",") + ) + ), + + control_transfer_statement: ($) => + choice( + prec.right(seq("throw", $._expression)), + prec.right(seq($._return_continue_break, optional($._expression))) + ), + + _return_continue_break: ($) => choice("return", "continue", "break"), + + assignment: ($) => + prec.left( + PREC.ASSIGNMENT, + seq( + $.directly_assignable_expression, + $._assignment_and_operator, + $._expression + ) + ), + + availability_condition: ($) => + seq( + "#available", + "(", + sep1(choice($._availability_argument, "*"), ","), + ")" + ), + + _availability_argument: ($) => seq($.identifier, $._basic_literal), + + //////////////////////////////// + // Declarations - https://docs.swift.org/swift-book/ReferenceManual/Declarations.html + //////////////////////////////// + + _declaration: ($) => + choice( + $.import_declaration, + $.property_declaration, + $.typealias_declaration, + $.function_declaration, + $.class_declaration, + // TODO actor declaration + $.protocol_declaration, + $.deinit_declaration, + $.subscript_declaration, + $.operator_declaration, + $.precedence_group_declaration, + $.associatedtype_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), + $.value_binding_pattern, + optional($.type_annotation), + optional($.type_constraints), + $.protocol_property_requirements + ) + ), + + protocol_property_requirements: ($) => + seq("{", repeat(choice("get", "set")), "}"), + + property_declaration: ($) => + prec.right( + seq( + optional($.modifiers), + choice("let", "var"), + sep1( + seq( + alias($.property_binding_pattern, $.value_binding_pattern), + optional($.type_annotation), + optional($.type_constraints), + optional( + choice(seq($._equal_sign, $._expression), $.computed_property) + ) + ), + "," + ) + ) + ), + + property_binding_pattern: ($) => + generate_pattern_matching_rule($, false, false), + + typealias_declaration: ($) => + seq( + optional($.modifiers), + "typealias", + alias($.simple_identifier, $.type_identifier), + optional($.type_parameters), + $._equal_sign, + $._type + ), + + function_declaration: ($) => + prec.right(seq($._bodyless_function_declaration, $.function_body)), + + _bodyless_function_declaration: ($) => + prec.right( + seq( + optional($.modifiers), + optional("class"), // XXX: This should be possible in non-last position, but that creates parsing ambiguity + choice( + $._constructor_function_decl, + $._non_constructor_function_decl + ), + optional($.type_parameters), + $._function_value_parameters, + optional($.throws_modifier), + optional(seq($._arrow_operator, $._return_type)), + optional($.type_constraints) + ) + ), + + function_body: ($) => $._block, + + // When there's more than one item it's technically a "protocol composition type" but I won't tell if you don't + _return_type: ($) => sep1($._possibly_implicitly_unwrapped_type, "&"), + + class_declaration: ($) => + prec.right( + choice( + seq( + optional($.modifiers), + choice("class", "struct"), + alias($.simple_identifier, $.type_identifier), + optional($.type_parameters), + optional(seq(":", $._inheritance_specifiers)), + optional($.type_constraints), + $.class_body + ), + seq( + optional($.modifiers), + "extension", + $.identifier, + optional($.type_parameters), + optional(seq(":", $._inheritance_specifiers)), + optional($.type_constraints), + $.class_body + ), + seq( + optional($.modifiers), + "enum", + alias($.simple_identifier, $.type_identifier), + optional($.type_parameters), + optional(seq(":", $._inheritance_specifiers)), + optional($.type_constraints), + $.enum_class_body + ) + ) + ), + + class_body: ($) => seq("{", optional($._class_member_declarations), "}"), + + _inheritance_specifiers: ($) => + prec.left(sep1($.inheritance_specifier, ",")), + + inheritance_specifier: ($) => + prec.left(choice($.user_type, $.function_type)), + + _annotated_inheritance_specifier: ($) => + seq(repeat($.attribute), $.inheritance_specifier), + + type_parameters: ($) => seq("<", sep1($.type_parameter, ","), ">"), + + type_parameter: ($) => + seq( + optional($.type_parameter_modifiers), + alias($.simple_identifier, $.type_identifier), + optional(seq(":", $._type)) + ), + + type_constraints: ($) => + prec.right(seq("where", sep1($.type_constraint, ","))), + + type_constraint: ($) => + choice($.inheritance_constraint, $.equality_constraint), + + inheritance_constraint: ($) => + seq(repeat($.attribute), $.identifier, ":", $._type), + + equality_constraint: ($) => + seq(repeat($.attribute), $.identifier, choice("=", "=="), $._type), + + _class_member_declarations: ($) => repeat1(seq($._declaration, $._semi)), + + _function_value_parameters: ($) => + seq("(", optional(sep1($._function_value_parameter, ",")), ")"), + + _function_value_parameter: ($) => + seq( + optional(alias($.simple_identifier, $.external_parameter_name)), + $.parameter, + optional(seq($._equal_sign, $._expression)) + ), + + parameter: ($) => + seq( + $.simple_identifier, + ":", + optional($.parameter_modifiers), + $._possibly_implicitly_unwrapped_type, + optional($._three_dot_operator) + ), + + _constructor_function_decl: ($) => seq("init", optional($._quest)), + + _non_constructor_function_decl: ($) => + seq( + "func", + choice( + $.simple_identifier, + $._referenceable_operator, + $._additive_operator, + $._bitwise_binary_operator + ) + ), + + _referenceable_operator: ($) => + choice( + $.custom_operator, + $._comparison_operator, + $._multiplicative_operator, + $._equality_operator, + $._comparison_operator + ), + + throws_modifier: ($) => choice($._throws_keyword, $._rethrows_keyword), + + enum_class_body: ($) => + seq("{", repeat(choice($.enum_entry, $._declaration)), "}"), + + enum_entry: ($) => + prec.left( + seq( + optional($.modifiers), + "case", + sep1( + seq( + $.simple_identifier, + optional( + choice( + $.enum_type_parameters, + seq($._equal_sign, $._expression) + ) + ) + ), + "," + ), + optional(";") + ) + ), + + 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), + "protocol", + alias($.simple_identifier, $.type_identifier), + optional($.type_parameters), + optional(seq(":", $._inheritance_specifiers)), + optional($.type_constraints), + $.protocol_body + ) + ), + + protocol_body: ($) => + seq("{", optional($._protocol_member_declarations), "}"), + + _protocol_member_declarations: ($) => + repeat1(seq($._protocol_member_declaration, $._semi)), + + _protocol_member_declaration: ($) => + choice( + alias( + seq($._bodyless_function_declaration, optional($.function_body)), + $.protocol_function_declaration + ), + $.deinit_declaration, + $.protocol_property_declaration, + $.typealias_declaration, + $.associatedtype_declaration + ), + + deinit_declaration: ($) => + prec.right(seq(optional($.modifiers), "deinit", $.function_body)), + + subscript_declaration: ($) => + prec.right( + seq( + optional($.modifiers), + "subscript", + optional($.type_parameters), + "(", + $._function_value_parameter, + ")", + optional(seq($._arrow_operator, $._return_type)), + optional($.type_constraints), + "{", + choice( + optional($.statements), + repeat(choice($.computed_getter, $.computed_setter)) + ), + "}" + ) + ), + + computed_property: ($) => + seq( + "{", + choice( + optional($.statements), + repeat(choice($.computed_getter, $.computed_setter)) + ), + "}" + ), + + computed_getter: ($) => seq("get", optional($._block)), + + computed_setter: ($) => + seq( + "set", + optional(seq("(", $.simple_identifier, ")")), + optional($._block) + ), + + operator_declaration: ($) => + seq( + choice("prefix", "infix", "postfix"), + "operator", + $.custom_operator, + optional(seq(":", $.simple_identifier)) + ), + + 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", + alias($.simple_identifier, $.type_identifier), + optional(seq(":", $._type)), + optional($.type_constraints), + optional(seq($._equal_sign, $._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( + "(", + repeat( + choice( + $.simple_identifier, + $.type_arguments, + $._basic_literal, + ":", + "*", + ",", + "==" + ) + ), + ")" + ) + ) + ), + + //////////////////////////////// + // Patterns - https://docs.swift.org/swift-book/ReferenceManual/Patterns.html + //////////////////////////////// + + // Higher-than-default precedence to resolve `x as SomeType` ambiguity (expression patterns seem not to support + // as-expressions) + binding_pattern: ($) => + prec.left(1, generate_pattern_matching_rule($, true, false, false, true)), + non_binding_pattern: ($) => + prec.left( + 1, + generate_pattern_matching_rule($, false, false, false, true) + ), + // Higher precedence than pattern w/o binding since these are strictly more flexible + _binding_pattern_with_expr: ($) => + prec.left(2, generate_pattern_matching_rule($, true, false, true, true)), + _non_binding_pattern_with_expr: ($) => + prec.left(2, generate_pattern_matching_rule($, false, false, true, true)), + + _direct_or_indirect_binding: ($) => + choice( + seq($.value_binding_pattern, optional($.type_annotation)), + seq("case", generate_pattern_matching_rule($, true, false, false)) + ), + + wildcard_pattern: ($) => "_", + + value_binding_pattern: ($) => + prec.left( + choice( + seq("var", generate_pattern_matching_rule($, false, false)), + seq("let", generate_pattern_matching_rule($, false, false)) + ) + ), + + // ========== + // Modifiers + // ========== + + modifiers: ($) => repeat1(choice($.attribute, $._modifier)), + + parameter_modifiers: ($) => repeat1($.parameter_modifier), + + _modifier: ($) => + choice( + $.member_modifier, + $.visibility_modifier, + $.function_modifier, + $.property_modifier, + $.inheritance_modifier, + $.parameter_modifier + ), + + type_modifiers: ($) => repeat1($.attribute), + + member_modifier: ($) => + choice("override", "convenience", "required", "unowned", "weak"), + + visibility_modifier: ($) => + seq( + choice("public", "private", "internal", "fileprivate"), + optional(seq("(", "set", ")")) + ), + + type_parameter_modifiers: ($) => repeat1($.attribute), + + function_modifier: ($) => + choice("infix", "postfix", "prefix", "mutating", "nonmutating"), + + property_modifier: ($) => + choice( + "static", // XXX should be in multiple places + "lazy", + "optional" + ), + + inheritance_modifier: ($) => choice("final", "open"), + + parameter_modifier: ($) => choice("inout", "@escaping", "@autoclosure"), + + use_site_target: ($) => + seq( + choice( + "property", + "get", + "set", + "receiver", + "param", + "setparam", + "delegate" + ), + ":" + ), + + directive: ($) => + token( + prec( + PREC.COMMENT, + choice( + seq("#if", /.*/), + seq("#elseif", /.*/), + seq("#else", /.*/), + seq("#endif", /.*/) + ) + ) + ), + }, }); + +function sep1(rule, separator) { + return seq(rule, repeat(seq(separator, rule))); +} + +function generate_tuple_pattern($, allows_binding, allows_expressions) { + const pattern_rule = generate_pattern_matching_rule( + $, + allows_binding, + false, + allows_expressions + ); + const tuple_pattern_item = choice( + seq($.simple_identifier, seq(":", pattern_rule)), + pattern_rule + ); + return seq("(", sep1(tuple_pattern_item, ","), ")", optional($._quest)); +} + +function generate_case_pattern($, allows_binding, force) { + return seq( + optional($.user_type), // XXX this should just be _type but that creates ambiguity + $._dot_operator, + $.simple_identifier, + optional(generate_tuple_pattern($, allows_binding, true)), + optional($._quest) + ); +} + +function generate_type_casting_pattern($, allows_binding) { + return choice( + seq("is", $._type), + seq(generate_pattern_matching_rule($, allows_binding, false), "as", $._type) + ); +} + +function generate_pattern_matching_rule( + $, + allows_binding, + requires_case_keyword, + allows_expressions, + force +) { + if (!force && !requires_case_keyword) { + if (allows_binding && !allows_expressions) { + return $.binding_pattern; + } + + if (!allows_binding && !allows_expressions) { + return $.non_binding_pattern; + } + + if (allows_binding && allows_expressions) { + return $._binding_pattern_with_expr; + } + + if (!allows_binding && allows_expressions) { + return $._non_binding_pattern_with_expr; + } + } + + const always_allowed_patterns = [ + $.wildcard_pattern, + generate_tuple_pattern($, allows_binding, allows_expressions), + generate_type_casting_pattern($, allows_binding), + ]; + + const binding_pattern_prefix = requires_case_keyword + ? choice(seq("case", "var"), seq("case", "let")) + : choice("var", "let"); + + const binding_pattern_if_allowed = allows_binding + ? [ + seq( + binding_pattern_prefix, + generate_pattern_matching_rule($, false, false, false), + optional($._quest) + ), + ] + : []; + + const case_pattern = requires_case_keyword + ? seq("case", generate_case_pattern($, allows_binding)) + : generate_case_pattern($, allows_binding); + + const expression_pattern = allows_expressions + ? $._expression + : $.simple_identifier; + + const all_patterns = always_allowed_patterns + .concat(binding_pattern_if_allowed) + .concat(case_pattern) + .concat(expression_pattern); + + return choice(...all_patterns); +} diff --git a/package.json b/package.json index 7af85f321..a4f5cf27c 100644 --- a/package.json +++ b/package.json @@ -24,6 +24,7 @@ "nan": "^2.15.0" }, "devDependencies": { + "prettier": "2.3.2", "tree-sitter-cli": "^0.20.0" } } diff --git a/src/scanner.c b/src/scanner.c index e69de29bb..c1272b78f 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -0,0 +1,255 @@ +#include +#include + +enum TokenType { + BLOCK_COMMENT, + SEMI, + ARROW_OPERATOR, + DOT_OPERATOR, + THREE_DOT_OPERATOR, + OPEN_ENDED_RANGE_OPERATOR, + CONJUNCTION_OPERATOR, + DISJUNCTION_OPERATOR, + NIL_COALESCING_OPERATOR, + EQUAL_SIGN, + THROWS_KEYWORD, + RETHROWS_KEYWORD +}; + +#define CROSS_SEMI_OPERATOR_COUNT 10 + +const char* CROSS_SEMI_OPERATORS[CROSS_SEMI_OPERATOR_COUNT] = { + "->", + ".", + "...", + "..<", + "&&", + "||", + "??", + "=", + "throws", + "rethrows" +}; + +const int32_t CROSS_SEMI_OP_LENS[CROSS_SEMI_OPERATOR_COUNT] = { + 2, + 1, + 3, + 3, + 2, + 2, + 2, + 1, + 6, + 8 +}; + +const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { + ARROW_OPERATOR, + DOT_OPERATOR, + THREE_DOT_OPERATOR, + OPEN_ENDED_RANGE_OPERATOR, + CONJUNCTION_OPERATOR, + DISJUNCTION_OPERATOR, + NIL_COALESCING_OPERATOR, + EQUAL_SIGN, + THROWS_KEYWORD, + RETHROWS_KEYWORD +}; + +void *tree_sitter_swift_external_scanner_create() { + return NULL; +} +void tree_sitter_swift_external_scanner_destroy(void *p) {} +void tree_sitter_swift_external_scanner_reset(void *p) {} +unsigned tree_sitter_swift_external_scanner_serialize(void *p, char *buffer) { + return 0; +} +void tree_sitter_swift_external_scanner_deserialize(void *p, const char *b, unsigned n) {} + +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 < CROSS_SEMI_OPERATOR_COUNT; op_idx++) { + if (encountered_operator[op_idx]) { + encountered++; + } + } + + return encountered; +} + +static bool eat_whitespace( + TSLexer *lexer, + const bool *valid_symbols, + enum TokenType *symbol_result +) { + bool saw_semi = false; + bool semi_is_valid = valid_symbols[SEMI]; + uint32_t lookahead; + while (should_treat_as_wspace(lookahead = lexer->lookahead)) { + if (lookahead == ';' && !semi_is_valid) { + break; + } + + lexer->advance(lexer, true); + if (lookahead == '\n' || lookahead == '\r' || lookahead == ';') { + saw_semi = true; + } + } + + lexer->mark_end(lexer); + if (saw_semi && semi_is_valid) { + *symbol_result = SEMI; + return true; + } + + return false; +} + +static bool eat_operators( + TSLexer *lexer, + const bool *valid_symbols, + enum TokenType *symbol_result +) { + bool possible_operators[CROSS_SEMI_OPERATOR_COUNT]; + for (int op_idx = 0; op_idx < CROSS_SEMI_OPERATOR_COUNT; op_idx++) { + possible_operators[op_idx] = valid_symbols[CROSS_SEMI_SYMBOLS[op_idx]]; + } + + int32_t str_idx = 0; + int32_t full_match = -1; + int32_t encountered_count; + while(true) { + for (int op_idx = 0; op_idx < CROSS_SEMI_OPERATOR_COUNT; op_idx++) { + if (!possible_operators[op_idx]) { + continue; + } + + if (str_idx > CROSS_SEMI_OP_LENS[op_idx]) { + possible_operators[op_idx] = false; + continue; + } + + if (str_idx == CROSS_SEMI_OP_LENS[op_idx]) { + full_match = op_idx; + lexer->mark_end(lexer); + continue; + } + + if (CROSS_SEMI_OPERATORS[op_idx][str_idx] != lexer->lookahead) { + possible_operators[op_idx] = false; + continue; + } + } + + if (encountered_op_count(possible_operators) == 0) { + break; + } + + lexer->advance(lexer, false); + str_idx += 1; + } + + if (full_match != -1) { + *symbol_result = CROSS_SEMI_SYMBOLS[full_match]; + return true; + } + + return false; +} + +static bool eat_comment( + TSLexer *lexer, + const bool *valid_symbols, + enum TokenType *symbol_result +) { + // This is from https://github.com/tree-sitter/tree-sitter-rust/blob/f1c5c4b1d7b98a0288c1e4e6094cfcc3f6213cc0/src/scanner.c + if (lexer->lookahead == '/') { + advance(lexer); + if (lexer->lookahead != '*') return false; + advance(lexer); + + bool after_star = false; + unsigned nesting_depth = 1; + for (;;) { + switch (lexer->lookahead) { + case '\0': + return false; + case '*': + advance(lexer); + after_star = true; + break; + case '/': + if (after_star) { + advance(lexer); + after_star = false; + nesting_depth--; + if (nesting_depth == 0) { + lexer->mark_end(lexer); + *symbol_result = BLOCK_COMMENT; + return true; + } + } else { + advance(lexer); + after_star = false; + if (lexer->lookahead == '*') { + nesting_depth++; + advance(lexer); + } + } + break; + default: + advance(lexer); + after_star = false; + break; + } + } + } + + return false; +} + + +bool tree_sitter_swift_external_scanner_scan( + void *payload, + TSLexer *lexer, + const bool *valid_symbols +) { + // Consume any whitespace at the start. + enum TokenType semi_result; + bool saw_semi = eat_whitespace(lexer, valid_symbols, &semi_result); + + // Now consume any operators that might cause our whitespace to be suppressed. + enum TokenType operator_result; + bool saw_operator = eat_operators(lexer, valid_symbols, &operator_result); + + if (saw_operator) { + lexer->result_symbol = operator_result; + return true; + } + + if (saw_semi) { + // Don't `mark_end`, since we may have advanced through some operators. + lexer->result_symbol = semi_result; + return true; + } + + enum TokenType comment_result; + bool saw_comment = eat_comment(lexer, valid_symbols, &comment_result); + if (saw_comment) { + lexer->mark_end(lexer); + lexer->result_symbol = comment_result; + return true; + } + + return false; +} + From f6d332a419e6dbdc52f0cf148f13061e88326755 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 28 Aug 2021 13:24:39 -0700 Subject: [PATCH 004/151] Add CI workflow to install and test Runs `tree-sitter generate` and `tree-sitter test` on every new commit. Also runs `prettier --check` for good measure. Still to do: make the artifacts from the run available (to produce a parser.c which would be really handy). --- .github/workflows/check.yml | 31 +++++++++++++++++++++++++++++++ .gitignore | 4 +++- binding.gyp | 2 +- package-lock.json | 25 +++++++++++++++++++++++++ package.json | 2 ++ 5 files changed, 62 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/check.yml create mode 100644 package-lock.json diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml new file mode 100644 index 000000000..d0e910056 --- /dev/null +++ b/.github/workflows/check.yml @@ -0,0 +1,31 @@ +# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions + +name: Check grammar and style + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [12.x, 14.x, 16.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + cache: 'npm' + - run: npm install + - run: npm run ci + - run: npm test diff --git a/.gitignore b/.gitignore index c299b96f0..ed0b0cce2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ -/package-lock.json /node_modules /src/* !/src/scanner.c +*.swp +/build +/test diff --git a/binding.gyp b/binding.gyp index 27228a91a..1971e8daa 100644 --- a/binding.gyp +++ b/binding.gyp @@ -9,7 +9,7 @@ "sources": [ "bindings/node/binding.cc", "src/parser.c", - # If your language uses an external scanner, add it here. + "src/scanner.c" ], "cflags_c": [ "-std=c99", diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 000000000..c9b8b4dbe --- /dev/null +++ b/package-lock.json @@ -0,0 +1,25 @@ +{ + "name": "experimental-tree-sitter-swift", + "version": "0.0.1", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "nan": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", + "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==" + }, + "prettier": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.3.2.tgz", + "integrity": "sha512-lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ==", + "dev": true + }, + "tree-sitter-cli": { + "version": "0.20.0", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.0.tgz", + "integrity": "sha512-4D1qapWbJXZ5rrSUGM5rcw5Vuq/smzn9KbiFRhlON6KeuuXjra+KAtDYVrDgAoLIG4ku+jbEEGrJxCptUGi3dg==", + "dev": true + } + } +} diff --git a/package.json b/package.json index a4f5cf27c..44cb47856 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,8 @@ "description": "An experimental tree-sitter grammar for the Swift programming language.", "main": "grammar.js", "scripts": { + "install": "tree-sitter generate", + "ci": "prettier --check grammar.js", "test": "tree-sitter test" }, "repository": { From 2dbc19e23820f134ead554e9ac73e077de69f035 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 28 Aug 2021 13:32:04 -0700 Subject: [PATCH 005/151] Publish parser source from Github Actions run The downside of not checking in `parser.c` is that you have to do a bunch of setup to get one. This change just uploads the files that we generated when GitHub Actions checked our code, making it accessible to anyone who can read the repository. --- .github/workflows/check.yml | 5 +++++ README.md | 15 ++++++++++++--- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index d0e910056..817c93d5d 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -29,3 +29,8 @@ jobs: - run: npm install - run: npm run ci - run: npm test + - name: Publish parser source + uses: actions/upload-artifact@v2 + with: + name: generated-parser-src + path: src diff --git a/README.md b/README.md index 66d27ae40..dc438677c 100644 --- a/README.md +++ b/README.md @@ -76,6 +76,15 @@ This repository currently omits most of the code that is autogenerated during a `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 parsers 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. +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/experimental-tree-sitter-swift/actions) for this + repository. +* Click on the appropriate commit. +* Go down to `Artifacts` and click on `generated-parser-src`. All the relevant parser files will be available in your + download. From 90bc6e8b003dcc4854b4be2a1f082e4869ea6ee2 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 10 Oct 2021 12:29:21 -0700 Subject: [PATCH 006/151] Add support for raw strings Uses a custom scanner and ongoing state to parse code like: ``` extension URL { func html(withTitle title: String) -> String { return #"\#(title)"# } } ``` Fixes #7, #11 --- corpus/literals.txt | 110 +++++++++++++++++++++++++++++++++++++ grammar.js | 14 +++-- src/scanner.c | 131 ++++++++++++++++++++++++++++++++++++++++++-- 3 files changed, 245 insertions(+), 10 deletions(-) diff --git a/corpus/literals.txt b/corpus/literals.txt index c460ebba7..6d5912d62 100755 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -173,3 +173,113 @@ let _ = nil (source_file (property_declaration (value_binding_pattern (non_binding_pattern (wildcard_pattern))))) + + +================== +Raw strings +================== + +let _ = #"Hello, world!"# +let _ = ##"Hello, so-called "world"!"## + +--- + +(source_file + (property_declaration + (value_binding_pattern + (non_binding_pattern + (wildcard_pattern))) + (raw_string_literal + (raw_str_end_part))) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (wildcard_pattern))) + (raw_string_literal + (raw_str_end_part)))) + +================== +Raw strings with interpolation +================== + +extension URL { + func html(withTitle title: String) -> String { + return #"\#(title)"# + } +} + +--- + +(source_file + (class_declaration + (identifier + (simple_identifier)) + (class_body + (function_declaration + (simple_identifier) + (external_parameter_name) + (parameter + (simple_identifier) + (user_type + (type_identifier))) + (user_type + (type_identifier)) + (function_body + (statements + (control_transfer_statement + (raw_string_literal + (raw_str_part) + (simple_identifier) + (raw_str_part) + (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)\##(e)\##"## + +--- + +(source_file + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (raw_string_literal + (raw_str_part) + (simple_identifier) + (multiline_comment) + (raw_str_end_part)))))) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (wildcard_pattern))) + (raw_string_literal + (raw_str_part) + (simple_identifier) + (raw_str_end_part))) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (wildcard_pattern))) + (raw_string_literal + (raw_str_end_part))) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (wildcard_pattern))) + (raw_string_literal + (raw_str_part) + (simple_identifier) + (raw_str_part) + (simple_identifier) + (raw_str_part) + (simple_identifier) + (raw_str_end_part)))) diff --git a/grammar.js b/grammar.js index ca74b4555..39f8822b3 100644 --- a/grammar.js +++ b/grammar.js @@ -22,8 +22,6 @@ * SOFTWARE. */ -// Using an adapted version of https://kotlinlang.org/docs/reference/grammar.html - const PREC = { NAVIGATION: 13, MULTIPLICATIVE: 12, @@ -99,6 +97,8 @@ module.exports = grammar({ externals: ($) => [ $.multiline_comment, + $.raw_str_part, + $.raw_str_end_part, $._semi, $._arrow_operator, $._dot_operator, @@ -175,7 +175,11 @@ module.exports = grammar({ // String literals _string_literal: ($) => - choice($.line_string_literal, $.multi_line_string_literal), + choice( + $.line_string_literal, + $.multi_line_string_literal, + $.raw_string_literal + ), line_string_literal: ($) => seq('"', repeat(choice($._line_string_content, $._interpolation)), '"'), @@ -190,7 +194,6 @@ module.exports = grammar({ _uni_character_literal: ($) => seq("\\", "u", /[0-9a-fA-F]{4}/), // TODO: { } - // TODO: # delimiter (probably use Rust's custom scanner for this) multi_line_string_literal: ($) => seq( '"""', @@ -198,6 +201,9 @@ module.exports = grammar({ '"""' ), + raw_string_literal: ($) => + seq(repeat(seq($.raw_str_part, $._expression)), $.raw_str_end_part), + _multi_line_string_content: ($) => choice($._multi_line_str_text, $._escaped_identifier, '"'), diff --git a/src/scanner.c b/src/scanner.c index c1272b78f..6648cf149 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -3,6 +3,8 @@ enum TokenType { BLOCK_COMMENT, + RAW_STR_PART, + RAW_STR_END_PART, SEMI, ARROW_OPERATOR, DOT_OPERATOR, @@ -57,15 +59,51 @@ const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { RETHROWS_KEYWORD }; +struct ScannerState { + uint32_t ongoing_raw_str_hash_count; +}; + void *tree_sitter_swift_external_scanner_create() { - return NULL; + return calloc(0, sizeof(struct ScannerState)); +} + +void tree_sitter_swift_external_scanner_destroy(void *payload) { + free(payload); } -void tree_sitter_swift_external_scanner_destroy(void *p) {} -void tree_sitter_swift_external_scanner_reset(void *p) {} -unsigned tree_sitter_swift_external_scanner_serialize(void *p, char *buffer) { - return 0; + +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; } -void tree_sitter_swift_external_scanner_deserialize(void *p, const char *b, unsigned n) {} static void advance(TSLexer *lexer) { lexer->advance(lexer, false); @@ -217,12 +255,83 @@ static bool eat_comment( return false; } +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 (lexer->lookahead == ')') { + // This is the end of an interpolation - now it's another raw_str_part + advance(lexer); + } 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. + while (lexer->lookahead != '\0') { + uint8_t last_char = '\0'; + while (lexer->lookahead != '#') { + last_char = lexer->lookahead; + advance(lexer); + } + + uint32_t current_hash_count = 0; + while (lexer->lookahead == '#' && current_hash_count < hash_count) { + current_hash_count += 1; + advance(lexer); + } + + if (current_hash_count == hash_count) { + if (last_char == '\\' && lexer->lookahead == '(') { + // Interpolation is starting. Advance the lexer to include the parenthesis. + advance(lexer); + *symbol_result = RAW_STR_PART; + state->ongoing_raw_str_hash_count = hash_count; + return true; + } else if (last_char == '"') { + // The string is finished! Do not advance, since the character after the `#` is not part + // of the result. + *symbol_result = RAW_STR_END_PART; + state->ongoing_raw_str_hash_count = 0; + return true; + } + } + } + + 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 semi_result; bool saw_semi = eat_whitespace(lexer, valid_symbols, &semi_result); @@ -250,6 +359,16 @@ bool tree_sitter_swift_external_scanner_scan( 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->mark_end(lexer); + lexer->result_symbol = raw_str_result; + return true; + } + return false; } From c152d39699c3b994eaa9ae82484435fcc144164c Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Mon, 11 Oct 2021 18:36:54 -0700 Subject: [PATCH 007/151] Split out the interpolation tokens in a raw_str The syntax highlighting Xcode does is #"abc as String, \#( as Plain Text, value depending on the variables scope, ) as Plain Text and ."# as String. In order for us to do the same, we need to separate out the `\#(` from the prior `raw_str_part` (and the same with the closing parenthesis). This requires a slightly complicated dance between the grammar and the custom scanner, where the scanner validates the `\#(` but does not parse it, and the grammar parses it but does not validate it. In turn, the closing parenthesis gets consumed as a separate token by the grammar but must leave some remnant behind in the form of a synthetic external rule that just signals its position. --- corpus/literals.txt | 30 ++++++++++++++++++++---------- grammar.js | 17 ++++++++++++++++- src/scanner.c | 34 ++++++++++++++++++++++++++-------- 3 files changed, 62 insertions(+), 19 deletions(-) diff --git a/corpus/literals.txt b/corpus/literals.txt index 6d5912d62..064c97055 100755 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -229,9 +229,13 @@ extension URL { (control_transfer_statement (raw_string_literal (raw_str_part) - (simple_identifier) + (raw_str_interpolation + (raw_str_interpolation_start) + (simple_identifier)) (raw_str_part) - (simple_identifier) + (raw_str_interpolation + (raw_str_interpolation_start) + (simple_identifier)) (raw_str_end_part))))))))) ================== @@ -242,7 +246,7 @@ 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)\##(e)\##"## +let _ = ##"\##(a)\#(b)\##(c)\#(d)"# ##"## --- @@ -254,8 +258,10 @@ let _ = ##"\##(a)\#(b)\##(c)\###(d)\##(e)\##"## (value_argument (raw_string_literal (raw_str_part) - (simple_identifier) - (multiline_comment) + (raw_str_interpolation + (raw_str_interpolation_start) + (simple_identifier) + (multiline_comment)) (raw_str_end_part)))))) (property_declaration (value_binding_pattern @@ -263,7 +269,9 @@ let _ = ##"\##(a)\#(b)\##(c)\###(d)\##(e)\##"## (wildcard_pattern))) (raw_string_literal (raw_str_part) - (simple_identifier) + (raw_str_interpolation + (raw_str_interpolation_start) + (simple_identifier)) (raw_str_end_part))) (property_declaration (value_binding_pattern @@ -277,9 +285,11 @@ let _ = ##"\##(a)\#(b)\##(c)\###(d)\##(e)\##"## (wildcard_pattern))) (raw_string_literal (raw_str_part) - (simple_identifier) - (raw_str_part) - (simple_identifier) + (raw_str_interpolation + (raw_str_interpolation_start) + (simple_identifier)) (raw_str_part) - (simple_identifier) + (raw_str_interpolation + (raw_str_interpolation_start) + (simple_identifier)) (raw_str_end_part)))) diff --git a/grammar.js b/grammar.js index 39f8822b3..56e2e5ed1 100644 --- a/grammar.js +++ b/grammar.js @@ -98,6 +98,7 @@ module.exports = grammar({ externals: ($) => [ $.multiline_comment, $.raw_str_part, + $.raw_str_continuing_indicator, $.raw_str_end_part, $._semi, $._arrow_operator, @@ -202,7 +203,21 @@ module.exports = grammar({ ), raw_string_literal: ($) => - seq(repeat(seq($.raw_str_part, $._expression)), $.raw_str_end_part), + seq( + repeat( + seq( + $.raw_str_part, + $.raw_str_interpolation, + optional($.raw_str_continuing_indicator) + ) + ), + $.raw_str_end_part + ), + + raw_str_interpolation: ($) => + seq($.raw_str_interpolation_start, $._expression, ")"), + + raw_str_interpolation_start: ($) => /\\#*\(/, _multi_line_string_content: ($) => choice($._multi_line_str_text, $._escaped_identifier, '"'), diff --git a/src/scanner.c b/src/scanner.c index 6648cf149..a3a9385dd 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -4,6 +4,7 @@ enum TokenType { BLOCK_COMMENT, RAW_STR_PART, + RAW_STR_CONTINUING_INDICATOR, RAW_STR_END_PART, SEMI, ARROW_OPERATOR, @@ -281,9 +282,11 @@ static bool eat_raw_str_part( return false; } - } else if (lexer->lookahead == ')') { - // This is the end of an interpolation - now it's another raw_str_part - advance(lexer); + } 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; } @@ -291,33 +294,49 @@ static bool eat_raw_str_part( // 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 != '#') { last_char = lexer->lookahead; advance(lexer); + if (last_char != '\\') { + // Mark a new end, but only if we didn't just advance past a `\` symbol, since we + // don't want to consume that. + 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 is starting. Advance the lexer to include the parenthesis. - advance(lexer); + // 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! Do not advance, since the character after the `#` is not part - // of the result. + // 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. } } @@ -364,7 +383,6 @@ bool tree_sitter_swift_external_scanner_scan( 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->mark_end(lexer); lexer->result_symbol = raw_str_result; return true; } From 868d0b4fde0a66b0d12cb64b2f93b08aae7cfabe Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Tue, 12 Oct 2021 19:15:26 -0700 Subject: [PATCH 008/151] Fix switch statement default cases Custom scanner parsing of `_semi` broke how switch statement defaults are parsed, but the corpus didn't have a basic switch default case. This restores that by making `default` one of the keywords the scanner handles. Fixes #13 --- corpus/statements.txt | 5 +++++ grammar.js | 3 ++- src/scanner.c | 14 +++++++++----- 3 files changed, 16 insertions(+), 6 deletions(-) diff --git a/corpus/statements.txt b/corpus/statements.txt index 7f6dde0af..a7f0a48f6 100755 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -170,6 +170,7 @@ switch something { case .pattern: return "Hello" case expression: return "and" case "Literal": return "Goodbye" + default: return ":)" } --- @@ -184,6 +185,9 @@ switch something { (statements (control_transfer_statement (line_string_literal)))) (switch_entry (switch_pattern (line_string_literal)) + (statements (control_transfer_statement (line_string_literal)))) + (switch_entry + (default_keyword) (statements (control_transfer_statement (line_string_literal)))))) ================== @@ -218,6 +222,7 @@ case .notExecutable(let path?): (statements (simple_identifier))) (switch_entry (modifiers (attribute (user_type (type_identifier)))) + (default_keyword) (statements (control_transfer_statement (line_string_literal))))) (switch_expression (self_expression) diff --git a/grammar.js b/grammar.js index ca74b4555..1bb9f6097 100644 --- a/grammar.js +++ b/grammar.js @@ -110,6 +110,7 @@ module.exports = grammar({ $._equal_sign, $._throws_keyword, $._rethrows_keyword, + $.default_keyword, ], rules: { @@ -663,7 +664,7 @@ module.exports = grammar({ optional($.modifiers), choice( seq("case", $.switch_pattern, repeat(seq(",", $.switch_pattern))), - "default" + $.default_keyword ), optional(seq("where", $._expression)), ":", diff --git a/src/scanner.c b/src/scanner.c index c1272b78f..d83fa4a90 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -13,10 +13,11 @@ enum TokenType { NIL_COALESCING_OPERATOR, EQUAL_SIGN, THROWS_KEYWORD, - RETHROWS_KEYWORD + RETHROWS_KEYWORD, + DEFAULT_KEYWORD }; -#define CROSS_SEMI_OPERATOR_COUNT 10 +#define CROSS_SEMI_OPERATOR_COUNT 11 const char* CROSS_SEMI_OPERATORS[CROSS_SEMI_OPERATOR_COUNT] = { "->", @@ -28,7 +29,8 @@ const char* CROSS_SEMI_OPERATORS[CROSS_SEMI_OPERATOR_COUNT] = { "??", "=", "throws", - "rethrows" + "rethrows", + "default" }; const int32_t CROSS_SEMI_OP_LENS[CROSS_SEMI_OPERATOR_COUNT] = { @@ -41,7 +43,8 @@ const int32_t CROSS_SEMI_OP_LENS[CROSS_SEMI_OPERATOR_COUNT] = { 2, 1, 6, - 8 + 8, + 7 }; const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { @@ -54,7 +57,8 @@ const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { NIL_COALESCING_OPERATOR, EQUAL_SIGN, THROWS_KEYWORD, - RETHROWS_KEYWORD + RETHROWS_KEYWORD, + DEFAULT_KEYWORD }; void *tree_sitter_swift_external_scanner_create() { From 646e3468dd08e9d5988e816cb1aa6517dc479588 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Thu, 14 Oct 2021 23:24:39 -0700 Subject: [PATCH 009/151] Parse popular swift repositories in CI To guard against regressions, we should parse some popular repositories in addition to checking against our corpus. This is the top 8 repositories shown on github trending, ranked by stars. This surfaces a number of failures that need to be triaged (are they due to known issues)? I used some old versions of repositories as well because this doesn't support Swift 5. --- .github/workflows/top-repos.yml | 26 +++++++++++++ package.json | 3 +- script-data/known_failures.txt | 62 +++++++++++++++++++++++++++++ script-data/top-repositories.txt | 8 ++++ scripts/top-repos.sh | 67 ++++++++++++++++++++++++++++++++ 5 files changed, 165 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/top-repos.yml create mode 100644 script-data/known_failures.txt create mode 100644 script-data/top-repositories.txt create mode 100755 scripts/top-repos.sh diff --git a/.github/workflows/top-repos.yml b/.github/workflows/top-repos.yml new file mode 100644 index 000000000..0bd0dca5a --- /dev/null +++ b/.github/workflows/top-repos.yml @@ -0,0 +1,26 @@ +name: Parse popular Swift repositories + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [16.x] + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + cache: 'npm' + - run: npm install + - run: npm run top-repos diff --git a/package.json b/package.json index 44cb47856..a0829bfd0 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,8 @@ "scripts": { "install": "tree-sitter generate", "ci": "prettier --check grammar.js", - "test": "tree-sitter test" + "test": "tree-sitter test", + "top-repos": "./scripts/top-repos.sh" }, "repository": { "type": "git", diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt new file mode 100644 index 000000000..0ad4c5b71 --- /dev/null +++ b/script-data/known_failures.txt @@ -0,0 +1,62 @@ +Alamofire/Example/Source/AppDelegate.swift +Alamofire/Tests/SessionManagerTests.swift +Alamofire/Tests/TLSEvaluationTests.swift +lottie-ios/lottie-swift/src/Private/LayerContainers/Utility/LayerTransformNode.swift +lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift +lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift +lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift +lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift +lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/RectNode.swift +lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/ShapeNode.swift +lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/StarNode.swift +lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift +lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift +lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift +lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderNodes/FillNode.swift +lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift +lottie-ios/lottie-swift/src/Private/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift +lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Protocols/RenderNode.swift +lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Protocols/AnimatorNode.swift +lottie-ios/lottie-swift/src/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift +lottie-ios/lottie-swift/src/Private/Utility/Primitives/BezierPath.swift +lottie-ios/lottie-swift/src/Private/Utility/Primitives/CompoundBezierPath.swift +vapor/Tests/VaporTests/ApplicationTests.swift +vapor/Sources/Vapor/Middleware/CORSMiddleware.swift +vapor/Sources/Vapor/Response/Response.swift +vapor/Sources/Vapor/Content/ContentConfig.swift +vapor/Sources/Vapor/Content/ContentContainer.swift +vapor/Sources/Vapor/Content/QueryContainer.swift +vapor/Sources/Vapor/Request/Request.swift +Kingfisher/Demo/Demo/Kingfisher-Demo/SwiftUIViews/ListDemo.swift +Kingfisher/Sources/General/KFOptionsSetter.swift +Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift +Kingfisher/Sources/SwiftUI/ImageBinder.swift +Kingfisher/Sources/SwiftUI/KFImageOptions.swift +shadowsocks/ShadowsocksX-NG/ServerProfile.swift +Carthage/Source/carthage/Outdated.swift +Carthage/Source/carthage/Archive.swift +Carthage/Source/carthage/Update.swift +Carthage/Source/carthage/Extensions.swift +Carthage/Source/carthage/Fetch.swift +Carthage/Source/carthage/Build.swift +Carthage/Source/carthage/Checkout.swift +Carthage/Source/carthage/Formatting.swift +Carthage/Source/CarthageKit/Xcode.swift +Carthage/Source/CarthageKit/Simulator.swift +Carthage/Source/CarthageKit/Archive.swift +Carthage/Source/CarthageKit/VersionFile.swift +Carthage/Source/CarthageKit/Project.swift +Carthage/Source/CarthageKit/FrameworkExtensions.swift +Carthage/Source/CarthageKit/GitURL.swift +Carthage/Source/CarthageKit/Git.swift +Carthage/Tests/CarthageKitTests/DependencySpec.swift +Carthage/Tests/CarthageKitTests/CartfileCommentsSpec.swift +Carthage/Tests/CarthageKitTests/XcodeSpec.swift +Moya/Tests/MoyaTests/TestHelpers.swift +Moya/Sources/Moya/Plugins/NetworkLoggerPlugin.swift +Moya/Sources/Moya/Response.swift +ObjectMapper/Tests/ObjectMapperTests/MappableTypesWithTransformsTests.swift +ObjectMapper/Package@swift-4.swift +ObjectMapper/Sources/HexColorTransform.swift +ObjectMapper/Sources/Map.swift +ObjectMapper/Sources/ToJSON.swift diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt new file mode 100644 index 000000000..887edc24e --- /dev/null +++ b/script-data/top-repositories.txt @@ -0,0 +1,8 @@ +Alamofire Alamofire/Alamofire 4.8.2 +lottie-ios airbnb/lottie-ios 3.1.4 +vapor vapor/vapor 3.3.3 +Kingfisher onevcat/Kingfisher 6.3.1 +shadowsocks shadowsocks/ShadowsocksX-NG v1.9.4 +Carthage Carthage/Carthage 0.38.0 +Moya Moya/Moya 15.0.0 +ObjectMapper tristanhimmelman/ObjectMapper 3.5.3 diff --git a/scripts/top-repos.sh b/scripts/top-repos.sh new file mode 100755 index 000000000..9605233ea --- /dev/null +++ b/scripts/top-repos.sh @@ -0,0 +1,67 @@ +#!/bin/bash + +set -e + +parser_dir="$(pwd)" +known_failures="$parser_dir/script-data/known_failures.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 --branch $tag --depth 1 "https://github.com/$url" "$repo" + fi + + echo "Cloned repository into $(pwd)/$repo" +} + +# 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 + + cd $tmpdir + checkout $repo $url $tag + cd $parser_dir + + all_files=$(find "$tmpdir/$repo" -name *.swift -not -path '*/Pods/*') + failed_files=$( + IFS=$'\n' + for file in $all_files; 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 "Unexpected parse failure found in $repo:" + cat <<<"$failed_files" + exit 1 + 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 + validate $line +done < $parser_dir/script-data/top-repositories.txt From a88580731274cb9ea3c43b22039d6a94ee08e82f Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 16 Oct 2021 11:42:15 -0700 Subject: [PATCH 010/151] Misc fixes for top-repos * Better specify availability condition arguments (int.int.int is now legal, other literals are not) (Fixes #17) * Allow protocol composition types anywhere we allow implicitly unwrapped types (Fixes #18) * Allow subscripts to have more than one argument (Fixes #22) * Add support for property wrapper projections (Fixes #23) * Let protocol property requirements specify mutation modifiers (Fixes #24) * Support annotations on parameters (Fixes #26) --- corpus/classes.txt | 79 +++++++++++++++++++++++++++++++--- corpus/expressions.txt | 22 ++++++++++ corpus/functions.txt | 3 +- corpus/statements.txt | 6 +-- grammar.js | 50 +++++++++++++-------- script-data/known_failures.txt | 26 ----------- 6 files changed, 130 insertions(+), 56 deletions(-) diff --git a/corpus/classes.txt b/corpus/classes.txt index f97a57043..61e09eeed 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -163,6 +163,7 @@ class GenericSubscript { (parameter (simple_identifier) (user_type (type_identifier))) (optional_type (user_type (type_identifier))) (computed_getter + (getter_specifier) (statements (control_transfer_statement (call_expression (simple_identifier) @@ -173,6 +174,7 @@ class GenericSubscript { (simple_identifier) (navigation_suffix (simple_identifier)))))))))) (computed_setter + (setter_specifier) (statements (assignment (directly_assignable_expression @@ -195,6 +197,44 @@ class GenericSubscript { (parameter (simple_identifier) (user_type (type_identifier) (type_arguments (user_type (type_identifier))))) (user_type (type_identifier) (type_arguments (user_type (type_identifier)))) (statements (control_transfer_statement (simple_identifier))))))) +=== +Subscript with multiple arguments +=== + +public subscript(_ value: D, arg2: Arg2) -> D where D: Decodable { + return value +} + +--- + +(source_file + (subscript_declaration + (modifiers + (visibility_modifier)) + (type_parameters + (type_parameter + (type_identifier))) + (external_parameter_name) + (parameter + (simple_identifier) + (user_type + (type_identifier))) + (parameter + (simple_identifier) + (user_type + (type_identifier))) + (user_type + (type_identifier)) + (type_constraints + (type_constraint + (inheritance_constraint + (identifier + (simple_identifier)) + (user_type + (type_identifier))))) + (statements + (control_transfer_statement + (simple_identifier))))) ================== Inheritance @@ -277,14 +317,14 @@ class SomethingElse: ThingProvider { (type_annotation (user_type (type_identifier))) (computed_property - (computed_getter (statements (simple_identifier))) - (computed_setter (simple_identifier)))) + (computed_getter (getter_specifier) (statements (simple_identifier))) + (computed_setter (setter_specifier) (simple_identifier)))) (property_declaration (value_binding_pattern (non_binding_pattern (simple_identifier))) (type_annotation (user_type (type_identifier))) (computed_property - (computed_getter (statements (simple_identifier))) - (computed_setter (statements (assignment (directly_assignable_expression (simple_identifier)) (simple_identifier)))))))) + (computed_getter (getter_specifier) (statements (simple_identifier))) + (computed_setter (setter_specifier) (statements (assignment (directly_assignable_expression (simple_identifier)) (simple_identifier)))))))) (class_declaration (type_identifier) (inheritance_specifier (user_type (type_identifier))) @@ -300,6 +340,31 @@ class SomethingElse: ThingProvider { (statements (call_expression (simple_identifier) (call_suffix (value_arguments))))) (control_transfer_statement (simple_identifier))))) (function_declaration (simple_identifier) (function_body))))) +=== +Protocol composition types +=== + +var propertyMap: NodePropertyMap & KeypathSearchable { + return transformProperties +} + +--- + + (source_file + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (type_annotation + (user_type + (type_identifier)) + (user_type + (type_identifier))) + (computed_property + (statements + (control_transfer_statement + (simple_identifier)))))) + ================== Structs ================== @@ -323,7 +388,7 @@ struct Adder { (type_annotation (user_type (type_identifier)))) (function_declaration - (modifiers (function_modifier)) + (modifiers (mutation_modifier)) (simple_identifier) (function_body (statements @@ -342,7 +407,7 @@ protocol Fallible { } public protocol FooProvider { - var foo: String { get } + var foo: String { nonmutating get } } protocol Wrapper { @@ -367,7 +432,7 @@ protocol Wrapper { (protocol_property_declaration (value_binding_pattern (non_binding_pattern (simple_identifier))) (type_annotation (user_type (type_identifier))) - (protocol_property_requirements)))) + (protocol_property_requirements (getter_specifier (mutation_modifier)))))) (protocol_declaration (type_identifier) (protocol_body diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 48322b661..2ac3d2696 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -424,3 +424,25 @@ foo.doSomething(a)? (call_suffix (value_arguments (value_argument (simple_identifier))))) (navigation_suffix (simple_identifier))) (call_suffix (value_arguments (value_argument (simple_identifier)))))) + +=== +Property wrapper projections +=== + +Image.url(url, isLoaded: $done) + +--- + +(source_file + (call_expression + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments + (value_argument + (simple_identifier)) + (value_argument + (simple_identifier) + (simple_identifier)))))) diff --git a/corpus/functions.txt b/corpus/functions.txt index ec4c1385f..b15214f02 100755 --- a/corpus/functions.txt +++ b/corpus/functions.txt @@ -54,7 +54,7 @@ func main(args: [String]) {} func maybe_main(args: Maybe) {} -func convert(args: [String: Int]) {} +func convert(@Arg args: [String: Int]) {} func sum(a: Int, b: Int!) { return a + b } @@ -77,6 +77,7 @@ func sum(a: Int, b: Int!) { return a + b } (function_body)) (function_declaration (simple_identifier) + (attribute (user_type (type_identifier))) (parameter (simple_identifier) (dictionary_type (user_type (type_identifier)) (user_type (type_identifier)))) diff --git a/corpus/statements.txt b/corpus/statements.txt index a7f0a48f6..5ec014d3b 100755 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -493,7 +493,7 @@ if #available(iOS 14.0, *) { doSomething() } -if #available(iOS 13.0, *) { +if #available(macOS 10.12.0, *) { return 3 } else { return 0 @@ -503,11 +503,11 @@ if #available(iOS 13.0, *) { (source_file (if_expression (availability_condition (identifier (simple_identifier)) - (real_literal)) + (integer_literal) (integer_literal)) (statements (call_expression (simple_identifier) (call_suffix (value_arguments))))) (if_expression (availability_condition (identifier (simple_identifier)) - (real_literal)) + (integer_literal) (integer_literal) (integer_literal)) (statements (control_transfer_statement (integer_literal))) (statements (control_transfer_statement (integer_literal))))) diff --git a/grammar.js b/grammar.js index 5dfaf304d..120045385 100644 --- a/grammar.js +++ b/grammar.js @@ -136,7 +136,8 @@ module.exports = grammar({ choice( LEXICAL_IDENTIFIER, token(seq("`", LEXICAL_IDENTIFIER, "`")), - /\$[0-9]+/ + /\$[0-9]+/, + token(seq("$", LEXICAL_IDENTIFIER)) ), identifier: ($) => sep1($.simple_identifier, $._dot_operator), @@ -236,9 +237,9 @@ module.exports = grammar({ type_annotation: ($) => seq(":", $._possibly_implicitly_unwrapped_type), - // This is only legal in a few positions + // Superset of legal type declarations, including implicitly unwrapped types and protocol composition types. _possibly_implicitly_unwrapped_type: ($) => - seq($._type, optional(token.immediate("!"))), + seq(sep1($._type, "&"), optional(token.immediate("!"))), _type: ($) => prec.right( @@ -618,7 +619,7 @@ module.exports = grammar({ seq("(", optional($.lambda_function_type_parameters), ")") ), optional($.throws_modifier), - optional(seq($._arrow_operator, $._return_type)) + optional(seq($._arrow_operator, $._possibly_implicitly_unwrapped_type)) ), lambda_function_type_parameters: ($) => sep1($._lambda_parameter, ","), @@ -837,7 +838,8 @@ module.exports = grammar({ ")" ), - _availability_argument: ($) => seq($.identifier, $._basic_literal), + _availability_argument: ($) => + seq($.identifier, sep1($.integer_literal, ".")), //////////////////////////////// // Declarations - https://docs.swift.org/swift-book/ReferenceManual/Declarations.html @@ -891,7 +893,7 @@ module.exports = grammar({ ), protocol_property_requirements: ($) => - seq("{", repeat(choice("get", "set")), "}"), + seq("{", repeat(choice($.getter_specifier, $.setter_specifier)), "}"), property_declaration: ($) => prec.right( @@ -940,16 +942,15 @@ module.exports = grammar({ optional($.type_parameters), $._function_value_parameters, optional($.throws_modifier), - optional(seq($._arrow_operator, $._return_type)), + optional( + seq($._arrow_operator, $._possibly_implicitly_unwrapped_type) + ), optional($.type_constraints) ) ), function_body: ($) => $._block, - // When there's more than one item it's technically a "protocol composition type" but I won't tell if you don't - _return_type: ($) => sep1($._possibly_implicitly_unwrapped_type, "&"), - class_declaration: ($) => prec.right( choice( @@ -1010,7 +1011,12 @@ module.exports = grammar({ choice($.inheritance_constraint, $.equality_constraint), inheritance_constraint: ($) => - seq(repeat($.attribute), $.identifier, ":", $._type), + seq( + repeat($.attribute), + $.identifier, + ":", + $._possibly_implicitly_unwrapped_type + ), equality_constraint: ($) => seq(repeat($.attribute), $.identifier, choice("=", "=="), $._type), @@ -1022,6 +1028,7 @@ module.exports = grammar({ _function_value_parameter: ($) => seq( + optional($.attribute), optional(alias($.simple_identifier, $.external_parameter_name)), $.parameter, optional(seq($._equal_sign, $._expression)) @@ -1142,10 +1149,10 @@ module.exports = grammar({ optional($.modifiers), "subscript", optional($.type_parameters), - "(", - $._function_value_parameter, - ")", - optional(seq($._arrow_operator, $._return_type)), + $._function_value_parameters, + optional( + seq($._arrow_operator, $._possibly_implicitly_unwrapped_type) + ), optional($.type_constraints), "{", choice( @@ -1166,15 +1173,18 @@ module.exports = grammar({ "}" ), - computed_getter: ($) => seq("get", optional($._block)), + computed_getter: ($) => seq($.getter_specifier, optional($._block)), computed_setter: ($) => seq( - "set", + $.setter_specifier, optional(seq("(", $.simple_identifier, ")")), optional($._block) ), + getter_specifier: ($) => seq(optional($.mutation_modifier), "get"), + setter_specifier: ($) => seq(optional($.mutation_modifier), "set"), + operator_declaration: ($) => seq( choice("prefix", "infix", "postfix"), @@ -1287,6 +1297,7 @@ module.exports = grammar({ $.member_modifier, $.visibility_modifier, $.function_modifier, + $.mutation_modifier, $.property_modifier, $.inheritance_modifier, $.parameter_modifier @@ -1305,8 +1316,9 @@ module.exports = grammar({ type_parameter_modifiers: ($) => repeat1($.attribute), - function_modifier: ($) => - choice("infix", "postfix", "prefix", "mutating", "nonmutating"), + function_modifier: ($) => choice("infix", "postfix", "prefix"), + + mutation_modifier: ($) => choice("mutating", "nonmutating"), property_modifier: ($) => choice( diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index 0ad4c5b71..0407916a8 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -1,37 +1,13 @@ Alamofire/Example/Source/AppDelegate.swift Alamofire/Tests/SessionManagerTests.swift -Alamofire/Tests/TLSEvaluationTests.swift -lottie-ios/lottie-swift/src/Private/LayerContainers/Utility/LayerTransformNode.swift -lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift -lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift -lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift -lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift -lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/RectNode.swift -lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/ShapeNode.swift -lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/StarNode.swift -lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift -lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift -lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift -lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderNodes/FillNode.swift -lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift -lottie-ios/lottie-swift/src/Private/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift -lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Protocols/RenderNode.swift -lottie-ios/lottie-swift/src/Private/NodeRenderSystem/Protocols/AnimatorNode.swift lottie-ios/lottie-swift/src/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift lottie-ios/lottie-swift/src/Private/Utility/Primitives/BezierPath.swift lottie-ios/lottie-swift/src/Private/Utility/Primitives/CompoundBezierPath.swift vapor/Tests/VaporTests/ApplicationTests.swift vapor/Sources/Vapor/Middleware/CORSMiddleware.swift vapor/Sources/Vapor/Response/Response.swift -vapor/Sources/Vapor/Content/ContentConfig.swift -vapor/Sources/Vapor/Content/ContentContainer.swift -vapor/Sources/Vapor/Content/QueryContainer.swift vapor/Sources/Vapor/Request/Request.swift -Kingfisher/Demo/Demo/Kingfisher-Demo/SwiftUIViews/ListDemo.swift -Kingfisher/Sources/General/KFOptionsSetter.swift -Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift Kingfisher/Sources/SwiftUI/ImageBinder.swift -Kingfisher/Sources/SwiftUI/KFImageOptions.swift shadowsocks/ShadowsocksX-NG/ServerProfile.swift Carthage/Source/carthage/Outdated.swift Carthage/Source/carthage/Archive.swift @@ -55,8 +31,6 @@ Carthage/Tests/CarthageKitTests/XcodeSpec.swift Moya/Tests/MoyaTests/TestHelpers.swift Moya/Sources/Moya/Plugins/NetworkLoggerPlugin.swift Moya/Sources/Moya/Response.swift -ObjectMapper/Tests/ObjectMapperTests/MappableTypesWithTransformsTests.swift ObjectMapper/Package@swift-4.swift ObjectMapper/Sources/HexColorTransform.swift -ObjectMapper/Sources/Map.swift ObjectMapper/Sources/ToJSON.swift From 71338910a3f5a18f6f64e6d0e773b978f3e77d14 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 16 Oct 2021 12:13:27 -0700 Subject: [PATCH 011/151] Adding support for key-path expressions Fixes #21 This adds rudimentary support, but some edge cases around indexing don't yet work. I'm checking this in as-is because it can handle the cases from `top-repos`; someone who needs the more advanced behavior can help iron out those edge cases. --- corpus/expressions.txt | 89 ++++++++++++++++++++++++++++++++++ grammar.js | 28 +++++++++++ script-data/known_failures.txt | 3 -- 3 files changed, 117 insertions(+), 3 deletions(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 2ac3d2696..622df8c1b 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -446,3 +446,92 @@ Image.url(url, isLoaded: $done) (value_argument (simple_identifier) (simple_identifier)))))) + +=== +Key-path expressions +=== + +let pathToProperty = \SomeStructure.someValue + +let c = SomeClass(someProperty: 10) +c.observe(\.someProperty) { object, change in + // ... +} + +compoundValue[keyPath: \.self] = (a: 10, b: 20) + +let nestedKeyPath = \OuterStructure.outer.someValue + +--- + +(source_file + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (navigation_expression + (key_path_expression + (type_identifier)) + (navigation_suffix + (simple_identifier)))) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (simple_identifier) + (integer_literal)))))) + (call_expression + (call_expression + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (call_suffix + (value_arguments + (value_argument + (navigation_expression + (key_path_expression) + (navigation_suffix + (simple_identifier))))))) + (call_suffix + (lambda_literal + (lambda_function_type + (lambda_function_type_parameters + (simple_identifier) + (simple_identifier))) + (comment)))) + (assignment + (directly_assignable_expression + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (simple_identifier) + (navigation_expression + (key_path_expression) + (navigation_suffix + (simple_identifier)))))))) + (tuple_expression + (simple_identifier) + (integer_literal) + (simple_identifier) + (integer_literal))) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (navigation_expression + (navigation_expression + (key_path_expression + (type_identifier)) + (navigation_suffix + (simple_identifier))) + (navigation_suffix + (simple_identifier))))) + diff --git a/grammar.js b/grammar.js index 120045385..19c212f8e 100644 --- a/grammar.js +++ b/grammar.js @@ -542,6 +542,7 @@ module.exports = grammar({ $.do_expression, $.try_expression, $._referenceable_operator, + $.key_path_expression, alias($._three_dot_operator, $.fully_open_range) ), @@ -717,6 +718,33 @@ module.exports = grammar({ ) ), + key_path_expression: ($) => + prec.left( + seq( + "\\", + optional( + choice($._simple_user_type, $.array_type, $.dictionary_type) + ), + repeat(seq(".", $._key_path_component)) + ) + ), + + _key_path_component: ($) => + prec.left( + choice( + seq($.simple_identifier, repeat($._key_path_postfixes)), + repeat1($._key_path_postfixes) + ) + ), + + _key_path_postfixes: ($) => + choice( + "?", + "!", + "self", + seq("[", optional(sep1($.value_argument, ",")), "]") + ), + _try_operator: ($) => choice("try", "try!", "try?"), _assignment_and_operator: ($) => choice("+=", "-=", "*=", "/=", "%=", "="), diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index 0407916a8..4e5e9a8a6 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -3,10 +3,7 @@ Alamofire/Tests/SessionManagerTests.swift lottie-ios/lottie-swift/src/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift lottie-ios/lottie-swift/src/Private/Utility/Primitives/BezierPath.swift lottie-ios/lottie-swift/src/Private/Utility/Primitives/CompoundBezierPath.swift -vapor/Tests/VaporTests/ApplicationTests.swift vapor/Sources/Vapor/Middleware/CORSMiddleware.swift -vapor/Sources/Vapor/Response/Response.swift -vapor/Sources/Vapor/Request/Request.swift Kingfisher/Sources/SwiftUI/ImageBinder.swift shadowsocks/ShadowsocksX-NG/ServerProfile.swift Carthage/Source/carthage/Outdated.swift From 4185a6bd76a8c633a3e9da20e3e293a48c5a8bd4 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 16 Oct 2021 13:32:43 -0700 Subject: [PATCH 012/151] Allow if/switch/do to be labeled statements Fixes #27 To avoid parsing ambiguity, this commit also switches if/switch/do over from being expressions to being statements. That's how they actually are in the official grammar, but it didn't cause issues before to make them expressions and it was strictly more flexible. Unfortunately that flexibility is now over! --- corpus/statements.txt | 43 +++++++++++++++++----------------- grammar.js | 29 +++++++++++++---------- script-data/known_failures.txt | 3 --- 3 files changed, 39 insertions(+), 36 deletions(-) diff --git a/corpus/statements.txt b/corpus/statements.txt index 5ec014d3b..40ac60f50 100755 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -116,7 +116,7 @@ outerLoop: for outerObject in dataArray { (simple_identifier)) (user_type (type_identifier))) (simple_identifier)) - (loop_label) + (statement_label) (for_statement (simple_identifier) (simple_identifier) @@ -125,7 +125,7 @@ outerLoop: for outerObject in dataArray { (simple_identifier) (simple_identifier) (statements - (if_expression + (if_statement (equality_expression (simple_identifier) (simple_identifier)) (statements (assignment @@ -175,7 +175,7 @@ switch something { --- (source_file - (switch_expression + (switch_statement (simple_identifier) (switch_entry (switch_pattern (simple_identifier)) @@ -207,7 +207,7 @@ case .notExecutable(let path?): --- (source_file - (switch_expression + (switch_statement (simple_identifier) (switch_entry (switch_pattern @@ -224,7 +224,7 @@ case .notExecutable(let path?): (modifiers (attribute (user_type (type_identifier)))) (default_keyword) (statements (control_transfer_statement (line_string_literal))))) - (switch_expression + (switch_statement (self_expression) (switch_entry (switch_pattern @@ -271,7 +271,7 @@ do { --- (source_file - (do_expression + (do_statement (statements (property_declaration (value_binding_pattern (non_binding_pattern (simple_identifier))) @@ -309,7 +309,7 @@ do { (simple_identifier) (non_binding_pattern (simple_identifier)))) (catch_block)) - (do_expression + (do_statement (statements (property_declaration (value_binding_pattern (non_binding_pattern (simple_identifier))) @@ -329,24 +329,25 @@ if case .someCase(_) = otherThing() { if let something: MyType = doThing() { } -if a.isEmpty, let b = getB() { +someLabel: if a.isEmpty, let b = getB() { } --- (source_file - (if_expression + (if_statement (value_binding_pattern (non_binding_pattern (simple_identifier))) (call_expression (simple_identifier) (call_suffix (value_arguments))) (statements (call_expression (simple_identifier) (call_suffix (value_arguments))))) - (if_expression + (if_statement (binding_pattern (simple_identifier) (wildcard_pattern)) (call_expression (simple_identifier) (call_suffix (value_arguments)))) - (if_expression + (if_statement (value_binding_pattern (non_binding_pattern (simple_identifier))) (type_annotation (user_type (type_identifier))) (call_expression (simple_identifier) (call_suffix (value_arguments)))) - (if_expression + (statement_label) + (if_statement (navigation_expression (simple_identifier) (navigation_suffix (simple_identifier))) (value_binding_pattern (non_binding_pattern (simple_identifier))) (call_expression (simple_identifier) (call_suffix (value_arguments))))) @@ -363,7 +364,7 @@ return default --- (source_file - (if_expression + (if_statement (value_binding_pattern (non_binding_pattern (simple_identifier))) (call_expression (try_expression @@ -390,14 +391,14 @@ if let something = doThing(), let somethingElse = something.somethingElse() { --- (source_file - (if_expression + (if_statement (value_binding_pattern (non_binding_pattern (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_expression + (if_statement (value_binding_pattern (non_binding_pattern (simple_identifier))) (call_expression (simple_identifier) (call_suffix (value_arguments))) @@ -423,13 +424,13 @@ if a == b { --- (source_file - (if_expression + (if_statement (value_binding_pattern (non_binding_pattern (simple_identifier))) (simple_identifier) - (if_expression (value_binding_pattern (non_binding_pattern (simple_identifier))) (simple_identifier))) - (if_expression + (if_statement (value_binding_pattern (non_binding_pattern (simple_identifier))) (simple_identifier))) + (if_statement (equality_expression (simple_identifier) (simple_identifier)) - (if_expression + (if_statement (value_binding_pattern (non_binding_pattern (simple_identifier))) (simple_identifier)))) @@ -501,11 +502,11 @@ if #available(macOS 10.12.0, *) { --- (source_file - (if_expression (availability_condition + (if_statement (availability_condition (identifier (simple_identifier)) (integer_literal) (integer_literal)) (statements (call_expression (simple_identifier) (call_suffix (value_arguments))))) - (if_expression (availability_condition + (if_statement (availability_condition (identifier (simple_identifier)) (integer_literal) (integer_literal) (integer_literal)) (statements (control_transfer_statement (integer_literal))) diff --git a/grammar.js b/grammar.js index 120045385..ebd1eee34 100644 --- a/grammar.js +++ b/grammar.js @@ -536,10 +536,7 @@ module.exports = grammar({ $.dictionary_literal, $.self_expression, $.super_expression, - $.if_expression, $.guard_expression, - $.switch_expression, - $.do_expression, $.try_expression, $._referenceable_operator, alias($._three_dot_operator, $.fully_open_range) @@ -647,9 +644,9 @@ module.exports = grammar({ super_expression: ($) => seq("super"), - _else_options: ($) => choice($._block, $.if_expression), + _else_options: ($) => choice($._block, $.if_statement), - if_expression: ($) => + if_statement: ($) => prec.right( seq( "if", @@ -678,7 +675,7 @@ module.exports = grammar({ ) ), - switch_expression: ($) => + switch_statement: ($) => seq("switch", $._expression, "{", repeat($.switch_entry), "}"), switch_entry: ($) => @@ -696,7 +693,7 @@ module.exports = grammar({ switch_pattern: ($) => generate_pattern_matching_rule($, true, false, true), - do_expression: ($) => seq("do", $._block, repeat($.catch_block)), + do_statement: ($) => seq("do", $._block, repeat($.catch_block)), catch_block: ($) => seq( @@ -762,7 +759,7 @@ module.exports = grammar({ choice( $._expression, $._declaration, - $._loop_statement, + $._labeled_statement, $.control_transfer_statement, $.assignment, $.availability_condition @@ -770,13 +767,20 @@ module.exports = grammar({ _block: ($) => prec(PREC.BLOCK, seq("{", optional($.statements), "}")), - _loop_statement: ($) => + _labeled_statement: ($) => seq( - optional($.loop_label), - choice($.for_statement, $.while_statement, $.repeat_while_statement) + optional($.statement_label), + choice( + $.for_statement, + $.while_statement, + $.repeat_while_statement, + $.do_statement, + $.if_statement, + $.switch_statement + ) ), - loop_label: ($) => token(/[a-zA-Z_][a-zA-Z_0-9]*:/), + statement_label: ($) => token(/[a-zA-Z_][a-zA-Z_0-9]*:/), for_statement: ($) => prec.right( @@ -899,6 +903,7 @@ module.exports = grammar({ prec.right( seq( optional($.modifiers), + optional("class"), choice("let", "var"), sep1( seq( diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index 0407916a8..3fa8b0faf 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -28,9 +28,6 @@ Carthage/Source/CarthageKit/Git.swift Carthage/Tests/CarthageKitTests/DependencySpec.swift Carthage/Tests/CarthageKitTests/CartfileCommentsSpec.swift Carthage/Tests/CarthageKitTests/XcodeSpec.swift -Moya/Tests/MoyaTests/TestHelpers.swift -Moya/Sources/Moya/Plugins/NetworkLoggerPlugin.swift -Moya/Sources/Moya/Response.swift ObjectMapper/Package@swift-4.swift ObjectMapper/Sources/HexColorTransform.swift ObjectMapper/Sources/ToJSON.swift From 873deb9d9a465d05f367b6617f2901b68f619725 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 16 Oct 2021 15:01:56 -0700 Subject: [PATCH 013/151] Properly support metatypes Fixes #19 Previous code just pretended metatypes didn't exist, trivially handling the simple case since `Foo.Type` could just be a type itself. However, that breaks down in more complex cases like array types. This just makes the metatype explicit as something that can have `.Type` or `.Protocol` at the end of it. --- corpus/types.txt | 33 ++++++++++++++++++++++++++++++++ grammar.js | 26 ++++++++++++++----------- script-data/known_failures.txt | 1 - script-data/top-repositories.txt | 1 + 4 files changed, 49 insertions(+), 12 deletions(-) diff --git a/corpus/types.txt b/corpus/types.txt index a9b1f04bc..3ec8007e0 100755 --- a/corpus/types.txt +++ b/corpus/types.txt @@ -207,3 +207,36 @@ public typealias IntCallback = Callback (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) + (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)))))) diff --git a/grammar.js b/grammar.js index 5d1c5e21b..812d43cce 100644 --- a/grammar.js +++ b/grammar.js @@ -242,18 +242,19 @@ module.exports = grammar({ seq(sep1($._type, "&"), optional(token.immediate("!"))), _type: ($) => + prec.right(seq(optional($.type_modifiers), $._unannotated_type)), + + _unannotated_type: ($) => prec.right( - seq( - optional($.type_modifiers), - choice( - $.user_type, - $.tuple_type, - $.function_type, - $.array_type, - $.dictionary_type, - $.optional_type, - $._opaque_type - ) + choice( + $.user_type, + $.tuple_type, + $.function_type, + $.array_type, + $.dictionary_type, + $.optional_type, + $.metatype, + $._opaque_type ) ), @@ -300,6 +301,9 @@ module.exports = grammar({ ) ), + metatype: ($) => + prec.left(seq($._unannotated_type, ".", choice("Type", "Protocol"))), + _quest: ($) => "?", _immediate_quest: ($) => token.immediate("?"), diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index ae5116099..7a4530303 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -1,6 +1,5 @@ Alamofire/Example/Source/AppDelegate.swift Alamofire/Tests/SessionManagerTests.swift -lottie-ios/lottie-swift/src/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift lottie-ios/lottie-swift/src/Private/Utility/Primitives/BezierPath.swift lottie-ios/lottie-swift/src/Private/Utility/Primitives/CompoundBezierPath.swift vapor/Sources/Vapor/Middleware/CORSMiddleware.swift diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 887edc24e..d87d8e1d0 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -1,6 +1,7 @@ Alamofire Alamofire/Alamofire 4.8.2 lottie-ios airbnb/lottie-ios 3.1.4 vapor vapor/vapor 3.3.3 +SwiftyJSON SwiftyJSON/SwiftyJSON 5.0.1 Kingfisher onevcat/Kingfisher 6.3.1 shadowsocks shadowsocks/ShadowsocksX-NG v1.9.4 Carthage Carthage/Carthage 0.38.0 From a9ea5003011cf85c634190e7c5a361d94a8c117a Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 16 Oct 2021 15:36:59 -0700 Subject: [PATCH 014/151] Add a few more items to the `_semi`-suppressor Fixes #15 adding `else` to the list of keywords that the custom scanner will use to skip `_semi` tokens. Also, just like `throws` and `rethrows`, a where clause may dangle off of the end of a function declaration. The declaration will look syntactically valid without it, but then when the parser encounters the `where`, everything will blow up. This handles `where` the same as the other keywords that have this problem by moving it to the custom scanner. --- corpus/classes.txt | 10 +++++++++- corpus/statements.txt | 3 ++- grammar.js | 12 +++++++----- src/scanner.c | 18 +++++++++++++----- 4 files changed, 31 insertions(+), 12 deletions(-) diff --git a/corpus/classes.txt b/corpus/classes.txt index 61e09eeed..072305dc2 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -404,6 +404,7 @@ protocol Fallible { associatedtype SuccessType = Void func getFailure() -> Self.FailureType? + where Self.FailureType: Equatable } public protocol FooProvider { @@ -424,7 +425,14 @@ protocol Wrapper { (associatedtype_declaration (type_identifier) (user_type (type_identifier))) (protocol_function_declaration (simple_identifier) - (optional_type (user_type (type_identifier) (type_identifier)))))) + (optional_type (user_type (type_identifier) (type_identifier))) + (type_constraints + (type_constraint + (inheritance_constraint + (identifier + (simple_identifier) + (simple_identifier)) + (user_type (type_identifier)))))))) (protocol_declaration (modifiers (visibility_modifier)) (type_identifier) diff --git a/corpus/statements.txt b/corpus/statements.txt index 40ac60f50..67a79ca77 100755 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -418,7 +418,8 @@ if let aPrime = a { } if a == b { -} else if let cPrime = c { +} +else if let cPrime = c { } --- diff --git a/grammar.js b/grammar.js index 812d43cce..07b8129be 100644 --- a/grammar.js +++ b/grammar.js @@ -112,6 +112,8 @@ module.exports = grammar({ $._throws_keyword, $._rethrows_keyword, $.default_keyword, + $._where_keyword, + $._else, ], rules: { @@ -656,7 +658,7 @@ module.exports = grammar({ seq( "if", sep1(prec.left($._if_condition_sequence_item), ","), - choice($._block, seq($._block, "else", $._else_options)) + choice($._block, seq($._block, $._else, $._else_options)) ) ), @@ -675,7 +677,7 @@ module.exports = grammar({ seq( "guard", sep1(prec.left($._if_condition_sequence_item), ","), - "else", + $._else, $._block ) ), @@ -690,7 +692,7 @@ module.exports = grammar({ seq("case", $.switch_pattern, repeat(seq(",", $.switch_pattern))), $.default_keyword ), - optional(seq("where", $._expression)), + optional(seq($._where_keyword, $._expression)), ":", $.statements, optional("fallthrough") @@ -708,7 +710,7 @@ module.exports = grammar({ $._block ), - where_clause: ($) => prec.left(seq("where", $._expression)), + where_clause: ($) => prec.left(seq($._where_keyword, $._expression)), try_expression: ($) => prec.left( @@ -1042,7 +1044,7 @@ module.exports = grammar({ ), type_constraints: ($) => - prec.right(seq("where", sep1($.type_constraint, ","))), + prec.right(seq($._where_keyword, sep1($.type_constraint, ","))), type_constraint: ($) => choice($.inheritance_constraint, $.equality_constraint), diff --git a/src/scanner.c b/src/scanner.c index dda614428..6f4a5bf56 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -17,10 +17,12 @@ enum TokenType { EQUAL_SIGN, THROWS_KEYWORD, RETHROWS_KEYWORD, - DEFAULT_KEYWORD + DEFAULT_KEYWORD, + WHERE_KEYWORD, + ELSE_KEYWORD }; -#define CROSS_SEMI_OPERATOR_COUNT 11 +#define CROSS_SEMI_OPERATOR_COUNT 13 const char* CROSS_SEMI_OPERATORS[CROSS_SEMI_OPERATOR_COUNT] = { "->", @@ -33,7 +35,9 @@ const char* CROSS_SEMI_OPERATORS[CROSS_SEMI_OPERATOR_COUNT] = { "=", "throws", "rethrows", - "default" + "default", + "where", + "else" }; const int32_t CROSS_SEMI_OP_LENS[CROSS_SEMI_OPERATOR_COUNT] = { @@ -47,7 +51,9 @@ const int32_t CROSS_SEMI_OP_LENS[CROSS_SEMI_OPERATOR_COUNT] = { 1, 6, 8, - 7 + 7, + 5, + 4 }; const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { @@ -61,7 +67,9 @@ const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { EQUAL_SIGN, THROWS_KEYWORD, RETHROWS_KEYWORD, - DEFAULT_KEYWORD + DEFAULT_KEYWORD, + WHERE_KEYWORD, + ELSE_KEYWORD }; struct ScannerState { From a0b877965f0b878713f3aacf29fa8270f8741e8d Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 16 Oct 2021 20:55:30 -0700 Subject: [PATCH 015/151] Fix ternaries spread across multiple lines Fixes #25 Slightly hacky solution to avoid consuming standalone `?` or `:` characters but still use them as suppressing characters to prevent a `_semi`. Also does the same with `/` and `{` to fix some one-offs errors I saw in other repos. --- corpus/expressions.txt | 15 ++++++++++++++- script-data/known_failures.txt | 4 ---- src/scanner.c | 15 ++++++++++++++- 3 files changed, 28 insertions(+), 6 deletions(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 622df8c1b..64c8a0442 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -89,9 +89,22 @@ Ternary expression a ? b : c +someVeryLongFunctionCall() + ? doSomethingHere() + : fallback + --- -(source_file (ternary_expression (simple_identifier) (simple_identifier) (simple_identifier))) +(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))) ================== Multiple expressions on one line using semicolons diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index 7a4530303..b064b7668 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -2,8 +2,6 @@ Alamofire/Example/Source/AppDelegate.swift Alamofire/Tests/SessionManagerTests.swift lottie-ios/lottie-swift/src/Private/Utility/Primitives/BezierPath.swift lottie-ios/lottie-swift/src/Private/Utility/Primitives/CompoundBezierPath.swift -vapor/Sources/Vapor/Middleware/CORSMiddleware.swift -Kingfisher/Sources/SwiftUI/ImageBinder.swift shadowsocks/ShadowsocksX-NG/ServerProfile.swift Carthage/Source/carthage/Outdated.swift Carthage/Source/carthage/Archive.swift @@ -13,7 +11,6 @@ Carthage/Source/carthage/Fetch.swift Carthage/Source/carthage/Build.swift Carthage/Source/carthage/Checkout.swift Carthage/Source/carthage/Formatting.swift -Carthage/Source/CarthageKit/Xcode.swift Carthage/Source/CarthageKit/Simulator.swift Carthage/Source/CarthageKit/Archive.swift Carthage/Source/CarthageKit/VersionFile.swift @@ -23,7 +20,6 @@ Carthage/Source/CarthageKit/GitURL.swift Carthage/Source/CarthageKit/Git.swift Carthage/Tests/CarthageKitTests/DependencySpec.swift Carthage/Tests/CarthageKitTests/CartfileCommentsSpec.swift -Carthage/Tests/CarthageKitTests/XcodeSpec.swift ObjectMapper/Package@swift-4.swift ObjectMapper/Sources/HexColorTransform.swift ObjectMapper/Sources/ToJSON.swift diff --git a/src/scanner.c b/src/scanner.c index 6f4a5bf56..0df5f4aa6 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -72,6 +72,9 @@ const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { ELSE_KEYWORD }; +#define NON_CONSUMING_CROSS_SEMI_CHAR_COUNT 3 +const char NON_CONSUMING_CROSS_SEMI_CHARS[CROSS_SEMI_OPERATOR_COUNT] = { '?', ':', '{' }; + struct ScannerState { uint32_t ongoing_raw_str_hash_count; }; @@ -367,6 +370,16 @@ bool tree_sitter_swift_external_scanner_scan( enum TokenType semi_result; bool saw_semi = eat_whitespace(lexer, valid_symbols, &semi_result); + // 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. + uint8_t char_after_whitespace = lexer->lookahead; + bool allow_semi = true; + for (int i = 0; i < NON_CONSUMING_CROSS_SEMI_CHAR_COUNT; i++) { + if (NON_CONSUMING_CROSS_SEMI_CHARS[i] == char_after_whitespace) { + allow_semi = 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, &operator_result); @@ -376,7 +389,7 @@ bool tree_sitter_swift_external_scanner_scan( return true; } - if (saw_semi) { + if (saw_semi && allow_semi) { // Don't `mark_end`, since we may have advanced through some operators. lexer->result_symbol = semi_result; return true; From 75adcefef415bb39bd0f2490c167f200af2f0c39 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 16 Oct 2021 21:35:24 -0700 Subject: [PATCH 016/151] Fix tuple expressions being too low in precedence Fixes #20 Turns out declaring a conflict between tuple expressions and tuple types is unavoidable after all. --- corpus/expressions.txt | 21 +++++++++++++++++++++ grammar.js | 4 +++- script-data/known_failures.txt | 2 -- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 64c8a0442..4650c11c4 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -548,3 +548,24 @@ let nestedKeyPath = \OuterStructure.outer.someValue (navigation_suffix (simple_identifier))))) +=== +Tuple expression in function +=== + +trimPathAtLengths(positions: [(start: start, end: end)]) + +--- + +(source_file + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (simple_identifier) + (array_literal + (tuple_expression + (simple_identifier) + (simple_identifier) + (simple_identifier) + (simple_identifier)))))))) diff --git a/grammar.js b/grammar.js index 07b8129be..aef2cbb69 100644 --- a/grammar.js +++ b/grammar.js @@ -86,6 +86,9 @@ module.exports = grammar({ // { (foo, bar) ... [$._expression, $._lambda_parameter], [$._primary_expression, $._lambda_parameter], + + // (start: start, end: end) + [$._tuple_type_item_identifier, $.tuple_expression], ], extras: ($) => [ @@ -551,7 +554,6 @@ module.exports = grammar({ tuple_expression: ($) => prec.left( - -1, seq( "(", sep1( diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index b064b7668..7a42c9537 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -1,7 +1,5 @@ Alamofire/Example/Source/AppDelegate.swift Alamofire/Tests/SessionManagerTests.swift -lottie-ios/lottie-swift/src/Private/Utility/Primitives/BezierPath.swift -lottie-ios/lottie-swift/src/Private/Utility/Primitives/CompoundBezierPath.swift shadowsocks/ShadowsocksX-NG/ServerProfile.swift Carthage/Source/carthage/Outdated.swift Carthage/Source/carthage/Archive.swift From 724bb9cf4fa27d977fceefcb204f0e63df236cd8 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 16 Oct 2021 16:55:39 -0700 Subject: [PATCH 017/151] Add some unicode identifier support (no emojis) Fixes #4 (good enough) Uses XID_Start and XID_Continue to add support for a broader set of unicode identifiers. Notably this doesn't include emojis even though Swift does. I haven't seen any projects use emojis so this is probably good enough for now. --- corpus/statements.txt | 18 ++++++++++++++++++ grammar.js | 2 +- script-data/known_failures.txt | 2 -- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/corpus/statements.txt b/corpus/statements.txt index 67a79ca77..cc5deb08c 100755 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -513,3 +513,21 @@ if #available(macOS 10.12.0, *) { (statements (control_transfer_statement (integer_literal))) (statements (control_transfer_statement (integer_literal))))) + +=== +Unicode identifiers +=== + +let ø = unicode() + +--- + +(source_file + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments))))) diff --git a/grammar.js b/grammar.js index aef2cbb69..4a5099984 100644 --- a/grammar.js +++ b/grammar.js @@ -48,7 +48,7 @@ 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)); -const LEXICAL_IDENTIFIER = /[a-zA-Z_][a-zA-Z_0-9]*/; +const LEXICAL_IDENTIFIER = /[_\p{XID_Start}][_\p{XID_Continue}]*/; const CUSTOM_OPERATORS = token( choice( // https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html#ID418 diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index 7a42c9537..3d866597a 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -9,11 +9,9 @@ Carthage/Source/carthage/Fetch.swift Carthage/Source/carthage/Build.swift Carthage/Source/carthage/Checkout.swift Carthage/Source/carthage/Formatting.swift -Carthage/Source/CarthageKit/Simulator.swift Carthage/Source/CarthageKit/Archive.swift Carthage/Source/CarthageKit/VersionFile.swift Carthage/Source/CarthageKit/Project.swift -Carthage/Source/CarthageKit/FrameworkExtensions.swift Carthage/Source/CarthageKit/GitURL.swift Carthage/Source/CarthageKit/Git.swift Carthage/Tests/CarthageKitTests/DependencySpec.swift From 98198b9ed96b36178c5760f611a247f2b079db65 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 16 Oct 2021 23:00:57 -0700 Subject: [PATCH 018/151] Special case navigation with force unwrap Fixes #16 Force unwrapping during navigation _should_ just fall naturally out of the normal postfix operator combined with a basic navigation expression. Unfortunately, life isn't that simple, and it gets parsed as a custom infix operator instead. We can nudge things in the right direction by just declaring a `!.` operator, even though no such operator truly exists. --- corpus/expressions.txt | 36 ++++++++++++++++++++++++++++++++++ grammar.js | 6 +++++- script-data/known_failures.txt | 2 -- 3 files changed, 41 insertions(+), 3 deletions(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 4650c11c4..a231a0010 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -569,3 +569,39 @@ trimPathAtLengths(positions: [(start: start, end: end)]) (simple_identifier) (simple_identifier) (simple_identifier)))))))) + +=== +Navigation expressions +=== + +_ = self.foo.bar.baz +print(thing.maybeGreeting!.definitely) + +--- + +(source_file + (assignment + (directly_assignable_expression + (simple_identifier)) + (navigation_expression + (navigation_expression + (navigation_expression + (self_expression) + (navigation_suffix + (simple_identifier))) + (navigation_suffix + (simple_identifier))) + (navigation_suffix + (simple_identifier)))) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (navigation_expression + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (navigation_suffix + (simple_identifier)))))))) diff --git a/grammar.js b/grammar.js index 4a5099984..2cc06e223 100644 --- a/grammar.js +++ b/grammar.js @@ -479,10 +479,14 @@ module.exports = grammar({ navigation_suffix: ($) => seq( - $._dot_operator, + $._navigation_operator, choice($.simple_identifier, $.tuple_expression, $.integer_literal) ), + // `!.` should just be the result of a postfix `!` before navigation, but it gets parsed as a + // custom infix operator instead. + _navigation_operator: ($) => choice($._dot_operator, "!."), + call_suffix: ($) => prec.left( seq( diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index 3d866597a..e4213a689 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -1,5 +1,3 @@ -Alamofire/Example/Source/AppDelegate.swift -Alamofire/Tests/SessionManagerTests.swift shadowsocks/ShadowsocksX-NG/ServerProfile.swift Carthage/Source/carthage/Outdated.swift Carthage/Source/carthage/Archive.swift From ea894fbe2e73d07428c8d47b1b5844e0131ff70b Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 16 Oct 2021 22:01:53 -0700 Subject: [PATCH 019/151] Prevent comments from occurring in strings Uses the approach described in: https://github.com/tree-sitter/tree-sitter/issues/1087 --- corpus/literals.txt | 4 +++- grammar.js | 2 +- script-data/known_failures.txt | 1 - 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/corpus/literals.txt b/corpus/literals.txt index 064c97055..4a7be5004 100755 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -30,12 +30,14 @@ String literals This is a "multiline" string. """ +"This string has a // comment (except not!)" --- (source_file (line_string_literal) - (multi_line_string_literal)) + (multi_line_string_literal) + (line_string_literal)) ================== String interpolation diff --git a/grammar.js b/grammar.js index 2cc06e223..45ae75c24 100644 --- a/grammar.js +++ b/grammar.js @@ -133,7 +133,7 @@ module.exports = grammar({ // Lexical Structure - https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html //////////////////////////////// - comment: ($) => prec(PREC.COMMENT, seq("//", /.*/)), + comment: ($) => token(prec(PREC.COMMENT, seq("//", /.*/))), // Identifiers diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index e4213a689..2b7d1bf42 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -1,4 +1,3 @@ -shadowsocks/ShadowsocksX-NG/ServerProfile.swift Carthage/Source/carthage/Outdated.swift Carthage/Source/carthage/Archive.swift Carthage/Source/carthage/Update.swift From eb3c2e50d88f8806286f1fe49dcf0986b6ce7de4 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 17 Oct 2021 09:55:58 -0700 Subject: [PATCH 020/151] Fix Rust bindings Still not publishing this as a crate, but it's worth having the bindings be functional at least. --- .gitignore | 2 ++ Cargo.toml | 4 ++-- bindings/rust/build.rs | 5 ----- bindings/rust/lib.rs | 2 +- 4 files changed, 5 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index ed0b0cce2..de0f553a7 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,5 @@ *.swp /build /test +Cargo.lock +/target/* diff --git a/Cargo.toml b/Cargo.toml index d059514ad..af821dc7f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,10 @@ [package] -name = "tree-sitter-swift" +name = "experimental-tree-sitter-swift" description = "swift grammar for the tree-sitter parsing library" version = "0.0.1" keywords = ["incremental", "parsing", "swift"] categories = ["parsing", "text-editors"] -repository = "https://github.com/tree-sitter/tree-sitter-swift" +repository = "https://github.com/alex-pinkus/experimental-tree-sitter-swift" edition = "2018" license = "MIT" diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs index c6061f099..2dd4a7adc 100644 --- a/bindings/rust/build.rs +++ b/bindings/rust/build.rs @@ -10,14 +10,9 @@ fn main() { let parser_path = src_dir.join("parser.c"); c_config.file(&parser_path); - // If your language uses an external scanner written in C, - // then include this block of code: - - /* 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/bindings/rust/lib.rs b/bindings/rust/lib.rs index e7622d326..14bd07e51 100644 --- a/bindings/rust/lib.rs +++ b/bindings/rust/lib.rs @@ -6,7 +6,7 @@ //! ``` //! let code = ""; //! let mut parser = tree_sitter::Parser::new(); -//! parser.set_language(tree_sitter_swift::language()).expect("Error loading swift grammar"); +//! parser.set_language(experimental_tree_sitter_swift::language()).expect("Error loading swift grammar"); //! let tree = parser.parse(code, None).unwrap(); //! ``` //! From 5367fb56576cf6e3030e9f6fdecf438707d987f7 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 17 Oct 2021 14:32:17 -0700 Subject: [PATCH 021/151] Support protocol composition in inheritance clauses Newer versions of Alamofire use `class Foo: Bar & Baz`. Adding that as a separator in inheritance clauses lets us bump the tag we have in top-repos. While I'm at it, bumped other versions as well. --- corpus/classes.txt | 3 ++- grammar.js | 2 +- script-data/top-repositories.txt | 6 +++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/corpus/classes.txt b/corpus/classes.txt index 072305dc2..67fce06ad 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -242,7 +242,7 @@ Inheritance class A : B {} -class D : SomeInterface { } +class D : Protocol1 & Protocol2 { } --- @@ -254,6 +254,7 @@ class D : SomeInterface { } (class_declaration (type_identifier) (inheritance_specifier (user_type (type_identifier))) + (inheritance_specifier (user_type (type_identifier))) (class_body))) ================== diff --git a/grammar.js b/grammar.js index 45ae75c24..8f49d05cc 100644 --- a/grammar.js +++ b/grammar.js @@ -1032,7 +1032,7 @@ module.exports = grammar({ class_body: ($) => seq("{", optional($._class_member_declarations), "}"), _inheritance_specifiers: ($) => - prec.left(sep1($.inheritance_specifier, ",")), + prec.left(sep1($.inheritance_specifier, choice(",", "&"))), inheritance_specifier: ($) => prec.left(choice($.user_type, $.function_type)), diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index d87d8e1d0..d2a16dc02 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -1,8 +1,8 @@ -Alamofire Alamofire/Alamofire 4.8.2 -lottie-ios airbnb/lottie-ios 3.1.4 +Alamofire Alamofire/Alamofire 5.4.4 +lottie-ios airbnb/lottie-ios 3.2.3 vapor vapor/vapor 3.3.3 SwiftyJSON SwiftyJSON/SwiftyJSON 5.0.1 -Kingfisher onevcat/Kingfisher 6.3.1 +Kingfisher onevcat/Kingfisher 7.1.1 shadowsocks shadowsocks/ShadowsocksX-NG v1.9.4 Carthage Carthage/Carthage 0.38.0 Moya Moya/Moya 15.0.0 From 4c672b7141d420587d575254decfbc5631c8e04f Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 23 Oct 2021 12:45:04 -0700 Subject: [PATCH 022/151] Add documentation for externals We use externals for a few different purposes and there's no clear explanation for it. Add a comment to the `externals` block to identify the two different use cases and explain them both a bit more. Fixes #10 --- grammar.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/grammar.js b/grammar.js index 8f49d05cc..94ee03682 100644 --- a/grammar.js +++ b/grammar.js @@ -99,11 +99,33 @@ module.exports = grammar({ ], 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. $._semi, + // Every one of the below operators will suppress a `_semi` if we encounter it after a newline. $._arrow_operator, $._dot_operator, $._three_dot_operator, From 64db1fd70130d962a4b986e238f0471bd033f0c2 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 6 Nov 2021 12:04:16 -0700 Subject: [PATCH 023/151] Add restrictions on modifiers in local scope Declarations for functions, classes, and variables are legal at various different scopes (global, type-level, and local), but have different sets of legal modifiers in each. While you might think that would be fine and would simply improve our permissiveness, it actually ends up _restricting_ some valid code - in particular, code that uses those would-be modifiers as identifiers. For instance, one file in Carthage uses the innocent-looking variable name `prefix`, but we fail to parse that because in other scopes, that would instead be a modifier. To fix this, we split out declarations by scope: global, type-level, and local. For now, we treat global and type-level as mostly the same except that subscripts are legal in the latter and not the former. However, for local declarations, we allow a much smaller list of operators. Fixes #39 --- corpus/classes.txt | 71 +++++++------- corpus/expressions.txt | 53 +++++++---- corpus/functions.txt | 4 +- corpus/statements.txt | 93 ++++++++++++++++--- grammar.js | 163 ++++++++++++++++++++++++++------- script-data/known_failures.txt | 2 - 6 files changed, 284 insertions(+), 102 deletions(-) diff --git a/corpus/classes.txt b/corpus/classes.txt index 67fce06ad..dfdbf4299 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -84,7 +84,7 @@ internal open class Test { (source_file (class_declaration - (modifiers (visibility_modifier) (inheritance_modifier)) + (modifiers (visibility_modifier) (visibility_modifier)) (type_identifier) (class_body (property_declaration @@ -159,7 +159,7 @@ class GenericSubscript { (type_identifier) (class_body (subscript_declaration - (modifiers (inheritance_modifier)) + (modifiers (visibility_modifier)) (parameter (simple_identifier) (user_type (type_identifier))) (optional_type (user_type (type_identifier))) (computed_getter @@ -201,40 +201,45 @@ class GenericSubscript { Subscript with multiple arguments === -public subscript(_ value: D, arg2: Arg2) -> D where D: Decodable { - return value +class Subscriptable { + public subscript(_ value: D, arg2: Arg2) -> D where D: Decodable { + return value + } } --- -(source_file - (subscript_declaration - (modifiers - (visibility_modifier)) - (type_parameters - (type_parameter - (type_identifier))) - (external_parameter_name) - (parameter - (simple_identifier) - (user_type - (type_identifier))) - (parameter - (simple_identifier) - (user_type - (type_identifier))) - (user_type - (type_identifier)) - (type_constraints - (type_constraint - (inheritance_constraint - (identifier - (simple_identifier)) - (user_type - (type_identifier))))) - (statements - (control_transfer_statement - (simple_identifier))))) + (source_file + (class_declaration + (type_identifier) + (class_body + (subscript_declaration + (modifiers + (visibility_modifier)) + (type_parameters + (type_parameter + (type_identifier))) + (external_parameter_name) + (parameter + (simple_identifier) + (user_type + (type_identifier))) + (parameter + (simple_identifier) + (user_type + (type_identifier))) + (user_type + (type_identifier)) + (type_constraints + (type_constraint + (inheritance_constraint + (identifier + (simple_identifier)) + (user_type + (type_identifier))))) + (statements + (control_transfer_statement + (simple_identifier))))))) ================== Inheritance @@ -303,7 +308,7 @@ class SomethingElse: ThingProvider { (type_annotation (optional_type (user_type (type_identifier))))) (property_declaration - (modifiers (property_modifier)) + (modifiers (property_behavior_modifier)) (value_binding_pattern (non_binding_pattern (simple_identifier))) (type_annotation (user_type (type_identifier))) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index a231a0010..0a40e7307 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -110,15 +110,19 @@ someVeryLongFunctionCall() Multiple expressions on one line using semicolons ================== -print(a); return b +print(a); throw b --- -(source_file - (call_expression + (source_file + (call_expression (simple_identifier) - (call_suffix (value_arguments (value_argument (simple_identifier))))) - (control_transfer_statement (simple_identifier))) + (call_suffix + (value_arguments + (value_argument + (simple_identifier))))) + (throw_keyword) + (simple_identifier)) ================== Indexing @@ -230,20 +234,37 @@ let a: SomeClass = .someInstance Tuple expressions ================== -let a: (Int, Int) = (1, 2) -return (lhs: 3, rhs: 4) +func math() { + let a: (Int, Int) = (1, 2) + return (lhs: 3, rhs: 4) +} --- -(source_file - (property_declaration - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (type_annotation (tuple_type (user_type (type_identifier)) (user_type (type_identifier)))) - (tuple_expression (integer_literal) (integer_literal))) - (control_transfer_statement - (tuple_expression - (simple_identifier) (integer_literal) - (simple_identifier) (integer_literal)))) + (source_file + (function_declaration + (simple_identifier) + (function_body + (statements + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (type_annotation + (tuple_type + (user_type + (type_identifier)) + (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 diff --git a/corpus/functions.txt b/corpus/functions.txt index b15214f02..0e621b7a7 100755 --- a/corpus/functions.txt +++ b/corpus/functions.txt @@ -390,7 +390,7 @@ test { [weak self, otherSelf] (a) in } (simple_identifier) (call_suffix (lambda_literal - (capture_list (simple_identifier) (simple_identifier)) + (capture_list (ownership_modifier) (simple_identifier) (simple_identifier)) (lambda_function_type (lambda_function_type_parameters (simple_identifier))))))) ================== @@ -469,7 +469,7 @@ private lazy var onCatClosure: (_ cat: Cat) throws -> Void = { _ in (source_file (property_declaration - (modifiers (visibility_modifier) (property_modifier)) + (modifiers (visibility_modifier) (property_behavior_modifier)) (value_binding_pattern (non_binding_pattern (simple_identifier))) (type_annotation (function_type diff --git a/corpus/statements.txt b/corpus/statements.txt index cc5deb08c..fd138d616 100755 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -356,25 +356,39 @@ someLabel: if a.isEmpty, let b = getB() { If let with function call =============== -if let a = try? Foo.getValue("key") { - return a +func doSomething() { + if let a = try? Foo.getValue("key") { + return a + } + return default } -return default --- -(source_file - (if_statement - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (call_expression - (try_expression - (navigation_expression (simple_identifier) - (navigation_suffix (simple_identifier)))) - (call_suffix - (value_arguments - (value_argument (line_string_literal))))) - (statements (control_transfer_statement (simple_identifier)))) - (control_transfer_statement (simple_identifier))) + (source_file + (function_declaration + (simple_identifier) + (function_body + (statements + (if_statement + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (call_expression + (try_expression + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier)))) + (call_suffix + (value_arguments + (value_argument + (line_string_literal))))) + (statements + (control_transfer_statement + (simple_identifier)))) + (control_transfer_statement + (simple_identifier)))))) ================== Compound if let @@ -531,3 +545,52 @@ let ø = unicode() (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) + (value_binding_pattern + (non_binding_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)))))) diff --git a/grammar.js b/grammar.js index 94ee03682..b644aa247 100644 --- a/grammar.js +++ b/grammar.js @@ -89,6 +89,10 @@ module.exports = grammar({ // (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], ], extras: ($) => [ @@ -147,7 +151,10 @@ module.exports = grammar({ //////////////////////////////// source_file: ($) => - seq(optional($.shebang_line), repeat(seq($._statement, $._semi))), + seq( + optional($.shebang_line), + repeat(seq($._top_level_statement, $._semi)) + ), shebang_line: ($) => seq("#!", /[^\r\n]*/), @@ -634,16 +641,13 @@ module.exports = grammar({ choice( "self", seq( - optional($._capture_specifier), + optional($.ownership_modifier), $.simple_identifier, optional(seq($._equal_sign, $._expression)) ) ) ), - _capture_specifier: ($) => - choice("weak", "unowned", "unowned(safe)", "unowned(unsafe)"), - lambda_function_type: ($) => seq( choice( @@ -814,17 +818,29 @@ module.exports = grammar({ statements: ($) => prec.left( - seq($._statement, repeat(seq($._semi, $._statement)), optional($._semi)) + seq( + $._local_statement, + repeat(seq($._semi, $._local_statement)), + optional($._semi) + ) ), - _statement: ($) => + _local_statement: ($) => choice( $._expression, - $._declaration, + $._local_declaration, $._labeled_statement, $.control_transfer_statement, - $.assignment, - $.availability_condition + $.assignment + ), + + _top_level_statement: ($) => + choice( + $._expression, + $._global_declaration, + $._labeled_statement, + $._throw_statement, + $.assignment ), _block: ($) => prec(PREC.BLOCK, seq("{", optional($.statements), "}")), @@ -880,10 +896,13 @@ module.exports = grammar({ control_transfer_statement: ($) => choice( - prec.right(seq("throw", $._expression)), + prec.right($._throw_statement), prec.right(seq($._return_continue_break, optional($._expression))) ), + _throw_statement: ($) => seq($.throw_keyword, $._expression), + throw_keyword: ($) => "throw", + _return_continue_break: ($) => choice("return", "continue", "break"), assignment: ($) => @@ -911,7 +930,7 @@ module.exports = grammar({ // Declarations - https://docs.swift.org/swift-book/ReferenceManual/Declarations.html //////////////////////////////// - _declaration: ($) => + _global_declaration: ($) => choice( $.import_declaration, $.property_declaration, @@ -920,6 +939,19 @@ module.exports = grammar({ $.class_declaration, // TODO actor 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, @@ -927,6 +959,38 @@ module.exports = grammar({ $.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), @@ -962,10 +1026,15 @@ module.exports = grammar({ seq("{", repeat(choice($.getter_specifier, $.setter_specifier)), "}"), property_declaration: ($) => + seq( + optional($.modifiers), + optional("class"), + $._modifierless_property_declaration + ), + + _modifierless_property_declaration: ($) => prec.right( seq( - optional($.modifiers), - optional("class"), choice("let", "var"), sep1( seq( @@ -985,8 +1054,10 @@ module.exports = grammar({ generate_pattern_matching_rule($, false, false), typealias_declaration: ($) => + seq(optional($.modifiers), $._modifierless_typealias_declaration), + + _modifierless_typealias_declaration: ($) => seq( - optional($.modifiers), "typealias", alias($.simple_identifier, $.type_identifier), optional($.type_parameters), @@ -997,11 +1068,21 @@ module.exports = grammar({ function_declaration: ($) => prec.right(seq($._bodyless_function_declaration, $.function_body)), + _modifierless_function_declaration: ($) => + prec.right( + seq($._modifierless_function_declaration_no_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( - optional($.modifiers), - optional("class"), // XXX: This should be possible in non-last position, but that creates parsing ambiguity choice( $._constructor_function_decl, $._non_constructor_function_decl @@ -1019,10 +1100,12 @@ module.exports = grammar({ function_body: ($) => $._block, class_declaration: ($) => + seq(optional($.modifiers), $._modifierless_class_declaration), + + _modifierless_class_declaration: ($) => prec.right( choice( seq( - optional($.modifiers), choice("class", "struct"), alias($.simple_identifier, $.type_identifier), optional($.type_parameters), @@ -1031,7 +1114,6 @@ module.exports = grammar({ $.class_body ), seq( - optional($.modifiers), "extension", $.identifier, optional($.type_parameters), @@ -1040,7 +1122,6 @@ module.exports = grammar({ $.class_body ), seq( - optional($.modifiers), "enum", alias($.simple_identifier, $.type_identifier), optional($.type_parameters), @@ -1088,7 +1169,8 @@ module.exports = grammar({ equality_constraint: ($) => seq(repeat($.attribute), $.identifier, choice("=", "=="), $._type), - _class_member_declarations: ($) => repeat1(seq($._declaration, $._semi)), + _class_member_declarations: ($) => + repeat1(seq($._type_level_declaration, $._semi)), _function_value_parameters: ($) => seq("(", optional(sep1($._function_value_parameter, ",")), ")"), @@ -1135,7 +1217,7 @@ module.exports = grammar({ throws_modifier: ($) => choice($._throws_keyword, $._rethrows_keyword), enum_class_body: ($) => - seq("{", repeat(choice($.enum_entry, $._declaration)), "}"), + seq("{", repeat(choice($.enum_entry, $._type_level_declaration)), "}"), enum_entry: ($) => prec.left( @@ -1355,29 +1437,44 @@ module.exports = grammar({ // Modifiers // ========== - modifiers: ($) => repeat1(choice($.attribute, $._modifier)), + 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, - $.inheritance_modifier, $.parameter_modifier ), + _locally_permitted_modifier: ($) => + choice( + $.ownership_modifier, + $.property_behavior_modifier, + $.inheritance_modifier + ), + + property_behavior_modifier: ($) => "lazy", + type_modifiers: ($) => repeat1($.attribute), - member_modifier: ($) => - choice("override", "convenience", "required", "unowned", "weak"), + member_modifier: ($) => choice("override", "convenience", "required"), visibility_modifier: ($) => seq( - choice("public", "private", "internal", "fileprivate"), + choice("public", "private", "internal", "fileprivate", "open"), optional(seq("(", "set", ")")) ), @@ -1387,17 +1484,15 @@ module.exports = grammar({ mutation_modifier: ($) => choice("mutating", "nonmutating"), - property_modifier: ($) => - choice( - "static", // XXX should be in multiple places - "lazy", - "optional" - ), + property_modifier: ($) => choice("static", "optional"), - inheritance_modifier: ($) => choice("final", "open"), + inheritance_modifier: ($) => choice("final"), parameter_modifier: ($) => choice("inout", "@escaping", "@autoclosure"), + ownership_modifier: ($) => + choice("weak", "unowned", "unowned(safe)", "unowned(unsafe)"), + use_site_target: ($) => seq( choice( diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index 2b7d1bf42..f9b2ff04b 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -7,12 +7,10 @@ Carthage/Source/carthage/Build.swift Carthage/Source/carthage/Checkout.swift Carthage/Source/carthage/Formatting.swift Carthage/Source/CarthageKit/Archive.swift -Carthage/Source/CarthageKit/VersionFile.swift Carthage/Source/CarthageKit/Project.swift Carthage/Source/CarthageKit/GitURL.swift Carthage/Source/CarthageKit/Git.swift Carthage/Tests/CarthageKitTests/DependencySpec.swift Carthage/Tests/CarthageKitTests/CartfileCommentsSpec.swift ObjectMapper/Package@swift-4.swift -ObjectMapper/Sources/HexColorTransform.swift ObjectMapper/Sources/ToJSON.swift From cb72dbeeb2e533535b5b25bf5cebad7b15510eff Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 6 Nov 2021 14:17:11 -0700 Subject: [PATCH 024/151] Parallelize parsing of top-repos in CI Use Github's "matrix" strategy more effectively to let each repository run on its own in CI. This brings test time down substantially. It's tempting to also do multiprocessing within the scripts, but Github Actions seems not to like that - it causes the remote builds to hang, even though local builds become much faster. --- .github/workflows/top-repos.yml | 8 +++----- scripts/top-repos.sh | 13 +++++++++++-- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.github/workflows/top-repos.yml b/.github/workflows/top-repos.yml index 0bd0dca5a..af4279ae4 100644 --- a/.github/workflows/top-repos.yml +++ b/.github/workflows/top-repos.yml @@ -8,19 +8,17 @@ on: jobs: build: - runs-on: ubuntu-latest - strategy: matrix: - node-version: [16.x] + repo: [1, 2, 3, 4, 5, 6, 7, 8, 9] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: - node-version: ${{ matrix.node-version }} + node-version: '16.x' cache: 'npm' - run: npm install - - run: npm run top-repos + - run: ./scripts/top-repos.sh ${{matrix.repo}} diff --git a/scripts/top-repos.sh b/scripts/top-repos.sh index 9605233ea..219ae1a46 100755 --- a/scripts/top-repos.sh +++ b/scripts/top-repos.sh @@ -4,6 +4,13 @@ set -e parser_dir="$(pwd)" known_failures="$parser_dir/script-data/known_failures.txt" +if [ -z "$1" ]; then + repos=$(cat $parser_dir/script-data/top-repositories.txt) + echo "Running on all top repositories." +else + repos=$(sed "$1q;d" $parser_dir/script-data/top-repositories.txt) + echo "Running on single repository $repos." +fi # Run all this logic in a temporary directory that we delete on exit tmpdir="$(mktemp -d -t top-10-XXXXXX)" @@ -20,7 +27,7 @@ function checkout() { repo=$1; url=$2; tag=$3 if [ ! -d "$repo" ]; then - git clone --branch $tag --depth 1 "https://github.com/$url" "$repo" + git clone --quiet --branch $tag --depth 1 "https://github.com/$url" "$repo" >/dev/null 2>/dev/null fi echo "Cloned repository into $(pwd)/$repo" @@ -50,6 +57,8 @@ function validate() { echo "Unexpected parse failure found in $repo:" cat <<<"$failed_files" exit 1 + else + echo "Parsed $repo successfully!" fi } @@ -64,4 +73,4 @@ fi # Run `validate` on every repository in `top-repositories` sequentially. while read line ; do validate $line -done < $parser_dir/script-data/top-repositories.txt +done <<<"$repos" From 0e9146fc7379d6a2c5de9bb4c460e4235cb886ef Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 6 Nov 2021 19:05:26 -0700 Subject: [PATCH 025/151] Minorly improve custom operator handling We still need to move the custom operator logic to the scanner, but that's a lot of complexity, and it's still unclear how to do that without a lot of breakage. Instead of doing that now, we just special case handling of `<` (which is what was tripping up a lot of Carthage files). With this change, #5 will no longer be a top-repos-error, even though it will still be a valid bug. --- grammar.js | 20 ++++++++++++++++++-- script-data/known_failures.txt | 6 ------ 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/grammar.js b/grammar.js index b644aa247..5088f9a43 100644 --- a/grammar.js +++ b/grammar.js @@ -93,6 +93,10 @@ module.exports = grammar({ // 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], + + // Custom operators get weird special handling for `<` characters in silly stuff like `func =<<<(...)` + [$.custom_operator], + [$._prefix_unary_operator, $._referenceable_operator], ], extras: ($) => [ @@ -500,7 +504,7 @@ module.exports = grammar({ bitwise_operation: ($) => prec.left(seq($._expression, $._bitwise_binary_operator, $._expression)), - custom_operator: ($) => CUSTOM_OPERATORS, + custom_operator: ($) => seq(CUSTOM_OPERATORS, optional("<")), // Suffixes @@ -797,7 +801,19 @@ module.exports = grammar({ _as_operator: ($) => choice("as", "as?", "as!"), _prefix_unary_operator: ($) => - prec.right(choice("++", "--", "-", "+", "!", "&", "~", $._dot_operator)), + prec.right( + choice( + "++", + "--", + "-", + "+", + "!", + "&", + "~", + $._dot_operator, + $.custom_operator + ) + ), _bitwise_binary_operator: ($) => choice("&", "|", "^", "<<", ">>"), diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index f9b2ff04b..8dc817911 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -1,11 +1,5 @@ -Carthage/Source/carthage/Outdated.swift -Carthage/Source/carthage/Archive.swift -Carthage/Source/carthage/Update.swift Carthage/Source/carthage/Extensions.swift -Carthage/Source/carthage/Fetch.swift Carthage/Source/carthage/Build.swift -Carthage/Source/carthage/Checkout.swift -Carthage/Source/carthage/Formatting.swift Carthage/Source/CarthageKit/Archive.swift Carthage/Source/CarthageKit/Project.swift Carthage/Source/CarthageKit/GitURL.swift From ae57b0c7f5a3ed103068379adf330fb3b9eb11f0 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Mon, 15 Nov 2021 20:51:46 -0800 Subject: [PATCH 026/151] Fix unicode escape handling in strings This had been copy-pasted from the kotlin grammar but the two aren't actually the same. Swift allows shorter escape sequences but requires them to be enclosed in braces. Fixes #42 --- corpus/literals.txt | 27 +++++++++++++++++++++++++++ grammar.js | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/corpus/literals.txt b/corpus/literals.txt index 4a7be5004..018ed6c4f 100755 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -295,3 +295,30 @@ let _ = ##"\##(a)\#(b)\##(c)\#(d)"# ##"## (raw_str_interpolation_start) (simple_identifier)) (raw_str_end_part)))) + +=== +Unicode escape sequences +=== + +let unicodeEscaping = "\u{8}" +let anotherUnicode = "…\u{2060}" +let infinity = "\u{221E}" + +--- + +(source_file + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (line_string_literal)) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (line_string_literal)) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (line_string_literal))) diff --git a/grammar.js b/grammar.js index 5088f9a43..9cb8ff397 100644 --- a/grammar.js +++ b/grammar.js @@ -233,7 +233,7 @@ module.exports = grammar({ _line_str_escaped_char: ($) => choice($._escaped_identifier, $._uni_character_literal), - _uni_character_literal: ($) => seq("\\", "u", /[0-9a-fA-F]{4}/), // TODO: { } + _uni_character_literal: ($) => seq("\\", "u", /\{[0-9a-fA-F]+\}/), multi_line_string_literal: ($) => seq( From edec3394baf1cfbb55de6b43370b07fc14d38533 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Mon, 15 Nov 2021 21:04:36 -0800 Subject: [PATCH 027/151] Add a few more special literals The grammar hardcodes a few directive-looking things that we don't handle today, namely playground literals and key path strings. Adding those in explicitly for now, but this is worth reevaluating in the future; it may be better to go generic and let the real language be more restrictive. Fixes #43 --- corpus/expressions.txt | 10 +++++++++- corpus/literals.txt | 21 +++++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 0a40e7307..9cc453f58 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -496,6 +496,8 @@ compoundValue[keyPath: \.self] = (a: 10, b: 20) let nestedKeyPath = \OuterStructure.outer.someValue +let keyPathStringExpression = #keyPath(someProperty) + --- (source_file @@ -567,7 +569,13 @@ let nestedKeyPath = \OuterStructure.outer.someValue (navigation_suffix (simple_identifier))) (navigation_suffix - (simple_identifier))))) + (simple_identifier)))) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (key_path_string_expression + (simple_identifier)))) === Tuple expression in function diff --git a/corpus/literals.txt b/corpus/literals.txt index 018ed6c4f..f1ef79edf 100755 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -322,3 +322,24 @@ let infinity = "\u{221E}" (non_binding_pattern (simple_identifier))) (line_string_literal))) + +=== +Playground literals +=== + +=== +/tmp/top-repos/firefox/Client/Frontend/Update/UpdateViewModel.swift +=== + +let playgroundLiteral = #imageLiteral(resourceName: "heart") + +--- + +(source_file + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (simple_identifier) + (line_string_literal))) + From 1fd260a10b3d615dd0978efe9cacfd33cbea78e3 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Mon, 15 Nov 2021 21:12:08 -0800 Subject: [PATCH 028/151] Add ! as a possible character in an init --- corpus/classes.txt | 15 ++++++++++++++- grammar.js | 16 +++++++++++++++- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/corpus/classes.txt b/corpus/classes.txt index dfdbf4299..34a96a71e 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -479,6 +479,10 @@ class Test { required init?(from: String) { self.init(1, 2) } + + required init!(from value: Int) { + self.init(value, value) + } } --- @@ -521,7 +525,16 @@ class Test { (statements (call_expression (navigation_expression (self_expression) (navigation_suffix (simple_identifier))) - (call_suffix (value_arguments (value_argument (integer_literal)) (value_argument (integer_literal))))))))))) + (call_suffix (value_arguments (value_argument (integer_literal)) (value_argument (integer_literal)))))))) + (function_declaration + (modifiers (member_modifier)) + (external_parameter_name) + (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 (simple_identifier)) (value_argument (simple_identifier))))))))))) ================== Deinit diff --git a/grammar.js b/grammar.js index 9cb8ff397..e08771d32 100644 --- a/grammar.js +++ b/grammar.js @@ -578,6 +578,7 @@ module.exports = grammar({ $._basic_literal, $._function_literal, $._special_literal, + $._playground_literal, $.array_literal, $.dictionary_literal, $.self_expression, @@ -586,6 +587,7 @@ module.exports = grammar({ $.try_expression, $._referenceable_operator, $.key_path_expression, + $.key_path_string_expression, alias($._three_dot_operator, $.fully_open_range) ), @@ -625,6 +627,14 @@ module.exports = grammar({ "#dsohandle" ), + _playground_literal: ($) => + seq( + choice("#colorLiteral", "#fileLiteral", "#imageLiteral"), + "(", + sep1(seq($.simple_identifier, ":", $._expression), ","), + ")" + ), + lambda_literal: ($) => prec( PREC.LAMBDA_LITERAL, @@ -768,6 +778,9 @@ module.exports = grammar({ ) ), + key_path_string_expression: ($) => + prec.left(seq("#keyPath", "(", $._expression, ")")), + _key_path_component: ($) => prec.left( choice( @@ -1208,7 +1221,8 @@ module.exports = grammar({ optional($._three_dot_operator) ), - _constructor_function_decl: ($) => seq("init", optional($._quest)), + _constructor_function_decl: ($) => + seq("init", optional(choice($._quest, "!"))), _non_constructor_function_decl: ($) => seq( From 69ac8c0ca0c1e9569aef37f6194a1546851af123 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Mon, 15 Nov 2021 22:02:30 -0800 Subject: [PATCH 029/151] Add the dynamic modifier for class members Intentionally not encoding the requirement that dynamic must always be accompanied by @objc, because there isn't really a reason to. --- grammar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grammar.js b/grammar.js index e08771d32..75807ab29 100644 --- a/grammar.js +++ b/grammar.js @@ -1514,7 +1514,7 @@ module.exports = grammar({ mutation_modifier: ($) => choice("mutating", "nonmutating"), - property_modifier: ($) => choice("static", "optional"), + property_modifier: ($) => choice("static", "dynamic", "optional"), inheritance_modifier: ($) => choice("final"), From 9402a4fd5dd37d16d0928c194b508b81c87bddda Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Mon, 15 Nov 2021 22:15:45 -0800 Subject: [PATCH 030/151] Allow subscript declarations in protocols Luckily, these are already pretty loosely defined so that the block is optional, so we can still just have a single definition in the grammar for both. --- corpus/classes.txt | 32 ++++++++++++++++++++++++++++++-- grammar.js | 3 ++- 2 files changed, 32 insertions(+), 3 deletions(-) diff --git a/corpus/classes.txt b/corpus/classes.txt index 34a96a71e..48c19893f 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -107,7 +107,7 @@ Class with annotations @objc(Test) class Test : Protocol { @objc(someArgument:) - func someFunction(with argument: Int) { } + dynamic func someFunction(with argument: Int) { } } --- @@ -125,7 +125,8 @@ class Test : Protocol { (modifiers (attribute (user_type (type_identifier)) - (simple_identifier))) + (simple_identifier)) + (property_modifier)) (simple_identifier) (external_parameter_name) (parameter (simple_identifier) (user_type (type_identifier))) @@ -459,6 +460,33 @@ protocol Wrapper { (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_getter + (getter_specifier)))))) + ================== Special constructors ================== diff --git a/grammar.js b/grammar.js index 75807ab29..39f22d1e4 100644 --- a/grammar.js +++ b/grammar.js @@ -1316,7 +1316,8 @@ module.exports = grammar({ $.deinit_declaration, $.protocol_property_declaration, $.typealias_declaration, - $.associatedtype_declaration + $.associatedtype_declaration, + $.subscript_declaration ), deinit_declaration: ($) => From 9880b3eca340c02733e1a8e1619291c0fe675e04 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 16 Oct 2021 16:06:46 -0700 Subject: [PATCH 031/151] Allow protocol composition types everywhere The grammar suggests that protocol composition types are only allowed "when specifying a type in type annotations, in generic parameter clauses, and in generic where clauses." The corpus of valid code seems to imply otherwise. Instead, we just allow these everywhere, and resolve ambiguity the same way the compiler appears to by giving them right precedence. Fixes #46 Also bundled the one-liner fix for #50 --- corpus/classes.txt | 144 +++++++++++++++++++++++++++++++++++++++++++++ grammar.js | 15 ++++- 2 files changed, 156 insertions(+), 3 deletions(-) diff --git a/corpus/classes.txt b/corpus/classes.txt index 48c19893f..4a66599c0 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -487,6 +487,30 @@ public protocol Indexable { (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) + (user_type + (type_identifier)) + (user_type + (type_identifier)))))) + ================== Special constructors ================== @@ -782,3 +806,123 @@ enum ComputeType { (simple_identifier) (line_string_literal))) (simple_identifier))))) + +=== +Protocol composition - generic type specifiers +=== + +let result: HasGeneric = HasGeneric(t: "Hello") + +--- + +(source_file + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (type_annotation + (user_type + (type_identifier) + (type_arguments + (user_type + (type_identifier)) + (user_type + (type_identifier))))) + (constructor_expression + (user_type + (type_identifier) + (type_arguments + (user_type + (type_identifier)) + (user_type + (type_identifier)))) + (constructor_suffix + (value_argument + (simple_identifier) + (line_string_literal)))))) + + +=== +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 + (type_constraint + (inheritance_constraint + (identifier + (simple_identifier)) + (user_type + (type_identifier)))) + (type_constraint + (equality_constraint + (identifier + (simple_identifier) + (simple_identifier)) + (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 + (user_type + (type_identifier)) + (user_type + (type_identifier))))))) + + +=== +Protocol composition in as expressions +=== + +let result = greet("me") as P1 & P2 + +--- + +(source_file + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (as_expression + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (line_string_literal))))) + (user_type + (type_identifier)) + (user_type + (type_identifier))))) diff --git a/grammar.js b/grammar.js index 39f22d1e4..f9655d6a3 100644 --- a/grammar.js +++ b/grammar.js @@ -275,9 +275,8 @@ module.exports = grammar({ type_annotation: ($) => seq(":", $._possibly_implicitly_unwrapped_type), - // Superset of legal type declarations, including implicitly unwrapped types and protocol composition types. _possibly_implicitly_unwrapped_type: ($) => - seq(sep1($._type, "&"), optional(token.immediate("!"))), + seq($._type, optional(token.immediate("!"))), _type: ($) => prec.right(seq(optional($.type_modifiers), $._unannotated_type)), @@ -292,7 +291,8 @@ module.exports = grammar({ $.dictionary_type, $.optional_type, $.metatype, - $._opaque_type + $._opaque_type, + $._protocol_composition_type ) ), @@ -347,6 +347,14 @@ module.exports = grammar({ _opaque_type: ($) => seq("some", $.user_type), + _protocol_composition_type: ($) => + prec.right( + seq( + $._unannotated_type, + repeat1(seq("&", prec.right($._unannotated_type))) + ) + ), + //////////////////////////////// // Expressions - https://docs.swift.org/swift-book/ReferenceManual/Expressions.html //////////////////////////////// @@ -1418,6 +1426,7 @@ module.exports = grammar({ $.simple_identifier, $.type_arguments, $._basic_literal, + $.key_path_expression, ":", "*", ",", From 45593f70035b29c2f7f06ad85b7e36c61d033288 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 20 Nov 2021 14:37:40 -0800 Subject: [PATCH 032/151] Make check expressions behave properly The right hand side of an `is` should be a type, not an expression. Fixes #49 --- corpus/expressions.txt | 24 ++++++++++++++++++++++++ grammar.js | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 9cc453f58..95d20fb60 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -634,3 +634,27 @@ print(thing.maybeGreeting!.definitely) (simple_identifier))) (navigation_suffix (simple_identifier)))))))) + +=== +Check expression +=== + +checkThat(dict is Dictionary) + +--- + +(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)))))))))) diff --git a/grammar.js b/grammar.js index f9655d6a3..8dc764fb4 100644 --- a/grammar.js +++ b/grammar.js @@ -486,7 +486,7 @@ module.exports = grammar({ ), check_expression: ($) => - prec.left(PREC.CHECK, seq($._expression, $._is_operator, $._expression)), + prec.left(PREC.CHECK, seq($._expression, $._is_operator, $._type)), comparison_expression: ($) => prec.left(seq($._expression, $._comparison_operator, $._expression)), From 459d621b8e1611342ffbf4d20327856833a708ba Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 20 Nov 2021 14:49:55 -0800 Subject: [PATCH 033/151] Fix copy-paste error in corpus --- corpus/literals.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/corpus/literals.txt b/corpus/literals.txt index f1ef79edf..c639c942b 100755 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -327,10 +327,6 @@ let infinity = "\u{221E}" Playground literals === -=== -/tmp/top-repos/firefox/Client/Frontend/Update/UpdateViewModel.swift -=== - let playgroundLiteral = #imageLiteral(resourceName: "heart") --- From f3f06cffb6b5666f9ca02634e584ae5534ad6a0d Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 20 Nov 2021 15:10:34 -0800 Subject: [PATCH 034/151] Don't emit a built-in operator if it could be a prefix for a custom one It's possible to define a custom operator like `???`, even though that starts with the built-in nil coalescing operator. Our custom scanner doesn't allow this today. What we need to do is check whether the character _after_ the end of a built-in operator is a valid continuing character for a custom operator, and only emit the built-in operator if it isn't. For simplicity, this doesn't handle all of the unicode characters that are allowed in a custom operator, because they mostly don't get used. When we move the custom operator handling _fully_ to the custom scanner, that's probably the right time to revisit this. Fixes #45 --- corpus/functions.txt | 18 ++++++++++++++++ src/scanner.c | 49 +++++++++++++++++++++++--------------------- 2 files changed, 44 insertions(+), 23 deletions(-) diff --git a/corpus/functions.txt b/corpus/functions.txt index 0e621b7a7..3c10d74c0 100755 --- a/corpus/functions.txt +++ b/corpus/functions.txt @@ -261,6 +261,24 @@ infix operator -=- : MyPrecedence (precedence_group_attribute (simple_identifier) (simple_identifier)))) (operator_declaration (custom_operator) (simple_identifier))) +=== +Custom operator with another operator as a prefix +=== + +let messageCoerced = error ??? "nil" + +--- + +(source_file + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (infix_expression + (simple_identifier) + (custom_operator) + (line_string_literal)))) + ================== Functions that throw ================== diff --git a/src/scanner.c b/src/scanner.c index 0df5f4aa6..927a06959 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -40,22 +40,6 @@ const char* CROSS_SEMI_OPERATORS[CROSS_SEMI_OPERATOR_COUNT] = { "else" }; -const int32_t CROSS_SEMI_OP_LENS[CROSS_SEMI_OPERATOR_COUNT] = { - 2, - 1, - 3, - 3, - 2, - 2, - 2, - 1, - 6, - 8, - 7, - 5, - 4 -}; - const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { ARROW_OPERATOR, DOT_OPERATOR, @@ -187,14 +171,33 @@ static bool eat_operators( continue; } - if (str_idx > CROSS_SEMI_OP_LENS[op_idx]) { - possible_operators[op_idx] = false; - continue; - } + if (CROSS_SEMI_OPERATORS[op_idx][str_idx] == '\0') { + 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 '~': + break; + default: + // Only match if this is the _end_ of an operator. If it's possible for a custom + // operator to continue from here, don't treat it as a full match. + full_match = op_idx; + lexer->mark_end(lexer); + } - if (str_idx == CROSS_SEMI_OP_LENS[op_idx]) { - full_match = op_idx; - lexer->mark_end(lexer); + possible_operators[op_idx] = false; continue; } From 65671b0f826bd4dc4d2e42431b95ae08ca18235e Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 20 Nov 2021 15:39:28 -0800 Subject: [PATCH 035/151] Treat assignment as an expression Swift allows `return a = b` and stuff like that. We can do that too, we just have to move some definitions around and change precedence. --- corpus/classes.txt | 8 ++++++-- grammar.js | 11 +++++------ 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/corpus/classes.txt b/corpus/classes.txt index 4a66599c0..062971154 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -278,7 +278,7 @@ class Something { } var z: Int { get { v } - set { v = newValue } + set { return v = newValue } } } @@ -331,7 +331,11 @@ class SomethingElse: ThingProvider { (type_annotation (user_type (type_identifier))) (computed_property (computed_getter (getter_specifier) (statements (simple_identifier))) - (computed_setter (setter_specifier) (statements (assignment (directly_assignable_expression (simple_identifier)) (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))) diff --git a/grammar.js b/grammar.js index 8dc764fb4..b146717b7 100644 --- a/grammar.js +++ b/grammar.js @@ -37,8 +37,8 @@ const PREC = { CONJUNCTION: 4, DISJUNCTION: 3, RANGE: 2, - ASSIGNMENT: 1, BLOCK: 1, + ASSIGNMENT: -1, COMMENT: -1, LAMBDA_LITERAL: -1, }; @@ -366,6 +366,7 @@ module.exports = grammar({ $._binary_expression, $.ternary_expression, $._primary_expression, + $.assignment, seq($._expression, $._immediate_quest) ), @@ -771,7 +772,7 @@ module.exports = grammar({ seq( // XXX associativity or precedence seems wrong here $._try_operator, - choice($._expression, $.assignment) + $._expression ) ), @@ -867,8 +868,7 @@ module.exports = grammar({ $._expression, $._local_declaration, $._labeled_statement, - $.control_transfer_statement, - $.assignment + $.control_transfer_statement ), _top_level_statement: ($) => @@ -876,8 +876,7 @@ module.exports = grammar({ $._expression, $._global_declaration, $._labeled_statement, - $._throw_statement, - $.assignment + $._throw_statement ), _block: ($) => prec(PREC.BLOCK, seq("{", optional($.statements), "}")), From cecd0713aedaf5e68428cfbcf75218858b59195b Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 20 Nov 2021 16:56:24 -0800 Subject: [PATCH 036/151] Parallelize locally and allow split repositories Adding functionality to specify "part X of Y" of a repository. This allows two things to happen: 1. In CI, that repository will get split across multiple Github Actions hosts, each one having less work to do 2. Running locally, the script will spin off each validation check as its own process and they will all return more quickly. This is necessary to add `firefox-ios` as a top repository since it has 657 swift files, which would otherwise take 5 minutes on CI, and I'm not ready to wait that long. Fixes #49 --- .github/workflows/top-repos.yml | 2 +- script-data/known_failures.txt | 3 ++ script-data/top-repositories.txt | 6 ++++ scripts/top-repos.sh | 54 +++++++++++++++++++++++++------- 4 files changed, 53 insertions(+), 12 deletions(-) diff --git a/.github/workflows/top-repos.yml b/.github/workflows/top-repos.yml index af4279ae4..14f0e6b88 100644 --- a/.github/workflows/top-repos.yml +++ b/.github/workflows/top-repos.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - repo: [1, 2, 3, 4, 5, 6, 7, 8, 9] + repo: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15] steps: - uses: actions/checkout@v2 diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index 8dc817911..c8c9f3de2 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -8,3 +8,6 @@ Carthage/Tests/CarthageKitTests/DependencySpec.swift Carthage/Tests/CarthageKitTests/CartfileCommentsSpec.swift ObjectMapper/Package@swift-4.swift ObjectMapper/Sources/ToJSON.swift +firefox-ios/Shared/Functions.swift +firefox-ios/Client/Frontend/Browser/TabDisplayManager.swift +firefox-ios/Client/Frontend/Browser/Authenticator.swift diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index d2a16dc02..eb9d4a4e6 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -7,3 +7,9 @@ shadowsocks shadowsocks/ShadowsocksX-NG v1.9.4 Carthage Carthage/Carthage 0.38.0 Moya Moya/Moya 15.0.0 ObjectMapper tristanhimmelman/ObjectMapper 3.5.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 diff --git a/scripts/top-repos.sh b/scripts/top-repos.sh index 219ae1a46..0c8ce2d8c 100755 --- a/scripts/top-repos.sh +++ b/scripts/top-repos.sh @@ -28,9 +28,9 @@ function checkout() { if [ ! -d "$repo" ]; then git clone --quiet --branch $tag --depth 1 "https://github.com/$url" "$repo" >/dev/null 2>/dev/null - fi - echo "Cloned repository into $(pwd)/$repo" + echo "Cloned repository into $(pwd)/$repo" + fi } # Function to validate that a passed-in git repository can be parsed using this parser. @@ -38,27 +38,51 @@ function checkout() { # 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 + 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 - cd $tmpdir - checkout $repo $url $tag - cd $parser_dir + # Find the start and end of this section based on the passed-in `part` and `total`. + all_files=$data_dir/all_files.txt + find "$tmpdir/$repo" -name *.swift -not -path '*/Pods/*' > $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)) - all_files=$(find "$tmpdir/$repo" -name *.swift -not -path '*/Pods/*') failed_files=$( IFS=$'\n' - for file in $all_files; do + 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 "Unexpected parse failure found in $repo:" + echo -en "Unexpected parse failure found in $repo " + if [ -z $4 ]; then + echo ":" + else + echo "block $start-$end:" + fi + cat <<<"$failed_files" + exit 1 - else + elif [ -z $4 ]; then echo "Parsed $repo successfully!" + else + echo "Parsed $repo files $start-$end of $file_count successfully!" fi } @@ -72,5 +96,13 @@ fi # Run `validate` on every repository in `top-repositories` sequentially. while read line ; do - validate $line + cd $tmpdir + checkout $line + cd $parser_dir + validate $line & + pids+=($!) done <<<"$repos" + +for pid in "${pids[@]}" ; do + wait $pid +done From 84711b496121ea0425011b391cd93f367216b3e7 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 20 Nov 2021 17:22:07 -0800 Subject: [PATCH 037/151] Remove some no-longer-failing known failures These might have been fixed recently or have maybe been working for a while. In any case, it's best to remove them from known-failures so that they cannot regress. --- script-data/known_failures.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index c8c9f3de2..bb44d7827 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -2,12 +2,8 @@ Carthage/Source/carthage/Extensions.swift Carthage/Source/carthage/Build.swift Carthage/Source/CarthageKit/Archive.swift Carthage/Source/CarthageKit/Project.swift -Carthage/Source/CarthageKit/GitURL.swift Carthage/Source/CarthageKit/Git.swift -Carthage/Tests/CarthageKitTests/DependencySpec.swift Carthage/Tests/CarthageKitTests/CartfileCommentsSpec.swift -ObjectMapper/Package@swift-4.swift -ObjectMapper/Sources/ToJSON.swift firefox-ios/Shared/Functions.swift firefox-ios/Client/Frontend/Browser/TabDisplayManager.swift firefox-ios/Client/Frontend/Browser/Authenticator.swift From 4065afafc1a2033cc15d9ee3c807c3adbf38d9c7 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 20 Nov 2021 18:00:45 -0800 Subject: [PATCH 038/151] Allow generic type params in member expressions It is definitely legal (and has always been valid) to do something like: ``` SomeType.someMember ``` This has a type on the left-hand side and a member access on the right-hand side. This grammar so far has been OK with that simple case, because all it knows is that there's an identifier on the left. However, this breaks down when we do the equally legal: ``` SomeGenericType.someMember ``` because now this is _not_ an identifier on the left. To fix this, we allow a few specific forms of a `_type` in a navigation expression. The allowed types are exactly the ones that do not cause parsing ambiguities, because that handles the cases that seem to exist in real life. --- corpus/expressions.txt | 19 +++++++++++++++++++ grammar.js | 11 ++++++++++- script-data/known_failures.txt | 5 ----- 3 files changed, 29 insertions(+), 6 deletions(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 95d20fb60..9e28de191 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -658,3 +658,22 @@ checkThat(dict is Dictionary) (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)))) diff --git a/grammar.js b/grammar.js index b146717b7..50c242154 100644 --- a/grammar.js +++ b/grammar.js @@ -402,7 +402,16 @@ module.exports = grammar({ prec.left(PREC.POSTFIX, seq($._expression, $.indexing_suffix)), navigation_expression: ($) => - prec.left(PREC.NAVIGATION, seq($._expression, $.navigation_suffix)), + prec.left( + PREC.NAVIGATION, + seq( + choice($._navigable_type_expression, $._expression), + $.navigation_suffix + ) + ), + + _navigable_type_expression: ($) => + choice($.user_type, $.array_type, $.dictionary_type), // XXX precedence for ranges isn't right open_start_range_expression: ($) => diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index bb44d7827..3e779477d 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -1,8 +1,3 @@ -Carthage/Source/carthage/Extensions.swift -Carthage/Source/carthage/Build.swift -Carthage/Source/CarthageKit/Archive.swift -Carthage/Source/CarthageKit/Project.swift -Carthage/Source/CarthageKit/Git.swift Carthage/Tests/CarthageKitTests/CartfileCommentsSpec.swift firefox-ios/Shared/Functions.swift firefox-ios/Client/Frontend/Browser/TabDisplayManager.swift From ef9ccd9ad58f8704b83bf087d93d2147ee9b99e2 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 20 Nov 2021 18:57:34 -0800 Subject: [PATCH 039/151] Fixing newlines with do/catch Fixes #47 Adds `catch` to the semi suppressor. Also reworks the semi suppressor to not suppress _explicit_ semicolons - this doesn't matter for any corpus cases, but is theoretically more correct, and protects against a future failure involving comments. --- corpus/comments.txt | 1 - grammar.js | 3 ++- script-data/known_failures.txt | 1 - src/scanner.c | 46 +++++++++++++++++++++++----------- 4 files changed, 34 insertions(+), 17 deletions(-) diff --git a/corpus/comments.txt b/corpus/comments.txt index 4328e5f1c..3dde8759b 100755 --- a/corpus/comments.txt +++ b/corpus/comments.txt @@ -80,4 +80,3 @@ Almost nested comments (multiline_comment) (multiline_comment) (multiline_comment)) - diff --git a/grammar.js b/grammar.js index 50c242154..9df0100ad 100644 --- a/grammar.js +++ b/grammar.js @@ -147,6 +147,7 @@ module.exports = grammar({ $.default_keyword, $._where_keyword, $._else, + $._catch, ], rules: { @@ -768,7 +769,7 @@ module.exports = grammar({ catch_block: ($) => seq( - "catch", + $._catch, optional(generate_pattern_matching_rule($, true, false)), optional($.where_clause), $._block diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index 3e779477d..b1ed34f3d 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -1,4 +1,3 @@ Carthage/Tests/CarthageKitTests/CartfileCommentsSpec.swift firefox-ios/Shared/Functions.swift -firefox-ios/Client/Frontend/Browser/TabDisplayManager.swift firefox-ios/Client/Frontend/Browser/Authenticator.swift diff --git a/src/scanner.c b/src/scanner.c index 927a06959..4b651790a 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -19,10 +19,11 @@ enum TokenType { RETHROWS_KEYWORD, DEFAULT_KEYWORD, WHERE_KEYWORD, - ELSE_KEYWORD + ELSE_KEYWORD, + CATCH_KEYWORD }; -#define CROSS_SEMI_OPERATOR_COUNT 13 +#define CROSS_SEMI_OPERATOR_COUNT 14 const char* CROSS_SEMI_OPERATORS[CROSS_SEMI_OPERATOR_COUNT] = { "->", @@ -37,7 +38,8 @@ const char* CROSS_SEMI_OPERATORS[CROSS_SEMI_OPERATOR_COUNT] = { "rethrows", "default", "where", - "else" + "else", + "catch" }; const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { @@ -53,7 +55,8 @@ const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { RETHROWS_KEYWORD, DEFAULT_KEYWORD, WHERE_KEYWORD, - ELSE_KEYWORD + ELSE_KEYWORD, + CATCH_KEYWORD }; #define NON_CONSUMING_CROSS_SEMI_CHAR_COUNT 3 @@ -124,32 +127,41 @@ static int32_t encountered_op_count(bool *encountered_operator) { return encountered; } -static bool eat_whitespace( +enum WhitespaceResult { + NO_NEWLINE, + IMPLICIT_EXPRESSION_TERMINATION, + EXPLICIT_EXPRESSION_TERMINATION +}; + +static enum WhitespaceResult eat_whitespace( TSLexer *lexer, const bool *valid_symbols, enum TokenType *symbol_result ) { - bool saw_semi = false; + enum WhitespaceResult ws_result = NO_NEWLINE; bool semi_is_valid = valid_symbols[SEMI]; uint32_t lookahead; while (should_treat_as_wspace(lookahead = lexer->lookahead)) { - if (lookahead == ';' && !semi_is_valid) { - break; + if (lookahead == ';') { + if (!semi_is_valid) { + break; + } + ws_result = EXPLICIT_EXPRESSION_TERMINATION; } lexer->advance(lexer, true); - if (lookahead == '\n' || lookahead == '\r' || lookahead == ';') { - saw_semi = true; + if (ws_result == NO_NEWLINE && (lookahead == '\n' || lookahead == '\r')) { + ws_result = IMPLICIT_EXPRESSION_TERMINATION; } } lexer->mark_end(lexer); - if (saw_semi && semi_is_valid) { + if (semi_is_valid && ws_result != NO_NEWLINE) { *symbol_result = SEMI; - return true; + return ws_result; } - return false; + return NO_NEWLINE; } static bool eat_operators( @@ -371,7 +383,13 @@ bool tree_sitter_swift_external_scanner_scan( // Consume any whitespace at the start. enum TokenType semi_result; - bool saw_semi = eat_whitespace(lexer, valid_symbols, &semi_result); + enum WhitespaceResult ws_result = eat_whitespace(lexer, valid_symbols, &semi_result); + if (ws_result == EXPLICIT_EXPRESSION_TERMINATION) { + lexer->result_symbol = semi_result; + return true; + } + + bool saw_semi = (ws_result != NO_NEWLINE); // 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. From 015a7bd556faa436ccfb8bede29d9a2c1747221b Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 21 Nov 2021 11:47:20 -0800 Subject: [PATCH 040/151] Treat comments as transparent wrt newline-suppressors Teaches the newline-suppressor to advance through a comment to see if the subsequent token is a newline-suppressing operator (or one of the single-char suppressors). This also requires us to parse multiline comments, since we would otherwise eat the first character of a multiline comment before that component got a chance to. --- corpus/statements.txt | 26 +++++ script-data/known_failures.txt | 1 - src/scanner.c | 190 +++++++++++++++++++++++---------- 3 files changed, 158 insertions(+), 59 deletions(-) diff --git a/corpus/statements.txt b/corpus/statements.txt index fd138d616..bc1939f36 100755 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -449,6 +449,32 @@ else if let cPrime = c { (value_binding_pattern (non_binding_pattern (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) + (if_statement + (simple_identifier)))) + ================== Guard statements ================== diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index b1ed34f3d..33b6eb498 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -1,3 +1,2 @@ Carthage/Tests/CarthageKitTests/CartfileCommentsSpec.swift firefox-ios/Shared/Functions.swift -firefox-ios/Client/Frontend/Browser/Authenticator.swift diff --git a/src/scanner.c b/src/scanner.c index 4b651790a..3447de79b 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -60,7 +60,25 @@ const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { }; #define NON_CONSUMING_CROSS_SEMI_CHAR_COUNT 3 -const char NON_CONSUMING_CROSS_SEMI_CHARS[CROSS_SEMI_OPERATOR_COUNT] = { '?', ':', '{' }; +const char NON_CONSUMING_CROSS_SEMI_CHARS[CROSS_SEMI_OPERATOR_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, + STOP_PARSING_NOTHING_FOUND, + STOP_PARSING_TOKEN_FOUND +}; struct ScannerState { uint32_t ongoing_raw_str_hash_count; @@ -127,46 +145,10 @@ static int32_t encountered_op_count(bool *encountered_operator) { return encountered; } -enum WhitespaceResult { - NO_NEWLINE, - IMPLICIT_EXPRESSION_TERMINATION, - EXPLICIT_EXPRESSION_TERMINATION -}; - -static enum WhitespaceResult eat_whitespace( - TSLexer *lexer, - const bool *valid_symbols, - enum TokenType *symbol_result -) { - enum WhitespaceResult ws_result = NO_NEWLINE; - bool semi_is_valid = valid_symbols[SEMI]; - uint32_t lookahead; - while (should_treat_as_wspace(lookahead = lexer->lookahead)) { - if (lookahead == ';') { - if (!semi_is_valid) { - break; - } - ws_result = EXPLICIT_EXPRESSION_TERMINATION; - } - - lexer->advance(lexer, true); - if (ws_result == NO_NEWLINE && (lookahead == '\n' || lookahead == '\r')) { - ws_result = IMPLICIT_EXPRESSION_TERMINATION; - } - } - - lexer->mark_end(lexer); - if (semi_is_valid && ws_result != NO_NEWLINE) { - *symbol_result = SEMI; - return ws_result; - } - - return NO_NEWLINE; -} - static bool eat_operators( TSLexer *lexer, const bool *valid_symbols, + bool mark_end, enum TokenType *symbol_result ) { bool possible_operators[CROSS_SEMI_OPERATOR_COUNT]; @@ -206,7 +188,9 @@ static bool eat_operators( // Only match if this is the _end_ of an operator. If it's possible for a custom // operator to continue from here, don't treat it as a full match. full_match = op_idx; - lexer->mark_end(lexer); + if (mark_end) { + lexer->mark_end(lexer); + } } possible_operators[op_idx] = false; @@ -238,6 +222,7 @@ static bool eat_operators( static bool eat_comment( TSLexer *lexer, const bool *valid_symbols, + bool mark_end, enum TokenType *symbol_result ) { // This is from https://github.com/tree-sitter/tree-sitter-rust/blob/f1c5c4b1d7b98a0288c1e4e6094cfcc3f6213cc0/src/scanner.c @@ -262,7 +247,9 @@ static bool eat_comment( after_star = false; nesting_depth--; if (nesting_depth == 0) { - lexer->mark_end(lexer); + if (mark_end) { + lexer->mark_end(lexer); + } *symbol_result = BLOCK_COMMENT; return true; } @@ -286,6 +273,94 @@ static bool eat_comment( return false; } +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[SEMI]; + uint32_t lookahead; + while (should_treat_as_wspace(lookahead = lexer->lookahead)) { + if (lookahead == ';') { + if (!semi_is_valid) { + break; + } + ws_directive = STOP_PARSING_TOKEN_FOUND; + } + + lexer->advance(lexer, true); + if (ws_directive == CONTINUE_PARSING_NOTHING_FOUND && (lookahead == '\n' || lookahead == '\r')) { + ws_directive = CONTINUE_PARSING_TOKEN_FOUND; + } + } + + lexer->mark_end(lexer); + + if (true && 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; + bool saw_multiline_comment = eat_comment(lexer, valid_symbols, /* mark_end */ false, &multiline_comment_result); + if (saw_multiline_comment) { + // 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 (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->advance(lexer, true); + } + } + + // If we skipped through some comment, we're at whitespace now, so advance. + while(iswspace(lexer->lookahead)) { + lexer->advance(lexer, true); + } + } + + enum TokenType operator_result; + bool saw_operator = eat_operators(lexer, valid_symbols, /* mark_end */ false, &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 = 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 = SEMI; + return ws_directive; + } + + return CONTINUE_PARSING_NOTHING_FOUND; +} + static bool eat_raw_str_part( struct ScannerState *state, TSLexer *lexer, @@ -382,42 +457,41 @@ bool tree_sitter_swift_external_scanner_scan( struct ScannerState *state = (struct ScannerState *)payload; // Consume any whitespace at the start. - enum TokenType semi_result; - enum WhitespaceResult ws_result = eat_whitespace(lexer, valid_symbols, &semi_result); - if (ws_result == EXPLICIT_EXPRESSION_TERMINATION) { - lexer->result_symbol = semi_result; + 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; } - bool saw_semi = (ws_result != NO_NEWLINE); - - // 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. - uint8_t char_after_whitespace = lexer->lookahead; - bool allow_semi = true; - for (int i = 0; i < NON_CONSUMING_CROSS_SEMI_CHAR_COUNT; i++) { - if (NON_CONSUMING_CROSS_SEMI_CHARS[i] == char_after_whitespace) { - allow_semi = false; - } + if (ws_directive == STOP_PARSING_NOTHING_FOUND) { + return false; } + bool has_ws_result = (ws_directive != CONTINUE_PARSING_NOTHING_FOUND); + // Now consume any operators that might cause our whitespace to be suppressed. enum TokenType operator_result; - bool saw_operator = eat_operators(lexer, valid_symbols, &operator_result); + bool saw_operator = eat_operators( + lexer, + valid_symbols, + /* mark_end */ true, + &operator_result + ); if (saw_operator) { lexer->result_symbol = operator_result; return true; } - if (saw_semi && allow_semi) { + if (has_ws_result) { // Don't `mark_end`, since we may have advanced through some operators. - lexer->result_symbol = semi_result; + lexer->result_symbol = ws_result; return true; } enum TokenType comment_result; - bool saw_comment = eat_comment(lexer, valid_symbols, &comment_result); + bool saw_comment = eat_comment(lexer, valid_symbols, /* mark_end */ true, &comment_result); if (saw_comment) { lexer->mark_end(lexer); lexer->result_symbol = comment_result; From f7140f8c11647879e97e54df308726575bee0ee5 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 27 Nov 2021 17:15:40 -0800 Subject: [PATCH 041/151] Add fixes for RxSwift and add RxSwift Most of the parse failures in RxSwift can be fixed with two trivial changes: * Allowing `+` to be an operator reference (should have done already, but was afraid of adding it as a conflict) * Loosening validation on `...` identifiers With these, we get a 99.8% parse rate on that repo, so it would be a shame _not_ to add it to `top-repos`. The two remaining failures are more insidious - one for emoji identifiers, the other involving binding in nested tuple patterns. Both will be handled as their own bugs. --- .github/workflows/top-repos.yml | 2 +- grammar.js | 8 ++++++-- script-data/known_failures.txt | 2 ++ script-data/top-repositories.txt | 9 +++++++++ 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/.github/workflows/top-repos.yml b/.github/workflows/top-repos.yml index 14f0e6b88..771e1d744 100644 --- a/.github/workflows/top-repos.yml +++ b/.github/workflows/top-repos.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - repo: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15] + 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] steps: - uses: actions/checkout@v2 diff --git a/grammar.js b/grammar.js index 9df0100ad..0b16e2a6c 100644 --- a/grammar.js +++ b/grammar.js @@ -97,6 +97,10 @@ module.exports = grammar({ // Custom operators get weird special handling for `<` characters in silly stuff like `func =<<<(...)` [$.custom_operator], [$._prefix_unary_operator, $._referenceable_operator], + + // `+(...)` 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], ], extras: ($) => [ @@ -174,7 +178,7 @@ module.exports = grammar({ simple_identifier: ($) => choice( LEXICAL_IDENTIFIER, - token(seq("`", LEXICAL_IDENTIFIER, "`")), + /`[^\r\n` ]*`/, /\$[0-9]+/, token(seq("$", LEXICAL_IDENTIFIER)) ), @@ -1247,7 +1251,6 @@ module.exports = grammar({ choice( $.simple_identifier, $._referenceable_operator, - $._additive_operator, $._bitwise_binary_operator ) ), @@ -1256,6 +1259,7 @@ module.exports = grammar({ choice( $.custom_operator, $._comparison_operator, + $._additive_operator, $._multiplicative_operator, $._equality_operator, $._comparison_operator diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index 33b6eb498..f4dae7bda 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -1,2 +1,4 @@ Carthage/Tests/CarthageKitTests/CartfileCommentsSpec.swift firefox-ios/Shared/Functions.swift +RxSwift/RxExample/RxExample/Examples/GitHubSearchRepositories/GitHubSearchRepositories.swift +RxSwift/Rx.playground/Pages/Transforming_Operators.xcplaygroundpage/Contents.swift diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index eb9d4a4e6..5a8edea0e 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -2,6 +2,15 @@ Alamofire Alamofire/Alamofire 5.4.4 lottie-ios airbnb/lottie-ios 3.2.3 vapor vapor/vapor 3.3.3 SwiftyJSON SwiftyJSON/SwiftyJSON 5.0.1 +RxSwift ReactiveX/RxSwift 6.2.0 0 9 +RxSwift ReactiveX/RxSwift 6.2.0 1 9 +RxSwift ReactiveX/RxSwift 6.2.0 2 9 +RxSwift ReactiveX/RxSwift 6.2.0 3 9 +RxSwift ReactiveX/RxSwift 6.2.0 4 9 +RxSwift ReactiveX/RxSwift 6.2.0 5 9 +RxSwift ReactiveX/RxSwift 6.2.0 6 9 +RxSwift ReactiveX/RxSwift 6.2.0 7 9 +RxSwift ReactiveX/RxSwift 6.2.0 8 9 Kingfisher onevcat/Kingfisher 7.1.1 shadowsocks shadowsocks/ShadowsocksX-NG v1.9.4 Carthage Carthage/Carthage 0.38.0 From c88955159d2157b8b1754fd4f66181e77a00bcb6 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 27 Nov 2021 18:09:36 -0800 Subject: [PATCH 042/151] Add `danielgindi/Charts` as a top repo Minor touchup needed to allow the division operator to suppress a newline. With that fix, we parse 100% of the repo. --- .github/workflows/top-repos.yml | 2 +- corpus/expressions.txt | 22 ++++++++++++++++++++++ script-data/top-repositories.txt | 1 + src/scanner.c | 4 ++++ 4 files changed, 28 insertions(+), 1 deletion(-) diff --git a/.github/workflows/top-repos.yml b/.github/workflows/top-repos.yml index 771e1d744..34ae5af23 100644 --- a/.github/workflows/top-repos.yml +++ b/.github/workflows/top-repos.yml @@ -11,7 +11,7 @@ jobs: 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] + 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] steps: - uses: actions/checkout@v2 diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 9e28de191..01b7f7cb6 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -677,3 +677,25 @@ SignalProducer<(), CarthageError>.empty (type_identifier)))) (navigation_suffix (simple_identifier)))) + +=== +Division will suppress the syntactic significance of a newline +=== + +let _ = (1 + 2) + / 3 + +--- + + (source_file + (property_declaration + (value_binding_pattern + (non_binding_pattern + (wildcard_pattern))) + (multiplicative_expression + (tuple_expression + (additive_expression + (integer_literal) + (integer_literal))) + (integer_literal)))) + diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 5a8edea0e..0fd06cbac 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -1,4 +1,5 @@ Alamofire Alamofire/Alamofire 5.4.4 +Charts danielgindi/Charts v4.0.1 lottie-ios airbnb/lottie-ios 3.2.3 vapor vapor/vapor 3.3.3 SwiftyJSON SwiftyJSON/SwiftyJSON 5.0.1 diff --git a/src/scanner.c b/src/scanner.c index 3447de79b..50bf07acc 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -323,6 +323,10 @@ static enum ParseDirective eat_whitespace( while (lexer->lookahead != '\n') { 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. From 36a1f132d327f307c9564cc70a6d92cebef6edb8 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 27 Nov 2021 18:54:41 -0800 Subject: [PATCH 043/151] Create conflict for capture list items We were trying to use a fixed precedence to put capture list items above arrays in lambdas, but that results in errors if the first item in the list could plausibly be either. --- corpus/functions.txt | 21 +++++++++++++++++++++ grammar.js | 21 +++++++++++---------- 2 files changed, 32 insertions(+), 10 deletions(-) diff --git a/corpus/functions.txt b/corpus/functions.txt index 3c10d74c0..d073959a9 100755 --- a/corpus/functions.txt +++ b/corpus/functions.txt @@ -476,6 +476,27 @@ test { (a: Any?) in foo(a) } (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 =============== diff --git a/grammar.js b/grammar.js index 0b16e2a6c..d88d5d57b 100644 --- a/grammar.js +++ b/grammar.js @@ -32,7 +32,6 @@ const PREC = { PREFIX: 7, COMPARISON: 6, POSTFIX: 6, - CAPTURE_LIST_ITEM: 6, EQUALITY: 5, CONJUNCTION: 4, DISJUNCTION: 3, @@ -101,6 +100,11 @@ module.exports = grammar({ // `+(...)` 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], + + // `{ [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], ], extras: ($) => [ @@ -673,15 +677,12 @@ module.exports = grammar({ capture_list: ($) => seq("[", sep1($._capture_list_item, ","), "]"), _capture_list_item: ($) => - prec( - PREC.CAPTURE_LIST_ITEM, - choice( - "self", - seq( - optional($.ownership_modifier), - $.simple_identifier, - optional(seq($._equal_sign, $._expression)) - ) + choice( + "self", + seq( + optional($.ownership_modifier), + $.simple_identifier, + optional(seq($._equal_sign, $._expression)) ) ), From 2763548163f2514156223c22d35fc74d91df290e Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 27 Nov 2021 19:09:21 -0800 Subject: [PATCH 044/151] Guard statements are not expressions As great as it would be if they were, they aren't - which means that `guard` is supposed to be legal as an identifier in positions where a statement would not be (for instance, within an array literal). --- corpus/classes.txt | 2 +- corpus/statements.txt | 10 +++++----- grammar.js | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/corpus/classes.txt b/corpus/classes.txt index 062971154..442fe402e 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -345,7 +345,7 @@ class SomethingElse: ThingProvider { (type_annotation (user_type (type_identifier))) (computed_property (statements - (guard_expression + (guard_statement (value_binding_pattern (non_binding_pattern (simple_identifier))) (simple_identifier) (statements (call_expression (simple_identifier) (call_suffix (value_arguments))))) diff --git a/corpus/statements.txt b/corpus/statements.txt index bc1939f36..269c486c3 100755 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -495,19 +495,19 @@ guard case justIdentifier = bound else { } --- (source_file - (guard_expression + (guard_statement (value_binding_pattern (non_binding_pattern (simple_identifier))) (call_expression (simple_identifier) (call_suffix (value_arguments))) (statements (call_expression (simple_identifier) (call_suffix (value_arguments))))) - (guard_expression + (guard_statement (call_expression (simple_identifier) (call_suffix (value_arguments))) (statements (call_expression (simple_identifier) (call_suffix (value_arguments))))) - (guard_expression + (guard_statement (binding_pattern (simple_identifier) (simple_identifier) (non_binding_pattern (simple_identifier))) (call_expression (simple_identifier) (call_suffix (value_arguments)))) - (guard_expression (binding_pattern (simple_identifier)) (simple_identifier))) + (guard_statement (binding_pattern (simple_identifier)) (simple_identifier))) ================== Compound guard ================== @@ -519,7 +519,7 @@ guard let something = doThing(), something.isSpecial() else { --- (source_file - (guard_expression + (guard_statement (value_binding_pattern (non_binding_pattern (simple_identifier))) (call_expression (simple_identifier) (call_suffix (value_arguments))) (call_expression diff --git a/grammar.js b/grammar.js index d88d5d57b..a2c49bb12 100644 --- a/grammar.js +++ b/grammar.js @@ -610,7 +610,6 @@ module.exports = grammar({ $.dictionary_literal, $.self_expression, $.super_expression, - $.guard_expression, $.try_expression, $._referenceable_operator, $.key_path_expression, @@ -742,7 +741,7 @@ module.exports = grammar({ seq($._direct_or_indirect_binding, $._equal_sign, $._expression) ), - guard_expression: ($) => + guard_statement: ($) => prec.right( seq( "guard", @@ -905,6 +904,7 @@ module.exports = grammar({ $.repeat_while_statement, $.do_statement, $.if_statement, + $.guard_statement, $.switch_statement ) ), From 84591a78e264712ceffbbdf793827dec4fcaebea Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 27 Nov 2021 19:20:59 -0800 Subject: [PATCH 045/151] Support more compiler control statements In addition to conditional compilation, there also exist capabilities for line control and diagnostic statements. We do the barest of validation here so that we can keep using the `token(prec(COMMENT, ...)` trick to prevent these from showing up in strings. The official grammar just tacks `compiler-control-statement` onto the end of a bunch of definitions instead, so if we need to do stricter validation here in the future, that might be how we would. --- corpus/statements.txt | 24 ++++++++++++++++++++++++ grammar.js | 17 ++++++++++++++++- 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/corpus/statements.txt b/corpus/statements.txt index 269c486c3..b46ec55df 100755 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -620,3 +620,27 @@ public init() { (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)) + diff --git a/grammar.js b/grammar.js index a2c49bb12..734eb2dcd 100644 --- a/grammar.js +++ b/grammar.js @@ -111,6 +111,7 @@ module.exports = grammar({ $.comment, $.multiline_comment, $.directive, + $.diagnostic, /\s+/, // Whitespace ], @@ -1569,7 +1570,21 @@ module.exports = grammar({ seq("#if", /.*/), seq("#elseif", /.*/), seq("#else", /.*/), - seq("#endif", /.*/) + seq("#endif", /.*/), + seq(/#sourceLocation([^\r\n]*)/) + ) + ) + ), + + diagnostic: ($) => + token( + prec( + PREC.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]*)/) ) ) ), From cef68dc44e8c56976808d61d7f5cda107baf92d6 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 27 Nov 2021 20:19:16 -0800 Subject: [PATCH 046/151] Support optionals in patterns that have already been bound --- corpus/statements.txt | 6 ++++++ grammar.js | 5 ++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/corpus/statements.txt b/corpus/statements.txt index b46ec55df..2bbfb20d8 100755 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -203,6 +203,8 @@ switch something { switch self { case .notExecutable(let path?): return "File not executable: \(path)" +case let .isExecutable(path?): + return "File is executable: \(path)" } --- @@ -230,6 +232,10 @@ case .notExecutable(let path?): (switch_pattern (simple_identifier) (non_binding_pattern (simple_identifier))) + (statements (control_transfer_statement (line_string_literal (interpolated_expression (simple_identifier)))))) + (switch_entry + (switch_pattern + (non_binding_pattern (simple_identifier) (simple_identifier))) (statements (control_transfer_statement (line_string_literal (interpolated_expression (simple_identifier)))))))) ================== diff --git a/grammar.js b/grammar.js index 734eb2dcd..389ad5155 100644 --- a/grammar.js +++ b/grammar.js @@ -1665,8 +1665,7 @@ function generate_pattern_matching_rule( ? [ seq( binding_pattern_prefix, - generate_pattern_matching_rule($, false, false, false), - optional($._quest) + generate_pattern_matching_rule($, false, false, false) ), ] : []; @@ -1684,5 +1683,5 @@ function generate_pattern_matching_rule( .concat(case_pattern) .concat(expression_pattern); - return choice(...all_patterns); + return seq(choice(...all_patterns), optional($._quest)); } From e0d939edbe70bb76e1f23a0fb8ade528b053015a Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 27 Nov 2021 19:01:40 -0800 Subject: [PATCH 047/151] Add some more characters to the semi suppressor Specifically, we need to add `==` and the various `as` operators `as?` and `as!` to match what the swift compiler seems to do. However, we do _not_ add the base `as` operator since that would also look for strings like `assert`. We probably need some concept of "what lookahead char would be invalid for this operator" in the custom scanner to handle that. --- corpus/expressions.txt | 38 +++++++++++++++++++++++++------------- grammar.js | 16 ++++++++++++---- src/scanner.c | 19 ++++++++++++++----- 3 files changed, 51 insertions(+), 22 deletions(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 01b7f7cb6..05d9cf513 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -679,23 +679,35 @@ SignalProducer<(), CarthageError>.empty (simple_identifier)))) === -Division will suppress the syntactic significance of a newline +Suppressing the syntactic significance of a newline === let _ = (1 + 2) / 3 ---- +let additionIsSane = (2 + 2) + == 4 - (source_file - (property_declaration - (value_binding_pattern - (non_binding_pattern - (wildcard_pattern))) - (multiplicative_expression - (tuple_expression - (additive_expression - (integer_literal) - (integer_literal))) - (integer_literal)))) +--- +(source_file + (property_declaration + (value_binding_pattern + (non_binding_pattern + (wildcard_pattern))) + (multiplicative_expression + (tuple_expression + (additive_expression + (integer_literal) + (integer_literal))) + (integer_literal))) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (equality_expression + (tuple_expression + (additive_expression + (integer_literal) + (integer_literal))) + (integer_literal)))) diff --git a/grammar.js b/grammar.js index 389ad5155..c6b99bc61 100644 --- a/grammar.js +++ b/grammar.js @@ -151,12 +151,15 @@ module.exports = grammar({ $._disjunction_operator, $._nil_coalescing_operator, $._equal_sign, + $._eq_eq, $._throws_keyword, $._rethrows_keyword, $.default_keyword, $._where_keyword, $._else, $._catch, + $._as_quest, + $._as_bang, ], rules: { @@ -825,7 +828,7 @@ module.exports = grammar({ _assignment_and_operator: ($) => choice("+=", "-=", "*=", "/=", "%=", "="), - _equality_operator: ($) => choice("!=", "!==", "==", "==="), + _equality_operator: ($) => choice("!=", "!==", $._eq_eq, "==="), _comparison_operator: ($) => choice("<", ">", "<=", ">="), @@ -835,7 +838,7 @@ module.exports = grammar({ _multiplicative_operator: ($) => choice("*", "/", "%"), - _as_operator: ($) => choice("as", "as?", "as!"), + _as_operator: ($) => choice("as", $._as_quest, $._as_bang), _prefix_unary_operator: ($) => prec.right( @@ -1219,7 +1222,12 @@ module.exports = grammar({ ), equality_constraint: ($) => - seq(repeat($.attribute), $.identifier, choice("=", "=="), $._type), + seq( + repeat($.attribute), + $.identifier, + choice($._equal_sign, $._eq_eq), + $._type + ), _class_member_declarations: ($) => repeat1(seq($._type_level_declaration, $._semi)), @@ -1445,7 +1453,7 @@ module.exports = grammar({ ":", "*", ",", - "==" + $._eq_eq ) ), ")" diff --git a/src/scanner.c b/src/scanner.c index 50bf07acc..ba28cba80 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -15,15 +15,18 @@ enum TokenType { DISJUNCTION_OPERATOR, NIL_COALESCING_OPERATOR, EQUAL_SIGN, + EQ_EQ, THROWS_KEYWORD, RETHROWS_KEYWORD, DEFAULT_KEYWORD, WHERE_KEYWORD, ELSE_KEYWORD, - CATCH_KEYWORD + CATCH_KEYWORD, + AS_QUEST, + AS_BANG }; -#define CROSS_SEMI_OPERATOR_COUNT 14 +#define CROSS_SEMI_OPERATOR_COUNT 18 const char* CROSS_SEMI_OPERATORS[CROSS_SEMI_OPERATOR_COUNT] = { "->", @@ -34,12 +37,15 @@ const char* CROSS_SEMI_OPERATORS[CROSS_SEMI_OPERATOR_COUNT] = { "||", "??", "=", + "==", "throws", "rethrows", "default", "where", "else", - "catch" + "catch", + "as?", + "as!" }; const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { @@ -51,16 +57,19 @@ const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { DISJUNCTION_OPERATOR, NIL_COALESCING_OPERATOR, EQUAL_SIGN, + EQ_EQ, THROWS_KEYWORD, RETHROWS_KEYWORD, DEFAULT_KEYWORD, WHERE_KEYWORD, ELSE_KEYWORD, - CATCH_KEYWORD + CATCH_KEYWORD, + AS_QUEST, + AS_BANG }; #define NON_CONSUMING_CROSS_SEMI_CHAR_COUNT 3 -const char NON_CONSUMING_CROSS_SEMI_CHARS[CROSS_SEMI_OPERATOR_COUNT] = { '?', ':', '{', '}' }; +const char NON_CONSUMING_CROSS_SEMI_CHARS[CROSS_SEMI_OPERATOR_COUNT] = { '?', ':', '{' }; /** * All possible results of having performed some sort of parsing. From f78c731eca7d0dc55f1d55bf410b3c2a855179df Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 28 Nov 2021 10:23:29 -0800 Subject: [PATCH 048/151] Update cross semi op count --- src/scanner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scanner.c b/src/scanner.c index ba28cba80..62d78dcb7 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -26,7 +26,7 @@ enum TokenType { AS_BANG }; -#define CROSS_SEMI_OPERATOR_COUNT 18 +#define CROSS_SEMI_OPERATOR_COUNT 17 const char* CROSS_SEMI_OPERATORS[CROSS_SEMI_OPERATOR_COUNT] = { "->", From 2fa67fd519acc7494e08dc8e740f30d944bdc13a Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 28 Nov 2021 10:45:50 -0800 Subject: [PATCH 049/151] Allow expressions in annotation attributes The ArgumentParser library makes heavy use of custom attributes (are they even called attributes here?). The grammar needs to respect those rather than treating them as some sort of malformed `@available(...)` attribute. This change gives us a bit more structure to what we expect to see in an attribute, whether built-in or custom. --- corpus/classes.txt | 36 +++++++++++++++++++++++++++++++++--- grammar.js | 21 +++++++++++---------- 2 files changed, 44 insertions(+), 13 deletions(-) diff --git a/corpus/classes.txt b/corpus/classes.txt index 442fe402e..0629700ee 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -108,6 +108,9 @@ Class with annotations class Test : Protocol { @objc(someArgument:) dynamic func someFunction(with argument: Int) { } + + @DocumentationAnnotation(help: "Calls this function nicely.") + func someFunction(nice argument: Int) { } } --- @@ -130,6 +133,16 @@ class Test : Protocol { (simple_identifier) (external_parameter_name) (parameter (simple_identifier) (user_type (type_identifier))) + (function_body)) + (function_declaration + (modifiers + (attribute + (user_type (type_identifier)) + (simple_identifier) + (line_string_literal))) + (simple_identifier) + (external_parameter_name) + (parameter (simple_identifier) (user_type (type_identifier))) (function_body))))) ================== @@ -764,10 +777,15 @@ public extension Foo where T == (arg1: Arg1, arg2: Arg2) { } Deprecation ============ class Computer { - @available(*, deprecated, message: "See replacement: computeV2`") + @available(*, deprecated, message: "See replacement: computeV2") func compute() { } - @available(*, deprecated, message: "See replacement: computeV2`") + + @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 { @@ -798,7 +816,19 @@ enum ComputeType { (simple_identifier) (line_string_literal))) (value_binding_pattern (non_binding_pattern (simple_identifier))) - (type_annotation (user_type (type_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 diff --git a/grammar.js b/grammar.js index c6b99bc61..e04f146d5 100644 --- a/grammar.js +++ b/grammar.js @@ -1444,17 +1444,18 @@ module.exports = grammar({ optional( seq( "(", - repeat( + sep1( choice( - $.simple_identifier, - $.type_arguments, - $._basic_literal, - $.key_path_expression, - ":", - "*", - ",", - $._eq_eq - ) + // 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, ".")) + ), + "," ), ")" ) From 63cacebeaa168c6365382710ce1d16a6ff3ce752 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 28 Nov 2021 11:34:31 -0800 Subject: [PATCH 050/151] Allow type annotations on if/guard case conditions The grammar defined `guard let something: Type = ...` as legal, but only for the binding pattern case `guard let`. The `case` form, `guard case let`, should be allowed to have those too. --- corpus/statements.txt | 25 +++++++++++++++++++++++++ grammar.js | 9 ++++++--- 2 files changed, 31 insertions(+), 3 deletions(-) diff --git a/corpus/statements.txt b/corpus/statements.txt index 2bbfb20d8..571b67b31 100755 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -533,6 +533,31 @@ guard let something = doThing(), something.isSpecial() else { (call_suffix (value_arguments))) (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 + (binding_pattern + (non_binding_pattern + (simple_identifier))) + (type_annotation + (user_type + (type_identifier))) + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (statements + (control_transfer_statement)))) + ================ Availability conditions ================ diff --git a/grammar.js b/grammar.js index e04f146d5..9f6f2322b 100644 --- a/grammar.js +++ b/grammar.js @@ -1482,9 +1482,12 @@ module.exports = grammar({ prec.left(2, generate_pattern_matching_rule($, false, false, true, true)), _direct_or_indirect_binding: ($) => - choice( - seq($.value_binding_pattern, optional($.type_annotation)), - seq("case", generate_pattern_matching_rule($, true, false, false)) + seq( + choice( + $.value_binding_pattern, + seq("case", generate_pattern_matching_rule($, true, false, false)) + ), + optional($.type_annotation) ), wildcard_pattern: ($) => "_", From fbb4c71b1de29d6dd4ff4f55cc34ad769934add1 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 28 Nov 2021 11:59:44 -0800 Subject: [PATCH 051/151] Allow `for var` without `case` Although `for let foo = ...` requires a `case` before the `let`, the equivalent `var` does not. The easiest solve here is to make the `case` optional for anything other than an explicit case pattern. --- corpus/statements.txt | 4 ++-- grammar.js | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/corpus/statements.txt b/corpus/statements.txt index 571b67b31..0cefc4b66 100755 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -54,7 +54,7 @@ for case .some(value) in valuesMaybe { } for case .some((.some(0), .some(1))) in crazyValues { } -for value in values where value.isExcellent() { +for var value in values where value.isExcellent() { } --- @@ -82,7 +82,7 @@ for value in values where value.isExcellent() { (integer_literal) (simple_identifier)) (for_statement - (simple_identifier) + (non_binding_pattern (simple_identifier)) (simple_identifier) (where_clause (call_expression diff --git a/grammar.js b/grammar.js index 9f6f2322b..e2943fe73 100644 --- a/grammar.js +++ b/grammar.js @@ -1641,11 +1641,11 @@ function generate_type_casting_pattern($, allows_binding) { function generate_pattern_matching_rule( $, allows_binding, - requires_case_keyword, + allows_case_keyword, allows_expressions, force ) { - if (!force && !requires_case_keyword) { + if (!force && !allows_case_keyword) { if (allows_binding && !allows_expressions) { return $.binding_pattern; } @@ -1669,8 +1669,8 @@ function generate_pattern_matching_rule( generate_type_casting_pattern($, allows_binding), ]; - const binding_pattern_prefix = requires_case_keyword - ? choice(seq("case", "var"), seq("case", "let")) + const binding_pattern_prefix = allows_case_keyword + ? seq(optional("case"), choice("var", "let")) : choice("var", "let"); const binding_pattern_if_allowed = allows_binding @@ -1682,7 +1682,7 @@ function generate_pattern_matching_rule( ] : []; - const case_pattern = requires_case_keyword + const case_pattern = allows_case_keyword ? seq("case", generate_case_pattern($, allows_binding)) : generate_case_pattern($, allows_binding); From d56b27a035b55c2e1a93bae5aedab2b94986c7ab Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 28 Nov 2021 12:40:08 -0800 Subject: [PATCH 052/151] Add a few more top repos * Adding back iina - this must have gotten lost somewhere * Adding SwiftLint with a few known failures * `MonitorControl` and `clashX`, two repositories that show up on "trending" and have a high number of lifetime stars Also add a corpus case to reflect something in SwiftLint that _almost_ failed during some of the pattern matching tweaks, except that SwiftLint had caught it. This way, when pattern matching gets touched again, we can find out about that case without waiting for a top-repos run. --- .github/workflows/top-repos.yml | 2 +- corpus/statements.txt | 10 ++++++++++ script-data/known_failures.txt | 4 +++- script-data/top-repositories.txt | 5 +++++ 4 files changed, 19 insertions(+), 2 deletions(-) diff --git a/.github/workflows/top-repos.yml b/.github/workflows/top-repos.yml index 34ae5af23..3bc39a7e7 100644 --- a/.github/workflows/top-repos.yml +++ b/.github/workflows/top-repos.yml @@ -11,7 +11,7 @@ jobs: 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] + 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] steps: - uses: actions/checkout@v2 diff --git a/corpus/statements.txt b/corpus/statements.txt index 0cefc4b66..452ee20c6 100755 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -98,6 +98,9 @@ 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 { @@ -116,6 +119,13 @@ outerLoop: for outerObject in dataArray { (simple_identifier)) (user_type (type_identifier))) (simple_identifier)) + (for_statement + (non_binding_pattern + (non_binding_pattern + (simple_identifier)) + (non_binding_pattern + (simple_identifier))) + (simple_identifier)) (statement_label) (for_statement (simple_identifier) diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index f4dae7bda..788a0f371 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -1,4 +1,6 @@ -Carthage/Tests/CarthageKitTests/CartfileCommentsSpec.swift firefox-ios/Shared/Functions.swift RxSwift/RxExample/RxExample/Examples/GitHubSearchRepositories/GitHubSearchRepositories.swift RxSwift/Rx.playground/Pages/Transforming_Operators.xcplaygroundpage/Contents.swift +SwiftLint/Source/SwiftLintFramework/Extensions/String+SwiftLint.swift +SwiftLint/Source/SwiftLintFramework/Rules/Metrics/NestingRuleExamples.swift +SwiftLint/Source/SwiftLintFramework/Rules/Style/StatementPositionRule.swift diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 0fd06cbac..1176d23ef 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -1,4 +1,5 @@ Alamofire Alamofire/Alamofire 5.4.4 +iina iina/iina v1.2.0 Charts danielgindi/Charts v4.0.1 lottie-ios airbnb/lottie-ios 3.2.3 vapor vapor/vapor 3.3.3 @@ -14,8 +15,12 @@ RxSwift ReactiveX/RxSwift 6.2.0 7 9 RxSwift ReactiveX/RxSwift 6.2.0 8 9 Kingfisher onevcat/Kingfisher 7.1.1 shadowsocks shadowsocks/ShadowsocksX-NG v1.9.4 +SwiftLint realm/SwiftLint 0.45.0 0 2 +SwiftLint realm/SwiftLint 0.45.0 1 2 +ClashX yichengchen/clashX 1.72.0 Carthage Carthage/Carthage 0.38.0 Moya Moya/Moya 15.0.0 +MonitorControl MonitorControl/MonitorControl v4.0.2 ObjectMapper tristanhimmelman/ObjectMapper 3.5.3 firefox-ios mozilla-mobile/firefox-ios v39.0 0 6 firefox-ios mozilla-mobile/firefox-ios v39.0 1 6 From 3c2a9f81a42834ee972c61311c3da00591b0ba6e Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 28 Nov 2021 13:23:37 -0800 Subject: [PATCH 053/151] Disallow different characters after certain operators Not all the operators in `scanner.c` are the same. In some cases, the operators should be ignored if the character after them potentially lets them be a custom operator themselves. In other cases, the operator should be ignored if it's followed by alphanumeric characters (since that would make it an identifier). We solve this by adding a new list for the "illegal terminators" and checking against those. This has the bonus of letting us add two new semi suppressors: 1. `as`, the bare keyword, now that we aren't fooled by having it at the start of a word 2. `+` and `-`, but only when followed by whitespace - when there's no whitespace between the operator and the subsequent token, but there _is_ whitespace before it, Swift treats it as a prefix operator. We just have to check the trailing whitespace here because we're just concerned about semi suppression. --- corpus/expressions.txt | 15 +++++++- grammar.js | 14 ++++++-- script-data/known_failures.txt | 2 -- src/scanner.c | 63 +++++++++++++++++++++++++++++++--- 4 files changed, 83 insertions(+), 11 deletions(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 05d9cf513..79ae3f5bc 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -682,12 +682,16 @@ SignalProducer<(), CarthageError>.empty Suppressing the syntactic significance of a newline === -let _ = (1 + 2) +let _ = (1+2) / 3 let additionIsSane = (2 + 2) == 4 +let two = 2 + + 2 + - 2 + --- (source_file @@ -710,4 +714,13 @@ let additionIsSane = (2 + 2) (additive_expression (integer_literal) (integer_literal))) + (integer_literal))) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (additive_expression + (additive_expression + (integer_literal) + (integer_literal)) (integer_literal)))) diff --git a/grammar.js b/grammar.js index e2943fe73..b05d97c89 100644 --- a/grammar.js +++ b/grammar.js @@ -152,12 +152,15 @@ module.exports = grammar({ $._nil_coalescing_operator, $._equal_sign, $._eq_eq, + $._plus_then_ws, // + symbol with whitespace after it + $._minus_then_ws, // - symbol with whitespace after it $._throws_keyword, $._rethrows_keyword, $.default_keyword, $._where_keyword, $._else, $._catch, + $._as, $._as_quest, $._as_bang, ], @@ -834,11 +837,12 @@ module.exports = grammar({ _is_operator: ($) => "is", - _additive_operator: ($) => choice("+", "-"), + _additive_operator: ($) => + choice($._plus_then_ws, $._minus_then_ws, "+", "-"), _multiplicative_operator: ($) => choice("*", "/", "%"), - _as_operator: ($) => choice("as", $._as_quest, $._as_bang), + _as_operator: ($) => choice($._as, $._as_quest, $._as_bang), _prefix_unary_operator: ($) => prec.right( @@ -1634,7 +1638,11 @@ function generate_case_pattern($, allows_binding, force) { function generate_type_casting_pattern($, allows_binding) { return choice( seq("is", $._type), - seq(generate_pattern_matching_rule($, allows_binding, false), "as", $._type) + seq( + generate_pattern_matching_rule($, allows_binding, false), + $._as, + $._type + ) ); } diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index 788a0f371..fe30540ce 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -2,5 +2,3 @@ firefox-ios/Shared/Functions.swift RxSwift/RxExample/RxExample/Examples/GitHubSearchRepositories/GitHubSearchRepositories.swift RxSwift/Rx.playground/Pages/Transforming_Operators.xcplaygroundpage/Contents.swift SwiftLint/Source/SwiftLintFramework/Extensions/String+SwiftLint.swift -SwiftLint/Source/SwiftLintFramework/Rules/Metrics/NestingRuleExamples.swift -SwiftLint/Source/SwiftLintFramework/Rules/Style/StatementPositionRule.swift diff --git a/src/scanner.c b/src/scanner.c index 62d78dcb7..0c3f379f8 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -16,17 +16,20 @@ enum TokenType { NIL_COALESCING_OPERATOR, EQUAL_SIGN, EQ_EQ, + PLUS_THEN_WS, + MINUS_THEN_WS, THROWS_KEYWORD, RETHROWS_KEYWORD, DEFAULT_KEYWORD, WHERE_KEYWORD, ELSE_KEYWORD, CATCH_KEYWORD, + AS_KEYWORD, AS_QUEST, AS_BANG }; -#define CROSS_SEMI_OPERATOR_COUNT 17 +#define CROSS_SEMI_OPERATOR_COUNT 20 const char* CROSS_SEMI_OPERATORS[CROSS_SEMI_OPERATOR_COUNT] = { "->", @@ -38,16 +41,49 @@ const char* CROSS_SEMI_OPERATORS[CROSS_SEMI_OPERATOR_COUNT] = { "??", "=", "==", + "+", + "-", "throws", "rethrows", "default", "where", "else", "catch", + "as", "as?", "as!" }; +enum IllegalTerminatorGroup { + ALPHANUMERIC, + OPERATOR_SYMBOLS, + OPERATOR_OR_DOT, + NON_WHITESPACE +}; + +const enum IllegalTerminatorGroup CROSS_SEMI_ILLEGAL_TERMINATORS[CROSS_SEMI_OPERATOR_COUNT] = { + OPERATOR_SYMBOLS, // -> + OPERATOR_OR_DOT, // . + OPERATOR_OR_DOT, // ... + OPERATOR_OR_DOT, // ..< + OPERATOR_SYMBOLS, // && + OPERATOR_SYMBOLS, // || + OPERATOR_SYMBOLS, // ?? + OPERATOR_SYMBOLS, // = + OPERATOR_SYMBOLS, // == + NON_WHITESPACE, // + + NON_WHITESPACE, // - + ALPHANUMERIC, // throws + ALPHANUMERIC, // rethrows + ALPHANUMERIC, // default + ALPHANUMERIC, // where + ALPHANUMERIC, // else + ALPHANUMERIC, // catch + ALPHANUMERIC, // as + OPERATOR_SYMBOLS, // as? + OPERATOR_SYMBOLS // as! +}; + const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { ARROW_OPERATOR, DOT_OPERATOR, @@ -58,18 +94,21 @@ const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { NIL_COALESCING_OPERATOR, EQUAL_SIGN, EQ_EQ, + PLUS_THEN_WS, + MINUS_THEN_WS, THROWS_KEYWORD, RETHROWS_KEYWORD, DEFAULT_KEYWORD, WHERE_KEYWORD, ELSE_KEYWORD, CATCH_KEYWORD, + AS_KEYWORD, AS_QUEST, AS_BANG }; #define NON_CONSUMING_CROSS_SEMI_CHAR_COUNT 3 -const char NON_CONSUMING_CROSS_SEMI_CHARS[CROSS_SEMI_OPERATOR_COUNT] = { '?', ':', '{' }; +const char NON_CONSUMING_CROSS_SEMI_CHARS[NON_CONSUMING_CROSS_SEMI_CHAR_COUNT] = { '?', ':', '{' }; /** * All possible results of having performed some sort of parsing. @@ -175,6 +214,8 @@ static bool eat_operators( } if (CROSS_SEMI_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 = CROSS_SEMI_ILLEGAL_TERMINATORS[op_idx]; switch (lexer->lookahead) { // See "Operators": // https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html#ID418 @@ -192,10 +233,22 @@ static bool eat_operators( case '^': case '?': case '~': - break; + if (illegal_terminators == OPERATOR_SYMBOLS) { + break; + } // Otherwise, intentionally fall through to the OPERATOR_OR_DOT case + case '.': + if (illegal_terminators == OPERATOR_OR_DOT) { + break; + } // Otherwise, fall through to DEFAULT which checks its groups directly default: - // Only match if this is the _end_ of an operator. If it's possible for a custom - // operator to continue from here, don't treat it as a full match. + 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); From 0ce5a77dec1dfa1610fc276c215d09c06ae8a527 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 28 Nov 2021 14:15:18 -0800 Subject: [PATCH 054/151] Don't fork unnecessarily in CI The test runner script was always forking, even if it only had one iteration it needed to run. Instead, we can fork only if we're running everything. --- scripts/top-repos.sh | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/scripts/top-repos.sh b/scripts/top-repos.sh index 0c8ce2d8c..13a57b390 100755 --- a/scripts/top-repos.sh +++ b/scripts/top-repos.sh @@ -99,10 +99,16 @@ while read line ; do cd $tmpdir checkout $line cd $parser_dir - validate $line & - pids+=($!) + if [ -z "$1" ]; then + validate $line & + pids+=($!) + else + validate $line + fi done <<<"$repos" -for pid in "${pids[@]}" ; do - wait $pid -done +if [ -z "$1" ]; then + for pid in "${pids[@]}" ; do + wait $pid + done +fi From fa831a7ecbac1fd6142cfce1c7b65f9f78828e92 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 28 Nov 2021 14:48:42 -0800 Subject: [PATCH 055/151] Add support for recursive enums The keyword `indirect` is legal on an enum class declaration or on an individual case, and tells the compiler to use the heap to avoid an infinitely sized structure. Add the keyword directly into those places where it is legal. --- grammar.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/grammar.js b/grammar.js index b05d97c89..b2ff3a282 100644 --- a/grammar.js +++ b/grammar.js @@ -1181,6 +1181,7 @@ module.exports = grammar({ $.class_body ), seq( + optional("indirect"), "enum", alias($.simple_identifier, $.type_identifier), optional($.type_parameters), @@ -1288,6 +1289,7 @@ module.exports = grammar({ prec.left( seq( optional($.modifiers), + optional("indirect"), "case", sep1( seq( From 282ca534e354d86f05007b72db0c67e056f0f071 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 28 Nov 2021 15:06:12 -0800 Subject: [PATCH 056/151] Where clauses go on switch patterns, not cases The grammar erroneously had it that a switch _case_ would get a single `where` clause, disallowing something like: ``` case .foo(x) where x.count() == 0, .bar(x): ``` Allowing `where`-clauses per pattern is strictly more flexible. --- corpus/statements.txt | 3 ++- grammar.js | 10 ++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/corpus/statements.txt b/corpus/statements.txt index 452ee20c6..bac85eef1 100755 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -206,7 +206,7 @@ Weird switch statements switch something { case let .pattern2(_, bound): fallthrough - case .ident where someCondition: fallthrough + case .ident where someCondition, ident2: fallthrough @unknown default: return "Goodbye" } @@ -231,6 +231,7 @@ case let .isExecutable(path?): (switch_entry (switch_pattern (simple_identifier)) (simple_identifier) + (switch_pattern (simple_identifier)) (statements (simple_identifier))) (switch_entry (modifiers (attribute (user_type (type_identifier)))) diff --git a/grammar.js b/grammar.js index b2ff3a282..597389a12 100644 --- a/grammar.js +++ b/grammar.js @@ -765,10 +765,16 @@ module.exports = grammar({ seq( optional($.modifiers), choice( - seq("case", $.switch_pattern, repeat(seq(",", $.switch_pattern))), + seq( + "case", + seq( + $.switch_pattern, + optional(seq($._where_keyword, $._expression)) + ), + repeat(seq(",", $.switch_pattern)) + ), $.default_keyword ), - optional(seq($._where_keyword, $._expression)), ":", $.statements, optional("fallthrough") From edc6e7102e74df3167d6375662e0cfb829ec3a6c Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 28 Nov 2021 14:43:24 -0800 Subject: [PATCH 057/151] Add some new top repos Some more entries from Swift's trending repository list that have more than 10k total stars. If only we could get all repositories by absolute number of stars... --- .github/workflows/top-repos.yml | 2 +- script-data/top-repositories.txt | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/top-repos.yml b/.github/workflows/top-repos.yml index 3bc39a7e7..bc17f09ab 100644 --- a/.github/workflows/top-repos.yml +++ b/.github/workflows/top-repos.yml @@ -11,7 +11,7 @@ jobs: 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] + 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] steps: - uses: actions/checkout@v2 diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 1176d23ef..7ff1b6534 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -13,15 +13,20 @@ RxSwift ReactiveX/RxSwift 6.2.0 5 9 RxSwift ReactiveX/RxSwift 6.2.0 6 9 RxSwift ReactiveX/RxSwift 6.2.0 7 9 RxSwift ReactiveX/RxSwift 6.2.0 8 9 +HeroTransitions HeroTransitions/Hero 1.6.1 Kingfisher onevcat/Kingfisher 7.1.1 shadowsocks shadowsocks/ShadowsocksX-NG v1.9.4 +SnapKit SnapKit/SnapKit 5.0.1 SwiftLint realm/SwiftLint 0.45.0 0 2 SwiftLint realm/SwiftLint 0.45.0 1 2 ClashX yichengchen/clashX 1.72.0 Carthage Carthage/Carthage 0.38.0 +Rectangle rxhanson/Rectangle v0.49 +PromiseKit mxcl/PromiseKit 6.16.2 Moya Moya/Moya 15.0.0 MonitorControl MonitorControl/MonitorControl v4.0.2 ObjectMapper tristanhimmelman/ObjectMapper 3.5.3 +SkeletonView Juanpe/SkeletonView 1.26.0 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 From 052ef9c1fc8a557e430797b4aef42e6be1175b19 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 28 Nov 2021 16:10:55 -0800 Subject: [PATCH 058/151] Run corpus tests using memcheck Corpus tests run very quickly and we don't care about their output (just about the return code). This makes them a great candidate for running under `valgrind`. --- package.json | 3 +-- scripts/test-with-memcheck.sh | 10 ++++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) create mode 100755 scripts/test-with-memcheck.sh diff --git a/package.json b/package.json index a0829bfd0..0a496c631 100644 --- a/package.json +++ b/package.json @@ -6,8 +6,7 @@ "scripts": { "install": "tree-sitter generate", "ci": "prettier --check grammar.js", - "test": "tree-sitter test", - "top-repos": "./scripts/top-repos.sh" + "test": "./scripts/test-with-memcheck.sh --install-valgrind" }, "repository": { "type": "git", diff --git a/scripts/test-with-memcheck.sh b/scripts/test-with-memcheck.sh new file mode 100755 index 000000000..ccedf4892 --- /dev/null +++ b/scripts/test-with-memcheck.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +set -e + +if [[ "$1" == "--install-valgrind" ]]; then + sudo apt install -y valgrind + shift +fi + +valgrind tree-sitter test From cbccdfd4c7c0f9b19cfba26ebdc5854cb9f06e86 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Mon, 29 Nov 2021 12:41:28 -0800 Subject: [PATCH 059/151] Use typescript to compile the grammar Typescript has some nifty features that would come in handy for taking a real swing at some maintainable precedence definitions. Switching the definition over will let us use those. Also includes a basic types file for the DSL that comes from the tree-sitter CLI's `generate` functionality. I couldn't find one of these, which was surprising. Eventually it would probably be a good idea to contribute that back somehow. --- .github/workflows/check.yml | 2 +- Cargo.toml | 2 +- README.md | 8 +- grammar.js | 1716 +---------------------------- grammar.ts | 1726 ++++++++++++++++++++++++++++++ package-lock.json | 12 + package.json | 11 +- tsconfig.json | 12 + types/tree-sitter-dsl/index.d.ts | 169 +++ 9 files changed, 1934 insertions(+), 1724 deletions(-) mode change 100644 => 120000 grammar.js create mode 100644 grammar.ts create mode 100644 tsconfig.json create mode 100644 types/tree-sitter-dsl/index.d.ts diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 817c93d5d..d1111fb5b 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -28,7 +28,7 @@ jobs: cache: 'npm' - run: npm install - run: npm run ci - - run: npm test + - run: npm run test-ci - name: Publish parser source uses: actions/upload-artifact@v2 with: diff --git a/Cargo.toml b/Cargo.toml index af821dc7f..c03e9acbe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT" build = "bindings/rust/build.rs" include = [ "bindings/rust/*", - "grammar.js", + "grammar.ts", "queries/*", "src/*", ] diff --git a/README.md b/README.md index dc438677c..3874d95b2 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,10 @@ has. With this package checked out, a common workflow for editing the grammar will look something like: -1. Make a change to `grammar.js`. -2. Run `tree-sitter generate && tree-sitter test` to see whether the change has had impact on existing parsing behavior. +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. @@ -85,6 +87,6 @@ If you need a `parser.c`, and you don't care about the tree-sitter version, but 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/experimental-tree-sitter-swift/actions) for this repository. -* Click on the appropriate commit. +* Click on the "Check grammar and style" 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/grammar.js b/grammar.js deleted file mode 100644 index 597389a12..000000000 --- a/grammar.js +++ /dev/null @@ -1,1715 +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. - */ - -const PREC = { - NAVIGATION: 13, - MULTIPLICATIVE: 12, - ADDITIVE: 11, - INFIX: 9, - NIL_COALESCING: 8, - CHECK: 7, - PREFIX: 7, - COMPARISON: 6, - POSTFIX: 6, - EQUALITY: 5, - CONJUNCTION: 4, - DISJUNCTION: 3, - RANGE: 2, - BLOCK: 1, - ASSIGNMENT: -1, - COMMENT: -1, - LAMBDA_LITERAL: -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)); -const LEXICAL_IDENTIFIER = /[_\p{XID_Start}][_\p{XID_Continue}]*/; -const CUSTOM_OPERATORS = token( - choice( - // https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html#ID418 - // This supports a subset of the operators that Swift does but I'm really not concerned about the esoteric ones. - // Someone who wants unicode support can add it. What this does do is: - // * Avoid the reserved operators by saying that certain characters are only available if you don't start with them. - // * Entirely forbid `<` as the last char because it creates ambiguity with type arguments - /[\\<>&?=][\/=\-+!*%<>&|^?~\.]*[\/=\-+!*%>&|^?~]+/, - /[\-+!*%|^~]+[\/=\-+!*%<>&|^?~]*[\/=\-+!*%>&|^?~]+/, - /[\-+!*%|^~\.]+[\/=\-+!*%<>&|^?~\.]*[\/=\-+!*%>&|^?~\.]+/, - /[\/]+[=\-+!*%<>&|^?~]*[=\-+!*%>&|^?~]+/, - /[\/]+[=\-+!*%<>&|^?~\.]*[=\-+!*%>&|^?~\.]+/ - ) -); - -// XXX need custom scanner for: -// * Custom operators and `<` for type arguments - -module.exports = grammar({ - name: "swift", - - conflicts: ($) => [ - // @Type(... could either be an annotation constructor invocation or an annotated expression - [$.attribute], - - // 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], - - // Custom operators get weird special handling for `<` characters in silly stuff like `func =<<<(...)` - [$.custom_operator], - [$._prefix_unary_operator, $._referenceable_operator], - - // `+(...)` 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], - - // `{ [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], - ], - - 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. - $._semi, - // Every one of the below operators will suppress a `_semi` if we encounter it after a newline. - $._arrow_operator, - $._dot_operator, - $._three_dot_operator, - $._open_ended_range_operator, - $._conjunction_operator, - $._disjunction_operator, - $._nil_coalescing_operator, - $._equal_sign, - $._eq_eq, - $._plus_then_ws, // + symbol with whitespace after it - $._minus_then_ws, // - symbol with whitespace after it - $._throws_keyword, - $._rethrows_keyword, - $.default_keyword, - $._where_keyword, - $._else, - $._catch, - $._as, - $._as_quest, - $._as_bang, - ], - - rules: { - //////////////////////////////// - // File Structure - //////////////////////////////// - - source_file: ($) => - seq( - optional($.shebang_line), - repeat(seq($._top_level_statement, $._semi)) - ), - - shebang_line: ($) => seq("#!", /[^\r\n]*/), - - //////////////////////////////// - // Lexical Structure - https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html - //////////////////////////////// - - comment: ($) => token(prec(PREC.COMMENT, seq("//", /.*/))), - - // Identifiers - - simple_identifier: ($) => - choice( - LEXICAL_IDENTIFIER, - /`[^\r\n` ]*`/, - /\$[0-9]+/, - token(seq("$", LEXICAL_IDENTIFIER)) - ), - - identifier: ($) => sep1($.simple_identifier, $._dot_operator), - - // Literals - - _basic_literal: ($) => - choice( - $.integer_literal, - $.hex_literal, - $.oct_literal, - $.bin_literal, - $.real_literal, - $.boolean_literal, - $._string_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($._line_string_content, $._interpolation)), '"'), - - _line_string_content: ($) => - choice($._line_str_text, $._line_str_escaped_char), - - _line_str_text: ($) => /[^\\"]+/, - - _line_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($._multi_line_string_content, $._interpolation)), - '"""' - ), - - raw_string_literal: ($) => - seq( - repeat( - seq( - $.raw_str_part, - $.raw_str_interpolation, - optional($.raw_str_continuing_indicator) - ) - ), - $.raw_str_end_part - ), - - raw_str_interpolation: ($) => - seq($.raw_str_interpolation_start, $._expression, ")"), - - raw_str_interpolation_start: ($) => /\\#*\(/, - - _multi_line_string_content: ($) => - choice($._multi_line_str_text, $._escaped_identifier, '"'), - - _interpolation: ($) => - seq("\\(", alias($._expression, $.interpolated_expression), ")"), - - _escaped_identifier: ($) => /\\[0\\tnr"'\n]/, - - _multi_line_str_text: ($) => /[^\\"]+/, - - //////////////////////////////// - // Types - https://docs.swift.org/swift-book/ReferenceManual/Types.html - //////////////////////////////// - - type_annotation: ($) => seq(":", $._possibly_implicitly_unwrapped_type), - - _possibly_implicitly_unwrapped_type: ($) => - seq($._type, optional(token.immediate("!"))), - - _type: ($) => - prec.right(seq(optional($.type_modifiers), $._unannotated_type)), - - _unannotated_type: ($) => - prec.right( - choice( - $.user_type, - $.tuple_type, - $.function_type, - $.array_type, - $.dictionary_type, - $.optional_type, - $.metatype, - $._opaque_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_operator), - - _simple_user_type: ($) => - prec.right( - seq( - alias($.simple_identifier, $.type_identifier), - optional($.type_arguments) - ) - ), - - tuple_type: ($) => seq("(", optional(sep1($._tuple_type_item, ",")), ")"), - - _tuple_type_item: ($) => - seq( - optional($._tuple_type_item_identifier), - optional($.parameter_modifiers), - $._type - ), - - _tuple_type_item_identifier: ($) => - seq(optional($.wildcard_pattern), $.simple_identifier, ":"), - - function_type: ($) => - seq( - $.tuple_type, - optional($.throws_modifier), - $._arrow_operator, - $._type - ), - - array_type: ($) => seq("[", $._type, "]"), - - dictionary_type: ($) => seq("[", $._type, ":", $._type, "]"), - - optional_type: ($) => - prec.left( - seq( - choice($.user_type, $.tuple_type, $.array_type, $.dictionary_type), - repeat1($._immediate_quest) - ) - ), - - metatype: ($) => - prec.left(seq($._unannotated_type, ".", choice("Type", "Protocol"))), - - _quest: ($) => "?", - _immediate_quest: ($) => token.immediate("?"), - - _opaque_type: ($) => seq("some", $.user_type), - - _protocol_composition_type: ($) => - prec.right( - seq( - $._unannotated_type, - repeat1(seq("&", prec.right($._unannotated_type))) - ) - ), - - //////////////////////////////// - // Expressions - https://docs.swift.org/swift-book/ReferenceManual/Expressions.html - //////////////////////////////// - - _expression: ($) => - choice( - $.simple_identifier, - $._unary_expression, - $._binary_expression, - $.ternary_expression, - $._primary_expression, - $.assignment, - seq($._expression, $._immediate_quest) - ), - - // 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(PREC.POSTFIX, seq($._expression, $._postfix_unary_operator)), - - call_expression: ($) => prec.left(seq($._expression, $.call_suffix)), - - constructor_expression: ($) => - prec.left( - seq( - choice($.array_type, $.dictionary_type, $.user_type), - $.constructor_suffix - ) - ), - - indexing_expression: ($) => - prec.left(PREC.POSTFIX, seq($._expression, $.indexing_suffix)), - - navigation_expression: ($) => - prec.left( - PREC.NAVIGATION, - seq( - choice($._navigable_type_expression, $._expression), - $.navigation_suffix - ) - ), - - _navigable_type_expression: ($) => - choice($.user_type, $.array_type, $.dictionary_type), - - // XXX precedence for ranges isn't right - open_start_range_expression: ($) => - prec.left( - PREC.RANGE, - seq( - choice($._open_ended_range_operator, $._three_dot_operator), - $._expression - ) - ), - - open_end_range_expression: ($) => - prec.left(PREC.RANGE, seq($._expression, $._three_dot_operator)), - - prefix_expression: ($) => - prec.right(PREC.PREFIX, seq($._prefix_unary_operator, $._expression)), - - as_expression: ($) => - prec.left(seq($._expression, $._as_operator, $._type)), - - selector_expression: ($) => - prec.left( - 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, - $.equality_expression, - $.conjunction_expression, - $.disjunction_expression, - $.bitwise_operation - ), - - multiplicative_expression: ($) => - prec.left( - PREC.MULTIPLICATIVE, - seq($._expression, $._multiplicative_operator, $._expression) - ), - - additive_expression: ($) => - prec.left( - PREC.ADDITIVE, - seq($._expression, $._additive_operator, $._expression) - ), - - range_expression: ($) => - prec.left( - PREC.RANGE, - seq( - $._expression, - choice($._open_ended_range_operator, $._three_dot_operator), - $._expression - ) - ), - - infix_expression: ($) => - prec.left( - PREC.INFIX, - seq($._expression, $.custom_operator, $._expression) - ), - - nil_coalescing_expression: ($) => - prec.left( - PREC.NIL_COALESCING, - seq($._expression, $._nil_coalescing_operator, $._expression) - ), - - check_expression: ($) => - prec.left(PREC.CHECK, seq($._expression, $._is_operator, $._type)), - - comparison_expression: ($) => - prec.left(seq($._expression, $._comparison_operator, $._expression)), - - equality_expression: ($) => - prec.left( - PREC.EQUALITY, - seq($._expression, $._equality_operator, $._expression) - ), - - conjunction_expression: ($) => - prec.left( - PREC.CONJUNCTION, - seq($._expression, $._conjunction_operator, $._expression) - ), - - disjunction_expression: ($) => - prec.left( - PREC.DISJUNCTION, - seq($._expression, $._disjunction_operator, $._expression) - ), - - bitwise_operation: ($) => - prec.left(seq($._expression, $._bitwise_binary_operator, $._expression)), - - custom_operator: ($) => seq(CUSTOM_OPERATORS, optional("<")), - - // Suffixes - - indexing_suffix: ($) => seq("[", sep1($._expression, ","), "]"), - - navigation_suffix: ($) => - seq( - $._navigation_operator, - choice($.simple_identifier, $.tuple_expression, $.integer_literal) - ), - - // `!.` should just be the result of a postfix `!` before navigation, but it gets parsed as a - // custom infix operator instead. - _navigation_operator: ($) => choice($._dot_operator, "!."), - - call_suffix: ($) => - prec.left( - seq( - choice( - $.value_arguments, - sep1($._annotated_lambda, seq($.simple_identifier, ":")) - ) - ) - ), - - constructor_suffix: ($) => - prec.left( - seq( - choice( - seq("(", optional(sep1($.value_argument, ",")), ")"), - $._annotated_lambda - ) - ) - ), - - _annotated_lambda: ($) => - seq( - // repeat($.attribute), - $.lambda_literal - ), - - 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($.simple_identifier, ":")), - seq(optional(seq($.simple_identifier, ":")), $._expression) - ) - ) - ), - - ternary_expression: ($) => - prec.left( - seq($._expression, $._quest, $._expression, ":", $._expression) - ), - - _primary_expression: ($) => - choice( - $.tuple_expression, - $._basic_literal, - $._function_literal, - $._special_literal, - $._playground_literal, - $.array_literal, - $.dictionary_literal, - $.self_expression, - $.super_expression, - $.try_expression, - $._referenceable_operator, - $.key_path_expression, - $.key_path_string_expression, - alias($._three_dot_operator, $.fully_open_range) - ), - - tuple_expression: ($) => - prec.left( - seq( - "(", - sep1( - seq(optional(seq($.simple_identifier, ":")), $._expression), - "," - ), - ")" - ) - ), - - array_literal: ($) => - seq("[", optional(sep1($._expression, ",")), optional(","), "]"), - - dictionary_literal: ($) => - seq( - "[", - choice(":", sep1($._dictionary_literal_item, ",")), - optional(","), - "]" - ), - - _dictionary_literal_item: ($) => seq($._expression, ":", $._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( - PREC.LAMBDA_LITERAL, - seq( - "{", - optional($.capture_list), - optional(seq(optional($.lambda_function_type), "in")), - optional($.statements), - "}" - ) - ), - - capture_list: ($) => seq("[", sep1($._capture_list_item, ","), "]"), - - _capture_list_item: ($) => - choice( - "self", - seq( - optional($.ownership_modifier), - $.simple_identifier, - optional(seq($._equal_sign, $._expression)) - ) - ), - - lambda_function_type: ($) => - seq( - choice( - $.lambda_function_type_parameters, - seq("(", optional($.lambda_function_type_parameters), ")") - ), - optional($.throws_modifier), - optional(seq($._arrow_operator, $._possibly_implicitly_unwrapped_type)) - ), - - lambda_function_type_parameters: ($) => sep1($._lambda_parameter, ","), - - _lambda_parameter: ($) => - prec.left( - seq( - choice( - $.self_expression, - $.simple_identifier, - seq( - optional($.simple_identifier), - $.simple_identifier, - ":", - optional($.parameter_modifiers), - $._possibly_implicitly_unwrapped_type - ) - ) - ) - ), - - _function_literal: ($) => $.lambda_literal, - - self_expression: ($) => "self", - - super_expression: ($) => seq("super"), - - _else_options: ($) => choice($._block, $.if_statement), - - if_statement: ($) => - prec.right( - seq( - "if", - sep1(prec.left($._if_condition_sequence_item), ","), - choice($._block, seq($._block, $._else, $._else_options)) - ) - ), - - _if_condition_sequence_item: ($) => - prec.left( - choice($._if_let_binding, $._expression, $.availability_condition) - ), - - _if_let_binding: ($) => - prec.left( - seq($._direct_or_indirect_binding, $._equal_sign, $._expression) - ), - - guard_statement: ($) => - prec.right( - seq( - "guard", - sep1(prec.left($._if_condition_sequence_item), ","), - $._else, - $._block - ) - ), - - switch_statement: ($) => - seq("switch", $._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: ($) => generate_pattern_matching_rule($, true, false, true), - - do_statement: ($) => seq("do", $._block, repeat($.catch_block)), - - catch_block: ($) => - seq( - $._catch, - optional(generate_pattern_matching_rule($, true, false)), - optional($.where_clause), - $._block - ), - - where_clause: ($) => prec.left(seq($._where_keyword, $._expression)), - - try_expression: ($) => - prec.left( - seq( - // XXX associativity or precedence seems wrong here - $._try_operator, - $._expression - ) - ), - - key_path_expression: ($) => - prec.left( - 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( - "?", - "!", - "self", - seq("[", optional(sep1($.value_argument, ",")), "]") - ), - - _try_operator: ($) => choice("try", "try!", "try?"), - - _assignment_and_operator: ($) => choice("+=", "-=", "*=", "/=", "%=", "="), - - _equality_operator: ($) => choice("!=", "!==", $._eq_eq, "==="), - - _comparison_operator: ($) => choice("<", ">", "<=", ">="), - - _is_operator: ($) => "is", - - _additive_operator: ($) => - choice($._plus_then_ws, $._minus_then_ws, "+", "-"), - - _multiplicative_operator: ($) => choice("*", "/", "%"), - - _as_operator: ($) => choice($._as, $._as_quest, $._as_bang), - - _prefix_unary_operator: ($) => - prec.right( - choice( - "++", - "--", - "-", - "+", - "!", - "&", - "~", - $._dot_operator, - $.custom_operator - ) - ), - - _bitwise_binary_operator: ($) => choice("&", "|", "^", "<<", ">>"), - - _postfix_unary_operator: ($) => choice("++", "--", "!"), - - directly_assignable_expression: ($) => - choice( - $.simple_identifier, - $.navigation_expression, - $.call_expression, - $.tuple_expression, - $.self_expression - ), - - //////////////////////////////// - // Statements - https://docs.swift.org/swift-book/ReferenceManual/Statements.html - //////////////////////////////// - - statements: ($) => - prec.left( - 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(PREC.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.right( - seq( - "for", - generate_pattern_matching_rule($, true, true, false), - optional($.type_annotation), - "in", - $._expression, - optional($.where_clause), - $._block - ) - ), - - while_statement: ($) => - seq( - "while", - sep1(prec.left($._if_condition_sequence_item), ","), - "{", - optional($.statements), - "}" - ), - - repeat_while_statement: ($) => - prec.right( - seq( - "repeat", - "{", - optional($.statements), - "}", - "while", - sep1(prec.left($._if_condition_sequence_item), ",") - ) - ), - - control_transfer_statement: ($) => - choice( - prec.right($._throw_statement), - prec.right(seq($._return_continue_break, optional($._expression))) - ), - - _throw_statement: ($) => seq($.throw_keyword, $._expression), - throw_keyword: ($) => "throw", - - _return_continue_break: ($) => choice("return", "continue", "break"), - - assignment: ($) => - prec.left( - PREC.ASSIGNMENT, - seq( - $.directly_assignable_expression, - $._assignment_and_operator, - $._expression - ) - ), - - availability_condition: ($) => - seq( - "#available", - "(", - sep1(choice($._availability_argument, "*"), ","), - ")" - ), - - _availability_argument: ($) => - 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, - // TODO actor 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), - $.value_binding_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), - optional("class"), - $._modifierless_property_declaration - ), - - _modifierless_property_declaration: ($) => - prec.right( - seq( - choice("let", "var"), - sep1( - seq( - alias($.property_binding_pattern, $.value_binding_pattern), - optional($.type_annotation), - optional($.type_constraints), - optional( - choice(seq($._equal_sign, $._expression), $.computed_property) - ) - ), - "," - ) - ) - ), - - property_binding_pattern: ($) => - generate_pattern_matching_rule($, false, false), - - typealias_declaration: ($) => - seq(optional($.modifiers), $._modifierless_typealias_declaration), - - _modifierless_typealias_declaration: ($) => - seq( - "typealias", - alias($.simple_identifier, $.type_identifier), - optional($.type_parameters), - $._equal_sign, - $._type - ), - - function_declaration: ($) => - prec.right(seq($._bodyless_function_declaration, $.function_body)), - - _modifierless_function_declaration: ($) => - prec.right( - seq($._modifierless_function_declaration_no_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($.throws_modifier), - optional( - seq($._arrow_operator, $._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( - choice("class", "struct"), - alias($.simple_identifier, $.type_identifier), - optional($.type_parameters), - optional(seq(":", $._inheritance_specifiers)), - optional($.type_constraints), - $.class_body - ), - seq( - "extension", - $.identifier, - optional($.type_parameters), - optional(seq(":", $._inheritance_specifiers)), - optional($.type_constraints), - $.class_body - ), - seq( - optional("indirect"), - "enum", - alias($.simple_identifier, $.type_identifier), - optional($.type_parameters), - optional(seq(":", $._inheritance_specifiers)), - optional($.type_constraints), - $.enum_class_body - ) - ) - ), - - class_body: ($) => seq("{", optional($._class_member_declarations), "}"), - - _inheritance_specifiers: ($) => - prec.left(sep1($.inheritance_specifier, choice(",", "&"))), - - inheritance_specifier: ($) => - prec.left(choice($.user_type, $.function_type)), - - _annotated_inheritance_specifier: ($) => - seq(repeat($.attribute), $.inheritance_specifier), - - type_parameters: ($) => seq("<", sep1($.type_parameter, ","), ">"), - - 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), - $.identifier, - ":", - $._possibly_implicitly_unwrapped_type - ), - - equality_constraint: ($) => - seq( - repeat($.attribute), - $.identifier, - choice($._equal_sign, $._eq_eq), - $._type - ), - - _class_member_declarations: ($) => - repeat1(seq($._type_level_declaration, $._semi)), - - _function_value_parameters: ($) => - seq("(", optional(sep1($._function_value_parameter, ",")), ")"), - - _function_value_parameter: ($) => - seq( - optional($.attribute), - optional(alias($.simple_identifier, $.external_parameter_name)), - $.parameter, - optional(seq($._equal_sign, $._expression)) - ), - - parameter: ($) => - seq( - $.simple_identifier, - ":", - optional($.parameter_modifiers), - $._possibly_implicitly_unwrapped_type, - optional($._three_dot_operator) - ), - - _constructor_function_decl: ($) => - seq("init", optional(choice($._quest, "!"))), - - _non_constructor_function_decl: ($) => - seq( - "func", - choice( - $.simple_identifier, - $._referenceable_operator, - $._bitwise_binary_operator - ) - ), - - _referenceable_operator: ($) => - choice( - $.custom_operator, - $._comparison_operator, - $._additive_operator, - $._multiplicative_operator, - $._equality_operator, - $._comparison_operator - ), - - throws_modifier: ($) => choice($._throws_keyword, $._rethrows_keyword), - - enum_class_body: ($) => - seq("{", repeat(choice($.enum_entry, $._type_level_declaration)), "}"), - - enum_entry: ($) => - prec.left( - seq( - optional($.modifiers), - optional("indirect"), - "case", - sep1( - seq( - $.simple_identifier, - optional( - choice( - $.enum_type_parameters, - seq($._equal_sign, $._expression) - ) - ) - ), - "," - ), - optional(";") - ) - ), - - 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), - "protocol", - alias($.simple_identifier, $.type_identifier), - optional($.type_parameters), - optional(seq(":", $._inheritance_specifiers)), - optional($.type_constraints), - $.protocol_body - ) - ), - - protocol_body: ($) => - seq("{", optional($._protocol_member_declarations), "}"), - - _protocol_member_declarations: ($) => - repeat1(seq($._protocol_member_declaration, $._semi)), - - _protocol_member_declaration: ($) => - choice( - alias( - seq($._bodyless_function_declaration, optional($.function_body)), - $.protocol_function_declaration - ), - $.deinit_declaration, - $.protocol_property_declaration, - $.typealias_declaration, - $.associatedtype_declaration, - $.subscript_declaration - ), - - deinit_declaration: ($) => - prec.right(seq(optional($.modifiers), "deinit", $.function_body)), - - subscript_declaration: ($) => - prec.right( - seq( - optional($.modifiers), - "subscript", - optional($.type_parameters), - $._function_value_parameters, - optional( - seq($._arrow_operator, $._possibly_implicitly_unwrapped_type) - ), - optional($.type_constraints), - "{", - choice( - optional($.statements), - repeat(choice($.computed_getter, $.computed_setter)) - ), - "}" - ) - ), - - computed_property: ($) => - seq( - "{", - choice( - optional($.statements), - repeat(choice($.computed_getter, $.computed_setter)) - ), - "}" - ), - - computed_getter: ($) => seq($.getter_specifier, optional($._block)), - - computed_setter: ($) => - seq( - $.setter_specifier, - optional(seq("(", $.simple_identifier, ")")), - optional($._block) - ), - - getter_specifier: ($) => seq(optional($.mutation_modifier), "get"), - setter_specifier: ($) => seq(optional($.mutation_modifier), "set"), - - operator_declaration: ($) => - seq( - choice("prefix", "infix", "postfix"), - "operator", - $.custom_operator, - optional(seq(":", $.simple_identifier)) - ), - - 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", - alias($.simple_identifier, $.type_identifier), - optional(seq(":", $._type)), - optional($.type_constraints), - optional(seq($._equal_sign, $._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( - 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 - //////////////////////////////// - - // Higher-than-default precedence to resolve `x as SomeType` ambiguity (expression patterns seem not to support - // as-expressions) - binding_pattern: ($) => - prec.left(1, generate_pattern_matching_rule($, true, false, false, true)), - non_binding_pattern: ($) => - prec.left( - 1, - generate_pattern_matching_rule($, false, false, false, true) - ), - // Higher precedence than pattern w/o binding since these are strictly more flexible - _binding_pattern_with_expr: ($) => - prec.left(2, generate_pattern_matching_rule($, true, false, true, true)), - _non_binding_pattern_with_expr: ($) => - prec.left(2, generate_pattern_matching_rule($, false, false, true, true)), - - _direct_or_indirect_binding: ($) => - seq( - choice( - $.value_binding_pattern, - seq("case", generate_pattern_matching_rule($, true, false, false)) - ), - optional($.type_annotation) - ), - - wildcard_pattern: ($) => "_", - - value_binding_pattern: ($) => - prec.left( - choice( - seq("var", generate_pattern_matching_rule($, false, false)), - seq("let", generate_pattern_matching_rule($, false, false)) - ) - ), - - // ========== - // 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 - ), - - _locally_permitted_modifier: ($) => - choice( - $.ownership_modifier, - $.property_behavior_modifier, - $.inheritance_modifier - ), - - property_behavior_modifier: ($) => "lazy", - - type_modifiers: ($) => repeat1($.attribute), - - member_modifier: ($) => choice("override", "convenience", "required"), - - 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"), - - 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( - PREC.COMMENT, - choice( - seq("#if", /.*/), - seq("#elseif", /.*/), - seq("#else", /.*/), - seq("#endif", /.*/), - seq(/#sourceLocation([^\r\n]*)/) - ) - ) - ), - - diagnostic: ($) => - token( - prec( - PREC.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 generate_tuple_pattern($, allows_binding, allows_expressions) { - const pattern_rule = generate_pattern_matching_rule( - $, - allows_binding, - false, - allows_expressions - ); - const tuple_pattern_item = choice( - seq($.simple_identifier, seq(":", pattern_rule)), - pattern_rule - ); - return seq("(", sep1(tuple_pattern_item, ","), ")", optional($._quest)); -} - -function generate_case_pattern($, allows_binding, force) { - return seq( - optional($.user_type), // XXX this should just be _type but that creates ambiguity - $._dot_operator, - $.simple_identifier, - optional(generate_tuple_pattern($, allows_binding, true)), - optional($._quest) - ); -} - -function generate_type_casting_pattern($, allows_binding) { - return choice( - seq("is", $._type), - seq( - generate_pattern_matching_rule($, allows_binding, false), - $._as, - $._type - ) - ); -} - -function generate_pattern_matching_rule( - $, - allows_binding, - allows_case_keyword, - allows_expressions, - force -) { - if (!force && !allows_case_keyword) { - if (allows_binding && !allows_expressions) { - return $.binding_pattern; - } - - if (!allows_binding && !allows_expressions) { - return $.non_binding_pattern; - } - - if (allows_binding && allows_expressions) { - return $._binding_pattern_with_expr; - } - - if (!allows_binding && allows_expressions) { - return $._non_binding_pattern_with_expr; - } - } - - const always_allowed_patterns = [ - $.wildcard_pattern, - generate_tuple_pattern($, allows_binding, allows_expressions), - generate_type_casting_pattern($, allows_binding), - ]; - - const binding_pattern_prefix = allows_case_keyword - ? seq(optional("case"), choice("var", "let")) - : choice("var", "let"); - - const binding_pattern_if_allowed = allows_binding - ? [ - seq( - binding_pattern_prefix, - generate_pattern_matching_rule($, false, false, false) - ), - ] - : []; - - const case_pattern = allows_case_keyword - ? seq("case", generate_case_pattern($, allows_binding)) - : generate_case_pattern($, allows_binding); - - const expression_pattern = allows_expressions - ? $._expression - : $.simple_identifier; - - const all_patterns = always_allowed_patterns - .concat(binding_pattern_if_allowed) - .concat(case_pattern) - .concat(expression_pattern); - - return seq(choice(...all_patterns), optional($._quest)); -} diff --git a/grammar.js b/grammar.js new file mode 120000 index 000000000..8fd21e8e2 --- /dev/null +++ b/grammar.js @@ -0,0 +1 @@ +build/grammar.js \ No newline at end of file diff --git a/grammar.ts b/grammar.ts new file mode 100644 index 000000000..8373d2ba4 --- /dev/null +++ b/grammar.ts @@ -0,0 +1,1726 @@ +/* + * 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 PREC = { + NAVIGATION: 13, + MULTIPLICATIVE: 12, + ADDITIVE: 11, + INFIX: 9, + NIL_COALESCING: 8, + CHECK: 7, + PREFIX: 7, + COMPARISON: 6, + POSTFIX: 6, + EQUALITY: 5, + CONJUNCTION: 4, + DISJUNCTION: 3, + RANGE: 2, + BLOCK: 1, + ASSIGNMENT: -1, + COMMENT: -1, + LAMBDA_LITERAL: -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)); +const LEXICAL_IDENTIFIER = /[_\p{XID_Start}][_\p{XID_Continue}]*/; +const CUSTOM_OPERATORS = token( + choice( + // https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html#ID418 + // This supports a subset of the operators that Swift does but I'm really not concerned about the esoteric ones. + // Someone who wants unicode support can add it. What this does do is: + // * Avoid the reserved operators by saying that certain characters are only available if you don't start with them. + // * Entirely forbid `<` as the last char because it creates ambiguity with type arguments + /[\\<>&?=][\/=\-+!*%<>&|^?~\.]*[\/=\-+!*%>&|^?~]+/, + /[\-+!*%|^~]+[\/=\-+!*%<>&|^?~]*[\/=\-+!*%>&|^?~]+/, + /[\-+!*%|^~\.]+[\/=\-+!*%<>&|^?~\.]*[\/=\-+!*%>&|^?~\.]+/, + /[\/]+[=\-+!*%<>&|^?~]*[=\-+!*%>&|^?~]+/, + /[\/]+[=\-+!*%<>&|^?~\.]*[=\-+!*%>&|^?~\.]+/ + ) +); + +// XXX need custom scanner for: +// * Custom operators and `<` for type arguments + +module.exports = grammar({ + name: "swift", + + conflicts: ($) => [ + // @Type(... could either be an annotation constructor invocation or an annotated expression + [$.attribute], + + // 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], + + // Custom operators get weird special handling for `<` characters in silly stuff like `func =<<<(...)` + [$.custom_operator], + [$._prefix_unary_operator, $._referenceable_operator], + + // `+(...)` 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], + + // `{ [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], + ], + + 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. + $._semi, + // Every one of the below operators will suppress a `_semi` if we encounter it after a newline. + $._arrow_operator, + $._dot_operator, + $._three_dot_operator, + $._open_ended_range_operator, + $._conjunction_operator, + $._disjunction_operator, + $._nil_coalescing_operator, + $._equal_sign, + $._eq_eq, + $._plus_then_ws, // + symbol with whitespace after it + $._minus_then_ws, // - symbol with whitespace after it + $._throws_keyword, + $._rethrows_keyword, + $.default_keyword, + $._where_keyword, + $._else, + $._catch, + $._as, + $._as_quest, + $._as_bang, + ], + + rules: { + //////////////////////////////// + // File Structure + //////////////////////////////// + + source_file: ($) => + seq( + optional($.shebang_line), + repeat(seq($._top_level_statement, $._semi)) + ), + + shebang_line: ($) => seq("#!", /[^\r\n]*/), + + //////////////////////////////// + // Lexical Structure - https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html + //////////////////////////////// + + comment: ($) => token(prec(PREC.COMMENT, seq("//", /.*/))), + + // Identifiers + + simple_identifier: ($) => + choice( + LEXICAL_IDENTIFIER, + /`[^\r\n` ]*`/, + /\$[0-9]+/, + token(seq("$", LEXICAL_IDENTIFIER)) + ), + + identifier: ($) => sep1($.simple_identifier, $._dot_operator), + + // Literals + + _basic_literal: ($) => + choice( + $.integer_literal, + $.hex_literal, + $.oct_literal, + $.bin_literal, + $.real_literal, + $.boolean_literal, + $._string_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($._line_string_content, $._interpolation)), '"'), + + _line_string_content: ($) => + choice($._line_str_text, $._line_str_escaped_char), + + _line_str_text: ($) => /[^\\"]+/, + + _line_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($._multi_line_string_content, $._interpolation)), + '"""' + ), + + raw_string_literal: ($) => + seq( + repeat( + seq( + $.raw_str_part, + $.raw_str_interpolation, + optional($.raw_str_continuing_indicator) + ) + ), + $.raw_str_end_part + ), + + raw_str_interpolation: ($) => + seq($.raw_str_interpolation_start, $._expression, ")"), + + raw_str_interpolation_start: ($) => /\\#*\(/, + + _multi_line_string_content: ($) => + choice($._multi_line_str_text, $._escaped_identifier, '"'), + + _interpolation: ($) => + seq("\\(", alias($._expression, $.interpolated_expression), ")"), + + _escaped_identifier: ($) => /\\[0\\tnr"'\n]/, + + _multi_line_str_text: ($) => /[^\\"]+/, + + //////////////////////////////// + // Types - https://docs.swift.org/swift-book/ReferenceManual/Types.html + //////////////////////////////// + + type_annotation: ($) => seq(":", $._possibly_implicitly_unwrapped_type), + + _possibly_implicitly_unwrapped_type: ($) => + seq($._type, optional(token.immediate("!"))), + + _type: ($) => + prec.right(seq(optional($.type_modifiers), $._unannotated_type)), + + _unannotated_type: ($) => + prec.right( + choice( + $.user_type, + $.tuple_type, + $.function_type, + $.array_type, + $.dictionary_type, + $.optional_type, + $.metatype, + $._opaque_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_operator), + + _simple_user_type: ($) => + prec.right( + seq( + alias($.simple_identifier, $.type_identifier), + optional($.type_arguments) + ) + ), + + tuple_type: ($) => seq("(", optional(sep1($._tuple_type_item, ",")), ")"), + + _tuple_type_item: ($) => + seq( + optional($._tuple_type_item_identifier), + optional($.parameter_modifiers), + $._type + ), + + _tuple_type_item_identifier: ($) => + seq(optional($.wildcard_pattern), $.simple_identifier, ":"), + + function_type: ($) => + seq( + $.tuple_type, + optional($.throws_modifier), + $._arrow_operator, + $._type + ), + + array_type: ($) => seq("[", $._type, "]"), + + dictionary_type: ($) => seq("[", $._type, ":", $._type, "]"), + + optional_type: ($) => + prec.left( + seq( + choice($.user_type, $.tuple_type, $.array_type, $.dictionary_type), + repeat1($._immediate_quest) + ) + ), + + metatype: ($) => + prec.left(seq($._unannotated_type, ".", choice("Type", "Protocol"))), + + _quest: ($) => "?", + _immediate_quest: ($) => token.immediate("?"), + + _opaque_type: ($) => seq("some", $.user_type), + + _protocol_composition_type: ($) => + prec.right( + seq( + $._unannotated_type, + repeat1(seq("&", prec.right($._unannotated_type))) + ) + ), + + //////////////////////////////// + // Expressions - https://docs.swift.org/swift-book/ReferenceManual/Expressions.html + //////////////////////////////// + + _expression: ($) => + choice( + $.simple_identifier, + $._unary_expression, + $._binary_expression, + $.ternary_expression, + $._primary_expression, + $.assignment, + seq($._expression, $._immediate_quest) + ), + + // 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(PREC.POSTFIX, seq($._expression, $._postfix_unary_operator)), + + call_expression: ($) => prec.left(seq($._expression, $.call_suffix)), + + constructor_expression: ($) => + prec.left( + seq( + choice($.array_type, $.dictionary_type, $.user_type), + $.constructor_suffix + ) + ), + + indexing_expression: ($) => + prec.left(PREC.POSTFIX, seq($._expression, $.indexing_suffix)), + + navigation_expression: ($) => + prec.left( + PREC.NAVIGATION, + seq( + choice($._navigable_type_expression, $._expression), + $.navigation_suffix + ) + ), + + _navigable_type_expression: ($) => + choice($.user_type, $.array_type, $.dictionary_type), + + // XXX precedence for ranges isn't right + open_start_range_expression: ($) => + prec.left( + PREC.RANGE, + seq( + choice($._open_ended_range_operator, $._three_dot_operator), + $._expression + ) + ), + + open_end_range_expression: ($) => + prec.left(PREC.RANGE, seq($._expression, $._three_dot_operator)), + + prefix_expression: ($) => + prec.right(PREC.PREFIX, seq($._prefix_unary_operator, $._expression)), + + as_expression: ($) => + prec.left(seq($._expression, $._as_operator, $._type)), + + selector_expression: ($) => + prec.left( + 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, + $.equality_expression, + $.conjunction_expression, + $.disjunction_expression, + $.bitwise_operation + ), + + multiplicative_expression: ($) => + prec.left( + PREC.MULTIPLICATIVE, + seq($._expression, $._multiplicative_operator, $._expression) + ), + + additive_expression: ($) => + prec.left( + PREC.ADDITIVE, + seq($._expression, $._additive_operator, $._expression) + ), + + range_expression: ($) => + prec.left( + PREC.RANGE, + seq( + $._expression, + choice($._open_ended_range_operator, $._three_dot_operator), + $._expression + ) + ), + + infix_expression: ($) => + prec.left( + PREC.INFIX, + seq($._expression, $.custom_operator, $._expression) + ), + + nil_coalescing_expression: ($) => + prec.left( + PREC.NIL_COALESCING, + seq($._expression, $._nil_coalescing_operator, $._expression) + ), + + check_expression: ($) => + prec.left(PREC.CHECK, seq($._expression, $._is_operator, $._type)), + + comparison_expression: ($) => + prec.left(seq($._expression, $._comparison_operator, $._expression)), + + equality_expression: ($) => + prec.left( + PREC.EQUALITY, + seq($._expression, $._equality_operator, $._expression) + ), + + conjunction_expression: ($) => + prec.left( + PREC.CONJUNCTION, + seq($._expression, $._conjunction_operator, $._expression) + ), + + disjunction_expression: ($) => + prec.left( + PREC.DISJUNCTION, + seq($._expression, $._disjunction_operator, $._expression) + ), + + bitwise_operation: ($) => + prec.left(seq($._expression, $._bitwise_binary_operator, $._expression)), + + custom_operator: ($) => seq(CUSTOM_OPERATORS, optional("<")), + + // Suffixes + + indexing_suffix: ($) => seq("[", sep1($._expression, ","), "]"), + + navigation_suffix: ($) => + seq( + $._navigation_operator, + choice($.simple_identifier, $.tuple_expression, $.integer_literal) + ), + + // `!.` should just be the result of a postfix `!` before navigation, but it gets parsed as a + // custom infix operator instead. + _navigation_operator: ($) => choice($._dot_operator, "!."), + + call_suffix: ($) => + prec.left( + seq( + choice( + $.value_arguments, + sep1($._annotated_lambda, seq($.simple_identifier, ":")) + ) + ) + ), + + constructor_suffix: ($) => + prec.left( + seq( + choice( + seq("(", optional(sep1($.value_argument, ",")), ")"), + $._annotated_lambda + ) + ) + ), + + _annotated_lambda: ($) => + seq( + // repeat($.attribute), + $.lambda_literal + ), + + 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($.simple_identifier, ":")), + seq(optional(seq($.simple_identifier, ":")), $._expression) + ) + ) + ), + + ternary_expression: ($) => + prec.left( + seq($._expression, $._quest, $._expression, ":", $._expression) + ), + + _primary_expression: ($) => + choice( + $.tuple_expression, + $._basic_literal, + $._function_literal, + $._special_literal, + $._playground_literal, + $.array_literal, + $.dictionary_literal, + $.self_expression, + $.super_expression, + $.try_expression, + $._referenceable_operator, + $.key_path_expression, + $.key_path_string_expression, + alias($._three_dot_operator, $.fully_open_range) + ), + + tuple_expression: ($) => + prec.left( + seq( + "(", + sep1( + seq(optional(seq($.simple_identifier, ":")), $._expression), + "," + ), + ")" + ) + ), + + array_literal: ($) => + seq("[", optional(sep1($._expression, ",")), optional(","), "]"), + + dictionary_literal: ($) => + seq( + "[", + choice(":", sep1($._dictionary_literal_item, ",")), + optional(","), + "]" + ), + + _dictionary_literal_item: ($) => seq($._expression, ":", $._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( + PREC.LAMBDA_LITERAL, + seq( + "{", + optional($.capture_list), + optional(seq(optional($.lambda_function_type), "in")), + optional($.statements), + "}" + ) + ), + + capture_list: ($) => seq("[", sep1($._capture_list_item, ","), "]"), + + _capture_list_item: ($) => + choice( + "self", + seq( + optional($.ownership_modifier), + $.simple_identifier, + optional(seq($._equal_sign, $._expression)) + ) + ), + + lambda_function_type: ($) => + seq( + choice( + $.lambda_function_type_parameters, + seq("(", optional($.lambda_function_type_parameters), ")") + ), + optional($.throws_modifier), + optional(seq($._arrow_operator, $._possibly_implicitly_unwrapped_type)) + ), + + lambda_function_type_parameters: ($) => sep1($._lambda_parameter, ","), + + _lambda_parameter: ($) => + prec.left( + seq( + choice( + $.self_expression, + $.simple_identifier, + seq( + optional($.simple_identifier), + $.simple_identifier, + ":", + optional($.parameter_modifiers), + $._possibly_implicitly_unwrapped_type + ) + ) + ) + ), + + _function_literal: ($) => $.lambda_literal, + + self_expression: ($) => "self", + + super_expression: ($) => seq("super"), + + _else_options: ($) => choice($._block, $.if_statement), + + if_statement: ($) => + prec.right( + seq( + "if", + sep1(prec.left($._if_condition_sequence_item), ","), + choice($._block, seq($._block, $._else, $._else_options)) + ) + ), + + _if_condition_sequence_item: ($) => + prec.left( + choice($._if_let_binding, $._expression, $.availability_condition) + ), + + _if_let_binding: ($) => + prec.left( + seq($._direct_or_indirect_binding, $._equal_sign, $._expression) + ), + + guard_statement: ($) => + prec.right( + seq( + "guard", + sep1(prec.left($._if_condition_sequence_item), ","), + $._else, + $._block + ) + ), + + switch_statement: ($) => + seq("switch", $._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: ($) => generate_pattern_matching_rule($, true, false, true), + + do_statement: ($) => seq("do", $._block, repeat($.catch_block)), + + catch_block: ($) => + seq( + $._catch, + optional(generate_pattern_matching_rule($, true, false)), + optional($.where_clause), + $._block + ), + + where_clause: ($) => prec.left(seq($._where_keyword, $._expression)), + + try_expression: ($) => + prec.left( + seq( + // XXX associativity or precedence seems wrong here + $._try_operator, + $._expression + ) + ), + + key_path_expression: ($) => + prec.left( + 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( + "?", + "!", + "self", + seq("[", optional(sep1($.value_argument, ",")), "]") + ), + + _try_operator: ($) => choice("try", "try!", "try?"), + + _assignment_and_operator: ($) => choice("+=", "-=", "*=", "/=", "%=", "="), + + _equality_operator: ($) => choice("!=", "!==", $._eq_eq, "==="), + + _comparison_operator: ($) => choice("<", ">", "<=", ">="), + + _is_operator: ($) => "is", + + _additive_operator: ($) => + choice($._plus_then_ws, $._minus_then_ws, "+", "-"), + + _multiplicative_operator: ($) => choice("*", "/", "%"), + + _as_operator: ($) => choice($._as, $._as_quest, $._as_bang), + + _prefix_unary_operator: ($) => + prec.right( + choice( + "++", + "--", + "-", + "+", + "!", + "&", + "~", + $._dot_operator, + $.custom_operator + ) + ), + + _bitwise_binary_operator: ($) => choice("&", "|", "^", "<<", ">>"), + + _postfix_unary_operator: ($) => choice("++", "--", "!"), + + directly_assignable_expression: ($) => + choice( + $.simple_identifier, + $.navigation_expression, + $.call_expression, + $.tuple_expression, + $.self_expression + ), + + //////////////////////////////// + // Statements - https://docs.swift.org/swift-book/ReferenceManual/Statements.html + //////////////////////////////// + + statements: ($) => + prec.left( + 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(PREC.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.right( + seq( + "for", + generate_pattern_matching_rule($, true, true, false), + optional($.type_annotation), + "in", + $._expression, + optional($.where_clause), + $._block + ) + ), + + while_statement: ($) => + seq( + "while", + sep1(prec.left($._if_condition_sequence_item), ","), + "{", + optional($.statements), + "}" + ), + + repeat_while_statement: ($) => + prec.right( + seq( + "repeat", + "{", + optional($.statements), + "}", + "while", + sep1(prec.left($._if_condition_sequence_item), ",") + ) + ), + + control_transfer_statement: ($) => + choice( + prec.right($._throw_statement), + prec.right(seq($._return_continue_break, optional($._expression))) + ), + + _throw_statement: ($) => seq($.throw_keyword, $._expression), + throw_keyword: ($) => "throw", + + _return_continue_break: ($) => choice("return", "continue", "break"), + + assignment: ($) => + prec.left( + PREC.ASSIGNMENT, + seq( + $.directly_assignable_expression, + $._assignment_and_operator, + $._expression + ) + ), + + availability_condition: ($) => + seq( + "#available", + "(", + sep1(choice($._availability_argument, "*"), ","), + ")" + ), + + _availability_argument: ($) => + 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, + // TODO actor 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), + $.value_binding_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), + optional("class"), + $._modifierless_property_declaration + ), + + _modifierless_property_declaration: ($) => + prec.right( + seq( + choice("let", "var"), + sep1( + seq( + alias($.property_binding_pattern, $.value_binding_pattern), + optional($.type_annotation), + optional($.type_constraints), + optional( + choice(seq($._equal_sign, $._expression), $.computed_property) + ) + ), + "," + ) + ) + ), + + property_binding_pattern: ($) => + generate_pattern_matching_rule($, false, false), + + typealias_declaration: ($) => + seq(optional($.modifiers), $._modifierless_typealias_declaration), + + _modifierless_typealias_declaration: ($) => + seq( + "typealias", + alias($.simple_identifier, $.type_identifier), + optional($.type_parameters), + $._equal_sign, + $._type + ), + + function_declaration: ($) => + prec.right(seq($._bodyless_function_declaration, $.function_body)), + + _modifierless_function_declaration: ($) => + prec.right( + seq($._modifierless_function_declaration_no_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($.throws_modifier), + optional( + seq($._arrow_operator, $._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( + choice("class", "struct"), + alias($.simple_identifier, $.type_identifier), + optional($.type_parameters), + optional(seq(":", $._inheritance_specifiers)), + optional($.type_constraints), + $.class_body + ), + seq( + "extension", + $.identifier, + optional($.type_parameters), + optional(seq(":", $._inheritance_specifiers)), + optional($.type_constraints), + $.class_body + ), + seq( + optional("indirect"), + "enum", + alias($.simple_identifier, $.type_identifier), + optional($.type_parameters), + optional(seq(":", $._inheritance_specifiers)), + optional($.type_constraints), + $.enum_class_body + ) + ) + ), + + class_body: ($) => seq("{", optional($._class_member_declarations), "}"), + + _inheritance_specifiers: ($) => + prec.left(sep1($.inheritance_specifier, choice(",", "&"))), + + inheritance_specifier: ($) => + prec.left(choice($.user_type, $.function_type)), + + _annotated_inheritance_specifier: ($) => + seq(repeat($.attribute), $.inheritance_specifier), + + type_parameters: ($) => seq("<", sep1($.type_parameter, ","), ">"), + + 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), + $.identifier, + ":", + $._possibly_implicitly_unwrapped_type + ), + + equality_constraint: ($) => + seq( + repeat($.attribute), + $.identifier, + choice($._equal_sign, $._eq_eq), + $._type + ), + + _class_member_declarations: ($) => + repeat1(seq($._type_level_declaration, $._semi)), + + _function_value_parameters: ($) => + seq("(", optional(sep1($._function_value_parameter, ",")), ")"), + + _function_value_parameter: ($) => + seq( + optional($.attribute), + optional(alias($.simple_identifier, $.external_parameter_name)), + $.parameter, + optional(seq($._equal_sign, $._expression)) + ), + + parameter: ($) => + seq( + $.simple_identifier, + ":", + optional($.parameter_modifiers), + $._possibly_implicitly_unwrapped_type, + optional($._three_dot_operator) + ), + + _constructor_function_decl: ($) => + seq("init", optional(choice($._quest, "!"))), + + _non_constructor_function_decl: ($) => + seq( + "func", + choice( + $.simple_identifier, + $._referenceable_operator, + $._bitwise_binary_operator + ) + ), + + _referenceable_operator: ($) => + choice( + $.custom_operator, + $._comparison_operator, + $._additive_operator, + $._multiplicative_operator, + $._equality_operator, + $._comparison_operator + ), + + throws_modifier: ($) => choice($._throws_keyword, $._rethrows_keyword), + + enum_class_body: ($) => + seq("{", repeat(choice($.enum_entry, $._type_level_declaration)), "}"), + + enum_entry: ($) => + prec.left( + seq( + optional($.modifiers), + optional("indirect"), + "case", + sep1( + seq( + $.simple_identifier, + optional( + choice( + $.enum_type_parameters, + seq($._equal_sign, $._expression) + ) + ) + ), + "," + ), + optional(";") + ) + ), + + 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), + "protocol", + alias($.simple_identifier, $.type_identifier), + optional($.type_parameters), + optional(seq(":", $._inheritance_specifiers)), + optional($.type_constraints), + $.protocol_body + ) + ), + + protocol_body: ($) => + seq("{", optional($._protocol_member_declarations), "}"), + + _protocol_member_declarations: ($) => + repeat1(seq($._protocol_member_declaration, $._semi)), + + _protocol_member_declaration: ($) => + choice( + alias( + seq($._bodyless_function_declaration, optional($.function_body)), + $.protocol_function_declaration + ), + $.deinit_declaration, + $.protocol_property_declaration, + $.typealias_declaration, + $.associatedtype_declaration, + $.subscript_declaration + ), + + deinit_declaration: ($) => + prec.right(seq(optional($.modifiers), "deinit", $.function_body)), + + subscript_declaration: ($) => + prec.right( + seq( + optional($.modifiers), + "subscript", + optional($.type_parameters), + $._function_value_parameters, + optional( + seq($._arrow_operator, $._possibly_implicitly_unwrapped_type) + ), + optional($.type_constraints), + "{", + choice( + optional($.statements), + repeat(choice($.computed_getter, $.computed_setter)) + ), + "}" + ) + ), + + computed_property: ($) => + seq( + "{", + choice( + optional($.statements), + repeat(choice($.computed_getter, $.computed_setter)) + ), + "}" + ), + + computed_getter: ($) => seq($.getter_specifier, optional($._block)), + + computed_setter: ($) => + seq( + $.setter_specifier, + optional(seq("(", $.simple_identifier, ")")), + optional($._block) + ), + + getter_specifier: ($) => seq(optional($.mutation_modifier), "get"), + setter_specifier: ($) => seq(optional($.mutation_modifier), "set"), + + operator_declaration: ($) => + seq( + choice("prefix", "infix", "postfix"), + "operator", + $.custom_operator, + optional(seq(":", $.simple_identifier)) + ), + + 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", + alias($.simple_identifier, $.type_identifier), + optional(seq(":", $._type)), + optional($.type_constraints), + optional(seq($._equal_sign, $._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( + 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 + //////////////////////////////// + + // Higher-than-default precedence to resolve `x as SomeType` ambiguity (expression patterns seem not to support + // as-expressions) + binding_pattern: ($) => + prec.left(1, generate_pattern_matching_rule($, true, false, false, true)), + non_binding_pattern: ($) => + prec.left( + 1, + generate_pattern_matching_rule($, false, false, false, true) + ), + // Higher precedence than pattern w/o binding since these are strictly more flexible + _binding_pattern_with_expr: ($) => + prec.left(2, generate_pattern_matching_rule($, true, false, true, true)), + _non_binding_pattern_with_expr: ($) => + prec.left(2, generate_pattern_matching_rule($, false, false, true, true)), + + _direct_or_indirect_binding: ($) => + seq( + choice( + $.value_binding_pattern, + seq("case", generate_pattern_matching_rule($, true, false, false)) + ), + optional($.type_annotation) + ), + + wildcard_pattern: ($) => "_", + + value_binding_pattern: ($) => + prec.left( + choice( + seq("var", generate_pattern_matching_rule($, false, false)), + seq("let", generate_pattern_matching_rule($, false, false)) + ) + ), + + // ========== + // 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 + ), + + _locally_permitted_modifier: ($) => + choice( + $.ownership_modifier, + $.property_behavior_modifier, + $.inheritance_modifier + ), + + property_behavior_modifier: ($) => "lazy", + + type_modifiers: ($) => repeat1($.attribute), + + member_modifier: ($) => choice("override", "convenience", "required"), + + 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"), + + 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( + PREC.COMMENT, + choice( + seq("#if", /.*/), + seq("#elseif", /.*/), + seq("#else", /.*/), + seq("#endif", /.*/), + seq(/#sourceLocation([^\r\n]*)/) + ) + ) + ), + + diagnostic: ($) => + token( + prec( + PREC.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]*)/) + ) + ) + ), + } as const, +}); + +function sep1(rule: Rule, separator: Rule) { + return seq(rule, repeat(seq(separator, rule))); +} + +function generate_tuple_pattern( + $: Symbols, + allows_binding: boolean, + allows_expressions: boolean +) { + const pattern_rule = generate_pattern_matching_rule( + $, + allows_binding, + false, + allows_expressions + ); + const tuple_pattern_item = choice( + seq($.simple_identifier, seq(":", pattern_rule)), + pattern_rule + ); + return seq("(", sep1(tuple_pattern_item, ","), ")", optional($._quest)); +} + +function generate_case_pattern( + $: Symbols, + allows_binding: boolean, + force?: boolean +): Rule { + return seq( + optional($.user_type), // XXX this should just be _type but that creates ambiguity + $._dot_operator, + $.simple_identifier, + optional(generate_tuple_pattern($, allows_binding, true)), + optional($._quest) + ); +} + +function generate_type_casting_pattern( + $: Symbols, + allows_binding: boolean +): Rule { + return choice( + seq("is", $._type), + seq( + generate_pattern_matching_rule($, allows_binding, false), + $._as, + $._type + ) + ); +} + +function generate_pattern_matching_rule( + $: Symbols, + allows_binding: boolean, + allows_case_keyword: boolean, + allows_expressions?: boolean, + force?: boolean +): Rule { + if (!force && !allows_case_keyword) { + if (allows_binding && !allows_expressions) { + return $.binding_pattern; + } + + if (!allows_binding && !allows_expressions) { + return $.non_binding_pattern; + } + + if (allows_binding && allows_expressions) { + return $._binding_pattern_with_expr; + } + + if (!allows_binding && allows_expressions) { + return $._non_binding_pattern_with_expr; + } + } + + const always_allowed_patterns = [ + $.wildcard_pattern, + generate_tuple_pattern($, allows_binding, allows_expressions || false), + generate_type_casting_pattern($, allows_binding), + ]; + + const binding_pattern_prefix = allows_case_keyword + ? seq(optional("case"), choice("var", "let")) + : choice("var", "let"); + + const binding_pattern_if_allowed = allows_binding + ? [ + seq( + binding_pattern_prefix, + generate_pattern_matching_rule($, false, false, false) + ), + ] + : []; + + const case_pattern = allows_case_keyword + ? seq("case", generate_case_pattern($, allows_binding)) + : generate_case_pattern($, allows_binding); + + const expression_pattern = allows_expressions + ? $._expression + : $.simple_identifier; + + const all_patterns = always_allowed_patterns + .concat(binding_pattern_if_allowed) + .concat(case_pattern) + .concat(expression_pattern); + + return seq(choice(...all_patterns), optional($._quest)); +} diff --git a/package-lock.json b/package-lock.json index c9b8b4dbe..00af52406 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4,6 +4,12 @@ "lockfileVersion": 1, "requires": true, "dependencies": { + "@types/node": { + "version": "16.11.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.10.tgz", + "integrity": "sha512-3aRnHa1KlOEEhJ6+CvyHKK5vE9BcLGjtUpwvqYLRvYNQKMfabu3BwfJaA/SLW8dxe28LsNDjtHwePTuzn3gmOA==", + "dev": true + }, "nan": { "version": "2.15.0", "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", @@ -20,6 +26,12 @@ "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.0.tgz", "integrity": "sha512-4D1qapWbJXZ5rrSUGM5rcw5Vuq/smzn9KbiFRhlON6KeuuXjra+KAtDYVrDgAoLIG4ku+jbEEGrJxCptUGi3dg==", "dev": true + }, + "typescript": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz", + "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==", + "dev": true } } } diff --git a/package.json b/package.json index 0a496c631..8983c7c61 100644 --- a/package.json +++ b/package.json @@ -4,9 +4,10 @@ "description": "An experimental tree-sitter grammar for the Swift programming language.", "main": "grammar.js", "scripts": { - "install": "tree-sitter generate", - "ci": "prettier --check grammar.js", - "test": "./scripts/test-with-memcheck.sh --install-valgrind" + "install": "tsc && tree-sitter generate", + "ci": "prettier --check grammar.ts types/*/*.d.ts", + "test-ci": "./scripts/test-with-memcheck.sh --install-valgrind", + "test": "./scripts/test-with-memcheck.sh" }, "repository": { "type": "git", @@ -26,7 +27,9 @@ "nan": "^2.15.0" }, "devDependencies": { + "@types/node": "^16.11.10", "prettier": "2.3.2", - "tree-sitter-cli": "^0.20.0" + "tree-sitter-cli": "^0.20.0", + "typescript": "^4.5.2" } } diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 000000000..7015eab2f --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "outDir": "./build", + "removeComments": true, + "strict": true, + "target": "es6" + }, + "include": [ + "./grammar.ts", + "types/*/index.d.ts" + ] +} diff --git a/types/tree-sitter-dsl/index.d.ts b/types/tree-sitter-dsl/index.d.ts new file mode 100644 index 000000000..d876855b1 --- /dev/null +++ b/types/tree-sitter-dsl/index.d.ts @@ -0,0 +1,169 @@ +// See: https://github.com/tree-sitter/tree-sitter/blob/master/cli/src/generate/dsl.js +declare module "tree-sitter-dsl" { + // Most of this documentation is copied from https://tree-sitter.github.io/tree-sitter/creating-parsers + global { + /** + * The collection of named grammar rules that together produce the language grammar. + * + * Every grammar rule is written as a JavaScript function that takes one of these Symbols parameters, which are + * conventionally given the parameter name {@code $}. For instance, a rule may define itself in terms of a selection + * of another rule named `identifier` by referring to {@code $.identifier}. + */ + type Symbols = { [keys: string]: ($: Symbols) => Rule }; + + /** + * Possible types of rule functions that can be passed to the grammar DSL. + * + * This may be a terminal symbol, such as a string or a regular expression. It may also be a function that, given + * other symbols, produces some nested rule definition. + */ + type Rule = string | RegExp | (($: Symbols) => Rule); + + /** + * Public fields that influence the behavior of the parser. These are passed to the {@link grammar} function to + * produce the module's exports. + */ + type Grammar = { + // NOTE: `Symbols` could probably be defined more precisely here by giving `Grammar` a generic type argument. This + // would allow the typescript compiler to prove that only the symbols declared in this grammar are being used from + // other rules. However, this requires fancy union types and a lot of inference in order to include `externals` in + // the appropriate `Symbols` subtype. Since the `tree-sitter` compiler will already definitely throw an error on + // encountering unexpected symbols, that type inference would be of little use. + + /** + * The name of the language that this grammar is responsible for parsing. + */ + name: string; + /** + * An array of tokens that may appear anywhere in the language. + * + * This is often used for whitespace and comments. The default value of {@code extras} is to accept whitespace. To + * control whitespace explicitly, specify {@code extras: ($) => []} in your grammar. + */ + extras?: ($: Symbols) => Rule[]; + /** + * An array of rule names that should be automatically removed from the grammar by replacing all of their usages + * with a copy of their definition. + * + * This is useful for rules that are used in multiple places but for which you don't want to create syntax tree + * nodes at runtime. + */ + inline?: ($: Symbols) => Rule[]; + /** + * An array of arrays of rule names. Each inner array represents a set of rules that's involved in an LR(1) + * conflict that is intended to exist in the grammar. When these conflicts occur at runtime, Tree-sitter will use + * the GLR algorithm to explore all of the possible interpretations. If multiple parses end up succeeding, + * Tree-sitter will pick the subtree whose corresponding rule has the highest dynamic precedence. + */ + conflicts?: ($: Symbols) => Rule[][]; + /** + * An array of token names which can be returned by an external scanner. External scanners allow you to write + * custom C code which runs during the lexing process in order to handle lexical rules (e.g. Python's indentation + * tokens) that cannot be described by regular expressions. + */ + externals?: ($: Symbols) => Rule[]; + /** + * The definition of all rules that will be used to parse symbols in this language, except any rules that are + * defined in an external scanner. + */ + rules: Symbols; + }; + + /** + * Defines the language grammar based on the passed-in fields. + */ + function grammar(grammar: Grammar, options?: Partial): any; + + /** + * Causes the given rule to appear with an alternative name in the syntax tree. + * + * If {@code name} is a symbol itself, as in {@code alias($.foo, $.bar)}, then the aliased rule will appear as a + * named node called {@code bar}. If {@code name} is a string literal, at in {@code alias($.foo, 'bar')}, then the + * aliased rule will appear as an anonymous node, as if the rule had been written as the simple string. + */ + function alias(rule: Rule, name: Exclude): Rule; + /** + * Assigns a field name to the child nodes matched by a given rule. In the resulting syntax tree, you can then use + * that field name to access specific children. + */ + function field(name: string, rule: Rule): Rule; + /** + * Creates a rule that matches one of a set of possible rules. The order of the arguments does not matter. This is + * analogous to the | (pipe) operator in EBNF notation. + */ + function choice(...rules: Rule[]): Rule; + /** + * Creates a rule that matches zero or one occurrence of a given rule. It is analogous to the [x] (square bracket) + * syntax in EBNF notation. + */ + function optional(rule: Rule): Rule; + /** + * This function marks the given rule with a numerical precedence which will be used to resolve LR(1) Conflicts at + * parser-generation time. When two rules overlap in a way that represents either a true ambiguity or a local + * ambiguity given one token of lookahead, Tree-sitter will try to resolve the conflict by matching the rule with + * the higher precedence. The default precedence of all rules is zero. + */ + function prec(precedence: number, rule: Rule): Rule; + + module prec { + /** + * Marks the given rule as left-associative. When an LR(1) conflict arises in which all of the rules have the same + * numerical precedence, Tree-sitter will consult the rules’ associativity. If there is a left-associative rule, + * Tree-sitter will prefer matching a rule that ends earlier. + */ + function left(precedence: number, rule: Rule): Rule; + /** + * Marks the given rule as left-associative and applies a numerical precedence. When an LR(1) conflict arises in + * which all of the rules have the same numerical precedence, Tree-sitter will consult the rules’ associativity. + * If there is a left-associative rule, Tree-sitter will prefer matching a rule that ends earlier. + */ + function left(rule: Rule): Rule; + /** + * This function is like prec.left, but it instructs Tree-sitter to prefer matching a rule that ends later. + */ + function right(precedence: number, rule: Rule): Rule; + /** + * This function is like prec.left, but it instructs Tree-sitter to prefer matching a rule that ends later. + */ + function right(rule: Rule): Rule; + /** + * This function is similar to prec, but the given numerical precedence is applied at runtime instead of at parser + * generation time. This is only necessary when handling a conflict dynamically using the conflicts field in the + * grammar, and when there is a genuine ambiguity: multiple rules correctly match a given piece of code. In that + * event, Tree-sitter compares the total dynamic precedence associated with each rule, and selects the one with + * the highest total. + */ + function dynamic(precedence: number, rule: Rule): Rule; + } + /** + * Creates a rule that matches zero-or-more occurrences of a given rule. It is analogous to the {x} (curly brace) + * syntax in EBNF notation. + */ + function repeat(rule: Rule): Rule; + /** + * Creates a rule that matches one-or-more occurrences of a given rule. The previous repeat rule is implemented in + * terms of repeat1 but is included because it is very commonly used. + */ + function repeat1(rule: Rule): Rule; + /** + * Creates a rule that matches any number of other rules, one after another. It is analogous to simply writing + * multiple symbols next to each other in EBNF notation. + */ + function seq(...rules: Rule[]): Rule; + /** + * Marks the given rule as producing only a single token. Tree-sitter’s default is to treat each String or RegExp + * literal in the grammar as a separate token. Each token is matched separately by the lexer and returned as its own + * leaf node in the tree. The token function allows you to express a complex rule using the functions described + * above (rather than as a single regular expression) but still have Tree-sitter treat it as a single token. + */ + function token(rule: Rule): Rule; + + module token { + /** + * Usually, whitespace (and any other extras, such as comments) is optional before each token. This function means + * that the token will only match if there is no whitespace. + */ + function immediate(rule: Rule): Rule; + } + } +} From db7c243d23d4c9eb5816c5b34e07f3c93dba99df Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Thu, 30 Dec 2021 18:30:19 -0800 Subject: [PATCH 060/151] Overhaul precedences There are a few bugs with things that don't quite have the right precedence, like ranges and `try`. This commit reworks all of those to return what appear to be the correct results. This also reorganizes precedences to be a bit more friendly and, rather than dealing in integer values, just dealing in relative positions. Seeing at a glance that "try and ternary are both at the same position" is more immediately useful than seeing that they are at position X. Fixes #1 Fixes #3 --- corpus/expressions.txt | 103 ++++++++-- corpus/statements.txt | 16 +- grammar.ts | 419 +++++++++++++++++++++++++---------------- 3 files changed, 354 insertions(+), 184 deletions(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 79ae3f5bc..3df111cc1 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -105,6 +105,46 @@ someVeryLongFunctionCall() (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 @@ -409,15 +449,11 @@ let result: MyEnumType = condition ? .someEnumCase : .someOtherEnum (prefix_expression (simple_identifier))))) ====== -Range expression +Range expression in indexing ====== string[.. { + return it.map((exprType) => { + return [exprType, EXPR_PREC_START - index]; + }); + }) +) as PrecedenceMap; const DEC_DIGITS = token(sep1(/[0-9]+/, /_+/)); const HEX_DIGITS = token(sep1(/[0-9a-fA-F]+/, /_+/)); @@ -105,6 +126,19 @@ module.exports = grammar({ [$._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_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], ], extras: ($) => [ @@ -182,7 +216,7 @@ module.exports = grammar({ // Lexical Structure - https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html //////////////////////////////// - comment: ($) => token(prec(PREC.COMMENT, seq("//", /.*/))), + comment: ($) => token(prec(PRECS.comment, seq("//", /.*/))), // Identifiers @@ -295,10 +329,14 @@ module.exports = grammar({ seq($._type, optional(token.immediate("!"))), _type: ($) => - prec.right(seq(optional($.type_modifiers), $._unannotated_type)), + prec.right( + PRECS.ty, + seq(optional($.type_modifiers), $._unannotated_type) + ), _unannotated_type: ($) => prec.right( + PRECS.ty, choice( $.user_type, $.tuple_type, @@ -317,6 +355,7 @@ module.exports = grammar({ _simple_user_type: ($) => prec.right( + PRECS.ty, seq( alias($.simple_identifier, $.type_identifier), optional($.type_arguments) @@ -326,14 +365,20 @@ module.exports = grammar({ tuple_type: ($) => seq("(", optional(sep1($._tuple_type_item, ",")), ")"), _tuple_type_item: ($) => - seq( - optional($._tuple_type_item_identifier), - optional($.parameter_modifiers), - $._type + prec( + PRECS.expr, + seq( + optional($._tuple_type_item_identifier), + optional($.parameter_modifiers), + $._type + ) ), _tuple_type_item_identifier: ($) => - seq(optional($.wildcard_pattern), $.simple_identifier, ":"), + prec( + PRECS.expr, + seq(optional($.wildcard_pattern), $.simple_identifier, ":") + ), function_type: ($) => seq( @@ -376,14 +421,17 @@ module.exports = grammar({ //////////////////////////////// _expression: ($) => - choice( - $.simple_identifier, - $._unary_expression, - $._binary_expression, - $.ternary_expression, - $._primary_expression, - $.assignment, - seq($._expression, $._immediate_quest) + prec( + PRECS.expr, + choice( + $.simple_identifier, + $._unary_expression, + $._binary_expression, + $.ternary_expression, + $._primary_expression, + $.assignment, + seq($._expression, $._immediate_quest) + ) ), // Unary expressions @@ -402,24 +450,23 @@ module.exports = grammar({ ), postfix_expression: ($) => - prec.left(PREC.POSTFIX, seq($._expression, $._postfix_unary_operator)), - - call_expression: ($) => prec.left(seq($._expression, $.call_suffix)), + prec.left( + PRECS.postfix_operations, + seq($._expression, $._postfix_unary_operator) + ), constructor_expression: ($) => - prec.left( + prec( + PRECS.call, seq( choice($.array_type, $.dictionary_type, $.user_type), $.constructor_suffix ) ), - indexing_expression: ($) => - prec.left(PREC.POSTFIX, seq($._expression, $.indexing_suffix)), - navigation_expression: ($) => prec.left( - PREC.NAVIGATION, + PRECS.navigation, seq( choice($._navigable_type_expression, $._expression), $.navigation_suffix @@ -429,34 +476,34 @@ module.exports = grammar({ _navigable_type_expression: ($) => choice($.user_type, $.array_type, $.dictionary_type), - // XXX precedence for ranges isn't right open_start_range_expression: ($) => - prec.left( - PREC.RANGE, + prec.right( + PRECS.range, seq( choice($._open_ended_range_operator, $._three_dot_operator), - $._expression + prec.right(PRECS.range_suffix, $._expression) ) ), open_end_range_expression: ($) => - prec.left(PREC.RANGE, seq($._expression, $._three_dot_operator)), + prec.right(PRECS.range, seq($._expression, $._three_dot_operator)), prefix_expression: ($) => - prec.right(PREC.PREFIX, seq($._prefix_unary_operator, $._expression)), + prec.left( + PRECS.prefix_operations, + seq($._prefix_unary_operator, $._expression) + ), as_expression: ($) => - prec.left(seq($._expression, $._as_operator, $._type)), + prec.left(PRECS.as, seq($._expression, $._as_operator, $._type)), selector_expression: ($) => - prec.left( - seq( - "#selector", - "(", - optional(choice("getter:", "setter:")), - $._expression, - ")" - ) + seq( + "#selector", + "(", + optional(choice("getter:", "setter:")), + $._expression, + ")" ), // Binary expressions @@ -479,19 +526,19 @@ module.exports = grammar({ multiplicative_expression: ($) => prec.left( - PREC.MULTIPLICATIVE, + PRECS.multiplication, seq($._expression, $._multiplicative_operator, $._expression) ), additive_expression: ($) => prec.left( - PREC.ADDITIVE, + PRECS.addition, seq($._expression, $._additive_operator, $._expression) ), range_expression: ($) => - prec.left( - PREC.RANGE, + prec.right( + PRECS.range, seq( $._expression, choice($._open_ended_range_operator, $._three_dot_operator), @@ -501,37 +548,37 @@ module.exports = grammar({ infix_expression: ($) => prec.left( - PREC.INFIX, + PRECS.infix_operations, seq($._expression, $.custom_operator, $._expression) ), nil_coalescing_expression: ($) => - prec.left( - PREC.NIL_COALESCING, + prec.right( + PRECS.nil_coalescing, seq($._expression, $._nil_coalescing_operator, $._expression) ), check_expression: ($) => - prec.left(PREC.CHECK, seq($._expression, $._is_operator, $._type)), + prec.left(PRECS.check, seq($._expression, $._is_operator, $._type)), comparison_expression: ($) => prec.left(seq($._expression, $._comparison_operator, $._expression)), equality_expression: ($) => prec.left( - PREC.EQUALITY, + PRECS.equality, seq($._expression, $._equality_operator, $._expression) ), conjunction_expression: ($) => prec.left( - PREC.CONJUNCTION, + PRECS.conjunction, seq($._expression, $._conjunction_operator, $._expression) ), disjunction_expression: ($) => prec.left( - PREC.DISJUNCTION, + PRECS.disjunction, seq($._expression, $._disjunction_operator, $._expression) ), @@ -547,7 +594,7 @@ module.exports = grammar({ navigation_suffix: ($) => seq( $._navigation_operator, - choice($.simple_identifier, $.tuple_expression, $.integer_literal) + choice($.simple_identifier, $.integer_literal) ), // `!.` should just be the result of a postfix `!` before navigation, but it gets parsed as a @@ -555,31 +602,27 @@ module.exports = grammar({ _navigation_operator: ($) => choice($._dot_operator, "!."), call_suffix: ($) => - prec.left( + prec( + PRECS.call_suffix, seq( choice( $.value_arguments, - sep1($._annotated_lambda, seq($.simple_identifier, ":")) + sep1($.lambda_literal, seq($.simple_identifier, ":")) ) ) ), constructor_suffix: ($) => - prec.left( + prec( + PRECS.call_suffix, seq( choice( seq("(", optional(sep1($.value_argument, ",")), ")"), - $._annotated_lambda + $.lambda_literal ) ) ), - _annotated_lambda: ($) => - seq( - // repeat($.attribute), - $.lambda_literal - ), - type_arguments: ($) => prec.left(seq("<", sep1($._type, ","), ">")), value_arguments: ($) => @@ -601,16 +644,56 @@ module.exports = grammar({ ) ), + try_expression: ($) => + prec.right( + PRECS.try, + seq( + $._try_operator, + 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, $.call_expression), + // Similarly special case the ternary expression, where `try` may come earlier than it is actually needed. + prec.left(-1, $.ternary_expression) + ) + ) + ), + ternary_expression: ($) => - prec.left( - seq($._expression, $._quest, $._expression, ":", $._expression) + prec.right( + PRECS.ternary, + seq( + $._expression, + $._quest, + $._expression, + ":", + prec.left( + PRECS.ternary_suffix, + choice( + $._expression, + alias($.expr_hack_at_ternary_call, $.call_expression) + ) + ) + ) ), + expr_hack_at_ternary_call: ($) => + seq( + $._expression, + alias($.expr_hack_at_ternary_call_suffix, $.call_suffix) + ), + expr_hack_at_ternary_call_suffix: ($) => + prec(PRECS.call_suffix, $.value_arguments), + + call_expression: ($) => prec(PRECS.call, seq($._expression, $.call_suffix)), + _primary_expression: ($) => choice( $.tuple_expression, $._basic_literal, - $._function_literal, + $.lambda_literal, $._special_literal, $._playground_literal, $.array_literal, @@ -621,11 +704,15 @@ module.exports = grammar({ $._referenceable_operator, $.key_path_expression, $.key_path_string_expression, - alias($._three_dot_operator, $.fully_open_range) + prec.right( + PRECS.fully_open_range, + alias($._three_dot_operator, $.fully_open_range) + ) ), tuple_expression: ($) => - prec.left( + prec.right( + PRECS.tuple, seq( "(", sep1( @@ -669,11 +756,11 @@ module.exports = grammar({ ), lambda_literal: ($) => - prec( - PREC.LAMBDA_LITERAL, + prec.left( + PRECS.lambda, seq( "{", - optional($.capture_list), + prec(PRECS.expr, optional($.capture_list)), optional(seq(optional($.lambda_function_type), "in")), optional($.statements), "}" @@ -684,45 +771,50 @@ module.exports = grammar({ _capture_list_item: ($) => choice( - "self", - seq( - optional($.ownership_modifier), - $.simple_identifier, - optional(seq($._equal_sign, $._expression)) + $.self_expression, + prec( + PRECS.expr, + seq( + optional($.ownership_modifier), + $.simple_identifier, + optional(seq($._equal_sign, $._expression)) + ) ) ), lambda_function_type: ($) => - seq( - choice( - $.lambda_function_type_parameters, - seq("(", optional($.lambda_function_type_parameters), ")") - ), - optional($.throws_modifier), - optional(seq($._arrow_operator, $._possibly_implicitly_unwrapped_type)) + prec( + PRECS.expr, + seq( + choice( + $.lambda_function_type_parameters, + seq("(", optional($.lambda_function_type_parameters), ")") + ), + optional($.throws_modifier), + optional( + seq($._arrow_operator, $._possibly_implicitly_unwrapped_type) + ) + ) ), lambda_function_type_parameters: ($) => sep1($._lambda_parameter, ","), _lambda_parameter: ($) => - prec.left( - seq( - choice( - $.self_expression, + choice( + $.self_expression, + prec(PRECS.expr, $.simple_identifier), + prec( + PRECS.expr, + seq( + optional($.simple_identifier), $.simple_identifier, - seq( - optional($.simple_identifier), - $.simple_identifier, - ":", - optional($.parameter_modifiers), - $._possibly_implicitly_unwrapped_type - ) + ":", + optional($.parameter_modifiers), + $._possibly_implicitly_unwrapped_type ) ) ), - _function_literal: ($) => $.lambda_literal, - self_expression: ($) => "self", super_expression: ($) => seq("super"), @@ -731,25 +823,24 @@ module.exports = grammar({ if_statement: ($) => prec.right( + PRECS.if, seq( "if", - sep1(prec.left($._if_condition_sequence_item), ","), - choice($._block, seq($._block, $._else, $._else_options)) + sep1($._if_condition_sequence_item, ","), + $._block, + optional(seq($._else, $._else_options)) ) ), _if_condition_sequence_item: ($) => - prec.left( - choice($._if_let_binding, $._expression, $.availability_condition) - ), + choice($._if_let_binding, $._expression, $.availability_condition), _if_let_binding: ($) => - prec.left( - seq($._direct_or_indirect_binding, $._equal_sign, $._expression) - ), + seq($._direct_or_indirect_binding, $._equal_sign, $._expression), guard_statement: ($) => prec.right( + PRECS.if, seq( "guard", sep1(prec.left($._if_condition_sequence_item), ","), @@ -759,7 +850,10 @@ module.exports = grammar({ ), switch_statement: ($) => - seq("switch", $._expression, "{", repeat($.switch_entry), "}"), + prec.right( + PRECS.switch, + seq("switch", $._expression, "{", repeat($.switch_entry), "}") + ), switch_entry: ($) => seq( @@ -782,7 +876,8 @@ module.exports = grammar({ switch_pattern: ($) => generate_pattern_matching_rule($, true, false, true), - do_statement: ($) => seq("do", $._block, repeat($.catch_block)), + do_statement: ($) => + prec.right(PRECS.do, seq("do", $._block, repeat($.catch_block))), catch_block: ($) => seq( @@ -794,17 +889,9 @@ module.exports = grammar({ where_clause: ($) => prec.left(seq($._where_keyword, $._expression)), - try_expression: ($) => - prec.left( - seq( - // XXX associativity or precedence seems wrong here - $._try_operator, - $._expression - ) - ), - key_path_expression: ($) => - prec.left( + prec.right( + PRECS.keypath, seq( "\\", optional( @@ -884,6 +971,7 @@ module.exports = grammar({ statements: ($) => prec.left( + // Left precedence is required in switch statements seq( $._local_statement, repeat(seq($._semi, $._local_statement)), @@ -907,7 +995,7 @@ module.exports = grammar({ $._throw_statement ), - _block: ($) => prec(PREC.BLOCK, seq("{", optional($.statements), "}")), + _block: ($) => prec(PRECS.block, seq("{", optional($.statements), "}")), _labeled_statement: ($) => seq( @@ -926,7 +1014,8 @@ module.exports = grammar({ statement_label: ($) => token(/[a-zA-Z_][a-zA-Z_0-9]*:/), for_statement: ($) => - prec.right( + prec( + PRECS.loop, seq( "for", generate_pattern_matching_rule($, true, true, false), @@ -939,16 +1028,20 @@ module.exports = grammar({ ), while_statement: ($) => - seq( - "while", - sep1(prec.left($._if_condition_sequence_item), ","), - "{", - optional($.statements), - "}" + prec( + PRECS.loop, + seq( + "while", + sep1(prec.left($._if_condition_sequence_item), ","), + "{", + optional($.statements), + "}" + ) ), repeat_while_statement: ($) => - prec.right( + prec( + PRECS.loop, seq( "repeat", "{", @@ -961,8 +1054,11 @@ module.exports = grammar({ control_transfer_statement: ($) => choice( - prec.right($._throw_statement), - prec.right(seq($._return_continue_break, optional($._expression))) + prec.right(PRECS.control_transfer, $._throw_statement), + prec.right( + PRECS.control_transfer, + seq($._return_continue_break, optional($._expression)) + ) ), _throw_statement: ($) => seq($.throw_keyword, $._expression), @@ -972,7 +1068,7 @@ module.exports = grammar({ assignment: ($) => prec.left( - PREC.ASSIGNMENT, + PRECS.assignment, seq( $.directly_assignable_expression, $._assignment_and_operator, @@ -1292,25 +1388,20 @@ module.exports = grammar({ seq("{", repeat(choice($.enum_entry, $._type_level_declaration)), "}"), enum_entry: ($) => - prec.left( - seq( - optional($.modifiers), - optional("indirect"), - "case", - sep1( - seq( - $.simple_identifier, - optional( - choice( - $.enum_type_parameters, - seq($._equal_sign, $._expression) - ) - ) - ), - "," + seq( + optional($.modifiers), + optional("indirect"), + "case", + sep1( + seq( + $.simple_identifier, + optional( + choice($.enum_type_parameters, seq($._equal_sign, $._expression)) + ) ), - optional(";") - ) + "," + ), + optional(";") ), enum_type_parameters: ($) => @@ -1589,7 +1680,7 @@ module.exports = grammar({ directive: ($) => token( prec( - PREC.COMMENT, + PRECS.comment, choice( seq("#if", /.*/), seq("#elseif", /.*/), @@ -1603,7 +1694,7 @@ module.exports = grammar({ diagnostic: ($) => token( prec( - PREC.COMMENT, + 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. From 8245cb27bf6edf1b413c5cb06e5e877f82a7a7e9 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Thu, 30 Dec 2021 20:43:43 -0800 Subject: [PATCH 061/151] Improve computed property support Computed modify declarations are an unofficial feature in Swift 5.0 that make it possible to obtain a mutable reference to an underlying value using a yield-once coroutine. This also requires us to add the `yield` control-transfer keyword. We don't do anything special, just treat it like a return. This (along with a minor fix allowing attributes on computed properties) lets us parse AudioKit without error, so we add that as a top repository too. --- .github/workflows/top-repos.yml | 2 +- README.md | 8 +-- corpus/classes.txt | 88 ++++++++++++++++++++++++++++++++ grammar.ts | 32 ++++++++++-- script-data/top-repositories.txt | 1 + 5 files changed, 118 insertions(+), 13 deletions(-) diff --git a/.github/workflows/top-repos.yml b/.github/workflows/top-repos.yml index bc17f09ab..9b1340c62 100644 --- a/.github/workflows/top-repos.yml +++ b/.github/workflows/top-repos.yml @@ -11,7 +11,7 @@ jobs: 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] + 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] steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index 3874d95b2..463ccf547 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,7 @@ # experimental-tree-sitter-swift This contains an experimental [`tree-sitter`](https://tree-sitter.github.io/tree-sitter) grammar for the Swift -programming language. The grammar can generate a parser that is able to parse most basic Swift code. - -There are some known correctness issues in code that the generated parser claims to successfully parse, which are found -under the label [ast-incorrect](https://github.com/alex-pinkus/experimental-tree-sitter-swift/labels/ast-incorrect). The -parser was built with a priority on _generating an AST without errors_, with the correctness of the syntax tree taking -second priority. If you'd like to use it for your use cases, and the correctness issues prevent you from doing so, pull -requests are welcomed. +programming language. ## Getting started diff --git a/corpus/classes.txt b/corpus/classes.txt index 0629700ee..e30c6b1d7 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -960,3 +960,91 @@ let result = greet("me") as P1 & P2 (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)) + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (type_annotation + (user_type + (type_identifier)))) + (property_declaration + (modifiers + (visibility_modifier)) + (value_binding_pattern + (non_binding_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)) + (value_binding_pattern + (non_binding_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)))))) diff --git a/grammar.ts b/grammar.ts index c41d4a5bd..b61f96e57 100644 --- a/grammar.ts +++ b/grammar.ts @@ -139,6 +139,18 @@ module.exports = grammar({ // all the options and pick the best one that doesn't error out. [$.try_expression, $._unary_expression], [$.try_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, + ], ], extras: ($) => [ @@ -1057,14 +1069,15 @@ module.exports = grammar({ prec.right(PRECS.control_transfer, $._throw_statement), prec.right( PRECS.control_transfer, - seq($._return_continue_break, optional($._expression)) + seq($._optionally_valueful_control_keyword, optional($._expression)) ) ), _throw_statement: ($) => seq($.throw_keyword, $._expression), throw_keyword: ($) => "throw", - _return_continue_break: ($) => choice("return", "continue", "break"), + _optionally_valueful_control_keyword: ($) => + choice("return", "continue", "break", "yield"), assignment: ($) => prec.left( @@ -1471,7 +1484,9 @@ module.exports = grammar({ "{", choice( optional($.statements), - repeat(choice($.computed_getter, $.computed_setter)) + repeat( + choice($.computed_getter, $.computed_setter, $.computed_modify) + ) ), "}" ) @@ -1482,15 +1497,21 @@ module.exports = grammar({ "{", choice( optional($.statements), - repeat(choice($.computed_getter, $.computed_setter)) + repeat( + choice($.computed_getter, $.computed_setter, $.computed_modify) + ) ), "}" ), - computed_getter: ($) => seq($.getter_specifier, optional($._block)), + 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) @@ -1498,6 +1519,7 @@ module.exports = grammar({ getter_specifier: ($) => seq(optional($.mutation_modifier), "get"), setter_specifier: ($) => seq(optional($.mutation_modifier), "set"), + modify_specifier: ($) => seq(optional($.mutation_modifier), "_modify"), operator_declaration: ($) => seq( diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 7ff1b6534..564e02755 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -33,3 +33,4 @@ 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.3.0 From b355069d4829c1c20432b506fc452d079bbe0c48 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Fri, 31 Dec 2021 10:06:24 -0800 Subject: [PATCH 062/151] Fix inconsistent conflict resolution for `try` and ternary In most places in the grammar, we rely on our conflicts resolving themselves with only one parse interpretation being valid. With `try` and ternary, that isn't the case: both of `try (foo() ? bar() : baz)` and `(try foo()) ? bar() : baz` are valid. This matters because `bar()` could also be a `throws` function, and our `try` is supposed to cover it. The rules for dynamic precedence are described here: https://github.com/tree-sitter/tree-sitter/issues/678 Based on those, it seems like we were getting the correct parse result in our test cases solely because of some rule definition order, which "isn't really meant to be relied on." This exposes itself in some unrelated changes for a custom string interpolation (not included in this PR) where the rule order changes and flips our interpretation to the wrong one. Instead of relying on the ordering behavior, this change tells the parser to choose `try (foo() ? ...)` over `(try foo()) ? ...` by giving it a dynamic precedence value. This makes our ordering consistent even in the face of later rule changes. --- grammar.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/grammar.ts b/grammar.ts index b61f96e57..2367cae3a 100644 --- a/grammar.ts +++ b/grammar.ts @@ -668,7 +668,11 @@ module.exports = grammar({ prec.right(-2, $._expression), prec.left(0, $.call_expression), // Similarly special case the ternary expression, where `try` may come earlier than it is actually needed. - prec.left(-1, $.ternary_expression) + // 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)) ) ) ), From c3c35ace8f3c678b3abd19c4e331a2aab514e60d Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Fri, 31 Dec 2021 10:26:14 -0800 Subject: [PATCH 063/151] Add support for custom interpolation syntax Swift has a magical syntax for string interpolation that involves special `appendInterpolation` functions and causes the interpolation to look like a value argument. This adds support for that. --- corpus/literals.txt | 32 ++++++++++++++++++++++++++------ grammar.ts | 8 +++++--- 2 files changed, 31 insertions(+), 9 deletions(-) diff --git a/corpus/literals.txt b/corpus/literals.txt index c639c942b..5825990f3 100755 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -63,6 +63,20 @@ Multiline (interpolated_expression (multi_line_string_literal))) (line_string_literal) (multi_line_string_literal) (comment)) +================== +Custom interpolation +================== +"Hi, I'm \(format: age)" + +--- + +(source_file + (line_string_literal + (interpolated_expression + (simple_identifier) + (simple_identifier)))) + + ================== Strings with newline escaping ================== @@ -233,11 +247,13 @@ extension URL { (raw_str_part) (raw_str_interpolation (raw_str_interpolation_start) - (simple_identifier)) + (interpolated_expression + (simple_identifier))) (raw_str_part) (raw_str_interpolation (raw_str_interpolation_start) - (simple_identifier)) + (interpolated_expression + (simple_identifier))) (raw_str_end_part))))))))) ================== @@ -262,7 +278,8 @@ let _ = ##"\##(a)\#(b)\##(c)\#(d)"# ##"## (raw_str_part) (raw_str_interpolation (raw_str_interpolation_start) - (simple_identifier) + (interpolated_expression + (simple_identifier)) (multiline_comment)) (raw_str_end_part)))))) (property_declaration @@ -273,7 +290,8 @@ let _ = ##"\##(a)\#(b)\##(c)\#(d)"# ##"## (raw_str_part) (raw_str_interpolation (raw_str_interpolation_start) - (simple_identifier)) + (interpolated_expression + (simple_identifier))) (raw_str_end_part))) (property_declaration (value_binding_pattern @@ -289,11 +307,13 @@ let _ = ##"\##(a)\#(b)\##(c)\#(d)"# ##"## (raw_str_part) (raw_str_interpolation (raw_str_interpolation_start) - (simple_identifier)) + (interpolated_expression + (simple_identifier))) (raw_str_part) (raw_str_interpolation (raw_str_interpolation_start) - (simple_identifier)) + (interpolated_expression + (simple_identifier))) (raw_str_end_part)))) === diff --git a/grammar.ts b/grammar.ts index 2367cae3a..49cca96f3 100644 --- a/grammar.ts +++ b/grammar.ts @@ -317,15 +317,17 @@ module.exports = grammar({ ), raw_str_interpolation: ($) => - seq($.raw_str_interpolation_start, $._expression, ")"), + seq($.raw_str_interpolation_start, $._interpolation_contents, ")"), raw_str_interpolation_start: ($) => /\\#*\(/, _multi_line_string_content: ($) => choice($._multi_line_str_text, $._escaped_identifier, '"'), - _interpolation: ($) => - seq("\\(", alias($._expression, $.interpolated_expression), ")"), + _interpolation: ($) => seq("\\(", $._interpolation_contents, ")"), + + _interpolation_contents: ($) => + sep1(alias($.value_argument, $.interpolated_expression), ","), _escaped_identifier: ($) => /\\[0\\tnr"'\n]/, From dffa55155526331374b0867d9e6b6a3ae1bb1d6f Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Fri, 31 Dec 2021 10:39:53 -0800 Subject: [PATCH 064/151] Add `async` / `await` Allows async in function declarations and type signatures. `async` must always come before `throws`. This keyword also has to go in the semi suppressor for the same reason `throws` and `rethrows` are there. Also allows `await` before any expression. Gives it the same special behavior that `try` gets, where it has an affinity for function calls and ternary operators, but can be placed before any expression. Special cases the `for try await` syntax that Swift added for async sequences. That doesn't appear to have made it into the grammar yet. Usage makes it seem like it must be either `for await` or `for try await`, not permiting just `for try` alone, but without an official reference it seems best to simply allow `for try`. --- corpus/expressions.txt | 76 ++++++++++++++++++++++++++++++++++++++++++ corpus/functions.txt | 29 ++++++++++++++++ grammar.ts | 37 +++++++++++++++++++- src/scanner.c | 14 +++++--- 4 files changed, 150 insertions(+), 6 deletions(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 3df111cc1..9cee9d90b 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -803,3 +803,79 @@ try foo() ? 1 : 0 (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 + (simple_identifier) + (simple_identifier) + (statements + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (simple_identifier)))))))) diff --git a/corpus/functions.txt b/corpus/functions.txt index d073959a9..03f72442f 100755 --- a/corpus/functions.txt +++ b/corpus/functions.txt @@ -307,6 +307,35 @@ func iCanDoBetter() (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) + (async_modifier) + (user_type (type_identifier)) + (function_body + (statements + (control_transfer_statement (prefix_expression (integer_literal)))))) + (function_declaration + (simple_identifier) + (async_modifier) + (throws_modifier) + (user_type (type_identifier)) + (function_body + (statements + (control_transfer_statement (prefix_expression (integer_literal))))))) + ================== Higher-order functions - pt 1 diff --git a/grammar.ts b/grammar.ts index 49cca96f3..6f0320684 100644 --- a/grammar.ts +++ b/grammar.ts @@ -48,7 +48,15 @@ const EXPRESSION_PREC_LIST = [ "expr", "ty", ], - ["call", "ternary", "try", "call_suffix", "range_suffix", "ternary_suffix"], + [ + "call", + "ternary", + "try", + "call_suffix", + "range_suffix", + "ternary_suffix", + "await", + ], ["assignment", "comment", "lambda"], ] as const; @@ -140,6 +148,10 @@ module.exports = grammar({ [$.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. [ @@ -209,6 +221,7 @@ module.exports = grammar({ $._as, $._as_quest, $._as_bang, + $.async_modifier, ], rules: { @@ -397,6 +410,7 @@ module.exports = grammar({ function_type: ($) => seq( $.tuple_type, + optional($.async_modifier), optional($.throws_modifier), $._arrow_operator, $._type @@ -679,6 +693,22 @@ module.exports = grammar({ ) ), + await_expression: ($) => + prec.right( + PRECS.await, + seq( + $._await_operator, + 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: ($) => "await", + ternary_expression: ($) => prec.right( PRECS.ternary, @@ -719,6 +749,7 @@ module.exports = grammar({ $.self_expression, $.super_expression, $.try_expression, + $.await_expression, $._referenceable_operator, $.key_path_expression, $.key_path_string_expression, @@ -808,6 +839,7 @@ module.exports = grammar({ $.lambda_function_type_parameters, seq("(", optional($.lambda_function_type_parameters), ")") ), + optional($.async_modifier), optional($.throws_modifier), optional( seq($._arrow_operator, $._possibly_implicitly_unwrapped_type) @@ -1036,6 +1068,8 @@ module.exports = grammar({ PRECS.loop, seq( "for", + optional($._try_operator), + optional($._await_operator), generate_pattern_matching_rule($, true, true, false), optional($.type_annotation), "in", @@ -1269,6 +1303,7 @@ module.exports = grammar({ ), optional($.type_parameters), $._function_value_parameters, + optional($.async_modifier), optional($.throws_modifier), optional( seq($._arrow_operator, $._possibly_implicitly_unwrapped_type) diff --git a/src/scanner.c b/src/scanner.c index 0c3f379f8..ff19bc736 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -26,10 +26,11 @@ enum TokenType { CATCH_KEYWORD, AS_KEYWORD, AS_QUEST, - AS_BANG + AS_BANG, + ASYNC_KEYWORD }; -#define CROSS_SEMI_OPERATOR_COUNT 20 +#define CROSS_SEMI_OPERATOR_COUNT 21 const char* CROSS_SEMI_OPERATORS[CROSS_SEMI_OPERATOR_COUNT] = { "->", @@ -51,7 +52,8 @@ const char* CROSS_SEMI_OPERATORS[CROSS_SEMI_OPERATOR_COUNT] = { "catch", "as", "as?", - "as!" + "as!", + "async" }; enum IllegalTerminatorGroup { @@ -81,7 +83,8 @@ const enum IllegalTerminatorGroup CROSS_SEMI_ILLEGAL_TERMINATORS[CROSS_SEMI_OPER ALPHANUMERIC, // catch ALPHANUMERIC, // as OPERATOR_SYMBOLS, // as? - OPERATOR_SYMBOLS // as! + OPERATOR_SYMBOLS, // as! + ALPHANUMERIC // async }; const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { @@ -104,7 +107,8 @@ const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { CATCH_KEYWORD, AS_KEYWORD, AS_QUEST, - AS_BANG + AS_BANG, + ASYNC_KEYWORD }; #define NON_CONSUMING_CROSS_SEMI_CHAR_COUNT 3 From 530a3ce46da83c9fbb449b2d079fed220662e687 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Fri, 31 Dec 2021 11:06:23 -0800 Subject: [PATCH 065/151] Support attributes within lambda literals It's not clear how exactly these are legal, since they aren't called out in the grammar. However, GRDB uses them in code that ostensibly compiles. The grammar assumes that the attributes apply directly to a capture list (and can only exist if the capture list does). This has the same ambiguity that attributes in computed properties do, since it comes before a block of statements (which might be local declarations). --- corpus/functions.txt | 8 ++++++-- grammar.ts | 11 ++++++++++- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/corpus/functions.txt b/corpus/functions.txt index 03f72442f..abd2daf1a 100755 --- a/corpus/functions.txt +++ b/corpus/functions.txt @@ -429,7 +429,7 @@ test { (a: inout Int) in } Higher-order functions - pt 6 ================== -test { [weak self, otherSelf] (a) in } +test { @Special [weak self, otherSelf] (a) in } --- (source_file @@ -437,7 +437,11 @@ test { [weak self, otherSelf] (a) in } (simple_identifier) (call_suffix (lambda_literal - (capture_list (ownership_modifier) (simple_identifier) (simple_identifier)) + (capture_list + (attribute (user_type (type_identifier))) + (ownership_modifier) + (simple_identifier) + (simple_identifier)) (lambda_function_type (lambda_function_type_parameters (simple_identifier))))))) ================== diff --git a/grammar.ts b/grammar.ts index 6f0320684..359350cf7 100644 --- a/grammar.ts +++ b/grammar.ts @@ -163,6 +163,14 @@ module.exports = grammar({ $.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, + ], ], extras: ($) => [ @@ -816,7 +824,8 @@ module.exports = grammar({ ) ), - capture_list: ($) => seq("[", sep1($._capture_list_item, ","), "]"), + capture_list: ($) => + seq(repeat($.attribute), "[", sep1($._capture_list_item, ","), "]"), _capture_list_item: ($) => choice( From 4a94dfa40c49da93d30fb5ad5eb99c6094668aa1 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Fri, 31 Dec 2021 11:54:36 -0800 Subject: [PATCH 066/151] Support annotated inheritance specifiers Clearly these were intended to be supported at one point but I never hooked them up. There's already an `_annotated_inheritance_specifier` rules, but it's just unused. --- corpus/classes.txt | 21 +++++++++++++++++++++ grammar.ts | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/corpus/classes.txt b/corpus/classes.txt index e30c6b1d7..f9a74deb6 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -1048,3 +1048,24 @@ public var someVar: String { (getter_specifier) (statements (line_string_literal)))))) + +=== +Annotations on inheritance +=== + +extension TrustMe: @unchecked Sendable { } + +--- + +(source_file + (class_declaration + (identifier + (simple_identifier)) + (attribute + (user_type + (type_identifier))) + (inheritance_specifier + (user_type + (type_identifier))) + (class_body))) + diff --git a/grammar.ts b/grammar.ts index 359350cf7..e46f2eeef 100644 --- a/grammar.ts +++ b/grammar.ts @@ -1360,7 +1360,7 @@ module.exports = grammar({ class_body: ($) => seq("{", optional($._class_member_declarations), "}"), _inheritance_specifiers: ($) => - prec.left(sep1($.inheritance_specifier, choice(",", "&"))), + prec.left(sep1($._annotated_inheritance_specifier, choice(",", "&"))), inheritance_specifier: ($) => prec.left(choice($.user_type, $.function_type)), From 094c17380310fc3af2bbd76bb2ec3ebf264afbce Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Fri, 31 Dec 2021 11:30:19 -0800 Subject: [PATCH 067/151] Allow a few more built-in operators to be overloaded Adds all the prefix unary operators that aren't either already present, or the dot operator. --- corpus/functions.txt | 19 ++++++++++++++++++- grammar.ts | 6 +++++- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/corpus/functions.txt b/corpus/functions.txt index abd2daf1a..12123c260 100755 --- a/corpus/functions.txt +++ b/corpus/functions.txt @@ -198,6 +198,10 @@ public func ??(optional: Expression, defaultValue: V) -> Expressi return Expression(optional.inner() ?? defaultValue) } +public prefix func ! (value: Wrapped) -> Bool { + return false +} + --- (source_file @@ -236,7 +240,20 @@ public func ??(optional: Expression, defaultValue: V) -> Expressi (simple_identifier) (navigation_suffix (simple_identifier))) (call_suffix (value_arguments))) - (simple_identifier))))))))))) + (simple_identifier)))))))))) + (function_declaration + (modifiers (visibility_modifier) (function_modifier)) + (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 diff --git a/grammar.ts b/grammar.ts index e46f2eeef..21a3397c0 100644 --- a/grammar.ts +++ b/grammar.ts @@ -1442,7 +1442,11 @@ module.exports = grammar({ $._additive_operator, $._multiplicative_operator, $._equality_operator, - $._comparison_operator + $._comparison_operator, + "++", + "--", + "!", + "~" ), throws_modifier: ($) => choice($._throws_keyword, $._rethrows_keyword), From aa3df1c75f7603eefcc83ee7c6aba8c611e06b04 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Fri, 31 Dec 2021 12:07:04 -0800 Subject: [PATCH 068/151] Allow a class to be defined on one line Allows the final `_semi` (whether it's a real one or implied by whitespace) to be omitted if a caller desires. --- corpus/classes.txt | 42 ++++++++++++++++++++++++++++++++++++++++++ grammar.ts | 4 ++-- 2 files changed, 44 insertions(+), 2 deletions(-) diff --git a/corpus/classes.txt b/corpus/classes.txt index f9a74deb6..8a296257e 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -364,6 +364,48 @@ class SomethingElse: ThingProvider { (statements (call_expression (simple_identifier) (call_suffix (value_arguments))))) (control_transfer_statement (simple_identifier))))) (function_declaration (simple_identifier) (function_body))))) + +=== +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 + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (type_annotation + (user_type + (type_identifier))) + (line_string_literal)))) + (class_declaration + (type_identifier) + (class_body + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (type_annotation + (user_type + (type_identifier))) + (line_string_literal)) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (type_annotation + (user_type + (type_identifier))) + (line_string_literal))))) + === Protocol composition types === diff --git a/grammar.ts b/grammar.ts index 21a3397c0..75dab38b3 100644 --- a/grammar.ts +++ b/grammar.ts @@ -1400,7 +1400,7 @@ module.exports = grammar({ ), _class_member_declarations: ($) => - repeat1(seq($._type_level_declaration, $._semi)), + seq(sep1($._type_level_declaration, $._semi), optional($._semi)), _function_value_parameters: ($) => seq("(", optional(sep1($._function_value_parameter, ",")), ")"), @@ -1506,7 +1506,7 @@ module.exports = grammar({ seq("{", optional($._protocol_member_declarations), "}"), _protocol_member_declarations: ($) => - repeat1(seq($._protocol_member_declaration, $._semi)), + seq(sep1($._protocol_member_declaration, $._semi), optional($._semi)), _protocol_member_declaration: ($) => choice( From fb5da3e763e4c4ffd8bc9f97b0dabe73ee92dfc6 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Fri, 31 Dec 2021 12:30:54 -0800 Subject: [PATCH 069/151] Add a few more top-repos Bringing in some of the other repositories on the trending list that have 5-7k stars each: * Starscream * MessageKit * Swinject * GRDB --- .github/workflows/top-repos.yml | 2 +- script-data/known_failures.txt | 2 ++ script-data/top-repositories.txt | 5 +++++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/top-repos.yml b/.github/workflows/top-repos.yml index 9b1340c62..3e29e7ad6 100644 --- a/.github/workflows/top-repos.yml +++ b/.github/workflows/top-repos.yml @@ -11,7 +11,7 @@ jobs: 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] + 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] steps: - uses: actions/checkout@v2 diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index fe30540ce..f3a9171c5 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -2,3 +2,5 @@ firefox-ios/Shared/Functions.swift RxSwift/RxExample/RxExample/Examples/GitHubSearchRepositories/GitHubSearchRepositories.swift RxSwift/Rx.playground/Pages/Transforming_Operators.xcplaygroundpage/Contents.swift SwiftLint/Source/SwiftLintFramework/Extensions/String+SwiftLint.swift +GRDB/GRDB/Core/Row.swift +GRDB/GRDB/Core/Statement.swift diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 564e02755..8c48e4dac 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -34,3 +34,8 @@ 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.3.0 +Starscream daltoniam/Starscream 4.0.4 +MessageKit MessageKit/MessageKit 3.7.0 +Swinject Swinject/Swinject 2.8.1 +GRDB groue/GRDB.swift v5.17.0 0 2 +GRDB groue/GRDB.swift v5.17.0 1 2 From efc9d5e5400e62f9d2463c087c29afbfa42639af Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Fri, 31 Dec 2021 13:46:44 -0800 Subject: [PATCH 070/151] Allow declarations that start with a multiline comment The semi-suppressor is a little too aggressive: if it sees something like: ``` class Foo { let property1: String /* visible for testing */ var property2: String } ``` It will suppress the newlines before `property2` and cause compilation to fail. If the comment were on its own line, it would be fine, because there's still another semi in the way. The best way to fix this seems to be to allow multiline comments themselves to count as separators. --- corpus/classes.txt | 7 ++++++- grammar.ts | 6 +++++- script-data/known_failures.txt | 1 - 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/corpus/classes.txt b/corpus/classes.txt index 8a296257e..42a13c88a 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -45,6 +45,8 @@ Class with methods and expressions ================== class Strings { + /// Some awesome docummentation! + /// Yay func aString() -> String { return "Hello World!" } func anotherString() -> String { return "Hello" + " " + "World" } @@ -55,6 +57,8 @@ class Strings { (source_file (class_declaration (type_identifier) (class_body + (comment) + (comment) (function_declaration (simple_identifier) (user_type (type_identifier)) @@ -77,7 +81,7 @@ Class with modifiers internal open class Test { private(set) var isRunning: Bool internal(set) var isFailed: Bool - private final func test() { } + /* some comment */ private final func test() { } } --- @@ -95,6 +99,7 @@ internal open class Test { (modifiers (visibility_modifier)) (value_binding_pattern (non_binding_pattern (simple_identifier))) (type_annotation (user_type (type_identifier)))) + (multiline_comment) (function_declaration (modifiers (visibility_modifier) (inheritance_modifier)) (simple_identifier) diff --git a/grammar.ts b/grammar.ts index 75dab38b3..eedcc992e 100644 --- a/grammar.ts +++ b/grammar.ts @@ -1399,8 +1399,12 @@ module.exports = grammar({ $._type ), + _class_member_separator: ($) => choice($._semi, $.multiline_comment), _class_member_declarations: ($) => - seq(sep1($._type_level_declaration, $._semi), optional($._semi)), + seq( + sep1($._type_level_declaration, $._class_member_separator), + optional($._class_member_separator) + ), _function_value_parameters: ($) => seq("(", optional(sep1($._function_value_parameter, ",")), ")"), diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index f3a9171c5..8bc0717df 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -3,4 +3,3 @@ RxSwift/RxExample/RxExample/Examples/GitHubSearchRepositories/GitHubSearchReposi RxSwift/Rx.playground/Pages/Transforming_Operators.xcplaygroundpage/Contents.swift SwiftLint/Source/SwiftLintFramework/Extensions/String+SwiftLint.swift GRDB/GRDB/Core/Row.swift -GRDB/GRDB/Core/Statement.swift From d3ccefd531c45d45ad9717960991adfd2db37c14 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Fri, 31 Dec 2021 14:54:43 -0800 Subject: [PATCH 071/151] Add a badge for parse rate This uses the Bring Your Own Badge github action, running a script to count the number of swift files and generate a percent based on the count of files in `known_failures`. This script only runs once the top-repos job has completed, successfully, on a code push, so all it needs to do is compare `known_failures` against the number of Swift files in the repos. --- .github/workflows/top-repos.yml | 16 +++++++++++++++ README.md | 2 ++ scripts/calculate-parse-rate.sh | 20 +++++++++++++++++++ scripts/common.sh | 35 +++++++++++++++++++++++++++++++++ scripts/top-repos.sh | 32 +++++++----------------------- 5 files changed, 80 insertions(+), 25 deletions(-) create mode 100755 scripts/calculate-parse-rate.sh create mode 100755 scripts/common.sh diff --git a/.github/workflows/top-repos.yml b/.github/workflows/top-repos.yml index 3e29e7ad6..cb79d2c9d 100644 --- a/.github/workflows/top-repos.yml +++ b/.github/workflows/top-repos.yml @@ -22,3 +22,19 @@ jobs: 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/README.md b/README.md index 463ccf547..c8644ff3d 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +![Parse rate badge](https://byob.yarr.is/alex-pinkus/experimental-tree-sitter-swift/parse_rate) + # experimental-tree-sitter-swift This contains an experimental [`tree-sitter`](https://tree-sitter.github.io/tree-sitter) grammar for the Swift diff --git a/scripts/calculate-parse-rate.sh b/scripts/calculate-parse-rate.sh new file mode 100755 index 000000000..8cbe61835 --- /dev/null +++ b/scripts/calculate-parse-rate.sh @@ -0,0 +1,20 @@ +#!/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/scripts/common.sh b/scripts/common.sh new file mode 100755 index 000000000..8acb08e6d --- /dev/null +++ b/scripts/common.sh @@ -0,0 +1,35 @@ +#!/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/scripts/top-repos.sh b/scripts/top-repos.sh index 13a57b390..3cb4962b2 100755 --- a/scripts/top-repos.sh +++ b/scripts/top-repos.sh @@ -3,36 +3,17 @@ set -e parser_dir="$(pwd)" -known_failures="$parser_dir/script-data/known_failures.txt" + +. $parser_dir/scripts/common.sh + if [ -z "$1" ]; then - repos=$(cat $parser_dir/script-data/top-repositories.txt) + repos=$(cat $top_repositories) echo "Running on all top repositories." else - repos=$(sed "$1q;d" $parser_dir/script-data/top-repositories.txt) + repos=$(sed "$1q;d" $top_repositories) echo "Running on single repository $repos." fi -# 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 - - echo "Cloned repository into $(pwd)/$repo" - 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 @@ -50,7 +31,7 @@ function validate() { # Find the start and end of this section based on the passed-in `part` and `total`. all_files=$data_dir/all_files.txt - find "$tmpdir/$repo" -name *.swift -not -path '*/Pods/*' > $all_files + swift_files_under "$tmpdir/$repo" > $all_files file_count=$(wc -l < $all_files | tr -d ' ') one_past_the_end=$((file_count + 1)) @@ -98,6 +79,7 @@ fi while read line ; do cd $tmpdir checkout $line + cd $parser_dir if [ -z "$1" ]; then validate $line & From b2ac12305576a9c9323d725706c42e0821dd0c62 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Fri, 31 Dec 2021 16:10:27 -0800 Subject: [PATCH 072/151] Use the custom scanner to split ! from . So far, we've tolerated the parser treating `!.` as one operator when it should really be two. This changes that behavior so that we better match the actual semantics of `!.`, which is a bang-operator followed by navigation. We do this by adding `!` to the custom scanner, but this also requires us to generalize the custom scanner's operators and indicate that they are not all cross-semi operators. That's because `!` at the start of a line is valid (although it will usually result in a warning) - it gives us a standalone expression that negates what comes after the `!`. --- corpus/expressions.txt | 53 ++++++++++++++++++++++++++++++++++-- grammar.ts | 20 +++++--------- src/scanner.c | 62 ++++++++++++++++++++++++++++++++---------- 3 files changed, 105 insertions(+), 30 deletions(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 9cee9d90b..4f1a0acd2 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -490,6 +490,33 @@ for i in 0 ..< something.count { (navigation_suffix (simple_identifier)))) (comment))) +=== +Range with force unwrapped contents +=== + +_ = contents[Int(prefix)!...] + +--- + +(source_file + (assignment + (directly_assignable_expression + (simple_identifier)) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (open_end_range_expression + (postfix_expression + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (simple_identifier))))))))))))) + + ============ Split nullable navigation expression ============ @@ -677,10 +704,11 @@ print(thing.maybeGreeting!.definitely) (value_arguments (value_argument (navigation_expression - (navigation_expression - (simple_identifier) + (postfix_expression + (navigation_expression + (simple_identifier) (navigation_suffix - (simple_identifier))) + (simple_identifier)))) (navigation_suffix (simple_identifier)))))))) @@ -879,3 +907,22 @@ for try await value in values { (value_arguments (value_argument (simple_identifier)))))))) + +=== +Negation at the start of a line +=== + + +let a = false + +!a + +--- + +(source_file + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (boolean_literal)) + (simple_identifier)) diff --git a/grammar.ts b/grammar.ts index eedcc992e..55807b5a7 100644 --- a/grammar.ts +++ b/grammar.ts @@ -220,6 +220,7 @@ module.exports = grammar({ $._eq_eq, $._plus_then_ws, // + symbol with whitespace after it $._minus_then_ws, // - symbol with whitespace after it + $._bang, $._throws_keyword, $._rethrows_keyword, $.default_keyword, @@ -628,14 +629,7 @@ module.exports = grammar({ indexing_suffix: ($) => seq("[", sep1($._expression, ","), "]"), navigation_suffix: ($) => - seq( - $._navigation_operator, - choice($.simple_identifier, $.integer_literal) - ), - - // `!.` should just be the result of a postfix `!` before navigation, but it gets parsed as a - // custom infix operator instead. - _navigation_operator: ($) => choice($._dot_operator, "!."), + seq($._dot_operator, choice($.simple_identifier, $.integer_literal)), call_suffix: ($) => prec( @@ -974,7 +968,7 @@ module.exports = grammar({ _key_path_postfixes: ($) => choice( "?", - "!", + $._bang, "self", seq("[", optional(sep1($.value_argument, ",")), "]") ), @@ -1003,7 +997,7 @@ module.exports = grammar({ "--", "-", "+", - "!", + $._bang, "&", "~", $._dot_operator, @@ -1013,7 +1007,7 @@ module.exports = grammar({ _bitwise_binary_operator: ($) => choice("&", "|", "^", "<<", ">>"), - _postfix_unary_operator: ($) => choice("++", "--", "!"), + _postfix_unary_operator: ($) => choice("++", "--", $._bang), directly_assignable_expression: ($) => choice( @@ -1427,7 +1421,7 @@ module.exports = grammar({ ), _constructor_function_decl: ($) => - seq("init", optional(choice($._quest, "!"))), + seq("init", optional(choice($._quest, $._bang))), _non_constructor_function_decl: ($) => seq( @@ -1449,7 +1443,7 @@ module.exports = grammar({ $._comparison_operator, "++", "--", - "!", + $._bang, "~" ), diff --git a/src/scanner.c b/src/scanner.c index ff19bc736..c2c8eb4b6 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -18,6 +18,7 @@ enum TokenType { EQ_EQ, PLUS_THEN_WS, MINUS_THEN_WS, + BANG, THROWS_KEYWORD, RETHROWS_KEYWORD, DEFAULT_KEYWORD, @@ -30,9 +31,9 @@ enum TokenType { ASYNC_KEYWORD }; -#define CROSS_SEMI_OPERATOR_COUNT 21 +#define OPERATOR_COUNT 22 -const char* CROSS_SEMI_OPERATORS[CROSS_SEMI_OPERATOR_COUNT] = { +const char* OPERATORS[OPERATOR_COUNT] = { "->", ".", "...", @@ -44,6 +45,7 @@ const char* CROSS_SEMI_OPERATORS[CROSS_SEMI_OPERATOR_COUNT] = { "==", "+", "-", + "!", "throws", "rethrows", "default", @@ -63,7 +65,7 @@ enum IllegalTerminatorGroup { NON_WHITESPACE }; -const enum IllegalTerminatorGroup CROSS_SEMI_ILLEGAL_TERMINATORS[CROSS_SEMI_OPERATOR_COUNT] = { +const enum IllegalTerminatorGroup OP_ILLEGAL_TERMINATORS[OPERATOR_COUNT] = { OPERATOR_SYMBOLS, // -> OPERATOR_OR_DOT, // . OPERATOR_OR_DOT, // ... @@ -75,6 +77,7 @@ const enum IllegalTerminatorGroup CROSS_SEMI_ILLEGAL_TERMINATORS[CROSS_SEMI_OPER OPERATOR_SYMBOLS, // == NON_WHITESPACE, // + NON_WHITESPACE, // - + OPERATOR_SYMBOLS, // ! ALPHANUMERIC, // throws ALPHANUMERIC, // rethrows ALPHANUMERIC, // default @@ -87,7 +90,7 @@ const enum IllegalTerminatorGroup CROSS_SEMI_ILLEGAL_TERMINATORS[CROSS_SEMI_OPER ALPHANUMERIC // async }; -const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { +const enum TokenType OP_SYMBOLS[OPERATOR_COUNT] = { ARROW_OPERATOR, DOT_OPERATOR, THREE_DOT_OPERATOR, @@ -99,6 +102,7 @@ const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { EQ_EQ, PLUS_THEN_WS, MINUS_THEN_WS, + BANG, THROWS_KEYWORD, RETHROWS_KEYWORD, DEFAULT_KEYWORD, @@ -111,6 +115,36 @@ const enum TokenType CROSS_SEMI_SYMBOLS[CROSS_SEMI_OPERATOR_COUNT] = { ASYNC_KEYWORD }; +bool is_cross_semi_token(enum TokenType op) { + switch(op) { + case ARROW_OPERATOR: + case DOT_OPERATOR: + case THREE_DOT_OPERATOR: + case OPEN_ENDED_RANGE_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: + return true; + case BANG: + default: + return false; + } +} + #define NON_CONSUMING_CROSS_SEMI_CHAR_COUNT 3 const char NON_CONSUMING_CROSS_SEMI_CHARS[NON_CONSUMING_CROSS_SEMI_CHAR_COUNT] = { '?', ':', '{' }; @@ -188,7 +222,7 @@ static bool should_treat_as_wspace(int32_t character) { static int32_t encountered_op_count(bool *encountered_operator) { int32_t encountered = 0; - for (int op_idx = 0; op_idx < CROSS_SEMI_OPERATOR_COUNT; op_idx++) { + for (int op_idx = 0; op_idx < OPERATOR_COUNT; op_idx++) { if (encountered_operator[op_idx]) { encountered++; } @@ -203,23 +237,23 @@ static bool eat_operators( bool mark_end, enum TokenType *symbol_result ) { - bool possible_operators[CROSS_SEMI_OPERATOR_COUNT]; - for (int op_idx = 0; op_idx < CROSS_SEMI_OPERATOR_COUNT; op_idx++) { - possible_operators[op_idx] = valid_symbols[CROSS_SEMI_SYMBOLS[op_idx]]; + bool possible_operators[OPERATOR_COUNT]; + for (int op_idx = 0; op_idx < OPERATOR_COUNT; op_idx++) { + possible_operators[op_idx] = valid_symbols[OP_SYMBOLS[op_idx]]; } int32_t str_idx = 0; int32_t full_match = -1; int32_t encountered_count; while(true) { - for (int op_idx = 0; op_idx < CROSS_SEMI_OPERATOR_COUNT; op_idx++) { + for (int op_idx = 0; op_idx < OPERATOR_COUNT; op_idx++) { if (!possible_operators[op_idx]) { continue; } - if (CROSS_SEMI_OPERATORS[op_idx][str_idx] == '\0') { + 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 = CROSS_SEMI_ILLEGAL_TERMINATORS[op_idx]; + enum IllegalTerminatorGroup illegal_terminators = OP_ILLEGAL_TERMINATORS[op_idx]; switch (lexer->lookahead) { // See "Operators": // https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html#ID418 @@ -263,7 +297,7 @@ static bool eat_operators( continue; } - if (CROSS_SEMI_OPERATORS[op_idx][str_idx] != lexer->lookahead) { + if (OPERATORS[op_idx][str_idx] != lexer->lookahead) { possible_operators[op_idx] = false; continue; } @@ -278,7 +312,7 @@ static bool eat_operators( } if (full_match != -1) { - *symbol_result = CROSS_SEMI_SYMBOLS[full_match]; + *symbol_result = OP_SYMBOLS[full_match]; return true; } @@ -549,7 +583,7 @@ bool tree_sitter_swift_external_scanner_scan( &operator_result ); - if (saw_operator) { + if (saw_operator && (!has_ws_result || is_cross_semi_token(operator_result))) { lexer->result_symbol = operator_result; return true; } From dcde06042b51c72f16a99029e6384c4539eca873 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Fri, 31 Dec 2021 16:47:15 -0800 Subject: [PATCH 073/151] Two more top-repos --- .github/workflows/top-repos.yml | 46 ++++++++++++++++++++++++++++++-- script-data/top-repositories.txt | 2 ++ 2 files changed, 46 insertions(+), 2 deletions(-) diff --git a/.github/workflows/top-repos.yml b/.github/workflows/top-repos.yml index cb79d2c9d..157729f8c 100644 --- a/.github/workflows/top-repos.yml +++ b/.github/workflows/top-repos.yml @@ -11,8 +11,50 @@ jobs: 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] - + 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 steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 8c48e4dac..9df988c40 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -36,6 +36,8 @@ firefox-ios mozilla-mobile/firefox-ios v39.0 5 6 AudioKit AudioKit/AudioKit 5.3.0 Starscream daltoniam/Starscream 4.0.4 MessageKit MessageKit/MessageKit 3.7.0 +KeychainAccess kishikawakatsumi/KeychainAccess v4.2.2 +Nuke kean/Nuke 10.6.1 Swinject Swinject/Swinject 2.8.1 GRDB groue/GRDB.swift v5.17.0 0 2 GRDB groue/GRDB.swift v5.17.0 1 2 From bd355d3b97f7b649cb48417c9dae5d16b0ea37f4 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 1 Jan 2022 14:23:10 -0800 Subject: [PATCH 074/151] Add queries for syntax highlighting Puts some basic syntax highlighting in place for keywords and identifiers. This requires some nodes to lose their anonymity, in particular any keyword that we wish to match from the custom scanner. --- corpus/classes.txt | 44 ++++++----- corpus/expressions.txt | 4 +- corpus/functions.txt | 22 +++--- corpus/literals.txt | 49 ++++++++----- corpus/statements.txt | 40 +++++++--- corpus/types.txt | 14 ++++ grammar.ts | 64 ++++++++-------- queries/highlights.scm | 130 +++++++++++++++++++++++++++++++++ queries/locals.scm | 18 +++++ script-data/known_failures.txt | 1 - 10 files changed, 294 insertions(+), 92 deletions(-) create mode 100644 queries/highlights.scm create mode 100644 queries/locals.scm diff --git a/corpus/classes.txt b/corpus/classes.txt index 42a13c88a..f8ffd1eb0 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -64,15 +64,15 @@ class Strings { (user_type (type_identifier)) (function_body (statements - (control_transfer_statement (line_string_literal))))) + (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_string_literal)) - (line_string_literal))))))))) + (line_string_literal (line_str_text)) + (line_string_literal (line_str_text))) + (line_string_literal (line_str_text)))))))))) ================== Class with modifiers @@ -144,7 +144,7 @@ class Test : Protocol { (attribute (user_type (type_identifier)) (simple_identifier) - (line_string_literal))) + (line_string_literal (line_str_text)))) (simple_identifier) (external_parameter_name) (parameter (simple_identifier) (user_type (type_identifier))) @@ -250,6 +250,7 @@ class Subscriptable { (user_type (type_identifier)) (type_constraints + (where_keyword) (type_constraint (inheritance_constraint (identifier @@ -366,6 +367,7 @@ class SomethingElse: ThingProvider { (guard_statement (value_binding_pattern (non_binding_pattern (simple_identifier))) (simple_identifier) + (else) (statements (call_expression (simple_identifier) (call_suffix (value_arguments))))) (control_transfer_statement (simple_identifier))))) (function_declaration (simple_identifier) (function_body))))) @@ -390,7 +392,7 @@ class Cat { let noise: String = "meow"; let claws: String = "retractable" } (type_annotation (user_type (type_identifier))) - (line_string_literal)))) + (line_string_literal (line_str_text))))) (class_declaration (type_identifier) (class_body @@ -401,7 +403,7 @@ class Cat { let noise: String = "meow"; let claws: String = "retractable" } (type_annotation (user_type (type_identifier))) - (line_string_literal)) + (line_string_literal (line_str_text))) (property_declaration (value_binding_pattern (non_binding_pattern @@ -409,7 +411,7 @@ class Cat { let noise: String = "meow"; let claws: String = "retractable" } (type_annotation (user_type (type_identifier))) - (line_string_literal))))) + (line_string_literal (line_str_text)))))) === Protocol composition types @@ -498,6 +500,7 @@ protocol Wrapper { (simple_identifier) (optional_type (user_type (type_identifier) (type_identifier))) (type_constraints + (where_keyword) (type_constraint (inheritance_constraint (identifier @@ -519,6 +522,7 @@ protocol Wrapper { (type_identifier) (user_type (type_identifier)) (type_constraints + (where_keyword) (type_constraint (equality_constraint (identifier (simple_identifier) (simple_identifier)) @@ -724,7 +728,7 @@ enum CStyle { (type_annotation (user_type (type_identifier))) (call_expression (prefix_expression (simple_identifier)) - (call_suffix (value_arguments (value_argument (line_string_literal)))))) + (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)))) @@ -755,7 +759,7 @@ enum CStyle { (simple_identifier) (function_body (statements - (control_transfer_statement (line_string_literal))))))) + (control_transfer_statement (line_string_literal (line_str_text)))))))) (class_declaration (type_identifier) (enum_class_body @@ -788,15 +792,16 @@ public extension Foo where T == (arg1: Arg1, arg2: Arg2) { } (property_declaration (modifiers (property_modifier)) (value_binding_pattern (non_binding_pattern (simple_identifier))) - (line_string_literal)) + (line_string_literal (line_str_text))) (property_declaration (modifiers (property_modifier)) (value_binding_pattern (non_binding_pattern (simple_identifier))) (type_annotation (user_type (type_identifier))) - (line_string_literal)))) + (line_string_literal (line_str_text))))) (class_declaration (identifier (simple_identifier)) (type_constraints + (where_keyword) (type_constraint (inheritance_constraint (identifier (simple_identifier)) @@ -810,6 +815,7 @@ public extension Foo where T == (arg1: Arg1, arg2: Arg2) { } (modifiers (visibility_modifier)) (identifier (simple_identifier)) (type_constraints + (where_keyword) (type_constraint (equality_constraint (identifier (simple_identifier)) @@ -853,7 +859,7 @@ enum ComputeType { (user_type (type_identifier)) (simple_identifier) (simple_identifier) - (line_string_literal))) + (line_string_literal (line_str_text)))) (simple_identifier) (function_body)) (property_declaration @@ -861,7 +867,7 @@ enum ComputeType { (user_type (type_identifier)) (simple_identifier) (simple_identifier) - (line_string_literal))) + (line_string_literal (line_str_text)))) (value_binding_pattern (non_binding_pattern (simple_identifier))) (type_annotation (user_type (type_identifier)))) (function_declaration @@ -885,7 +891,7 @@ enum ComputeType { (user_type (type_identifier)) (simple_identifier) (simple_identifier) - (line_string_literal))) + (line_string_literal (line_str_text)))) (simple_identifier))))) === @@ -920,7 +926,7 @@ let result: HasGeneric = HasGeneric(t: "Hello") (constructor_suffix (value_argument (simple_identifier) - (line_string_literal)))))) + (line_string_literal (line_str_text))))))) === @@ -942,6 +948,7 @@ func iterate(h: S) where S : Sequence, S.Element == P1 & P2 { } (user_type (type_identifier))) (type_constraints + (where_keyword) (type_constraint (inheritance_constraint (identifier @@ -1002,7 +1009,8 @@ let result = greet("me") as P1 & P2 (call_suffix (value_arguments (value_argument - (line_string_literal))))) + (line_string_literal (line_str_text)))))) + (as_operator) (user_type (type_identifier)) (user_type @@ -1094,7 +1102,7 @@ public var someVar: String { (simple_identifier)) (getter_specifier) (statements - (line_string_literal)))))) + (line_string_literal (line_str_text))))))) === Annotations on inheritance diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 4f1a0acd2..ffc699ce9 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -319,14 +319,14 @@ something.hello?("world") (source_file (call_expression (simple_identifier) (call_suffix (value_arguments - (value_argument (line_string_literal))))) + (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)))))) + (call_suffix (value_arguments (value_argument (line_string_literal (line_str_text))))))) ================== Constructor calls diff --git a/corpus/functions.txt b/corpus/functions.txt index 12123c260..2ff23d885 100755 --- a/corpus/functions.txt +++ b/corpus/functions.txt @@ -163,9 +163,9 @@ func returnGetsImplicitlyUnwrapped() -> String! { (statements (control_transfer_statement (dictionary_literal - (line_string_literal) (integer_literal) - (line_string_literal) (integer_literal) - (line_string_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)))))) (function_declaration (simple_identifier) (user_type (type_identifier)) @@ -294,7 +294,7 @@ let messageCoerced = error ??? "nil" (infix_expression (simple_identifier) (custom_operator) - (line_string_literal)))) + (line_string_literal (line_str_text))))) ================== Functions that throw @@ -310,14 +310,14 @@ func iCanDoBetter() (source_file (function_declaration (simple_identifier) - (throws_modifier) + (throws) (user_type (type_identifier)) (function_body (statements (control_transfer_statement (prefix_expression (integer_literal)))))) (function_declaration (simple_identifier) - (throws_modifier) + (throws) (user_type (type_identifier)) (function_body (statements @@ -339,15 +339,15 @@ func maybe() (source_file (function_declaration (simple_identifier) - (async_modifier) + (async) (user_type (type_identifier)) (function_body (statements (control_transfer_statement (prefix_expression (integer_literal)))))) (function_declaration (simple_identifier) - (async_modifier) - (throws_modifier) + (async) + (throws) (user_type (type_identifier)) (function_body (statements @@ -371,7 +371,7 @@ func test(i: Int = 0, block: (Int) throws -> Void) {} (function_type (tuple_type (user_type (type_identifier))) - (throws_modifier) + (throws) (user_type (type_identifier)))) (function_body))) @@ -566,7 +566,7 @@ private lazy var onCatClosure: (_ cat: Cat) throws -> Void = { _ in (wildcard_pattern) (simple_identifier) (user_type (type_identifier))) - (throws_modifier) + (throws) (user_type (type_identifier)))) (lambda_literal (lambda_function_type (lambda_function_type_parameters (simple_identifier)))))) diff --git a/corpus/literals.txt b/corpus/literals.txt index 5825990f3..fbd3bb32f 100755 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -35,9 +35,12 @@ string. --- (source_file - (line_string_literal) - (multi_line_string_literal) - (line_string_literal)) + (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 @@ -58,10 +61,17 @@ Multiline --- (source_file - (line_string_literal (interpolated_expression (line_string_literal))) + (line_string_literal + (line_str_text) + (interpolated_expression (line_string_literal (line_str_text))) + (line_str_text)) (multi_line_string_literal - (interpolated_expression (multi_line_string_literal))) - (line_string_literal) (multi_line_string_literal) (comment)) + (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 @@ -72,6 +82,7 @@ Custom interpolation (source_file (line_string_literal + (line_str_text) (interpolated_expression (simple_identifier) (simple_identifier)))) @@ -88,7 +99,11 @@ This is a string that acts as though it \ --- -(source_file (multi_line_string_literal)) +(source_file + (multi_line_string_literal + (multi_line_str_text) + (str_escaped_char) + (multi_line_str_text))) ================== Integer literals @@ -149,10 +164,10 @@ let numerals = [1: "I", 4: "IV", 5: "V", 10: "X"] (value_binding_pattern (non_binding_pattern (simple_identifier))) (dictionary_literal - (integer_literal) (line_string_literal) - (integer_literal) (line_string_literal) - (integer_literal) (line_string_literal) - (integer_literal) (line_string_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 ===== @@ -168,13 +183,13 @@ Trailing commas (source_file (dictionary_literal - (line_string_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_string_literal (line_str_text)) (boolean_literal)) (array_literal (integer_literal) (integer_literal) (integer_literal) (integer_literal) (integer_literal))) @@ -331,17 +346,17 @@ let infinity = "\u{221E}" (value_binding_pattern (non_binding_pattern (simple_identifier))) - (line_string_literal)) + (line_string_literal (str_escaped_char))) (property_declaration (value_binding_pattern (non_binding_pattern (simple_identifier))) - (line_string_literal)) + (line_string_literal (line_str_text) (str_escaped_char))) (property_declaration (value_binding_pattern (non_binding_pattern (simple_identifier))) - (line_string_literal))) + (line_string_literal (str_escaped_char)))) === Playground literals @@ -357,5 +372,5 @@ let playgroundLiteral = #imageLiteral(resourceName: "heart") (non_binding_pattern (simple_identifier))) (simple_identifier) - (line_string_literal))) + (line_string_literal (line_str_text)))) diff --git a/corpus/statements.txt b/corpus/statements.txt index 1b0754300..a5f675287 100755 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -85,6 +85,7 @@ for var value in values where value.isExcellent() { (non_binding_pattern (simple_identifier)) (simple_identifier) (where_clause + (where_keyword) (call_expression (navigation_expression (simple_identifier) @@ -189,16 +190,16 @@ switch something { (simple_identifier) (switch_entry (switch_pattern (simple_identifier)) - (statements (control_transfer_statement (line_string_literal)))) + (statements (control_transfer_statement (line_string_literal (line_str_text))))) (switch_entry (switch_pattern (simple_identifier)) - (statements (control_transfer_statement (line_string_literal)))) + (statements (control_transfer_statement (line_string_literal (line_str_text))))) (switch_entry - (switch_pattern (line_string_literal)) - (statements (control_transfer_statement (line_string_literal)))) + (switch_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)))))) + (statements (control_transfer_statement (line_string_literal (line_str_text))))))) ================== Weird switch statements @@ -230,24 +231,25 @@ case let .isExecutable(path?): (statements (simple_identifier))) (switch_entry (switch_pattern (simple_identifier)) + (where_keyword) (simple_identifier) (switch_pattern (simple_identifier)) (statements (simple_identifier))) (switch_entry (modifiers (attribute (user_type (type_identifier)))) (default_keyword) - (statements (control_transfer_statement (line_string_literal))))) + (statements (control_transfer_statement (line_string_literal (line_str_text)))))) (switch_statement (self_expression) (switch_entry (switch_pattern (simple_identifier) (non_binding_pattern (simple_identifier))) - (statements (control_transfer_statement (line_string_literal (interpolated_expression (simple_identifier)))))) + (statements (control_transfer_statement (line_string_literal (line_str_text) (interpolated_expression (simple_identifier)))))) (switch_entry (switch_pattern (non_binding_pattern (simple_identifier) (simple_identifier))) - (statements (control_transfer_statement (line_string_literal (interpolated_expression (simple_identifier)))))))) + (statements (control_transfer_statement (line_string_literal (line_str_text) (interpolated_expression (simple_identifier)))))))) ================== Imports @@ -294,38 +296,44 @@ do { (value_binding_pattern (non_binding_pattern (simple_identifier))) (integer_literal))) (catch_block + (catch_keyword) (binding_pattern (binding_pattern (non_binding_pattern (simple_identifier))) (user_type (type_identifier)))) (catch_block + (catch_keyword) (binding_pattern (user_type (type_identifier)) (simple_identifier))) (catch_block + (catch_keyword) (binding_pattern (binding_pattern (non_binding_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) (binding_pattern (non_binding_pattern (user_type (type_identifier)) (simple_identifier) (simple_identifier)))) (catch_block + (catch_keyword) (binding_pattern (user_type (type_identifier)) (simple_identifier) (simple_identifier) (non_binding_pattern (simple_identifier)))) - (catch_block)) + (catch_block (catch_keyword))) (do_statement (statements (property_declaration @@ -400,7 +408,7 @@ func doSomething() { (call_suffix (value_arguments (value_argument - (line_string_literal)))))) + (line_string_literal (line_str_text))))))) (statements (control_transfer_statement (simple_identifier)))) @@ -459,9 +467,11 @@ else if let cPrime = c { (if_statement (value_binding_pattern (non_binding_pattern (simple_identifier))) (simple_identifier) + (else) (if_statement (value_binding_pattern (non_binding_pattern (simple_identifier))) (simple_identifier))) (if_statement (equality_expression (simple_identifier) (simple_identifier)) + (else) (if_statement (value_binding_pattern (non_binding_pattern (simple_identifier))) (simple_identifier)))) @@ -489,6 +499,7 @@ else if bar { (integer_literal))) (comment) (comment) + (else) (if_statement (simple_identifier)))) @@ -515,16 +526,18 @@ guard case justIdentifier = bound else { } (guard_statement (value_binding_pattern (non_binding_pattern (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 (binding_pattern (simple_identifier) (simple_identifier) (non_binding_pattern (simple_identifier))) - (call_expression (simple_identifier) (call_suffix (value_arguments)))) - (guard_statement (binding_pattern (simple_identifier)) (simple_identifier))) + (call_expression (simple_identifier) (call_suffix (value_arguments))) (else)) + (guard_statement (binding_pattern (simple_identifier)) (simple_identifier) (else))) ================== Compound guard ================== @@ -542,6 +555,7 @@ guard let something = doThing(), something.isSpecial() else { (call_expression (navigation_expression (simple_identifier) (navigation_suffix (simple_identifier))) (call_suffix (value_arguments))) + (else) (statements (call_expression (simple_identifier) (call_suffix (value_arguments)))))) === @@ -566,6 +580,7 @@ guard case let size: Int = variable.size else { (simple_identifier) (navigation_suffix (simple_identifier))) + (else) (statements (control_transfer_statement)))) @@ -593,6 +608,7 @@ if #available(macOS 10.12.0, *) { (identifier (simple_identifier)) (integer_literal) (integer_literal) (integer_literal)) (statements (control_transfer_statement (integer_literal))) + (else) (statements (control_transfer_statement (integer_literal))))) diff --git a/corpus/types.txt b/corpus/types.txt index 3ec8007e0..a90cd06a2 100755 --- a/corpus/types.txt +++ b/corpus/types.txt @@ -11,12 +11,15 @@ 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)))) ================== @@ -30,6 +33,7 @@ something as Some.NestedType (source_file (as_expression (simple_identifier) + (as_operator) (user_type (type_identifier) (type_identifier)))) ================== @@ -43,6 +47,7 @@ somethingElse as A.Deeply.Nested.Type (source_file (as_expression (simple_identifier) + (as_operator) (user_type (type_identifier) (type_identifier) @@ -61,11 +66,13 @@ 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)) @@ -84,16 +91,19 @@ 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 (user_type (type_identifier))) (user_type (type_identifier)))) (as_expression (simple_identifier) + (as_operator) (function_type (tuple_type (parameter_modifiers (parameter_modifier)) @@ -112,6 +122,7 @@ b as (Nested.Type, (Int)) -> Unit (source_file (as_expression (simple_identifier) + (as_operator) (function_type (tuple_type (user_type (type_identifier)) @@ -122,6 +133,7 @@ b as (Nested.Type, (Int)) -> Unit (user_type (type_identifier)))) (as_expression (simple_identifier) + (as_operator) (function_type (tuple_type (user_type (type_identifier) (type_identifier)) @@ -141,6 +153,7 @@ let c: (third: C, fourth: D) (source_file (as_expression (simple_identifier) + (as_operator) (function_type (tuple_type (simple_identifier) @@ -227,6 +240,7 @@ protocol GetType { (navigation_expression (as_expression (simple_identifier) + (as_operator) (array_type (user_type (type_identifier)))) diff --git a/grammar.ts b/grammar.ts index 55807b5a7..e5c7f8d95 100644 --- a/grammar.ts +++ b/grammar.ts @@ -224,13 +224,13 @@ module.exports = grammar({ $._throws_keyword, $._rethrows_keyword, $.default_keyword, - $._where_keyword, - $._else, - $._catch, + $.where_keyword, + $.else, + $.catch_keyword, $._as, $._as_quest, $._as_bang, - $.async_modifier, + $.async, ], rules: { @@ -309,12 +309,11 @@ module.exports = grammar({ line_string_literal: ($) => seq('"', repeat(choice($._line_string_content, $._interpolation)), '"'), - _line_string_content: ($) => - choice($._line_str_text, $._line_str_escaped_char), + _line_string_content: ($) => choice($.line_str_text, $.str_escaped_char), - _line_str_text: ($) => /[^\\"]+/, + line_str_text: ($) => /[^\\"]+/, - _line_str_escaped_char: ($) => + str_escaped_char: ($) => choice($._escaped_identifier, $._uni_character_literal), _uni_character_literal: ($) => seq("\\", "u", /\{[0-9a-fA-F]+\}/), @@ -344,7 +343,7 @@ module.exports = grammar({ raw_str_interpolation_start: ($) => /\\#*\(/, _multi_line_string_content: ($) => - choice($._multi_line_str_text, $._escaped_identifier, '"'), + choice($.multi_line_str_text, $.str_escaped_char, '"'), _interpolation: ($) => seq("\\(", $._interpolation_contents, ")"), @@ -353,7 +352,7 @@ module.exports = grammar({ _escaped_identifier: ($) => /\\[0\\tnr"'\n]/, - _multi_line_str_text: ($) => /[^\\"]+/, + multi_line_str_text: ($) => /[^\\"]+/, //////////////////////////////// // Types - https://docs.swift.org/swift-book/ReferenceManual/Types.html @@ -419,8 +418,8 @@ module.exports = grammar({ function_type: ($) => seq( $.tuple_type, - optional($.async_modifier), - optional($.throws_modifier), + optional($.async), + optional($.throws), $._arrow_operator, $._type ), @@ -532,7 +531,7 @@ module.exports = grammar({ ), as_expression: ($) => - prec.left(PRECS.as, seq($._expression, $._as_operator, $._type)), + prec.left(PRECS.as, seq($._expression, $.as_operator, $._type)), selector_expression: ($) => seq( @@ -842,8 +841,8 @@ module.exports = grammar({ $.lambda_function_type_parameters, seq("(", optional($.lambda_function_type_parameters), ")") ), - optional($.async_modifier), - optional($.throws_modifier), + optional($.async), + optional($.throws), optional( seq($._arrow_operator, $._possibly_implicitly_unwrapped_type) ) @@ -881,7 +880,7 @@ module.exports = grammar({ "if", sep1($._if_condition_sequence_item, ","), $._block, - optional(seq($._else, $._else_options)) + optional(seq($.else, $._else_options)) ) ), @@ -897,7 +896,7 @@ module.exports = grammar({ seq( "guard", sep1(prec.left($._if_condition_sequence_item), ","), - $._else, + $.else, $._block ) ), @@ -916,7 +915,7 @@ module.exports = grammar({ "case", seq( $.switch_pattern, - optional(seq($._where_keyword, $._expression)) + optional(seq($.where_keyword, $._expression)) ), repeat(seq(",", $.switch_pattern)) ), @@ -934,13 +933,13 @@ module.exports = grammar({ catch_block: ($) => seq( - $._catch, + $.catch_keyword, optional(generate_pattern_matching_rule($, true, false)), optional($.where_clause), $._block ), - where_clause: ($) => prec.left(seq($._where_keyword, $._expression)), + where_clause: ($) => prec.left(seq($.where_keyword, $._expression)), key_path_expression: ($) => prec.right( @@ -988,7 +987,7 @@ module.exports = grammar({ _multiplicative_operator: ($) => choice("*", "/", "%"), - _as_operator: ($) => choice($._as, $._as_quest, $._as_bang), + as_operator: ($) => choice($._as, $._as_quest, $._as_bang), _prefix_unary_operator: ($) => prec.right( @@ -1073,10 +1072,10 @@ module.exports = grammar({ "for", optional($._try_operator), optional($._await_operator), - generate_pattern_matching_rule($, true, true, false), + field("item", generate_pattern_matching_rule($, true, true, false)), optional($.type_annotation), "in", - $._expression, + field("collection", $._expression), optional($.where_clause), $._block ) @@ -1306,8 +1305,8 @@ module.exports = grammar({ ), optional($.type_parameters), $._function_value_parameters, - optional($.async_modifier), - optional($.throws_modifier), + optional($.async), + optional($.throws), optional( seq($._arrow_operator, $._possibly_implicitly_unwrapped_type) ), @@ -1372,7 +1371,7 @@ module.exports = grammar({ ), type_constraints: ($) => - prec.right(seq($._where_keyword, sep1($.type_constraint, ","))), + prec.right(seq($.where_keyword, sep1($.type_constraint, ","))), type_constraint: ($) => choice($.inheritance_constraint, $.equality_constraint), @@ -1426,10 +1425,13 @@ module.exports = grammar({ _non_constructor_function_decl: ($) => seq( "func", - choice( - $.simple_identifier, - $._referenceable_operator, - $._bitwise_binary_operator + field( + "name", + choice( + $.simple_identifier, + $._referenceable_operator, + $._bitwise_binary_operator + ) ) ), @@ -1447,7 +1449,7 @@ module.exports = grammar({ "~" ), - throws_modifier: ($) => choice($._throws_keyword, $._rethrows_keyword), + throws: ($) => choice($._throws_keyword, $._rethrows_keyword), enum_class_body: ($) => seq("{", repeat(choice($.enum_entry, $._type_level_declaration)), "}"), diff --git a/queries/highlights.scm b/queries/highlights.scm new file mode 100644 index 000000000..c0697c4e4 --- /dev/null +++ b/queries/highlights.scm @@ -0,0 +1,130 @@ +; Identifiers +(attribute) @variable +(simple_identifier) @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) @function.method) +(function_declaration ["init" @constructor]) +(external_parameter_name) @parameter +(throws) @keyword +(async) @keyword +(where_keyword) @keyword +(parameter (simple_identifier) @parameter) +(type_parameter (type_identifier) @parameter) +(inheritance_constraint (identifier (simple_identifier) @parameter)) +(equality_constraint (identifier (simple_identifier) @parameter)) + +["typealias" "struct" "class" "enum" "protocol" "extension"] @keyword + +(class_body (property_declaration (value_binding_pattern (non_binding_pattern (simple_identifier) @property)))) +(protocol_property_declaration (value_binding_pattern (non_binding_pattern (simple_identifier) @property))) + +(import_declaration ["import" @include]) + +(enum_entry ["case" @keyword]) + +; Function calls +(call_expression (simple_identifier) @function) ; foo() +(call_expression ; foo.bar.baz(): highlight the baz() + (navigation_expression + (navigation_suffix (simple_identifier) @function))) +((navigation_expression + (simple_identifier) @type) ; SomeType.method(): highlight SomeType as a type + (#lua-match? @type "^[A-Z]")) + +(directive) @function.macro +(diagnostic) @function.macro + +; Statements +(for_statement ["for" @repeat]) +(for_statement ["in" @repeat]) +(for_statement item: (simple_identifier) @variable) +(else) @keyword +(as_operator) @keyword + +["while" "repeat" "continue" "break"] @repeat + +["let" "var"] @keyword +(non_binding_pattern (simple_identifier) @variable) + +(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 + +["do" (throw_keyword) (catch_keyword)] @keyword + +(statement_label) @label + +; Comments +(comment) @comment +(multiline_comment) @comment + +; 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 + +; Operators +(custom_operator) @operator +[ + "try" + "try?" + "try!" + "!" + "+" + "-" + "*" + "/" + "%" + "=" + "+=" + "-=" + "*=" + "/=" + "<" + ">" + "<=" + ">=" + "++" + "--" + "&" + "~" + "%=" + "!=" + "!==" + "===" +] @operator diff --git a/queries/locals.scm b/queries/locals.scm new file mode 100644 index 000000000..dfe1c83b1 --- /dev/null +++ b/queries/locals.scm @@ -0,0 +1,18 @@ +(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) +] @scope diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index 8bc0717df..f997778b5 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -1,5 +1,4 @@ firefox-ios/Shared/Functions.swift RxSwift/RxExample/RxExample/Examples/GitHubSearchRepositories/GitHubSearchRepositories.swift RxSwift/Rx.playground/Pages/Transforming_Operators.xcplaygroundpage/Contents.swift -SwiftLint/Source/SwiftLintFramework/Extensions/String+SwiftLint.swift GRDB/GRDB/Core/Row.swift From 6c5300a5fff839450fea954f5c761819b5493343 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 2 Jan 2022 11:56:26 -0800 Subject: [PATCH 075/151] Minor package cleanup Fixing a few compile warnings in `scanner.c`, and making some tokens visible for downstream packages. --- corpus/classes.txt | 1 + corpus/expressions.txt | 6 ++++-- corpus/functions.txt | 1 + grammar.ts | 12 ++++++------ src/scanner.c | 5 +++-- 5 files changed, 15 insertions(+), 10 deletions(-) diff --git a/corpus/classes.txt b/corpus/classes.txt index f8ffd1eb0..558710ae0 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -648,6 +648,7 @@ class Test { (call_suffix (value_arguments (value_argument (integer_literal)) (value_argument (integer_literal)))))))) (function_declaration (modifiers (member_modifier)) + (bang) (external_parameter_name) (parameter (simple_identifier) (user_type (type_identifier))) (function_body diff --git a/corpus/expressions.txt b/corpus/expressions.txt index ffc699ce9..3d140b1f0 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -514,7 +514,8 @@ _ = contents[Int(prefix)!...] (call_suffix (value_arguments (value_argument - (simple_identifier))))))))))))) + (simple_identifier))))) + (bang))))))))) ============ @@ -708,7 +709,8 @@ print(thing.maybeGreeting!.definitely) (navigation_expression (simple_identifier) (navigation_suffix - (simple_identifier)))) + (simple_identifier))) + (bang)) (navigation_suffix (simple_identifier)))))))) diff --git a/corpus/functions.txt b/corpus/functions.txt index 2ff23d885..32e66f11f 100755 --- a/corpus/functions.txt +++ b/corpus/functions.txt @@ -243,6 +243,7 @@ public prefix func ! (value: Wrapped) -> Bool { (simple_identifier)))))))))) (function_declaration (modifiers (visibility_modifier) (function_modifier)) + (bang) (parameter (simple_identifier) (user_type diff --git a/grammar.ts b/grammar.ts index e5c7f8d95..7d10cdbfd 100644 --- a/grammar.ts +++ b/grammar.ts @@ -220,7 +220,7 @@ module.exports = grammar({ $._eq_eq, $._plus_then_ws, // + symbol with whitespace after it $._minus_then_ws, // - symbol with whitespace after it - $._bang, + $.bang, $._throws_keyword, $._rethrows_keyword, $.default_keyword, @@ -967,7 +967,7 @@ module.exports = grammar({ _key_path_postfixes: ($) => choice( "?", - $._bang, + $.bang, "self", seq("[", optional(sep1($.value_argument, ",")), "]") ), @@ -996,7 +996,7 @@ module.exports = grammar({ "--", "-", "+", - $._bang, + $.bang, "&", "~", $._dot_operator, @@ -1006,7 +1006,7 @@ module.exports = grammar({ _bitwise_binary_operator: ($) => choice("&", "|", "^", "<<", ">>"), - _postfix_unary_operator: ($) => choice("++", "--", $._bang), + _postfix_unary_operator: ($) => choice("++", "--", $.bang), directly_assignable_expression: ($) => choice( @@ -1420,7 +1420,7 @@ module.exports = grammar({ ), _constructor_function_decl: ($) => - seq("init", optional(choice($._quest, $._bang))), + seq("init", optional(choice($._quest, $.bang))), _non_constructor_function_decl: ($) => seq( @@ -1445,7 +1445,7 @@ module.exports = grammar({ $._comparison_operator, "++", "--", - $._bang, + $.bang, "~" ), diff --git a/src/scanner.c b/src/scanner.c index c2c8eb4b6..9f1869666 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -146,7 +146,7 @@ bool is_cross_semi_token(enum TokenType op) { } #define NON_CONSUMING_CROSS_SEMI_CHAR_COUNT 3 -const char NON_CONSUMING_CROSS_SEMI_CHARS[NON_CONSUMING_CROSS_SEMI_CHAR_COUNT] = { '?', ':', '{' }; +const uint32_t NON_CONSUMING_CROSS_SEMI_CHARS[NON_CONSUMING_CROSS_SEMI_CHAR_COUNT] = { '?', ':', '{' }; /** * All possible results of having performed some sort of parsing. @@ -244,7 +244,6 @@ static bool eat_operators( int32_t str_idx = 0; int32_t full_match = -1; - int32_t encountered_count; while(true) { for (int op_idx = 0; op_idx < OPERATOR_COUNT; op_idx++) { if (!possible_operators[op_idx]) { @@ -274,10 +273,12 @@ static bool eat_operators( 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; From 8459a6e3960ec01f9e7b1d7c98dd26d36c7ff975 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 2 Jan 2022 12:27:23 -0800 Subject: [PATCH 076/151] Add a workflow for publishing to NPM Also adds a small test-npm-package that uses the published code to parse hello world. If it fails, nothing is published. Fixes #87 --- .github/workflows/publish.yml | 24 + .gitignore | 2 +- package-lock.json | 1819 +++++++++++++++++++++++++++- package.json | 6 +- test-npm-package/index.js | 25 + test-npm-package/package-lock.json | 1023 ++++++++++++++++ test-npm-package/package.json | 15 + 7 files changed, 2910 insertions(+), 4 deletions(-) create mode 100644 .github/workflows/publish.yml create mode 100644 test-npm-package/index.js create mode 100644 test-npm-package/package-lock.json create mode 100644 test-npm-package/package.json diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 000000000..0688c8226 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,24 @@ +name: NPM publish + +on: + workflow_run: + workflows: ["Parse popular Swift repositories"] + types: + - completed + +jobs: + publish: + if: ${{ github.ref == 'refs/head/main' }} + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions/setup-node@v1 + with: + node-version: 16 + - run: npm install + - run: npm run test-ci + - run: npm run bindings + - run: cd ./test-npm-package && npm test; cd .. + - uses: JS-DevTools/npm-publish@v1 + with: + token: ${{ secrets.NPM_TOKEN }} diff --git a/.gitignore b/.gitignore index de0f553a7..4143499ce 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -/node_modules +node_modules /src/* !/src/scanner.c *.swp diff --git a/package-lock.json b/package-lock.json index 00af52406..c98f47c11 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,26 +1,1789 @@ { "name": "experimental-tree-sitter-swift", "version": "0.0.1", - "lockfileVersion": 1, + "lockfileVersion": 2, "requires": true, + "packages": { + "": { + "version": "0.0.1", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "nan": "^2.15.0" + }, + "devDependencies": { + "@types/node": "^16.11.10", + "node-gyp": "^8.4.1", + "prettier": "2.3.2", + "tree-sitter-cli": "^0.20.0", + "typescript": "^4.5.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==", + "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/@types/node": { + "version": "16.11.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.10.tgz", + "integrity": "sha512-3aRnHa1KlOEEhJ6+CvyHKK5vE9BcLGjtUpwvqYLRvYNQKMfabu3BwfJaA/SLW8dxe28LsNDjtHwePTuzn3gmOA==", + "dev": true + }, + "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.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", + "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=", + "dev": true + }, + "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": { + "encoding": "^0.1.12", + "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.0", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.0.tgz", + "integrity": "sha512-4D1qapWbJXZ5rrSUGM5rcw5Vuq/smzn9KbiFRhlON6KeuuXjra+KAtDYVrDgAoLIG4ku+jbEEGrJxCptUGi3dg==", + "dev": true, + "hasInstallScript": true, + "bin": { + "tree-sitter": "cli.js" + } + }, + "node_modules/typescript": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz", + "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "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==", + "dev": true, + "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 + }, "@types/node": { "version": "16.11.10", "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.10.tgz", "integrity": "sha512-3aRnHa1KlOEEhJ6+CvyHKK5vE9BcLGjtUpwvqYLRvYNQKMfabu3BwfJaA/SLW8dxe28LsNDjtHwePTuzn3gmOA==", "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.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", + "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=", + "dev": true + }, + "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.0", "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.0.tgz", @@ -32,6 +1795,60 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz", "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==", "dev": true + }, + "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==", + "dev": true, + "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/package.json b/package.json index 8983c7c61..db26ba8ee 100644 --- a/package.json +++ b/package.json @@ -2,12 +2,13 @@ "name": "experimental-tree-sitter-swift", "version": "0.0.1", "description": "An experimental tree-sitter grammar for the Swift programming language.", - "main": "grammar.js", + "main": "bindings/node/index.js", "scripts": { "install": "tsc && tree-sitter generate", "ci": "prettier --check grammar.ts types/*/*.d.ts", "test-ci": "./scripts/test-with-memcheck.sh --install-valgrind", - "test": "./scripts/test-with-memcheck.sh" + "test": "./scripts/test-with-memcheck.sh", + "bindings": "node-gyp configure && node-gyp build" }, "repository": { "type": "git", @@ -28,6 +29,7 @@ }, "devDependencies": { "@types/node": "^16.11.10", + "node-gyp": "^8.4.1", "prettier": "2.3.2", "tree-sitter-cli": "^0.20.0", "typescript": "^4.5.2" diff --git a/test-npm-package/index.js b/test-npm-package/index.js new file mode 100644 index 000000000..935db5dfd --- /dev/null +++ b/test-npm-package/index.js @@ -0,0 +1,25 @@ +const Parser = require("tree-sitter"); +const Swift = require("experimental-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 (directly_assignable_expression (simple_identifier)) (line_string_literal (line_str_text))))`, + smallTree.rootNode.toString() +); diff --git a/test-npm-package/package-lock.json b/test-npm-package/package-lock.json new file mode 100644 index 000000000..48cf63d60 --- /dev/null +++ b/test-npm-package/package-lock.json @@ -0,0 +1,1023 @@ +{ + "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": { + "experimental-tree-sitter-swift": "file:../", + "tree-sitter": "^0.20.0" + } + }, + "..": { + "version": "0.0.1", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "nan": "^2.15.0" + }, + "devDependencies": { + "@types/node": "^16.11.10", + "node-gyp": "^8.4.1", + "prettier": "2.3.2", + "tree-sitter-cli": "^0.20.1", + "typescript": "^4.5.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/experimental-tree-sitter-swift": { + "resolved": "..", + "link": true + }, + "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.0", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.0.tgz", + "integrity": "sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA==", + "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/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==" + }, + "experimental-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.1", + "typescript": "^4.5.2" + } + }, + "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.0", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.0.tgz", + "integrity": "sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA==", + "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" + } + }, + "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/test-npm-package/package.json b/test-npm-package/package.json new file mode 100644 index 000000000..ff82a46e5 --- /dev/null +++ b/test-npm-package/package.json @@ -0,0 +1,15 @@ +{ + "name": "npm-tree-sitter-test", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "npm install && node index.js" + }, + "author": "", + "license": "MIT", + "dependencies": { + "experimental-tree-sitter-swift": "file:../", + "tree-sitter": "^0.20.0" + } +} From 81f417079de073ac26f4c2e44c87c6e7b11f2e8f Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 2 Jan 2022 13:28:20 -0800 Subject: [PATCH 077/151] Don't use valgrind to run query tests The query tests always hang at a `memmove` under `ts_query__analyze_patterns`, for some reason. From my testing, this doesn't seem to be related to any hangs during highlighting in the IDE. This has to be investigated more but for now we just don't use valgrind for the query tests. --- scripts/test-with-memcheck.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/scripts/test-with-memcheck.sh b/scripts/test-with-memcheck.sh index ccedf4892..f9724fdac 100755 --- a/scripts/test-with-memcheck.sh +++ b/scripts/test-with-memcheck.sh @@ -7,4 +7,17 @@ if [[ "$1" == "--install-valgrind" ]]; then shift fi +# Query tests hang forever when run with valgrind, so move them out of +# the way. +mv ./queries ./queries.bak +trap "mv ./queries.bak ./queries || true" EXIT + valgrind tree-sitter test + +# Now move the query tests back, and move the corpus tests out of the +# way. +mv ./queries.bak ./queries +mv ./corpus ./corpus.bak +trap "mv ./corpus.bak ./corpus || true" EXIT + +tree-sitter test From 96d199aaa96db0897b4685c0c3cfe4c950d6e060 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 2 Jan 2022 13:59:19 -0800 Subject: [PATCH 078/151] Fix typo in github.ref --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0688c8226..8f75b6dda 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -8,7 +8,7 @@ on: jobs: publish: - if: ${{ github.ref == 'refs/head/main' }} + if: ${{ github.ref == 'refs/heads/main' }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 From 09e0f1b29ac68c01c887d6b00719de95808ad8ce Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 2 Jan 2022 14:37:09 -0800 Subject: [PATCH 079/151] Update publish workflow to go to crates.io too Also update the `README` to lead with instructions for using the crate and the npm package. This is the future! --- .github/workflows/publish.yml | 20 ++++++++++++-- Cargo.toml | 3 +++ README.md | 50 +++++++++++++++++++++++++++++++---- bindings/rust/build.rs | 16 ----------- bindings/rust/lib.rs | 26 +++++++++++++++--- 5 files changed, 88 insertions(+), 27 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8f75b6dda..6ac6cc447 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,4 +1,4 @@ -name: NPM publish +name: Publish to `npm` and `crates.io` on: workflow_run: @@ -7,7 +7,7 @@ on: - completed jobs: - publish: + npm-publish: if: ${{ github.ref == 'refs/heads/main' }} runs-on: ubuntu-latest steps: @@ -22,3 +22,19 @@ jobs: - uses: JS-DevTools/npm-publish@v1 with: token: ${{ secrets.NPM_TOKEN }} + crates-io-publish: + if: ${{ github.ref == 'refs/heads/main' }} + runs-on: ubuntu-latest + 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 diff --git a/Cargo.toml b/Cargo.toml index c03e9acbe..8e0d785cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,3 +24,6 @@ tree-sitter = "~0.20.0" [build-dependencies] cc = "1.0" + +[dev-dependencies] +anyhow = "1.0" diff --git a/README.md b/README.md index c8644ff3d..839a964d5 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,51 @@ programming language. ## Getting started -This grammar is structured similarly to any other tree-sitter grammar. As with most grammars, you can use the cli to -generate or test the parser, and to parse any arbitrary code. An overview of the CLI tool can be found -[here](https://tree-sitter.github.io/tree-sitter/creating-parsers#tool-overview). A moderate amount of work has gone -into building out a corpus, but the corpus mostly encodes the current state of the parser, including a few bugs that it -has. +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" +experimental-tree-sitter-swift = "=0.0.1" +``` + +Then you can use a `tree-sitter` parser with the language declared here: + +``` +let mut parser = tree_sitter::Parser::new(); +parser.set_language(experimental_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: { + "experimental-tree-sitter-swift": "0.0.1", + "tree-sitter": "^0.20.0" +} +``` + +Your usage of the parser will look like: +``` +const Parser = require("tree-sitter"); +const Swift = require("experimental-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: diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs index 2dd4a7adc..8f87ee668 100644 --- a/bindings/rust/build.rs +++ b/bindings/rust/build.rs @@ -16,20 +16,4 @@ fn main() { c_config.compile("parser"); println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); - - // If your language uses an external scanner written in C++, - // then include this block of code: - - /* - let mut cpp_config = cc::Build::new(); - cpp_config.cpp(true); - cpp_config.include(&src_dir); - cpp_config - .flag_if_supported("-Wno-unused-parameter") - .flag_if_supported("-Wno-unused-but-set-variable"); - let scanner_path = src_dir.join("scanner.cc"); - cpp_config.file(&scanner_path); - cpp_config.compile("scanner"); - println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); - */ } diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs index 14bd07e51..632a0ad4c 100644 --- a/bindings/rust/lib.rs +++ b/bindings/rust/lib.rs @@ -42,11 +42,29 @@ pub const NODE_TYPES: &'static str = include_str!("../../src/node-types.json"); #[cfg(test)] mod tests { + use anyhow::{anyhow, Result}; + #[test] - fn test_can_load_grammar() { + fn test_can_load_grammar() -> Result<()> { let mut parser = tree_sitter::Parser::new(); - parser - .set_language(super::language()) - .expect("Error loading swift language"); + 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 (directly_assignable_expression (simple_identifier)) (line_string_literal (line_str_text))))", + tree.root_node().to_sexp(), + ); + + Ok(()) } } From 5365ac400a1a49543f0e340b6e8a8e566630c1ef Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 2 Jan 2022 15:48:48 -0800 Subject: [PATCH 080/151] Add badges for crates.io and npm Assumes that the crates.io and npm versions will stay the same (they should) and uses the npm publish output as an input for a badge publishing job. As a side effect, only runs the crates.io publish logic after updating the package in npm, because this will allow for batching of minor changes together under a single version update. The crates.io publish action will otherwise just fail if it doesn't like what it sees. --- .github/workflows/publish.yml | 35 +++++++++++++++++++++++++++++---- .github/workflows/top-repos.yml | 2 +- README.md | 3 +++ 3 files changed, 35 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6ac6cc447..c4b79393a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -2,14 +2,17 @@ name: Publish to `npm` and `crates.io` on: workflow_run: - workflows: ["Parse popular Swift repositories"] + workflows: ["Parse top repositories"] types: - completed jobs: - npm-publish: + 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 @@ -20,11 +23,13 @@ jobs: - run: npm run bindings - 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: - if: ${{ github.ref == 'refs/heads/main' }} + 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 @@ -38,3 +43,25 @@ jobs: 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/.github/workflows/top-repos.yml b/.github/workflows/top-repos.yml index 157729f8c..1c8edcce5 100644 --- a/.github/workflows/top-repos.yml +++ b/.github/workflows/top-repos.yml @@ -1,4 +1,4 @@ -name: Parse popular Swift repositories +name: Parse top repositories on: push: diff --git a/README.md b/README.md index 839a964d5..f19e81ea1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ ![Parse rate badge](https://byob.yarr.is/alex-pinkus/experimental-tree-sitter-swift/parse_rate) +[![Crates.io badge](https://byob.yarr.is/alex-pinkus/experimental-tree-sitter-swift/crates_io_version)](https://crates.io/crates/experimental-tree-sitter-swift) +[![NPM badge](https://byob.yarr.is/alex-pinkus/experimental-tree-sitter-swift/npm_version)](https://www.npmjs.com/package/experimental-tree-sitter-swift) +[![Build](https://github.com/alex-pinkus/experimental-tree-sitter-swift/actions/workflows/top-repos.yml/badge.svg)](https://github.com/alex-pinkus/experimental-tree-sitter-swift/actions/workflows/top-repos.yml) # experimental-tree-sitter-swift From 9382a5f47f65267a35555688e6cc376df01a726f Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Mon, 3 Jan 2022 17:26:36 -0800 Subject: [PATCH 081/151] Fix build from npm Applies suggested fixes from #87: * Pointing to `./build/grammar.js` in install command * Putting `typescript` in `dependencies` rather than `devDependencies` * Running `binding` during install (this change does it during `postinstall` rather than `preinstall` so that the `parser.c` is present when clean) --- .github/workflows/top-repos.yml | 1 + package-lock.json | 24 +++++++++--------------- package.json | 16 ++++++++-------- scripts/test-with-memcheck.sh | 2 ++ 4 files changed, 20 insertions(+), 23 deletions(-) diff --git a/.github/workflows/top-repos.yml b/.github/workflows/top-repos.yml index 1c8edcce5..c0581be37 100644 --- a/.github/workflows/top-repos.yml +++ b/.github/workflows/top-repos.yml @@ -63,6 +63,7 @@ jobs: node-version: '16.x' cache: 'npm' - run: npm install + - run: npm run test-ci - run: ./scripts/top-repos.sh ${{matrix.repo}} badge_gen: runs-on: ubuntu-latest diff --git a/package-lock.json b/package-lock.json index c98f47c11..92cb40176 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,14 +9,14 @@ "hasInstallScript": true, "license": "MIT", "dependencies": { - "nan": "^2.15.0" - }, - "devDependencies": { "@types/node": "^16.11.10", - "node-gyp": "^8.4.1", - "prettier": "2.3.2", + "nan": "^2.15.0", "tree-sitter-cli": "^0.20.0", "typescript": "^4.5.2" + }, + "devDependencies": { + "node-gyp": "^8.4.1", + "prettier": "2.3.2" } }, "node_modules/@gar/promisify": { @@ -63,8 +63,7 @@ "node_modules/@types/node": { "version": "16.11.10", "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.10.tgz", - "integrity": "sha512-3aRnHa1KlOEEhJ6+CvyHKK5vE9BcLGjtUpwvqYLRvYNQKMfabu3BwfJaA/SLW8dxe28LsNDjtHwePTuzn3gmOA==", - "dev": true + "integrity": "sha512-3aRnHa1KlOEEhJ6+CvyHKK5vE9BcLGjtUpwvqYLRvYNQKMfabu3BwfJaA/SLW8dxe28LsNDjtHwePTuzn3gmOA==" }, "node_modules/abbrev": { "version": "1.1.1", @@ -968,7 +967,6 @@ "version": "0.20.0", "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.0.tgz", "integrity": "sha512-4D1qapWbJXZ5rrSUGM5rcw5Vuq/smzn9KbiFRhlON6KeuuXjra+KAtDYVrDgAoLIG4ku+jbEEGrJxCptUGi3dg==", - "dev": true, "hasInstallScript": true, "bin": { "tree-sitter": "cli.js" @@ -978,7 +976,6 @@ "version": "4.5.2", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz", "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==", - "dev": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -1084,8 +1081,7 @@ "@types/node": { "version": "16.11.10", "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.10.tgz", - "integrity": "sha512-3aRnHa1KlOEEhJ6+CvyHKK5vE9BcLGjtUpwvqYLRvYNQKMfabu3BwfJaA/SLW8dxe28LsNDjtHwePTuzn3gmOA==", - "dev": true + "integrity": "sha512-3aRnHa1KlOEEhJ6+CvyHKK5vE9BcLGjtUpwvqYLRvYNQKMfabu3BwfJaA/SLW8dxe28LsNDjtHwePTuzn3gmOA==" }, "abbrev": { "version": "1.1.1", @@ -1787,14 +1783,12 @@ "tree-sitter-cli": { "version": "0.20.0", "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.0.tgz", - "integrity": "sha512-4D1qapWbJXZ5rrSUGM5rcw5Vuq/smzn9KbiFRhlON6KeuuXjra+KAtDYVrDgAoLIG4ku+jbEEGrJxCptUGi3dg==", - "dev": true + "integrity": "sha512-4D1qapWbJXZ5rrSUGM5rcw5Vuq/smzn9KbiFRhlON6KeuuXjra+KAtDYVrDgAoLIG4ku+jbEEGrJxCptUGi3dg==" }, "typescript": { "version": "4.5.2", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz", - "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==", - "dev": true + "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==" }, "unique-filename": { "version": "1.1.1", diff --git a/package.json b/package.json index db26ba8ee..8ae1a7444 100644 --- a/package.json +++ b/package.json @@ -4,11 +4,11 @@ "description": "An experimental tree-sitter grammar for the Swift programming language.", "main": "bindings/node/index.js", "scripts": { - "install": "tsc && tree-sitter generate", + "install": "tsc && tree-sitter generate ./build/grammar.js", + "postinstall": "node-gyp configure && node-gyp build", "ci": "prettier --check grammar.ts types/*/*.d.ts", "test-ci": "./scripts/test-with-memcheck.sh --install-valgrind", - "test": "./scripts/test-with-memcheck.sh", - "bindings": "node-gyp configure && node-gyp build" + "test": "./scripts/test-with-memcheck.sh" }, "repository": { "type": "git", @@ -25,13 +25,13 @@ }, "homepage": "https://github.com/alex-pinkus/experimental-tree-sitter-swift#readme", "dependencies": { - "nan": "^2.15.0" - }, - "devDependencies": { "@types/node": "^16.11.10", - "node-gyp": "^8.4.1", - "prettier": "2.3.2", + "nan": "^2.15.0", "tree-sitter-cli": "^0.20.0", "typescript": "^4.5.2" + }, + "devDependencies": { + "node-gyp": "^8.4.1", + "prettier": "2.3.2" } } diff --git a/scripts/test-with-memcheck.sh b/scripts/test-with-memcheck.sh index f9724fdac..32b158851 100755 --- a/scripts/test-with-memcheck.sh +++ b/scripts/test-with-memcheck.sh @@ -7,6 +7,8 @@ if [[ "$1" == "--install-valgrind" ]]; then shift fi +tree-sitter generate + # Query tests hang forever when run with valgrind, so move them out of # the way. mv ./queries ./queries.bak From b188a7a2466a295c94baa36cd328b6af7eb39a66 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 2 Jan 2022 21:22:05 -0800 Subject: [PATCH 082/151] Add field names for common queries Some minor fixups from trying to use the parser, mainly adding fields for the elements of most common nodes. Also some minor rearranging of the AST: things like putting external parameter names within the parameter nodes, rather than right before, which are non-backwards compatible so it's best to do them early. The corpus really didn't change much, but `tree-sitter test -u` reformatted it. This is a one-time cost and now that we're using the auto-updated formatting, the diffs will be much cleaner from now on. Includes a version bump to `0.0.2`, which is good because it's an opportunity to republish the package with the publishing fixes from #93. --- Cargo.toml | 2 +- README.md | 4 +- corpus/classes.txt | 1447 +++++++++++++++++----------- corpus/expressions.txt | 886 ++++++++++------- corpus/functions.txt | 981 +++++++++++-------- corpus/literals.txt | 313 +++--- corpus/statements.txt | 924 +++++++++++------- corpus/types.txt | 410 ++++---- grammar.ts | 369 ++++--- package-lock.json | 4 +- package.json | 2 +- queries/highlights.scm | 4 +- test-npm-package/package-lock.json | 6 +- 13 files changed, 3234 insertions(+), 2118 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8e0d785cf..3a6d7c36f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "experimental-tree-sitter-swift" description = "swift grammar for the tree-sitter parsing library" -version = "0.0.1" +version = "0.0.2" keywords = ["incremental", "parsing", "swift"] categories = ["parsing", "text-editors"] repository = "https://github.com/alex-pinkus/experimental-tree-sitter-swift" diff --git a/README.md b/README.md index f19e81ea1..db9c344c5 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ To use this parser to parse Swift code, you'll want to depend on either the Rust To use the Rust crate, you'll add this to your `Cargo.toml`: ``` tree-sitter = "0.20.0" -experimental-tree-sitter-swift = "=0.0.1" +experimental-tree-sitter-swift = "=0.0.2" ``` Then you can use a `tree-sitter` parser with the language declared here: @@ -36,7 +36,7 @@ let tree = parser.parse(&my_source_code, None) To use this from NPM, you'll add similar dependencies to `package.json`: ``` "dependencies: { - "experimental-tree-sitter-swift": "0.0.1", + "experimental-tree-sitter-swift": "0.0.2", "tree-sitter": "^0.20.0" } ``` diff --git a/corpus/classes.txt b/corpus/classes.txt index 558710ae0..4b779083d 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -1,17 +1,19 @@ -================== +================================================================================ Classes -================== +================================================================================ class Empty {} ---- +-------------------------------------------------------------------------------- (source_file - (class_declaration (type_identifier) (class_body))) - -================== + (class_declaration + (type_identifier) + (class_body))) + +================================================================================ Class with methods -================== +================================================================================ class HelloWorld { func a() {} @@ -19,30 +21,38 @@ class HelloWorld { func b() {} } ---- +-------------------------------------------------------------------------------- (source_file - (class_declaration (type_identifier) - (class_body - (function_declaration (simple_identifier) (function_body)) - (function_declaration (simple_identifier) (function_body))))) + (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_declaration + (type_identifier) + (type_parameters + (type_parameter + (type_identifier))) + (class_body))) -================== +================================================================================ Class with methods and expressions -================== +================================================================================ class Strings { /// Some awesome docummentation! @@ -52,31 +62,42 @@ class Strings { 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_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 @@ -84,30 +105,44 @@ internal open class Test { /* some comment */ private final func test() { } } ---- +-------------------------------------------------------------------------------- (source_file - (class_declaration - (modifiers (visibility_modifier) (visibility_modifier)) - (type_identifier) - (class_body - (property_declaration - (modifiers (visibility_modifier)) - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (type_annotation (user_type (type_identifier)))) - (property_declaration - (modifiers (visibility_modifier)) - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (type_annotation (user_type (type_identifier)))) - (multiline_comment) - (function_declaration - (modifiers (visibility_modifier) (inheritance_modifier)) - (simple_identifier) - (function_body))))) + (class_declaration + (modifiers + (visibility_modifier) + (visibility_modifier)) + (type_identifier) + (class_body + (property_declaration + (modifiers + (visibility_modifier)) + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (type_annotation + (user_type + (type_identifier)))) + (property_declaration + (modifiers + (visibility_modifier)) + (value_binding_pattern + (non_binding_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 { @@ -118,41 +153,53 @@ class Test : Protocol { func someFunction(nice argument: Int) { } } ---- +-------------------------------------------------------------------------------- (source_file - (class_declaration + (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))) - (type_identifier) - (inheritance_specifier (user_type (type_identifier))) - (class_body - (function_declaration - (modifiers - (attribute - (user_type (type_identifier)) - (simple_identifier)) - (property_modifier)) - (simple_identifier) - (external_parameter_name) - (parameter (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) - (external_parameter_name) - (parameter (simple_identifier) (user_type (type_identifier))) - (function_body))))) + (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? { @@ -171,54 +218,79 @@ class GenericSubscript { } } ---- +-------------------------------------------------------------------------------- (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_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))) - (external_parameter_name) - (parameter (simple_identifier) (user_type (type_identifier) (type_arguments (user_type (type_identifier))))) - (user_type (type_identifier) (type_arguments (user_type (type_identifier)))) - (statements (control_transfer_statement (simple_identifier))))))) -=== + (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_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)))) + (statements + (control_transfer_statement + (simple_identifier))))))) + +================================================================================ Subscript with multiple arguments -=== +================================================================================ class Subscriptable { public subscript(_ value: D, arg2: Arg2) -> D where D: Decodable { @@ -226,65 +298,71 @@ class Subscriptable { } } ---- +-------------------------------------------------------------------------------- - (source_file - (class_declaration - (type_identifier) - (class_body - (subscript_declaration - (modifiers - (visibility_modifier)) - (type_parameters - (type_parameter - (type_identifier))) - (external_parameter_name) - (parameter - (simple_identifier) - (user_type - (type_identifier))) - (parameter - (simple_identifier) +(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))) - (user_type - (type_identifier)) - (type_constraints - (where_keyword) - (type_constraint - (inheritance_constraint - (identifier - (simple_identifier)) - (user_type - (type_identifier))))) - (statements - (control_transfer_statement - (simple_identifier))))))) + (type_identifier))))) + (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))) + (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 @@ -312,74 +390,123 @@ class SomethingElse: ThingProvider { class func nothing() { } } ---- +-------------------------------------------------------------------------------- (source_file - (class_declaration - (type_identifier) - (class_body - (property_declaration - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (type_annotation - (user_type (type_identifier))) - (integer_literal)) - (property_declaration - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (type_annotation - (optional_type (user_type (type_identifier))))) - (property_declaration - (modifiers (property_behavior_modifier)) - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (type_annotation - (user_type (type_identifier))) - (simple_identifier)) - (property_declaration - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (type_annotation - (user_type (type_identifier))) - (computed_property (statements (simple_identifier)))) - (property_declaration - (value_binding_pattern (non_binding_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 - (value_binding_pattern (non_binding_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 - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (type_annotation (user_type (type_identifier))) - (computed_property - (statements - (guard_statement - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (simple_identifier) - (else) - (statements (call_expression (simple_identifier) (call_suffix (value_arguments))))) - (control_transfer_statement (simple_identifier))))) - (function_declaration (simple_identifier) (function_body))))) - -=== + (class_declaration + (type_identifier) + (class_body + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (type_annotation + (user_type + (type_identifier))) + (integer_literal)) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (type_annotation + (optional_type + (user_type + (type_identifier))))) + (property_declaration + (modifiers + (property_behavior_modifier)) + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (type_annotation + (user_type + (type_identifier))) + (simple_identifier)) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (type_annotation + (user_type + (type_identifier))) + (computed_property + (statements + (simple_identifier)))) + (property_declaration + (value_binding_pattern + (non_binding_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 + (value_binding_pattern + (non_binding_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 + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (type_annotation + (user_type + (type_identifier))) + (computed_property + (statements + (guard_statement + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (simple_identifier) + (else) + (statements + (call_expression + (simple_identifier) + (call_suffix + (value_arguments))))) + (control_transfer_statement + (simple_identifier))))) + (function_declaration + (simple_identifier) + (function_body))))) + +================================================================================ 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 @@ -392,7 +519,8 @@ class Cat { let noise: String = "meow"; let claws: String = "retractable" } (type_annotation (user_type (type_identifier))) - (line_string_literal (line_str_text))))) + (line_string_literal + (line_str_text))))) (class_declaration (type_identifier) (class_body @@ -403,7 +531,8 @@ class Cat { let noise: String = "meow"; let claws: String = "retractable" } (type_annotation (user_type (type_identifier))) - (line_string_literal (line_str_text))) + (line_string_literal + (line_str_text))) (property_declaration (value_binding_pattern (non_binding_pattern @@ -411,36 +540,37 @@ class Cat { let noise: String = "meow"; let claws: String = "retractable" } (type_annotation (user_type (type_identifier))) - (line_string_literal (line_str_text)))))) + (line_string_literal + (line_str_text)))))) -=== +================================================================================ Protocol composition types -=== +================================================================================ var propertyMap: NodePropertyMap & KeypathSearchable { return transformProperties } ---- +-------------------------------------------------------------------------------- - (source_file - (property_declaration - (value_binding_pattern - (non_binding_pattern - (simple_identifier))) - (type_annotation - (user_type - (type_identifier)) - (user_type - (type_identifier))) - (computed_property - (statements - (control_transfer_statement - (simple_identifier)))))) +(source_file + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (type_annotation + (user_type + (type_identifier)) + (user_type + (type_identifier))) + (computed_property + (statements + (control_transfer_statement + (simple_identifier)))))) -================== +================================================================================ Structs -================== +================================================================================ struct Adder { var value: Int @@ -450,27 +580,33 @@ struct Adder { } } ---- +-------------------------------------------------------------------------------- (source_file - (class_declaration - (type_identifier) - (class_body - (property_declaration - (value_binding_pattern (non_binding_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)))))))) -================== + (class_declaration + (type_identifier) + (class_body + (property_declaration + (value_binding_pattern + (non_binding_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 @@ -488,55 +624,76 @@ protocol Wrapper { associatedtype Wrapped: Fallible where Wrapped.FailureType == NSError } ---- +-------------------------------------------------------------------------------- (source_file - (protocol_declaration + (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 + (value_binding_pattern + (non_binding_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) - (protocol_body - (associatedtype_declaration (type_identifier) (user_type (type_identifier))) - (associatedtype_declaration (type_identifier) (user_type (type_identifier))) - (protocol_function_declaration + (user_type + (type_identifier)) + (type_constraints + (where_keyword) + (type_constraint + (equality_constraint + (identifier (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 - (value_binding_pattern (non_binding_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))))))))) - -=== + (simple_identifier)) + (user_type + (type_identifier))))))))) + +================================================================================ Protocol with subscript -=== +================================================================================ public protocol Indexable { subscript(index: Int) -> T? { get } } ---- +-------------------------------------------------------------------------------- (source_file (protocol_declaration @@ -555,15 +712,15 @@ public protocol Indexable { (computed_getter (getter_specifier)))))) -=== +================================================================================ Typealias -=== +================================================================================ class SomeClassWithAlias: NSObject { typealias ProtocolComposition = Protocol1 & Protocol2 } ---- +-------------------------------------------------------------------------------- (source_file (class_declaration @@ -579,9 +736,9 @@ class SomeClassWithAlias: NSObject { (user_type (type_identifier)))))) -================== +================================================================================ Special constructors -================== +================================================================================ class Test { let a: Int @@ -605,61 +762,116 @@ class Test { } } ---- +-------------------------------------------------------------------------------- (source_file - (class_declaration - (type_identifier) - (class_body - (property_declaration - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (type_annotation (user_type (type_identifier)))) - (property_declaration - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (type_annotation (user_type (type_identifier)))) - (function_declaration - (external_parameter_name) - (parameter (simple_identifier) (user_type (type_identifier))) - (external_parameter_name) - (parameter (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) - (external_parameter_name) - (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 (simple_identifier)) (value_argument (simple_identifier))))))))))) - -================== + (class_declaration + (type_identifier) + (class_body + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (type_annotation + (user_type + (type_identifier)))) + (property_declaration + (value_binding_pattern + (non_binding_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 { @@ -667,19 +879,25 @@ class Expensive { } } ---- +-------------------------------------------------------------------------------- (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))))))))))) + (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 @@ -706,74 +924,110 @@ enum CStyle { 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)) - (value_binding_pattern (non_binding_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))))) - + (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)) + (value_binding_pattern + (non_binding_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" @@ -784,52 +1038,77 @@ extension SpecialDecorator where Self: Decorator, Self.DecoratedType == SpecialT public extension Foo where T == (arg1: Arg1, arg2: Arg2) { } ---- +-------------------------------------------------------------------------------- (source_file - (class_declaration - (identifier (simple_identifier) (simple_identifier)) + (class_declaration + (user_type + (type_identifier) + (type_identifier)) (class_body - (property_declaration - (modifiers (property_modifier)) - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (line_string_literal (line_str_text))) - (property_declaration - (modifiers (property_modifier)) - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (type_annotation (user_type (type_identifier))) - (line_string_literal (line_str_text))))) - (class_declaration - (identifier (simple_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)) - (identifier (simple_identifier)) - (type_constraints - (where_keyword) - (type_constraint - (equality_constraint - (identifier (simple_identifier)) - (tuple_type - (simple_identifier) - (user_type (type_identifier)) - (simple_identifier) - (user_type (type_identifier)))))) - (class_body))) + (property_declaration + (modifiers + (property_modifier)) + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (line_string_literal + (line_str_text))) + (property_declaration + (modifiers + (property_modifier)) + (value_binding_pattern + (non_binding_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))) -============ +================================================================================ Deprecation -============ +================================================================================ class Computer { @available(*, deprecated, message: "See replacement: computeV2") func compute() { } @@ -849,59 +1128,84 @@ enum ComputeType { 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)))) - (value_binding_pattern (non_binding_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))))) - -=== + (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)))) + (value_binding_pattern + (non_binding_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 @@ -925,18 +1229,19 @@ let result: HasGeneric = HasGeneric(t: "Hello") (user_type (type_identifier)))) (constructor_suffix - (value_argument - (simple_identifier) - (line_string_literal (line_str_text))))))) - + (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 @@ -967,16 +1272,15 @@ func iterate(h: S) where S : Sequence, S.Element == P1 & P2 { } (type_identifier))))) (function_body))) - -=== +================================================================================ Protocol composition - enum declarations -=== +================================================================================ enum Foo { case bar(P1 & P2) } ---- +-------------------------------------------------------------------------------- (source_file (class_declaration @@ -990,14 +1294,13 @@ enum Foo { (user_type (type_identifier))))))) - -=== +================================================================================ Protocol composition in as expressions -=== +================================================================================ let result = greet("me") as P1 & P2 ---- +-------------------------------------------------------------------------------- (source_file (property_declaration @@ -1010,15 +1313,17 @@ let result = greet("me") as P1 & P2 (call_suffix (value_arguments (value_argument - (line_string_literal (line_str_text)))))) + (line_string_literal + (line_str_text)))))) (as_operator) (user_type (type_identifier)) (user_type (type_identifier))))) -=== + +================================================================================ Modify declarations -=== +================================================================================ public final class Foo { private var inner: T @@ -1032,7 +1337,7 @@ public final class Foo { } } ---- +-------------------------------------------------------------------------------- (source_file (class_declaration @@ -1072,9 +1377,9 @@ public final class Foo { (prefix_expression (simple_identifier)))))))))) -=== +================================================================================ Attributes on computed property declarations -=== +================================================================================ public var someVar: String { @inline(__always) @@ -1083,7 +1388,7 @@ public var someVar: String { } } ---- +-------------------------------------------------------------------------------- (source_file (property_declaration @@ -1103,20 +1408,21 @@ public var someVar: String { (simple_identifier)) (getter_specifier) (statements - (line_string_literal (line_str_text))))))) + (line_string_literal + (line_str_text))))))) -=== +================================================================================ Annotations on inheritance -=== +================================================================================ extension TrustMe: @unchecked Sendable { } ---- +-------------------------------------------------------------------------------- (source_file (class_declaration - (identifier - (simple_identifier)) + (user_type + (type_identifier)) (attribute (user_type (type_identifier))) @@ -1124,4 +1430,3 @@ extension TrustMe: @unchecked Sendable { } (user_type (type_identifier))) (class_body))) - diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 3d140b1f0..d474906fc 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -1,91 +1,121 @@ -================== +================================================================================ Multiplication expression -================== +================================================================================ 45 * 3 ---- +-------------------------------------------------------------------------------- -(source_file (multiplicative_expression (integer_literal) (integer_literal))) +(source_file + (multiplicative_expression + (integer_literal) + (integer_literal))) -================== +================================================================================ Subtraction expression -================== +================================================================================ 45 - 3 ---- +-------------------------------------------------------------------------------- -(source_file (additive_expression (integer_literal) (integer_literal))) +(source_file + (additive_expression + (integer_literal) + (integer_literal))) -================== +================================================================================ Nil-coalescing expression -================== +================================================================================ a ?? 0 ---- +-------------------------------------------------------------------------------- -(source_file (nil_coalescing_expression (simple_identifier) (integer_literal))) +(source_file + (nil_coalescing_expression + (simple_identifier) + (integer_literal))) -================== +================================================================================ Comparison -================== +================================================================================ a < b ---- +-------------------------------------------------------------------------------- -(source_file (comparison_expression (simple_identifier) (simple_identifier))) +(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_expression + (simple_identifier) + (simple_identifier)) + (conjunction_expression + (simple_identifier) + (simple_identifier))) -================== +================================================================================ 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))) + (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)))) + (navigation_expression + (simple_identifier) + (navigation_suffix + (integer_literal))) + (navigation_expression + (simple_identifier) + (navigation_suffix + (integer_literal)))) -================== +================================================================================ Ternary expression -================== +================================================================================ a ? b : c @@ -93,26 +123,32 @@ 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_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 @@ -123,13 +159,13 @@ if a ? b : c == d { (simple_identifier) (simple_identifier))))) -=== +================================================================================ Ternary with a function at the end -=== +================================================================================ foo() ? bar() : baz() ---- +-------------------------------------------------------------------------------- (source_file (ternary_expression @@ -146,27 +182,27 @@ foo() ? bar() : baz() (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)) +(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 @@ -174,192 +210,265 @@ let c = array[safe: index] let d = weirdType[indexesByField, and: anotherField] let e = array[...] ---- +-------------------------------------------------------------------------------- - (source_file - (property_declaration - (value_binding_pattern - (non_binding_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 - (value_binding_pattern - (non_binding_pattern (simple_identifier))) - (call_expression - (simple_identifier) - (call_suffix (value_arguments (value_argument (simple_identifier) (simple_identifier)))))) - (property_declaration - (value_binding_pattern - (non_binding_pattern (simple_identifier))) - (call_expression +(source_file + (property_declaration + (value_binding_pattern + (non_binding_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 + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument (simple_identifier) - (call_suffix - (value_arguments - (value_argument (simple_identifier)) - (value_argument (simple_identifier) (simple_identifier)))))) - (property_declaration - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (call_expression + (simple_identifier)))))) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (simple_identifier)) + (value_argument (simple_identifier) - (call_suffix - (value_arguments - (value_argument (fully_open_range))))))) + (simple_identifier)))))) + (property_declaration + (value_binding_pattern + (non_binding_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 + (directly_assignable_expression + (self_expression)) + (prefix_expression + (simple_identifier)))) -================== +================================================================================ Assignment -================== +================================================================================ let one = 1 var two: Int = 2 _ = someCall() ---- +-------------------------------------------------------------------------------- (source_file - (property_declaration - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (integer_literal)) - (property_declaration - (value_binding_pattern (non_binding_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))))) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (integer_literal)) + (property_declaration + (value_binding_pattern + (non_binding_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))) + (assignment + (directly_assignable_expression + (tuple_expression + (simple_identifier) (simple_identifier))) + (simple_identifier))) -================== +================================================================================ Implicit member expression -================== +================================================================================ let a: SomeClass = .someInstance ---- +-------------------------------------------------------------------------------- (source_file - (property_declaration - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (type_annotation (user_type (type_identifier))) - (prefix_expression (simple_identifier)))) + (property_declaration + (value_binding_pattern + (non_binding_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 - (value_binding_pattern - (non_binding_pattern - (simple_identifier))) - (type_annotation - (tuple_type - (user_type - (type_identifier)) - (user_type - (type_identifier)))) - (tuple_expression - (integer_literal) - (integer_literal))) - (control_transfer_statement - (tuple_expression - (simple_identifier) - (integer_literal) - (simple_identifier) - (integer_literal))))))) +(source_file + (function_declaration + (simple_identifier) + (function_body + (statements + (property_declaration + (value_binding_pattern + (non_binding_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))))))) + (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 - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (constructor_expression - (user_type (type_identifier) (type_arguments (user_type (type_identifier)))) - (constructor_suffix))) - (property_declaration - (value_binding_pattern (non_binding_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)))) - -================== +-------------------------------------------------------------------------------- + +(source_file + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (constructor_expression + (user_type + (type_identifier) + (type_arguments + (user_type + (type_identifier)))) + (constructor_suffix + (value_arguments)))) + (property_declaration + (value_binding_pattern + (non_binding_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]) { } @@ -367,136 +476,191 @@ func modifyThis(_ toModify: inout [String: String]) { var this = [:] modifyThis(&this) ---- -(source_file - (function_declaration - (simple_identifier) - (external_parameter_name) - (parameter (simple_identifier) - (parameter_modifiers (parameter_modifier)) - (dictionary_type (user_type (type_identifier)) (user_type (type_identifier)))) - (function_body)) - (property_declaration - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (dictionary_literal)) - (call_expression - (simple_identifier) - (call_suffix (value_arguments (value_argument (prefix_expression (simple_identifier))))))) +-------------------------------------------------------------------------------- +(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 + (value_binding_pattern + (non_binding_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 - (value_binding_pattern (non_binding_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 - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (selector_expression (navigation_expression (self_expression) (navigation_suffix (simple_identifier))))) - (property_declaration - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (selector_expression (navigation_expression (self_expression) (navigation_suffix (simple_identifier)))))) - -================== + (property_declaration + (value_binding_pattern + (non_binding_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 + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (selector_expression + (navigation_expression + (self_expression) + (navigation_suffix + (simple_identifier))))) + (property_declaration + (value_binding_pattern + (non_binding_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)))))) + (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 - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (ternary_expression - (tuple_expression (equality_expression (simple_identifier))) - (array_literal (prefix_expression (simple_identifier))) - (array_literal))) - (property_declaration - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (type_annotation (user_type (type_identifier))) - (ternary_expression - (simple_identifier) - (prefix_expression (simple_identifier)) - (prefix_expression (simple_identifier))))) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (ternary_expression + (tuple_expression + (equality_expression + (simple_identifier))) + (array_literal + (prefix_expression + (simple_identifier))) + (array_literal))) + (property_declaration + (value_binding_pattern + (non_binding_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 @@ -738,13 +913,13 @@ checkThat(dict is Dictionary) (user_type (type_identifier)))))))))) -=== +================================================================================ Navigation expression involving explicit type parameters -=== +================================================================================ SignalProducer<(), CarthageError>.empty ---- +-------------------------------------------------------------------------------- (source_file (navigation_expression @@ -757,9 +932,9 @@ SignalProducer<(), CarthageError>.empty (navigation_suffix (simple_identifier)))) -=== +================================================================================ Suppressing the syntactic significance of a newline -=== +================================================================================ let _ = (1+2) / 3 @@ -771,7 +946,7 @@ let two = 2 + 2 - 2 ---- +-------------------------------------------------------------------------------- (source_file (property_declaration @@ -793,24 +968,24 @@ let two = 2 (additive_expression (integer_literal) (integer_literal))) - (integer_literal))) - (property_declaration - (value_binding_pattern - (non_binding_pattern - (simple_identifier))) - (additive_expression - (additive_expression - (integer_literal) - (integer_literal)) - (integer_literal)))) + (integer_literal))) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (additive_expression + (additive_expression + (integer_literal) + (integer_literal)) + (integer_literal)))) -=== +================================================================================ Simple try -=== +================================================================================ try foo() ---- +-------------------------------------------------------------------------------- (source_file (try_expression @@ -819,28 +994,31 @@ try foo() (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))) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments))) (integer_literal) (integer_literal)))) -=== +================================================================================ Simple await -=== +================================================================================ await foo() ---- +-------------------------------------------------------------------------------- (source_file (await_expression @@ -849,14 +1027,14 @@ await foo() (call_suffix (value_arguments))))) -=== +================================================================================ try await -=== +================================================================================ try await foo() await try foo() ---- +-------------------------------------------------------------------------------- (source_file (try_expression @@ -872,31 +1050,33 @@ await try foo() (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))) + (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 @@ -910,16 +1090,16 @@ for try await value in values { (value_argument (simple_identifier)))))))) -=== +================================================================================ Negation at the start of a line -=== +================================================================================ let a = false !a ---- +-------------------------------------------------------------------------------- (source_file (property_declaration diff --git a/corpus/functions.txt b/corpus/functions.txt index 32e66f11f..fba6e7444 100755 --- a/corpus/functions.txt +++ b/corpus/functions.txt @@ -1,54 +1,67 @@ -================== +================================================================================ Top-level functions -================== +================================================================================ func main() {} ---- +-------------------------------------------------------------------------------- (source_file - (function_declaration - (simple_identifier) - (function_body))) + (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))) + (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))) - -================== + (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]) {} @@ -58,80 +71,99 @@ 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 + (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) - (user_type (type_identifier))) - (function_body - (statements - (control_transfer_statement - (additive_expression - (simple_identifier) (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) - (external_parameter_name) - (parameter - (simple_identifier) - (user_type (type_identifier))) - (external_parameter_name) - (parameter + (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) - (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)))))) + (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] { @@ -146,49 +178,68 @@ 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))))) - -================== + (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))) - -================= + (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 @@ -202,63 +253,98 @@ 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) + (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) - (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) + (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) - (type_arguments (user_type (type_identifier))))) - (user_type (type_identifier)) - (function_body - (statements - (control_transfer_statement - (boolean_literal)))))) - - -================== + (type_identifier))))) + (user_type + (type_identifier)) + (function_body + (statements + (control_transfer_statement + (boolean_literal)))))) + +================================================================================ Custom operators -================== +================================================================================ precedencegroup MyPrecedence { associativity: left @@ -268,24 +354,32 @@ precedencegroup MyPrecedence { infix operator -=- : MyPrecedence ---- +-------------------------------------------------------------------------------- (source_file - (precedence_group_declaration + (precedence_group_declaration + (simple_identifier) + (precedence_group_attributes + (precedence_group_attribute + (simple_identifier) + (simple_identifier)) + (precedence_group_attribute (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))) + (boolean_literal)) + (precedence_group_attribute + (simple_identifier) + (simple_identifier)))) + (operator_declaration + (custom_operator) + (simple_identifier))) -=== +================================================================================ Custom operator with another operator as a prefix -=== +================================================================================ let messageCoerced = error ??? "nil" ---- +-------------------------------------------------------------------------------- (source_file (property_declaration @@ -295,39 +389,45 @@ let messageCoerced = error ??? "nil" (infix_expression (simple_identifier) (custom_operator) - (line_string_literal (line_str_text))))) + (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))))))) - - -================== + (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() @@ -335,278 +435,361 @@ func maybe() throws -> Int { return -2 } ---- +-------------------------------------------------------------------------------- (source_file - (function_declaration - (simple_identifier) - (async) - (user_type (type_identifier)) - (function_body - (statements - (control_transfer_statement (prefix_expression (integer_literal)))))) - (function_declaration - (simple_identifier) - (async) - (throws) - (user_type (type_identifier)) - (function_body - (statements - (control_transfer_statement (prefix_expression (integer_literal))))))) - - -================== + (function_declaration + (simple_identifier) + (async) + (user_type + (type_identifier)) + (function_body + (statements + (control_transfer_statement + (prefix_expression + (integer_literal)))))) + (function_declaration + (simple_identifier) + (async) + (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 - (user_type (type_identifier))) - (throws) - (user_type (type_identifier)))) - (function_body))) - - -================== + (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 (simple_identifier))) - (multiline_comment))))) -================== + (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 (call_expression - (call_expression - (simple_identifier) - (call_suffix (value_arguments (value_argument (integer_literal))))) - (call_suffix - (lambda_literal - (statements - (call_expression - (navigation_expression (simple_identifier) (navigation_suffix (simple_identifier))) - (call_suffix (value_arguments)))))))) -================== + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (integer_literal))))) + (call_suffix + (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 (simple_identifier)) - (user_type (type_identifier))))))) + (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 (simple_identifier) - (parameter_modifiers (parameter_modifier)) - (user_type (type_identifier)))))))) - -================== + (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 - (capture_list - (attribute (user_type (type_identifier))) - (ownership_modifier) - (simple_identifier) - (simple_identifier)) - (lambda_function_type (lambda_function_type_parameters (simple_identifier))))))) - -================== + (call_expression + (simple_identifier) + (call_suffix + (lambda_literal + (capture_list + (attribute + (user_type + (type_identifier))) + (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)))))) +-------------------------------------------------------------------------------- -================== +(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))))))) + (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 (self_expression) (simple_identifier)) - (user_type (type_identifier))))))) + (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 - (simple_identifier) - (optional_type (user_type (type_identifier))))) - (statements - (call_expression (simple_identifier) - (call_suffix - (value_arguments (value_argument (simple_identifier)))))))))) + (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))))))) - -=============== +(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)) - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (type_annotation - (function_type - (tuple_type - (wildcard_pattern) - (simple_identifier) - (user_type (type_identifier))) - (throws) - (user_type (type_identifier)))) - (lambda_literal - (lambda_function_type (lambda_function_type_parameters (simple_identifier)))))) - -=============== + (property_declaration + (modifiers + (visibility_modifier) + (property_behavior_modifier)) + (value_binding_pattern + (non_binding_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)))) + (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) - (user_type (type_identifier)) - (function_body (statements (control_transfer_statement (line_string_literal))))) - (function_declaration - (simple_identifier) - (user_type (type_identifier)) - (user_type (type_identifier)) - (function_body (statements - (control_transfer_statement (call_expression (simple_identifier) (call_suffix (value_arguments)))))))) + (function_declaration + (simple_identifier) + (opaque_type + (user_type + (type_identifier))) + (function_body + (statements + (control_transfer_statement + (line_string_literal))))) + (function_declaration + (simple_identifier) + (user_type + (type_identifier)) + (user_type + (type_identifier)) + (function_body + (statements + (control_transfer_statement + (call_expression + (simple_identifier) + (call_suffix + (value_arguments)))))))) diff --git a/corpus/literals.txt b/corpus/literals.txt index fbd3bb32f..97ce6d283 100755 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -1,29 +1,30 @@ -================== +================================================================================ Simple identifiers -================== +================================================================================ helloWorld ---- +-------------------------------------------------------------------------------- -(source_file (simple_identifier)) +(source_file + (simple_identifier)) -================== +================================================================================ Boolean literals -================== +================================================================================ true false ---- +-------------------------------------------------------------------------------- (source_file - (boolean_literal) - (boolean_literal)) + (boolean_literal) + (boolean_literal)) -================== +================================================================================ String literals -================== +================================================================================ "Hello World!" """ @@ -32,19 +33,21 @@ 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))) - -================== + (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" """ @@ -58,27 +61,33 @@ Multiline 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)) - -================== + (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 @@ -87,17 +96,16 @@ Custom interpolation (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 @@ -105,9 +113,9 @@ This is a string that acts as though it \ (str_escaped_char) (multi_line_str_text))) -================== +================================================================================ Integer literals -================== +================================================================================ 0 8 @@ -117,20 +125,20 @@ Integer literals 0o774 0b01 ---- +-------------------------------------------------------------------------------- (source_file - (integer_literal) - (integer_literal) - (integer_literal) - (integer_literal) - (hex_literal) - (oct_literal) - (bin_literal)) - -================== + (integer_literal) + (integer_literal) + (integer_literal) + (integer_literal) + (hex_literal) + (oct_literal) + (bin_literal)) + +================================================================================ Real literals -================== +================================================================================ 0.0 -23.434 @@ -138,39 +146,56 @@ Real literals 4.3 +53.9e-3 ---- +-------------------------------------------------------------------------------- (source_file - (real_literal) - (prefix_expression (real_literal)) - (real_literal) - (real_literal) - (prefix_expression (real_literal))) - -================== + (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 - (value_binding_pattern - (non_binding_pattern (simple_identifier))) - (array_literal (integer_literal) (integer_literal) (integer_literal))) - (property_declaration - (value_binding_pattern - (non_binding_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))))) -===== + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (array_literal + (integer_literal) + (integer_literal) + (integer_literal))) + (property_declaration + (value_binding_pattern + (non_binding_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(), @@ -179,41 +204,51 @@ Trailing commas [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))) + (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 (value_binding_pattern (non_binding_pattern (wildcard_pattern))))) - + (property_declaration + (value_binding_pattern + (non_binding_pattern + (wildcard_pattern))))) -================== +================================================================================ Raw strings -================== +================================================================================ let _ = #"Hello, world!"# let _ = ##"Hello, so-called "world"!"## ---- +-------------------------------------------------------------------------------- (source_file (property_declaration @@ -229,9 +264,9 @@ let _ = ##"Hello, so-called "world"!"## (raw_string_literal (raw_str_end_part)))) -================== +================================================================================ Raw strings with interpolation -================== +================================================================================ extension URL { func html(withTitle title: String) -> String { @@ -239,17 +274,17 @@ extension URL { } } ---- +-------------------------------------------------------------------------------- (source_file (class_declaration - (identifier - (simple_identifier)) + (user_type + (type_identifier)) (class_body (function_declaration (simple_identifier) - (external_parameter_name) (parameter + (simple_identifier) (simple_identifier) (user_type (type_identifier))) @@ -261,19 +296,19 @@ extension URL { (raw_string_literal (raw_str_part) (raw_str_interpolation - (raw_str_interpolation_start) - (interpolated_expression - (simple_identifier))) + (raw_str_interpolation_start) + (interpolated_expression + (simple_identifier))) (raw_str_part) (raw_str_interpolation - (raw_str_interpolation_start) - (interpolated_expression - (simple_identifier))) + (raw_str_interpolation_start) + (interpolated_expression + (simple_identifier))) (raw_str_end_part))))))))) -================== +================================================================================ Raw strings interpolation edge cases -================== +================================================================================ print(#"Hello \#(world /* commented out)"#) */ )"#) @@ -281,7 +316,7 @@ let _ = ##"Multiple pound signs \##(interpolated): still one part "# not done ye let _ = ##"Fake \#(interpolation) and unused # pound signs "## let _ = ##"\##(a)\#(b)\##(c)\#(d)"# ##"## ---- +-------------------------------------------------------------------------------- (source_file (call_expression @@ -292,10 +327,10 @@ let _ = ##"\##(a)\#(b)\##(c)\#(d)"# ##"## (raw_string_literal (raw_str_part) (raw_str_interpolation - (raw_str_interpolation_start) - (interpolated_expression - (simple_identifier)) - (multiline_comment)) + (raw_str_interpolation_start) + (interpolated_expression + (simple_identifier)) + (multiline_comment)) (raw_str_end_part)))))) (property_declaration (value_binding_pattern @@ -304,9 +339,9 @@ let _ = ##"\##(a)\#(b)\##(c)\#(d)"# ##"## (raw_string_literal (raw_str_part) (raw_str_interpolation - (raw_str_interpolation_start) - (interpolated_expression - (simple_identifier))) + (raw_str_interpolation_start) + (interpolated_expression + (simple_identifier))) (raw_str_end_part))) (property_declaration (value_binding_pattern @@ -321,50 +356,54 @@ let _ = ##"\##(a)\#(b)\##(c)\#(d)"# ##"## (raw_string_literal (raw_str_part) (raw_str_interpolation - (raw_str_interpolation_start) - (interpolated_expression - (simple_identifier))) + (raw_str_interpolation_start) + (interpolated_expression + (simple_identifier))) (raw_str_part) (raw_str_interpolation - (raw_str_interpolation_start) - (interpolated_expression - (simple_identifier))) + (raw_str_interpolation_start) + (interpolated_expression + (simple_identifier))) (raw_str_end_part)))) -=== +================================================================================ Unicode escape sequences -=== +================================================================================ let unicodeEscaping = "\u{8}" let anotherUnicode = "…\u{2060}" let infinity = "\u{221E}" ---- +-------------------------------------------------------------------------------- (source_file (property_declaration (value_binding_pattern (non_binding_pattern (simple_identifier))) - (line_string_literal (str_escaped_char))) + (line_string_literal + (str_escaped_char))) (property_declaration (value_binding_pattern (non_binding_pattern (simple_identifier))) - (line_string_literal (line_str_text) (str_escaped_char))) + (line_string_literal + (line_str_text) + (str_escaped_char))) (property_declaration (value_binding_pattern (non_binding_pattern (simple_identifier))) - (line_string_literal (str_escaped_char)))) + (line_string_literal + (str_escaped_char)))) -=== +================================================================================ Playground literals -=== +================================================================================ let playgroundLiteral = #imageLiteral(resourceName: "heart") ---- +-------------------------------------------------------------------------------- (source_file (property_declaration @@ -372,5 +411,5 @@ let playgroundLiteral = #imageLiteral(resourceName: "heart") (non_binding_pattern (simple_identifier))) (simple_identifier) - (line_string_literal (line_str_text)))) - + (line_string_literal + (line_str_text)))) diff --git a/corpus/statements.txt b/corpus/statements.txt index a5f675287..c45f70823 100755 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -1,49 +1,65 @@ -================== +================================================================================ Let statements -================== +================================================================================ let singleVariable = 1 let (tuple1, tuple2) = (2, 3) let `default` = 0 ---- +-------------------------------------------------------------------------------- (source_file - (property_declaration - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (integer_literal)) - (property_declaration - (value_binding_pattern - (non_binding_pattern - (non_binding_pattern (simple_identifier)) - (non_binding_pattern (simple_identifier)))) - (tuple_expression (integer_literal) (integer_literal))) - (property_declaration - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (integer_literal))) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (integer_literal)) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (non_binding_pattern + (simple_identifier)) + (non_binding_pattern + (simple_identifier)))) + (tuple_expression + (integer_literal) + (integer_literal))) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (integer_literal))) -================== +================================================================================ C-style compound declaration -================== +================================================================================ var one = 1, two = 2, four = 4, eight = 8 ---- +-------------------------------------------------------------------------------- (source_file - (property_declaration - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (integer_literal) - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (integer_literal) - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (integer_literal) - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (integer_literal))) - -================== + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (integer_literal) + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (integer_literal) + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (integer_literal) + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (integer_literal))) + +================================================================================ For statements -================== +================================================================================ for value: MyType in values { print(value) @@ -57,44 +73,50 @@ for case .some((.some(0), .some(1))) in crazyValues { for var value in values where value.isExcellent() { } ---- +-------------------------------------------------------------------------------- (source_file - (for_statement - (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 - (simple_identifier) - (simple_identifier) - (simple_identifier)) - (for_statement - (simple_identifier) - (simple_identifier) - (integer_literal) - (simple_identifier) - (integer_literal) - (simple_identifier)) - (for_statement - (non_binding_pattern (simple_identifier)) + (for_statement + (simple_identifier) + (type_annotation + (user_type + (type_identifier))) + (simple_identifier) + (statements + (call_expression (simple_identifier) - (where_clause - (where_keyword) - (call_expression - (navigation_expression - (simple_identifier) - (navigation_suffix (simple_identifier))) - (call_suffix (value_arguments)))))) + (call_suffix + (value_arguments + (value_argument + (simple_identifier))))))) + (for_statement + (simple_identifier) + (simple_identifier) + (simple_identifier)) + (for_statement + (simple_identifier) + (simple_identifier) + (integer_literal) + (simple_identifier) + (integer_literal) + (simple_identifier)) + (for_statement + (non_binding_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 { } @@ -111,42 +133,47 @@ outerLoop: for outerObject in dataArray { } } ---- +-------------------------------------------------------------------------------- (source_file - (for_statement - (non_binding_pattern - (non_binding_pattern - (simple_identifier)) - (user_type (type_identifier))) + (for_statement + (non_binding_pattern + (non_binding_pattern (simple_identifier)) - (for_statement - (non_binding_pattern - (non_binding_pattern - (simple_identifier)) - (non_binding_pattern - (simple_identifier))) + (user_type + (type_identifier))) + (simple_identifier)) + (for_statement + (non_binding_pattern + (non_binding_pattern (simple_identifier)) - (statement_label) - (for_statement + (non_binding_pattern + (simple_identifier))) + (simple_identifier)) + (statement_label) + (for_statement + (simple_identifier) + (simple_identifier) + (statements + (for_statement (simple_identifier) (simple_identifier) (statements - (for_statement - (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))))))))) - -================== + (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 { // ... @@ -160,22 +187,40 @@ 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 - (value_binding_pattern (non_binding_pattern (simple_identifier) (simple_identifier))) - (call_expression (simple_identifier) (call_suffix (value_arguments))) - (comment)) - (repeat_while_statement (comment) (call_expression (simple_identifier) (call_suffix (value_arguments))))) - -================== + (while_statement + (comparison_expression + (simple_identifier) + (integer_literal)) + (comparison_expression + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (integer_literal)) + (comment)) + (while_statement + (value_binding_pattern + (non_binding_pattern + (simple_identifier) + (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" @@ -184,26 +229,43 @@ switch something { default: return ":)" } ---- +-------------------------------------------------------------------------------- + (source_file - (switch_statement - (simple_identifier) - (switch_entry - (switch_pattern (simple_identifier)) - (statements (control_transfer_statement (line_string_literal (line_str_text))))) - (switch_entry - (switch_pattern (simple_identifier)) - (statements (control_transfer_statement (line_string_literal (line_str_text))))) - (switch_entry - (switch_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))))))) - -================== + (switch_statement + (simple_identifier) + (switch_entry + (switch_pattern + (simple_identifier)) + (statements + (control_transfer_statement + (line_string_literal + (line_str_text))))) + (switch_entry + (switch_pattern + (simple_identifier)) + (statements + (control_transfer_statement + (line_string_literal + (line_str_text))))) + (switch_entry + (switch_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 @@ -218,42 +280,66 @@ case let .isExecutable(path?): return "File is executable: \(path)" } ---- +-------------------------------------------------------------------------------- + (source_file - (switch_statement + (switch_statement + (simple_identifier) + (switch_entry + (switch_pattern + (non_binding_pattern + (simple_identifier) + (wildcard_pattern) + (simple_identifier))) + (statements + (simple_identifier))) + (switch_entry + (switch_pattern + (simple_identifier)) + (where_keyword) + (simple_identifier) + (switch_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 (simple_identifier) - (switch_entry - (switch_pattern - (non_binding_pattern - (simple_identifier) - (wildcard_pattern) - (simple_identifier))) - (statements (simple_identifier))) - (switch_entry - (switch_pattern (simple_identifier)) - (where_keyword) - (simple_identifier) - (switch_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 - (simple_identifier) - (non_binding_pattern (simple_identifier))) - (statements (control_transfer_statement (line_string_literal (line_str_text) (interpolated_expression (simple_identifier)))))) - (switch_entry - (switch_pattern - (non_binding_pattern (simple_identifier) (simple_identifier))) - (statements (control_transfer_statement (line_string_literal (line_str_text) (interpolated_expression (simple_identifier)))))))) - -================== + (non_binding_pattern + (simple_identifier))) + (statements + (control_transfer_statement + (line_string_literal + (line_str_text) + (interpolated_expression + (simple_identifier)))))) + (switch_entry + (switch_pattern + (non_binding_pattern + (simple_identifier) + (simple_identifier))) + (statements + (control_transfer_statement + (line_string_literal + (line_str_text) + (interpolated_expression + (simple_identifier)))))))) + +================================================================================ Imports -================== +================================================================================ import Foundation import class SomeModule.SomeClass @@ -262,17 +348,26 @@ 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)))) + (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 @@ -288,61 +383,76 @@ do { let c = 1 } ---- +-------------------------------------------------------------------------------- + (source_file - (do_statement - (statements - (property_declaration - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (integer_literal))) - (catch_block - (catch_keyword) - (binding_pattern - (binding_pattern - (non_binding_pattern - (simple_identifier))) - (user_type (type_identifier)))) - (catch_block - (catch_keyword) - (binding_pattern - (user_type (type_identifier)) - (simple_identifier))) - (catch_block - (catch_keyword) - (binding_pattern - (binding_pattern - (non_binding_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) - (binding_pattern - (non_binding_pattern - (user_type (type_identifier)) - (simple_identifier) - (simple_identifier)))) - (catch_block - (catch_keyword) - (binding_pattern - (user_type (type_identifier)) - (simple_identifier) - (simple_identifier) - (non_binding_pattern (simple_identifier)))) - (catch_block (catch_keyword))) - (do_statement - (statements - (property_declaration - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (integer_literal))))) + (do_statement + (statements + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (integer_literal))) + (catch_block + (catch_keyword) + (binding_pattern + (binding_pattern + (non_binding_pattern + (simple_identifier))) + (user_type + (type_identifier)))) + (catch_block + (catch_keyword) + (binding_pattern + (user_type + (type_identifier)) + (simple_identifier))) + (catch_block + (catch_keyword) + (binding_pattern + (binding_pattern + (non_binding_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) + (binding_pattern + (non_binding_pattern + (user_type + (type_identifier)) + (simple_identifier) + (simple_identifier)))) + (catch_block + (catch_keyword) + (binding_pattern + (user_type + (type_identifier)) + (simple_identifier) + (simple_identifier) + (non_binding_pattern + (simple_identifier)))) + (catch_block + (catch_keyword))) + (do_statement + (statements + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (integer_literal))))) -================== +================================================================================ If let statements -================== +================================================================================ if let something = doThing() { anotherThing() @@ -357,29 +467,58 @@ if let something: MyType = doThing() { someLabel: if a.isEmpty, let b = getB() { } ---- +-------------------------------------------------------------------------------- (source_file - (if_statement - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (call_expression (simple_identifier) (call_suffix (value_arguments))) - (statements (call_expression (simple_identifier) (call_suffix (value_arguments))))) - (if_statement - (binding_pattern (simple_identifier) (wildcard_pattern)) - (call_expression (simple_identifier) (call_suffix (value_arguments)))) - (if_statement - (value_binding_pattern (non_binding_pattern (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))) - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (call_expression (simple_identifier) (call_suffix (value_arguments))))) + (if_statement + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments))) + (statements + (call_expression + (simple_identifier) + (call_suffix + (value_arguments))))) + (if_statement + (binding_pattern + (simple_identifier) + (wildcard_pattern)) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments)))) + (if_statement + (value_binding_pattern + (non_binding_pattern + (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))) + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments))))) -=============== +================================================================================ If let with function call -=============== +================================================================================ func doSomething() { if let a = try? Foo.getValue("key") { @@ -388,36 +527,37 @@ func doSomething() { return defaultValue } ---- +-------------------------------------------------------------------------------- - (source_file - (function_declaration - (simple_identifier) - (function_body - (statements - (if_statement - (value_binding_pattern - (non_binding_pattern +(source_file + (function_declaration + (simple_identifier) + (function_body + (statements + (if_statement + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (try_expression + (call_expression + (navigation_expression + (simple_identifier) + (navigation_suffix (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)))) + (call_suffix + (value_arguments + (value_argument + (line_string_literal + (line_str_text))))))) + (statements (control_transfer_statement - (simple_identifier)))))) + (simple_identifier)))) + (control_transfer_statement + (simple_identifier)))))) -================== +================================================================================ Compound if let -================== +================================================================================ if let something = doThing(), something.isSpecial() { anotherThing() @@ -427,30 +567,52 @@ if let something = doThing(), let somethingElse = something.somethingElse() { // Nothing } ---- +-------------------------------------------------------------------------------- (source_file - (if_statement - (value_binding_pattern (non_binding_pattern (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 - (value_binding_pattern - (non_binding_pattern (simple_identifier))) - (call_expression (simple_identifier) (call_suffix (value_arguments))) - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (call_expression - (navigation_expression (simple_identifier) (navigation_suffix (simple_identifier))) - (call_suffix (value_arguments))) - (comment))) - + (if_statement + (value_binding_pattern + (non_binding_pattern + (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 + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments))) + (value_binding_pattern + (non_binding_pattern + (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 { @@ -461,24 +623,34 @@ if a == b { else if let cPrime = c { } ---- +-------------------------------------------------------------------------------- (source_file + (if_statement + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (simple_identifier) + (else) (if_statement - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (simple_identifier) - (else) - (if_statement (value_binding_pattern (non_binding_pattern (simple_identifier))) (simple_identifier))) + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (simple_identifier))) + (if_statement + (equality_expression + (simple_identifier) + (simple_identifier)) + (else) (if_statement - (equality_expression (simple_identifier) (simple_identifier)) - (else) - (if_statement - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (simple_identifier)))) + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (simple_identifier)))) -=== +================================================================================ Else interacts with comments -=== +================================================================================ if foo { fooVal = 0; // A comment @@ -487,7 +659,7 @@ if foo { else if bar { } ---- +-------------------------------------------------------------------------------- (source_file (if_statement @@ -503,9 +675,9 @@ else if bar { (if_statement (simple_identifier)))) -================== +================================================================================ Guard statements -================== +================================================================================ guard let something = doThing() else { anotherThing() @@ -520,53 +692,93 @@ guard case .someCase(ident: let foo)? = otherThing() else { guard case justIdentifier = bound else { } ---- +-------------------------------------------------------------------------------- (source_file - (guard_statement - (value_binding_pattern (non_binding_pattern (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 - (binding_pattern - (simple_identifier) (simple_identifier) - (non_binding_pattern (simple_identifier))) - (call_expression (simple_identifier) (call_suffix (value_arguments))) (else)) - (guard_statement (binding_pattern (simple_identifier)) (simple_identifier) (else))) -================== + (guard_statement + (value_binding_pattern + (non_binding_pattern + (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 + (binding_pattern + (simple_identifier) + (simple_identifier) + (non_binding_pattern + (simple_identifier))) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments))) + (else)) + (guard_statement + (binding_pattern + (simple_identifier)) + (simple_identifier) + (else))) + +================================================================================ Compound guard -================== +================================================================================ guard let something = doThing(), something.isSpecial() else { anotherThing() } ---- +-------------------------------------------------------------------------------- (source_file - (guard_statement - (value_binding_pattern (non_binding_pattern (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)))))) - -=== + (guard_statement + (value_binding_pattern + (non_binding_pattern + (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 @@ -584,9 +796,9 @@ guard case let size: Int = variable.size else { (statements (control_transfer_statement)))) -================ +================================================================================ Availability conditions -================ +================================================================================ if #available(iOS 14.0, *) { doSomething() @@ -598,27 +810,42 @@ if #available(macOS 10.12.0, *) { 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))))) - - -=== + (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 @@ -630,9 +857,9 @@ let ø = unicode() (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 @@ -647,7 +874,7 @@ public init() { func innerFunc() { } } ---- +-------------------------------------------------------------------------------- (source_file (function_declaration @@ -679,9 +906,9 @@ public init() { (simple_identifier) (function_body)))))) -=== +================================================================================ Compiler diagnostics -=== +================================================================================ #if SOME_FLAG #error("SOME_FLAG must not be enabled!") @@ -691,7 +918,7 @@ Compiler diagnostics #sourceLocation(file: "SomeFile.swift", line: 99) #endif ---- +-------------------------------------------------------------------------------- (source_file (directive) @@ -701,4 +928,3 @@ Compiler diagnostics (directive) (directive) (directive)) - diff --git a/corpus/types.txt b/corpus/types.txt index a90cd06a2..544b3e3e0 100755 --- a/corpus/types.txt +++ b/corpus/types.txt @@ -1,229 +1,305 @@ -================== +================================================================================ 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)))) - -================== +(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)))) - -================== + (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)))) - -================== + (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)))))) + (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 (user_type (type_identifier))) - (user_type (type_identifier)))) - (as_expression - (simple_identifier) - (as_operator) - (function_type - (tuple_type - (parameter_modifiers (parameter_modifier)) - (user_type (type_identifier))) - (user_type (type_identifier))))) + (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 - (user_type (type_identifier)) - (user_type - (type_identifier) - (type_arguments (user_type (type_identifier)))) - (user_type (type_identifier))) - (user_type (type_identifier)))) - (as_expression - (simple_identifier) - (as_operator) - (function_type - (tuple_type - (user_type (type_identifier) (type_identifier)) - (tuple_type (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))) + (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 - (simple_identifier) - (user_type (type_identifier)) - (simple_identifier) - (user_type (type_identifier))) - (user_type (type_identifier)))) - (property_declaration - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (type_annotation - (tuple_type - (simple_identifier) - (user_type (type_identifier)) - (simple_identifier) - (user_type (type_identifier)))))) -================== + (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 + (value_binding_pattern + (non_binding_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)) - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (type_annotation - (optional_type - (dictionary_type - (user_type (type_identifier)) - (optional_type (user_type (type_identifier)))))))) -================== + (property_declaration + (modifiers + (visibility_modifier)) + (value_binding_pattern + (non_binding_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)) - (value_binding_pattern (non_binding_pattern (simple_identifier))) - (type_annotation - (dictionary_type - (user_type (type_identifier)) - (optional_type (user_type (type_identifier))))))) - -================== + (property_declaration + (modifiers + (visibility_modifier)) + (value_binding_pattern + (non_binding_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 (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)))))) - -=== + (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 @@ -231,7 +307,7 @@ protocol GetType { func getType() -> AnyObject.Type } ---- +-------------------------------------------------------------------------------- (source_file (assignment @@ -245,12 +321,12 @@ protocol GetType { (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)))))) + (simple_identifier)))) + (protocol_declaration + (type_identifier) + (protocol_body + (protocol_function_declaration + (simple_identifier) + (user_type + (type_identifier) + (type_identifier)))))) diff --git a/grammar.ts b/grammar.ts index 7d10cdbfd..ca21c3e52 100644 --- a/grammar.ts +++ b/grammar.ts @@ -112,8 +112,8 @@ module.exports = grammar({ [$.value_argument], // { (foo, bar) ... - [$._expression, $._lambda_parameter], - [$._primary_expression, $._lambda_parameter], + [$._expression, $.lambda_parameter], + [$._primary_expression, $.lambda_parameter], // (start: start, end: end) [$._tuple_type_item_identifier, $.tuple_expression], @@ -131,10 +131,10 @@ module.exports = grammar({ [$._additive_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], + [$.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 @@ -209,15 +209,15 @@ module.exports = grammar({ // the grammar sort it out. This isn't perfect, but it works well enough most of the time. $._semi, // Every one of the below operators will suppress a `_semi` if we encounter it after a newline. - $._arrow_operator, - $._dot_operator, - $._three_dot_operator, - $._open_ended_range_operator, - $._conjunction_operator, - $._disjunction_operator, - $._nil_coalescing_operator, - $._equal_sign, - $._eq_eq, + $._arrow_operator_custom, + $._dot_custom, + $._three_dot_operator_custom, + $._open_ended_range_operator_custom, + $._conjunction_operator_custom, + $._disjunction_operator_custom, + $._nil_coalescing_operator_custom, + $._eq_custom, + $._eq_eq_custom, $._plus_then_ws, // + symbol with whitespace after it $._minus_then_ws, // - symbol with whitespace after it $.bang, @@ -227,9 +227,9 @@ module.exports = grammar({ $.where_keyword, $.else, $.catch_keyword, - $._as, - $._as_quest, - $._as_bang, + $._as_custom, + $._as_quest_custom, + $._as_bang_custom, $.async, ], @@ -262,7 +262,7 @@ module.exports = grammar({ token(seq("$", LEXICAL_IDENTIFIER)) ), - identifier: ($) => sep1($.simple_identifier, $._dot_operator), + identifier: ($) => sep1($.simple_identifier, $._dot), // Literals @@ -358,7 +358,8 @@ module.exports = grammar({ // Types - https://docs.swift.org/swift-book/ReferenceManual/Types.html //////////////////////////////// - type_annotation: ($) => seq(":", $._possibly_implicitly_unwrapped_type), + type_annotation: ($) => + seq(":", field("type", $._possibly_implicitly_unwrapped_type)), _possibly_implicitly_unwrapped_type: ($) => seq($._type, optional(token.immediate("!"))), @@ -380,13 +381,13 @@ module.exports = grammar({ $.dictionary_type, $.optional_type, $.metatype, - $._opaque_type, + $.opaque_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_operator), + user_type: ($) => sep1($._simple_user_type, $._dot), _simple_user_type: ($) => prec.right( @@ -397,41 +398,50 @@ module.exports = grammar({ ) ), - tuple_type: ($) => seq("(", optional(sep1($._tuple_type_item, ",")), ")"), + tuple_type: ($) => + seq("(", optional(sep1(field("element", $.tuple_type_item), ",")), ")"), - _tuple_type_item: ($) => + tuple_type_item: ($) => prec( PRECS.expr, seq( optional($._tuple_type_item_identifier), optional($.parameter_modifiers), - $._type + field("type", $._type) ) ), _tuple_type_item_identifier: ($) => prec( PRECS.expr, - seq(optional($.wildcard_pattern), $.simple_identifier, ":") + seq( + optional($.wildcard_pattern), + field("name", $.simple_identifier), + ":" + ) ), function_type: ($) => seq( - $.tuple_type, + field("params", $.tuple_type), optional($.async), optional($.throws), $._arrow_operator, - $._type + field("return_type", $._type) ), - array_type: ($) => seq("[", $._type, "]"), + array_type: ($) => seq("[", field("element", $._type), "]"), - dictionary_type: ($) => seq("[", $._type, ":", $._type, "]"), + dictionary_type: ($) => + seq("[", field("key", $._type), ":", field("value", $._type), "]"), optional_type: ($) => prec.left( seq( - choice($.user_type, $.tuple_type, $.array_type, $.dictionary_type), + field( + "wrapped", + choice($.user_type, $.tuple_type, $.array_type, $.dictionary_type) + ), repeat1($._immediate_quest) ) ), @@ -442,7 +452,7 @@ module.exports = grammar({ _quest: ($) => "?", _immediate_quest: ($) => token.immediate("?"), - _opaque_type: ($) => seq("some", $.user_type), + opaque_type: ($) => seq("some", $.user_type), _protocol_composition_type: ($) => prec.right( @@ -488,14 +498,20 @@ module.exports = grammar({ postfix_expression: ($) => prec.left( PRECS.postfix_operations, - seq($._expression, $._postfix_unary_operator) + seq( + field("target", $._expression), + field("operation", $._postfix_unary_operator) + ) ), constructor_expression: ($) => prec( PRECS.call, seq( - choice($.array_type, $.dictionary_type, $.user_type), + field( + "constructed_type", + choice($.array_type, $.dictionary_type, $.user_type) + ), $.constructor_suffix ) ), @@ -504,8 +520,8 @@ module.exports = grammar({ prec.left( PRECS.navigation, seq( - choice($._navigable_type_expression, $._expression), - $.navigation_suffix + field("target", choice($._navigable_type_expression, $._expression)), + field("suffix", $.navigation_suffix) ) ), @@ -527,11 +543,17 @@ module.exports = grammar({ prefix_expression: ($) => prec.left( PRECS.prefix_operations, - seq($._prefix_unary_operator, $._expression) + seq( + field("operation", $._prefix_unary_operator), + field("target", $._expression) + ) ), as_expression: ($) => - prec.left(PRECS.as, seq($._expression, $.as_operator, $._type)), + prec.left( + PRECS.as, + seq(field("expr", $._expression), $.as_operator, field("type", $._type)) + ), selector_expression: ($) => seq( @@ -625,10 +647,8 @@ module.exports = grammar({ // Suffixes - indexing_suffix: ($) => seq("[", sep1($._expression, ","), "]"), - navigation_suffix: ($) => - seq($._dot_operator, choice($.simple_identifier, $.integer_literal)), + seq($._dot, choice($.simple_identifier, $.integer_literal)), call_suffix: ($) => prec( @@ -646,12 +666,15 @@ module.exports = grammar({ PRECS.call_suffix, seq( choice( - seq("(", optional(sep1($.value_argument, ",")), ")"), + alias($._constructor_value_arguments, $.value_arguments), $.lambda_literal ) ) ), + _constructor_value_arguments: ($) => + seq("(", optional(sep1($.value_argument, ",")), ")"), + type_arguments: ($) => prec.left(seq("<", sep1($._type, ","), ">")), value_arguments: ($) => @@ -667,8 +690,13 @@ module.exports = grammar({ seq( optional($.type_modifiers), choice( - repeat1(seq($.simple_identifier, ":")), - seq(optional(seq($.simple_identifier, ":")), $._expression) + repeat1( + seq(field("reference_specifier", $.simple_identifier), ":") + ), + seq( + optional(seq(field("name", $.simple_identifier), ":")), + field("value", $._expression) + ) ) ) ), @@ -678,18 +706,21 @@ module.exports = grammar({ PRECS.try, seq( $._try_operator, - 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, $.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)) + 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, $.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)) + ) ) ) ), @@ -699,12 +730,15 @@ module.exports = grammar({ PRECS.await, seq( $._await_operator, - 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)) + 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)) + ) ) ) ), @@ -714,15 +748,18 @@ module.exports = grammar({ prec.right( PRECS.ternary, seq( - $._expression, + field("condition", $._expression), $._quest, - $._expression, + field("if_true", $._expression), ":", prec.left( PRECS.ternary_suffix, - choice( - $._expression, - alias($.expr_hack_at_ternary_call, $.call_expression) + field( + "if_false", + choice( + $._expression, + alias($.expr_hack_at_ternary_call, $.call_expression) + ) ) ) ) @@ -766,7 +803,10 @@ module.exports = grammar({ seq( "(", sep1( - seq(optional(seq($.simple_identifier, ":")), $._expression), + seq( + optional(seq(field("name", $.simple_identifier), ":")), + field("value", $._expression) + ), "," ), ")" @@ -774,7 +814,12 @@ module.exports = grammar({ ), array_literal: ($) => - seq("[", optional(sep1($._expression, ",")), optional(","), "]"), + seq( + "[", + optional(sep1(field("element", $._expression), ",")), + optional(","), + "]" + ), dictionary_literal: ($) => seq( @@ -784,7 +829,8 @@ module.exports = grammar({ "]" ), - _dictionary_literal_item: ($) => seq($._expression, ":", $._expression), + _dictionary_literal_item: ($) => + seq(field("key", $._expression), ":", field("value", $._expression)), _special_literal: ($) => choice( @@ -818,17 +864,17 @@ module.exports = grammar({ ), capture_list: ($) => - seq(repeat($.attribute), "[", sep1($._capture_list_item, ","), "]"), + seq(repeat($.attribute), "[", sep1($.capture_list_item, ","), "]"), - _capture_list_item: ($) => + capture_list_item: ($) => choice( $.self_expression, prec( PRECS.expr, seq( optional($.ownership_modifier), - $.simple_identifier, - optional(seq($._equal_sign, $._expression)) + field("name", $.simple_identifier), + optional(seq($._equal_sign, field("value", $._expression))) ) ) ), @@ -844,25 +890,28 @@ module.exports = grammar({ optional($.async), optional($.throws), optional( - seq($._arrow_operator, $._possibly_implicitly_unwrapped_type) + seq( + $._arrow_operator, + field("return_type", $._possibly_implicitly_unwrapped_type) + ) ) ) ), - lambda_function_type_parameters: ($) => sep1($._lambda_parameter, ","), + lambda_function_type_parameters: ($) => sep1($.lambda_parameter, ","), - _lambda_parameter: ($) => + lambda_parameter: ($) => choice( $.self_expression, - prec(PRECS.expr, $.simple_identifier), + prec(PRECS.expr, field("name", $.simple_identifier)), prec( PRECS.expr, seq( - optional($.simple_identifier), - $.simple_identifier, + optional(field("external_name", $.simple_identifier)), + field("name", $.simple_identifier), ":", optional($.parameter_modifiers), - $._possibly_implicitly_unwrapped_type + field("type", $._possibly_implicitly_unwrapped_type) ) ) ), @@ -878,7 +927,7 @@ module.exports = grammar({ PRECS.if, seq( "if", - sep1($._if_condition_sequence_item, ","), + sep1(field("condition", $._if_condition_sequence_item), ","), $._block, optional(seq($.else, $._else_options)) ) @@ -895,7 +944,7 @@ module.exports = grammar({ PRECS.if, seq( "guard", - sep1(prec.left($._if_condition_sequence_item), ","), + sep1(field("condition", $._if_condition_sequence_item), ","), $.else, $._block ) @@ -904,7 +953,13 @@ module.exports = grammar({ switch_statement: ($) => prec.right( PRECS.switch, - seq("switch", $._expression, "{", repeat($.switch_entry), "}") + seq( + "switch", + field("expr", $._expression), + "{", + repeat($.switch_entry), + "}" + ) ), switch_entry: ($) => @@ -983,7 +1038,12 @@ module.exports = grammar({ _is_operator: ($) => "is", _additive_operator: ($) => - choice($._plus_then_ws, $._minus_then_ws, "+", "-"), + choice( + alias($._plus_then_ws, "+"), + alias($._minus_then_ws, "-"), + "+", + "-" + ), _multiplicative_operator: ($) => choice("*", "/", "%"), @@ -999,7 +1059,7 @@ module.exports = grammar({ $.bang, "&", "~", - $._dot_operator, + $._dot, $.custom_operator ) ), @@ -1086,7 +1146,7 @@ module.exports = grammar({ PRECS.loop, seq( "while", - sep1(prec.left($._if_condition_sequence_item), ","), + sep1(field("condition", $._if_condition_sequence_item), ","), "{", optional($.statements), "}" @@ -1102,7 +1162,7 @@ module.exports = grammar({ optional($.statements), "}", "while", - sep1(prec.left($._if_condition_sequence_item), ",") + sep1(field("condition", $._if_condition_sequence_item), ",") ) ), @@ -1111,7 +1171,10 @@ module.exports = grammar({ prec.right(PRECS.control_transfer, $._throw_statement), prec.right( PRECS.control_transfer, - seq($._optionally_valueful_control_keyword, optional($._expression)) + seq( + $._optionally_valueful_control_keyword, + field("result", optional($._expression)) + ) ) ), @@ -1125,9 +1188,9 @@ module.exports = grammar({ prec.left( PRECS.assignment, seq( - $.directly_assignable_expression, - $._assignment_and_operator, - $._expression + field("target", $.directly_assignable_expression), + field("operator", $._assignment_and_operator), + field("result", $._expression) ) ), @@ -1231,7 +1294,7 @@ module.exports = grammar({ prec.right( seq( optional($.modifiers), - $.value_binding_pattern, + field("name", $.value_binding_pattern), optional($.type_annotation), optional($.type_constraints), $.protocol_property_requirements @@ -1254,11 +1317,17 @@ module.exports = grammar({ choice("let", "var"), sep1( seq( - alias($.property_binding_pattern, $.value_binding_pattern), + field( + "name", + alias($.property_binding_pattern, $.value_binding_pattern) + ), optional($.type_annotation), optional($.type_constraints), optional( - choice(seq($._equal_sign, $._expression), $.computed_property) + choice( + seq($._equal_sign, field("value", $._expression)), + field("computed_value", $.computed_property) + ) ) ), "," @@ -1275,18 +1344,23 @@ module.exports = grammar({ _modifierless_typealias_declaration: ($) => seq( "typealias", - alias($.simple_identifier, $.type_identifier), + field("name", alias($.simple_identifier, $.type_identifier)), optional($.type_parameters), $._equal_sign, - $._type + field("value", $._type) ), function_declaration: ($) => - prec.right(seq($._bodyless_function_declaration, $.function_body)), + prec.right( + seq($._bodyless_function_declaration, field("body", $.function_body)) + ), _modifierless_function_declaration: ($) => prec.right( - seq($._modifierless_function_declaration_no_body, $.function_body) + seq( + $._modifierless_function_declaration_no_body, + field("body", $.function_body) + ) ), _bodyless_function_declaration: ($) => @@ -1308,7 +1382,10 @@ module.exports = grammar({ optional($.async), optional($.throws), optional( - seq($._arrow_operator, $._possibly_implicitly_unwrapped_type) + seq( + $._arrow_operator, + field("return_type", $._possibly_implicitly_unwrapped_type) + ) ), optional($.type_constraints) ) @@ -1323,29 +1400,29 @@ module.exports = grammar({ prec.right( choice( seq( - choice("class", "struct"), - alias($.simple_identifier, $.type_identifier), + field("declaration_kind", choice("class", "struct")), + field("name", alias($.simple_identifier, $.type_identifier)), optional($.type_parameters), optional(seq(":", $._inheritance_specifiers)), optional($.type_constraints), - $.class_body + field("body", $.class_body) ), seq( - "extension", - $.identifier, + field("declaration_kind", "extension"), + field("name", $.user_type), optional($.type_parameters), optional(seq(":", $._inheritance_specifiers)), optional($.type_constraints), - $.class_body + field("body", $.class_body) ), seq( optional("indirect"), - "enum", - alias($.simple_identifier, $.type_identifier), + field("declaration_kind", "enum"), + field("name", alias($.simple_identifier, $.type_identifier)), optional($.type_parameters), optional(seq(":", $._inheritance_specifiers)), optional($.type_constraints), - $.enum_class_body + field("body", $.enum_class_body) ) ) ), @@ -1356,7 +1433,7 @@ module.exports = grammar({ prec.left(sep1($._annotated_inheritance_specifier, choice(",", "&"))), inheritance_specifier: ($) => - prec.left(choice($.user_type, $.function_type)), + prec.left(field("inherits_from", choice($.user_type, $.function_type))), _annotated_inheritance_specifier: ($) => seq(repeat($.attribute), $.inheritance_specifier), @@ -1379,17 +1456,17 @@ module.exports = grammar({ inheritance_constraint: ($) => seq( repeat($.attribute), - $.identifier, + field("constrained_type", $.identifier), ":", - $._possibly_implicitly_unwrapped_type + field("inherits_from", $._possibly_implicitly_unwrapped_type) ), equality_constraint: ($) => seq( repeat($.attribute), - $.identifier, + field("constrained_type", $.identifier), choice($._equal_sign, $._eq_eq), - $._type + field("must_equal", $._type) ), _class_member_separator: ($) => choice($._semi, $.multiline_comment), @@ -1405,22 +1482,22 @@ module.exports = grammar({ _function_value_parameter: ($) => seq( optional($.attribute), - optional(alias($.simple_identifier, $.external_parameter_name)), $.parameter, - optional(seq($._equal_sign, $._expression)) + optional(seq($._equal_sign, field("default_value", $._expression))) ), parameter: ($) => seq( - $.simple_identifier, + optional(field("external_name", $.simple_identifier)), + field("name", $.simple_identifier), ":", optional($.parameter_modifiers), - $._possibly_implicitly_unwrapped_type, + field("type", $._possibly_implicitly_unwrapped_type), optional($._three_dot_operator) ), _constructor_function_decl: ($) => - seq("init", optional(choice($._quest, $.bang))), + seq(field("name", "init"), optional(choice($._quest, $.bang))), _non_constructor_function_decl: ($) => seq( @@ -1449,6 +1526,25 @@ module.exports = grammar({ "~" ), + // 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, "->"), + _three_dot_operator: ($) => alias($._three_dot_operator_custom, "..."), + _open_ended_range_operator: ($) => + alias($._open_ended_range_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!"), + throws: ($) => choice($._throws_keyword, $._rethrows_keyword), enum_class_body: ($) => @@ -1461,9 +1557,12 @@ module.exports = grammar({ "case", sep1( seq( - $.simple_identifier, + field("name", $.simple_identifier), optional( - choice($.enum_type_parameters, seq($._equal_sign, $._expression)) + choice( + field("data_contents", $.enum_type_parameters), + seq($._equal_sign, field("raw_value", $._expression)) + ) ) ), "," @@ -1493,12 +1592,12 @@ module.exports = grammar({ prec.right( seq( optional($.modifiers), - "protocol", - alias($.simple_identifier, $.type_identifier), + field("declaration_kind", "protocol"), + field("name", alias($.simple_identifier, $.type_identifier)), optional($.type_parameters), optional(seq(":", $._inheritance_specifiers)), optional($.type_constraints), - $.protocol_body + field("body", $.protocol_body) ) ), @@ -1511,7 +1610,10 @@ module.exports = grammar({ _protocol_member_declaration: ($) => choice( alias( - seq($._bodyless_function_declaration, optional($.function_body)), + seq( + $._bodyless_function_declaration, + optional(field("body", $.function_body)) + ), $.protocol_function_declaration ), $.deinit_declaration, @@ -1522,7 +1624,9 @@ module.exports = grammar({ ), deinit_declaration: ($) => - prec.right(seq(optional($.modifiers), "deinit", $.function_body)), + prec.right( + seq(optional($.modifiers), "deinit", field("body", $.function_body)) + ), subscript_declaration: ($) => prec.right( @@ -1532,7 +1636,10 @@ module.exports = grammar({ optional($.type_parameters), $._function_value_parameters, optional( - seq($._arrow_operator, $._possibly_implicitly_unwrapped_type) + seq( + $._arrow_operator, + field("return_type", $._possibly_implicitly_unwrapped_type) + ) ), optional($.type_constraints), "{", @@ -1605,10 +1712,10 @@ module.exports = grammar({ seq( optional($.modifiers), "associatedtype", - alias($.simple_identifier, $.type_identifier), - optional(seq(":", $._type)), + field("name", alias($.simple_identifier, $.type_identifier)), + optional(seq(":", field("must_inherit", $._type))), optional($.type_constraints), - optional(seq($._equal_sign, $._type)) + optional(seq($._equal_sign, field("default_value", $._type))) ), //////////////////////////////// @@ -1811,7 +1918,7 @@ function generate_case_pattern( ): Rule { return seq( optional($.user_type), // XXX this should just be _type but that creates ambiguity - $._dot_operator, + $._dot, $.simple_identifier, optional(generate_tuple_pattern($, allows_binding, true)), optional($._quest) diff --git a/package-lock.json b/package-lock.json index 92cb40176..af2d92235 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "experimental-tree-sitter-swift", - "version": "0.0.1", + "version": "0.0.2", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "0.0.1", + "version": "0.0.2", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 8ae1a7444..f7aeba081 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "experimental-tree-sitter-swift", - "version": "0.0.1", + "version": "0.0.2", "description": "An experimental tree-sitter grammar for the Swift programming language.", "main": "bindings/node/index.js", "scripts": { diff --git a/queries/highlights.scm b/queries/highlights.scm index c0697c4e4..1eef55eee 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -17,11 +17,11 @@ (function_declaration (simple_identifier) @function.method) (function_declaration ["init" @constructor]) -(external_parameter_name) @parameter (throws) @keyword (async) @keyword (where_keyword) @keyword -(parameter (simple_identifier) @parameter) +(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)) diff --git a/test-npm-package/package-lock.json b/test-npm-package/package-lock.json index 48cf63d60..9b65b8bad 100644 --- a/test-npm-package/package-lock.json +++ b/test-npm-package/package-lock.json @@ -14,7 +14,7 @@ } }, "..": { - "version": "0.0.1", + "version": "0.0.2", "hasInstallScript": true, "license": "MIT", "dependencies": { @@ -24,7 +24,7 @@ "@types/node": "^16.11.10", "node-gyp": "^8.4.1", "prettier": "2.3.2", - "tree-sitter-cli": "^0.20.1", + "tree-sitter-cli": "^0.20.0", "typescript": "^4.5.2" } }, @@ -700,7 +700,7 @@ "nan": "^2.15.0", "node-gyp": "^8.4.1", "prettier": "2.3.2", - "tree-sitter-cli": "^0.20.1", + "tree-sitter-cli": "^0.20.0", "typescript": "^4.5.2" } }, From 30ac24158af395a4bf4eedddcbf606386bb047ee Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Mon, 3 Jan 2022 20:22:32 -0800 Subject: [PATCH 083/151] Remove stale bindings script from github actions --- .github/workflows/publish.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c4b79393a..f9ef9dd36 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,7 +20,6 @@ jobs: node-version: 16 - run: npm install - run: npm run test-ci - - run: npm run bindings - run: cd ./test-npm-package && npm test; cd .. - uses: JS-DevTools/npm-publish@v1 id: npm_publish From cab8064fff8ebb232bf4dd8929b12f669b4ba3f0 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Mon, 3 Jan 2022 20:38:33 -0800 Subject: [PATCH 084/151] Fix test npm package and rust crate for new field names --- bindings/rust/lib.rs | 2 +- test-npm-package/index.js | 2 +- test-npm-package/package-lock.json | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs index 632a0ad4c..23ac56ec2 100644 --- a/bindings/rust/lib.rs +++ b/bindings/rust/lib.rs @@ -61,7 +61,7 @@ mod tests { .ok_or_else(|| anyhow!("Unable to parse!"))?; assert_eq!( - "(source_file (assignment (directly_assignable_expression (simple_identifier)) (line_string_literal (line_str_text))))", + "(source_file (assignment target: (directly_assignable_expression (simple_identifier)) result: (line_string_literal (line_str_text))))", tree.root_node().to_sexp(), ); diff --git a/test-npm-package/index.js b/test-npm-package/index.js index 935db5dfd..ef925f509 100644 --- a/test-npm-package/index.js +++ b/test-npm-package/index.js @@ -20,6 +20,6 @@ console.log(tree.rootNode.toString()); const assert = require("assert"); const smallTree = parser.parse(`_ = "Hello!"\n`); assert.equal( - `(source_file (assignment (directly_assignable_expression (simple_identifier)) (line_string_literal (line_str_text))))`, + `(source_file (assignment target: (directly_assignable_expression (simple_identifier)) result: (line_string_literal (line_str_text))))`, smallTree.rootNode.toString() ); diff --git a/test-npm-package/package-lock.json b/test-npm-package/package-lock.json index 9b65b8bad..2fc08b9c9 100644 --- a/test-npm-package/package-lock.json +++ b/test-npm-package/package-lock.json @@ -18,14 +18,14 @@ "hasInstallScript": true, "license": "MIT", "dependencies": { - "nan": "^2.15.0" - }, - "devDependencies": { "@types/node": "^16.11.10", - "node-gyp": "^8.4.1", - "prettier": "2.3.2", + "nan": "^2.15.0", "tree-sitter-cli": "^0.20.0", "typescript": "^4.5.2" + }, + "devDependencies": { + "node-gyp": "^8.4.1", + "prettier": "2.3.2" } }, "node_modules/ansi-regex": { From ce8beddc0e4b8a4f07170d762ae76800d47105fb Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Thu, 13 Jan 2022 20:13:00 -0800 Subject: [PATCH 085/151] Add field names to a few more nodes In advance of reaching 0.1, adding a few more field names should make stability guarantees easier to satisfy. Also promotes `protocol_composition_type` to named which breaks semver, so bumping to 0.0.3. --- Cargo.toml | 2 +- README.md | 4 +- bindings/rust/lib.rs | 2 +- corpus/classes.txt | 63 ++++++++------ corpus/functions.txt | 9 +- grammar.ts | 131 ++++++++++++++++++++++------- package.json | 2 +- test-npm-package/index.js | 2 +- test-npm-package/package-lock.json | 2 +- 9 files changed, 148 insertions(+), 69 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3a6d7c36f..659793194 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "experimental-tree-sitter-swift" description = "swift grammar for the tree-sitter parsing library" -version = "0.0.2" +version = "0.0.3" keywords = ["incremental", "parsing", "swift"] categories = ["parsing", "text-editors"] repository = "https://github.com/alex-pinkus/experimental-tree-sitter-swift" diff --git a/README.md b/README.md index db9c344c5..1ec6eef33 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ To use this parser to parse Swift code, you'll want to depend on either the Rust To use the Rust crate, you'll add this to your `Cargo.toml`: ``` tree-sitter = "0.20.0" -experimental-tree-sitter-swift = "=0.0.2" +experimental-tree-sitter-swift = "=0.0.3" ``` Then you can use a `tree-sitter` parser with the language declared here: @@ -36,7 +36,7 @@ let tree = parser.parse(&my_source_code, None) To use this from NPM, you'll add similar dependencies to `package.json`: ``` "dependencies: { - "experimental-tree-sitter-swift": "0.0.2", + "experimental-tree-sitter-swift": "0.0.3", "tree-sitter": "^0.20.0" } ``` diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs index 23ac56ec2..fe46c8c24 100644 --- a/bindings/rust/lib.rs +++ b/bindings/rust/lib.rs @@ -61,7 +61,7 @@ mod tests { .ok_or_else(|| anyhow!("Unable to parse!"))?; assert_eq!( - "(source_file (assignment target: (directly_assignable_expression (simple_identifier)) result: (line_string_literal (line_str_text))))", + "(source_file (assignment target: (directly_assignable_expression (simple_identifier)) result: (line_string_literal text: (line_str_text))))", tree.root_node().to_sexp(), ); diff --git a/corpus/classes.txt b/corpus/classes.txt index 4b779083d..95575a0b3 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -559,10 +559,11 @@ var propertyMap: NodePropertyMap & KeypathSearchable { (non_binding_pattern (simple_identifier))) (type_annotation - (user_type - (type_identifier)) - (user_type - (type_identifier))) + (protocol_composition_type + (user_type + (type_identifier)) + (user_type + (type_identifier)))) (computed_property (statements (control_transfer_statement @@ -731,10 +732,11 @@ class SomeClassWithAlias: NSObject { (class_body (typealias_declaration (type_identifier) - (user_type - (type_identifier)) - (user_type - (type_identifier)))))) + (protocol_composition_type + (user_type + (type_identifier)) + (user_type + (type_identifier))))))) ================================================================================ Special constructors @@ -1216,18 +1218,20 @@ let result: HasGeneric = HasGeneric(t: "Hello") (user_type (type_identifier) (type_arguments - (user_type - (type_identifier)) - (user_type - (type_identifier))))) + (protocol_composition_type + (user_type + (type_identifier)) + (user_type + (type_identifier)))))) (constructor_expression (user_type (type_identifier) (type_arguments - (user_type - (type_identifier)) - (user_type - (type_identifier)))) + (protocol_composition_type + (user_type + (type_identifier)) + (user_type + (type_identifier))))) (constructor_suffix (value_arguments (value_argument @@ -1266,10 +1270,11 @@ func iterate(h: S) where S : Sequence, S.Element == P1 & P2 { } (identifier (simple_identifier) (simple_identifier)) - (user_type - (type_identifier)) - (user_type - (type_identifier))))) + (protocol_composition_type + (user_type + (type_identifier)) + (user_type + (type_identifier)))))) (function_body))) ================================================================================ @@ -1289,10 +1294,11 @@ enum Foo { (enum_entry (simple_identifier) (enum_type_parameters - (user_type - (type_identifier)) - (user_type - (type_identifier))))))) + (protocol_composition_type + (user_type + (type_identifier)) + (user_type + (type_identifier)))))))) ================================================================================ Protocol composition in as expressions @@ -1316,10 +1322,11 @@ let result = greet("me") as P1 & P2 (line_string_literal (line_str_text)))))) (as_operator) - (user_type - (type_identifier)) - (user_type - (type_identifier))))) + (protocol_composition_type + (user_type + (type_identifier)) + (user_type + (type_identifier)))))) ================================================================================ Modify declarations diff --git a/corpus/functions.txt b/corpus/functions.txt index fba6e7444..3a8fcb466 100755 --- a/corpus/functions.txt +++ b/corpus/functions.txt @@ -782,10 +782,11 @@ func multipleType() -> Foo & Bar { return Foo() } (line_string_literal))))) (function_declaration (simple_identifier) - (user_type - (type_identifier)) - (user_type - (type_identifier)) + (protocol_composition_type + (user_type + (type_identifier)) + (user_type + (type_identifier))) (function_body (statements (control_transfer_statement diff --git a/grammar.ts b/grammar.ts index ca21c3e52..8b7fd899b 100644 --- a/grammar.ts +++ b/grammar.ts @@ -307,7 +307,11 @@ module.exports = grammar({ ), line_string_literal: ($) => - seq('"', repeat(choice($._line_string_content, $._interpolation)), '"'), + seq( + '"', + repeat(choice(field("text", $._line_string_content), $._interpolation)), + '"' + ), _line_string_content: ($) => choice($.line_str_text, $.str_escaped_char), @@ -321,7 +325,9 @@ module.exports = grammar({ multi_line_string_literal: ($) => seq( '"""', - repeat(choice($._multi_line_string_content, $._interpolation)), + repeat( + choice(field("text", $._multi_line_string_content), $._interpolation) + ), '"""' ), @@ -329,12 +335,12 @@ module.exports = grammar({ seq( repeat( seq( - $.raw_str_part, - $.raw_str_interpolation, + field("text", $.raw_str_part), + field("interpolation", $.raw_str_interpolation), optional($.raw_str_continuing_indicator) ) ), - $.raw_str_end_part + field("text", $.raw_str_end_part) ), raw_str_interpolation: ($) => @@ -348,7 +354,13 @@ module.exports = grammar({ _interpolation: ($) => seq("\\(", $._interpolation_contents, ")"), _interpolation_contents: ($) => - sep1(alias($.value_argument, $.interpolated_expression), ","), + sep1( + field( + "interpolation", + alias($.value_argument, $.interpolated_expression) + ), + "," + ), _escaped_identifier: ($) => /\\[0\\tnr"'\n]/, @@ -367,7 +379,7 @@ module.exports = grammar({ _type: ($) => prec.right( PRECS.ty, - seq(optional($.type_modifiers), $._unannotated_type) + seq(optional($.type_modifiers), field("name", $._unannotated_type)) ), _unannotated_type: ($) => @@ -382,7 +394,7 @@ module.exports = grammar({ $.optional_type, $.metatype, $.opaque_type, - $._protocol_composition_type + $.protocol_composition_type ) ), @@ -454,7 +466,7 @@ module.exports = grammar({ opaque_type: ($) => seq("some", $.user_type), - _protocol_composition_type: ($) => + protocol_composition_type: ($) => prec.right( seq( $._unannotated_type, @@ -533,12 +545,15 @@ module.exports = grammar({ PRECS.range, seq( choice($._open_ended_range_operator, $._three_dot_operator), - prec.right(PRECS.range_suffix, $._expression) + prec.right(PRECS.range_suffix, field("end", $._expression)) ) ), open_end_range_expression: ($) => - prec.right(PRECS.range, seq($._expression, $._three_dot_operator)), + prec.right( + PRECS.range, + seq(field("start", $._expression), $._three_dot_operator) + ), prefix_expression: ($) => prec.left( @@ -585,70 +600,123 @@ module.exports = grammar({ multiplicative_expression: ($) => prec.left( PRECS.multiplication, - seq($._expression, $._multiplicative_operator, $._expression) + seq( + field("lhs", $._expression), + field("op", $._multiplicative_operator), + field("rhs", $._expression) + ) ), additive_expression: ($) => prec.left( PRECS.addition, - seq($._expression, $._additive_operator, $._expression) + seq( + field("lhs", $._expression), + field("op", $._additive_operator), + field("rhs", $._expression) + ) ), range_expression: ($) => prec.right( PRECS.range, seq( - $._expression, - choice($._open_ended_range_operator, $._three_dot_operator), - $._expression + field("start", $._expression), + field( + "op", + choice($._open_ended_range_operator, $._three_dot_operator) + ), + field("end", $._expression) ) ), infix_expression: ($) => prec.left( PRECS.infix_operations, - seq($._expression, $.custom_operator, $._expression) + seq( + field("lhs", $._expression), + field("op", $.custom_operator), + field("rhs", $._expression) + ) ), nil_coalescing_expression: ($) => prec.right( PRECS.nil_coalescing, - seq($._expression, $._nil_coalescing_operator, $._expression) + seq( + field("value", $._expression), + $._nil_coalescing_operator, + field("if_nil", $._expression) + ) ), check_expression: ($) => - prec.left(PRECS.check, seq($._expression, $._is_operator, $._type)), + prec.left( + PRECS.check, + seq( + field("target", $._expression), + field("op", $._is_operator), + field("type", $._type) + ) + ), comparison_expression: ($) => - prec.left(seq($._expression, $._comparison_operator, $._expression)), + prec.left( + seq( + field("lhs", $._expression), + field("op", $._comparison_operator), + field("rhs", $._expression) + ) + ), equality_expression: ($) => prec.left( PRECS.equality, - seq($._expression, $._equality_operator, $._expression) + seq( + field("lhs", $._expression), + field("op", $._equality_operator), + field("rhs", $._expression) + ) ), conjunction_expression: ($) => prec.left( PRECS.conjunction, - seq($._expression, $._conjunction_operator, $._expression) + seq( + field("lhs", $._expression), + field("op", $._conjunction_operator), + field("rhs", $._expression) + ) ), disjunction_expression: ($) => prec.left( PRECS.disjunction, - seq($._expression, $._disjunction_operator, $._expression) + seq( + field("lhs", $._expression), + field("op", $._disjunction_operator), + field("rhs", $._expression) + ) ), bitwise_operation: ($) => - prec.left(seq($._expression, $._bitwise_binary_operator, $._expression)), + prec.left( + seq( + field("lhs", $._expression), + field("op", $._bitwise_binary_operator), + field("rhs", $._expression) + ) + ), custom_operator: ($) => seq(CUSTOM_OPERATORS, optional("<")), // Suffixes navigation_suffix: ($) => - seq($._dot, choice($.simple_identifier, $.integer_literal)), + seq( + $._dot, + field("suffix", choice($.simple_identifier, $.integer_literal)) + ), call_suffix: ($) => prec( @@ -656,7 +724,7 @@ module.exports = grammar({ seq( choice( $.value_arguments, - sep1($.lambda_literal, seq($.simple_identifier, ":")) + sep1($.lambda_literal, seq(field("name", $.simple_identifier), ":")) ) ) ), @@ -856,8 +924,8 @@ module.exports = grammar({ PRECS.lambda, seq( "{", - prec(PRECS.expr, optional($.capture_list)), - optional(seq(optional($.lambda_function_type), "in")), + prec(PRECS.expr, optional(field("captures", $.capture_list))), + optional(seq(optional(field("type", $.lambda_function_type)), "in")), optional($.statements), "}" ) @@ -868,7 +936,7 @@ module.exports = grammar({ capture_list_item: ($) => choice( - $.self_expression, + field("name", $.self_expression), prec( PRECS.expr, seq( @@ -989,7 +1057,10 @@ module.exports = grammar({ catch_block: ($) => seq( $.catch_keyword, - optional(generate_pattern_matching_rule($, true, false)), + field( + "error", + optional(generate_pattern_matching_rule($, true, false)) + ), optional($.where_clause), $._block ), diff --git a/package.json b/package.json index f7aeba081..e873295eb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "experimental-tree-sitter-swift", - "version": "0.0.2", + "version": "0.0.3", "description": "An experimental tree-sitter grammar for the Swift programming language.", "main": "bindings/node/index.js", "scripts": { diff --git a/test-npm-package/index.js b/test-npm-package/index.js index ef925f509..fe2f9d26d 100644 --- a/test-npm-package/index.js +++ b/test-npm-package/index.js @@ -20,6 +20,6 @@ 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 (line_str_text))))`, + `(source_file (assignment target: (directly_assignable_expression (simple_identifier)) result: (line_string_literal text: (line_str_text))))`, smallTree.rootNode.toString() ); diff --git a/test-npm-package/package-lock.json b/test-npm-package/package-lock.json index 2fc08b9c9..c2db09962 100644 --- a/test-npm-package/package-lock.json +++ b/test-npm-package/package-lock.json @@ -14,7 +14,7 @@ } }, "..": { - "version": "0.0.2", + "version": "0.0.3", "hasInstallScript": true, "license": "MIT", "dependencies": { From 7e359f4923d2b643a1e6c9218eb6f0e8722d9e16 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Thu, 13 Jan 2022 21:01:18 -0800 Subject: [PATCH 086/151] Grand renaming and 0.1-ing It turns out (#92) that some libraries rely on the name of the `tree-sitter` packages always being `tree-sitter-.*`. Rather than trying to take some secondary title of `experimental-swift` or similar, we can simply drop the `experimental` and bring balance to the force. Fixes #92 --- Cargo.toml | 6 +-- README.md | 60 ++++++------------------------ bindings/rust/lib.rs | 2 +- package-lock.json | 7 ++-- package.json | 12 +++--- test-npm-package/index.js | 2 +- test-npm-package/package-lock.json | 37 +++++++++--------- test-npm-package/package.json | 4 +- 8 files changed, 47 insertions(+), 83 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 659793194..5aa9bff75 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,10 @@ [package] -name = "experimental-tree-sitter-swift" +name = "tree-sitter-swift" description = "swift grammar for the tree-sitter parsing library" -version = "0.0.3" +version = "0.1.0" keywords = ["incremental", "parsing", "swift"] categories = ["parsing", "text-editors"] -repository = "https://github.com/alex-pinkus/experimental-tree-sitter-swift" +repository = "https://github.com/alex-pinkus/tree-sitter-swift" edition = "2018" license = "MIT" diff --git a/README.md b/README.md index 1ec6eef33..785dd1868 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,11 @@ -![Parse rate badge](https://byob.yarr.is/alex-pinkus/experimental-tree-sitter-swift/parse_rate) -[![Crates.io badge](https://byob.yarr.is/alex-pinkus/experimental-tree-sitter-swift/crates_io_version)](https://crates.io/crates/experimental-tree-sitter-swift) -[![NPM badge](https://byob.yarr.is/alex-pinkus/experimental-tree-sitter-swift/npm_version)](https://www.npmjs.com/package/experimental-tree-sitter-swift) -[![Build](https://github.com/alex-pinkus/experimental-tree-sitter-swift/actions/workflows/top-repos.yml/badge.svg)](https://github.com/alex-pinkus/experimental-tree-sitter-swift/actions/workflows/top-repos.yml) +![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) -# experimental-tree-sitter-swift +# tree-sitter-swift -This contains an experimental [`tree-sitter`](https://tree-sitter.github.io/tree-sitter) grammar for the Swift -programming language. +This contains a [`tree-sitter`](https://tree-sitter.github.io/tree-sitter) grammar for the Swift programming language. ## Getting started @@ -16,14 +15,14 @@ To use this parser to parse Swift code, you'll want to depend on either the Rust To use the Rust crate, you'll add this to your `Cargo.toml`: ``` tree-sitter = "0.20.0" -experimental-tree-sitter-swift = "=0.0.3" +tree-sitter-swift = "=0.1.0" ``` Then you can use a `tree-sitter` parser with the language declared here: ``` let mut parser = tree_sitter::Parser::new(); -parser.set_language(experimental_tree_sitter_swift::language())?; +parser.set_language(tree_sitter_swift::language())?; // ... @@ -36,7 +35,7 @@ let tree = parser.parse(&my_source_code, None) To use this from NPM, you'll add similar dependencies to `package.json`: ``` "dependencies: { - "experimental-tree-sitter-swift": "0.0.3", + "tree-sitter-swift": "0.1.0", "tree-sitter": "^0.20.0" } ``` @@ -44,7 +43,7 @@ To use this from NPM, you'll add similar dependencies to `package.json`: Your usage of the parser will look like: ``` const Parser = require("tree-sitter"); -const Swift = require("experimental-tree-sitter-swift"); +const Swift = require("tree-sitter-swift"); const parser = new Parser(); parser.setLanguage(Swift); @@ -65,12 +64,6 @@ 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. -If you simply want to _use_ the parser, and not modify it, you can depend on it from Rust code using the instructions in -the [rust bindings README](https://github.com/tree-sitter/tree-sitter/blob/master/lib/binding_rust/README.md). -Basically, you'll want to build the `parser.c` and `scanner.c` in your build script and use the generated files to -produce a parser that the bindings can interact with. I don't plan to publish this as a crate while it's still in the -`experimental` state. - ## 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 @@ -80,37 +73,6 @@ level of support, but having the test case makes it more likely that I want to t ## Frequently asked questions -### Isn't there already a Swift grammar? Why did you create another one? - -There is a Swift grammar that lives under the `tree-sitter` org, but it doesn't have a `LICENSE` file. Since it's not -licensed, I would have to be cautious about using it myself. I actually haven't looked at the code itself, or the -repository much at all, since I want to avoid potential licensing issues with this parser. A brief scan of the Github -issues tells me it's also not quite complete, but I haven't done a deep dive to see whether it's more complete than this -one. - -I created this parser to learn how to use tree-sitter. Looking at the landscape, it seemed like it might be useful to -others, so I decided to publish it. Since this has a permissive license, it seems like a good path forward for anyone -else whose needs are similar to my own. - -### If this isn't a fork of the existing Swift grammar, what is it based on? - -A lot of specific features were based off of the [Kotlin language grammar](https://github.com/fwcd/tree-sitter-kotlin), -since the two have many cosmetic similarities. For instance, both languages have trailing closure syntax. Some parts -also come from the [Rust grammar](https://github.com/tree-sitter/tree-sitter-rust), which this grammar should probably -copy more of. - -### Why is this `experimental`? What's experimental about it? - -That's a question that remains to be answered. If this grammar doesn't get used much, it will probably be experimental -forever. If there's interest in it, hopefully others are willing to help define what it would take to make this not -"experimental". Reaching a point where we can offer some stability guarantees is probably a good first step. - -### What stability guarantees do you offer? - -Currently none. It seems prudent that someday, the grammar would be versioned and any removal or changes to nodes would -be considered a breaking change, and accompanied by a major version bump. Right now, this is not the place to go for -stability unless you pin an exact commit hash. - ### Where is your `parser.c`? This repository currently omits most of the code that is autogenerated during a build. This means, for instance, that @@ -124,7 +86,7 @@ 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/experimental-tree-sitter-swift/actions) for this +* Go to the [GitHub actions page](https://github.com/alex-pinkus/tree-sitter-swift/actions) for this repository. * Click on the "Check grammar and style" 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 diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs index fe46c8c24..98463954b 100644 --- a/bindings/rust/lib.rs +++ b/bindings/rust/lib.rs @@ -6,7 +6,7 @@ //! ``` //! let code = ""; //! let mut parser = tree_sitter::Parser::new(); -//! parser.set_language(experimental_tree_sitter_swift::language()).expect("Error loading swift grammar"); +//! parser.set_language(tree_sitter_swift::language()).expect("Error loading swift grammar"); //! let tree = parser.parse(code, None).unwrap(); //! ``` //! diff --git a/package-lock.json b/package-lock.json index af2d92235..d820c52c0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,12 @@ { - "name": "experimental-tree-sitter-swift", - "version": "0.0.2", + "name": "tree-sitter-swift", + "version": "0.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "0.0.2", + "name": "tree-sitter-swift", + "version": "0.1.0", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index e873295eb..e0151c151 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "experimental-tree-sitter-swift", - "version": "0.0.3", - "description": "An experimental tree-sitter grammar for the Swift programming language.", + "name": "tree-sitter-swift", + "version": "0.1.0", + "description": "A tree-sitter grammar for the Swift programming language.", "main": "bindings/node/index.js", "scripts": { "install": "tsc && tree-sitter generate ./build/grammar.js", @@ -12,7 +12,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/alex-pinkus/experimental-tree-sitter-swift.git" + "url": "git+https://github.com/alex-pinkus/tree-sitter-swift.git" }, "keywords": [ "parser", @@ -21,9 +21,9 @@ "author": "Alex Pinkus ", "license": "MIT", "bugs": { - "url": "https://github.com/alex-pinkus/experimental-tree-sitter-swift/issues" + "url": "https://github.com/alex-pinkus/tree-sitter-swift/issues" }, - "homepage": "https://github.com/alex-pinkus/experimental-tree-sitter-swift#readme", + "homepage": "https://github.com/alex-pinkus/tree-sitter-swift#readme", "dependencies": { "@types/node": "^16.11.10", "nan": "^2.15.0", diff --git a/test-npm-package/index.js b/test-npm-package/index.js index fe2f9d26d..fea78aa3a 100644 --- a/test-npm-package/index.js +++ b/test-npm-package/index.js @@ -1,5 +1,5 @@ const Parser = require("tree-sitter"); -const Swift = require("experimental-tree-sitter-swift"); +const Swift = require("tree-sitter-swift"); const parser = new Parser(); parser.setLanguage(Swift); diff --git a/test-npm-package/package-lock.json b/test-npm-package/package-lock.json index c2db09962..25a8e20ed 100644 --- a/test-npm-package/package-lock.json +++ b/test-npm-package/package-lock.json @@ -9,12 +9,13 @@ "version": "1.0.0", "license": "MIT", "dependencies": { - "experimental-tree-sitter-swift": "file:../", - "tree-sitter": "^0.20.0" + "tree-sitter": "^0.20.0", + "tree-sitter-swift": "file:../" } }, "..": { - "version": "0.0.3", + "name": "tree-sitter-swift", + "version": "0.1.0", "hasInstallScript": true, "license": "MIT", "dependencies": { @@ -189,10 +190,6 @@ "node": ">=6" } }, - "node_modules/experimental-tree-sitter-swift": { - "resolved": "..", - "link": true - }, "node_modules/fs-constants": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", @@ -551,6 +548,10 @@ "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", @@ -693,17 +694,6 @@ "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==" }, - "experimental-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", - "typescript": "^4.5.2" - } - }, "fs-constants": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", @@ -993,6 +983,17 @@ "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", + "typescript": "^4.5.2" + } + }, "tunnel-agent": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", diff --git a/test-npm-package/package.json b/test-npm-package/package.json index ff82a46e5..9d7797e3c 100644 --- a/test-npm-package/package.json +++ b/test-npm-package/package.json @@ -9,7 +9,7 @@ "author": "", "license": "MIT", "dependencies": { - "experimental-tree-sitter-swift": "file:../", - "tree-sitter": "^0.20.0" + "tree-sitter": "^0.20.0", + "tree-sitter-swift": "file:../" } } From 05e21aac6b3abefd94cf7f01665390307820eecd Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 15 Jan 2022 17:24:34 -0800 Subject: [PATCH 087/151] Improve install behavior on Windows Installing the grammar from `build/grammar.js` works for normal install commands but leaves the user unable to run `tree-sitter` commands from the current directory. That's because specifying a `grammar.js` path causes the CLI to skip writing a `grammar.json` (which is debatably a bug in the CLI). Other scripts currently work around this by running `tree-sitter generate` themselves, relying on a symlink into the build directory. That doesn't work on Windows, though. This changes the install script so that it copies the `grammar.js` into the current directory and then uses the copied one. With this change, we get our `grammar.json` simply by running `npm install`! --- .github/workflows/check.yml | 6 + .gitignore | 1 + Cargo.toml | 2 +- README.md | 4 +- grammar.js | 6 +- package-lock.json | 241 ++++++++++++++++++++++++----- package.json | 5 +- scripts/test-with-memcheck.sh | 2 - test-npm-package/package-lock.json | 2 +- 9 files changed, 225 insertions(+), 44 deletions(-) mode change 120000 => 100644 grammar.js diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index d1111fb5b..56192ef6e 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -26,9 +26,15 @@ jobs: with: node-version: ${{ matrix.node-version }} 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: cargo test + - run: cd ./test-npm-package && npm test; cd .. - name: Publish parser source uses: actions/upload-artifact@v2 with: diff --git a/.gitignore b/.gitignore index 4143499ce..599698049 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ node_modules /test Cargo.lock /target/* +/grammar.js diff --git a/Cargo.toml b/Cargo.toml index 5aa9bff75..4a00f7f7b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-swift" description = "swift grammar for the tree-sitter parsing library" -version = "0.1.0" +version = "0.1.1" keywords = ["incremental", "parsing", "swift"] categories = ["parsing", "text-editors"] repository = "https://github.com/alex-pinkus/tree-sitter-swift" diff --git a/README.md b/README.md index 785dd1868..05a66cb0e 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To use this parser to parse Swift code, you'll want to depend on either the Rust To use the Rust crate, you'll add this to your `Cargo.toml`: ``` tree-sitter = "0.20.0" -tree-sitter-swift = "=0.1.0" +tree-sitter-swift = "=0.1.1" ``` Then you can use a `tree-sitter` parser with the language declared here: @@ -35,7 +35,7 @@ let tree = parser.parse(&my_source_code, None) To use this from NPM, you'll add similar dependencies to `package.json`: ``` "dependencies: { - "tree-sitter-swift": "0.1.0", + "tree-sitter-swift": "0.1.1", "tree-sitter": "^0.20.0" } ``` diff --git a/grammar.js b/grammar.js deleted file mode 120000 index 8fd21e8e2..000000000 --- a/grammar.js +++ /dev/null @@ -1 +0,0 @@ -build/grammar.js \ No newline at end of file diff --git a/grammar.js b/grammar.js new file mode 100644 index 000000000..46adc3ae9 --- /dev/null +++ b/grammar.js @@ -0,0 +1,5 @@ +// This file exists to flag to the `tree-sitter` CLI that we are a proper grammar directory, to work +// around some inflexibility in the CLI. However, it will get replaced at install-time with totally +// different contents. Do not check in these changes! + +// You can ignore this file's changes using `git update-index --skip-worktree grammar.js`. diff --git a/package-lock.json b/package-lock.json index d820c52c0..1746eff82 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,17 +1,18 @@ { "name": "tree-sitter-swift", - "version": "0.1.0", + "version": "0.1.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "tree-sitter-swift", - "version": "0.1.0", + "version": "0.1.1", "hasInstallScript": true, "license": "MIT", "dependencies": { "@types/node": "^16.11.10", "nan": "^2.15.0", + "shx": "^0.3.4", "tree-sitter-cli": "^0.20.0", "typescript": "^4.5.2" }, @@ -142,14 +143,12 @@ "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 + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, "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" @@ -214,8 +213,7 @@ "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 + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, "node_modules/console-control-strings": { "version": "1.1.0", @@ -301,8 +299,12 @@ "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 + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, "node_modules/gauge": { "version": "4.0.0", @@ -328,7 +330,6 @@ "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", @@ -350,6 +351,17 @@ "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", "dev": true }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, "node_modules/has-unicode": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", @@ -439,7 +451,6 @@ "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" @@ -448,8 +459,15 @@ "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 + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "engines": { + "node": ">= 0.10" + } }, "node_modules/ip": { "version": "1.1.5", @@ -457,6 +475,17 @@ "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", "dev": true }, + "node_modules/is-core-module": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "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", @@ -521,7 +550,6 @@ "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" }, @@ -529,6 +557,11 @@ "node": "*" } }, + "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/minipass": { "version": "3.1.6", "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz", @@ -710,7 +743,6 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, "dependencies": { "wrappy": "1" } @@ -734,11 +766,15 @@ "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/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, "node_modules/prettier": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.3.2.tgz", @@ -784,6 +820,33 @@ "node": ">= 6" } }, + "node_modules/rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "dependencies": { + "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/resolve": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.21.0.tgz", + "integrity": "sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==", + "dependencies": { + "is-core-module": "^2.8.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/retry": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", @@ -856,6 +919,37 @@ "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", "dev": true }, + "node_modules/shelljs": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "dependencies": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + }, + "bin": { + "shjs": "bin/shjs" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/shx": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/shx/-/shx-0.3.4.tgz", + "integrity": "sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g==", + "dependencies": { + "minimist": "^1.2.3", + "shelljs": "^0.8.5" + }, + "bin": { + "shx": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/signal-exit": { "version": "3.0.6", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", @@ -947,6 +1041,17 @@ "node": ">=8" } }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/tar": { "version": "6.1.11", "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", @@ -1036,8 +1141,7 @@ "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "node_modules/yallist": { "version": "4.0.0", @@ -1145,14 +1249,12 @@ "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 + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, "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" @@ -1205,8 +1307,7 @@ "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 + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, "console-control-strings": { "version": "1.1.0", @@ -1275,8 +1376,12 @@ "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, "gauge": { "version": "4.0.0", @@ -1299,7 +1404,6 @@ "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", @@ -1315,6 +1419,14 @@ "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", "dev": true }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, "has-unicode": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", @@ -1389,7 +1501,6 @@ "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" @@ -1398,8 +1509,12 @@ "inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==" }, "ip": { "version": "1.1.5", @@ -1407,6 +1522,14 @@ "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", "dev": true }, + "is-core-module": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", + "requires": { + "has": "^1.0.3" + } + }, "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", @@ -1462,11 +1585,15 @@ "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" } }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, "minipass": { "version": "3.1.6", "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz", @@ -1600,7 +1727,6 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, "requires": { "wrappy": "1" } @@ -1617,8 +1743,12 @@ "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 + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" }, "prettier": { "version": "2.3.2", @@ -1653,6 +1783,24 @@ "util-deprecate": "^1.0.1" } }, + "rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "requires": { + "resolve": "^1.1.6" + } + }, + "resolve": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.21.0.tgz", + "integrity": "sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==", + "requires": { + "is-core-module": "^2.8.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, "retry": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", @@ -1696,6 +1844,25 @@ "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", "dev": true }, + "shelljs": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", + "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", + "requires": { + "glob": "^7.0.0", + "interpret": "^1.0.0", + "rechoir": "^0.6.2" + } + }, + "shx": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/shx/-/shx-0.3.4.tgz", + "integrity": "sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g==", + "requires": { + "minimist": "^1.2.3", + "shelljs": "^0.8.5" + } + }, "signal-exit": { "version": "3.0.6", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", @@ -1767,6 +1934,11 @@ "ansi-regex": "^5.0.1" } }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + }, "tar": { "version": "6.1.11", "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", @@ -1836,8 +2008,7 @@ "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "yallist": { "version": "4.0.0", diff --git a/package.json b/package.json index e0151c151..5f46deeaf 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { "name": "tree-sitter-swift", - "version": "0.1.0", + "version": "0.1.1", "description": "A tree-sitter grammar for the Swift programming language.", "main": "bindings/node/index.js", "scripts": { - "install": "tsc && tree-sitter generate ./build/grammar.js", + "install": "tsc && shx cp ./build/grammar.js . && tree-sitter generate", "postinstall": "node-gyp configure && node-gyp build", "ci": "prettier --check grammar.ts types/*/*.d.ts", "test-ci": "./scripts/test-with-memcheck.sh --install-valgrind", @@ -27,6 +27,7 @@ "dependencies": { "@types/node": "^16.11.10", "nan": "^2.15.0", + "shx": "^0.3.4", "tree-sitter-cli": "^0.20.0", "typescript": "^4.5.2" }, diff --git a/scripts/test-with-memcheck.sh b/scripts/test-with-memcheck.sh index 32b158851..f9724fdac 100755 --- a/scripts/test-with-memcheck.sh +++ b/scripts/test-with-memcheck.sh @@ -7,8 +7,6 @@ if [[ "$1" == "--install-valgrind" ]]; then shift fi -tree-sitter generate - # Query tests hang forever when run with valgrind, so move them out of # the way. mv ./queries ./queries.bak diff --git a/test-npm-package/package-lock.json b/test-npm-package/package-lock.json index 25a8e20ed..398c88086 100644 --- a/test-npm-package/package-lock.json +++ b/test-npm-package/package-lock.json @@ -15,7 +15,7 @@ }, "..": { "name": "tree-sitter-swift", - "version": "0.1.0", + "version": "0.1.1", "hasInstallScript": true, "license": "MIT", "dependencies": { From 2bd99ae2b4946ebfe19d67c273fc6f17345cac74 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 16 Jan 2022 07:58:49 -0800 Subject: [PATCH 088/151] Add an alias for `?` in type position Currently `?` is not visible in the syntax tree because it's anonymous. Fixes #100 --- Cargo.toml | 2 +- README.md | 4 ++-- grammar.ts | 4 ++-- package-lock.json | 4 ++-- package.json | 2 +- test-npm-package/package-lock.json | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4a00f7f7b..7f14e2f49 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-swift" description = "swift grammar for the tree-sitter parsing library" -version = "0.1.1" +version = "0.1.2" keywords = ["incremental", "parsing", "swift"] categories = ["parsing", "text-editors"] repository = "https://github.com/alex-pinkus/tree-sitter-swift" diff --git a/README.md b/README.md index 05a66cb0e..b1373d784 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To use this parser to parse Swift code, you'll want to depend on either the Rust To use the Rust crate, you'll add this to your `Cargo.toml`: ``` tree-sitter = "0.20.0" -tree-sitter-swift = "=0.1.1" +tree-sitter-swift = "=0.1.2" ``` Then you can use a `tree-sitter` parser with the language declared here: @@ -35,7 +35,7 @@ let tree = parser.parse(&my_source_code, None) To use this from NPM, you'll add similar dependencies to `package.json`: ``` "dependencies: { - "tree-sitter-swift": "0.1.1", + "tree-sitter-swift": "0.1.2", "tree-sitter": "^0.20.0" } ``` diff --git a/grammar.ts b/grammar.ts index 8b7fd899b..66207bbf5 100644 --- a/grammar.ts +++ b/grammar.ts @@ -454,7 +454,7 @@ module.exports = grammar({ "wrapped", choice($.user_type, $.tuple_type, $.array_type, $.dictionary_type) ), - repeat1($._immediate_quest) + repeat1(alias($._immediate_quest, "?")) ) ), @@ -488,7 +488,7 @@ module.exports = grammar({ $.ternary_expression, $._primary_expression, $.assignment, - seq($._expression, $._immediate_quest) + seq($._expression, alias($._immediate_quest, "?")) ) ), diff --git a/package-lock.json b/package-lock.json index 1746eff82..57100837e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "tree-sitter-swift", - "version": "0.1.1", + "version": "0.1.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "tree-sitter-swift", - "version": "0.1.1", + "version": "0.1.2", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 5f46deeaf..9623b8752 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-swift", - "version": "0.1.1", + "version": "0.1.2", "description": "A tree-sitter grammar for the Swift programming language.", "main": "bindings/node/index.js", "scripts": { diff --git a/test-npm-package/package-lock.json b/test-npm-package/package-lock.json index 398c88086..b46f2066b 100644 --- a/test-npm-package/package-lock.json +++ b/test-npm-package/package-lock.json @@ -15,7 +15,7 @@ }, "..": { "name": "tree-sitter-swift", - "version": "0.1.1", + "version": "0.1.2", "hasInstallScript": true, "license": "MIT", "dependencies": { From d0cd9445362790dd95b73edb5a52a2946d83b228 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Fri, 21 Jan 2022 20:48:18 -0800 Subject: [PATCH 089/151] Incorporate query improvements from nvim-treesitter The folks over at `nvim-treesitter` have kindly made some improvements to the highlight queries to address a few gaps. By adding them here, we can ensure that everyone benefits! --- queries/highlights.scm | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/queries/highlights.scm b/queries/highlights.scm index 1eef55eee..f0a74a20a 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -1,3 +1,6 @@ +[ "." ";" ":" "," ] @punctuation.delimiter +[ "\\(" "(" ")" "[" "]" "{" "}"] @punctuation.bracket ; TODO: "\\(" ")" in interpolations should be @punctuation.special + ; Identifiers (attribute) @variable (simple_identifier) @variable @@ -15,7 +18,7 @@ (inheritance_modifier) ] @keyword -(function_declaration (simple_identifier) @function.method) +(function_declaration (simple_identifier) @method) (function_declaration ["init" @constructor]) (throws) @keyword (async) @keyword @@ -26,7 +29,15 @@ (inheritance_constraint (identifier (simple_identifier) @parameter)) (equality_constraint (identifier (simple_identifier) @parameter)) -["typealias" "struct" "class" "enum" "protocol" "extension"] @keyword +[ + "typealias" + "struct" + "class" + "enum" + "protocol" + "extension" + "indirect" +] @keyword (class_body (property_declaration (value_binding_pattern (non_binding_pattern (simple_identifier) @property)))) (protocol_property_declaration (value_binding_pattern (non_binding_pattern (simple_identifier) @property))) @@ -66,6 +77,8 @@ (switch_entry ["fallthrough" @keyword]) (switch_entry (default_keyword) @keyword) "return" @keyword.return +(ternary_expression + ["?" ":"] @conditional) ["do" (throw_keyword) (catch_keyword)] @keyword @@ -126,5 +139,13 @@ "%=" "!=" "!==" + "==" "===" + "??" + + "->" + + "..<" + "..." ] @operator + From 9ee2d8c29600425b64e7b173b2224033a0f99d0c Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Fri, 21 Jan 2022 21:21:55 -0800 Subject: [PATCH 090/151] Don't use typescript anymore The only real typescript feature was being used for the precedence array, where it really isn't necessary. Since typescript brings in a ton of new dependencies and adds extra build steps, it would be easier to just use straight JS. --- .gitignore | 1 - grammar.js | 2144 +++++++++++++++++++++++++++++- grammar.ts | 2071 ----------------------------- package-lock.json | 293 +--- package.json | 8 +- tsconfig.json | 12 - types/tree-sitter-dsl/index.d.ts | 169 --- 7 files changed, 2194 insertions(+), 2504 deletions(-) delete mode 100644 grammar.ts delete mode 100644 tsconfig.json delete mode 100644 types/tree-sitter-dsl/index.d.ts diff --git a/.gitignore b/.gitignore index 599698049..4143499ce 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,3 @@ node_modules /test Cargo.lock /target/* -/grammar.js diff --git a/grammar.js b/grammar.js index 46adc3ae9..79d2080f7 100644 --- a/grammar.js +++ b/grammar.js @@ -1,5 +1,2139 @@ -// This file exists to flag to the `tree-sitter` CLI that we are a proper grammar directory, to work -// around some inflexibility in the CLI. However, it will get replaced at install-time with totally -// different contents. Do not check in these changes! - -// You can ignore this file's changes using `git update-index --skip-worktree grammar.js`. +"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. + */ +var 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_suffix: -2, + await: -2, + assignment: -3, + comment: -3, + lambda: -3, +}; +var DEC_DIGITS = token(sep1(/[0-9]+/, /_+/)); +var HEX_DIGITS = token(sep1(/[0-9a-fA-F]+/, /_+/)); +var OCT_DIGITS = token(sep1(/[0-7]+/, /_+/)); +var BIN_DIGITS = token(sep1(/[01]+/, /_+/)); +var REAL_EXPONENT = token(seq(/[eE]/, optional(/[+-]/), DEC_DIGITS)); +var LEXICAL_IDENTIFIER = /[_\p{XID_Start}][_\p{XID_Continue}]*/; +var CUSTOM_OPERATORS = token( + choice( + // https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html#ID418 + // This supports a subset of the operators that Swift does but I'm really not concerned about the esoteric ones. + // Someone who wants unicode support can add it. What this does do is: + // * Avoid the reserved operators by saying that certain characters are only available if you don't start with them. + // * Entirely forbid `<` as the last char because it creates ambiguity with type arguments + /[\\<>&?=][\/=\-+!*%<>&|^?~\.]*[\/=\-+!*%>&|^?~]+/, + /[\-+!*%|^~]+[\/=\-+!*%<>&|^?~]*[\/=\-+!*%>&|^?~]+/, + /[\-+!*%|^~\.]+[\/=\-+!*%<>&|^?~\.]*[\/=\-+!*%>&|^?~\.]+/, + /[\/]+[=\-+!*%<>&|^?~]*[=\-+!*%>&|^?~]+/, + /[\/]+[=\-+!*%<>&|^?~\.]*[=\-+!*%>&|^?~\.]+/ + ) +); +// XXX need custom scanner for: +// * Custom operators and `<` for type arguments +module.exports = grammar({ + name: "swift", + conflicts: function ($) { + return [ + // @Type(... could either be an annotation constructor invocation or an annotated expression + [$.attribute], + // 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], + // Custom operators get weird special handling for `<` characters in silly stuff like `func =<<<(...)` + [$.custom_operator], + [$._prefix_unary_operator, $._referenceable_operator], + // `+(...)` 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], + // `{ [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_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, + ], + ]; + }, + extras: function ($) { + return [ + $.comment, + $.multiline_comment, + $.directive, + $.diagnostic, + /\s+/, // Whitespace + ]; + }, + externals: function ($) { + return [ + // 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. + $._semi, + // Every one of the below operators will suppress a `_semi` if we encounter it after a newline. + $._arrow_operator_custom, + $._dot_custom, + $._three_dot_operator_custom, + $._open_ended_range_operator_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, + ]; + }, + rules: { + //////////////////////////////// + // File Structure + //////////////////////////////// + source_file: function ($) { + return seq( + optional($.shebang_line), + repeat(seq($._top_level_statement, $._semi)) + ); + }, + shebang_line: function ($) { + return seq("#!", /[^\r\n]*/); + }, + //////////////////////////////// + // Lexical Structure - https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html + //////////////////////////////// + comment: function ($) { + return token(prec(PRECS.comment, seq("//", /.*/))); + }, + // Identifiers + simple_identifier: function ($) { + return choice( + LEXICAL_IDENTIFIER, + /`[^\r\n` ]*`/, + /\$[0-9]+/, + token(seq("$", LEXICAL_IDENTIFIER)) + ); + }, + identifier: function ($) { + return sep1($.simple_identifier, $._dot); + }, + // Literals + _basic_literal: function ($) { + return choice( + $.integer_literal, + $.hex_literal, + $.oct_literal, + $.bin_literal, + $.real_literal, + $.boolean_literal, + $._string_literal, + "nil" + ); + }, + // TODO: Hex exponents + real_literal: function ($) { + return token( + choice( + seq(DEC_DIGITS, REAL_EXPONENT), + seq(optional(DEC_DIGITS), ".", DEC_DIGITS, optional(REAL_EXPONENT)) + ) + ); + }, + integer_literal: function ($) { + return token(seq(optional(/[1-9]/), DEC_DIGITS)); + }, + hex_literal: function ($) { + return token(seq("0", /[xX]/, HEX_DIGITS)); + }, + oct_literal: function ($) { + return token(seq("0", /[oO]/, OCT_DIGITS)); + }, + bin_literal: function ($) { + return token(seq("0", /[bB]/, BIN_DIGITS)); + }, + boolean_literal: function ($) { + return choice("true", "false"); + }, + // String literals + _string_literal: function ($) { + return choice( + $.line_string_literal, + $.multi_line_string_literal, + $.raw_string_literal + ); + }, + line_string_literal: function ($) { + return seq( + '"', + repeat(choice(field("text", $._line_string_content), $._interpolation)), + '"' + ); + }, + _line_string_content: function ($) { + return choice($.line_str_text, $.str_escaped_char); + }, + line_str_text: function ($) { + return /[^\\"]+/; + }, + str_escaped_char: function ($) { + return choice($._escaped_identifier, $._uni_character_literal); + }, + _uni_character_literal: function ($) { + return seq("\\", "u", /\{[0-9a-fA-F]+\}/); + }, + multi_line_string_literal: function ($) { + return seq( + '"""', + repeat( + choice(field("text", $._multi_line_string_content), $._interpolation) + ), + '"""' + ); + }, + raw_string_literal: function ($) { + return 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: function ($) { + return seq($.raw_str_interpolation_start, $._interpolation_contents, ")"); + }, + raw_str_interpolation_start: function ($) { + return /\\#*\(/; + }, + _multi_line_string_content: function ($) { + return choice($.multi_line_str_text, $.str_escaped_char, '"'); + }, + _interpolation: function ($) { + return seq("\\(", $._interpolation_contents, ")"); + }, + _interpolation_contents: function ($) { + return sep1( + field( + "interpolation", + alias($.value_argument, $.interpolated_expression) + ), + "," + ); + }, + _escaped_identifier: function ($) { + return /\\[0\\tnr"'\n]/; + }, + multi_line_str_text: function ($) { + return /[^\\"]+/; + }, + //////////////////////////////// + // Types - https://docs.swift.org/swift-book/ReferenceManual/Types.html + //////////////////////////////// + type_annotation: function ($) { + return seq(":", field("type", $._possibly_implicitly_unwrapped_type)); + }, + _possibly_implicitly_unwrapped_type: function ($) { + return seq($._type, optional(token.immediate("!"))); + }, + _type: function ($) { + return prec.right( + PRECS.ty, + seq(optional($.type_modifiers), field("name", $._unannotated_type)) + ); + }, + _unannotated_type: function ($) { + return prec.right( + PRECS.ty, + choice( + $.user_type, + $.tuple_type, + $.function_type, + $.array_type, + $.dictionary_type, + $.optional_type, + $.metatype, + $.opaque_type, + $.protocol_composition_type + ) + ); + }, + // The grammar just calls this whole thing a `type-identifier` but that's a bit confusing. + user_type: function ($) { + return sep1($._simple_user_type, $._dot); + }, + _simple_user_type: function ($) { + return prec.right( + PRECS.ty, + seq( + alias($.simple_identifier, $.type_identifier), + optional($.type_arguments) + ) + ); + }, + tuple_type: function ($) { + return seq( + "(", + optional(sep1(field("element", $.tuple_type_item), ",")), + ")" + ); + }, + tuple_type_item: function ($) { + return prec( + PRECS.expr, + seq( + optional($._tuple_type_item_identifier), + optional($.parameter_modifiers), + field("type", $._type) + ) + ); + }, + _tuple_type_item_identifier: function ($) { + return prec( + PRECS.expr, + seq( + optional($.wildcard_pattern), + field("name", $.simple_identifier), + ":" + ) + ); + }, + function_type: function ($) { + return seq( + field("params", $.tuple_type), + optional($.async), + optional($.throws), + $._arrow_operator, + field("return_type", $._type) + ); + }, + array_type: function ($) { + return seq("[", field("element", $._type), "]"); + }, + dictionary_type: function ($) { + return seq("[", field("key", $._type), ":", field("value", $._type), "]"); + }, + optional_type: function ($) { + return prec.left( + seq( + field( + "wrapped", + choice($.user_type, $.tuple_type, $.array_type, $.dictionary_type) + ), + repeat1(alias($._immediate_quest, "?")) + ) + ); + }, + metatype: function ($) { + return prec.left( + seq($._unannotated_type, ".", choice("Type", "Protocol")) + ); + }, + _quest: function ($) { + return "?"; + }, + _immediate_quest: function ($) { + return token.immediate("?"); + }, + opaque_type: function ($) { + return seq("some", $.user_type); + }, + protocol_composition_type: function ($) { + return prec.right( + seq( + $._unannotated_type, + repeat1(seq("&", prec.right($._unannotated_type))) + ) + ); + }, + //////////////////////////////// + // Expressions - https://docs.swift.org/swift-book/ReferenceManual/Expressions.html + //////////////////////////////// + _expression: function ($) { + return prec( + PRECS.expr, + choice( + $.simple_identifier, + $._unary_expression, + $._binary_expression, + $.ternary_expression, + $._primary_expression, + $.assignment, + seq($._expression, alias($._immediate_quest, "?")) + ) + ); + }, + // Unary expressions + _unary_expression: function ($) { + return 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: function ($) { + return prec.left( + PRECS.postfix_operations, + seq( + field("target", $._expression), + field("operation", $._postfix_unary_operator) + ) + ); + }, + constructor_expression: function ($) { + return prec( + PRECS.call, + seq( + field( + "constructed_type", + choice($.array_type, $.dictionary_type, $.user_type) + ), + $.constructor_suffix + ) + ); + }, + navigation_expression: function ($) { + return prec.left( + PRECS.navigation, + seq( + field("target", choice($._navigable_type_expression, $._expression)), + field("suffix", $.navigation_suffix) + ) + ); + }, + _navigable_type_expression: function ($) { + return choice($.user_type, $.array_type, $.dictionary_type); + }, + open_start_range_expression: function ($) { + return prec.right( + PRECS.range, + seq( + choice($._open_ended_range_operator, $._three_dot_operator), + prec.right(PRECS.range_suffix, field("end", $._expression)) + ) + ); + }, + open_end_range_expression: function ($) { + return prec.right( + PRECS.range, + seq(field("start", $._expression), $._three_dot_operator) + ); + }, + prefix_expression: function ($) { + return prec.left( + PRECS.prefix_operations, + seq( + field("operation", $._prefix_unary_operator), + field("target", $._expression) + ) + ); + }, + as_expression: function ($) { + return prec.left( + PRECS.as, + seq(field("expr", $._expression), $.as_operator, field("type", $._type)) + ); + }, + selector_expression: function ($) { + return seq( + "#selector", + "(", + optional(choice("getter:", "setter:")), + $._expression, + ")" + ); + }, + // Binary expressions + _binary_expression: function ($) { + return choice( + $.multiplicative_expression, + $.additive_expression, + $.range_expression, + $.infix_expression, + $.nil_coalescing_expression, + $.check_expression, + $.equality_expression, + $.comparison_expression, + $.equality_expression, + $.conjunction_expression, + $.disjunction_expression, + $.bitwise_operation + ); + }, + multiplicative_expression: function ($) { + return prec.left( + PRECS.multiplication, + seq( + field("lhs", $._expression), + field("op", $._multiplicative_operator), + field("rhs", $._expression) + ) + ); + }, + additive_expression: function ($) { + return prec.left( + PRECS.addition, + seq( + field("lhs", $._expression), + field("op", $._additive_operator), + field("rhs", $._expression) + ) + ); + }, + range_expression: function ($) { + return prec.right( + PRECS.range, + seq( + field("start", $._expression), + field( + "op", + choice($._open_ended_range_operator, $._three_dot_operator) + ), + field("end", $._expression) + ) + ); + }, + infix_expression: function ($) { + return prec.left( + PRECS.infix_operations, + seq( + field("lhs", $._expression), + field("op", $.custom_operator), + field("rhs", $._expression) + ) + ); + }, + nil_coalescing_expression: function ($) { + return prec.right( + PRECS.nil_coalescing, + seq( + field("value", $._expression), + $._nil_coalescing_operator, + field("if_nil", $._expression) + ) + ); + }, + check_expression: function ($) { + return prec.left( + PRECS.check, + seq( + field("target", $._expression), + field("op", $._is_operator), + field("type", $._type) + ) + ); + }, + comparison_expression: function ($) { + return prec.left( + seq( + field("lhs", $._expression), + field("op", $._comparison_operator), + field("rhs", $._expression) + ) + ); + }, + equality_expression: function ($) { + return prec.left( + PRECS.equality, + seq( + field("lhs", $._expression), + field("op", $._equality_operator), + field("rhs", $._expression) + ) + ); + }, + conjunction_expression: function ($) { + return prec.left( + PRECS.conjunction, + seq( + field("lhs", $._expression), + field("op", $._conjunction_operator), + field("rhs", $._expression) + ) + ); + }, + disjunction_expression: function ($) { + return prec.left( + PRECS.disjunction, + seq( + field("lhs", $._expression), + field("op", $._disjunction_operator), + field("rhs", $._expression) + ) + ); + }, + bitwise_operation: function ($) { + return prec.left( + seq( + field("lhs", $._expression), + field("op", $._bitwise_binary_operator), + field("rhs", $._expression) + ) + ); + }, + custom_operator: function ($) { + return seq(CUSTOM_OPERATORS, optional("<")); + }, + // Suffixes + navigation_suffix: function ($) { + return seq( + $._dot, + field("suffix", choice($.simple_identifier, $.integer_literal)) + ); + }, + call_suffix: function ($) { + return prec( + PRECS.call_suffix, + seq( + choice( + $.value_arguments, + sep1($.lambda_literal, seq(field("name", $.simple_identifier), ":")) + ) + ) + ); + }, + constructor_suffix: function ($) { + return prec( + PRECS.call_suffix, + seq( + choice( + alias($._constructor_value_arguments, $.value_arguments), + $.lambda_literal + ) + ) + ); + }, + _constructor_value_arguments: function ($) { + return seq("(", optional(sep1($.value_argument, ",")), ")"); + }, + type_arguments: function ($) { + return prec.left(seq("<", sep1($._type, ","), ">")); + }, + value_arguments: function ($) { + return seq( + choice( + seq("(", optional(sep1($.value_argument, ",")), ")"), + seq("[", optional(sep1($.value_argument, ",")), "]") + ) + ); + }, + value_argument: function ($) { + return prec.left( + seq( + optional($.type_modifiers), + choice( + repeat1( + seq(field("reference_specifier", $.simple_identifier), ":") + ), + seq( + optional(seq(field("name", $.simple_identifier), ":")), + field("value", $._expression) + ) + ) + ) + ); + }, + try_expression: function ($) { + return 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, $.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: function ($) { + return 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: function ($) { + return "await"; + }, + ternary_expression: function ($) { + return prec.right( + PRECS.ternary, + seq( + field("condition", $._expression), + $._quest, + field("if_true", $._expression), + ":", + prec.left( + PRECS.ternary_suffix, + field( + "if_false", + choice( + $._expression, + alias($.expr_hack_at_ternary_call, $.call_expression) + ) + ) + ) + ) + ); + }, + expr_hack_at_ternary_call: function ($) { + return seq( + $._expression, + alias($.expr_hack_at_ternary_call_suffix, $.call_suffix) + ); + }, + expr_hack_at_ternary_call_suffix: function ($) { + return prec(PRECS.call_suffix, $.value_arguments); + }, + call_expression: function ($) { + return prec(PRECS.call, seq($._expression, $.call_suffix)); + }, + _primary_expression: function ($) { + return 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: function ($) { + return prec.right( + PRECS.tuple, + seq( + "(", + sep1( + seq( + optional(seq(field("name", $.simple_identifier), ":")), + field("value", $._expression) + ), + "," + ), + ")" + ) + ); + }, + array_literal: function ($) { + return seq( + "[", + optional(sep1(field("element", $._expression), ",")), + optional(","), + "]" + ); + }, + dictionary_literal: function ($) { + return seq( + "[", + choice(":", sep1($._dictionary_literal_item, ",")), + optional(","), + "]" + ); + }, + _dictionary_literal_item: function ($) { + return seq( + field("key", $._expression), + ":", + field("value", $._expression) + ); + }, + _special_literal: function ($) { + return choice( + "#file", + "#fileID", + "#filePath", + "#line", + "#column", + "#function", + "#dsohandle" + ); + }, + _playground_literal: function ($) { + return seq( + choice("#colorLiteral", "#fileLiteral", "#imageLiteral"), + "(", + sep1(seq($.simple_identifier, ":", $._expression), ","), + ")" + ); + }, + lambda_literal: function ($) { + return prec.left( + PRECS.lambda, + seq( + "{", + prec(PRECS.expr, optional(field("captures", $.capture_list))), + optional(seq(optional(field("type", $.lambda_function_type)), "in")), + optional($.statements), + "}" + ) + ); + }, + capture_list: function ($) { + return seq(repeat($.attribute), "[", sep1($.capture_list_item, ","), "]"); + }, + capture_list_item: function ($) { + return 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: function ($) { + return prec( + PRECS.expr, + seq( + choice( + $.lambda_function_type_parameters, + seq("(", optional($.lambda_function_type_parameters), ")") + ), + optional($.async), + optional($.throws), + optional( + seq( + $._arrow_operator, + field("return_type", $._possibly_implicitly_unwrapped_type) + ) + ) + ) + ); + }, + lambda_function_type_parameters: function ($) { + return sep1($.lambda_parameter, ","); + }, + lambda_parameter: function ($) { + return 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: function ($) { + return "self"; + }, + super_expression: function ($) { + return seq("super"); + }, + _else_options: function ($) { + return choice($._block, $.if_statement); + }, + if_statement: function ($) { + return prec.right( + PRECS["if"], + seq( + "if", + sep1(field("condition", $._if_condition_sequence_item), ","), + $._block, + optional(seq($["else"], $._else_options)) + ) + ); + }, + _if_condition_sequence_item: function ($) { + return choice($._if_let_binding, $._expression, $.availability_condition); + }, + _if_let_binding: function ($) { + return seq($._direct_or_indirect_binding, $._equal_sign, $._expression); + }, + guard_statement: function ($) { + return prec.right( + PRECS["if"], + seq( + "guard", + sep1(field("condition", $._if_condition_sequence_item), ","), + $["else"], + $._block + ) + ); + }, + switch_statement: function ($) { + return prec.right( + PRECS["switch"], + seq( + "switch", + field("expr", $._expression), + "{", + repeat($.switch_entry), + "}" + ) + ); + }, + switch_entry: function ($) { + return 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: function ($) { + return generate_pattern_matching_rule($, true, false, true); + }, + do_statement: function ($) { + return prec.right( + PRECS["do"], + seq("do", $._block, repeat($.catch_block)) + ); + }, + catch_block: function ($) { + return seq( + $.catch_keyword, + field( + "error", + optional(generate_pattern_matching_rule($, true, false)) + ), + optional($.where_clause), + $._block + ); + }, + where_clause: function ($) { + return prec.left(seq($.where_keyword, $._expression)); + }, + key_path_expression: function ($) { + return prec.right( + PRECS.keypath, + seq( + "\\", + optional( + choice($._simple_user_type, $.array_type, $.dictionary_type) + ), + repeat(seq(".", $._key_path_component)) + ) + ); + }, + key_path_string_expression: function ($) { + return prec.left(seq("#keyPath", "(", $._expression, ")")); + }, + _key_path_component: function ($) { + return prec.left( + choice( + seq($.simple_identifier, repeat($._key_path_postfixes)), + repeat1($._key_path_postfixes) + ) + ); + }, + _key_path_postfixes: function ($) { + return choice( + "?", + $.bang, + "self", + seq("[", optional(sep1($.value_argument, ",")), "]") + ); + }, + _try_operator: function ($) { + return choice("try", "try!", "try?"); + }, + _assignment_and_operator: function ($) { + return choice("+=", "-=", "*=", "/=", "%=", "="); + }, + _equality_operator: function ($) { + return choice("!=", "!==", $._eq_eq, "==="); + }, + _comparison_operator: function ($) { + return choice("<", ">", "<=", ">="); + }, + _is_operator: function ($) { + return "is"; + }, + _additive_operator: function ($) { + return choice( + alias($._plus_then_ws, "+"), + alias($._minus_then_ws, "-"), + "+", + "-" + ); + }, + _multiplicative_operator: function ($) { + return choice("*", "/", "%"); + }, + as_operator: function ($) { + return choice($._as, $._as_quest, $._as_bang); + }, + _prefix_unary_operator: function ($) { + return prec.right( + choice( + "++", + "--", + "-", + "+", + $.bang, + "&", + "~", + $._dot, + $.custom_operator + ) + ); + }, + _bitwise_binary_operator: function ($) { + return choice("&", "|", "^", "<<", ">>"); + }, + _postfix_unary_operator: function ($) { + return choice("++", "--", $.bang); + }, + directly_assignable_expression: function ($) { + return choice( + $.simple_identifier, + $.navigation_expression, + $.call_expression, + $.tuple_expression, + $.self_expression + ); + }, + //////////////////////////////// + // Statements - https://docs.swift.org/swift-book/ReferenceManual/Statements.html + //////////////////////////////// + statements: function ($) { + return prec.left( + // Left precedence is required in switch statements + seq( + $._local_statement, + repeat(seq($._semi, $._local_statement)), + optional($._semi) + ) + ); + }, + _local_statement: function ($) { + return choice( + $._expression, + $._local_declaration, + $._labeled_statement, + $.control_transfer_statement + ); + }, + _top_level_statement: function ($) { + return choice( + $._expression, + $._global_declaration, + $._labeled_statement, + $._throw_statement + ); + }, + _block: function ($) { + return prec(PRECS.block, seq("{", optional($.statements), "}")); + }, + _labeled_statement: function ($) { + return seq( + optional($.statement_label), + choice( + $.for_statement, + $.while_statement, + $.repeat_while_statement, + $.do_statement, + $.if_statement, + $.guard_statement, + $.switch_statement + ) + ); + }, + statement_label: function ($) { + return token(/[a-zA-Z_][a-zA-Z_0-9]*:/); + }, + for_statement: function ($) { + return prec( + PRECS.loop, + seq( + "for", + optional($._try_operator), + optional($._await_operator), + field("item", generate_pattern_matching_rule($, true, true, false)), + optional($.type_annotation), + "in", + field("collection", $._expression), + optional($.where_clause), + $._block + ) + ); + }, + while_statement: function ($) { + return prec( + PRECS.loop, + seq( + "while", + sep1(field("condition", $._if_condition_sequence_item), ","), + "{", + optional($.statements), + "}" + ) + ); + }, + repeat_while_statement: function ($) { + return prec( + PRECS.loop, + seq( + "repeat", + "{", + optional($.statements), + "}", + "while", + sep1(field("condition", $._if_condition_sequence_item), ",") + ) + ); + }, + control_transfer_statement: function ($) { + return choice( + prec.right(PRECS.control_transfer, $._throw_statement), + prec.right( + PRECS.control_transfer, + seq( + $._optionally_valueful_control_keyword, + field("result", optional($._expression)) + ) + ) + ); + }, + _throw_statement: function ($) { + return seq($.throw_keyword, $._expression); + }, + throw_keyword: function ($) { + return "throw"; + }, + _optionally_valueful_control_keyword: function ($) { + return choice("return", "continue", "break", "yield"); + }, + assignment: function ($) { + return prec.left( + PRECS.assignment, + seq( + field("target", $.directly_assignable_expression), + field("operator", $._assignment_and_operator), + field("result", $._expression) + ) + ); + }, + availability_condition: function ($) { + return seq( + "#available", + "(", + sep1(choice($._availability_argument, "*"), ","), + ")" + ); + }, + _availability_argument: function ($) { + return seq($.identifier, sep1($.integer_literal, ".")); + }, + //////////////////////////////// + // Declarations - https://docs.swift.org/swift-book/ReferenceManual/Declarations.html + //////////////////////////////// + _global_declaration: function ($) { + return choice( + $.import_declaration, + $.property_declaration, + $.typealias_declaration, + $.function_declaration, + $.class_declaration, + // TODO actor declaration + $.protocol_declaration, + $.operator_declaration, + $.precedence_group_declaration, + $.associatedtype_declaration + ); + }, + _type_level_declaration: function ($) { + return 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: function ($) { + return 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: function ($) { + return seq( + optional($._locally_permitted_modifiers), + $._modifierless_property_declaration + ); + }, + _local_typealias_declaration: function ($) { + return seq( + optional($._locally_permitted_modifiers), + $._modifierless_typealias_declaration + ); + }, + _local_function_declaration: function ($) { + return seq( + optional($._locally_permitted_modifiers), + $._modifierless_function_declaration + ); + }, + _local_class_declaration: function ($) { + return seq( + optional($._locally_permitted_modifiers), + $._modifierless_class_declaration + ); + }, + import_declaration: function ($) { + return seq( + optional($.modifiers), + "import", + optional($._import_kind), + $.identifier + ); + }, + _import_kind: function ($) { + return choice( + "typealias", + "struct", + "class", + "enum", + "protocol", + "let", + "var", + "func" + ); + }, + protocol_property_declaration: function ($) { + return prec.right( + seq( + optional($.modifiers), + field("name", $.value_binding_pattern), + optional($.type_annotation), + optional($.type_constraints), + $.protocol_property_requirements + ) + ); + }, + protocol_property_requirements: function ($) { + return seq( + "{", + repeat(choice($.getter_specifier, $.setter_specifier)), + "}" + ); + }, + property_declaration: function ($) { + return seq( + optional($.modifiers), + optional("class"), + $._modifierless_property_declaration + ); + }, + _modifierless_property_declaration: function ($) { + return prec.right( + seq( + choice("let", "var"), + sep1( + seq( + field( + "name", + alias($.property_binding_pattern, $.value_binding_pattern) + ), + optional($.type_annotation), + optional($.type_constraints), + optional( + choice( + seq($._equal_sign, field("value", $._expression)), + field("computed_value", $.computed_property) + ) + ) + ), + "," + ) + ) + ); + }, + property_binding_pattern: function ($) { + return generate_pattern_matching_rule($, false, false); + }, + typealias_declaration: function ($) { + return seq(optional($.modifiers), $._modifierless_typealias_declaration); + }, + _modifierless_typealias_declaration: function ($) { + return seq( + "typealias", + field("name", alias($.simple_identifier, $.type_identifier)), + optional($.type_parameters), + $._equal_sign, + field("value", $._type) + ); + }, + function_declaration: function ($) { + return prec.right( + seq($._bodyless_function_declaration, field("body", $.function_body)) + ); + }, + _modifierless_function_declaration: function ($) { + return prec.right( + seq( + $._modifierless_function_declaration_no_body, + field("body", $.function_body) + ) + ); + }, + _bodyless_function_declaration: function ($) { + return 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: function ($) { + return prec.right( + seq( + choice( + $._constructor_function_decl, + $._non_constructor_function_decl + ), + optional($.type_parameters), + $._function_value_parameters, + optional($.async), + optional($.throws), + optional( + seq( + $._arrow_operator, + field("return_type", $._possibly_implicitly_unwrapped_type) + ) + ), + optional($.type_constraints) + ) + ); + }, + function_body: function ($) { + return $._block; + }, + class_declaration: function ($) { + return seq(optional($.modifiers), $._modifierless_class_declaration); + }, + _modifierless_class_declaration: function ($) { + return prec.right( + choice( + seq( + field("declaration_kind", choice("class", "struct")), + 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", $.user_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: function ($) { + return seq("{", optional($._class_member_declarations), "}"); + }, + _inheritance_specifiers: function ($) { + return prec.left( + sep1($._annotated_inheritance_specifier, choice(",", "&")) + ); + }, + inheritance_specifier: function ($) { + return prec.left( + field("inherits_from", choice($.user_type, $.function_type)) + ); + }, + _annotated_inheritance_specifier: function ($) { + return seq(repeat($.attribute), $.inheritance_specifier); + }, + type_parameters: function ($) { + return seq("<", sep1($.type_parameter, ","), ">"); + }, + type_parameter: function ($) { + return seq( + optional($.type_parameter_modifiers), + alias($.simple_identifier, $.type_identifier), + optional(seq(":", $._type)) + ); + }, + type_constraints: function ($) { + return prec.right(seq($.where_keyword, sep1($.type_constraint, ","))); + }, + type_constraint: function ($) { + return choice($.inheritance_constraint, $.equality_constraint); + }, + inheritance_constraint: function ($) { + return seq( + repeat($.attribute), + field("constrained_type", $.identifier), + ":", + field("inherits_from", $._possibly_implicitly_unwrapped_type) + ); + }, + equality_constraint: function ($) { + return seq( + repeat($.attribute), + field("constrained_type", $.identifier), + choice($._equal_sign, $._eq_eq), + field("must_equal", $._type) + ); + }, + _class_member_separator: function ($) { + return choice($._semi, $.multiline_comment); + }, + _class_member_declarations: function ($) { + return seq( + sep1($._type_level_declaration, $._class_member_separator), + optional($._class_member_separator) + ); + }, + _function_value_parameters: function ($) { + return seq("(", optional(sep1($._function_value_parameter, ",")), ")"); + }, + _function_value_parameter: function ($) { + return seq( + optional($.attribute), + $.parameter, + optional(seq($._equal_sign, field("default_value", $._expression))) + ); + }, + parameter: function ($) { + return 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: function ($) { + return seq(field("name", "init"), optional(choice($._quest, $.bang))); + }, + _non_constructor_function_decl: function ($) { + return seq( + "func", + field( + "name", + choice( + $.simple_identifier, + $._referenceable_operator, + $._bitwise_binary_operator + ) + ) + ); + }, + _referenceable_operator: function ($) { + return choice( + $.custom_operator, + $._comparison_operator, + $._additive_operator, + $._multiplicative_operator, + $._equality_operator, + $._comparison_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: function ($) { + return alias($._eq_custom, "="); + }, + _eq_eq: function ($) { + return alias($._eq_eq_custom, "=="); + }, + _dot: function ($) { + return alias($._dot_custom, "."); + }, + _arrow_operator: function ($) { + return alias($._arrow_operator_custom, "->"); + }, + _three_dot_operator: function ($) { + return alias($._three_dot_operator_custom, "..."); + }, + _open_ended_range_operator: function ($) { + return alias($._open_ended_range_operator_custom, "..<"); + }, + _conjunction_operator: function ($) { + return alias($._conjunction_operator_custom, "&&"); + }, + _disjunction_operator: function ($) { + return alias($._disjunction_operator_custom, "||"); + }, + _nil_coalescing_operator: function ($) { + return alias($._nil_coalescing_operator_custom, "??"); + }, + _as: function ($) { + return alias($._as_custom, "as"); + }, + _as_quest: function ($) { + return alias($._as_quest_custom, "as?"); + }, + _as_bang: function ($) { + return alias($._as_bang_custom, "as!"); + }, + throws: function ($) { + return choice($._throws_keyword, $._rethrows_keyword); + }, + enum_class_body: function ($) { + return seq( + "{", + repeat(choice($.enum_entry, $._type_level_declaration)), + "}" + ); + }, + enum_entry: function ($) { + return seq( + optional($.modifiers), + optional("indirect"), + "case", + sep1( + seq( + field("name", $.simple_identifier), + optional( + choice( + field("data_contents", $.enum_type_parameters), + seq($._equal_sign, field("raw_value", $._expression)) + ) + ) + ), + "," + ), + optional(";") + ); + }, + enum_type_parameters: function ($) { + return seq( + "(", + optional( + sep1( + seq( + optional( + seq(optional($.wildcard_pattern), $.simple_identifier, ":") + ), + $._type, + optional(seq($._equal_sign, $._expression)) + ), + "," + ) + ), + ")" + ); + }, + protocol_declaration: function ($) { + return 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: function ($) { + return seq("{", optional($._protocol_member_declarations), "}"); + }, + _protocol_member_declarations: function ($) { + return seq( + sep1($._protocol_member_declaration, $._semi), + optional($._semi) + ); + }, + _protocol_member_declaration: function ($) { + return 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: function ($) { + return prec.right( + seq(optional($.modifiers), "deinit", field("body", $.function_body)) + ); + }, + subscript_declaration: function ($) { + return 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), + "{", + choice( + optional($.statements), + repeat( + choice($.computed_getter, $.computed_setter, $.computed_modify) + ) + ), + "}" + ) + ); + }, + computed_property: function ($) { + return seq( + "{", + choice( + optional($.statements), + repeat( + choice($.computed_getter, $.computed_setter, $.computed_modify) + ) + ), + "}" + ); + }, + computed_getter: function ($) { + return seq(repeat($.attribute), $.getter_specifier, optional($._block)); + }, + computed_modify: function ($) { + return seq(repeat($.attribute), $.modify_specifier, optional($._block)); + }, + computed_setter: function ($) { + return seq( + repeat($.attribute), + $.setter_specifier, + optional(seq("(", $.simple_identifier, ")")), + optional($._block) + ); + }, + getter_specifier: function ($) { + return seq(optional($.mutation_modifier), "get"); + }, + setter_specifier: function ($) { + return seq(optional($.mutation_modifier), "set"); + }, + modify_specifier: function ($) { + return seq(optional($.mutation_modifier), "_modify"); + }, + operator_declaration: function ($) { + return seq( + choice("prefix", "infix", "postfix"), + "operator", + $.custom_operator, + optional(seq(":", $.simple_identifier)) + ); + }, + precedence_group_declaration: function ($) { + return seq( + "precedencegroup", + $.simple_identifier, + "{", + optional($.precedence_group_attributes), + "}" + ); + }, + precedence_group_attributes: function ($) { + return repeat1($.precedence_group_attribute); + }, + precedence_group_attribute: function ($) { + return seq( + $.simple_identifier, + ":", + choice($.simple_identifier, $.boolean_literal) + ); + }, + associatedtype_declaration: function ($) { + return 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: function ($) { + return seq( + "@", + $.user_type, + // attribute arguments are a mess of special cases, maybe this is good enough? + optional( + seq( + "(", + sep1( + 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 + //////////////////////////////// + // Higher-than-default precedence to resolve `x as SomeType` ambiguity (expression patterns seem not to support + // as-expressions) + binding_pattern: function ($) { + return prec.left( + 1, + generate_pattern_matching_rule($, true, false, false, true) + ); + }, + non_binding_pattern: function ($) { + return prec.left( + 1, + generate_pattern_matching_rule($, false, false, false, true) + ); + }, + // Higher precedence than pattern w/o binding since these are strictly more flexible + _binding_pattern_with_expr: function ($) { + return prec.left( + 2, + generate_pattern_matching_rule($, true, false, true, true) + ); + }, + _non_binding_pattern_with_expr: function ($) { + return prec.left( + 2, + generate_pattern_matching_rule($, false, false, true, true) + ); + }, + _direct_or_indirect_binding: function ($) { + return seq( + choice( + $.value_binding_pattern, + seq("case", generate_pattern_matching_rule($, true, false, false)) + ), + optional($.type_annotation) + ); + }, + wildcard_pattern: function ($) { + return "_"; + }, + value_binding_pattern: function ($) { + return prec.left( + choice( + seq("var", generate_pattern_matching_rule($, false, false)), + seq("let", generate_pattern_matching_rule($, false, false)) + ) + ); + }, + // ========== + // Modifiers + // ========== + modifiers: function ($) { + return repeat1( + choice($._non_local_scope_modifier, $._locally_permitted_modifiers) + ); + }, + _locally_permitted_modifiers: function ($) { + return repeat1(choice($.attribute, $._locally_permitted_modifier)); + }, + parameter_modifiers: function ($) { + return repeat1($.parameter_modifier); + }, + _modifier: function ($) { + return choice($._non_local_scope_modifier, $._locally_permitted_modifier); + }, + _non_local_scope_modifier: function ($) { + return choice( + $.member_modifier, + $.visibility_modifier, + $.function_modifier, + $.mutation_modifier, + $.property_modifier, + $.parameter_modifier + ); + }, + _locally_permitted_modifier: function ($) { + return choice( + $.ownership_modifier, + $.property_behavior_modifier, + $.inheritance_modifier + ); + }, + property_behavior_modifier: function ($) { + return "lazy"; + }, + type_modifiers: function ($) { + return repeat1($.attribute); + }, + member_modifier: function ($) { + return choice("override", "convenience", "required"); + }, + visibility_modifier: function ($) { + return seq( + choice("public", "private", "internal", "fileprivate", "open"), + optional(seq("(", "set", ")")) + ); + }, + type_parameter_modifiers: function ($) { + return repeat1($.attribute); + }, + function_modifier: function ($) { + return choice("infix", "postfix", "prefix"); + }, + mutation_modifier: function ($) { + return choice("mutating", "nonmutating"); + }, + property_modifier: function ($) { + return choice("static", "dynamic", "optional"); + }, + inheritance_modifier: function ($) { + return choice("final"); + }, + parameter_modifier: function ($) { + return choice("inout", "@escaping", "@autoclosure"); + }, + ownership_modifier: function ($) { + return choice("weak", "unowned", "unowned(safe)", "unowned(unsafe)"); + }, + use_site_target: function ($) { + return seq( + choice( + "property", + "get", + "set", + "receiver", + "param", + "setparam", + "delegate" + ), + ":" + ); + }, + directive: function ($) { + return token( + prec( + PRECS.comment, + choice( + seq("#if", /.*/), + seq("#elseif", /.*/), + seq("#else", /.*/), + seq("#endif", /.*/), + seq(/#sourceLocation([^\r\n]*)/) + ) + ) + ); + }, + diagnostic: function ($) { + return 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 generate_tuple_pattern($, allows_binding, allows_expressions) { + var pattern_rule = generate_pattern_matching_rule( + $, + allows_binding, + false, + allows_expressions + ); + var tuple_pattern_item = choice( + seq($.simple_identifier, seq(":", pattern_rule)), + pattern_rule + ); + return seq("(", sep1(tuple_pattern_item, ","), ")", optional($._quest)); +} +function generate_case_pattern($, allows_binding, force) { + return seq( + optional($.user_type), // XXX this should just be _type but that creates ambiguity + $._dot, + $.simple_identifier, + optional(generate_tuple_pattern($, allows_binding, true)), + optional($._quest) + ); +} +function generate_type_casting_pattern($, allows_binding) { + return choice( + seq("is", $._type), + seq( + generate_pattern_matching_rule($, allows_binding, false), + $._as, + $._type + ) + ); +} +function generate_pattern_matching_rule( + $, + allows_binding, + allows_case_keyword, + allows_expressions, + force +) { + if (!force && !allows_case_keyword) { + if (allows_binding && !allows_expressions) { + return $.binding_pattern; + } + if (!allows_binding && !allows_expressions) { + return $.non_binding_pattern; + } + if (allows_binding && allows_expressions) { + return $._binding_pattern_with_expr; + } + if (!allows_binding && allows_expressions) { + return $._non_binding_pattern_with_expr; + } + } + var always_allowed_patterns = [ + $.wildcard_pattern, + generate_tuple_pattern($, allows_binding, allows_expressions || false), + generate_type_casting_pattern($, allows_binding), + ]; + var binding_pattern_prefix = allows_case_keyword + ? seq(optional("case"), choice("var", "let")) + : choice("var", "let"); + var binding_pattern_if_allowed = allows_binding + ? [ + seq( + binding_pattern_prefix, + generate_pattern_matching_rule($, false, false, false) + ), + ] + : []; + var case_pattern = allows_case_keyword + ? seq("case", generate_case_pattern($, allows_binding)) + : generate_case_pattern($, allows_binding); + var expression_pattern = allows_expressions + ? $._expression + : $.simple_identifier; + var all_patterns = always_allowed_patterns + .concat(binding_pattern_if_allowed) + .concat(case_pattern) + .concat(expression_pattern); + return seq(choice.apply(void 0, all_patterns), optional($._quest)); +} diff --git a/grammar.ts b/grammar.ts deleted file mode 100644 index 66207bbf5..000000000 --- a/grammar.ts +++ /dev/null @@ -1,2071 +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. - */ - -const EXPR_PREC_START = 11; -const EXPRESSION_PREC_LIST = [ - ["multiplication"], - ["addition"], - ["infix_operations"], - ["nil_coalescing"], - ["check", "prefix_operations"], - ["comparison", "postfix_operations"], - ["equality"], - ["conjunction"], - ["disjunction"], - ["block"], - ["loop", "keypath"], - ["control_transfer"], // 0 - [ - "as", - "tuple", - "if", - "switch", - "do", - "fully_open_range", - "range", - "navigation", - "expr", - "ty", - ], - [ - "call", - "ternary", - "try", - "call_suffix", - "range_suffix", - "ternary_suffix", - "await", - ], - ["assignment", "comment", "lambda"], -] as const; - -type ExprPrecedences = typeof EXPRESSION_PREC_LIST[number][number]; -type PrecedenceMap = { [keys in ExprPrecedences]: number }; - -const PRECS: PrecedenceMap = Object.fromEntries( - EXPRESSION_PREC_LIST.flatMap((it, index) => { - return it.map((exprType) => { - return [exprType, EXPR_PREC_START - index]; - }); - }) -) as PrecedenceMap; - -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)); -const LEXICAL_IDENTIFIER = /[_\p{XID_Start}][_\p{XID_Continue}]*/; -const CUSTOM_OPERATORS = token( - choice( - // https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html#ID418 - // This supports a subset of the operators that Swift does but I'm really not concerned about the esoteric ones. - // Someone who wants unicode support can add it. What this does do is: - // * Avoid the reserved operators by saying that certain characters are only available if you don't start with them. - // * Entirely forbid `<` as the last char because it creates ambiguity with type arguments - /[\\<>&?=][\/=\-+!*%<>&|^?~\.]*[\/=\-+!*%>&|^?~]+/, - /[\-+!*%|^~]+[\/=\-+!*%<>&|^?~]*[\/=\-+!*%>&|^?~]+/, - /[\-+!*%|^~\.]+[\/=\-+!*%<>&|^?~\.]*[\/=\-+!*%>&|^?~\.]+/, - /[\/]+[=\-+!*%<>&|^?~]*[=\-+!*%>&|^?~]+/, - /[\/]+[=\-+!*%<>&|^?~\.]*[=\-+!*%>&|^?~\.]+/ - ) -); - -// XXX need custom scanner for: -// * Custom operators and `<` for type arguments - -module.exports = grammar({ - name: "swift", - - conflicts: ($) => [ - // @Type(... could either be an annotation constructor invocation or an annotated expression - [$.attribute], - - // 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], - - // Custom operators get weird special handling for `<` characters in silly stuff like `func =<<<(...)` - [$.custom_operator], - [$._prefix_unary_operator, $._referenceable_operator], - - // `+(...)` 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], - - // `{ [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_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, - ], - ], - - 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. - $._semi, - // Every one of the below operators will suppress a `_semi` if we encounter it after a newline. - $._arrow_operator_custom, - $._dot_custom, - $._three_dot_operator_custom, - $._open_ended_range_operator_custom, - $._conjunction_operator_custom, - $._disjunction_operator_custom, - $._nil_coalescing_operator_custom, - $._eq_custom, - $._eq_eq_custom, - $._plus_then_ws, // + symbol with whitespace after it - $._minus_then_ws, // - symbol with whitespace after it - $.bang, - $._throws_keyword, - $._rethrows_keyword, - $.default_keyword, - $.where_keyword, - $.else, - $.catch_keyword, - $._as_custom, - $._as_quest_custom, - $._as_bang_custom, - $.async, - ], - - rules: { - //////////////////////////////// - // File Structure - //////////////////////////////// - - source_file: ($) => - seq( - optional($.shebang_line), - repeat(seq($._top_level_statement, $._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)) - ), - - identifier: ($) => sep1($.simple_identifier, $._dot), - - // Literals - - _basic_literal: ($) => - choice( - $.integer_literal, - $.hex_literal, - $.oct_literal, - $.bin_literal, - $.real_literal, - $.boolean_literal, - $._string_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: ($) => /[^\\"]+/, - - //////////////////////////////// - // 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, - $.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", $.tuple_type), - optional($.async), - 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: ($) => - prec.left(seq($._unannotated_type, ".", choice("Type", "Protocol"))), - - _quest: ($) => "?", - _immediate_quest: ($) => token.immediate("?"), - - opaque_type: ($) => seq("some", $.user_type), - - protocol_composition_type: ($) => - prec.right( - 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, "?")) - ) - ), - - // 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( - choice($._open_ended_range_operator, $._three_dot_operator), - prec.right(PRECS.range_suffix, field("end", $._expression)) - ) - ), - - 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, - $.equality_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", - choice($._open_ended_range_operator, $._three_dot_operator) - ), - field("end", $._expression) - ) - ), - - infix_expression: ($) => - prec.left( - PRECS.infix_operations, - seq( - field("lhs", $._expression), - field("op", $.custom_operator), - field("rhs", $._expression) - ) - ), - - nil_coalescing_expression: ($) => - prec.right( - PRECS.nil_coalescing, - seq( - field("value", $._expression), - $._nil_coalescing_operator, - field("if_nil", $._expression) - ) - ), - - 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", $._expression) - ) - ), - - equality_expression: ($) => - prec.left( - PRECS.equality, - seq( - field("lhs", $._expression), - field("op", $._equality_operator), - field("rhs", $._expression) - ) - ), - - conjunction_expression: ($) => - prec.left( - PRECS.conjunction, - seq( - field("lhs", $._expression), - field("op", $._conjunction_operator), - field("rhs", $._expression) - ) - ), - - disjunction_expression: ($) => - prec.left( - PRECS.disjunction, - seq( - field("lhs", $._expression), - field("op", $._disjunction_operator), - field("rhs", $._expression) - ) - ), - - bitwise_operation: ($) => - prec.left( - seq( - field("lhs", $._expression), - field("op", $._bitwise_binary_operator), - field("rhs", $._expression) - ) - ), - - custom_operator: ($) => seq(CUSTOM_OPERATORS, optional("<")), - - // Suffixes - - navigation_suffix: ($) => - seq( - $._dot, - field("suffix", choice($.simple_identifier, $.integer_literal)) - ), - - call_suffix: ($) => - prec( - PRECS.call_suffix, - seq( - choice( - $.value_arguments, - sep1($.lambda_literal, seq(field("name", $.simple_identifier), ":")) - ) - ) - ), - - constructor_suffix: ($) => - prec( - PRECS.call_suffix, - seq( - choice( - alias($._constructor_value_arguments, $.value_arguments), - $.lambda_literal - ) - ) - ), - - _constructor_value_arguments: ($) => - seq("(", optional(sep1($.value_argument, ",")), ")"), - - 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", $.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, $.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: ($) => "await", - - ternary_expression: ($) => - prec.right( - PRECS.ternary, - seq( - field("condition", $._expression), - $._quest, - field("if_true", $._expression), - ":", - prec.left( - PRECS.ternary_suffix, - field( - "if_false", - choice( - $._expression, - alias($.expr_hack_at_ternary_call, $.call_expression) - ) - ) - ) - ) - ), - - expr_hack_at_ternary_call: ($) => - seq( - $._expression, - alias($.expr_hack_at_ternary_call_suffix, $.call_suffix) - ), - expr_hack_at_ternary_call_suffix: ($) => - prec(PRECS.call_suffix, $.value_arguments), - - call_expression: ($) => prec(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( - "{", - prec(PRECS.expr, optional(field("captures", $.capture_list))), - optional(seq(optional(field("type", $.lambda_function_type)), "in")), - optional($.statements), - "}" - ) - ), - - capture_list: ($) => - seq(repeat($.attribute), "[", 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), - optional($.throws), - optional( - seq( - $._arrow_operator, - field("return_type", $._possibly_implicitly_unwrapped_type) - ) - ) - ) - ), - - lambda_function_type_parameters: ($) => sep1($.lambda_parameter, ","), - - lambda_parameter: ($) => - 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, $._equal_sign, $._expression), - - 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: ($) => generate_pattern_matching_rule($, true, false, true), - - do_statement: ($) => - prec.right(PRECS.do, seq("do", $._block, repeat($.catch_block))), - - catch_block: ($) => - seq( - $.catch_keyword, - field( - "error", - optional(generate_pattern_matching_rule($, true, false)) - ), - 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("<", ">", "<=", ">="), - - _is_operator: ($) => "is", - - _additive_operator: ($) => - choice( - alias($._plus_then_ws, "+"), - alias($._minus_then_ws, "-"), - "+", - "-" - ), - - _multiplicative_operator: ($) => choice("*", "/", "%"), - - 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 - ), - - //////////////////////////////// - // 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", generate_pattern_matching_rule($, true, true, false)), - 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(choice($._availability_argument, "*"), ","), - ")" - ), - - _availability_argument: ($) => - 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, - // TODO actor 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", $.value_binding_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), - optional("class"), - $._modifierless_property_declaration - ), - - _modifierless_property_declaration: ($) => - prec.right( - seq( - choice("let", "var"), - sep1( - seq( - field( - "name", - alias($.property_binding_pattern, $.value_binding_pattern) - ), - optional($.type_annotation), - optional($.type_constraints), - optional( - choice( - seq($._equal_sign, field("value", $._expression)), - field("computed_value", $.computed_property) - ) - ) - ), - "," - ) - ) - ), - - property_binding_pattern: ($) => - generate_pattern_matching_rule($, false, false), - - 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), - 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")), - 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", $.user_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, ","), ">"), - - 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: ($) => - 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, - $._bitwise_binary_operator - ) - ) - ), - - _referenceable_operator: ($) => - choice( - $.custom_operator, - $._comparison_operator, - $._additive_operator, - $._multiplicative_operator, - $._equality_operator, - $._comparison_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, "->"), - _three_dot_operator: ($) => alias($._three_dot_operator_custom, "..."), - _open_ended_range_operator: ($) => - alias($._open_ended_range_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!"), - - 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( - choice( - field("data_contents", $.enum_type_parameters), - seq($._equal_sign, field("raw_value", $._expression)) - ) - ) - ), - "," - ), - optional(";") - ), - - 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), - "{", - choice( - optional($.statements), - repeat( - choice($.computed_getter, $.computed_setter, $.computed_modify) - ) - ), - "}" - ) - ), - - 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"), - setter_specifier: ($) => seq(optional($.mutation_modifier), "set"), - modify_specifier: ($) => seq(optional($.mutation_modifier), "_modify"), - - operator_declaration: ($) => - seq( - choice("prefix", "infix", "postfix"), - "operator", - $.custom_operator, - optional(seq(":", $.simple_identifier)) - ), - - 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( - 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 - //////////////////////////////// - - // Higher-than-default precedence to resolve `x as SomeType` ambiguity (expression patterns seem not to support - // as-expressions) - binding_pattern: ($) => - prec.left(1, generate_pattern_matching_rule($, true, false, false, true)), - non_binding_pattern: ($) => - prec.left( - 1, - generate_pattern_matching_rule($, false, false, false, true) - ), - // Higher precedence than pattern w/o binding since these are strictly more flexible - _binding_pattern_with_expr: ($) => - prec.left(2, generate_pattern_matching_rule($, true, false, true, true)), - _non_binding_pattern_with_expr: ($) => - prec.left(2, generate_pattern_matching_rule($, false, false, true, true)), - - _direct_or_indirect_binding: ($) => - seq( - choice( - $.value_binding_pattern, - seq("case", generate_pattern_matching_rule($, true, false, false)) - ), - optional($.type_annotation) - ), - - wildcard_pattern: ($) => "_", - - value_binding_pattern: ($) => - prec.left( - choice( - seq("var", generate_pattern_matching_rule($, false, false)), - seq("let", generate_pattern_matching_rule($, false, false)) - ) - ), - - // ========== - // 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 - ), - - _locally_permitted_modifier: ($) => - choice( - $.ownership_modifier, - $.property_behavior_modifier, - $.inheritance_modifier - ), - - property_behavior_modifier: ($) => "lazy", - - type_modifiers: ($) => repeat1($.attribute), - - member_modifier: ($) => choice("override", "convenience", "required"), - - 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"), - - 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]*)/) - ) - ) - ), - } as const, -}); - -function sep1(rule: Rule, separator: Rule) { - return seq(rule, repeat(seq(separator, rule))); -} - -function generate_tuple_pattern( - $: Symbols, - allows_binding: boolean, - allows_expressions: boolean -) { - const pattern_rule = generate_pattern_matching_rule( - $, - allows_binding, - false, - allows_expressions - ); - const tuple_pattern_item = choice( - seq($.simple_identifier, seq(":", pattern_rule)), - pattern_rule - ); - return seq("(", sep1(tuple_pattern_item, ","), ")", optional($._quest)); -} - -function generate_case_pattern( - $: Symbols, - allows_binding: boolean, - force?: boolean -): Rule { - return seq( - optional($.user_type), // XXX this should just be _type but that creates ambiguity - $._dot, - $.simple_identifier, - optional(generate_tuple_pattern($, allows_binding, true)), - optional($._quest) - ); -} - -function generate_type_casting_pattern( - $: Symbols, - allows_binding: boolean -): Rule { - return choice( - seq("is", $._type), - seq( - generate_pattern_matching_rule($, allows_binding, false), - $._as, - $._type - ) - ); -} - -function generate_pattern_matching_rule( - $: Symbols, - allows_binding: boolean, - allows_case_keyword: boolean, - allows_expressions?: boolean, - force?: boolean -): Rule { - if (!force && !allows_case_keyword) { - if (allows_binding && !allows_expressions) { - return $.binding_pattern; - } - - if (!allows_binding && !allows_expressions) { - return $.non_binding_pattern; - } - - if (allows_binding && allows_expressions) { - return $._binding_pattern_with_expr; - } - - if (!allows_binding && allows_expressions) { - return $._non_binding_pattern_with_expr; - } - } - - const always_allowed_patterns = [ - $.wildcard_pattern, - generate_tuple_pattern($, allows_binding, allows_expressions || false), - generate_type_casting_pattern($, allows_binding), - ]; - - const binding_pattern_prefix = allows_case_keyword - ? seq(optional("case"), choice("var", "let")) - : choice("var", "let"); - - const binding_pattern_if_allowed = allows_binding - ? [ - seq( - binding_pattern_prefix, - generate_pattern_matching_rule($, false, false, false) - ), - ] - : []; - - const case_pattern = allows_case_keyword - ? seq("case", generate_case_pattern($, allows_binding)) - : generate_case_pattern($, allows_binding); - - const expression_pattern = allows_expressions - ? $._expression - : $.simple_identifier; - - const all_patterns = always_allowed_patterns - .concat(binding_pattern_if_allowed) - .concat(case_pattern) - .concat(expression_pattern); - - return seq(choice(...all_patterns), optional($._quest)); -} diff --git a/package-lock.json b/package-lock.json index 57100837e..393684c9b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12,9 +12,7 @@ "dependencies": { "@types/node": "^16.11.10", "nan": "^2.15.0", - "shx": "^0.3.4", - "tree-sitter-cli": "^0.20.0", - "typescript": "^4.5.2" + "tree-sitter-cli": "^0.20.0" }, "devDependencies": { "node-gyp": "^8.4.1", @@ -63,9 +61,9 @@ } }, "node_modules/@types/node": { - "version": "16.11.10", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.10.tgz", - "integrity": "sha512-3aRnHa1KlOEEhJ6+CvyHKK5vE9BcLGjtUpwvqYLRvYNQKMfabu3BwfJaA/SLW8dxe28LsNDjtHwePTuzn3gmOA==" + "version": "16.11.21", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.21.tgz", + "integrity": "sha512-Pf8M1XD9i1ksZEcCP8vuSNwooJ/bZapNmIzpmsMaL+jMI+8mEYU3PKvs+xDNuQcJWF/x24WzY4qxLtB0zNow9A==" }, "node_modules/abbrev": { "version": "1.1.1", @@ -143,12 +141,14 @@ "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==" + "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" @@ -213,7 +213,8 @@ "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=" + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true }, "node_modules/console-control-strings": { "version": "1.1.0", @@ -299,12 +300,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=" - }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true }, "node_modules/gauge": { "version": "4.0.0", @@ -330,6 +327,7 @@ "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", @@ -346,22 +344,11 @@ } }, "node_modules/graceful-fs": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", - "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", + "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": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/has-unicode": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", @@ -451,6 +438,7 @@ "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" @@ -459,15 +447,8 @@ "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/interpret": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", - "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", - "engines": { - "node": ">= 0.10" - } + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true }, "node_modules/ip": { "version": "1.1.5", @@ -475,17 +456,6 @@ "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", "dev": true }, - "node_modules/is-core-module": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", - "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "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", @@ -550,6 +520,7 @@ "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" }, @@ -557,11 +528,6 @@ "node": "*" } }, - "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/minipass": { "version": "3.1.6", "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz", @@ -743,6 +709,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, "dependencies": { "wrappy": "1" } @@ -766,15 +733,11 @@ "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/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, "node_modules/prettier": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.3.2.tgz", @@ -820,33 +783,6 @@ "node": ">= 6" } }, - "node_modules/rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", - "dependencies": { - "resolve": "^1.1.6" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/resolve": { - "version": "1.21.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.21.0.tgz", - "integrity": "sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==", - "dependencies": { - "is-core-module": "^2.8.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/retry": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", @@ -919,37 +855,6 @@ "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", "dev": true }, - "node_modules/shelljs": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", - "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", - "dependencies": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" - }, - "bin": { - "shjs": "bin/shjs" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/shx": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/shx/-/shx-0.3.4.tgz", - "integrity": "sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g==", - "dependencies": { - "minimist": "^1.2.3", - "shelljs": "^0.8.5" - }, - "bin": { - "shx": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/signal-exit": { "version": "3.0.6", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", @@ -1041,17 +946,6 @@ "node": ">=8" } }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/tar": { "version": "6.1.11", "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", @@ -1070,26 +964,14 @@ } }, "node_modules/tree-sitter-cli": { - "version": "0.20.0", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.0.tgz", - "integrity": "sha512-4D1qapWbJXZ5rrSUGM5rcw5Vuq/smzn9KbiFRhlON6KeuuXjra+KAtDYVrDgAoLIG4ku+jbEEGrJxCptUGi3dg==", + "version": "0.20.1", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.1.tgz", + "integrity": "sha512-I0Gp4ThRp39TDnBAaZKiogvoE85MSeL6/ILZMXbzeEo8hUsudpVhEHRE4CU+Bk5QUaiMiDkD+ZIL3gT2zZ++wg==", "hasInstallScript": true, "bin": { "tree-sitter": "cli.js" } }, - "node_modules/typescript": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz", - "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - }, "node_modules/unique-filename": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", @@ -1141,7 +1023,8 @@ "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true }, "node_modules/yallist": { "version": "4.0.0", @@ -1184,9 +1067,9 @@ "dev": true }, "@types/node": { - "version": "16.11.10", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.10.tgz", - "integrity": "sha512-3aRnHa1KlOEEhJ6+CvyHKK5vE9BcLGjtUpwvqYLRvYNQKMfabu3BwfJaA/SLW8dxe28LsNDjtHwePTuzn3gmOA==" + "version": "16.11.21", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.21.tgz", + "integrity": "sha512-Pf8M1XD9i1ksZEcCP8vuSNwooJ/bZapNmIzpmsMaL+jMI+8mEYU3PKvs+xDNuQcJWF/x24WzY4qxLtB0zNow9A==" }, "abbrev": { "version": "1.1.1", @@ -1249,12 +1132,14 @@ "balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + "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" @@ -1307,7 +1192,8 @@ "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true }, "console-control-strings": { "version": "1.1.0", @@ -1376,12 +1262,8 @@ "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true }, "gauge": { "version": "4.0.0", @@ -1404,6 +1286,7 @@ "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", @@ -1414,19 +1297,11 @@ } }, "graceful-fs": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", - "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", + "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": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" - } - }, "has-unicode": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", @@ -1501,6 +1376,7 @@ "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" @@ -1509,12 +1385,8 @@ "inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "interpret": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", - "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==" + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true }, "ip": { "version": "1.1.5", @@ -1522,14 +1394,6 @@ "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", "dev": true }, - "is-core-module": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", - "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", - "requires": { - "has": "^1.0.3" - } - }, "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", @@ -1585,15 +1449,11 @@ "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" } }, - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" - }, "minipass": { "version": "3.1.6", "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz", @@ -1727,6 +1587,7 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, "requires": { "wrappy": "1" } @@ -1743,12 +1604,8 @@ "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=" - }, - "path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true }, "prettier": { "version": "2.3.2", @@ -1783,24 +1640,6 @@ "util-deprecate": "^1.0.1" } }, - "rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", - "requires": { - "resolve": "^1.1.6" - } - }, - "resolve": { - "version": "1.21.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.21.0.tgz", - "integrity": "sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==", - "requires": { - "is-core-module": "^2.8.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, "retry": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", @@ -1844,25 +1683,6 @@ "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", "dev": true }, - "shelljs": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz", - "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==", - "requires": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" - } - }, - "shx": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/shx/-/shx-0.3.4.tgz", - "integrity": "sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g==", - "requires": { - "minimist": "^1.2.3", - "shelljs": "^0.8.5" - } - }, "signal-exit": { "version": "3.0.6", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", @@ -1934,11 +1754,6 @@ "ansi-regex": "^5.0.1" } }, - "supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - }, "tar": { "version": "6.1.11", "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", @@ -1954,14 +1769,9 @@ } }, "tree-sitter-cli": { - "version": "0.20.0", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.0.tgz", - "integrity": "sha512-4D1qapWbJXZ5rrSUGM5rcw5Vuq/smzn9KbiFRhlON6KeuuXjra+KAtDYVrDgAoLIG4ku+jbEEGrJxCptUGi3dg==" - }, - "typescript": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz", - "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==" + "version": "0.20.1", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.1.tgz", + "integrity": "sha512-I0Gp4ThRp39TDnBAaZKiogvoE85MSeL6/ILZMXbzeEo8hUsudpVhEHRE4CU+Bk5QUaiMiDkD+ZIL3gT2zZ++wg==" }, "unique-filename": { "version": "1.1.1", @@ -2008,7 +1818,8 @@ "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true }, "yallist": { "version": "4.0.0", diff --git a/package.json b/package.json index 9623b8752..21d68c6a9 100644 --- a/package.json +++ b/package.json @@ -4,9 +4,9 @@ "description": "A tree-sitter grammar for the Swift programming language.", "main": "bindings/node/index.js", "scripts": { - "install": "tsc && shx cp ./build/grammar.js . && tree-sitter generate", + "install": "tree-sitter generate", "postinstall": "node-gyp configure && node-gyp build", - "ci": "prettier --check grammar.ts types/*/*.d.ts", + "ci": "prettier --check grammar.js", "test-ci": "./scripts/test-with-memcheck.sh --install-valgrind", "test": "./scripts/test-with-memcheck.sh" }, @@ -27,9 +27,7 @@ "dependencies": { "@types/node": "^16.11.10", "nan": "^2.15.0", - "shx": "^0.3.4", - "tree-sitter-cli": "^0.20.0", - "typescript": "^4.5.2" + "tree-sitter-cli": "^0.20.0" }, "devDependencies": { "node-gyp": "^8.4.1", diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index 7015eab2f..000000000 --- a/tsconfig.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "compilerOptions": { - "outDir": "./build", - "removeComments": true, - "strict": true, - "target": "es6" - }, - "include": [ - "./grammar.ts", - "types/*/index.d.ts" - ] -} diff --git a/types/tree-sitter-dsl/index.d.ts b/types/tree-sitter-dsl/index.d.ts deleted file mode 100644 index d876855b1..000000000 --- a/types/tree-sitter-dsl/index.d.ts +++ /dev/null @@ -1,169 +0,0 @@ -// See: https://github.com/tree-sitter/tree-sitter/blob/master/cli/src/generate/dsl.js -declare module "tree-sitter-dsl" { - // Most of this documentation is copied from https://tree-sitter.github.io/tree-sitter/creating-parsers - global { - /** - * The collection of named grammar rules that together produce the language grammar. - * - * Every grammar rule is written as a JavaScript function that takes one of these Symbols parameters, which are - * conventionally given the parameter name {@code $}. For instance, a rule may define itself in terms of a selection - * of another rule named `identifier` by referring to {@code $.identifier}. - */ - type Symbols = { [keys: string]: ($: Symbols) => Rule }; - - /** - * Possible types of rule functions that can be passed to the grammar DSL. - * - * This may be a terminal symbol, such as a string or a regular expression. It may also be a function that, given - * other symbols, produces some nested rule definition. - */ - type Rule = string | RegExp | (($: Symbols) => Rule); - - /** - * Public fields that influence the behavior of the parser. These are passed to the {@link grammar} function to - * produce the module's exports. - */ - type Grammar = { - // NOTE: `Symbols` could probably be defined more precisely here by giving `Grammar` a generic type argument. This - // would allow the typescript compiler to prove that only the symbols declared in this grammar are being used from - // other rules. However, this requires fancy union types and a lot of inference in order to include `externals` in - // the appropriate `Symbols` subtype. Since the `tree-sitter` compiler will already definitely throw an error on - // encountering unexpected symbols, that type inference would be of little use. - - /** - * The name of the language that this grammar is responsible for parsing. - */ - name: string; - /** - * An array of tokens that may appear anywhere in the language. - * - * This is often used for whitespace and comments. The default value of {@code extras} is to accept whitespace. To - * control whitespace explicitly, specify {@code extras: ($) => []} in your grammar. - */ - extras?: ($: Symbols) => Rule[]; - /** - * An array of rule names that should be automatically removed from the grammar by replacing all of their usages - * with a copy of their definition. - * - * This is useful for rules that are used in multiple places but for which you don't want to create syntax tree - * nodes at runtime. - */ - inline?: ($: Symbols) => Rule[]; - /** - * An array of arrays of rule names. Each inner array represents a set of rules that's involved in an LR(1) - * conflict that is intended to exist in the grammar. When these conflicts occur at runtime, Tree-sitter will use - * the GLR algorithm to explore all of the possible interpretations. If multiple parses end up succeeding, - * Tree-sitter will pick the subtree whose corresponding rule has the highest dynamic precedence. - */ - conflicts?: ($: Symbols) => Rule[][]; - /** - * An array of token names which can be returned by an external scanner. External scanners allow you to write - * custom C code which runs during the lexing process in order to handle lexical rules (e.g. Python's indentation - * tokens) that cannot be described by regular expressions. - */ - externals?: ($: Symbols) => Rule[]; - /** - * The definition of all rules that will be used to parse symbols in this language, except any rules that are - * defined in an external scanner. - */ - rules: Symbols; - }; - - /** - * Defines the language grammar based on the passed-in fields. - */ - function grammar(grammar: Grammar, options?: Partial): any; - - /** - * Causes the given rule to appear with an alternative name in the syntax tree. - * - * If {@code name} is a symbol itself, as in {@code alias($.foo, $.bar)}, then the aliased rule will appear as a - * named node called {@code bar}. If {@code name} is a string literal, at in {@code alias($.foo, 'bar')}, then the - * aliased rule will appear as an anonymous node, as if the rule had been written as the simple string. - */ - function alias(rule: Rule, name: Exclude): Rule; - /** - * Assigns a field name to the child nodes matched by a given rule. In the resulting syntax tree, you can then use - * that field name to access specific children. - */ - function field(name: string, rule: Rule): Rule; - /** - * Creates a rule that matches one of a set of possible rules. The order of the arguments does not matter. This is - * analogous to the | (pipe) operator in EBNF notation. - */ - function choice(...rules: Rule[]): Rule; - /** - * Creates a rule that matches zero or one occurrence of a given rule. It is analogous to the [x] (square bracket) - * syntax in EBNF notation. - */ - function optional(rule: Rule): Rule; - /** - * This function marks the given rule with a numerical precedence which will be used to resolve LR(1) Conflicts at - * parser-generation time. When two rules overlap in a way that represents either a true ambiguity or a local - * ambiguity given one token of lookahead, Tree-sitter will try to resolve the conflict by matching the rule with - * the higher precedence. The default precedence of all rules is zero. - */ - function prec(precedence: number, rule: Rule): Rule; - - module prec { - /** - * Marks the given rule as left-associative. When an LR(1) conflict arises in which all of the rules have the same - * numerical precedence, Tree-sitter will consult the rules’ associativity. If there is a left-associative rule, - * Tree-sitter will prefer matching a rule that ends earlier. - */ - function left(precedence: number, rule: Rule): Rule; - /** - * Marks the given rule as left-associative and applies a numerical precedence. When an LR(1) conflict arises in - * which all of the rules have the same numerical precedence, Tree-sitter will consult the rules’ associativity. - * If there is a left-associative rule, Tree-sitter will prefer matching a rule that ends earlier. - */ - function left(rule: Rule): Rule; - /** - * This function is like prec.left, but it instructs Tree-sitter to prefer matching a rule that ends later. - */ - function right(precedence: number, rule: Rule): Rule; - /** - * This function is like prec.left, but it instructs Tree-sitter to prefer matching a rule that ends later. - */ - function right(rule: Rule): Rule; - /** - * This function is similar to prec, but the given numerical precedence is applied at runtime instead of at parser - * generation time. This is only necessary when handling a conflict dynamically using the conflicts field in the - * grammar, and when there is a genuine ambiguity: multiple rules correctly match a given piece of code. In that - * event, Tree-sitter compares the total dynamic precedence associated with each rule, and selects the one with - * the highest total. - */ - function dynamic(precedence: number, rule: Rule): Rule; - } - /** - * Creates a rule that matches zero-or-more occurrences of a given rule. It is analogous to the {x} (curly brace) - * syntax in EBNF notation. - */ - function repeat(rule: Rule): Rule; - /** - * Creates a rule that matches one-or-more occurrences of a given rule. The previous repeat rule is implemented in - * terms of repeat1 but is included because it is very commonly used. - */ - function repeat1(rule: Rule): Rule; - /** - * Creates a rule that matches any number of other rules, one after another. It is analogous to simply writing - * multiple symbols next to each other in EBNF notation. - */ - function seq(...rules: Rule[]): Rule; - /** - * Marks the given rule as producing only a single token. Tree-sitter’s default is to treat each String or RegExp - * literal in the grammar as a separate token. Each token is matched separately by the lexer and returned as its own - * leaf node in the tree. The token function allows you to express a complex rule using the functions described - * above (rather than as a single regular expression) but still have Tree-sitter treat it as a single token. - */ - function token(rule: Rule): Rule; - - module token { - /** - * Usually, whitespace (and any other extras, such as comments) is optional before each token. This function means - * that the token will only match if there is no whitespace. - */ - function immediate(rule: Rule): Rule; - } - } -} From d89fc010febc7c775e5cfd2b5059cd11e54c11fc Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 29 Jan 2022 18:24:19 -0800 Subject: [PATCH 091/151] Update top repository tag versions in CI Adds a script to automatically fetch the latest tag available for each repository, so that we get alerted to any new code that can't be parsed. This is intended to be run on a regular basis. Also updates the top repositories to match the values that this script finds. --- .github/workflows/update-repos.yml | 14 +++++++ script-data/known_failures.txt | 11 ++++++ script-data/top-repositories.txt | 46 +++++++++++----------- scripts/update-top-repos.sh | 63 ++++++++++++++++++++++++++++++ 4 files changed, 111 insertions(+), 23 deletions(-) create mode 100644 .github/workflows/update-repos.yml create mode 100755 scripts/update-top-repos.sh diff --git a/.github/workflows/update-repos.yml b/.github/workflows/update-repos.yml new file mode 100644 index 000000000..8c677156d --- /dev/null +++ b/.github/workflows/update-repos.yml @@ -0,0 +1,14 @@ +name: Update corpus repository versions + +on: + schedule: + - cron: '12 4 * * *' + +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/script-data/known_failures.txt b/script-data/known_failures.txt index f997778b5..21247a590 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -1,4 +1,15 @@ +Alamofire/Tests/ConcurrencyTests.swift +Alamofire/Source/Concurrency.swift firefox-ios/Shared/Functions.swift RxSwift/RxExample/RxExample/Examples/GitHubSearchRepositories/GitHubSearchRepositories.swift RxSwift/Rx.playground/Pages/Transforming_Operators.xcplaygroundpage/Contents.swift +RxSwift/RxCocoa/Traits/SharedSequence/SharedSequence+Concurrency.swift +RxSwift/RxSwift/Traits/PrimitiveSequence/PrimitiveSequence+Concurrency.swift +RxSwift/RxSwift/Traits/Infallible/Infallible+Concurrency.swift +RxSwift/Sources/RxSwift/PrimitiveSequence+Concurrency.swift +RxSwift/Sources/RxSwift/Observable+Concurrency.swift +RxSwift/Sources/RxSwift/Infallible+Concurrency.swift +RxSwift/Sources/RxCocoa/SharedSequence+Concurrency.swift +RxSwift/RxSwift/Observable+Concurrency.swift +SwiftLint/Source/SwiftLintFramework/Rules/Lint/ExpiringTodoRule.swift GRDB/GRDB/Core/Row.swift diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 9df988c40..d320c56e7 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -1,43 +1,43 @@ -Alamofire Alamofire/Alamofire 5.4.4 +Alamofire Alamofire/Alamofire 5.5.0 iina iina/iina v1.2.0 Charts danielgindi/Charts v4.0.1 -lottie-ios airbnb/lottie-ios 3.2.3 +lottie-ios airbnb/lottie-ios 3.3.0 vapor vapor/vapor 3.3.3 SwiftyJSON SwiftyJSON/SwiftyJSON 5.0.1 -RxSwift ReactiveX/RxSwift 6.2.0 0 9 -RxSwift ReactiveX/RxSwift 6.2.0 1 9 -RxSwift ReactiveX/RxSwift 6.2.0 2 9 -RxSwift ReactiveX/RxSwift 6.2.0 3 9 -RxSwift ReactiveX/RxSwift 6.2.0 4 9 -RxSwift ReactiveX/RxSwift 6.2.0 5 9 -RxSwift ReactiveX/RxSwift 6.2.0 6 9 -RxSwift ReactiveX/RxSwift 6.2.0 7 9 -RxSwift ReactiveX/RxSwift 6.2.0 8 9 +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.1 -Kingfisher onevcat/Kingfisher 7.1.1 +Kingfisher onevcat/Kingfisher 7.1.2 shadowsocks shadowsocks/ShadowsocksX-NG v1.9.4 SnapKit SnapKit/SnapKit 5.0.1 -SwiftLint realm/SwiftLint 0.45.0 0 2 -SwiftLint realm/SwiftLint 0.45.0 1 2 -ClashX yichengchen/clashX 1.72.0 +SwiftLint realm/SwiftLint 0.46.2 0 2 +SwiftLint realm/SwiftLint 0.46.2 1 2 +ClashX yichengchen/clashX 1.90.0 Carthage Carthage/Carthage 0.38.0 -Rectangle rxhanson/Rectangle v0.49 -PromiseKit mxcl/PromiseKit 6.16.2 +Rectangle rxhanson/Rectangle v0.50 +PromiseKit mxcl/PromiseKit 6.16.3 Moya Moya/Moya 15.0.0 MonitorControl MonitorControl/MonitorControl v4.0.2 -ObjectMapper tristanhimmelman/ObjectMapper 3.5.3 -SkeletonView Juanpe/SkeletonView 1.26.0 +ObjectMapper tristanhimmelman/ObjectMapper 4.2.0 +SkeletonView Juanpe/SkeletonView 1.29.2 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.3.0 +AudioKit AudioKit/AudioKit 5.3.2 Starscream daltoniam/Starscream 4.0.4 MessageKit MessageKit/MessageKit 3.7.0 KeychainAccess kishikawakatsumi/KeychainAccess v4.2.2 -Nuke kean/Nuke 10.6.1 +Nuke kean/Nuke 10.7.1 Swinject Swinject/Swinject 2.8.1 -GRDB groue/GRDB.swift v5.17.0 0 2 -GRDB groue/GRDB.swift v5.17.0 1 2 +GRDB groue/GRDB.swift v5.19.0 0 2 +GRDB groue/GRDB.swift v5.19.0 1 2 diff --git a/scripts/update-top-repos.sh b/scripts/update-top-repos.sh new file mode 100755 index 000000000..53f0e4a20 --- /dev/null +++ b/scripts/update-top-repos.sh @@ -0,0 +1,63 @@ +#!/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 --draft + echo "Pull request created!" +else + echo "No repositories have been updated, so there's nothing more to do!" +fi From ee86d792f7c88ef0af19444d58215e89da82159a Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Wed, 2 Feb 2022 04:36:42 +0000 Subject: [PATCH 092/151] Updating top repository version --- script-data/top-repositories.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index d320c56e7..a0b96a6e3 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -39,5 +39,5 @@ MessageKit MessageKit/MessageKit 3.7.0 KeychainAccess kishikawakatsumi/KeychainAccess v4.2.2 Nuke kean/Nuke 10.7.1 Swinject Swinject/Swinject 2.8.1 -GRDB groue/GRDB.swift v5.19.0 0 2 -GRDB groue/GRDB.swift v5.19.0 1 2 +GRDB groue/GRDB.swift v5.20.0 0 2 +GRDB groue/GRDB.swift v5.20.0 1 2 From 3b2463b88bcabd9906220b39e1e0f51b495464c8 Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Thu, 3 Feb 2022 04:37:13 +0000 Subject: [PATCH 093/151] Updating top repository version --- script-data/top-repositories.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index a0b96a6e3..74a63ef7a 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -33,7 +33,7 @@ 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.3.2 +AudioKit AudioKit/AudioKit 5.3.3 Starscream daltoniam/Starscream 4.0.4 MessageKit MessageKit/MessageKit 3.7.0 KeychainAccess kishikawakatsumi/KeychainAccess v4.2.2 From feadde7ad68a62bd2c7e69a340e2d438d3a048a0 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Thu, 3 Feb 2022 20:52:31 -0800 Subject: [PATCH 094/151] Tweak CI actions * Separate publish action (of grammar.json, etc) from check.yml * Skip running `test-ci` when testing GitHub repos * Don't publish repo updates as draft --- .github/workflows/check.yml | 5 ----- .github/workflows/parser-src.yml | 23 +++++++++++++++++++++++ .github/workflows/top-repos.yml | 1 - README.md | 2 +- scripts/update-top-repos.sh | 2 +- 5 files changed, 25 insertions(+), 8 deletions(-) create mode 100644 .github/workflows/parser-src.yml diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 56192ef6e..edaaecc11 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -35,8 +35,3 @@ jobs: - run: npm run test-ci - run: cargo test - run: cd ./test-npm-package && npm test; cd .. - - name: Publish parser source - uses: actions/upload-artifact@v2 - with: - name: generated-parser-src - path: src diff --git a/.github/workflows/parser-src.yml b/.github/workflows/parser-src.yml new file mode 100644 index 000000000..dc1a00d6b --- /dev/null +++ b/.github/workflows/parser-src.yml @@ -0,0 +1,23 @@ +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/.github/workflows/top-repos.yml b/.github/workflows/top-repos.yml index c0581be37..1c8edcce5 100644 --- a/.github/workflows/top-repos.yml +++ b/.github/workflows/top-repos.yml @@ -63,7 +63,6 @@ jobs: node-version: '16.x' cache: 'npm' - run: npm install - - run: npm run test-ci - run: ./scripts/top-repos.sh ${{matrix.repo}} badge_gen: runs-on: ubuntu-latest diff --git a/README.md b/README.md index b1373d784..de1d45d6c 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,6 @@ If you need a `parser.c`, and you don't care about the tree-sitter version, but 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 "Check grammar and style" action for the appropriate commit. +* 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/scripts/update-top-repos.sh b/scripts/update-top-repos.sh index 53f0e4a20..066b0ddf9 100755 --- a/scripts/update-top-repos.sh +++ b/scripts/update-top-repos.sh @@ -56,7 +56,7 @@ if ! git diff --quiet; then 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 --draft + gh pr create --fill echo "Pull request created!" else echo "No repositories have been updated, so there's nothing more to do!" From 416dda15db49d1fd647ce343c6b536f5dea638bd Mon Sep 17 00:00:00 2001 From: Marcin Krzyzanowski Date: Sat, 5 Feb 2022 02:16:08 +0100 Subject: [PATCH 095/151] libtree-sitter-swift. C binding --- .gitignore | 4 ++ Makefile | 91 ++++++++++++++++++++++++++++++++++++ bindings/c/tree-sitter.h.in | 16 +++++++ bindings/c/tree-sitter.pc.in | 11 +++++ 4 files changed, 122 insertions(+) create mode 100644 Makefile create mode 100644 bindings/c/tree-sitter.h.in create mode 100644 bindings/c/tree-sitter.pc.in diff --git a/.gitignore b/.gitignore index 4143499ce..9c2954af4 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,7 @@ node_modules /test Cargo.lock /target/* +*.a +*.dylib +*.so +*.o \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..cd5d438bf --- /dev/null +++ b/Makefile @@ -0,0 +1,91 @@ + +VERSION := 0.1.0 + +# Repository +SRC_DIR := src + +PARSER_REPO_URL ?= $(shell git -C $(SRC_DIR) remote get-url origin) +$(eval PARSER_NAME=$(shell basename $(PARSER_REPO_URL) | cut -d '-' -f3 | sed 's#.git##' )) +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 += -dynamiclib -Wl,$(ADDITIONALLIBS),-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 += -shared -Wl,$(ADDITIONALLIBS),-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) tree-sitter.h + +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) + +tree-sitter.h: + sed -e 's|@UPPER_PARSERNAME@|$(UPPER_PARSER_NAME)|' \ + -e 's|@PARSERNAME@|$(PARSER_NAME)|' \ + bindings/c/$@.in > bindings/c/$@ + +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/tree-sitter.h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/ + install -d '$(DESTDIR)$(PCLIBDIR)' + 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|@PARSERREPOURL@|$(PARSER_REPO_URL)|' \ + bindings/c/tree-sitter.pc.in > '$(DESTDIR)$(PCLIBDIR)'/tree-sitter-$(PARSER_NAME).pc + +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) bindings/c/tree-sitter.h + +.PHONY: all install clean \ No newline at end of file diff --git a/bindings/c/tree-sitter.h.in b/bindings/c/tree-sitter.h.in new file mode 100644 index 000000000..e19269f46 --- /dev/null +++ b/bindings/c/tree-sitter.h.in @@ -0,0 +1,16 @@ +#ifndef TREE_SITTER_@UPPER_PARSERNAME@_H_ +#define TREE_SITTER_@UPPER_PARSERNAME@_H_ + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +extern TSLanguage *tree_sitter_@PARSERNAME@(); + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_@UPPER_PARSERNAME@_H_ diff --git a/bindings/c/tree-sitter.pc.in b/bindings/c/tree-sitter.pc.in new file mode 100644 index 000000000..8c2baa401 --- /dev/null +++ b/bindings/c/tree-sitter.pc.in @@ -0,0 +1,11 @@ +prefix=@PREFIX@ +libdir=@LIBDIR@ +includedir=@INCLUDEDIR@ +additionallibs=@ADDITIONALLIBS@ + +Name: tree-sitter-@PARSERNAME@ +Description: A tree-sitter grammar for the @PARSERNAME@ programming language. +URL: @PARSERREPOURL@ +Version: @VERSION@ +Libs: -L${libdir} ${additionallibs} -ltree-sitter-@PARSERNAME@ +Cflags: -I${includedir} From 065199fc46e90dd777150e11fc23202b1a5e248b Mon Sep 17 00:00:00 2001 From: Marcin Krzyzanowski Date: Sat, 5 Feb 2022 02:39:27 +0100 Subject: [PATCH 096/151] Align VERSION --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index cd5d438bf..3c1b7a900 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,4 @@ - -VERSION := 0.1.0 +VERSION := 0.1.1 # Repository SRC_DIR := src From 1348589e6bbc3b8c931b2ca52d2747437d5bb6e3 Mon Sep 17 00:00:00 2001 From: Marcin Krzyzanowski Date: Sat, 5 Feb 2022 02:44:31 +0100 Subject: [PATCH 097/151] Tweak header generator --- .gitignore | 7 ++++--- Makefile | 6 +++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 9c2954af4..e704ebb74 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ node_modules Cargo.lock /target/* *.a -*.dylib -*.so -*.o \ No newline at end of file +*.dylib +*.so +*.o +bindings/c/tree-sitter.h \ No newline at end of file diff --git a/Makefile b/Makefile index 3c1b7a900..7eeb8ab8d 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,7 @@ ifneq (,$(filter $(shell uname),FreeBSD NetBSD DragonFly)) PCLIBDIR := $(PREFIX)/libdata/pkgconfig endif -all: libtree-sitter-$(PARSER_NAME).a libtree-sitter-$(PARSER_NAME).$(SOEXTVER) tree-sitter.h +all: libtree-sitter-$(PARSER_NAME).a libtree-sitter-$(PARSER_NAME).$(SOEXTVER) bindings/c/tree-sitter.h libtree-sitter-$(PARSER_NAME).a: $(OBJ) $(AR) rcs $@ $^ @@ -62,10 +62,10 @@ libtree-sitter-$(PARSER_NAME).$(SOEXTVER): $(OBJ) ln -sf $@ libtree-sitter-$(PARSER_NAME).$(SOEXT) ln -sf $@ libtree-sitter-$(PARSER_NAME).$(SOEXTVER_MAJOR) -tree-sitter.h: + bindings/c/tree-sitter.h: sed -e 's|@UPPER_PARSERNAME@|$(UPPER_PARSER_NAME)|' \ -e 's|@PARSERNAME@|$(PARSER_NAME)|' \ - bindings/c/$@.in > bindings/c/$@ + $@.in > $@ install: all install -d '$(DESTDIR)$(LIBDIR)' From cfdbfa6a6246f4db247da76ac9ad0d61479d556b Mon Sep 17 00:00:00 2001 From: Marcin Krzyzanowski Date: Sat, 5 Feb 2022 02:52:54 +0100 Subject: [PATCH 098/151] Adjust header name --- .gitignore | 2 +- Makefile | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index e704ebb74..e3423bde1 100644 --- a/.gitignore +++ b/.gitignore @@ -10,4 +10,4 @@ Cargo.lock *.dylib *.so *.o -bindings/c/tree-sitter.h \ No newline at end of file +bindings/c/*.h \ No newline at end of file diff --git a/Makefile b/Makefile index 7eeb8ab8d..5e89a5437 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,7 @@ 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/tree-sitter.h +all: libtree-sitter-$(PARSER_NAME).a libtree-sitter-$(PARSER_NAME).$(SOEXTVER) bindings/c/tree-sitter-$(PARSER_NAME).h libtree-sitter-$(PARSER_NAME).a: $(OBJ) $(AR) rcs $@ $^ @@ -62,10 +62,10 @@ libtree-sitter-$(PARSER_NAME).$(SOEXTVER): $(OBJ) ln -sf $@ libtree-sitter-$(PARSER_NAME).$(SOEXT) ln -sf $@ libtree-sitter-$(PARSER_NAME).$(SOEXTVER_MAJOR) - bindings/c/tree-sitter.h: +bindings/c/tree-sitter-$(PARSER_NAME).h: sed -e 's|@UPPER_PARSERNAME@|$(UPPER_PARSER_NAME)|' \ -e 's|@PARSERNAME@|$(PARSER_NAME)|' \ - $@.in > $@ + bindings/c/tree-sitter.in > $@ install: all install -d '$(DESTDIR)$(LIBDIR)' @@ -74,7 +74,7 @@ install: all 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/tree-sitter.h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/ + install -m644 bindings/c/tree-sitter-$(PARSER_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/ install -d '$(DESTDIR)$(PCLIBDIR)' sed -e 's|@LIBDIR@|$(LIBDIR)|;s|@INCLUDEDIR@|$(INCLUDEDIR)|;s|@VERSION@|$(VERSION)|' \ -e 's|=$(PREFIX)|=$${prefix}|' \ @@ -85,6 +85,6 @@ install: all bindings/c/tree-sitter.pc.in > '$(DESTDIR)$(PCLIBDIR)'/tree-sitter-$(PARSER_NAME).pc 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) bindings/c/tree-sitter.h + rm -f $(OBJ) libtree-sitter-$(PARSER_NAME).a libtree-sitter-$(PARSER_NAME).$(SOEXT) libtree-sitter-$(PARSER_NAME).$(SOEXTVER_MAJOR) libtree-sitter-$(PARSER_NAME).$(SOEXTVER) bindings/c/tree-sitter-$(PARSER_NAME).h .PHONY: all install clean \ No newline at end of file From 0331d8fd59aa25e21b79a20f9e29995c0cba1302 Mon Sep 17 00:00:00 2001 From: Marcin Krzyzanowski Date: Sat, 5 Feb 2022 19:58:00 +0100 Subject: [PATCH 099/151] VERSION = 0.1.2 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5e89a5437..aa73bebcc 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 0.1.1 +VERSION := 0.1.2 # Repository SRC_DIR := src From a07a72c279592e9519fdf5d15026fd7d87b56e2d Mon Sep 17 00:00:00 2001 From: Marcin Krzyzanowski Date: Sat, 5 Feb 2022 20:35:26 +0100 Subject: [PATCH 100/151] Fix path --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index aa73bebcc..8f0500f87 100644 --- a/Makefile +++ b/Makefile @@ -65,7 +65,7 @@ libtree-sitter-$(PARSER_NAME).$(SOEXTVER): $(OBJ) bindings/c/tree-sitter-$(PARSER_NAME).h: sed -e 's|@UPPER_PARSERNAME@|$(UPPER_PARSER_NAME)|' \ -e 's|@PARSERNAME@|$(PARSER_NAME)|' \ - bindings/c/tree-sitter.in > $@ + bindings/c/tree-sitter.h.in > $@ install: all install -d '$(DESTDIR)$(LIBDIR)' From 1741f5041169dab18b42754b40ad80b74f9ff6ee Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 5 Feb 2022 10:34:03 -0800 Subject: [PATCH 101/151] Fix @Sendable on lambda definitions --- corpus/functions.txt | 24 ++++++++++++++++++++++++ grammar.js | 25 ++++++++++++++----------- 2 files changed, 38 insertions(+), 11 deletions(-) diff --git a/corpus/functions.txt b/corpus/functions.txt index 3a8fcb466..cd4b8699f 100755 --- a/corpus/functions.txt +++ b/corpus/functions.txt @@ -794,3 +794,27 @@ func multipleType() -> Foo & Bar { return Foo() } (simple_identifier) (call_suffix (value_arguments)))))))) + +================================================================================ +Annotated function parameters in lambdas +================================================================================ + +types.flatMap { @Sendable _ in } + +-------------------------------------------------------------------------------- + +(source_file + (call_expression + (navigation_expression + (simple_identifier) + (navigation_suffix + (simple_identifier))) + (call_suffix + (lambda_literal + (lambda_function_type + (lambda_function_type_parameters + (lambda_parameter + (attribute + (user_type + (type_identifier))) + (simple_identifier)))))))) diff --git a/grammar.js b/grammar.js index 79d2080f7..a28d5a41f 100644 --- a/grammar.js +++ b/grammar.js @@ -972,17 +972,20 @@ module.exports = grammar({ return sep1($.lambda_parameter, ","); }, lambda_parameter: function ($) { - return 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) + return seq( + optional($.attribute), + 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) + ) ) ) ); From 503b137d79d9a31aa8853afeb023332d8c0ea6b6 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 5 Feb 2022 10:49:46 -0800 Subject: [PATCH 102/151] Support async in variables and effects Two places where `async` is possible in swift 5.5: 1. `async let foo = ...` to run multiple async blocks in parallel 2. `get async { ... }` (but only for `get`) --- corpus/classes.txt | 30 ++++++++++++++++++++ corpus/expressions.txt | 32 +++++++++++++++++++++ corpus/statements.txt | 21 ++++++++++++++ grammar.js | 52 ++++++++++++++++++++++++++++------ queries/highlights.scm | 8 +++++- script-data/known_failures.txt | 10 ------- 6 files changed, 133 insertions(+), 20 deletions(-) diff --git a/corpus/classes.txt b/corpus/classes.txt index 95575a0b3..e1711fc73 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -499,6 +499,36 @@ class SomethingElse: ThingProvider { (simple_identifier) (function_body))))) +================================================================================ +Effectful getters +================================================================================ + +class Alphabet { + var a: Int { + get async { 65 } + } +} + +-------------------------------------------------------------------------------- + +(source_file + (class_declaration + (type_identifier) + (class_body + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (type_annotation + (user_type + (type_identifier))) + (computed_property + (computed_getter + (getter_specifier + (async)) + (statements + (integer_literal)))))))) + ================================================================================ Class declaration without any newlines ================================================================================ diff --git a/corpus/expressions.txt b/corpus/expressions.txt index d474906fc..9370d9c04 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -1108,3 +1108,35 @@ let a = false (simple_identifier))) (boolean_literal)) (simple_identifier)) + +================================================================================ +Calling `async` in positions where it could be a keyword +================================================================================ +async(async: async, qos: qos, flags: flags) { + work() +} + +-------------------------------------------------------------------------------- + +(source_file + (call_expression + (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))))) + (call_suffix + (lambda_literal + (statements + (call_expression + (simple_identifier) + (call_suffix + (value_arguments)))))))) diff --git a/corpus/statements.txt b/corpus/statements.txt index c45f70823..b0a7ba3c9 100755 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -928,3 +928,24 @@ Compiler diagnostics (directive) (directive) (directive)) + +================================================================================ +Async let +================================================================================ + +async let foo = 64 +async let bar = 66 + +-------------------------------------------------------------------------------- + +(source_file + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (integer_literal)) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (integer_literal))) diff --git a/grammar.js b/grammar.js index a28d5a41f..81ee7ea05 100644 --- a/grammar.js +++ b/grammar.js @@ -205,7 +205,7 @@ module.exports = grammar({ $._as_custom, $._as_quest_custom, $._as_bang_custom, - $.async, + $._async_keyword_custom, ]; }, rules: { @@ -425,7 +425,7 @@ module.exports = grammar({ function_type: function ($) { return seq( field("params", $.tuple_type), - optional($.async), + optional($._async_keyword), optional($.throws), $._arrow_operator, field("return_type", $._type) @@ -483,7 +483,8 @@ module.exports = grammar({ $.ternary_expression, $._primary_expression, $.assignment, - seq($._expression, alias($._immediate_quest, "?")) + seq($._expression, alias($._immediate_quest, "?")), + alias("async", $.simple_identifier) ) ); }, @@ -756,7 +757,18 @@ module.exports = grammar({ seq(field("reference_specifier", $.simple_identifier), ":") ), seq( - optional(seq(field("name", $.simple_identifier), ":")), + optional( + seq( + field( + "name", + choice( + $.simple_identifier, + alias("async", $.simple_identifier) + ) + ), + ":" + ) + ), field("value", $._expression) ) ) @@ -957,7 +969,7 @@ module.exports = grammar({ $.lambda_function_type_parameters, seq("(", optional($.lambda_function_type_parameters), ")") ), - optional($.async), + optional($._async_keyword), optional($.throws), optional( seq( @@ -1415,7 +1427,7 @@ module.exports = grammar({ _modifierless_property_declaration: function ($) { return prec.right( seq( - choice("let", "var"), + choice(seq(optional($._async_modifier), "let"), "var"), sep1( seq( field( @@ -1480,7 +1492,7 @@ module.exports = grammar({ ), optional($.type_parameters), $._function_value_parameters, - optional($.async), + optional($._async_keyword), optional($.throws), optional( seq( @@ -1676,6 +1688,17 @@ module.exports = grammar({ _as_bang: function ($) { return alias($._as_bang_custom, "as!"); }, + _async_keyword: function ($) { + // Backward compatibility: make `async` both a named node and a string node. Remove this once downstream queries + // have all been switched over. + return prec(-1, alias($._async_keyword_internal, $.async)); + }, + _async_keyword_internal: function ($) { + return alias($._async_keyword_custom, "async"); + }, + _async_modifier: function ($) { + return token("async"); + }, throws: function ($) { return choice($._throws_keyword, $._rethrows_keyword); }, @@ -1819,7 +1842,11 @@ module.exports = grammar({ ); }, getter_specifier: function ($) { - return seq(optional($.mutation_modifier), "get"); + return seq( + optional($.mutation_modifier), + "get", + optional($._getter_effects) + ); }, setter_specifier: function ($) { return seq(optional($.mutation_modifier), "set"); @@ -1827,6 +1854,9 @@ module.exports = grammar({ modify_specifier: function ($) { return seq(optional($.mutation_modifier), "_modify"); }, + _getter_effects: function ($) { + return repeat1(choice($._async_keyword, $.throws)); + }, operator_declaration: function ($) { return seq( choice("prefix", "infix", "postfix"), @@ -1939,7 +1969,11 @@ module.exports = grammar({ return prec.left( choice( seq("var", generate_pattern_matching_rule($, false, false)), - seq("let", generate_pattern_matching_rule($, false, false)) + seq( + optional($._async_modifier), + "let", + generate_pattern_matching_rule($, false, false) + ) ) ); }, diff --git a/queries/highlights.scm b/queries/highlights.scm index f0a74a20a..e708c5eb7 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -21,7 +21,7 @@ (function_declaration (simple_identifier) @method) (function_declaration ["init" @constructor]) (throws) @keyword -(async) @keyword +"async" @keyword (where_keyword) @keyword (parameter external_name: (simple_identifier) @parameter) (parameter name: (simple_identifier) @parameter) @@ -39,6 +39,12 @@ "indirect" ] @keyword +[ + (getter_specifier) + (setter_specifier) + (modify_specifier) +] @keyword + (class_body (property_declaration (value_binding_pattern (non_binding_pattern (simple_identifier) @property)))) (protocol_property_declaration (value_binding_pattern (non_binding_pattern (simple_identifier) @property))) diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index 21247a590..960713ec7 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -1,15 +1,5 @@ -Alamofire/Tests/ConcurrencyTests.swift -Alamofire/Source/Concurrency.swift firefox-ios/Shared/Functions.swift RxSwift/RxExample/RxExample/Examples/GitHubSearchRepositories/GitHubSearchRepositories.swift RxSwift/Rx.playground/Pages/Transforming_Operators.xcplaygroundpage/Contents.swift -RxSwift/RxCocoa/Traits/SharedSequence/SharedSequence+Concurrency.swift -RxSwift/RxSwift/Traits/PrimitiveSequence/PrimitiveSequence+Concurrency.swift -RxSwift/RxSwift/Traits/Infallible/Infallible+Concurrency.swift -RxSwift/Sources/RxSwift/PrimitiveSequence+Concurrency.swift -RxSwift/Sources/RxSwift/Observable+Concurrency.swift -RxSwift/Sources/RxSwift/Infallible+Concurrency.swift -RxSwift/Sources/RxCocoa/SharedSequence+Concurrency.swift -RxSwift/RxSwift/Observable+Concurrency.swift SwiftLint/Source/SwiftLintFramework/Rules/Lint/ExpiringTodoRule.swift GRDB/GRDB/Core/Row.swift From 65e320b21bab2ed070fa33bdb80debbfeab67afd Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 5 Feb 2022 13:38:52 -0800 Subject: [PATCH 103/151] Use simplified function syntax for rules This code was using simplified function syntax previously, but that got lost in the journey to Typescript and back. This restores the original syntax. --- grammar.js | 1701 ++++++++++++++++++++-------------------------------- 1 file changed, 666 insertions(+), 1035 deletions(-) diff --git a/grammar.js b/grammar.js index 81ee7ea05..d71069f2d 100644 --- a/grammar.js +++ b/grammar.js @@ -83,165 +83,151 @@ var CUSTOM_OPERATORS = token( // * Custom operators and `<` for type arguments module.exports = grammar({ name: "swift", - conflicts: function ($) { - return [ - // @Type(... could either be an annotation constructor invocation or an annotated expression - [$.attribute], - // 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], - // Custom operators get weird special handling for `<` characters in silly stuff like `func =<<<(...)` - [$.custom_operator], - [$._prefix_unary_operator, $._referenceable_operator], - // `+(...)` 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], - // `{ [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_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, - ], - ]; - }, - extras: function ($) { - return [ - $.comment, - $.multiline_comment, - $.directive, - $.diagnostic, - /\s+/, // Whitespace - ]; - }, - externals: function ($) { - return [ - // 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. - $._semi, - // Every one of the below operators will suppress a `_semi` if we encounter it after a newline. - $._arrow_operator_custom, - $._dot_custom, - $._three_dot_operator_custom, - $._open_ended_range_operator_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, - ]; - }, + conflicts: ($) => [ + // @Type(... could either be an annotation constructor invocation or an annotated expression + [$.attribute], + // 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], + // Custom operators get weird special handling for `<` characters in silly stuff like `func =<<<(...)` + [$.custom_operator], + [$._prefix_unary_operator, $._referenceable_operator], + // `+(...)` 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], + // `{ [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_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, + ], + ], + 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. + $._semi, + // Every one of the below operators will suppress a `_semi` if we encounter it after a newline. + $._arrow_operator_custom, + $._dot_custom, + $._three_dot_operator_custom, + $._open_ended_range_operator_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, + ], rules: { //////////////////////////////// // File Structure //////////////////////////////// - source_file: function ($) { - return seq( + source_file: ($) => + seq( optional($.shebang_line), repeat(seq($._top_level_statement, $._semi)) - ); - }, - shebang_line: function ($) { - return seq("#!", /[^\r\n]*/); - }, + ), + shebang_line: ($) => seq("#!", /[^\r\n]*/), //////////////////////////////// // Lexical Structure - https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html //////////////////////////////// - comment: function ($) { - return token(prec(PRECS.comment, seq("//", /.*/))); - }, + comment: ($) => token(prec(PRECS.comment, seq("//", /.*/))), // Identifiers - simple_identifier: function ($) { - return choice( + simple_identifier: ($) => + choice( LEXICAL_IDENTIFIER, /`[^\r\n` ]*`/, /\$[0-9]+/, token(seq("$", LEXICAL_IDENTIFIER)) - ); - }, - identifier: function ($) { - return sep1($.simple_identifier, $._dot); - }, + ), + identifier: ($) => sep1($.simple_identifier, $._dot), // Literals - _basic_literal: function ($) { - return choice( + _basic_literal: ($) => + choice( $.integer_literal, $.hex_literal, $.oct_literal, @@ -250,70 +236,48 @@ module.exports = grammar({ $.boolean_literal, $._string_literal, "nil" - ); - }, + ), // TODO: Hex exponents - real_literal: function ($) { - return token( + real_literal: ($) => + token( choice( seq(DEC_DIGITS, REAL_EXPONENT), seq(optional(DEC_DIGITS), ".", DEC_DIGITS, optional(REAL_EXPONENT)) ) - ); - }, - integer_literal: function ($) { - return token(seq(optional(/[1-9]/), DEC_DIGITS)); - }, - hex_literal: function ($) { - return token(seq("0", /[xX]/, HEX_DIGITS)); - }, - oct_literal: function ($) { - return token(seq("0", /[oO]/, OCT_DIGITS)); - }, - bin_literal: function ($) { - return token(seq("0", /[bB]/, BIN_DIGITS)); - }, - boolean_literal: function ($) { - return choice("true", "false"); - }, + ), + 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: function ($) { - return choice( + _string_literal: ($) => + choice( $.line_string_literal, $.multi_line_string_literal, $.raw_string_literal - ); - }, - line_string_literal: function ($) { - return seq( + ), + line_string_literal: ($) => + seq( '"', repeat(choice(field("text", $._line_string_content), $._interpolation)), '"' - ); - }, - _line_string_content: function ($) { - return choice($.line_str_text, $.str_escaped_char); - }, - line_str_text: function ($) { - return /[^\\"]+/; - }, - str_escaped_char: function ($) { - return choice($._escaped_identifier, $._uni_character_literal); - }, - _uni_character_literal: function ($) { - return seq("\\", "u", /\{[0-9a-fA-F]+\}/); - }, - multi_line_string_literal: function ($) { - return seq( + ), + _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: function ($) { - return seq( + ), + raw_string_literal: ($) => + seq( repeat( seq( field("text", $.raw_str_part), @@ -322,52 +286,37 @@ module.exports = grammar({ ) ), field("text", $.raw_str_end_part) - ); - }, - raw_str_interpolation: function ($) { - return seq($.raw_str_interpolation_start, $._interpolation_contents, ")"); - }, - raw_str_interpolation_start: function ($) { - return /\\#*\(/; - }, - _multi_line_string_content: function ($) { - return choice($.multi_line_str_text, $.str_escaped_char, '"'); - }, - _interpolation: function ($) { - return seq("\\(", $._interpolation_contents, ")"); - }, - _interpolation_contents: function ($) { - return sep1( + ), + 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: function ($) { - return /\\[0\\tnr"'\n]/; - }, - multi_line_str_text: function ($) { - return /[^\\"]+/; - }, + ), + _escaped_identifier: ($) => /\\[0\\tnr"'\n]/, + multi_line_str_text: ($) => /[^\\"]+/, //////////////////////////////// // Types - https://docs.swift.org/swift-book/ReferenceManual/Types.html //////////////////////////////// - type_annotation: function ($) { - return seq(":", field("type", $._possibly_implicitly_unwrapped_type)); - }, - _possibly_implicitly_unwrapped_type: function ($) { - return seq($._type, optional(token.immediate("!"))); - }, - _type: function ($) { - return prec.right( + 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: function ($) { - return prec.right( + ), + _unannotated_type: ($) => + prec.right( PRECS.ty, choice( $.user_type, @@ -380,65 +329,50 @@ module.exports = grammar({ $.opaque_type, $.protocol_composition_type ) - ); - }, + ), // The grammar just calls this whole thing a `type-identifier` but that's a bit confusing. - user_type: function ($) { - return sep1($._simple_user_type, $._dot); - }, - _simple_user_type: function ($) { - return prec.right( + 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: function ($) { - return seq( - "(", - optional(sep1(field("element", $.tuple_type_item), ",")), - ")" - ); - }, - tuple_type_item: function ($) { - return prec( + ), + 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: function ($) { - return prec( + ), + _tuple_type_item_identifier: ($) => + prec( PRECS.expr, seq( optional($.wildcard_pattern), field("name", $.simple_identifier), ":" ) - ); - }, - function_type: function ($) { - return seq( + ), + function_type: ($) => + seq( field("params", $.tuple_type), optional($._async_keyword), optional($.throws), $._arrow_operator, field("return_type", $._type) - ); - }, - array_type: function ($) { - return seq("[", field("element", $._type), "]"); - }, - dictionary_type: function ($) { - return seq("[", field("key", $._type), ":", field("value", $._type), "]"); - }, - optional_type: function ($) { - return prec.left( + ), + array_type: ($) => seq("[", field("element", $._type), "]"), + dictionary_type: ($) => + seq("[", field("key", $._type), ":", field("value", $._type), "]"), + optional_type: ($) => + prec.left( seq( field( "wrapped", @@ -446,35 +380,24 @@ module.exports = grammar({ ), repeat1(alias($._immediate_quest, "?")) ) - ); - }, - metatype: function ($) { - return prec.left( - seq($._unannotated_type, ".", choice("Type", "Protocol")) - ); - }, - _quest: function ($) { - return "?"; - }, - _immediate_quest: function ($) { - return token.immediate("?"); - }, - opaque_type: function ($) { - return seq("some", $.user_type); - }, - protocol_composition_type: function ($) { - return prec.right( + ), + metatype: ($) => + prec.left(seq($._unannotated_type, ".", choice("Type", "Protocol"))), + _quest: ($) => "?", + _immediate_quest: ($) => token.immediate("?"), + opaque_type: ($) => seq("some", $.user_type), + protocol_composition_type: ($) => + prec.right( seq( $._unannotated_type, repeat1(seq("&", prec.right($._unannotated_type))) ) - ); - }, + ), //////////////////////////////// // Expressions - https://docs.swift.org/swift-book/ReferenceManual/Expressions.html //////////////////////////////// - _expression: function ($) { - return prec( + _expression: ($) => + prec( PRECS.expr, choice( $.simple_identifier, @@ -486,11 +409,10 @@ module.exports = grammar({ seq($._expression, alias($._immediate_quest, "?")), alias("async", $.simple_identifier) ) - ); - }, + ), // Unary expressions - _unary_expression: function ($) { - return choice( + _unary_expression: ($) => + choice( $.postfix_expression, $.call_expression, $.constructor_expression, @@ -500,19 +422,17 @@ module.exports = grammar({ $.selector_expression, $.open_start_range_expression, $.open_end_range_expression - ); - }, - postfix_expression: function ($) { - return prec.left( + ), + postfix_expression: ($) => + prec.left( PRECS.postfix_operations, seq( field("target", $._expression), field("operation", $._postfix_unary_operator) ) - ); - }, - constructor_expression: function ($) { - return prec( + ), + constructor_expression: ($) => + prec( PRECS.call, seq( field( @@ -521,62 +441,54 @@ module.exports = grammar({ ), $.constructor_suffix ) - ); - }, - navigation_expression: function ($) { - return prec.left( + ), + navigation_expression: ($) => + prec.left( PRECS.navigation, seq( field("target", choice($._navigable_type_expression, $._expression)), field("suffix", $.navigation_suffix) ) - ); - }, - _navigable_type_expression: function ($) { - return choice($.user_type, $.array_type, $.dictionary_type); - }, - open_start_range_expression: function ($) { - return prec.right( + ), + _navigable_type_expression: ($) => + choice($.user_type, $.array_type, $.dictionary_type), + open_start_range_expression: ($) => + prec.right( PRECS.range, seq( choice($._open_ended_range_operator, $._three_dot_operator), prec.right(PRECS.range_suffix, field("end", $._expression)) ) - ); - }, - open_end_range_expression: function ($) { - return prec.right( + ), + open_end_range_expression: ($) => + prec.right( PRECS.range, seq(field("start", $._expression), $._three_dot_operator) - ); - }, - prefix_expression: function ($) { - return prec.left( + ), + prefix_expression: ($) => + prec.left( PRECS.prefix_operations, seq( field("operation", $._prefix_unary_operator), field("target", $._expression) ) - ); - }, - as_expression: function ($) { - return prec.left( + ), + as_expression: ($) => + prec.left( PRECS.as, seq(field("expr", $._expression), $.as_operator, field("type", $._type)) - ); - }, - selector_expression: function ($) { - return seq( + ), + selector_expression: ($) => + seq( "#selector", "(", optional(choice("getter:", "setter:")), $._expression, ")" - ); - }, + ), // Binary expressions - _binary_expression: function ($) { - return choice( + _binary_expression: ($) => + choice( $.multiplicative_expression, $.additive_expression, $.range_expression, @@ -589,30 +501,27 @@ module.exports = grammar({ $.conjunction_expression, $.disjunction_expression, $.bitwise_operation - ); - }, - multiplicative_expression: function ($) { - return prec.left( + ), + multiplicative_expression: ($) => + prec.left( PRECS.multiplication, seq( field("lhs", $._expression), field("op", $._multiplicative_operator), field("rhs", $._expression) ) - ); - }, - additive_expression: function ($) { - return prec.left( + ), + additive_expression: ($) => + prec.left( PRECS.addition, seq( field("lhs", $._expression), field("op", $._additive_operator), field("rhs", $._expression) ) - ); - }, - range_expression: function ($) { - return prec.right( + ), + range_expression: ($) => + prec.right( PRECS.range, seq( field("start", $._expression), @@ -622,98 +531,86 @@ module.exports = grammar({ ), field("end", $._expression) ) - ); - }, - infix_expression: function ($) { - return prec.left( + ), + infix_expression: ($) => + prec.left( PRECS.infix_operations, seq( field("lhs", $._expression), field("op", $.custom_operator), field("rhs", $._expression) ) - ); - }, - nil_coalescing_expression: function ($) { - return prec.right( + ), + nil_coalescing_expression: ($) => + prec.right( PRECS.nil_coalescing, seq( field("value", $._expression), $._nil_coalescing_operator, field("if_nil", $._expression) ) - ); - }, - check_expression: function ($) { - return prec.left( + ), + check_expression: ($) => + prec.left( PRECS.check, seq( field("target", $._expression), field("op", $._is_operator), field("type", $._type) ) - ); - }, - comparison_expression: function ($) { - return prec.left( + ), + comparison_expression: ($) => + prec.left( seq( field("lhs", $._expression), field("op", $._comparison_operator), field("rhs", $._expression) ) - ); - }, - equality_expression: function ($) { - return prec.left( + ), + equality_expression: ($) => + prec.left( PRECS.equality, seq( field("lhs", $._expression), field("op", $._equality_operator), field("rhs", $._expression) ) - ); - }, - conjunction_expression: function ($) { - return prec.left( + ), + conjunction_expression: ($) => + prec.left( PRECS.conjunction, seq( field("lhs", $._expression), field("op", $._conjunction_operator), field("rhs", $._expression) ) - ); - }, - disjunction_expression: function ($) { - return prec.left( + ), + disjunction_expression: ($) => + prec.left( PRECS.disjunction, seq( field("lhs", $._expression), field("op", $._disjunction_operator), field("rhs", $._expression) ) - ); - }, - bitwise_operation: function ($) { - return prec.left( + ), + bitwise_operation: ($) => + prec.left( seq( field("lhs", $._expression), field("op", $._bitwise_binary_operator), field("rhs", $._expression) ) - ); - }, - custom_operator: function ($) { - return seq(CUSTOM_OPERATORS, optional("<")); - }, + ), + custom_operator: ($) => seq(CUSTOM_OPERATORS, optional("<")), // Suffixes - navigation_suffix: function ($) { - return seq( + navigation_suffix: ($) => + seq( $._dot, field("suffix", choice($.simple_identifier, $.integer_literal)) - ); - }, - call_suffix: function ($) { - return prec( + ), + call_suffix: ($) => + prec( PRECS.call_suffix, seq( choice( @@ -721,10 +618,9 @@ module.exports = grammar({ sep1($.lambda_literal, seq(field("name", $.simple_identifier), ":")) ) ) - ); - }, - constructor_suffix: function ($) { - return prec( + ), + constructor_suffix: ($) => + prec( PRECS.call_suffix, seq( choice( @@ -732,24 +628,19 @@ module.exports = grammar({ $.lambda_literal ) ) - ); - }, - _constructor_value_arguments: function ($) { - return seq("(", optional(sep1($.value_argument, ",")), ")"); - }, - type_arguments: function ($) { - return prec.left(seq("<", sep1($._type, ","), ">")); - }, - value_arguments: function ($) { - return seq( + ), + _constructor_value_arguments: ($) => + seq("(", optional(sep1($.value_argument, ",")), ")"), + type_arguments: ($) => prec.left(seq("<", sep1($._type, ","), ">")), + value_arguments: ($) => + seq( choice( seq("(", optional(sep1($.value_argument, ",")), ")"), seq("[", optional(sep1($.value_argument, ",")), "]") ) - ); - }, - value_argument: function ($) { - return prec.left( + ), + value_argument: ($) => + prec.left( seq( optional($.type_modifiers), choice( @@ -773,10 +664,9 @@ module.exports = grammar({ ) ) ) - ); - }, - try_expression: function ($) { - return prec.right( + ), + try_expression: ($) => + prec.right( PRECS["try"], seq( $._try_operator, @@ -797,10 +687,9 @@ module.exports = grammar({ ) ) ) - ); - }, - await_expression: function ($) { - return prec.right( + ), + await_expression: ($) => + prec.right( PRECS.await, seq( $._await_operator, @@ -815,13 +704,10 @@ module.exports = grammar({ ) ) ) - ); - }, - _await_operator: function ($) { - return "await"; - }, - ternary_expression: function ($) { - return prec.right( + ), + _await_operator: ($) => "await", + ternary_expression: ($) => + prec.right( PRECS.ternary, seq( field("condition", $._expression), @@ -839,22 +725,17 @@ module.exports = grammar({ ) ) ) - ); - }, - expr_hack_at_ternary_call: function ($) { - return seq( + ), + expr_hack_at_ternary_call: ($) => + seq( $._expression, alias($.expr_hack_at_ternary_call_suffix, $.call_suffix) - ); - }, - expr_hack_at_ternary_call_suffix: function ($) { - return prec(PRECS.call_suffix, $.value_arguments); - }, - call_expression: function ($) { - return prec(PRECS.call, seq($._expression, $.call_suffix)); - }, - _primary_expression: function ($) { - return choice( + ), + expr_hack_at_ternary_call_suffix: ($) => + prec(PRECS.call_suffix, $.value_arguments), + call_expression: ($) => prec(PRECS.call, seq($._expression, $.call_suffix)), + _primary_expression: ($) => + choice( $.tuple_expression, $._basic_literal, $.lambda_literal, @@ -873,10 +754,9 @@ module.exports = grammar({ PRECS.fully_open_range, alias($._three_dot_operator, $.fully_open_range) ) - ); - }, - tuple_expression: function ($) { - return prec.right( + ), + tuple_expression: ($) => + prec.right( PRECS.tuple, seq( "(", @@ -889,33 +769,25 @@ module.exports = grammar({ ), ")" ) - ); - }, - array_literal: function ($) { - return seq( + ), + array_literal: ($) => + seq( "[", optional(sep1(field("element", $._expression), ",")), optional(","), "]" - ); - }, - dictionary_literal: function ($) { - return seq( + ), + dictionary_literal: ($) => + seq( "[", choice(":", sep1($._dictionary_literal_item, ",")), optional(","), "]" - ); - }, - _dictionary_literal_item: function ($) { - return seq( - field("key", $._expression), - ":", - field("value", $._expression) - ); - }, - _special_literal: function ($) { - return choice( + ), + _dictionary_literal_item: ($) => + seq(field("key", $._expression), ":", field("value", $._expression)), + _special_literal: ($) => + choice( "#file", "#fileID", "#filePath", @@ -923,18 +795,16 @@ module.exports = grammar({ "#column", "#function", "#dsohandle" - ); - }, - _playground_literal: function ($) { - return seq( + ), + _playground_literal: ($) => + seq( choice("#colorLiteral", "#fileLiteral", "#imageLiteral"), "(", sep1(seq($.simple_identifier, ":", $._expression), ","), ")" - ); - }, - lambda_literal: function ($) { - return prec.left( + ), + lambda_literal: ($) => + prec.left( PRECS.lambda, seq( "{", @@ -943,13 +813,11 @@ module.exports = grammar({ optional($.statements), "}" ) - ); - }, - capture_list: function ($) { - return seq(repeat($.attribute), "[", sep1($.capture_list_item, ","), "]"); - }, - capture_list_item: function ($) { - return choice( + ), + capture_list: ($) => + seq(repeat($.attribute), "[", sep1($.capture_list_item, ","), "]"), + capture_list_item: ($) => + choice( field("name", $.self_expression), prec( PRECS.expr, @@ -959,10 +827,9 @@ module.exports = grammar({ optional(seq($._equal_sign, field("value", $._expression))) ) ) - ); - }, - lambda_function_type: function ($) { - return prec( + ), + lambda_function_type: ($) => + prec( PRECS.expr, seq( choice( @@ -978,13 +845,10 @@ module.exports = grammar({ ) ) ) - ); - }, - lambda_function_type_parameters: function ($) { - return sep1($.lambda_parameter, ","); - }, - lambda_parameter: function ($) { - return seq( + ), + lambda_function_type_parameters: ($) => sep1($.lambda_parameter, ","), + lambda_parameter: ($) => + seq( optional($.attribute), choice( $.self_expression, @@ -1000,19 +864,12 @@ module.exports = grammar({ ) ) ) - ); - }, - self_expression: function ($) { - return "self"; - }, - super_expression: function ($) { - return seq("super"); - }, - _else_options: function ($) { - return choice($._block, $.if_statement); - }, - if_statement: function ($) { - return prec.right( + ), + self_expression: ($) => "self", + super_expression: ($) => seq("super"), + _else_options: ($) => choice($._block, $.if_statement), + if_statement: ($) => + prec.right( PRECS["if"], seq( "if", @@ -1020,16 +877,13 @@ module.exports = grammar({ $._block, optional(seq($["else"], $._else_options)) ) - ); - }, - _if_condition_sequence_item: function ($) { - return choice($._if_let_binding, $._expression, $.availability_condition); - }, - _if_let_binding: function ($) { - return seq($._direct_or_indirect_binding, $._equal_sign, $._expression); - }, - guard_statement: function ($) { - return prec.right( + ), + _if_condition_sequence_item: ($) => + choice($._if_let_binding, $._expression, $.availability_condition), + _if_let_binding: ($) => + seq($._direct_or_indirect_binding, $._equal_sign, $._expression), + guard_statement: ($) => + prec.right( PRECS["if"], seq( "guard", @@ -1037,10 +891,9 @@ module.exports = grammar({ $["else"], $._block ) - ); - }, - switch_statement: function ($) { - return prec.right( + ), + switch_statement: ($) => + prec.right( PRECS["switch"], seq( "switch", @@ -1049,10 +902,9 @@ module.exports = grammar({ repeat($.switch_entry), "}" ) - ); - }, - switch_entry: function ($) { - return seq( + ), + switch_entry: ($) => + seq( optional($.modifiers), choice( seq( @@ -1068,19 +920,12 @@ module.exports = grammar({ ":", $.statements, optional("fallthrough") - ); - }, - switch_pattern: function ($) { - return generate_pattern_matching_rule($, true, false, true); - }, - do_statement: function ($) { - return prec.right( - PRECS["do"], - seq("do", $._block, repeat($.catch_block)) - ); - }, - catch_block: function ($) { - return seq( + ), + switch_pattern: ($) => generate_pattern_matching_rule($, true, false, true), + do_statement: ($) => + prec.right(PRECS["do"], seq("do", $._block, repeat($.catch_block))), + catch_block: ($) => + seq( $.catch_keyword, field( "error", @@ -1088,13 +933,10 @@ module.exports = grammar({ ), optional($.where_clause), $._block - ); - }, - where_clause: function ($) { - return prec.left(seq($.where_keyword, $._expression)); - }, - key_path_expression: function ($) { - return prec.right( + ), + where_clause: ($) => prec.left(seq($.where_keyword, $._expression)), + key_path_expression: ($) => + prec.right( PRECS.keypath, seq( "\\", @@ -1103,58 +945,39 @@ module.exports = grammar({ ), repeat(seq(".", $._key_path_component)) ) - ); - }, - key_path_string_expression: function ($) { - return prec.left(seq("#keyPath", "(", $._expression, ")")); - }, - _key_path_component: function ($) { - return prec.left( + ), + 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: function ($) { - return choice( + ), + _key_path_postfixes: ($) => + choice( "?", $.bang, "self", seq("[", optional(sep1($.value_argument, ",")), "]") - ); - }, - _try_operator: function ($) { - return choice("try", "try!", "try?"); - }, - _assignment_and_operator: function ($) { - return choice("+=", "-=", "*=", "/=", "%=", "="); - }, - _equality_operator: function ($) { - return choice("!=", "!==", $._eq_eq, "==="); - }, - _comparison_operator: function ($) { - return choice("<", ">", "<=", ">="); - }, - _is_operator: function ($) { - return "is"; - }, - _additive_operator: function ($) { - return choice( + ), + _try_operator: ($) => choice("try", "try!", "try?"), + _assignment_and_operator: ($) => choice("+=", "-=", "*=", "/=", "%=", "="), + _equality_operator: ($) => choice("!=", "!==", $._eq_eq, "==="), + _comparison_operator: ($) => choice("<", ">", "<=", ">="), + _is_operator: ($) => "is", + _additive_operator: ($) => + choice( alias($._plus_then_ws, "+"), alias($._minus_then_ws, "-"), "+", "-" - ); - }, - _multiplicative_operator: function ($) { - return choice("*", "/", "%"); - }, - as_operator: function ($) { - return choice($._as, $._as_quest, $._as_bang); - }, - _prefix_unary_operator: function ($) { - return prec.right( + ), + _multiplicative_operator: ($) => choice("*", "/", "%"), + as_operator: ($) => choice($._as, $._as_quest, $._as_bang), + _prefix_unary_operator: ($) => + prec.right( choice( "++", "--", @@ -1166,57 +989,46 @@ module.exports = grammar({ $._dot, $.custom_operator ) - ); - }, - _bitwise_binary_operator: function ($) { - return choice("&", "|", "^", "<<", ">>"); - }, - _postfix_unary_operator: function ($) { - return choice("++", "--", $.bang); - }, - directly_assignable_expression: function ($) { - return choice( + ), + _bitwise_binary_operator: ($) => choice("&", "|", "^", "<<", ">>"), + _postfix_unary_operator: ($) => choice("++", "--", $.bang), + directly_assignable_expression: ($) => + choice( $.simple_identifier, $.navigation_expression, $.call_expression, $.tuple_expression, $.self_expression - ); - }, + ), //////////////////////////////// // Statements - https://docs.swift.org/swift-book/ReferenceManual/Statements.html //////////////////////////////// - statements: function ($) { - return prec.left( + statements: ($) => + prec.left( // Left precedence is required in switch statements seq( $._local_statement, repeat(seq($._semi, $._local_statement)), optional($._semi) ) - ); - }, - _local_statement: function ($) { - return choice( + ), + _local_statement: ($) => + choice( $._expression, $._local_declaration, $._labeled_statement, $.control_transfer_statement - ); - }, - _top_level_statement: function ($) { - return choice( + ), + _top_level_statement: ($) => + choice( $._expression, $._global_declaration, $._labeled_statement, $._throw_statement - ); - }, - _block: function ($) { - return prec(PRECS.block, seq("{", optional($.statements), "}")); - }, - _labeled_statement: function ($) { - return seq( + ), + _block: ($) => prec(PRECS.block, seq("{", optional($.statements), "}")), + _labeled_statement: ($) => + seq( optional($.statement_label), choice( $.for_statement, @@ -1227,13 +1039,10 @@ module.exports = grammar({ $.guard_statement, $.switch_statement ) - ); - }, - statement_label: function ($) { - return token(/[a-zA-Z_][a-zA-Z_0-9]*:/); - }, - for_statement: function ($) { - return prec( + ), + statement_label: ($) => token(/[a-zA-Z_][a-zA-Z_0-9]*:/), + for_statement: ($) => + prec( PRECS.loop, seq( "for", @@ -1246,10 +1055,9 @@ module.exports = grammar({ optional($.where_clause), $._block ) - ); - }, - while_statement: function ($) { - return prec( + ), + while_statement: ($) => + prec( PRECS.loop, seq( "while", @@ -1258,10 +1066,9 @@ module.exports = grammar({ optional($.statements), "}" ) - ); - }, - repeat_while_statement: function ($) { - return prec( + ), + repeat_while_statement: ($) => + prec( PRECS.loop, seq( "repeat", @@ -1271,10 +1078,9 @@ module.exports = grammar({ "while", sep1(field("condition", $._if_condition_sequence_item), ",") ) - ); - }, - control_transfer_statement: function ($) { - return choice( + ), + control_transfer_statement: ($) => + choice( prec.right(PRECS.control_transfer, $._throw_statement), prec.right( PRECS.control_transfer, @@ -1283,43 +1089,34 @@ module.exports = grammar({ field("result", optional($._expression)) ) ) - ); - }, - _throw_statement: function ($) { - return seq($.throw_keyword, $._expression); - }, - throw_keyword: function ($) { - return "throw"; - }, - _optionally_valueful_control_keyword: function ($) { - return choice("return", "continue", "break", "yield"); - }, - assignment: function ($) { - return prec.left( + ), + _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: function ($) { - return seq( + ), + availability_condition: ($) => + seq( "#available", "(", sep1(choice($._availability_argument, "*"), ","), ")" - ); - }, - _availability_argument: function ($) { - return seq($.identifier, sep1($.integer_literal, ".")); - }, + ), + _availability_argument: ($) => + seq($.identifier, sep1($.integer_literal, ".")), //////////////////////////////// // Declarations - https://docs.swift.org/swift-book/ReferenceManual/Declarations.html //////////////////////////////// - _global_declaration: function ($) { - return choice( + _global_declaration: ($) => + choice( $.import_declaration, $.property_declaration, $.typealias_declaration, @@ -1330,10 +1127,9 @@ module.exports = grammar({ $.operator_declaration, $.precedence_group_declaration, $.associatedtype_declaration - ); - }, - _type_level_declaration: function ($) { - return choice( + ), + _type_level_declaration: ($) => + choice( $.import_declaration, $.property_declaration, $.typealias_declaration, @@ -1345,50 +1141,43 @@ module.exports = grammar({ $.operator_declaration, $.precedence_group_declaration, $.associatedtype_declaration - ); - }, - _local_declaration: function ($) { - return choice( + ), + _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: function ($) { - return seq( + ), + _local_property_declaration: ($) => + seq( optional($._locally_permitted_modifiers), $._modifierless_property_declaration - ); - }, - _local_typealias_declaration: function ($) { - return seq( + ), + _local_typealias_declaration: ($) => + seq( optional($._locally_permitted_modifiers), $._modifierless_typealias_declaration - ); - }, - _local_function_declaration: function ($) { - return seq( + ), + _local_function_declaration: ($) => + seq( optional($._locally_permitted_modifiers), $._modifierless_function_declaration - ); - }, - _local_class_declaration: function ($) { - return seq( + ), + _local_class_declaration: ($) => + seq( optional($._locally_permitted_modifiers), $._modifierless_class_declaration - ); - }, - import_declaration: function ($) { - return seq( + ), + import_declaration: ($) => + seq( optional($.modifiers), "import", optional($._import_kind), $.identifier - ); - }, - _import_kind: function ($) { - return choice( + ), + _import_kind: ($) => + choice( "typealias", "struct", "class", @@ -1397,10 +1186,9 @@ module.exports = grammar({ "let", "var", "func" - ); - }, - protocol_property_declaration: function ($) { - return prec.right( + ), + protocol_property_declaration: ($) => + prec.right( seq( optional($.modifiers), field("name", $.value_binding_pattern), @@ -1408,24 +1196,17 @@ module.exports = grammar({ optional($.type_constraints), $.protocol_property_requirements ) - ); - }, - protocol_property_requirements: function ($) { - return seq( - "{", - repeat(choice($.getter_specifier, $.setter_specifier)), - "}" - ); - }, - property_declaration: function ($) { - return seq( + ), + protocol_property_requirements: ($) => + seq("{", repeat(choice($.getter_specifier, $.setter_specifier)), "}"), + property_declaration: ($) => + seq( optional($.modifiers), optional("class"), $._modifierless_property_declaration - ); - }, - _modifierless_property_declaration: function ($) { - return prec.right( + ), + _modifierless_property_declaration: ($) => + prec.right( seq( choice(seq(optional($._async_modifier), "let"), "var"), sep1( @@ -1446,45 +1227,38 @@ module.exports = grammar({ "," ) ) - ); - }, - property_binding_pattern: function ($) { - return generate_pattern_matching_rule($, false, false); - }, - typealias_declaration: function ($) { - return seq(optional($.modifiers), $._modifierless_typealias_declaration); - }, - _modifierless_typealias_declaration: function ($) { - return seq( + ), + property_binding_pattern: ($) => + generate_pattern_matching_rule($, false, false), + 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: function ($) { - return prec.right( + ), + function_declaration: ($) => + prec.right( seq($._bodyless_function_declaration, field("body", $.function_body)) - ); - }, - _modifierless_function_declaration: function ($) { - return prec.right( + ), + _modifierless_function_declaration: ($) => + prec.right( seq( $._modifierless_function_declaration_no_body, field("body", $.function_body) ) - ); - }, - _bodyless_function_declaration: function ($) { - return seq( + ), + _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: function ($) { - return prec.right( + ), + _modifierless_function_declaration_no_body: ($) => + prec.right( seq( choice( $._constructor_function_decl, @@ -1502,16 +1276,12 @@ module.exports = grammar({ ), optional($.type_constraints) ) - ); - }, - function_body: function ($) { - return $._block; - }, - class_declaration: function ($) { - return seq(optional($.modifiers), $._modifierless_class_declaration); - }, - _modifierless_class_declaration: function ($) { - return prec.right( + ), + function_body: ($) => $._block, + class_declaration: ($) => + seq(optional($.modifiers), $._modifierless_class_declaration), + _modifierless_class_declaration: ($) => + prec.right( choice( seq( field("declaration_kind", choice("class", "struct")), @@ -1539,90 +1309,66 @@ module.exports = grammar({ field("body", $.enum_class_body) ) ) - ); - }, - class_body: function ($) { - return seq("{", optional($._class_member_declarations), "}"); - }, - _inheritance_specifiers: function ($) { - return prec.left( - sep1($._annotated_inheritance_specifier, choice(",", "&")) - ); - }, - inheritance_specifier: function ($) { - return prec.left( - field("inherits_from", choice($.user_type, $.function_type)) - ); - }, - _annotated_inheritance_specifier: function ($) { - return seq(repeat($.attribute), $.inheritance_specifier); - }, - type_parameters: function ($) { - return seq("<", sep1($.type_parameter, ","), ">"); - }, - type_parameter: function ($) { - return seq( + ), + 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, ","), ">"), + type_parameter: ($) => + seq( optional($.type_parameter_modifiers), alias($.simple_identifier, $.type_identifier), optional(seq(":", $._type)) - ); - }, - type_constraints: function ($) { - return prec.right(seq($.where_keyword, sep1($.type_constraint, ","))); - }, - type_constraint: function ($) { - return choice($.inheritance_constraint, $.equality_constraint); - }, - inheritance_constraint: function ($) { - return seq( + ), + 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: function ($) { - return seq( + ), + equality_constraint: ($) => + seq( repeat($.attribute), field("constrained_type", $.identifier), choice($._equal_sign, $._eq_eq), field("must_equal", $._type) - ); - }, - _class_member_separator: function ($) { - return choice($._semi, $.multiline_comment); - }, - _class_member_declarations: function ($) { - return seq( + ), + _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: function ($) { - return seq("(", optional(sep1($._function_value_parameter, ",")), ")"); - }, - _function_value_parameter: function ($) { - return seq( + ), + _function_value_parameters: ($) => + seq("(", optional(sep1($._function_value_parameter, ",")), ")"), + _function_value_parameter: ($) => + seq( optional($.attribute), $.parameter, optional(seq($._equal_sign, field("default_value", $._expression))) - ); - }, - parameter: function ($) { - return seq( + ), + 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: function ($) { - return seq(field("name", "init"), optional(choice($._quest, $.bang))); - }, - _non_constructor_function_decl: function ($) { - return seq( + ), + _constructor_function_decl: ($) => + seq(field("name", "init"), optional(choice($._quest, $.bang))), + _non_constructor_function_decl: ($) => + seq( "func", field( "name", @@ -1632,10 +1378,9 @@ module.exports = grammar({ $._bitwise_binary_operator ) ) - ); - }, - _referenceable_operator: function ($) { - return choice( + ), + _referenceable_operator: ($) => + choice( $.custom_operator, $._comparison_operator, $._additive_operator, @@ -1646,71 +1391,37 @@ module.exports = grammar({ "--", $.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: function ($) { - return alias($._eq_custom, "="); - }, - _eq_eq: function ($) { - return alias($._eq_eq_custom, "=="); - }, - _dot: function ($) { - return alias($._dot_custom, "."); - }, - _arrow_operator: function ($) { - return alias($._arrow_operator_custom, "->"); - }, - _three_dot_operator: function ($) { - return alias($._three_dot_operator_custom, "..."); - }, - _open_ended_range_operator: function ($) { - return alias($._open_ended_range_operator_custom, "..<"); - }, - _conjunction_operator: function ($) { - return alias($._conjunction_operator_custom, "&&"); - }, - _disjunction_operator: function ($) { - return alias($._disjunction_operator_custom, "||"); - }, - _nil_coalescing_operator: function ($) { - return alias($._nil_coalescing_operator_custom, "??"); - }, - _as: function ($) { - return alias($._as_custom, "as"); - }, - _as_quest: function ($) { - return alias($._as_quest_custom, "as?"); - }, - _as_bang: function ($) { - return alias($._as_bang_custom, "as!"); - }, + _equal_sign: ($) => alias($._eq_custom, "="), + _eq_eq: ($) => alias($._eq_eq_custom, "=="), + _dot: ($) => alias($._dot_custom, "."), + _arrow_operator: ($) => alias($._arrow_operator_custom, "->"), + _three_dot_operator: ($) => alias($._three_dot_operator_custom, "..."), + _open_ended_range_operator: ($) => + alias($._open_ended_range_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: function ($) { // Backward compatibility: make `async` both a named node and a string node. Remove this once downstream queries // have all been switched over. return prec(-1, alias($._async_keyword_internal, $.async)); }, - _async_keyword_internal: function ($) { - return alias($._async_keyword_custom, "async"); - }, - _async_modifier: function ($) { - return token("async"); - }, - throws: function ($) { - return choice($._throws_keyword, $._rethrows_keyword); - }, - enum_class_body: function ($) { - return seq( - "{", - repeat(choice($.enum_entry, $._type_level_declaration)), - "}" - ); - }, - enum_entry: function ($) { - return seq( + _async_keyword_internal: ($) => 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", @@ -1727,10 +1438,9 @@ module.exports = grammar({ "," ), optional(";") - ); - }, - enum_type_parameters: function ($) { - return seq( + ), + enum_type_parameters: ($) => + seq( "(", optional( sep1( @@ -1745,10 +1455,9 @@ module.exports = grammar({ ) ), ")" - ); - }, - protocol_declaration: function ($) { - return prec.right( + ), + protocol_declaration: ($) => + prec.right( seq( optional($.modifiers), field("declaration_kind", "protocol"), @@ -1758,19 +1467,13 @@ module.exports = grammar({ optional($.type_constraints), field("body", $.protocol_body) ) - ); - }, - protocol_body: function ($) { - return seq("{", optional($._protocol_member_declarations), "}"); - }, - _protocol_member_declarations: function ($) { - return seq( - sep1($._protocol_member_declaration, $._semi), - optional($._semi) - ); - }, - _protocol_member_declaration: function ($) { - return choice( + ), + 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, @@ -1783,15 +1486,13 @@ module.exports = grammar({ $.typealias_declaration, $.associatedtype_declaration, $.subscript_declaration - ); - }, - deinit_declaration: function ($) { - return prec.right( + ), + deinit_declaration: ($) => + prec.right( seq(optional($.modifiers), "deinit", field("body", $.function_body)) - ); - }, - subscript_declaration: function ($) { - return prec.right( + ), + subscript_declaration: ($) => + prec.right( seq( optional($.modifiers), "subscript", @@ -1813,10 +1514,9 @@ module.exports = grammar({ ), "}" ) - ); - }, - computed_property: function ($) { - return seq( + ), + computed_property: ($) => + seq( "{", choice( optional($.statements), @@ -1825,80 +1525,59 @@ module.exports = grammar({ ) ), "}" - ); - }, - computed_getter: function ($) { - return seq(repeat($.attribute), $.getter_specifier, optional($._block)); - }, - computed_modify: function ($) { - return seq(repeat($.attribute), $.modify_specifier, optional($._block)); - }, - computed_setter: function ($) { - return seq( + ), + 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: function ($) { - return seq( - optional($.mutation_modifier), - "get", - optional($._getter_effects) - ); - }, - setter_specifier: function ($) { - return seq(optional($.mutation_modifier), "set"); - }, - modify_specifier: function ($) { - return seq(optional($.mutation_modifier), "_modify"); - }, - _getter_effects: function ($) { - return repeat1(choice($._async_keyword, $.throws)); - }, - operator_declaration: function ($) { - return seq( + ), + 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", $.custom_operator, optional(seq(":", $.simple_identifier)) - ); - }, - precedence_group_declaration: function ($) { - return seq( + ), + precedence_group_declaration: ($) => + seq( "precedencegroup", $.simple_identifier, "{", optional($.precedence_group_attributes), "}" - ); - }, - precedence_group_attributes: function ($) { - return repeat1($.precedence_group_attribute); - }, - precedence_group_attribute: function ($) { - return seq( + ), + precedence_group_attributes: ($) => repeat1($.precedence_group_attribute), + precedence_group_attribute: ($) => + seq( $.simple_identifier, ":", choice($.simple_identifier, $.boolean_literal) - ); - }, - associatedtype_declaration: function ($) { - return seq( + ), + 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: function ($) { - return seq( + attribute: ($) => + seq( "@", $.user_type, // attribute arguments are a mess of special cases, maybe this is good enough? @@ -1921,52 +1600,35 @@ module.exports = grammar({ ")" ) ) - ); - }, + ), //////////////////////////////// // Patterns - https://docs.swift.org/swift-book/ReferenceManual/Patterns.html //////////////////////////////// // Higher-than-default precedence to resolve `x as SomeType` ambiguity (expression patterns seem not to support // as-expressions) - binding_pattern: function ($) { - return prec.left( - 1, - generate_pattern_matching_rule($, true, false, false, true) - ); - }, - non_binding_pattern: function ($) { - return prec.left( + binding_pattern: ($) => + prec.left(1, generate_pattern_matching_rule($, true, false, false, true)), + non_binding_pattern: ($) => + prec.left( 1, generate_pattern_matching_rule($, false, false, false, true) - ); - }, + ), // Higher precedence than pattern w/o binding since these are strictly more flexible - _binding_pattern_with_expr: function ($) { - return prec.left( - 2, - generate_pattern_matching_rule($, true, false, true, true) - ); - }, - _non_binding_pattern_with_expr: function ($) { - return prec.left( - 2, - generate_pattern_matching_rule($, false, false, true, true) - ); - }, - _direct_or_indirect_binding: function ($) { - return seq( + _binding_pattern_with_expr: ($) => + prec.left(2, generate_pattern_matching_rule($, true, false, true, true)), + _non_binding_pattern_with_expr: ($) => + prec.left(2, generate_pattern_matching_rule($, false, false, true, true)), + _direct_or_indirect_binding: ($) => + seq( choice( $.value_binding_pattern, seq("case", generate_pattern_matching_rule($, true, false, false)) ), optional($.type_annotation) - ); - }, - wildcard_pattern: function ($) { - return "_"; - }, - value_binding_pattern: function ($) { - return prec.left( + ), + wildcard_pattern: ($) => "_", + value_binding_pattern: ($) => + prec.left( choice( seq("var", generate_pattern_matching_rule($, false, false)), seq( @@ -1975,80 +1637,52 @@ module.exports = grammar({ generate_pattern_matching_rule($, false, false) ) ) - ); - }, + ), // ========== // Modifiers // ========== - modifiers: function ($) { - return repeat1( + modifiers: ($) => + repeat1( choice($._non_local_scope_modifier, $._locally_permitted_modifiers) - ); - }, - _locally_permitted_modifiers: function ($) { - return repeat1(choice($.attribute, $._locally_permitted_modifier)); - }, - parameter_modifiers: function ($) { - return repeat1($.parameter_modifier); - }, - _modifier: function ($) { - return choice($._non_local_scope_modifier, $._locally_permitted_modifier); - }, - _non_local_scope_modifier: function ($) { - return choice( + ), + _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 - ); - }, - _locally_permitted_modifier: function ($) { - return choice( + ), + _locally_permitted_modifier: ($) => + choice( $.ownership_modifier, $.property_behavior_modifier, $.inheritance_modifier - ); - }, - property_behavior_modifier: function ($) { - return "lazy"; - }, - type_modifiers: function ($) { - return repeat1($.attribute); - }, - member_modifier: function ($) { - return choice("override", "convenience", "required"); - }, - visibility_modifier: function ($) { - return seq( + ), + property_behavior_modifier: ($) => "lazy", + type_modifiers: ($) => repeat1($.attribute), + member_modifier: ($) => choice("override", "convenience", "required"), + visibility_modifier: ($) => + seq( choice("public", "private", "internal", "fileprivate", "open"), optional(seq("(", "set", ")")) - ); - }, - type_parameter_modifiers: function ($) { - return repeat1($.attribute); - }, - function_modifier: function ($) { - return choice("infix", "postfix", "prefix"); - }, - mutation_modifier: function ($) { - return choice("mutating", "nonmutating"); - }, - property_modifier: function ($) { - return choice("static", "dynamic", "optional"); - }, - inheritance_modifier: function ($) { - return choice("final"); - }, - parameter_modifier: function ($) { - return choice("inout", "@escaping", "@autoclosure"); - }, - ownership_modifier: function ($) { - return choice("weak", "unowned", "unowned(safe)", "unowned(unsafe)"); - }, - use_site_target: function ($) { - return seq( + ), + type_parameter_modifiers: ($) => repeat1($.attribute), + function_modifier: ($) => choice("infix", "postfix", "prefix"), + mutation_modifier: ($) => choice("mutating", "nonmutating"), + property_modifier: ($) => choice("static", "dynamic", "optional"), + 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", @@ -2059,10 +1693,9 @@ module.exports = grammar({ "delegate" ), ":" - ); - }, - directive: function ($) { - return token( + ), + directive: ($) => + token( prec( PRECS.comment, choice( @@ -2073,10 +1706,9 @@ module.exports = grammar({ seq(/#sourceLocation([^\r\n]*)/) ) ) - ); - }, - diagnostic: function ($) { - return token( + ), + diagnostic: ($) => + token( prec( PRECS.comment, choice( @@ -2086,8 +1718,7 @@ module.exports = grammar({ seq(/#warning([^\r\n]*)/) ) ) - ); - }, + ), }, }); function sep1(rule, separator) { From f7ac101d9ec8fdcca68f89e2ddd195c074418cb2 Mon Sep 17 00:00:00 2001 From: Marcin Krzyzanowski Date: Sat, 5 Feb 2022 23:16:49 +0100 Subject: [PATCH 104/151] Adjust linker parameters string --- Makefile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8f0500f87..55428665d 100644 --- a/Makefile +++ b/Makefile @@ -41,12 +41,20 @@ ifeq ($(shell uname),Darwin) SOEXT = dylib SOEXTVER_MAJOR = $(SONAME_MAJOR).dylib SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).dylib - LINKSHARED += -dynamiclib -Wl,$(ADDITIONALLIBS),-install_name,$(LIBDIR)/libtree-sitter-$(PARSER_NAME).$(SONAME_MAJOR).dylib,-rpath,@executable_path/../Frameworks + 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 += -shared -Wl,$(ADDITIONALLIBS),-soname,libtree-sitter-$(PARSER_NAME).so.$(SONAME_MAJOR) + 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 From ab00697862d9f16a3e605585bd459d0c863551d8 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 5 Feb 2022 14:53:50 -0800 Subject: [PATCH 105/151] Check C bindings in GitHub Actions On any new change, `PREFIX=/tmp make install` should succeed as long as the parser has already been built. --- .github/workflows/check.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index edaaecc11..f9bfea998 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -1,7 +1,4 @@ -# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions - -name: Check grammar and style +name: Check compilation/bindings/style on: push: @@ -33,5 +30,8 @@ jobs: - 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 .. From 01db954b7f03b890a650b873480c20aaae352d8c Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 5 Feb 2022 16:25:02 -0800 Subject: [PATCH 106/151] Allow the modifier `class` to appear in any order Fixes #8 Just uses `conflicts` to allow the keyword to appear anywhere instead of special casing it. --- corpus/classes.txt | 5 ++++- grammar.js | 11 +++++------ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/corpus/classes.txt b/corpus/classes.txt index e1711fc73..96e1a9e11 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -387,7 +387,7 @@ class SomethingElse: ThingProvider { return thing } - class func nothing() { } + class override func nothing() { } } -------------------------------------------------------------------------------- @@ -496,6 +496,9 @@ class SomethingElse: ThingProvider { (control_transfer_statement (simple_identifier))))) (function_declaration + (modifiers + (property_modifier) + (member_modifier)) (simple_identifier) (function_body))))) diff --git a/grammar.js b/grammar.js index d71069f2d..c778a208b 100644 --- a/grammar.js +++ b/grammar.js @@ -143,6 +143,9 @@ module.exports = grammar({ $._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], ], extras: ($) => [ $.comment, @@ -1200,11 +1203,7 @@ module.exports = grammar({ protocol_property_requirements: ($) => seq("{", repeat(choice($.getter_specifier, $.setter_specifier)), "}"), property_declaration: ($) => - seq( - optional($.modifiers), - optional("class"), - $._modifierless_property_declaration - ), + seq(optional($.modifiers), $._modifierless_property_declaration), _modifierless_property_declaration: ($) => prec.right( seq( @@ -1676,7 +1675,7 @@ module.exports = grammar({ type_parameter_modifiers: ($) => repeat1($.attribute), function_modifier: ($) => choice("infix", "postfix", "prefix"), mutation_modifier: ($) => choice("mutating", "nonmutating"), - property_modifier: ($) => choice("static", "dynamic", "optional"), + property_modifier: ($) => choice("static", "dynamic", "optional", "class"), inheritance_modifier: ($) => choice("final"), parameter_modifier: ($) => choice("inout", "@escaping", "@autoclosure"), ownership_modifier: ($) => From 9dd0600bd06c217b424c17571f007dfe10cfea67 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 6 Feb 2022 13:09:30 -0800 Subject: [PATCH 107/151] 0.1.3 release --- Cargo.toml | 2 +- Makefile | 4 ++-- README.md | 4 ++-- package-lock.json | 4 ++-- package.json | 2 +- test-npm-package/package-lock.json | 20 +++++++++----------- 6 files changed, 17 insertions(+), 19 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7f14e2f49..7fed422ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-swift" description = "swift grammar for the tree-sitter parsing library" -version = "0.1.2" +version = "0.1.3" keywords = ["incremental", "parsing", "swift"] categories = ["parsing", "text-editors"] repository = "https://github.com/alex-pinkus/tree-sitter-swift" diff --git a/Makefile b/Makefile index 55428665d..85b335407 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 0.1.2 +VERSION := 0.1.3 # Repository SRC_DIR := src @@ -95,4 +95,4 @@ install: all 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) bindings/c/tree-sitter-$(PARSER_NAME).h -.PHONY: all install clean \ No newline at end of file +.PHONY: all install clean diff --git a/README.md b/README.md index de1d45d6c..60dd9e02c 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To use this parser to parse Swift code, you'll want to depend on either the Rust To use the Rust crate, you'll add this to your `Cargo.toml`: ``` tree-sitter = "0.20.0" -tree-sitter-swift = "=0.1.2" +tree-sitter-swift = "=0.1.3" ``` Then you can use a `tree-sitter` parser with the language declared here: @@ -35,7 +35,7 @@ let tree = parser.parse(&my_source_code, None) To use this from NPM, you'll add similar dependencies to `package.json`: ``` "dependencies: { - "tree-sitter-swift": "0.1.2", + "tree-sitter-swift": "0.1.3", "tree-sitter": "^0.20.0" } ``` diff --git a/package-lock.json b/package-lock.json index 393684c9b..1c17b815e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "tree-sitter-swift", - "version": "0.1.2", + "version": "0.1.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "tree-sitter-swift", - "version": "0.1.2", + "version": "0.1.3", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 21d68c6a9..cfadfb31f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-swift", - "version": "0.1.2", + "version": "0.1.3", "description": "A tree-sitter grammar for the Swift programming language.", "main": "bindings/node/index.js", "scripts": { diff --git a/test-npm-package/package-lock.json b/test-npm-package/package-lock.json index b46f2066b..de0d4cc25 100644 --- a/test-npm-package/package-lock.json +++ b/test-npm-package/package-lock.json @@ -15,14 +15,13 @@ }, "..": { "name": "tree-sitter-swift", - "version": "0.1.2", + "version": "0.1.3", "hasInstallScript": true, "license": "MIT", "dependencies": { "@types/node": "^16.11.10", "nan": "^2.15.0", - "tree-sitter-cli": "^0.20.0", - "typescript": "^4.5.2" + "tree-sitter-cli": "^0.20.0" }, "devDependencies": { "node-gyp": "^8.4.1", @@ -450,9 +449,9 @@ ] }, "node_modules/simple-get": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.0.tgz", - "integrity": "sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA==", + "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", @@ -899,9 +898,9 @@ "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==" }, "simple-get": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.0.tgz", - "integrity": "sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA==", + "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", @@ -990,8 +989,7 @@ "nan": "^2.15.0", "node-gyp": "^8.4.1", "prettier": "2.3.2", - "tree-sitter-cli": "^0.20.0", - "typescript": "^4.5.2" + "tree-sitter-cli": "^0.20.0" } }, "tunnel-agent": { From 44ea67304edbd8f3e45dda20e464b9063cdf0a7a Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Mon, 7 Feb 2022 04:37:17 +0000 Subject: [PATCH 108/151] Updating top repository version --- script-data/top-repositories.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 74a63ef7a..894511227 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -39,5 +39,5 @@ MessageKit MessageKit/MessageKit 3.7.0 KeychainAccess kishikawakatsumi/KeychainAccess v4.2.2 Nuke kean/Nuke 10.7.1 Swinject Swinject/Swinject 2.8.1 -GRDB groue/GRDB.swift v5.20.0 0 2 -GRDB groue/GRDB.swift v5.20.0 1 2 +GRDB groue/GRDB.swift v5.21.0 0 2 +GRDB groue/GRDB.swift v5.21.0 1 2 From 656664f6c08649ab8d4b9f4a45dc40edc212d2b5 Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Wed, 16 Feb 2022 04:37:39 +0000 Subject: [PATCH 109/151] Updating top repository version --- script-data/top-repositories.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 894511227..476ed0980 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -21,7 +21,7 @@ SwiftLint realm/SwiftLint 0.46.2 0 2 SwiftLint realm/SwiftLint 0.46.2 1 2 ClashX yichengchen/clashX 1.90.0 Carthage Carthage/Carthage 0.38.0 -Rectangle rxhanson/Rectangle v0.50 +Rectangle rxhanson/Rectangle v0.51 PromiseKit mxcl/PromiseKit 6.16.3 Moya Moya/Moya 15.0.0 MonitorControl MonitorControl/MonitorControl v4.0.2 From eada2ccc4083c076041d01a394cdb600e8837aa7 Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Wed, 23 Feb 2022 04:37:40 +0000 Subject: [PATCH 110/151] Updating top repository version --- script-data/top-repositories.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 476ed0980..15e6a6df4 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -17,8 +17,8 @@ HeroTransitions HeroTransitions/Hero 1.6.1 Kingfisher onevcat/Kingfisher 7.1.2 shadowsocks shadowsocks/ShadowsocksX-NG v1.9.4 SnapKit SnapKit/SnapKit 5.0.1 -SwiftLint realm/SwiftLint 0.46.2 0 2 -SwiftLint realm/SwiftLint 0.46.2 1 2 +SwiftLint realm/SwiftLint 0.46.3 0 2 +SwiftLint realm/SwiftLint 0.46.3 1 2 ClashX yichengchen/clashX 1.90.0 Carthage Carthage/Carthage 0.38.0 Rectangle rxhanson/Rectangle v0.51 From bf473754b3ec51146bc21ed03e6f321792ae7343 Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Sun, 27 Feb 2022 04:37:39 +0000 Subject: [PATCH 111/151] Updating top repository version --- script-data/top-repositories.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 15e6a6df4..60337b0cb 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -14,7 +14,7 @@ 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.1 -Kingfisher onevcat/Kingfisher 7.1.2 +Kingfisher onevcat/Kingfisher 7.2.0 shadowsocks shadowsocks/ShadowsocksX-NG v1.9.4 SnapKit SnapKit/SnapKit 5.0.1 SwiftLint realm/SwiftLint 0.46.3 0 2 From 88a57865b3bcf80ce24e2e6d77c97b00061c20da Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Mon, 28 Feb 2022 04:38:43 +0000 Subject: [PATCH 112/151] Updating top repository version --- script-data/top-repositories.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 60337b0cb..45ec1af8d 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -21,8 +21,8 @@ SwiftLint realm/SwiftLint 0.46.3 0 2 SwiftLint realm/SwiftLint 0.46.3 1 2 ClashX yichengchen/clashX 1.90.0 Carthage Carthage/Carthage 0.38.0 -Rectangle rxhanson/Rectangle v0.51 -PromiseKit mxcl/PromiseKit 6.16.3 +Rectangle rxhanson/Rectangle v0.52 +PromiseKit mxcl/PromiseKit 6.17.0 Moya Moya/Moya 15.0.0 MonitorControl MonitorControl/MonitorControl v4.0.2 ObjectMapper tristanhimmelman/ObjectMapper 4.2.0 From 67c47187fb236bad208d2d8b19aab19c776b37b8 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sun, 27 Feb 2022 22:24:28 -0800 Subject: [PATCH 113/151] Wait for tree-sitter to exist before generating The `tree-sitter` command is not guaranteed to exist at the time that its `install.js` terminates. It may still be downloading the appropriate binary, or may not have marked it as executable. To work around this, we update our install script to wait for the file to be marked as executable before we run `tree-sitter generate`. This is a workaround for the real issue and can be removed once the real issue is fixed. Fixes #119 --- .github/workflows/check.yml | 3 +- package-lock.json | 23 ++-------- package.json | 6 +-- scripts/wait-for-tree-sitter.js | 77 +++++++++++++++++++++++++++++++++ 4 files changed, 86 insertions(+), 23 deletions(-) create mode 100644 scripts/wait-for-tree-sitter.js diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index f9bfea998..6f7da601d 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -34,4 +34,5 @@ jobs: env: PREFIX: /tmp - run: cargo test - - run: cd ./test-npm-package && npm test; cd .. + - 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/package-lock.json b/package-lock.json index 1c17b815e..e5fa9c32e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,9 +10,9 @@ "hasInstallScript": true, "license": "MIT", "dependencies": { - "@types/node": "^16.11.10", "nan": "^2.15.0", - "tree-sitter-cli": "^0.20.0" + "tree-sitter-cli": "^0.20.0", + "which": "2.0.2" }, "devDependencies": { "node-gyp": "^8.4.1", @@ -60,11 +60,6 @@ "node": ">= 6" } }, - "node_modules/@types/node": { - "version": "16.11.21", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.21.tgz", - "integrity": "sha512-Pf8M1XD9i1ksZEcCP8vuSNwooJ/bZapNmIzpmsMaL+jMI+8mEYU3PKvs+xDNuQcJWF/x24WzY4qxLtB0zNow9A==" - }, "node_modules/abbrev": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", @@ -474,8 +469,7 @@ "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "dev": true + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" }, "node_modules/lru-cache": { "version": "6.0.0", @@ -558,7 +552,6 @@ "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", "dev": true, "dependencies": { - "encoding": "^0.1.12", "minipass": "^3.1.0", "minipass-sized": "^1.0.3", "minizlib": "^2.0.0" @@ -1000,7 +993,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, "dependencies": { "isexe": "^2.0.0" }, @@ -1066,11 +1058,6 @@ "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", "dev": true }, - "@types/node": { - "version": "16.11.21", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.21.tgz", - "integrity": "sha512-Pf8M1XD9i1ksZEcCP8vuSNwooJ/bZapNmIzpmsMaL+jMI+8mEYU3PKvs+xDNuQcJWF/x24WzY4qxLtB0zNow9A==" - }, "abbrev": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", @@ -1409,8 +1396,7 @@ "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "dev": true + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" }, "lru-cache": { "version": "6.0.0", @@ -1801,7 +1787,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, "requires": { "isexe": "^2.0.0" } diff --git a/package.json b/package.json index cfadfb31f..9bfc4bf61 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "A tree-sitter grammar for the Swift programming language.", "main": "bindings/node/index.js", "scripts": { - "install": "tree-sitter generate", + "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", @@ -25,9 +25,9 @@ }, "homepage": "https://github.com/alex-pinkus/tree-sitter-swift#readme", "dependencies": { - "@types/node": "^16.11.10", "nan": "^2.15.0", - "tree-sitter-cli": "^0.20.0" + "tree-sitter-cli": "^0.20.0", + "which": "2.0.2" }, "devDependencies": { "node-gyp": "^8.4.1", diff --git a/scripts/wait-for-tree-sitter.js b/scripts/wait-for-tree-sitter.js new file mode 100644 index 000000000..5c226812a --- /dev/null +++ b/scripts/wait-for-tree-sitter.js @@ -0,0 +1,77 @@ +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(); From ca15b1af42fa210ddafc5550d8788ab3701062cd Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Tue, 1 Mar 2022 04:37:54 +0000 Subject: [PATCH 114/151] Updating top repository version --- script-data/top-repositories.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 45ec1af8d..6a0f9ff84 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -21,7 +21,7 @@ SwiftLint realm/SwiftLint 0.46.3 0 2 SwiftLint realm/SwiftLint 0.46.3 1 2 ClashX yichengchen/clashX 1.90.0 Carthage Carthage/Carthage 0.38.0 -Rectangle rxhanson/Rectangle v0.52 +Rectangle rxhanson/Rectangle v0.53 PromiseKit mxcl/PromiseKit 6.17.0 Moya Moya/Moya 15.0.0 MonitorControl MonitorControl/MonitorControl v4.0.2 From 9dde71da72fa626c3e7ab788349e5ee2ebf48986 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Mon, 14 Feb 2022 19:09:27 -0800 Subject: [PATCH 115/151] Support emojis in identifiers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Just like the Swift language itself, this does not treat every emoji as a valid identifier: an identifier cannot start with 0️⃣, for instance, since the first codepoint in that emoji is the number zero. Rather than matching Swift exactly, we opt for relative simplicity by relying on the emoji character classes added in https://github.com/tree-sitter/tree-sitter/pull/1660. This requires a `tree-sitter-cli` version bump to match, but also allows the grammar to be generated using an older cli (simply falling back to not having emojis). Fixes #60 --- corpus/emojis.txt | 95 +++ grammar.js | 41 +- package-lock.json | 1048 +------------------------------- package.json | 2 +- script-data/known_failures.txt | 1 - 5 files changed, 142 insertions(+), 1045 deletions(-) create mode 100644 corpus/emojis.txt diff --git a/corpus/emojis.txt b/corpus/emojis.txt new file mode 100644 index 000000000..bb9d0f6eb --- /dev/null +++ b/corpus/emojis.txt @@ -0,0 +1,95 @@ +================================================================================ +Emojis in variable names +================================================================================ + +let ⭐️ = "star" +let 🌙 = "moon" +let ☁️☀️☁️ = "clouds and sun" + +-------------------------------------------------------------------------------- + +(source_file + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (line_string_literal + (line_str_text))) + (property_declaration + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (line_string_literal + (line_str_text))) + (property_declaration + (value_binding_pattern + (non_binding_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 + (value_binding_pattern + (non_binding_pattern + (simple_identifier))) + (additive_expression + (simple_identifier) + (simple_identifier)))) diff --git a/grammar.js b/grammar.js index c778a208b..0685f294f 100644 --- a/grammar.js +++ b/grammar.js @@ -22,7 +22,7 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -var PRECS = { +const PRECS = { multiplication: 11, addition: 10, infix_operations: 9, @@ -59,13 +59,22 @@ var PRECS = { comment: -3, lambda: -3, }; -var DEC_DIGITS = token(sep1(/[0-9]+/, /_+/)); -var HEX_DIGITS = token(sep1(/[0-9a-fA-F]+/, /_+/)); -var OCT_DIGITS = token(sep1(/[0-7]+/, /_+/)); -var BIN_DIGITS = token(sep1(/[01]+/, /_+/)); -var REAL_EXPONENT = token(seq(/[eE]/, optional(/[+-]/), DEC_DIGITS)); -var LEXICAL_IDENTIFIER = /[_\p{XID_Start}][_\p{XID_Continue}]*/; -var CUSTOM_OPERATORS = token( +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}]*/; +} + +const CUSTOM_OPERATORS = token( choice( // https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html#ID418 // This supports a subset of the operators that Swift does but I'm really not concerned about the esoteric ones. @@ -1804,3 +1813,19 @@ function generate_pattern_matching_rule( .concat(expression_pattern); return seq(choice.apply(void 0, all_patterns), optional($._quest)); } + +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/package-lock.json b/package-lock.json index e5fa9c32e..cb90b4075 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,1030 +1,8 @@ { "name": "tree-sitter-swift", "version": "0.1.3", - "lockfileVersion": 2, + "lockfileVersion": 1, "requires": true, - "packages": { - "": { - "name": "tree-sitter-swift", - "version": "0.1.3", - "hasInstallScript": true, - "license": "MIT", - "dependencies": { - "nan": "^2.15.0", - "tree-sitter-cli": "^0.20.0", - "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==", - "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.1", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.1.tgz", - "integrity": "sha512-I0Gp4ThRp39TDnBAaZKiogvoE85MSeL6/ILZMXbzeEo8hUsudpVhEHRE4CU+Bk5QUaiMiDkD+ZIL3gT2zZ++wg==", - "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", @@ -1711,15 +689,6 @@ "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", @@ -1731,6 +700,15 @@ "strip-ansi": "^6.0.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" + } + }, "strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", @@ -1755,9 +733,9 @@ } }, "tree-sitter-cli": { - "version": "0.20.1", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.1.tgz", - "integrity": "sha512-I0Gp4ThRp39TDnBAaZKiogvoE85MSeL6/ILZMXbzeEo8hUsudpVhEHRE4CU+Bk5QUaiMiDkD+ZIL3gT2zZ++wg==" + "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", diff --git a/package.json b/package.json index 9bfc4bf61..0e7bb0074 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ "homepage": "https://github.com/alex-pinkus/tree-sitter-swift#readme", "dependencies": { "nan": "^2.15.0", - "tree-sitter-cli": "^0.20.0", + "tree-sitter-cli": "^0.20.6", "which": "2.0.2" }, "devDependencies": { diff --git a/script-data/known_failures.txt b/script-data/known_failures.txt index 960713ec7..5ea8e4339 100644 --- a/script-data/known_failures.txt +++ b/script-data/known_failures.txt @@ -1,5 +1,4 @@ firefox-ios/Shared/Functions.swift RxSwift/RxExample/RxExample/Examples/GitHubSearchRepositories/GitHubSearchRepositories.swift -RxSwift/Rx.playground/Pages/Transforming_Operators.xcplaygroundpage/Contents.swift SwiftLint/Source/SwiftLintFramework/Rules/Lint/ExpiringTodoRule.swift GRDB/GRDB/Core/Row.swift From bd60bdfce382cd3d62dc200d83a37fe31eff4754 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Thu, 3 Mar 2022 19:57:12 -0800 Subject: [PATCH 116/151] Fix out-of-date apt repositories when downloading valgrind --- scripts/test-with-memcheck.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/test-with-memcheck.sh b/scripts/test-with-memcheck.sh index f9724fdac..017d6a7ac 100755 --- a/scripts/test-with-memcheck.sh +++ b/scripts/test-with-memcheck.sh @@ -3,6 +3,7 @@ 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 From f8e72b4bd5acc090e65b45f50fff1c8cc0e940f4 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Thu, 3 Mar 2022 19:58:38 -0800 Subject: [PATCH 117/151] Bump version to 0.1.4 --- Cargo.toml | 2 +- Makefile | 2 +- README.md | 4 ++-- package-lock.json | 2 +- package.json | 2 +- test-npm-package/package-lock.json | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7fed422ef..d26798537 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-swift" description = "swift grammar for the tree-sitter parsing library" -version = "0.1.3" +version = "0.1.4" keywords = ["incremental", "parsing", "swift"] categories = ["parsing", "text-editors"] repository = "https://github.com/alex-pinkus/tree-sitter-swift" diff --git a/Makefile b/Makefile index 85b335407..babb4fd90 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 0.1.3 +VERSION := 0.1.4 # Repository SRC_DIR := src diff --git a/README.md b/README.md index 60dd9e02c..ef1592ec0 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To use this parser to parse Swift code, you'll want to depend on either the Rust To use the Rust crate, you'll add this to your `Cargo.toml`: ``` tree-sitter = "0.20.0" -tree-sitter-swift = "=0.1.3" +tree-sitter-swift = "=0.1.4" ``` Then you can use a `tree-sitter` parser with the language declared here: @@ -35,7 +35,7 @@ let tree = parser.parse(&my_source_code, None) To use this from NPM, you'll add similar dependencies to `package.json`: ``` "dependencies: { - "tree-sitter-swift": "0.1.3", + "tree-sitter-swift": "0.1.4", "tree-sitter": "^0.20.0" } ``` diff --git a/package-lock.json b/package-lock.json index cb90b4075..087613b2f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-swift", - "version": "0.1.3", + "version": "0.1.4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 0e7bb0074..e2e69bb74 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-swift", - "version": "0.1.3", + "version": "0.1.4", "description": "A tree-sitter grammar for the Swift programming language.", "main": "bindings/node/index.js", "scripts": { diff --git a/test-npm-package/package-lock.json b/test-npm-package/package-lock.json index de0d4cc25..3e782da2a 100644 --- a/test-npm-package/package-lock.json +++ b/test-npm-package/package-lock.json @@ -15,7 +15,7 @@ }, "..": { "name": "tree-sitter-swift", - "version": "0.1.3", + "version": "0.1.4", "hasInstallScript": true, "license": "MIT", "dependencies": { From 9191a29d5aa46eeecea27d0dfed2f7bea29e967d Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Tue, 8 Mar 2022 04:39:01 +0000 Subject: [PATCH 118/151] Updating top repository version --- script-data/top-repositories.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 6a0f9ff84..eee27c582 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -17,8 +17,8 @@ HeroTransitions HeroTransitions/Hero 1.6.1 Kingfisher onevcat/Kingfisher 7.2.0 shadowsocks shadowsocks/ShadowsocksX-NG v1.9.4 SnapKit SnapKit/SnapKit 5.0.1 -SwiftLint realm/SwiftLint 0.46.3 0 2 -SwiftLint realm/SwiftLint 0.46.3 1 2 +SwiftLint realm/SwiftLint 0.46.4 0 2 +SwiftLint realm/SwiftLint 0.46.4 1 2 ClashX yichengchen/clashX 1.90.0 Carthage Carthage/Carthage 0.38.0 Rectangle rxhanson/Rectangle v0.53 From 5c10525c3c0b8db05b2b46560036a8af282a52c5 Mon Sep 17 00:00:00 2001 From: Matt <85322+mattmassicotte@users.noreply.github.com> Date: Tue, 8 Mar 2022 11:55:01 -0500 Subject: [PATCH 119/151] Use generic match predicate --- queries/highlights.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/queries/highlights.scm b/queries/highlights.scm index e708c5eb7..76f2881c9 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -59,7 +59,7 @@ (navigation_suffix (simple_identifier) @function))) ((navigation_expression (simple_identifier) @type) ; SomeType.method(): highlight SomeType as a type - (#lua-match? @type "^[A-Z]")) + (#match? @type "^[A-Z]")) (directive) @function.macro (diagnostic) @function.macro From ede22f673dfc2f45cfef7ca0168e62af5cac5fd5 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Tue, 8 Mar 2022 21:52:55 -0800 Subject: [PATCH 120/151] Manually inline `_locally_permitted_modifiers` See https://github.com/returntocorp/ocaml-tree-sitter-semgrep/issues/286 When generating a simplified grammar, the `ocaml-tree-sitter` code generator forces all hidden nodes to be visible. It appears that hidden nodes automatically get marked as `inline`, and that without that auto-inlining, the `_locally_permitted_modifiers` rule causes a conflict. Rather than making the semgrep folks work around their conflict, we just check the `inline` declaration into the grammar itself so that it sticks around in the simplified grammar. --- grammar.js | 1 + 1 file changed, 1 insertion(+) diff --git a/grammar.js b/grammar.js index 0685f294f..9833f6fde 100644 --- a/grammar.js +++ b/grammar.js @@ -214,6 +214,7 @@ module.exports = grammar({ $._as_bang_custom, $._async_keyword_custom, ], + inline: ($) => [$._locally_permitted_modifiers], rules: { //////////////////////////////// // File Structure From a5f067a81c88153d2c2aca28d60a1813cc106a40 Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Sun, 13 Mar 2022 04:39:42 +0000 Subject: [PATCH 121/151] Updating top repository version --- script-data/top-repositories.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index eee27c582..4202cbb15 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -1,6 +1,6 @@ Alamofire Alamofire/Alamofire 5.5.0 iina iina/iina v1.2.0 -Charts danielgindi/Charts v4.0.1 +Charts danielgindi/Charts v4.0.2 lottie-ios airbnb/lottie-ios 3.3.0 vapor vapor/vapor 3.3.3 SwiftyJSON SwiftyJSON/SwiftyJSON 5.0.1 From 30ab5e1ac37d027f1d84cfb62d719559e34cf851 Mon Sep 17 00:00:00 2001 From: Nat Mote Date: Tue, 15 Mar 2022 09:56:58 -0700 Subject: [PATCH 122/151] Remove duplicate grammar fragment for computed properties --- corpus/classes.txt | 60 ++++++++++++++++++++++++---------------------- grammar.js | 9 +------ 2 files changed, 33 insertions(+), 36 deletions(-) diff --git a/corpus/classes.txt b/corpus/classes.txt index 96e1a9e11..38d8a3b91 100755 --- a/corpus/classes.txt +++ b/corpus/classes.txt @@ -234,24 +234,11 @@ class GenericSubscript { (optional_type (user_type (type_identifier))) - (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 + (computed_property + (computed_getter + (getter_specifier) + (statements + (control_transfer_statement (call_expression (simple_identifier) (call_suffix @@ -260,8 +247,22 @@ class GenericSubscript { (navigation_expression (simple_identifier) (navigation_suffix - (simple_identifier)))))))) - (simple_identifier))))))) + (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 @@ -284,9 +285,10 @@ class GenericSubscript { (type_arguments (user_type (type_identifier)))) - (statements - (control_transfer_statement - (simple_identifier))))))) + (computed_property + (statements + (control_transfer_statement + (simple_identifier)))))))) ================================================================================ Subscript with multiple arguments @@ -329,9 +331,10 @@ class Subscriptable { (simple_identifier)) (user_type (type_identifier))))) - (statements - (control_transfer_statement - (simple_identifier))))))) + (computed_property + (statements + (control_transfer_statement + (simple_identifier)))))))) ================================================================================ Inheritance @@ -743,8 +746,9 @@ public protocol Indexable { (optional_type (user_type (type_identifier))) - (computed_getter - (getter_specifier)))))) + (computed_property + (computed_getter + (getter_specifier))))))) ================================================================================ Typealias diff --git a/grammar.js b/grammar.js index 9833f6fde..0e014e312 100644 --- a/grammar.js +++ b/grammar.js @@ -1514,14 +1514,7 @@ module.exports = grammar({ ) ), optional($.type_constraints), - "{", - choice( - optional($.statements), - repeat( - choice($.computed_getter, $.computed_setter, $.computed_modify) - ) - ), - "}" + $.computed_property ) ), computed_property: ($) => From 680c608b2447a3452fbe2e986081617839e2e663 Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Tue, 22 Mar 2022 04:38:06 +0000 Subject: [PATCH 123/151] Updating top repository version --- script-data/top-repositories.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 4202cbb15..3ff021a95 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -19,7 +19,7 @@ shadowsocks shadowsocks/ShadowsocksX-NG v1.9.4 SnapKit SnapKit/SnapKit 5.0.1 SwiftLint realm/SwiftLint 0.46.4 0 2 SwiftLint realm/SwiftLint 0.46.4 1 2 -ClashX yichengchen/clashX 1.90.0 +ClashX yichengchen/clashX 1.91.0 Carthage Carthage/Carthage 0.38.0 Rectangle rxhanson/Rectangle v0.53 PromiseKit mxcl/PromiseKit 6.17.0 From b5105ae530f50789a4a2ec6801857ecac23678fb Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Wed, 23 Mar 2022 04:38:34 +0000 Subject: [PATCH 124/151] Updating top repository version --- script-data/top-repositories.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 3ff021a95..12f4afab0 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -19,7 +19,7 @@ shadowsocks shadowsocks/ShadowsocksX-NG v1.9.4 SnapKit SnapKit/SnapKit 5.0.1 SwiftLint realm/SwiftLint 0.46.4 0 2 SwiftLint realm/SwiftLint 0.46.4 1 2 -ClashX yichengchen/clashX 1.91.0 +ClashX yichengchen/clashX 1.91.1 Carthage Carthage/Carthage 0.38.0 Rectangle rxhanson/Rectangle v0.53 PromiseKit mxcl/PromiseKit 6.17.0 @@ -39,5 +39,5 @@ MessageKit MessageKit/MessageKit 3.7.0 KeychainAccess kishikawakatsumi/KeychainAccess v4.2.2 Nuke kean/Nuke 10.7.1 Swinject Swinject/Swinject 2.8.1 -GRDB groue/GRDB.swift v5.21.0 0 2 -GRDB groue/GRDB.swift v5.21.0 1 2 +GRDB groue/GRDB.swift v5.22.0 0 2 +GRDB groue/GRDB.swift v5.22.0 1 2 From e78aad6598923e522bb985efbd8a47b50875fb8b Mon Sep 17 00:00:00 2001 From: Nat Mote Date: Thu, 24 Mar 2022 16:56:28 -0700 Subject: [PATCH 125/151] Remove duplicate grammar fragment for binding pattern kind --- corpus/statements.txt | 12 ++++++++++++ grammar.js | 5 +++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/corpus/statements.txt b/corpus/statements.txt index b0a7ba3c9..265d9fa38 100755 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -101,6 +101,7 @@ for var value in values where value.isExcellent() { (integer_literal) (simple_identifier)) (for_statement + (binding_pattern_kind) (non_binding_pattern (simple_identifier)) (simple_identifier) @@ -137,6 +138,7 @@ outerLoop: for outerObject in dataArray { (source_file (for_statement + (binding_pattern_kind) (non_binding_pattern (non_binding_pattern (simple_identifier)) @@ -144,6 +146,7 @@ outerLoop: for outerObject in dataArray { (type_identifier))) (simple_identifier)) (for_statement + (binding_pattern_kind) (non_binding_pattern (non_binding_pattern (simple_identifier)) @@ -287,6 +290,7 @@ case let .isExecutable(path?): (simple_identifier) (switch_entry (switch_pattern + (binding_pattern_kind) (non_binding_pattern (simple_identifier) (wildcard_pattern) @@ -317,6 +321,7 @@ case let .isExecutable(path?): (switch_entry (switch_pattern (simple_identifier) + (binding_pattern_kind) (non_binding_pattern (simple_identifier))) (statements @@ -327,6 +332,7 @@ case let .isExecutable(path?): (simple_identifier)))))) (switch_entry (switch_pattern + (binding_pattern_kind) (non_binding_pattern (simple_identifier) (simple_identifier))) @@ -397,6 +403,7 @@ do { (catch_keyword) (binding_pattern (binding_pattern + (binding_pattern_kind) (non_binding_pattern (simple_identifier))) (user_type @@ -411,6 +418,7 @@ do { (catch_keyword) (binding_pattern (binding_pattern + (binding_pattern_kind) (non_binding_pattern (simple_identifier))) (user_type @@ -426,6 +434,7 @@ do { (catch_block (catch_keyword) (binding_pattern + (binding_pattern_kind) (non_binding_pattern (user_type (type_identifier)) @@ -438,6 +447,7 @@ do { (type_identifier)) (simple_identifier) (simple_identifier) + (binding_pattern_kind) (non_binding_pattern (simple_identifier)))) (catch_block @@ -724,6 +734,7 @@ guard case justIdentifier = bound else { } (binding_pattern (simple_identifier) (simple_identifier) + (binding_pattern_kind) (non_binding_pattern (simple_identifier))) (call_expression @@ -783,6 +794,7 @@ guard case let size: Int = variable.size else { (source_file (guard_statement (binding_pattern + (binding_pattern_kind) (non_binding_pattern (simple_identifier))) (type_annotation diff --git a/grammar.js b/grammar.js index 0e014e312..bb0cde2d5 100644 --- a/grammar.js +++ b/grammar.js @@ -1629,6 +1629,7 @@ module.exports = grammar({ optional($.type_annotation) ), wildcard_pattern: ($) => "_", + binding_pattern_kind: ($) => choice("var", "let"), value_binding_pattern: ($) => prec.left( choice( @@ -1785,8 +1786,8 @@ function generate_pattern_matching_rule( generate_type_casting_pattern($, allows_binding), ]; var binding_pattern_prefix = allows_case_keyword - ? seq(optional("case"), choice("var", "let")) - : choice("var", "let"); + ? seq(optional("case"), $.binding_pattern_kind) + : $.binding_pattern_kind; var binding_pattern_if_allowed = allows_binding ? [ seq( From 8f559f00cd16bad9ec982b9067c4103e7dc89ebf Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Thu, 24 Mar 2022 04:38:57 +0000 Subject: [PATCH 126/151] Updating top repository version --- script-data/top-repositories.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 12f4afab0..7048cd516 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -17,8 +17,8 @@ HeroTransitions HeroTransitions/Hero 1.6.1 Kingfisher onevcat/Kingfisher 7.2.0 shadowsocks shadowsocks/ShadowsocksX-NG v1.9.4 SnapKit SnapKit/SnapKit 5.0.1 -SwiftLint realm/SwiftLint 0.46.4 0 2 -SwiftLint realm/SwiftLint 0.46.4 1 2 +SwiftLint realm/SwiftLint 0.47.0 0 2 +SwiftLint realm/SwiftLint 0.47.0 1 2 ClashX yichengchen/clashX 1.91.1 Carthage Carthage/Carthage 0.38.0 Rectangle rxhanson/Rectangle v0.53 From f513c817a596a4bdbb40569db55081ac340f178f Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Sat, 26 Mar 2022 14:43:15 -0700 Subject: [PATCH 127/151] Add a field name for bound identifiers This makes obsolete the overly-broad `@variable` rule on `simple_identifier`, while still marking bound variable names as variables. --- grammar.js | 2 +- queries/highlights.scm | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/grammar.js b/grammar.js index bb0cde2d5..e75396a90 100644 --- a/grammar.js +++ b/grammar.js @@ -1801,7 +1801,7 @@ function generate_pattern_matching_rule( : generate_case_pattern($, allows_binding); var expression_pattern = allows_expressions ? $._expression - : $.simple_identifier; + : field("bound_identifier", $.simple_identifier); var all_patterns = always_allowed_patterns .concat(binding_pattern_if_allowed) .concat(case_pattern) diff --git a/queries/highlights.scm b/queries/highlights.scm index 76f2881c9..9109cae2c 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -28,6 +28,7 @@ (type_parameter (type_identifier) @parameter) (inheritance_constraint (identifier (simple_identifier) @parameter)) (equality_constraint (identifier (simple_identifier) @parameter)) +(non_binding_pattern bound_identifier: (simple_identifier)) @variable [ "typealias" From 77091bc38ed2076ab11f1ce209cbe5c74f4bc647 Mon Sep 17 00:00:00 2001 From: Marcin Krzyzanowski Date: Tue, 22 Mar 2022 11:11:26 +0100 Subject: [PATCH 128/151] Remove simple_identifier variable --- queries/highlights.scm | 1 - 1 file changed, 1 deletion(-) diff --git a/queries/highlights.scm b/queries/highlights.scm index 9109cae2c..b14c1569f 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -3,7 +3,6 @@ ; Identifiers (attribute) @variable -(simple_identifier) @variable (type_identifier) @type (self_expression) @variable.builtin From 669cbd51261448ce21ce02154fbf990b626cadd6 Mon Sep 17 00:00:00 2001 From: Marcin Krzyzanowski Date: Tue, 22 Mar 2022 11:11:45 +0100 Subject: [PATCH 129/151] Add some keyword --- queries/highlights.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/queries/highlights.scm b/queries/highlights.scm index b14c1569f..a2862fab1 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -37,6 +37,7 @@ "protocol" "extension" "indirect" + "some" ] @keyword [ From d5806eff60f55fa72d51a803c4aceb5a7c4383fb Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Sun, 27 Mar 2022 04:38:13 +0000 Subject: [PATCH 130/151] Updating top repository version --- script-data/top-repositories.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 7048cd516..ac8c83453 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -39,5 +39,5 @@ MessageKit MessageKit/MessageKit 3.7.0 KeychainAccess kishikawakatsumi/KeychainAccess v4.2.2 Nuke kean/Nuke 10.7.1 Swinject Swinject/Swinject 2.8.1 -GRDB groue/GRDB.swift v5.22.0 0 2 -GRDB groue/GRDB.swift v5.22.0 1 2 +GRDB groue/GRDB.swift v5.22.1 0 2 +GRDB groue/GRDB.swift v5.22.1 1 2 From 3ad615cfefde53561bc81440cc41fda21f4c3101 Mon Sep 17 00:00:00 2001 From: Nat Mote Date: Mon, 28 Mar 2022 12:40:48 -0700 Subject: [PATCH 131/151] Remove duplicate grammar fragment for range operators --- grammar.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/grammar.js b/grammar.js index e75396a90..17c4e20a4 100644 --- a/grammar.js +++ b/grammar.js @@ -469,10 +469,11 @@ module.exports = grammar({ prec.right( PRECS.range, seq( - choice($._open_ended_range_operator, $._three_dot_operator), + $._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, @@ -540,7 +541,7 @@ module.exports = grammar({ field("start", $._expression), field( "op", - choice($._open_ended_range_operator, $._three_dot_operator) + $._range_operator ), field("end", $._expression) ) From 1cd08bae74c5d1a72e3dea6cdb42ad79e34204f1 Mon Sep 17 00:00:00 2001 From: Nat Mote Date: Mon, 28 Mar 2022 13:22:20 -0700 Subject: [PATCH 132/151] Run prettier --- grammar.js | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/grammar.js b/grammar.js index 17c4e20a4..855564999 100644 --- a/grammar.js +++ b/grammar.js @@ -473,7 +473,8 @@ module.exports = grammar({ prec.right(PRECS.range_suffix, field("end", $._expression)) ) ), - _range_operator: ($) => choice($._open_ended_range_operator, $._three_dot_operator), + _range_operator: ($) => + choice($._open_ended_range_operator, $._three_dot_operator), open_end_range_expression: ($) => prec.right( PRECS.range, @@ -539,10 +540,7 @@ module.exports = grammar({ PRECS.range, seq( field("start", $._expression), - field( - "op", - $._range_operator - ), + field("op", $._range_operator), field("end", $._expression) ) ), From c7ffd62d5713a8e43ae3d325c5e5827087f99cf9 Mon Sep 17 00:00:00 2001 From: Nat Mote Date: Mon, 28 Mar 2022 13:39:54 -0700 Subject: [PATCH 133/151] Refactor availability_argument rule --- grammar.js | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/grammar.js b/grammar.js index e75396a90..982f48e66 100644 --- a/grammar.js +++ b/grammar.js @@ -1117,14 +1117,9 @@ module.exports = grammar({ ) ), availability_condition: ($) => - seq( - "#available", - "(", - sep1(choice($._availability_argument, "*"), ","), - ")" - ), + seq("#available", "(", sep1($._availability_argument, ","), ")"), _availability_argument: ($) => - seq($.identifier, sep1($.integer_literal, ".")), + choice(seq($.identifier, sep1($.integer_literal, ".")), "*"), //////////////////////////////// // Declarations - https://docs.swift.org/swift-book/ReferenceManual/Declarations.html //////////////////////////////// From 76c7315627c9db27e07aceb72c9a190a27ad3ba3 Mon Sep 17 00:00:00 2001 From: Nat Mote Date: Mon, 28 Mar 2022 15:11:20 -0700 Subject: [PATCH 134/151] Factor out enum_entry_suffix rule --- grammar.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/grammar.js b/grammar.js index 982f48e66..7d5e96609 100644 --- a/grammar.js +++ b/grammar.js @@ -1432,17 +1432,17 @@ module.exports = grammar({ sep1( seq( field("name", $.simple_identifier), - optional( - choice( - field("data_contents", $.enum_type_parameters), - seq($._equal_sign, field("raw_value", $._expression)) - ) - ) + 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( "(", From 40e9c9405070ae4085613440303ccd7d0765f5d4 Mon Sep 17 00:00:00 2001 From: Nat Mote Date: Tue, 29 Mar 2022 13:50:30 -0700 Subject: [PATCH 135/151] Remove duplicate equality_expression entry in binary_expression rule --- grammar.js | 1 - 1 file changed, 1 deletion(-) diff --git a/grammar.js b/grammar.js index 2378aba30..bc2382745 100644 --- a/grammar.js +++ b/grammar.js @@ -512,7 +512,6 @@ module.exports = grammar({ $.check_expression, $.equality_expression, $.comparison_expression, - $.equality_expression, $.conjunction_expression, $.disjunction_expression, $.bitwise_operation From 6b6998d35b9c59bdf5bc97bbf9643fea2f117b1d Mon Sep 17 00:00:00 2001 From: Matt <85322+mattmassicotte@users.noreply.github.com> Date: Wed, 30 Mar 2022 06:13:09 -0400 Subject: [PATCH 136/151] Standardized makefile and c bindings --- .gitignore | 3 ++- Makefile | 44 ++++++++++++++++++++++++------------ bindings/c/tree-sitter.pc.in | 2 +- 3 files changed, 33 insertions(+), 16 deletions(-) diff --git a/.gitignore b/.gitignore index e3423bde1..b7f9dd0a4 100644 --- a/.gitignore +++ b/.gitignore @@ -10,4 +10,5 @@ Cargo.lock *.dylib *.so *.o -bindings/c/*.h \ No newline at end of file +bindings/c/*.h +bindings/c/tree-sitter-*.pc diff --git a/Makefile b/Makefile index babb4fd90..fa7e0f6ec 100644 --- a/Makefile +++ b/Makefile @@ -3,9 +3,21 @@ VERSION := 0.1.4 # Repository SRC_DIR := src -PARSER_REPO_URL ?= $(shell git -C $(SRC_DIR) remote get-url origin) -$(eval PARSER_NAME=$(shell basename $(PARSER_REPO_URL) | cut -d '-' -f3 | sed 's#.git##' )) -UPPER_PARSER_NAME := $(shell echo $(PARSER_NAME) | tr a-z A-Z) +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 @@ -60,7 +72,7 @@ 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/tree-sitter-$(PARSER_NAME).h +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 $@ $^ @@ -70,11 +82,20 @@ libtree-sitter-$(PARSER_NAME).$(SOEXTVER): $(OBJ) ln -sf $@ libtree-sitter-$(PARSER_NAME).$(SOEXT) ln -sf $@ libtree-sitter-$(PARSER_NAME).$(SOEXTVER_MAJOR) -bindings/c/tree-sitter-$(PARSER_NAME).h: +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 @@ -82,17 +103,12 @@ install: all 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/tree-sitter-$(PARSER_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/ + install -m644 bindings/c/$(PARSER_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/ install -d '$(DESTDIR)$(PCLIBDIR)' - 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|@PARSERREPOURL@|$(PARSER_REPO_URL)|' \ - bindings/c/tree-sitter.pc.in > '$(DESTDIR)$(PCLIBDIR)'/tree-sitter-$(PARSER_NAME).pc + install -m644 bindings/c/tree-sitter-$(PARSER_NAME).pc '$(DESTDIR)$(PCLIBDIR)'/ 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) bindings/c/tree-sitter-$(PARSER_NAME).h + 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/bindings/c/tree-sitter.pc.in b/bindings/c/tree-sitter.pc.in index 8c2baa401..80d60b6db 100644 --- a/bindings/c/tree-sitter.pc.in +++ b/bindings/c/tree-sitter.pc.in @@ -5,7 +5,7 @@ additionallibs=@ADDITIONALLIBS@ Name: tree-sitter-@PARSERNAME@ Description: A tree-sitter grammar for the @PARSERNAME@ programming language. -URL: @PARSERREPOURL@ +URL: @PARSERURL@ Version: @VERSION@ Libs: -L${libdir} ${additionallibs} -ltree-sitter-@PARSERNAME@ Cflags: -I${includedir} From 21bb67e87a2a2a0b13853484b8c4bdaf19a04a1f Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Sun, 3 Apr 2022 04:38:49 +0000 Subject: [PATCH 137/151] Updating top repository version --- script-data/top-repositories.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index ac8c83453..cbefb92dc 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -39,5 +39,5 @@ MessageKit MessageKit/MessageKit 3.7.0 KeychainAccess kishikawakatsumi/KeychainAccess v4.2.2 Nuke kean/Nuke 10.7.1 Swinject Swinject/Swinject 2.8.1 -GRDB groue/GRDB.swift v5.22.1 0 2 -GRDB groue/GRDB.swift v5.22.1 1 2 +GRDB groue/GRDB.swift v5.22.2 0 2 +GRDB groue/GRDB.swift v5.22.2 1 2 From 154f0368107ffa77eece93cbcb51b7fd49cc1055 Mon Sep 17 00:00:00 2001 From: resolritter Date: Wed, 6 Apr 2022 01:26:10 -0300 Subject: [PATCH 138/151] fix hang for incomplete raw strings --- corpus/literals.txt | 18 ++++++++++++++++++ src/scanner.c | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/corpus/literals.txt b/corpus/literals.txt index 97ce6d283..56fb900e3 100755 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -264,6 +264,24 @@ let _ = ##"Hello, so-called "world"!"## (raw_string_literal (raw_str_end_part)))) +================================================================================ +Doesn't hang for incomplete raw strings (issue #146) +================================================================================ + +let _ = #"Foo" + +--- + +(source_file + (property_declaration + (value_binding_pattern + (non_binding_pattern + (wildcard_pattern))) + (ERROR + (UNEXPECTED '"')) + (line_string_literal + (line_str_text)))) + ================================================================================ Raw strings with interpolation ================================================================================ diff --git a/src/scanner.c b/src/scanner.c index 9f1869666..0dec24335 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -512,7 +512,7 @@ static bool eat_raw_str_part( 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 != '#') { + while (lexer->lookahead != '#' && lexer->lookahead != '\0') { last_char = lexer->lookahead; advance(lexer); if (last_char != '\\') { From 897df54ad1b2d103dcab3df94f335fceefa230dc Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Mon, 11 Apr 2022 04:41:02 +0000 Subject: [PATCH 139/151] Updating top repository version --- script-data/top-repositories.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index cbefb92dc..b8b19f8e1 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -14,7 +14,7 @@ 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.1 -Kingfisher onevcat/Kingfisher 7.2.0 +Kingfisher onevcat/Kingfisher 7.2.1 shadowsocks shadowsocks/ShadowsocksX-NG v1.9.4 SnapKit SnapKit/SnapKit 5.0.1 SwiftLint realm/SwiftLint 0.47.0 0 2 From 1ded93fe49fc8d701c5d511ac5c766bcc3cfec03 Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Thu, 14 Apr 2022 04:36:25 +0000 Subject: [PATCH 140/151] Updating top repository version --- script-data/top-repositories.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index b8b19f8e1..9623004c9 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -1,4 +1,4 @@ -Alamofire Alamofire/Alamofire 5.5.0 +Alamofire Alamofire/Alamofire 5.6.0 iina iina/iina v1.2.0 Charts danielgindi/Charts v4.0.2 lottie-ios airbnb/lottie-ios 3.3.0 From 06250ce807a72acf103f61e7bcbfa53d3a3b634a Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Thu, 14 Apr 2022 20:29:50 -0700 Subject: [PATCH 141/151] Commit generated grammar on an isolated branch Certain consumers of tree-sitter do not wish to take a dependency on the CLI in order to generate their grammars. Long-term, those consumers will be able to use packaging systems like tspm or obtain grammars from github actions. In the short term, though, not packaging the grammar means that there is no way for them to consume it. This creates a GitHub action that will push the static grammar to an isolated branch of this repository, allowing those systems to use GitHub as a kind of hosting system for grammar artifacts. We push the grammar on creation of a new ref to keep the number of deltas relatively low. --- .github/workflows/generate-static-grammar.yml | 15 +++++++ scripts/write-generated-grammar.sh | 40 +++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 .github/workflows/generate-static-grammar.yml create mode 100755 scripts/write-generated-grammar.sh diff --git a/.github/workflows/generate-static-grammar.yml b/.github/workflows/generate-static-grammar.yml new file mode 100644 index 000000000..3dddb57f7 --- /dev/null +++ b/.github/workflows/generate-static-grammar.yml @@ -0,0 +1,15 @@ +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/scripts/write-generated-grammar.sh b/scripts/write-generated-grammar.sh new file mode 100755 index 000000000..8181b398f --- /dev/null +++ b/scripts/write-generated-grammar.sh @@ -0,0 +1,40 @@ +#!/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 test + +# 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 corpus +git add queries +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!" From 9c6c2b41d2563464c3d2e1e8a4eed2be2763b56a Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Thu, 14 Apr 2022 21:37:54 -0700 Subject: [PATCH 142/151] 0.2.0 release --- Cargo.toml | 2 +- Makefile | 2 +- README.md | 4 ++-- package-lock.json | 2 +- package.json | 2 +- test-npm-package/package-lock.json | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d26798537..940bbbb87 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-swift" description = "swift grammar for the tree-sitter parsing library" -version = "0.1.4" +version = "0.2.0" keywords = ["incremental", "parsing", "swift"] categories = ["parsing", "text-editors"] repository = "https://github.com/alex-pinkus/tree-sitter-swift" diff --git a/Makefile b/Makefile index fa7e0f6ec..377672a76 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 0.1.4 +VERSION := 0.2.0 # Repository SRC_DIR := src diff --git a/README.md b/README.md index ef1592ec0..0fd4b6b22 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To use this parser to parse Swift code, you'll want to depend on either the Rust To use the Rust crate, you'll add this to your `Cargo.toml`: ``` tree-sitter = "0.20.0" -tree-sitter-swift = "=0.1.4" +tree-sitter-swift = "=0.2.0" ``` Then you can use a `tree-sitter` parser with the language declared here: @@ -35,7 +35,7 @@ let tree = parser.parse(&my_source_code, None) To use this from NPM, you'll add similar dependencies to `package.json`: ``` "dependencies: { - "tree-sitter-swift": "0.1.4", + "tree-sitter-swift": "0.2.0", "tree-sitter": "^0.20.0" } ``` diff --git a/package-lock.json b/package-lock.json index 087613b2f..ed2ac3b64 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-swift", - "version": "0.1.4", + "version": "0.2.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index e2e69bb74..31b42da78 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-swift", - "version": "0.1.4", + "version": "0.2.0", "description": "A tree-sitter grammar for the Swift programming language.", "main": "bindings/node/index.js", "scripts": { diff --git a/test-npm-package/package-lock.json b/test-npm-package/package-lock.json index 3e782da2a..2c1000b79 100644 --- a/test-npm-package/package-lock.json +++ b/test-npm-package/package-lock.json @@ -15,7 +15,7 @@ }, "..": { "name": "tree-sitter-swift", - "version": "0.1.4", + "version": "0.2.0", "hasInstallScript": true, "license": "MIT", "dependencies": { From bfde8a81c18a1a771330baa1e761d9c90b53e5ab Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Thu, 14 Apr 2022 21:44:01 -0700 Subject: [PATCH 143/151] Use test-ci when validating generated grammar --- scripts/write-generated-grammar.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/write-generated-grammar.sh b/scripts/write-generated-grammar.sh index 8181b398f..ae6436459 100755 --- a/scripts/write-generated-grammar.sh +++ b/scripts/write-generated-grammar.sh @@ -17,7 +17,7 @@ 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 test +npm run test-ci # 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. From b219297b69837a5d55f1235236c6f77b65f8b0ab Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Sun, 17 Apr 2022 04:39:33 +0000 Subject: [PATCH 144/151] Updating top repository version --- script-data/top-repositories.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 9623004c9..b9860257f 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -39,5 +39,5 @@ MessageKit MessageKit/MessageKit 3.7.0 KeychainAccess kishikawakatsumi/KeychainAccess v4.2.2 Nuke kean/Nuke 10.7.1 Swinject Swinject/Swinject 2.8.1 -GRDB groue/GRDB.swift v5.22.2 0 2 -GRDB groue/GRDB.swift v5.22.2 1 2 +GRDB groue/GRDB.swift v5.23.0 0 2 +GRDB groue/GRDB.swift v5.23.0 1 2 From 0f80c7a8b4448b7ca5169b18223d5eec43c97552 Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Mon, 18 Apr 2022 04:44:23 +0000 Subject: [PATCH 145/151] Updating top repository version --- script-data/top-repositories.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index b9860257f..dad03a1a2 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -1,4 +1,4 @@ -Alamofire Alamofire/Alamofire 5.6.0 +Alamofire Alamofire/Alamofire 5.6.1 iina iina/iina v1.2.0 Charts danielgindi/Charts v4.0.2 lottie-ios airbnb/lottie-ios 3.3.0 From d1f56304eee834316302aa542903f039267a8d69 Mon Sep 17 00:00:00 2001 From: Ameya Ketkar <94497232+ketkarameya@users.noreply.github.com> Date: Tue, 19 Apr 2022 21:59:45 -0700 Subject: [PATCH 146/151] Adding fix for the incorrectly parsed conjunction expression --- corpus/expressions.txt | 28 ++++++++++++++++++++++++++++ corpus/statements.txt | 25 +++++++++++++++++++++++++ grammar.js | 26 ++++++++++++++++++-------- 3 files changed, 71 insertions(+), 8 deletions(-) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 9370d9c04..ef9b5a230 100755 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -69,6 +69,34 @@ a (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 ================================================================================ diff --git a/corpus/statements.txt b/corpus/statements.txt index 265d9fa38..0daedcabe 100755 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -685,6 +685,31 @@ else if bar { (if_statement (simple_identifier)))) +================================================================================ +If try +================================================================================ + + if try limit == nil && singleResult && !expectsSingleResult { + return a + } + +-------------------------------------------------------------------------------- + +(source_file + (if_statement + (conjunction_expression + (try_expression + (equality_expression + (simple_identifier))) + (conjunction_expression + (simple_identifier) + (prefix_expression + (bang) + (simple_identifier)))) + (statements + (control_transfer_statement + (simple_identifier))))) + ================================================================================ Guard statements ================================================================================ diff --git a/grammar.js b/grammar.js index bc2382745..16ea43fa6 100644 --- a/grammar.js +++ b/grammar.js @@ -53,7 +53,7 @@ const PRECS = { try: -2, call_suffix: -2, range_suffix: -2, - ternary_suffix: -2, + ternary_binary_suffix: -2, await: -2, assignment: -3, comment: -3, @@ -123,7 +123,7 @@ module.exports = grammar({ // 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_call_suffix], + [$.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 @@ -593,7 +593,16 @@ module.exports = grammar({ seq( field("lhs", $._expression), field("op", $._conjunction_operator), - field("rhs", $._expression) + prec.left( + PRECS.ternary_binary_suffix, + field( + "rhs", + choice( + $._expression, + alias($.expr_hack_at_ternary_binary_call, $.call_expression) + ) + ) + ) ) ), disjunction_expression: ($) => @@ -688,6 +697,7 @@ module.exports = grammar({ // 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 @@ -726,23 +736,23 @@ module.exports = grammar({ field("if_true", $._expression), ":", prec.left( - PRECS.ternary_suffix, + PRECS.ternary_binary_suffix, field( "if_false", choice( $._expression, - alias($.expr_hack_at_ternary_call, $.call_expression) + alias($.expr_hack_at_ternary_binary_call, $.call_expression) ) ) ) ) ), - expr_hack_at_ternary_call: ($) => + expr_hack_at_ternary_binary_call: ($) => seq( $._expression, - alias($.expr_hack_at_ternary_call_suffix, $.call_suffix) + alias($.expr_hack_at_ternary_binary_call_suffix, $.call_suffix) ), - expr_hack_at_ternary_call_suffix: ($) => + expr_hack_at_ternary_binary_call_suffix: ($) => prec(PRECS.call_suffix, $.value_arguments), call_expression: ($) => prec(PRECS.call, seq($._expression, $.call_suffix)), _primary_expression: ($) => From edd2f25134860a557b178cb8807863eb5a69aeb9 Mon Sep 17 00:00:00 2001 From: Alex Pinkus Date: Tue, 19 Apr 2022 21:58:12 -0700 Subject: [PATCH 147/151] Fix hang when the last line is a comment Fixes #159 This was the same problem as #146, where there was a `while` loop in the custom scanner that terminated on newlines but not on EOF. To fix, we just terminate on EOF for this loop as well. --- corpus/comments.txt | 71 +++++++++++++++++++++++++++++---------------- src/scanner.c | 2 +- 2 files changed, 47 insertions(+), 26 deletions(-) diff --git a/corpus/comments.txt b/corpus/comments.txt index 3dde8759b..20351b0f4 100755 --- a/corpus/comments.txt +++ b/corpus/comments.txt @@ -1,23 +1,25 @@ -================== +================================================================================ 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)) - -================== + (additive_expression + (integer_literal) + (integer_literal)) + (comment) + (multiline_comment) + (multiline_comment)) + +================================================================================ Nested Comments -================== +================================================================================ /* This is how comments work: // @@ -48,19 +50,22 @@ func doesExist() { } ****/ ****/ ---- +-------------------------------------------------------------------------------- + (source_file - (multiline_comment) - (multiline_comment) - (comment) - (multiline_comment) - (function_declaration (simple_identifier) (function_body)) - (multiline_comment) - (multiline_comment)) - -================== + (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: / @@ -75,8 +80,24 @@ Almost nested comments */ ---- +-------------------------------------------------------------------------------- + +(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 - (multiline_comment) - (multiline_comment) - (multiline_comment)) + (class_declaration + (type_identifier) + (class_body)) + (comment)) diff --git a/src/scanner.c b/src/scanner.c index 0dec24335..f25115bdb 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -421,7 +421,7 @@ static enum ParseDirective eat_whitespace( // 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') { + while (lexer->lookahead != '\n' && lexer->lookahead != '\0') { lexer->advance(lexer, true); } } else if (iswspace(lexer->lookahead)) { From 56c09cdeb9e29963dccd81fc8b9cbb30837e2a91 Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Wed, 20 Apr 2022 05:05:11 +0000 Subject: [PATCH 148/151] Updating top repository version --- script-data/top-repositories.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index dad03a1a2..2c885f652 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -33,7 +33,7 @@ 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.3.3 +AudioKit AudioKit/AudioKit 5.4.0 Starscream daltoniam/Starscream 4.0.4 MessageKit MessageKit/MessageKit 3.7.0 KeychainAccess kishikawakatsumi/KeychainAccess v4.2.2 From 103d4f194b3647c7c72577b69fcb308b1d812d7f Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Sun, 24 Apr 2022 04:38:55 +0000 Subject: [PATCH 149/151] Updating top repository version --- script-data/top-repositories.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 2c885f652..3011b5731 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -37,7 +37,7 @@ AudioKit AudioKit/AudioKit 5.4.0 Starscream daltoniam/Starscream 4.0.4 MessageKit MessageKit/MessageKit 3.7.0 KeychainAccess kishikawakatsumi/KeychainAccess v4.2.2 -Nuke kean/Nuke 10.7.1 +Nuke kean/Nuke 10.7.2 Swinject Swinject/Swinject 2.8.1 GRDB groue/GRDB.swift v5.23.0 0 2 GRDB groue/GRDB.swift v5.23.0 1 2 From 9b4350e513cb03fdd3e670069a30859ff82d532d Mon Sep 17 00:00:00 2001 From: "Alex Pinkus (Bot)" Date: Mon, 25 Apr 2022 04:44:14 +0000 Subject: [PATCH 150/151] Updating top repository version --- script-data/top-repositories.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script-data/top-repositories.txt b/script-data/top-repositories.txt index 3011b5731..5751b2823 100644 --- a/script-data/top-repositories.txt +++ b/script-data/top-repositories.txt @@ -37,7 +37,7 @@ AudioKit AudioKit/AudioKit 5.4.0 Starscream daltoniam/Starscream 4.0.4 MessageKit MessageKit/MessageKit 3.7.0 KeychainAccess kishikawakatsumi/KeychainAccess v4.2.2 -Nuke kean/Nuke 10.7.2 +Nuke kean/Nuke 10.8.0 Swinject Swinject/Swinject 2.8.1 GRDB groue/GRDB.swift v5.23.0 0 2 GRDB groue/GRDB.swift v5.23.0 1 2 From b87d6c99f7df879aaf5a05f7cc35cd2a95551278 Mon Sep 17 00:00:00 2001 From: cherryblossom <31467609+cherryblossom000@users.noreply.github.com> Date: Sat, 9 Apr 2022 16:36:30 +1000 Subject: [PATCH 151/151] Add Swift support --- build.rs | 5 + manual/src/languages_supported.md | 1 + sample_files/compare.expected | 3 + sample_files/swift_after.swift | 3 + sample_files/swift_before.swift | 3 + src/guess_language.rs | 4 + src/sliders.rs | 2 +- src/tree_sitter_parser.rs | 15 + vendor/highlights/swift.scm | 1 + vendor/tree-sitter-swift-src | 1 + vendor/tree-sitter-swift/.gitignore | 2 + vendor/tree-sitter-swift/src/parser.c | 517126 +++++++++++++++ .../src/tree_sitter/parser.h | 224 + 13 files changed, 517389 insertions(+), 1 deletion(-) create mode 100644 sample_files/swift_after.swift create mode 100644 sample_files/swift_before.swift create mode 120000 vendor/highlights/swift.scm create mode 120000 vendor/tree-sitter-swift-src create mode 100644 vendor/tree-sitter-swift/src/parser.c create mode 100644 vendor/tree-sitter-swift/src/tree_sitter/parser.h diff --git a/build.rs b/build.rs index 0ea8baaf0..d694a29cc 100644 --- a/build.rs +++ b/build.rs @@ -207,6 +207,11 @@ fn main() { src_dir: "vendor/tree-sitter-scala-src", extra_files: vec!["scanner.c"], }, + TreeSitterParser { + name: "tree-sitter-swift", + src_dir: "vendor/tree-sitter-swift-src", + extra_files: vec!["scanner.c"], + }, TreeSitterParser { name: "tree-sitter-toml", src_dir: "vendor/tree-sitter-toml-src", diff --git a/manual/src/languages_supported.md b/manual/src/languages_supported.md index 66318ea2a..f9d923b16 100644 --- a/manual/src/languages_supported.md +++ b/manual/src/languages_supported.md @@ -29,6 +29,7 @@ Difftastic supports the following programming languages. | Ruby | [tree-sitter/tree-sitter-ruby](https://github.com/tree-sitter/tree-sitter-ruby) | | Rust | [tree-sitter/tree-sitter-rust](https://github.com/tree-sitter/tree-sitter-rust) ([forked](https://github.com/Wilfred/tree-sitter-rust/tree/non_special_token)) | | Scala | [tree-sitter/tree-sitter-scala](https://github.com/tree-sitter/tree-sitter-scala) | +| Swift | [alex-pinkus/tree-sitter-swift](https://github.com/alex-pinkus/tree-sitter-swift) | | TypeScript, TSX | [tree-sitter/tree-sitter-typescript](https://github.com/tree-sitter/tree-sitter-typescript) | | Zig | [maxxnino/tree-sitter-zig](https://github.com/maxxnino/tree-sitter-zig) | diff --git a/sample_files/compare.expected b/sample_files/compare.expected index 4163e6b78..7eea98ea3 100644 --- a/sample_files/compare.expected +++ b/sample_files/compare.expected @@ -139,6 +139,9 @@ a1d8070fda3b8fa65886a90bde64a2ab - sample_files/small_before.js sample_files/small_after.js 27bcac13aa17141718a3e6b8c0ac8f47 - +sample_files/swift_before.swift sample_files/swift_after.swift +eeab25a68552f051a6392b5e713fbd29 - + sample_files/syntax_error_before.js sample_files/syntax_error_after.js fe636ad27b1aa75e0b153dfe248023bb - diff --git a/sample_files/swift_after.swift b/sample_files/swift_after.swift new file mode 100644 index 000000000..4926ef2d1 --- /dev/null +++ b/sample_files/swift_after.swift @@ -0,0 +1,3 @@ +func f(_ x: Int) -> Int { + x * 3 +} diff --git a/sample_files/swift_before.swift b/sample_files/swift_before.swift new file mode 100644 index 000000000..ded054461 --- /dev/null +++ b/sample_files/swift_before.swift @@ -0,0 +1,3 @@ +func f(_ x: Int) -> Int { + x * 2 +} diff --git a/src/guess_language.rs b/src/guess_language.rs index a62c030f6..95301f695 100644 --- a/src/guess_language.rs +++ b/src/guess_language.rs @@ -49,6 +49,7 @@ pub enum Language { Ruby, Rust, Scala, + Swift, Toml, Tsx, TypeScript, @@ -122,6 +123,7 @@ fn from_emacs_mode_header(src: &str) -> Option { "rust" => Some(Rust), "scala" => Some(Scala), "sh" => Some(Bash), + "swift" => Some(Swift), "toml" => Some(Toml), "tuareg" => Some(OCaml), "typescript" => Some(TypeScript), @@ -160,6 +162,7 @@ fn from_shebang(src: &str) -> Option { "perl" => return Some(Perl), "python" | "python2" | "python3" => return Some(Python), "ruby" | "macruby" | "rake" | "jruby" | "rbx" => return Some(Ruby), + "swift" => return Some(Swift), "deno" | "ts-node" => return Some(TypeScript), _ => {} } @@ -234,6 +237,7 @@ pub fn from_extension(extension: &OsStr) -> Option { "rb" | "builder" | "spec" | "rake" => Some(Ruby), "rs" => Some(Rust), "scala" | "sbt" | "sc" => Some(Scala), + "swift" => Some(Swift), "toml" => Some(Toml), "ts" => Some(TypeScript), "tsx" => Some(Tsx), diff --git a/src/sliders.rs b/src/sliders.rs index 131cf3e58..59a5c400d 100644 --- a/src/sliders.rs +++ b/src/sliders.rs @@ -67,7 +67,7 @@ fn prefer_outer_delimiter(language: guess_language::Language) -> bool { // the inner delimiter is more relevant. Bash | C | CPlusPlus | CSharp | Css | Dart | Elixir | Elm | Gleam | Go | Haskell | Java | JavaScript | Jsx | Kotlin | Lua | Nix | OCaml | OCamlInterface | Perl | Php | Python - | Ruby | Rust | Scala | Tsx | TypeScript | Yaml | Zig => false, + | Ruby | Rust | Scala | Swift | Tsx | TypeScript | Yaml | Zig => false, } } diff --git a/src/tree_sitter_parser.rs b/src/tree_sitter_parser.rs index fa56a3028..f1992bce7 100644 --- a/src/tree_sitter_parser.rs +++ b/src/tree_sitter_parser.rs @@ -73,6 +73,7 @@ extern "C" { fn tree_sitter_ruby() -> ts::Language; fn tree_sitter_rust() -> ts::Language; fn tree_sitter_scala() -> ts::Language; + fn tree_sitter_swift() -> ts::Language; fn tree_sitter_toml() -> ts::Language; fn tree_sitter_tsx() -> ts::Language; fn tree_sitter_typescript() -> ts::Language; @@ -578,6 +579,20 @@ pub fn from_language(language: guess::Language) -> TreeSitterConfig { .unwrap(), } } + Swift => { + let language = unsafe { tree_sitter_swift() }; + TreeSitterConfig { + name: "Swift", + language, + atom_nodes: ["_string_literal"].into(), + delimiter_tokens: vec![("{", "}"), ("(", ")"), ("[", "]"), ("<", ">")], + highlight_query: ts::Query::new( + language, + include_str!("../vendor/highlights/swift.scm"), + ) + .unwrap(), + } + } Toml => { let language = unsafe { tree_sitter_toml() }; TreeSitterConfig { diff --git a/vendor/highlights/swift.scm b/vendor/highlights/swift.scm new file mode 120000 index 000000000..1a0f6318b --- /dev/null +++ b/vendor/highlights/swift.scm @@ -0,0 +1 @@ +../tree-sitter-swift/queries/highlights.scm \ No newline at end of file diff --git a/vendor/tree-sitter-swift-src b/vendor/tree-sitter-swift-src new file mode 120000 index 000000000..2c0711e17 --- /dev/null +++ b/vendor/tree-sitter-swift-src @@ -0,0 +1 @@ +tree-sitter-swift/src \ No newline at end of file diff --git a/vendor/tree-sitter-swift/.gitignore b/vendor/tree-sitter-swift/.gitignore index b7f9dd0a4..2dd8ec92f 100644 --- a/vendor/tree-sitter-swift/.gitignore +++ b/vendor/tree-sitter-swift/.gitignore @@ -1,6 +1,8 @@ node_modules /src/* !/src/scanner.c +!/src/parser.c +!/src/tree_sitter *.swp /build /test diff --git a/vendor/tree-sitter-swift/src/parser.c b/vendor/tree-sitter-swift/src/parser.c new file mode 100644 index 000000000..c9b90fccd --- /dev/null +++ b/vendor/tree-sitter-swift/src/parser.c @@ -0,0 +1,517126 @@ +#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 10441 +#define LARGE_STATE_COUNT 2274 +#define SYMBOL_COUNT 473 +#define ALIAS_COUNT 4 +#define TOKEN_COUNT 188 +#define EXTERNAL_TOKEN_COUNT 27 +#define FIELD_COUNT 43 +#define MAX_ALIAS_SEQUENCE_LENGTH 21 +#define PRODUCTION_ID_COUNT 498 + +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_nil = 8, + sym_real_literal = 9, + sym_integer_literal = 10, + sym_hex_literal = 11, + sym_oct_literal = 12, + sym_bin_literal = 13, + anon_sym_true = 14, + anon_sym_false = 15, + anon_sym_DQUOTE = 16, + aux_sym_line_str_text_token1 = 17, + anon_sym_BSLASH = 18, + anon_sym_u = 19, + aux_sym__uni_character_literal_token1 = 20, + anon_sym_DQUOTE_DQUOTE_DQUOTE = 21, + anon_sym_RPAREN = 22, + sym_raw_str_interpolation_start = 23, + anon_sym_BSLASH_LPAREN = 24, + anon_sym_COMMA = 25, + sym__escaped_identifier = 26, + anon_sym_COLON = 27, + anon_sym_BANG = 28, + anon_sym_LPAREN = 29, + anon_sym_LBRACK = 30, + anon_sym_RBRACK = 31, + anon_sym_DOT = 32, + anon_sym_Type = 33, + anon_sym_Protocol = 34, + anon_sym_QMARK = 35, + sym__immediate_quest = 36, + anon_sym_some = 37, + anon_sym_AMP = 38, + anon_sym_async = 39, + anon_sym_POUNDselector = 40, + anon_sym_getter_COLON = 41, + anon_sym_setter_COLON = 42, + aux_sym_custom_operator_token1 = 43, + anon_sym_LT = 44, + anon_sym_GT = 45, + sym__await_operator = 46, + anon_sym_POUNDfile = 47, + anon_sym_POUNDfileID = 48, + anon_sym_POUNDfilePath = 49, + anon_sym_POUNDline = 50, + anon_sym_POUNDcolumn = 51, + anon_sym_POUNDfunction = 52, + anon_sym_POUNDdsohandle = 53, + anon_sym_POUNDcolorLiteral = 54, + anon_sym_POUNDfileLiteral = 55, + anon_sym_POUNDimageLiteral = 56, + anon_sym_LBRACE = 57, + anon_sym_in = 58, + anon_sym_RBRACE = 59, + anon_sym_self = 60, + anon_sym_super = 61, + anon_sym_if = 62, + anon_sym_guard = 63, + anon_sym_switch = 64, + anon_sym_case = 65, + anon_sym_fallthrough = 66, + anon_sym_do = 67, + anon_sym_POUNDkeyPath = 68, + anon_sym_try = 69, + anon_sym_try_BANG = 70, + anon_sym_try_QMARK = 71, + anon_sym_PLUS_EQ = 72, + anon_sym_DASH_EQ = 73, + anon_sym_STAR_EQ = 74, + anon_sym_SLASH_EQ = 75, + anon_sym_PERCENT_EQ = 76, + anon_sym_EQ = 77, + anon_sym_BANG_EQ = 78, + anon_sym_BANG_EQ_EQ = 79, + anon_sym_EQ_EQ_EQ = 80, + anon_sym_LT_EQ = 81, + anon_sym_GT_EQ = 82, + anon_sym_is = 83, + anon_sym_PLUS = 84, + anon_sym_DASH = 85, + anon_sym_STAR = 86, + anon_sym_SLASH = 87, + anon_sym_PERCENT = 88, + anon_sym_PLUS_PLUS = 89, + anon_sym_DASH_DASH = 90, + anon_sym_TILDE = 91, + anon_sym_PIPE = 92, + anon_sym_CARET = 93, + anon_sym_LT_LT = 94, + anon_sym_GT_GT = 95, + sym_statement_label = 96, + anon_sym_for = 97, + anon_sym_while = 98, + anon_sym_repeat = 99, + sym_throw_keyword = 100, + anon_sym_return = 101, + anon_sym_continue = 102, + anon_sym_break = 103, + anon_sym_yield = 104, + anon_sym_POUNDavailable = 105, + anon_sym_import = 106, + anon_sym_typealias = 107, + anon_sym_struct = 108, + anon_sym_class = 109, + anon_sym_enum = 110, + anon_sym_protocol = 111, + anon_sym_let = 112, + anon_sym_var = 113, + anon_sym_func = 114, + anon_sym_extension = 115, + anon_sym_indirect = 116, + anon_sym_init = 117, + anon_sym_SEMI = 118, + anon_sym_deinit = 119, + anon_sym_subscript = 120, + anon_sym_get = 121, + anon_sym_set = 122, + anon_sym__modify = 123, + anon_sym_prefix = 124, + anon_sym_infix = 125, + anon_sym_postfix = 126, + anon_sym_operator = 127, + anon_sym_precedencegroup = 128, + anon_sym_associatedtype = 129, + anon_sym_AT = 130, + sym_wildcard_pattern = 131, + sym_property_behavior_modifier = 132, + anon_sym_override = 133, + anon_sym_convenience = 134, + anon_sym_required = 135, + anon_sym_public = 136, + anon_sym_private = 137, + anon_sym_internal = 138, + anon_sym_fileprivate = 139, + anon_sym_open = 140, + anon_sym_mutating = 141, + anon_sym_nonmutating = 142, + anon_sym_static = 143, + anon_sym_dynamic = 144, + anon_sym_optional = 145, + anon_sym_final = 146, + anon_sym_inout = 147, + anon_sym_ATescaping = 148, + anon_sym_ATautoclosure = 149, + anon_sym_weak = 150, + anon_sym_unowned = 151, + anon_sym_unowned_LPARENsafe_RPAREN = 152, + anon_sym_unowned_LPARENunsafe_RPAREN = 153, + anon_sym_property = 154, + anon_sym_receiver = 155, + anon_sym_param = 156, + anon_sym_setparam = 157, + anon_sym_delegate = 158, + sym_directive = 159, + sym_diagnostic = 160, + sym_multiline_comment = 161, + sym_raw_str_part = 162, + sym_raw_str_continuing_indicator = 163, + sym_raw_str_end_part = 164, + sym__semi = 165, + sym__arrow_operator_custom = 166, + sym__dot_custom = 167, + sym__three_dot_operator_custom = 168, + sym__open_ended_range_operator_custom = 169, + sym__conjunction_operator_custom = 170, + sym__disjunction_operator_custom = 171, + sym__nil_coalescing_operator_custom = 172, + sym__eq_custom = 173, + sym__eq_eq_custom = 174, + sym__plus_then_ws = 175, + sym__minus_then_ws = 176, + sym_bang = 177, + sym__throws_keyword = 178, + sym__rethrows_keyword = 179, + sym_default_keyword = 180, + sym_where_keyword = 181, + sym_else = 182, + sym_catch_keyword = 183, + sym__as_custom = 184, + sym__as_quest_custom = 185, + sym__as_bang_custom = 186, + sym__async_keyword_custom = 187, + sym_source_file = 188, + sym_shebang_line = 189, + sym_simple_identifier = 190, + sym_identifier = 191, + sym__basic_literal = 192, + sym_boolean_literal = 193, + sym__string_literal = 194, + sym_line_string_literal = 195, + sym__line_string_content = 196, + sym_line_str_text = 197, + sym_str_escaped_char = 198, + sym__uni_character_literal = 199, + sym_multi_line_string_literal = 200, + sym_raw_string_literal = 201, + sym_raw_str_interpolation = 202, + sym__multi_line_string_content = 203, + sym__interpolation = 204, + sym__interpolation_contents = 205, + sym_multi_line_str_text = 206, + sym_type_annotation = 207, + sym__possibly_implicitly_unwrapped_type = 208, + sym__type = 209, + sym__unannotated_type = 210, + sym_user_type = 211, + sym__simple_user_type = 212, + sym_tuple_type = 213, + sym_tuple_type_item = 214, + sym__tuple_type_item_identifier = 215, + sym_function_type = 216, + sym_array_type = 217, + sym_dictionary_type = 218, + sym_optional_type = 219, + sym_metatype = 220, + sym__quest = 221, + sym_opaque_type = 222, + sym_protocol_composition_type = 223, + sym__expression = 224, + sym__unary_expression = 225, + sym_postfix_expression = 226, + sym_constructor_expression = 227, + sym_navigation_expression = 228, + sym__navigable_type_expression = 229, + sym_open_start_range_expression = 230, + sym__range_operator = 231, + sym_open_end_range_expression = 232, + sym_prefix_expression = 233, + sym_as_expression = 234, + sym_selector_expression = 235, + sym__binary_expression = 236, + sym_multiplicative_expression = 237, + sym_additive_expression = 238, + sym_range_expression = 239, + sym_infix_expression = 240, + sym_nil_coalescing_expression = 241, + sym_check_expression = 242, + sym_comparison_expression = 243, + sym_equality_expression = 244, + sym_conjunction_expression = 245, + sym_disjunction_expression = 246, + sym_bitwise_operation = 247, + sym_custom_operator = 248, + sym_navigation_suffix = 249, + sym_call_suffix = 250, + sym_constructor_suffix = 251, + sym__constructor_value_arguments = 252, + sym_type_arguments = 253, + sym_value_arguments = 254, + sym_value_argument = 255, + sym_try_expression = 256, + sym_await_expression = 257, + sym_ternary_expression = 258, + sym_expr_hack_at_ternary_binary_call = 259, + sym_expr_hack_at_ternary_binary_call_suffix = 260, + sym_call_expression = 261, + sym__primary_expression = 262, + sym_tuple_expression = 263, + sym_array_literal = 264, + sym_dictionary_literal = 265, + sym__dictionary_literal_item = 266, + sym__special_literal = 267, + sym__playground_literal = 268, + sym_lambda_literal = 269, + sym_capture_list = 270, + sym_capture_list_item = 271, + sym_lambda_function_type = 272, + sym_lambda_function_type_parameters = 273, + sym_lambda_parameter = 274, + sym_self_expression = 275, + sym_super_expression = 276, + sym__else_options = 277, + sym_if_statement = 278, + sym__if_condition_sequence_item = 279, + sym__if_let_binding = 280, + sym_guard_statement = 281, + sym_switch_statement = 282, + sym_switch_entry = 283, + sym_switch_pattern = 284, + sym_do_statement = 285, + sym_catch_block = 286, + sym_where_clause = 287, + sym_key_path_expression = 288, + sym_key_path_string_expression = 289, + sym__key_path_component = 290, + sym__key_path_postfixes = 291, + sym__try_operator = 292, + sym__assignment_and_operator = 293, + sym__equality_operator = 294, + sym__comparison_operator = 295, + sym__is_operator = 296, + sym__additive_operator = 297, + sym__multiplicative_operator = 298, + sym_as_operator = 299, + sym__prefix_unary_operator = 300, + sym__bitwise_binary_operator = 301, + sym__postfix_unary_operator = 302, + sym_directly_assignable_expression = 303, + sym_statements = 304, + sym__local_statement = 305, + sym__top_level_statement = 306, + sym__block = 307, + sym__labeled_statement = 308, + sym_for_statement = 309, + sym_while_statement = 310, + sym_repeat_while_statement = 311, + sym_control_transfer_statement = 312, + sym__throw_statement = 313, + sym__optionally_valueful_control_keyword = 314, + sym_assignment = 315, + sym_availability_condition = 316, + sym__availability_argument = 317, + sym__global_declaration = 318, + sym__type_level_declaration = 319, + sym__local_declaration = 320, + sym__local_property_declaration = 321, + sym__local_typealias_declaration = 322, + sym__local_function_declaration = 323, + sym__local_class_declaration = 324, + sym_import_declaration = 325, + sym__import_kind = 326, + sym_protocol_property_declaration = 327, + sym_protocol_property_requirements = 328, + sym_property_declaration = 329, + sym__modifierless_property_declaration = 330, + sym_property_binding_pattern = 331, + sym_typealias_declaration = 332, + sym__modifierless_typealias_declaration = 333, + sym_function_declaration = 334, + sym__modifierless_function_declaration = 335, + sym__bodyless_function_declaration = 336, + sym__modifierless_function_declaration_no_body = 337, + sym_function_body = 338, + sym_class_declaration = 339, + sym__modifierless_class_declaration = 340, + sym_class_body = 341, + sym__inheritance_specifiers = 342, + sym_inheritance_specifier = 343, + sym__annotated_inheritance_specifier = 344, + sym_type_parameters = 345, + sym_type_parameter = 346, + sym_type_constraints = 347, + sym_type_constraint = 348, + sym_inheritance_constraint = 349, + sym_equality_constraint = 350, + sym__class_member_separator = 351, + sym__class_member_declarations = 352, + sym__function_value_parameters = 353, + sym__function_value_parameter = 354, + sym_parameter = 355, + sym__constructor_function_decl = 356, + sym__non_constructor_function_decl = 357, + sym__referenceable_operator = 358, + sym__equal_sign = 359, + sym__eq_eq = 360, + sym__dot = 361, + sym__arrow_operator = 362, + sym__three_dot_operator = 363, + sym__open_ended_range_operator = 364, + sym__conjunction_operator = 365, + sym__disjunction_operator = 366, + sym__nil_coalescing_operator = 367, + sym__as = 368, + sym__as_quest = 369, + sym__as_bang = 370, + sym__async_keyword = 371, + sym__async_keyword_internal = 372, + sym__async_modifier = 373, + sym_throws = 374, + sym_enum_class_body = 375, + sym_enum_entry = 376, + sym__enum_entry_suffix = 377, + sym_enum_type_parameters = 378, + sym_protocol_declaration = 379, + sym_protocol_body = 380, + sym__protocol_member_declarations = 381, + sym__protocol_member_declaration = 382, + sym_deinit_declaration = 383, + sym_subscript_declaration = 384, + sym_computed_property = 385, + sym_computed_getter = 386, + sym_computed_modify = 387, + sym_computed_setter = 388, + sym_getter_specifier = 389, + sym_setter_specifier = 390, + sym_modify_specifier = 391, + aux_sym__getter_effects = 392, + sym_operator_declaration = 393, + sym_precedence_group_declaration = 394, + sym_precedence_group_attributes = 395, + sym_precedence_group_attribute = 396, + sym_associatedtype_declaration = 397, + sym_attribute = 398, + sym_binding_pattern = 399, + sym_non_binding_pattern = 400, + sym__binding_pattern_with_expr = 401, + sym__non_binding_pattern_with_expr = 402, + sym__direct_or_indirect_binding = 403, + sym_binding_pattern_kind = 404, + sym_value_binding_pattern = 405, + sym_modifiers = 406, + aux_sym__locally_permitted_modifiers = 407, + sym_parameter_modifiers = 408, + sym__non_local_scope_modifier = 409, + sym__locally_permitted_modifier = 410, + sym_type_modifiers = 411, + sym_member_modifier = 412, + sym_visibility_modifier = 413, + sym_type_parameter_modifiers = 414, + sym_function_modifier = 415, + sym_mutation_modifier = 416, + sym_property_modifier = 417, + sym_inheritance_modifier = 418, + sym_parameter_modifier = 419, + sym_ownership_modifier = 420, + aux_sym_source_file_repeat1 = 421, + aux_sym_identifier_repeat1 = 422, + aux_sym_line_string_literal_repeat1 = 423, + aux_sym_multi_line_string_literal_repeat1 = 424, + aux_sym_raw_string_literal_repeat1 = 425, + aux_sym__interpolation_contents_repeat1 = 426, + aux_sym_user_type_repeat1 = 427, + aux_sym_tuple_type_repeat1 = 428, + aux_sym_optional_type_repeat1 = 429, + aux_sym_protocol_composition_type_repeat1 = 430, + aux_sym_call_suffix_repeat1 = 431, + aux_sym__constructor_value_arguments_repeat1 = 432, + aux_sym_type_arguments_repeat1 = 433, + aux_sym_value_argument_repeat1 = 434, + aux_sym_tuple_expression_repeat1 = 435, + aux_sym_array_literal_repeat1 = 436, + aux_sym_dictionary_literal_repeat1 = 437, + aux_sym__playground_literal_repeat1 = 438, + aux_sym_capture_list_repeat1 = 439, + aux_sym_capture_list_repeat2 = 440, + aux_sym_lambda_function_type_parameters_repeat1 = 441, + aux_sym_if_statement_repeat1 = 442, + aux_sym_switch_statement_repeat1 = 443, + aux_sym_switch_entry_repeat1 = 444, + aux_sym_do_statement_repeat1 = 445, + aux_sym_key_path_expression_repeat1 = 446, + aux_sym__key_path_component_repeat1 = 447, + aux_sym_statements_repeat1 = 448, + aux_sym_for_statement_repeat1 = 449, + aux_sym_for_statement_repeat2 = 450, + aux_sym_availability_condition_repeat1 = 451, + aux_sym__availability_argument_repeat1 = 452, + aux_sym_protocol_property_requirements_repeat1 = 453, + aux_sym__modifierless_property_declaration_repeat1 = 454, + aux_sym__inheritance_specifiers_repeat1 = 455, + aux_sym_type_parameters_repeat1 = 456, + aux_sym_type_constraints_repeat1 = 457, + aux_sym__class_member_declarations_repeat1 = 458, + aux_sym__function_value_parameters_repeat1 = 459, + aux_sym_enum_class_body_repeat1 = 460, + aux_sym_enum_entry_repeat1 = 461, + aux_sym_enum_type_parameters_repeat1 = 462, + aux_sym__protocol_member_declarations_repeat1 = 463, + aux_sym_computed_property_repeat1 = 464, + aux_sym_precedence_group_attributes_repeat1 = 465, + aux_sym_attribute_repeat1 = 466, + aux_sym_attribute_repeat2 = 467, + aux_sym_attribute_repeat3 = 468, + aux_sym_non_binding_pattern_repeat1 = 469, + aux_sym_non_binding_pattern_repeat2 = 470, + aux_sym_modifiers_repeat1 = 471, + aux_sym_parameter_modifiers_repeat1 = 472, + alias_sym_fully_open_range = 473, + alias_sym_interpolated_expression = 474, + alias_sym_protocol_function_declaration = 475, + alias_sym_type_identifier = 476, +}; + +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_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", + [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_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] = ">", + [sym__await_operator] = "_await_operator", + [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_in] = "in", + [anon_sym_RBRACE] = "}", + [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_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_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__semi] = "_semi", + [sym__arrow_operator_custom] = "->", + [sym__dot_custom] = ".", + [sym__three_dot_operator_custom] = "...", + [sym__open_ended_range_operator_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_source_file] = "source_file", + [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_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_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_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_ternary_expression] = "ternary_expression", + [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_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__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_property_binding_pattern] = "value_binding_pattern", + [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", + [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__three_dot_operator] = "_three_dot_operator", + [sym__open_ended_range_operator] = "_open_ended_range_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_keyword_internal] = "async", + [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_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_binding_pattern] = "binding_pattern", + [sym_non_binding_pattern] = "non_binding_pattern", + [sym__binding_pattern_with_expr] = "_binding_pattern_with_expr", + [sym__non_binding_pattern_with_expr] = "_non_binding_pattern_with_expr", + [sym__direct_or_indirect_binding] = "_direct_or_indirect_binding", + [sym_binding_pattern_kind] = "binding_pattern_kind", + [sym_value_binding_pattern] = "value_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_call_suffix_repeat1] = "call_suffix_repeat1", + [aux_sym__constructor_value_arguments_repeat1] = "_constructor_value_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_capture_list_repeat1] = "capture_list_repeat1", + [aux_sym_capture_list_repeat2] = "capture_list_repeat2", + [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_for_statement_repeat1] = "for_statement_repeat1", + [aux_sym_for_statement_repeat2] = "for_statement_repeat2", + [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_precedence_group_attributes_repeat1] = "precedence_group_attributes_repeat1", + [aux_sym_attribute_repeat1] = "attribute_repeat1", + [aux_sym_attribute_repeat2] = "attribute_repeat2", + [aux_sym_attribute_repeat3] = "attribute_repeat3", + [aux_sym_non_binding_pattern_repeat1] = "non_binding_pattern_repeat1", + [aux_sym_non_binding_pattern_repeat2] = "non_binding_pattern_repeat2", + [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_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, + [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_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, + [sym__await_operator] = sym__await_operator, + [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_in] = anon_sym_in, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [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_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_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__semi] = sym__semi, + [sym__arrow_operator_custom] = sym__arrow_operator_custom, + [sym__dot_custom] = anon_sym_DOT, + [sym__three_dot_operator_custom] = sym__three_dot_operator_custom, + [sym__open_ended_range_operator_custom] = sym__open_ended_range_operator_custom, + [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_source_file] = sym_source_file, + [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_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_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_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_ternary_expression] = sym_ternary_expression, + [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_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__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_property_binding_pattern] = sym_value_binding_pattern, + [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, + [sym__function_value_parameters] = 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__three_dot_operator] = sym__three_dot_operator, + [sym__open_ended_range_operator] = sym__open_ended_range_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_keyword_internal] = sym__async_keyword_internal, + [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_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_binding_pattern] = sym_binding_pattern, + [sym_non_binding_pattern] = sym_non_binding_pattern, + [sym__binding_pattern_with_expr] = sym__binding_pattern_with_expr, + [sym__non_binding_pattern_with_expr] = sym__non_binding_pattern_with_expr, + [sym__direct_or_indirect_binding] = sym__direct_or_indirect_binding, + [sym_binding_pattern_kind] = sym_binding_pattern_kind, + [sym_value_binding_pattern] = sym_value_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_call_suffix_repeat1] = aux_sym_call_suffix_repeat1, + [aux_sym__constructor_value_arguments_repeat1] = aux_sym__constructor_value_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_capture_list_repeat1] = aux_sym_capture_list_repeat1, + [aux_sym_capture_list_repeat2] = aux_sym_capture_list_repeat2, + [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_for_statement_repeat1] = aux_sym_for_statement_repeat1, + [aux_sym_for_statement_repeat2] = aux_sym_for_statement_repeat2, + [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_precedence_group_attributes_repeat1] = aux_sym_precedence_group_attributes_repeat1, + [aux_sym_attribute_repeat1] = aux_sym_attribute_repeat1, + [aux_sym_attribute_repeat2] = aux_sym_attribute_repeat2, + [aux_sym_attribute_repeat3] = aux_sym_attribute_repeat3, + [aux_sym_non_binding_pattern_repeat1] = aux_sym_non_binding_pattern_repeat1, + [aux_sym_non_binding_pattern_repeat2] = aux_sym_non_binding_pattern_repeat2, + [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_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, + }, + [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_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, + }, + [sym__await_operator] = { + .visible = false, + .named = true, + }, + [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_in] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .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_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_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__semi] = { + .visible = false, + .named = true, + }, + [sym__arrow_operator_custom] = { + .visible = true, + .named = false, + }, + [sym__dot_custom] = { + .visible = true, + .named = false, + }, + [sym__three_dot_operator_custom] = { + .visible = true, + .named = false, + }, + [sym__open_ended_range_operator_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_source_file] = { + .visible = true, + .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_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_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_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_ternary_expression] = { + .visible = true, + .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_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__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_property_binding_pattern] = { + .visible = true, + .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, + }, + [sym__function_value_parameters] = { + .visible = false, + .named = true, + }, + [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__three_dot_operator] = { + .visible = false, + .named = true, + }, + [sym__open_ended_range_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_keyword_internal] = { + .visible = true, + .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_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_binding_pattern] = { + .visible = true, + .named = true, + }, + [sym_non_binding_pattern] = { + .visible = true, + .named = true, + }, + [sym__binding_pattern_with_expr] = { + .visible = false, + .named = true, + }, + [sym__non_binding_pattern_with_expr] = { + .visible = false, + .named = true, + }, + [sym__direct_or_indirect_binding] = { + .visible = false, + .named = true, + }, + [sym_binding_pattern_kind] = { + .visible = true, + .named = true, + }, + [sym_value_binding_pattern] = { + .visible = true, + .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_call_suffix_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__constructor_value_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_capture_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_capture_list_repeat2] = { + .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_for_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_for_statement_repeat2] = { + .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_precedence_group_attributes_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_attribute_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_attribute_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_attribute_repeat3] = { + .visible = false, + .named = false, + }, + [aux_sym_non_binding_pattern_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_non_binding_pattern_repeat2] = { + .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_name = 27, + field_op = 28, + field_operation = 29, + field_operator = 30, + field_params = 31, + field_raw_value = 32, + field_reference_specifier = 33, + field_result = 34, + field_return_type = 35, + field_rhs = 36, + field_start = 37, + field_suffix = 38, + field_target = 39, + field_text = 40, + field_type = 41, + field_value = 42, + field_wrapped = 43, +}; + +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_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}, + [5] = {.index = 2, .length = 3}, + [6] = {.index = 5, .length = 2}, + [7] = {.index = 7, .length = 3}, + [8] = {.index = 10, .length = 3}, + [10] = {.index = 13, .length = 2}, + [11] = {.index = 15, .length = 1}, + [12] = {.index = 16, .length = 1}, + [13] = {.index = 17, .length = 4}, + [14] = {.index = 21, .length = 1}, + [15] = {.index = 22, .length = 3}, + [16] = {.index = 25, .length = 1}, + [17] = {.index = 25, .length = 1}, + [18] = {.index = 26, .length = 1}, + [19] = {.index = 27, .length = 2}, + [20] = {.index = 29, .length = 2}, + [21] = {.index = 31, .length = 1}, + [22] = {.index = 32, .length = 1}, + [23] = {.index = 33, .length = 2}, + [24] = {.index = 35, .length = 4}, + [25] = {.index = 39, .length = 2}, + [26] = {.index = 41, .length = 3}, + [27] = {.index = 44, .length = 2}, + [28] = {.index = 46, .length = 3}, + [29] = {.index = 49, .length = 3}, + [30] = {.index = 52, .length = 4}, + [31] = {.index = 56, .length = 1}, + [32] = {.index = 57, .length = 1}, + [33] = {.index = 58, .length = 1}, + [34] = {.index = 59, .length = 2}, + [35] = {.index = 61, .length = 1}, + [36] = {.index = 62, .length = 2}, + [37] = {.index = 64, .length = 2}, + [38] = {.index = 66, .length = 1}, + [39] = {.index = 67, .length = 1}, + [40] = {.index = 68, .length = 2}, + [41] = {.index = 70, .length = 1}, + [42] = {.index = 71, .length = 1}, + [43] = {.index = 72, .length = 4}, + [44] = {.index = 76, .length = 1}, + [45] = {.index = 77, .length = 1}, + [46] = {.index = 78, .length = 3}, + [47] = {.index = 81, .length = 2}, + [48] = {.index = 83, .length = 4}, + [49] = {.index = 78, .length = 3}, + [50] = {.index = 87, .length = 3}, + [51] = {.index = 90, .length = 3}, + [52] = {.index = 93, .length = 4}, + [53] = {.index = 97, .length = 3}, + [54] = {.index = 100, .length = 1}, + [55] = {.index = 101, .length = 2}, + [56] = {.index = 103, .length = 3}, + [57] = {.index = 106, .length = 2}, + [58] = {.index = 108, .length = 1}, + [59] = {.index = 109, .length = 3}, + [60] = {.index = 108, .length = 1}, + [61] = {.index = 112, .length = 1}, + [62] = {.index = 113, .length = 1}, + [63] = {.index = 114, .length = 2}, + [64] = {.index = 116, .length = 1}, + [65] = {.index = 117, .length = 2}, + [66] = {.index = 119, .length = 3}, + [67] = {.index = 122, .length = 4}, + [68] = {.index = 126, .length = 3}, + [69] = {.index = 129, .length = 2}, + [70] = {.index = 131, .length = 3}, + [71] = {.index = 134, .length = 2}, + [72] = {.index = 136, .length = 2}, + [73] = {.index = 138, .length = 2}, + [74] = {.index = 140, .length = 4}, + [75] = {.index = 144, .length = 4}, + [76] = {.index = 148, .length = 3}, + [77] = {.index = 151, .length = 1}, + [78] = {.index = 152, .length = 1}, + [79] = {.index = 153, .length = 2}, + [80] = {.index = 155, .length = 2}, + [81] = {.index = 157, .length = 2}, + [82] = {.index = 159, .length = 1}, + [83] = {.index = 160, .length = 3}, + [84] = {.index = 163, .length = 1}, + [85] = {.index = 164, .length = 3}, + [86] = {.index = 7, .length = 3}, + [87] = {.index = 167, .length = 1}, + [88] = {.index = 168, .length = 2}, + [89] = {.index = 170, .length = 4}, + [90] = {.index = 174, .length = 2}, + [91] = {.index = 176, .length = 5}, + [92] = {.index = 181, .length = 6}, + [93] = {.index = 164, .length = 3}, + [94] = {.index = 187, .length = 3}, + [95] = {.index = 190, .length = 3}, + [96] = {.index = 193, .length = 3}, + [97] = {.index = 196, .length = 2}, + [98] = {.index = 198, .length = 1}, + [100] = {.index = 199, .length = 4}, + [101] = {.index = 203, .length = 2}, + [102] = {.index = 205, .length = 4}, + [103] = {.index = 209, .length = 2}, + [104] = {.index = 209, .length = 2}, + [105] = {.index = 211, .length = 1}, + [106] = {.index = 212, .length = 2}, + [107] = {.index = 214, .length = 3}, + [108] = {.index = 217, .length = 4}, + [109] = {.index = 221, .length = 3}, + [110] = {.index = 224, .length = 2}, + [111] = {.index = 226, .length = 3}, + [112] = {.index = 229, .length = 4}, + [113] = {.index = 233, .length = 2}, + [114] = {.index = 235, .length = 3}, + [115] = {.index = 238, .length = 1}, + [116] = {.index = 239, .length = 2}, + [117] = {.index = 241, .length = 2}, + [118] = {.index = 243, .length = 1}, + [119] = {.index = 244, .length = 3}, + [120] = {.index = 247, .length = 3}, + [121] = {.index = 250, .length = 1}, + [122] = {.index = 35, .length = 4}, + [123] = {.index = 251, .length = 1}, + [124] = {.index = 252, .length = 2}, + [125] = {.index = 254, .length = 2}, + [126] = {.index = 256, .length = 4}, + [127] = {.index = 260, .length = 2}, + [128] = {.index = 262, .length = 5}, + [129] = {.index = 267, .length = 5}, + [130] = {.index = 247, .length = 3}, + [131] = {.index = 272, .length = 3}, + [132] = {.index = 275, .length = 3}, + [133] = {.index = 278, .length = 2}, + [134] = {.index = 280, .length = 3}, + [135] = {.index = 283, .length = 2}, + [136] = {.index = 285, .length = 2}, + [137] = {.index = 287, .length = 1}, + [138] = {.index = 159, .length = 1}, + [139] = {.index = 288, .length = 4}, + [140] = {.index = 292, .length = 4}, + [141] = {.index = 296, .length = 2}, + [142] = {.index = 298, .length = 4}, + [143] = {.index = 302, .length = 2}, + [144] = {.index = 304, .length = 5}, + [145] = {.index = 309, .length = 3}, + [146] = {.index = 312, .length = 3}, + [147] = {.index = 174, .length = 2}, + [148] = {.index = 315, .length = 4}, + [149] = {.index = 319, .length = 3}, + [150] = {.index = 322, .length = 2}, + [151] = {.index = 324, .length = 4}, + [152] = {.index = 328, .length = 3}, + [153] = {.index = 331, .length = 4}, + [154] = {.index = 335, .length = 2}, + [155] = {.index = 337, .length = 2}, + [156] = {.index = 339, .length = 4}, + [157] = {.index = 343, .length = 2}, + [158] = {.index = 345, .length = 3}, + [159] = {.index = 348, .length = 2}, + [160] = {.index = 350, .length = 3}, + [161] = {.index = 353, .length = 1}, + [162] = {.index = 354, .length = 2}, + [163] = {.index = 356, .length = 1}, + [164] = {.index = 357, .length = 3}, + [165] = {.index = 360, .length = 3}, + [166] = {.index = 363, .length = 3}, + [167] = {.index = 366, .length = 1}, + [168] = {.index = 367, .length = 3}, + [169] = {.index = 370, .length = 1}, + [170] = {.index = 371, .length = 4}, + [171] = {.index = 375, .length = 2}, + [172] = {.index = 377, .length = 5}, + [173] = {.index = 382, .length = 5}, + [174] = {.index = 363, .length = 3}, + [175] = {.index = 387, .length = 3}, + [176] = {.index = 390, .length = 5}, + [177] = {.index = 395, .length = 1}, + [178] = {.index = 353, .length = 1}, + [179] = {.index = 396, .length = 4}, + [180] = {.index = 400, .length = 4}, + [181] = {.index = 404, .length = 2}, + [182] = {.index = 406, .length = 4}, + [183] = {.index = 410, .length = 2}, + [184] = {.index = 412, .length = 5}, + [185] = {.index = 417, .length = 5}, + [186] = {.index = 422, .length = 3}, + [187] = {.index = 425, .length = 2}, + [188] = {.index = 427, .length = 4}, + [189] = {.index = 431, .length = 4}, + [190] = {.index = 435, .length = 4}, + [191] = {.index = 439, .length = 2}, + [192] = {.index = 441, .length = 3}, + [193] = {.index = 444, .length = 2}, + [194] = {.index = 446, .length = 3}, + [195] = {.index = 449, .length = 4}, + [196] = {.index = 453, .length = 5}, + [197] = {.index = 458, .length = 3}, + [198] = {.index = 461, .length = 3}, + [199] = {.index = 464, .length = 1}, + [200] = {.index = 465, .length = 2}, + [201] = {.index = 467, .length = 2}, + [202] = {.index = 469, .length = 2}, + [203] = {.index = 471, .length = 5}, + [204] = {.index = 476, .length = 2}, + [205] = {.index = 478, .length = 3}, + [206] = {.index = 481, .length = 3}, + [207] = {.index = 484, .length = 1}, + [208] = {.index = 485, .length = 3}, + [209] = {.index = 488, .length = 1}, + [210] = {.index = 489, .length = 6}, + [211] = {.index = 495, .length = 6}, + [212] = {.index = 501, .length = 3}, + [213] = {.index = 504, .length = 4}, + [214] = {.index = 508, .length = 1}, + [215] = {.index = 509, .length = 5}, + [216] = {.index = 485, .length = 3}, + [217] = {.index = 514, .length = 3}, + [218] = {.index = 517, .length = 5}, + [219] = {.index = 522, .length = 4}, + [220] = {.index = 526, .length = 2}, + [221] = {.index = 528, .length = 5}, + [222] = {.index = 533, .length = 5}, + [223] = {.index = 538, .length = 5}, + [224] = {.index = 543, .length = 2}, + [225] = {.index = 545, .length = 4}, + [226] = {.index = 549, .length = 5}, + [227] = {.index = 554, .length = 4}, + [228] = {.index = 558, .length = 4}, + [229] = {.index = 562, .length = 5}, + [230] = {.index = 567, .length = 3}, + [231] = {.index = 570, .length = 3}, + [232] = {.index = 573, .length = 5}, + [233] = {.index = 578, .length = 5}, + [234] = {.index = 583, .length = 2}, + [235] = {.index = 585, .length = 4}, + [236] = {.index = 589, .length = 2}, + [237] = {.index = 591, .length = 3}, + [238] = {.index = 594, .length = 2}, + [239] = {.index = 596, .length = 3}, + [240] = {.index = 599, .length = 1}, + [241] = {.index = 600, .length = 5}, + [242] = {.index = 605, .length = 6}, + [243] = {.index = 611, .length = 3}, + [244] = {.index = 614, .length = 1}, + [245] = {.index = 615, .length = 6}, + [246] = {.index = 621, .length = 3}, + [247] = {.index = 624, .length = 4}, + [248] = {.index = 628, .length = 3}, + [249] = {.index = 631, .length = 5}, + [250] = {.index = 636, .length = 5}, + [251] = {.index = 641, .length = 6}, + [252] = {.index = 647, .length = 5}, + [253] = {.index = 652, .length = 4}, + [254] = {.index = 656, .length = 5}, + [255] = {.index = 661, .length = 5}, + [256] = {.index = 666, .length = 5}, + [257] = {.index = 671, .length = 6}, + [258] = {.index = 677, .length = 1}, + [259] = {.index = 678, .length = 4}, + [260] = {.index = 682, .length = 4}, + [261] = {.index = 686, .length = 5}, + [262] = {.index = 691, .length = 3}, + [263] = {.index = 694, .length = 3}, + [264] = {.index = 697, .length = 5}, + [265] = {.index = 702, .length = 2}, + [266] = {.index = 704, .length = 6}, + [267] = {.index = 710, .length = 3}, + [268] = {.index = 713, .length = 6}, + [269] = {.index = 719, .length = 6}, + [270] = {.index = 725, .length = 7}, + [271] = {.index = 732, .length = 6}, + [272] = {.index = 738, .length = 5}, + [273] = {.index = 743, .length = 6}, + [274] = {.index = 749, .length = 8}, + [275] = {.index = 757, .length = 2}, + [276] = {.index = 759, .length = 4}, + [277] = {.index = 763, .length = 5}, + [278] = {.index = 768, .length = 5}, + [279] = {.index = 773, .length = 5}, + [280] = {.index = 778, .length = 6}, + [281] = {.index = 784, .length = 3}, + [282] = {.index = 787, .length = 7}, + [283] = {.index = 794, .length = 8}, + [284] = {.index = 802, .length = 6}, + [285] = {.index = 808, .length = 7}, + [286] = {.index = 815, .length = 8}, + [287] = {.index = 823, .length = 9}, + [288] = {.index = 832, .length = 8}, + [289] = {.index = 840, .length = 9}, + [290] = {.index = 849, .length = 10}, + [291] = {.index = 859, .length = 6}, + [292] = {.index = 865, .length = 5}, + [293] = {.index = 870, .length = 6}, + [294] = {.index = 876, .length = 2}, + [295] = {.index = 878, .length = 8}, + [296] = {.index = 886, .length = 9}, + [297] = {.index = 895, .length = 7}, + [298] = {.index = 902, .length = 8}, + [299] = {.index = 910, .length = 9}, + [300] = {.index = 919, .length = 8}, + [301] = {.index = 927, .length = 9}, + [302] = {.index = 936, .length = 10}, + [303] = {.index = 946, .length = 9}, + [304] = {.index = 955, .length = 10}, + [305] = {.index = 965, .length = 11}, + [306] = {.index = 976, .length = 10}, + [307] = {.index = 986, .length = 9}, + [308] = {.index = 995, .length = 10}, + [309] = {.index = 1005, .length = 10}, + [310] = {.index = 1015, .length = 11}, + [311] = {.index = 1026, .length = 6}, + [312] = {.index = 1032, .length = 7}, + [313] = {.index = 1039, .length = 8}, + [314] = {.index = 1047, .length = 9}, + [315] = {.index = 1056, .length = 8}, + [316] = {.index = 1064, .length = 9}, + [317] = {.index = 1073, .length = 9}, + [318] = {.index = 1082, .length = 10}, + [319] = {.index = 1092, .length = 11}, + [320] = {.index = 1103, .length = 10}, + [321] = {.index = 1113, .length = 9}, + [322] = {.index = 1122, .length = 10}, + [323] = {.index = 1132, .length = 10}, + [324] = {.index = 1142, .length = 11}, + [325] = {.index = 1153, .length = 11}, + [326] = {.index = 1164, .length = 10}, + [327] = {.index = 1174, .length = 11}, + [328] = {.index = 1185, .length = 11}, + [329] = {.index = 1196, .length = 12}, + [330] = {.index = 1208, .length = 10}, + [331] = {.index = 1218, .length = 11}, + [332] = {.index = 1229, .length = 12}, + [333] = {.index = 1241, .length = 10}, + [334] = {.index = 1251, .length = 11}, + [335] = {.index = 1262, .length = 11}, + [336] = {.index = 1273, .length = 12}, + [337] = {.index = 1285, .length = 7}, + [338] = {.index = 1292, .length = 8}, + [339] = {.index = 1300, .length = 9}, + [340] = {.index = 1309, .length = 8}, + [341] = {.index = 1317, .length = 9}, + [342] = {.index = 1326, .length = 10}, + [343] = {.index = 1336, .length = 2}, + [344] = {.index = 1338, .length = 9}, + [345] = {.index = 1347, .length = 11}, + [346] = {.index = 1358, .length = 10}, + [347] = {.index = 1368, .length = 11}, + [348] = {.index = 1379, .length = 11}, + [349] = {.index = 1390, .length = 12}, + [350] = {.index = 1402, .length = 10}, + [351] = {.index = 1412, .length = 11}, + [352] = {.index = 1423, .length = 12}, + [353] = {.index = 1435, .length = 10}, + [354] = {.index = 1445, .length = 11}, + [355] = {.index = 1456, .length = 11}, + [356] = {.index = 1467, .length = 12}, + [357] = {.index = 1479, .length = 11}, + [358] = {.index = 1490, .length = 12}, + [359] = {.index = 1502, .length = 13}, + [360] = {.index = 1515, .length = 11}, + [361] = {.index = 1526, .length = 12}, + [362] = {.index = 1538, .length = 12}, + [363] = {.index = 1550, .length = 13}, + [364] = {.index = 1563, .length = 11}, + [365] = {.index = 1574, .length = 12}, + [366] = {.index = 1586, .length = 12}, + [367] = {.index = 1598, .length = 13}, + [368] = {.index = 1611, .length = 11}, + [369] = {.index = 1622, .length = 12}, + [370] = {.index = 1634, .length = 13}, + [371] = {.index = 1647, .length = 8}, + [372] = {.index = 1655, .length = 9}, + [373] = {.index = 1664, .length = 9}, + [374] = {.index = 1673, .length = 10}, + [375] = {.index = 1683, .length = 11}, + [376] = {.index = 1694, .length = 10}, + [377] = {.index = 1704, .length = 9}, + [378] = {.index = 1713, .length = 10}, + [379] = {.index = 1723, .length = 10}, + [380] = {.index = 1733, .length = 11}, + [381] = {.index = 1744, .length = 2}, + [382] = {.index = 1746, .length = 11}, + [383] = {.index = 1757, .length = 12}, + [384] = {.index = 1769, .length = 13}, + [385] = {.index = 1782, .length = 11}, + [386] = {.index = 1793, .length = 12}, + [387] = {.index = 1805, .length = 12}, + [388] = {.index = 1817, .length = 13}, + [389] = {.index = 1830, .length = 11}, + [390] = {.index = 1841, .length = 12}, + [391] = {.index = 1853, .length = 12}, + [392] = {.index = 1865, .length = 13}, + [393] = {.index = 1878, .length = 11}, + [394] = {.index = 1889, .length = 12}, + [395] = {.index = 1901, .length = 13}, + [396] = {.index = 1914, .length = 12}, + [397] = {.index = 1926, .length = 13}, + [398] = {.index = 1939, .length = 13}, + [399] = {.index = 1952, .length = 14}, + [400] = {.index = 1966, .length = 12}, + [401] = {.index = 1978, .length = 13}, + [402] = {.index = 1991, .length = 14}, + [403] = {.index = 2005, .length = 12}, + [404] = {.index = 2017, .length = 13}, + [405] = {.index = 2030, .length = 13}, + [406] = {.index = 2043, .length = 14}, + [407] = {.index = 2057, .length = 13}, + [408] = {.index = 2070, .length = 9}, + [409] = {.index = 2079, .length = 11}, + [410] = {.index = 2090, .length = 10}, + [411] = {.index = 2100, .length = 11}, + [412] = {.index = 2111, .length = 11}, + [413] = {.index = 2122, .length = 12}, + [414] = {.index = 2134, .length = 10}, + [415] = {.index = 2144, .length = 11}, + [416] = {.index = 2155, .length = 12}, + [417] = {.index = 2167, .length = 10}, + [418] = {.index = 2177, .length = 11}, + [419] = {.index = 2188, .length = 11}, + [420] = {.index = 2199, .length = 12}, + [421] = {.index = 2211, .length = 12}, + [422] = {.index = 2223, .length = 13}, + [423] = {.index = 2236, .length = 13}, + [424] = {.index = 2249, .length = 14}, + [425] = {.index = 2263, .length = 12}, + [426] = {.index = 2275, .length = 13}, + [427] = {.index = 2288, .length = 14}, + [428] = {.index = 2302, .length = 12}, + [429] = {.index = 2314, .length = 13}, + [430] = {.index = 2327, .length = 13}, + [431] = {.index = 2340, .length = 14}, + [432] = {.index = 2354, .length = 13}, + [433] = {.index = 2367, .length = 13}, + [434] = {.index = 2380, .length = 14}, + [435] = {.index = 2394, .length = 14}, + [436] = {.index = 2408, .length = 15}, + [437] = {.index = 2423, .length = 14}, + [438] = {.index = 2437, .length = 13}, + [439] = {.index = 2450, .length = 14}, + [440] = {.index = 2464, .length = 15}, + [441] = {.index = 2479, .length = 11}, + [442] = {.index = 2490, .length = 12}, + [443] = {.index = 2502, .length = 13}, + [444] = {.index = 2515, .length = 11}, + [445] = {.index = 2526, .length = 12}, + [446] = {.index = 2538, .length = 12}, + [447] = {.index = 2550, .length = 13}, + [448] = {.index = 2563, .length = 11}, + [449] = {.index = 2574, .length = 12}, + [450] = {.index = 2586, .length = 12}, + [451] = {.index = 2598, .length = 13}, + [452] = {.index = 2611, .length = 11}, + [453] = {.index = 2622, .length = 12}, + [454] = {.index = 2634, .length = 13}, + [455] = {.index = 2647, .length = 13}, + [456] = {.index = 2660, .length = 14}, + [457] = {.index = 2674, .length = 14}, + [458] = {.index = 2688, .length = 15}, + [459] = {.index = 2703, .length = 14}, + [460] = {.index = 2717, .length = 13}, + [461] = {.index = 2730, .length = 14}, + [462] = {.index = 2744, .length = 15}, + [463] = {.index = 2759, .length = 14}, + [464] = {.index = 2773, .length = 15}, + [465] = {.index = 2788, .length = 16}, + [466] = {.index = 2804, .length = 15}, + [467] = {.index = 2819, .length = 12}, + [468] = {.index = 2831, .length = 13}, + [469] = {.index = 2844, .length = 13}, + [470] = {.index = 2857, .length = 14}, + [471] = {.index = 2871, .length = 12}, + [472] = {.index = 2883, .length = 13}, + [473] = {.index = 2896, .length = 14}, + [474] = {.index = 2910, .length = 12}, + [475] = {.index = 2922, .length = 13}, + [476] = {.index = 2935, .length = 13}, + [477] = {.index = 2948, .length = 14}, + [478] = {.index = 2962, .length = 13}, + [479] = {.index = 2975, .length = 14}, + [480] = {.index = 2989, .length = 15}, + [481] = {.index = 3004, .length = 16}, + [482] = {.index = 3020, .length = 15}, + [483] = {.index = 3035, .length = 16}, + [484] = {.index = 3051, .length = 13}, + [485] = {.index = 3064, .length = 14}, + [486] = {.index = 3078, .length = 14}, + [487] = {.index = 3092, .length = 15}, + [488] = {.index = 3107, .length = 14}, + [489] = {.index = 3121, .length = 13}, + [490] = {.index = 3134, .length = 14}, + [491] = {.index = 3148, .length = 15}, + [492] = {.index = 3163, .length = 16}, + [493] = {.index = 3179, .length = 14}, + [494] = {.index = 3193, .length = 15}, + [495] = {.index = 3208, .length = 16}, + [496] = {.index = 3224, .length = 15}, + [497] = {.index = 3239, .length = 16}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_text, 0}, + [1] = + {field_name, 0}, + [2] = + {field_computed_value, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_value, 0, .inherited = true}, + [5] = + {field_name, 0, .inherited = true}, + {field_value, 0, .inherited = true}, + [7] = + {field_default_value, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_return_type, 0, .inherited = true}, + [10] = + {field_body, 0, .inherited = true}, + {field_declaration_kind, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + [13] = + {field_interpolation, 1}, + {field_text, 0}, + [15] = + {field_interpolation, 0, .inherited = true}, + [16] = + {field_expr, 1}, + [17] = + {field_body, 0, .inherited = true}, + {field_default_value, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_return_type, 0, .inherited = true}, + [21] = + {field_bound_identifier, 0}, + [22] = + {field_default_value, 1, .inherited = true}, + {field_name, 1, .inherited = true}, + {field_return_type, 1, .inherited = true}, + [25] = + {field_name, 1}, + [26] = + {field_constructed_type, 0}, + [27] = + {field_suffix, 1}, + {field_target, 0}, + [29] = + {field_operation, 1}, + {field_target, 0}, + [31] = + {field_start, 0}, + [32] = + {field_end, 1}, + [33] = + {field_operation, 0}, + {field_target, 1}, + [35] = + {field_body, 1}, + {field_default_value, 0, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_return_type, 0, .inherited = true}, + [39] = + {field_default_value, 1, .inherited = true}, + {field_name, 0, .inherited = true}, + [41] = + {field_computed_value, 1, .inherited = true}, + {field_name, 1, .inherited = true}, + {field_value, 1, .inherited = true}, + [44] = + {field_name, 1, .inherited = true}, + {field_value, 1, .inherited = true}, + [46] = + {field_body, 1, .inherited = true}, + {field_declaration_kind, 1, .inherited = true}, + {field_name, 1, .inherited = true}, + [49] = + {field_interpolation, 0, .inherited = true}, + {field_text, 0, .inherited = true}, + {field_text, 1}, + [52] = + {field_interpolation, 0, .inherited = true}, + {field_interpolation, 1, .inherited = true}, + {field_text, 0, .inherited = true}, + {field_text, 1, .inherited = true}, + [56] = + {field_value, 0}, + [57] = + {field_interpolation, 0}, + [58] = + {field_reference_specifier, 0, .inherited = true}, + [59] = + {field_interpolation, 1, .inherited = true}, + {field_text, 1, .inherited = true}, + [61] = + {field_value, 1}, + [62] = + {field_name, 0, .inherited = true}, + {field_type, 0}, + [64] = + {field_element, 1}, + {field_name, 1, .inherited = true}, + [66] = + {field_wrapped, 0}, + [67] = + {field_element, 1}, + [68] = + {field_key, 1, .inherited = true}, + {field_value, 1, .inherited = true}, + [70] = + {field_captures, 1}, + [71] = + {field_result, 1}, + [72] = + {field_body, 1, .inherited = true}, + {field_default_value, 1, .inherited = true}, + {field_name, 1, .inherited = true}, + {field_return_type, 1, .inherited = true}, + [76] = + {field_condition, 1}, + [77] = + {field_name, 1, .inherited = true}, + [78] = + {field_body, 2}, + {field_declaration_kind, 0}, + {field_name, 1}, + [81] = + {field_computed_value, 2}, + {field_name, 1}, + [83] = + {field_computed_value, 2, .inherited = true}, + {field_name, 1}, + {field_name, 2, .inherited = true}, + {field_value, 2, .inherited = true}, + [87] = + {field_end, 2}, + {field_op, 1}, + {field_start, 0}, + [90] = + {field_lhs, 0}, + {field_op, 1}, + {field_rhs, 2}, + [93] = + {field_name, 2, .inherited = true}, + {field_op, 1}, + {field_target, 0}, + {field_type, 2}, + [97] = + {field_expr, 0}, + {field_name, 2, .inherited = true}, + {field_type, 2}, + [100] = + {field_suffix, 1}, + [101] = + {field_if_nil, 2}, + {field_value, 0}, + [103] = + {field_operator, 1}, + {field_result, 2}, + {field_target, 0}, + [106] = + {field_default_value, 2, .inherited = true}, + {field_name, 0, .inherited = true}, + [108] = + {field_name, 2}, + [109] = + {field_default_value, 2, .inherited = true}, + {field_name, 2, .inherited = true}, + {field_return_type, 2, .inherited = true}, + [112] = + {field_reference_specifier, 0}, + [113] = + {field_interpolation, 1, .inherited = true}, + [114] = + {field_interpolation, 0}, + {field_interpolation, 1, .inherited = true}, + [116] = + {field_reference_specifier, 1, .inherited = true}, + [117] = + {field_reference_specifier, 0, .inherited = true}, + {field_reference_specifier, 1, .inherited = true}, + [119] = + {field_name, 2, .inherited = true}, + {field_value, 1}, + {field_value, 2, .inherited = true}, + [122] = + {field_name, 0, .inherited = true}, + {field_name, 1, .inherited = true}, + {field_value, 0, .inherited = true}, + {field_value, 1, .inherited = true}, + [126] = + {field_name, 0, .inherited = true}, + {field_name, 1, .inherited = true}, + {field_type, 1}, + [129] = + {field_name, 1, .inherited = true}, + {field_type, 1}, + [131] = + {field_name, 2, .inherited = true}, + {field_params, 0}, + {field_return_type, 2}, + [134] = + {field_key, 0}, + {field_value, 2}, + [136] = + {field_element, 1}, + {field_element, 2, .inherited = true}, + [138] = + {field_element, 0, .inherited = true}, + {field_element, 1, .inherited = true}, + [140] = + {field_key, 1, .inherited = true}, + {field_key, 2, .inherited = true}, + {field_value, 1, .inherited = true}, + {field_value, 2, .inherited = true}, + [144] = + {field_key, 0, .inherited = true}, + {field_key, 1, .inherited = true}, + {field_value, 0, .inherited = true}, + {field_value, 1, .inherited = true}, + [148] = + {field_name, 0}, + {field_name, 2, .inherited = true}, + {field_type, 2}, + [151] = + {field_name, 0, .inherited = true}, + [152] = + {field_type, 1}, + [153] = + {field_name, 2, .inherited = true}, + {field_return_type, 2}, + [155] = + {field_condition, 1}, + {field_condition, 2, .inherited = true}, + [157] = + {field_condition, 0, .inherited = true}, + {field_condition, 1, .inherited = true}, + [159] = + {field_name, 2, .inherited = true}, + [160] = + {field_name, 1}, + {field_name, 3, .inherited = true}, + {field_value, 3}, + [163] = + {field_inherits_from, 0}, + [164] = + {field_body, 3}, + {field_declaration_kind, 0}, + {field_name, 1}, + [167] = + {field_body, 0, .inherited = true}, + [168] = + {field_computed_value, 3}, + {field_name, 1}, + [170] = + {field_computed_value, 3, .inherited = true}, + {field_name, 1}, + {field_name, 3, .inherited = true}, + {field_value, 3, .inherited = true}, + [174] = + {field_name, 1}, + {field_value, 3}, + [176] = + {field_computed_value, 2}, + {field_computed_value, 3, .inherited = true}, + {field_name, 1}, + {field_name, 3, .inherited = true}, + {field_value, 3, .inherited = true}, + [181] = + {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}, + [187] = + {field_body, 3}, + {field_declaration_kind, 1}, + {field_name, 2}, + [190] = + {field_must_inherit, 3}, + {field_name, 1}, + {field_name, 3, .inherited = true}, + [193] = + {field_default_value, 3}, + {field_name, 1}, + {field_name, 3, .inherited = true}, + [196] = + {field_name, 0, .inherited = true}, + {field_name, 1, .inherited = true}, + [198] = + {field_default_value, 1, .inherited = true}, + [199] = + {field_default_value, 1, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_name, 3, .inherited = true}, + {field_return_type, 3}, + [203] = + {field_computed_value, 3}, + {field_name, 2}, + [205] = + {field_computed_value, 3, .inherited = true}, + {field_name, 2}, + {field_name, 3, .inherited = true}, + {field_value, 3, .inherited = true}, + [209] = + {field_name, 0}, + {field_value, 2}, + [211] = + {field_interpolation, 1}, + [212] = + {field_interpolation, 0, .inherited = true}, + {field_interpolation, 1, .inherited = true}, + [214] = + {field_name, 0, .inherited = true}, + {field_name, 2, .inherited = true}, + {field_type, 2}, + [217] = + {field_key, 1}, + {field_name, 1, .inherited = true}, + {field_name, 3, .inherited = true}, + {field_value, 3}, + [221] = + {field_name, 3, .inherited = true}, + {field_params, 0}, + {field_return_type, 3}, + [224] = + {field_name, 3, .inherited = true}, + {field_return_type, 3}, + [226] = + {field_name, 0}, + {field_name, 3, .inherited = true}, + {field_type, 3}, + [229] = + {field_external_name, 0}, + {field_name, 1}, + {field_name, 3, .inherited = true}, + {field_type, 3}, + [233] = + {field_captures, 1}, + {field_type, 2}, + [235] = + {field_name, 1}, + {field_name, 3, .inherited = true}, + {field_type, 3}, + [238] = + {field_error, 1}, + [239] = + {field_collection, 3}, + {field_item, 1}, + [241] = + {field_bound_identifier, 1}, + {field_collection, 3}, + [243] = + {field_condition, 4}, + [244] = + {field_name, 1}, + {field_name, 4, .inherited = true}, + {field_value, 4}, + [247] = + {field_body, 4}, + {field_declaration_kind, 0}, + {field_name, 1}, + [250] = + {field_body, 1}, + [251] = + {field_body, 1, .inherited = true}, + [252] = + {field_body, 0, .inherited = true}, + {field_body, 1, .inherited = true}, + [254] = + {field_computed_value, 4}, + {field_name, 1}, + [256] = + {field_computed_value, 4, .inherited = true}, + {field_name, 1}, + {field_name, 4, .inherited = true}, + {field_value, 4, .inherited = true}, + [260] = + {field_name, 1}, + {field_value, 4}, + [262] = + {field_computed_value, 3}, + {field_computed_value, 4, .inherited = true}, + {field_name, 1}, + {field_name, 4, .inherited = true}, + {field_value, 4, .inherited = true}, + [267] = + {field_computed_value, 4, .inherited = true}, + {field_name, 1}, + {field_name, 4, .inherited = true}, + {field_value, 3}, + {field_value, 4, .inherited = true}, + [272] = + {field_body, 4}, + {field_declaration_kind, 1}, + {field_name, 2}, + [275] = + {field_default_value, 4}, + {field_name, 1}, + {field_name, 4, .inherited = true}, + [278] = + {field_name, 1, .inherited = true}, + {field_name, 2, .inherited = true}, + [280] = + {field_condition, 0}, + {field_if_false, 4}, + {field_if_true, 2}, + [283] = + {field_default_value, 1, .inherited = true}, + {field_default_value, 2, .inherited = true}, + [285] = + {field_default_value, 0, .inherited = true}, + {field_default_value, 1, .inherited = true}, + [287] = + {field_default_value, 2}, + [288] = + {field_default_value, 2, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_return_type, 4}, + [292] = + {field_default_value, 1, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_return_type, 4}, + [296] = + {field_computed_value, 4}, + {field_name, 2}, + [298] = + {field_computed_value, 4, .inherited = true}, + {field_name, 2}, + {field_name, 4, .inherited = true}, + {field_value, 4, .inherited = true}, + [302] = + {field_name, 2}, + {field_value, 4}, + [304] = + {field_computed_value, 3}, + {field_computed_value, 4, .inherited = true}, + {field_name, 2}, + {field_name, 4, .inherited = true}, + {field_value, 4, .inherited = true}, + [309] = + {field_must_inherit, 4}, + {field_name, 2}, + {field_name, 4, .inherited = true}, + [312] = + {field_default_value, 4}, + {field_name, 2}, + {field_name, 4, .inherited = true}, + [315] = + {field_name, 1}, + {field_name, 4, .inherited = true}, + {field_value, 3}, + {field_value, 4, .inherited = true}, + [319] = + {field_name, 4, .inherited = true}, + {field_params, 0}, + {field_return_type, 4}, + [322] = + {field_name, 4, .inherited = true}, + {field_return_type, 4}, + [324] = + {field_external_name, 0}, + {field_name, 1}, + {field_name, 4, .inherited = true}, + {field_type, 4}, + [328] = + {field_name, 1}, + {field_name, 4, .inherited = true}, + {field_type, 4}, + [331] = + {field_external_name, 1}, + {field_name, 2}, + {field_name, 4, .inherited = true}, + {field_type, 4}, + [335] = + {field_collection, 4}, + {field_item, 2}, + [337] = + {field_bound_identifier, 2}, + {field_collection, 4}, + [339] = + {field_collection, 4}, + {field_item, 1}, + {field_item, 2}, + {field_name, 2, .inherited = true}, + [343] = + {field_collection, 4}, + {field_item, 1}, + [345] = + {field_collection, 4}, + {field_item, 1}, + {field_item, 2}, + [348] = + {field_bound_identifier, 1}, + {field_collection, 4}, + [350] = + {field_bound_identifier, 1}, + {field_collection, 4}, + {field_item, 2}, + [353] = + {field_name, 3, .inherited = true}, + [354] = + {field_condition, 4}, + {field_condition, 5, .inherited = true}, + [356] = + {field_condition, 5}, + [357] = + {field_constrained_type, 0}, + {field_inherits_from, 2}, + {field_name, 2, .inherited = true}, + [360] = + {field_constrained_type, 0}, + {field_must_equal, 2}, + {field_name, 2, .inherited = true}, + [363] = + {field_body, 5}, + {field_declaration_kind, 0}, + {field_name, 1}, + [366] = + {field_body, 2}, + [367] = + {field_data_contents, 2, .inherited = true}, + {field_name, 1}, + {field_raw_value, 2, .inherited = true}, + [370] = + {field_data_contents, 0}, + [371] = + {field_data_contents, 2, .inherited = true}, + {field_name, 1}, + {field_name, 2, .inherited = true}, + {field_raw_value, 2, .inherited = true}, + [375] = + {field_name, 1}, + {field_value, 5}, + [377] = + {field_computed_value, 4}, + {field_computed_value, 5, .inherited = true}, + {field_name, 1}, + {field_name, 5, .inherited = true}, + {field_value, 5, .inherited = true}, + [382] = + {field_computed_value, 5, .inherited = true}, + {field_name, 1}, + {field_name, 5, .inherited = true}, + {field_value, 4}, + {field_value, 5, .inherited = true}, + [387] = + {field_body, 5}, + {field_declaration_kind, 1}, + {field_name, 2}, + [390] = + {field_default_value, 5}, + {field_must_inherit, 3}, + {field_name, 1}, + {field_name, 3, .inherited = true}, + {field_name, 5, .inherited = true}, + [395] = + {field_default_value, 3}, + [396] = + {field_default_value, 2, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_name, 5, .inherited = true}, + {field_return_type, 5}, + [400] = + {field_default_value, 1, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_name, 5, .inherited = true}, + {field_return_type, 5}, + [404] = + {field_computed_value, 5}, + {field_name, 2}, + [406] = + {field_computed_value, 5, .inherited = true}, + {field_name, 2}, + {field_name, 5, .inherited = true}, + {field_value, 5, .inherited = true}, + [410] = + {field_name, 2}, + {field_value, 5}, + [412] = + {field_computed_value, 4}, + {field_computed_value, 5, .inherited = true}, + {field_name, 2}, + {field_name, 5, .inherited = true}, + {field_value, 5, .inherited = true}, + [417] = + {field_computed_value, 5, .inherited = true}, + {field_name, 2}, + {field_name, 5, .inherited = true}, + {field_value, 4}, + {field_value, 5, .inherited = true}, + [422] = + {field_default_value, 5}, + {field_name, 2}, + {field_name, 5, .inherited = true}, + [425] = + {field_name, 5, .inherited = true}, + {field_return_type, 5}, + [427] = + {field_external_name, 1}, + {field_name, 2}, + {field_name, 5, .inherited = true}, + {field_type, 5}, + [431] = + {field_collection, 5}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + [435] = + {field_collection, 5}, + {field_item, 2}, + {field_item, 3}, + {field_name, 3, .inherited = true}, + [439] = + {field_collection, 5}, + {field_item, 2}, + [441] = + {field_collection, 5}, + {field_item, 2}, + {field_item, 3}, + [444] = + {field_bound_identifier, 2}, + {field_collection, 5}, + [446] = + {field_bound_identifier, 2}, + {field_collection, 5}, + {field_item, 3}, + [449] = + {field_collection, 5}, + {field_item, 1}, + {field_item, 2}, + {field_name, 2, .inherited = true}, + [453] = + {field_collection, 5}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_name, 2, .inherited = true}, + [458] = + {field_collection, 5}, + {field_item, 1}, + {field_item, 2}, + [461] = + {field_bound_identifier, 1}, + {field_collection, 5}, + {field_item, 2}, + [464] = + {field_name, 4, .inherited = true}, + [465] = + {field_collection, 5}, + {field_item, 3}, + [467] = + {field_bound_identifier, 3}, + {field_collection, 5}, + [469] = + {field_name, 3, .inherited = true}, + {field_name, 4, .inherited = true}, + [471] = + {field_collection, 5}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_name, 3, .inherited = true}, + [476] = + {field_condition, 5}, + {field_condition, 6, .inherited = true}, + [478] = + {field_constrained_type, 1}, + {field_inherits_from, 3}, + {field_name, 3, .inherited = true}, + [481] = + {field_constrained_type, 1}, + {field_must_equal, 3}, + {field_name, 3, .inherited = true}, + [484] = + {field_default_value, 2, .inherited = true}, + [485] = + {field_body, 6}, + {field_declaration_kind, 0}, + {field_name, 1}, + [488] = + {field_raw_value, 1}, + [489] = + {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}, + [495] = + {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}, + [501] = + {field_data_contents, 3, .inherited = true}, + {field_name, 2}, + {field_raw_value, 3, .inherited = true}, + [504] = + {field_data_contents, 3, .inherited = true}, + {field_name, 2}, + {field_name, 3, .inherited = true}, + {field_raw_value, 3, .inherited = true}, + [508] = + {field_name, 3}, + [509] = + {field_computed_value, 6, .inherited = true}, + {field_name, 1}, + {field_name, 6, .inherited = true}, + {field_value, 5}, + {field_value, 6, .inherited = true}, + [514] = + {field_body, 6}, + {field_declaration_kind, 1}, + {field_name, 2}, + [517] = + {field_default_value, 6}, + {field_must_inherit, 3}, + {field_name, 1}, + {field_name, 3, .inherited = true}, + {field_name, 6, .inherited = true}, + [522] = + {field_default_value, 2, .inherited = true}, + {field_name, 0, .inherited = true}, + {field_name, 6, .inherited = true}, + {field_return_type, 6}, + [526] = + {field_name, 2}, + {field_value, 6}, + [528] = + {field_computed_value, 5}, + {field_computed_value, 6, .inherited = true}, + {field_name, 2}, + {field_name, 6, .inherited = true}, + {field_value, 6, .inherited = true}, + [533] = + {field_computed_value, 6, .inherited = true}, + {field_name, 2}, + {field_name, 6, .inherited = true}, + {field_value, 5}, + {field_value, 6, .inherited = true}, + [538] = + {field_default_value, 6}, + {field_must_inherit, 4}, + {field_name, 2}, + {field_name, 4, .inherited = true}, + {field_name, 6, .inherited = true}, + [543] = + {field_name, 6, .inherited = true}, + {field_return_type, 6}, + [545] = + {field_collection, 6}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + [549] = + {field_collection, 6}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + [554] = + {field_collection, 6}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + [558] = + {field_collection, 6}, + {field_item, 2}, + {field_item, 3}, + {field_name, 3, .inherited = true}, + [562] = + {field_collection, 6}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_name, 3, .inherited = true}, + [567] = + {field_collection, 6}, + {field_item, 2}, + {field_item, 3}, + [570] = + {field_bound_identifier, 2}, + {field_collection, 6}, + {field_item, 3}, + [573] = + {field_collection, 6}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_name, 4, .inherited = true}, + [578] = + {field_collection, 6}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_name, 2, .inherited = true}, + [583] = + {field_name, 4, .inherited = true}, + {field_name, 5, .inherited = true}, + [585] = + {field_collection, 6}, + {field_item, 3}, + {field_item, 4}, + {field_name, 4, .inherited = true}, + [589] = + {field_collection, 6}, + {field_item, 3}, + [591] = + {field_collection, 6}, + {field_item, 3}, + {field_item, 4}, + [594] = + {field_bound_identifier, 3}, + {field_collection, 6}, + [596] = + {field_bound_identifier, 3}, + {field_collection, 6}, + {field_item, 4}, + [599] = + {field_name, 5, .inherited = true}, + [600] = + {field_collection, 6}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_name, 3, .inherited = true}, + [605] = + {field_collection, 6}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_name, 3, .inherited = true}, + [611] = + {field_default_value, 1, .inherited = true}, + {field_name, 3, .inherited = true}, + {field_return_type, 3}, + [614] = + {field_default_value, 3, .inherited = true}, + [615] = + {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}, + [621] = + {field_data_contents, 4, .inherited = true}, + {field_name, 3}, + {field_raw_value, 4, .inherited = true}, + [624] = + {field_data_contents, 4, .inherited = true}, + {field_name, 3}, + {field_name, 4, .inherited = true}, + {field_raw_value, 4, .inherited = true}, + [628] = + {field_body, 7}, + {field_declaration_kind, 1}, + {field_name, 2}, + [631] = + {field_computed_value, 7, .inherited = true}, + {field_name, 2}, + {field_name, 7, .inherited = true}, + {field_value, 6}, + {field_value, 7, .inherited = true}, + [636] = + {field_default_value, 7}, + {field_must_inherit, 4}, + {field_name, 2}, + {field_name, 4, .inherited = true}, + {field_name, 7, .inherited = true}, + [641] = + {field_collection, 7}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + [647] = + {field_collection, 7}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + [652] = + {field_collection, 7}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + [656] = + {field_collection, 7}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + [661] = + {field_collection, 7}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_name, 3, .inherited = true}, + [666] = + {field_collection, 7}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_name, 4, .inherited = true}, + [671] = + {field_collection, 7}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_name, 4, .inherited = true}, + [677] = + {field_name, 6, .inherited = true}, + [678] = + {field_collection, 7}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + [682] = + {field_collection, 7}, + {field_item, 3}, + {field_item, 4}, + {field_name, 4, .inherited = true}, + [686] = + {field_collection, 7}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_name, 4, .inherited = true}, + [691] = + {field_collection, 7}, + {field_item, 3}, + {field_item, 4}, + [694] = + {field_bound_identifier, 3}, + {field_collection, 7}, + {field_item, 4}, + [697] = + {field_collection, 7}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_name, 5, .inherited = true}, + [702] = + {field_name, 5, .inherited = true}, + {field_name, 6, .inherited = true}, + [704] = + {field_collection, 7}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_name, 3, .inherited = true}, + [710] = + {field_default_value, 2, .inherited = true}, + {field_name, 4, .inherited = true}, + {field_return_type, 4}, + [713] = + {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}, + [719] = + {field_collection, 8}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + [725] = + {field_collection, 8}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + [732] = + {field_collection, 8}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + [738] = + {field_collection, 8}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + [743] = + {field_collection, 8}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_name, 4, .inherited = true}, + [749] = + {field_collection, 8}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_name, 5, .inherited = true}, + [757] = + {field_name, 6, .inherited = true}, + {field_name, 7, .inherited = true}, + [759] = + {field_collection, 8}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + [763] = + {field_collection, 8}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + [768] = + {field_collection, 8}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_name, 4, .inherited = true}, + [773] = + {field_collection, 8}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_name, 5, .inherited = true}, + [778] = + {field_collection, 8}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_name, 5, .inherited = true}, + [784] = + {field_default_value, 3, .inherited = true}, + {field_name, 5, .inherited = true}, + {field_return_type, 5}, + [787] = + {field_collection, 9}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + [794] = + {field_collection, 9}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + [802] = + {field_collection, 9}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + [808] = + {field_collection, 9}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + [815] = + {field_collection, 9}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_name, 6, .inherited = true}, + [823] = + {field_collection, 9}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_name, 6, .inherited = true}, + [832] = + {field_collection, 9}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_name, 5, .inherited = true}, + [840] = + {field_collection, 9}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_name, 5, .inherited = true}, + [849] = + {field_collection, 9}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_name, 5, .inherited = true}, + {field_name, 6, .inherited = true}, + [859] = + {field_collection, 9}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + [865] = + {field_collection, 9}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + [870] = + {field_collection, 9}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_name, 5, .inherited = true}, + [876] = + {field_name, 1, .inherited = true}, + {field_name, 4, .inherited = true}, + [878] = + {field_collection, 10}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + [886] = + {field_collection, 10}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + [895] = + {field_collection, 10}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + [902] = + {field_collection, 10}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + [910] = + {field_collection, 10}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_name, 7, .inherited = true}, + [919] = + {field_collection, 10}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_name, 6, .inherited = true}, + [927] = + {field_collection, 10}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_name, 6, .inherited = true}, + [936] = + {field_collection, 10}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_name, 6, .inherited = true}, + {field_name, 7, .inherited = true}, + [946] = + {field_collection, 10}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_name, 6, .inherited = true}, + [955] = + {field_collection, 10}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_name, 6, .inherited = true}, + [965] = + {field_collection, 10}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_name, 6, .inherited = true}, + {field_name, 7, .inherited = true}, + [976] = + {field_collection, 10}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_name, 7, .inherited = true}, + [986] = + {field_collection, 10}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_name, 5, .inherited = true}, + [995] = + {field_collection, 10}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_name, 5, .inherited = true}, + [1005] = + {field_collection, 10}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_name, 5, .inherited = true}, + {field_name, 6, .inherited = true}, + [1015] = + {field_collection, 10}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_name, 5, .inherited = true}, + {field_name, 6, .inherited = true}, + [1026] = + {field_collection, 10}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + [1032] = + {field_collection, 10}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + [1039] = + {field_collection, 10}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_name, 7, .inherited = true}, + [1047] = + {field_collection, 11}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + [1056] = + {field_collection, 11}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + [1064] = + {field_collection, 11}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + [1073] = + {field_collection, 11}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_name, 7, .inherited = true}, + [1082] = + {field_collection, 11}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 7, .inherited = true}, + [1092] = + {field_collection, 11}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [1103] = + {field_collection, 11}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 8, .inherited = true}, + [1113] = + {field_collection, 11}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_name, 6, .inherited = true}, + [1122] = + {field_collection, 11}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 6, .inherited = true}, + [1132] = + {field_collection, 11}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_name, 6, .inherited = true}, + {field_name, 7, .inherited = true}, + [1142] = + {field_collection, 11}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 6, .inherited = true}, + {field_name, 7, .inherited = true}, + [1153] = + {field_collection, 11}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 8, .inherited = true}, + [1164] = + {field_collection, 11}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_name, 6, .inherited = true}, + [1174] = + {field_collection, 11}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 6, .inherited = true}, + [1185] = + {field_collection, 11}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_name, 6, .inherited = true}, + {field_name, 7, .inherited = true}, + [1196] = + {field_collection, 11}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 6, .inherited = true}, + {field_name, 7, .inherited = true}, + [1208] = + {field_collection, 11}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_name, 7, .inherited = true}, + [1218] = + {field_collection, 11}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 7, .inherited = true}, + [1229] = + {field_collection, 11}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [1241] = + {field_collection, 11}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_name, 5, .inherited = true}, + [1251] = + {field_collection, 11}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 5, .inherited = true}, + [1262] = + {field_collection, 11}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_name, 5, .inherited = true}, + {field_name, 6, .inherited = true}, + [1273] = + {field_collection, 11}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 5, .inherited = true}, + {field_name, 6, .inherited = true}, + [1285] = + {field_collection, 11}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + [1292] = + {field_collection, 11}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + [1300] = + {field_collection, 11}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 8, .inherited = true}, + [1309] = + {field_collection, 11}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_name, 7, .inherited = true}, + [1317] = + {field_collection, 11}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 7, .inherited = true}, + [1326] = + {field_collection, 11}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [1336] = + {field_name, 3, .inherited = true}, + {field_name, 6, .inherited = true}, + [1338] = + {field_collection, 12}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + [1347] = + {field_collection, 12}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 9, .inherited = true}, + [1358] = + {field_collection, 12}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 7, .inherited = true}, + [1368] = + {field_collection, 12}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 7, .inherited = true}, + [1379] = + {field_collection, 12}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [1390] = + {field_collection, 12}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [1402] = + {field_collection, 12}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 8, .inherited = true}, + [1412] = + {field_collection, 12}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 8, .inherited = true}, + [1423] = + {field_collection, 12}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [1435] = + {field_collection, 12}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 6, .inherited = true}, + [1445] = + {field_collection, 12}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 6, .inherited = true}, + [1456] = + {field_collection, 12}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 6, .inherited = true}, + {field_name, 7, .inherited = true}, + [1467] = + {field_collection, 12}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 6, .inherited = true}, + {field_name, 7, .inherited = true}, + [1479] = + {field_collection, 12}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 8, .inherited = true}, + [1490] = + {field_collection, 12}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 8, .inherited = true}, + [1502] = + {field_collection, 12}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [1515] = + {field_collection, 12}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 6, .inherited = true}, + [1526] = + {field_collection, 12}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 6, .inherited = true}, + [1538] = + {field_collection, 12}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 6, .inherited = true}, + {field_name, 7, .inherited = true}, + [1550] = + {field_collection, 12}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 6, .inherited = true}, + {field_name, 7, .inherited = true}, + [1563] = + {field_collection, 12}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 7, .inherited = true}, + [1574] = + {field_collection, 12}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 7, .inherited = true}, + [1586] = + {field_collection, 12}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [1598] = + {field_collection, 12}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [1611] = + {field_collection, 12}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 5, .inherited = true}, + [1622] = + {field_collection, 12}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 5, .inherited = true}, + {field_name, 6, .inherited = true}, + [1634] = + {field_collection, 12}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 5, .inherited = true}, + {field_name, 6, .inherited = true}, + [1647] = + {field_collection, 12}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + [1655] = + {field_collection, 12}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + [1664] = + {field_collection, 12}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 8, .inherited = true}, + [1673] = + {field_collection, 12}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 8, .inherited = true}, + [1683] = + {field_collection, 12}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [1694] = + {field_collection, 12}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 9, .inherited = true}, + [1704] = + {field_collection, 12}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 7, .inherited = true}, + [1713] = + {field_collection, 12}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 7, .inherited = true}, + [1723] = + {field_collection, 12}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [1733] = + {field_collection, 12}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [1744] = + {field_name, 4, .inherited = true}, + {field_name, 7, .inherited = true}, + [1746] = + {field_collection, 13}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 9, .inherited = true}, + [1757] = + {field_collection, 13}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 9, .inherited = true}, + [1769] = + {field_collection, 13}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 9, .inherited = true}, + {field_name, 10, .inherited = true}, + [1782] = + {field_collection, 13}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 7, .inherited = true}, + [1793] = + {field_collection, 13}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 7, .inherited = true}, + [1805] = + {field_collection, 13}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [1817] = + {field_collection, 13}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [1830] = + {field_collection, 13}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 8, .inherited = true}, + [1841] = + {field_collection, 13}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 8, .inherited = true}, + [1853] = + {field_collection, 13}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [1865] = + {field_collection, 13}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [1878] = + {field_collection, 13}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 6, .inherited = true}, + [1889] = + {field_collection, 13}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 6, .inherited = true}, + {field_name, 7, .inherited = true}, + [1901] = + {field_collection, 13}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 6, .inherited = true}, + {field_name, 7, .inherited = true}, + [1914] = + {field_collection, 13}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 8, .inherited = true}, + [1926] = + {field_collection, 13}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 8, .inherited = true}, + [1939] = + {field_collection, 13}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [1952] = + {field_collection, 13}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [1966] = + {field_collection, 13}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 6, .inherited = true}, + [1978] = + {field_collection, 13}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 6, .inherited = true}, + {field_name, 7, .inherited = true}, + [1991] = + {field_collection, 13}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 6, .inherited = true}, + {field_name, 7, .inherited = true}, + [2005] = + {field_collection, 13}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 7, .inherited = true}, + [2017] = + {field_collection, 13}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 7, .inherited = true}, + [2030] = + {field_collection, 13}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [2043] = + {field_collection, 13}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [2057] = + {field_collection, 13}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 5, .inherited = true}, + {field_name, 6, .inherited = true}, + [2070] = + {field_collection, 13}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + [2079] = + {field_collection, 13}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 10, .inherited = true}, + [2090] = + {field_collection, 13}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 8, .inherited = true}, + [2100] = + {field_collection, 13}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 8, .inherited = true}, + [2111] = + {field_collection, 13}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [2122] = + {field_collection, 13}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [2134] = + {field_collection, 13}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 9, .inherited = true}, + [2144] = + {field_collection, 13}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 9, .inherited = true}, + [2155] = + {field_collection, 13}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 9, .inherited = true}, + {field_name, 10, .inherited = true}, + [2167] = + {field_collection, 13}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 7, .inherited = true}, + [2177] = + {field_collection, 13}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 7, .inherited = true}, + [2188] = + {field_collection, 13}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [2199] = + {field_collection, 13}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [2211] = + {field_collection, 14}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 9, .inherited = true}, + [2223] = + {field_collection, 14}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 9, .inherited = true}, + [2236] = + {field_collection, 14}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 9, .inherited = true}, + {field_name, 10, .inherited = true}, + [2249] = + {field_collection, 14}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 9, .inherited = true}, + {field_name, 10, .inherited = true}, + [2263] = + {field_collection, 14}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 7, .inherited = true}, + [2275] = + {field_collection, 14}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [2288] = + {field_collection, 14}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [2302] = + {field_collection, 14}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 8, .inherited = true}, + [2314] = + {field_collection, 14}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 8, .inherited = true}, + [2327] = + {field_collection, 14}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [2340] = + {field_collection, 14}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [2354] = + {field_collection, 14}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 6, .inherited = true}, + {field_name, 7, .inherited = true}, + [2367] = + {field_collection, 14}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 8, .inherited = true}, + [2380] = + {field_collection, 14}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 8, .inherited = true}, + [2394] = + {field_collection, 14}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [2408] = + {field_collection, 14}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [2423] = + {field_collection, 14}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 6, .inherited = true}, + {field_name, 7, .inherited = true}, + [2437] = + {field_collection, 14}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 7, .inherited = true}, + [2450] = + {field_collection, 14}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [2464] = + {field_collection, 14}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [2479] = + {field_collection, 14}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 10, .inherited = true}, + [2490] = + {field_collection, 14}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 10, .inherited = true}, + [2502] = + {field_collection, 14}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 10, .inherited = true}, + {field_name, 11, .inherited = true}, + [2515] = + {field_collection, 14}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 8, .inherited = true}, + [2526] = + {field_collection, 14}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 8, .inherited = true}, + [2538] = + {field_collection, 14}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [2550] = + {field_collection, 14}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [2563] = + {field_collection, 14}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 9, .inherited = true}, + [2574] = + {field_collection, 14}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 9, .inherited = true}, + [2586] = + {field_collection, 14}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 9, .inherited = true}, + {field_name, 10, .inherited = true}, + [2598] = + {field_collection, 14}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 9, .inherited = true}, + {field_name, 10, .inherited = true}, + [2611] = + {field_collection, 14}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 7, .inherited = true}, + [2622] = + {field_collection, 14}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [2634] = + {field_collection, 14}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [2647] = + {field_collection, 15}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 9, .inherited = true}, + [2660] = + {field_collection, 15}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_name, 9, .inherited = true}, + [2674] = + {field_collection, 15}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 9, .inherited = true}, + {field_name, 10, .inherited = true}, + [2688] = + {field_collection, 15}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_name, 9, .inherited = true}, + {field_name, 10, .inherited = true}, + [2703] = + {field_collection, 15}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [2717] = + {field_collection, 15}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 8, .inherited = true}, + [2730] = + {field_collection, 15}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [2744] = + {field_collection, 15}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [2759] = + {field_collection, 15}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 8, .inherited = true}, + [2773] = + {field_collection, 15}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [2788] = + {field_collection, 15}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [2804] = + {field_collection, 15}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [2819] = + {field_collection, 15}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 10, .inherited = true}, + [2831] = + {field_collection, 15}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_name, 10, .inherited = true}, + [2844] = + {field_collection, 15}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 10, .inherited = true}, + {field_name, 11, .inherited = true}, + [2857] = + {field_collection, 15}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_name, 10, .inherited = true}, + {field_name, 11, .inherited = true}, + [2871] = + {field_collection, 15}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 8, .inherited = true}, + [2883] = + {field_collection, 15}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [2896] = + {field_collection, 15}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [2910] = + {field_collection, 15}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 9, .inherited = true}, + [2922] = + {field_collection, 15}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_name, 9, .inherited = true}, + [2935] = + {field_collection, 15}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 9, .inherited = true}, + {field_name, 10, .inherited = true}, + [2948] = + {field_collection, 15}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_name, 9, .inherited = true}, + {field_name, 10, .inherited = true}, + [2962] = + {field_collection, 15}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_name, 7, .inherited = true}, + {field_name, 8, .inherited = true}, + [2975] = + {field_collection, 16}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_name, 9, .inherited = true}, + [2989] = + {field_collection, 16}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_name, 9, .inherited = true}, + {field_name, 10, .inherited = true}, + [3004] = + {field_collection, 16}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_item, 14}, + {field_name, 9, .inherited = true}, + {field_name, 10, .inherited = true}, + [3020] = + {field_collection, 16}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [3035] = + {field_collection, 16}, + {field_item, 1}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [3051] = + {field_collection, 16}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_name, 10, .inherited = true}, + [3064] = + {field_collection, 16}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_item, 14}, + {field_name, 10, .inherited = true}, + [3078] = + {field_collection, 16}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_name, 10, .inherited = true}, + {field_name, 11, .inherited = true}, + [3092] = + {field_collection, 16}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_item, 14}, + {field_name, 10, .inherited = true}, + {field_name, 11, .inherited = true}, + [3107] = + {field_collection, 16}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_name, 8, .inherited = true}, + {field_name, 9, .inherited = true}, + [3121] = + {field_collection, 16}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_name, 9, .inherited = true}, + [3134] = + {field_collection, 16}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_name, 9, .inherited = true}, + {field_name, 10, .inherited = true}, + [3148] = + {field_collection, 16}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_item, 14}, + {field_name, 9, .inherited = true}, + {field_name, 10, .inherited = true}, + [3163] = + {field_collection, 17}, + {field_item, 2}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_item, 14}, + {field_name, 9, .inherited = true}, + {field_name, 10, .inherited = true}, + [3179] = + {field_collection, 17}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_item, 14}, + {field_name, 10, .inherited = true}, + [3193] = + {field_collection, 17}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_item, 14}, + {field_name, 10, .inherited = true}, + {field_name, 11, .inherited = true}, + [3208] = + {field_collection, 17}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_item, 14}, + {field_item, 15}, + {field_name, 10, .inherited = true}, + {field_name, 11, .inherited = true}, + [3224] = + {field_collection, 17}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_item, 14}, + {field_name, 9, .inherited = true}, + {field_name, 10, .inherited = true}, + [3239] = + {field_collection, 18}, + {field_item, 3}, + {field_item, 4}, + {field_item, 5}, + {field_item, 6}, + {field_item, 7}, + {field_item, 8}, + {field_item, 9}, + {field_item, 10}, + {field_item, 11}, + {field_item, 12}, + {field_item, 13}, + {field_item, 14}, + {field_item, 15}, + {field_name, 10, .inherited = true}, + {field_name, 11, .inherited = true}, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, + [2] = { + [0] = sym_simple_identifier, + }, + [4] = { + [0] = alias_sym_type_identifier, + }, + [9] = { + [0] = alias_sym_fully_open_range, + }, + [17] = { + [1] = alias_sym_type_identifier, + }, + [32] = { + [0] = alias_sym_interpolated_expression, + }, + [46] = { + [1] = alias_sym_type_identifier, + }, + [60] = { + [2] = alias_sym_type_identifier, + }, + [63] = { + [0] = alias_sym_interpolated_expression, + }, + [83] = { + [1] = alias_sym_type_identifier, + }, + [85] = { + [1] = alias_sym_type_identifier, + }, + [86] = { + [0] = alias_sym_protocol_function_declaration, + }, + [94] = { + [2] = alias_sym_type_identifier, + }, + [95] = { + [1] = alias_sym_type_identifier, + }, + [96] = { + [1] = alias_sym_type_identifier, + }, + [99] = { + [1] = alias_sym_type_identifier, + }, + [103] = { + [0] = sym_simple_identifier, + }, + [105] = { + [1] = alias_sym_interpolated_expression, + }, + [119] = { + [1] = alias_sym_type_identifier, + }, + [120] = { + [1] = alias_sym_type_identifier, + }, + [122] = { + [0] = alias_sym_protocol_function_declaration, + [1] = alias_sym_protocol_function_declaration, + }, + [131] = { + [2] = alias_sym_type_identifier, + }, + [132] = { + [1] = alias_sym_type_identifier, + }, + [138] = { + [0] = alias_sym_type_identifier, + }, + [145] = { + [2] = alias_sym_type_identifier, + }, + [146] = { + [2] = alias_sym_type_identifier, + }, + [147] = { + [1] = sym_simple_identifier, + }, + [166] = { + [1] = alias_sym_type_identifier, + }, + [175] = { + [2] = alias_sym_type_identifier, + }, + [176] = { + [1] = alias_sym_type_identifier, + }, + [178] = { + [1] = alias_sym_type_identifier, + }, + [186] = { + [2] = alias_sym_type_identifier, + }, + [208] = { + [1] = alias_sym_type_identifier, + }, + [217] = { + [2] = alias_sym_type_identifier, + }, + [218] = { + [1] = alias_sym_type_identifier, + }, + [223] = { + [2] = alias_sym_type_identifier, + }, + [248] = { + [2] = alias_sym_type_identifier, + }, + [250] = { + [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__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__three_dot_operator, 2, + sym__three_dot_operator, + alias_sym_fully_open_range, + 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] = 10, + [12] = 10, + [13] = 10, + [14] = 14, + [15] = 14, + [16] = 14, + [17] = 14, + [18] = 18, + [19] = 14, + [20] = 14, + [21] = 14, + [22] = 14, + [23] = 14, + [24] = 14, + [25] = 14, + [26] = 14, + [27] = 18, + [28] = 14, + [29] = 29, + [30] = 29, + [31] = 29, + [32] = 29, + [33] = 29, + [34] = 29, + [35] = 29, + [36] = 29, + [37] = 29, + [38] = 29, + [39] = 29, + [40] = 29, + [41] = 29, + [42] = 42, + [43] = 43, + [44] = 44, + [45] = 42, + [46] = 46, + [47] = 47, + [48] = 42, + [49] = 47, + [50] = 43, + [51] = 47, + [52] = 46, + [53] = 42, + [54] = 54, + [55] = 43, + [56] = 46, + [57] = 44, + [58] = 42, + [59] = 47, + [60] = 44, + [61] = 47, + [62] = 46, + [63] = 46, + [64] = 42, + [65] = 44, + [66] = 42, + [67] = 47, + [68] = 43, + [69] = 46, + [70] = 44, + [71] = 44, + [72] = 46, + [73] = 43, + [74] = 44, + [75] = 75, + [76] = 43, + [77] = 77, + [78] = 47, + [79] = 42, + [80] = 46, + [81] = 42, + [82] = 47, + [83] = 46, + [84] = 47, + [85] = 43, + [86] = 43, + [87] = 44, + [88] = 42, + [89] = 46, + [90] = 47, + [91] = 42, + [92] = 44, + [93] = 43, + [94] = 46, + [95] = 75, + [96] = 44, + [97] = 44, + [98] = 44, + [99] = 77, + [100] = 44, + [101] = 46, + [102] = 47, + [103] = 42, + [104] = 47, + [105] = 47, + [106] = 54, + [107] = 42, + [108] = 46, + [109] = 9, + [110] = 110, + [111] = 111, + [112] = 112, + [113] = 113, + [114] = 8, + [115] = 115, + [116] = 116, + [117] = 117, + [118] = 117, + [119] = 119, + [120] = 120, + [121] = 121, + [122] = 122, + [123] = 123, + [124] = 123, + [125] = 123, + [126] = 123, + [127] = 123, + [128] = 123, + [129] = 129, + [130] = 130, + [131] = 131, + [132] = 129, + [133] = 130, + [134] = 134, + [135] = 129, + [136] = 134, + [137] = 131, + [138] = 138, + [139] = 139, + [140] = 139, + [141] = 138, + [142] = 129, + [143] = 143, + [144] = 144, + [145] = 145, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 151, + [152] = 152, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 151, + [157] = 147, + [158] = 154, + [159] = 159, + [160] = 160, + [161] = 147, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 165, + [166] = 152, + [167] = 167, + [168] = 167, + [169] = 169, + [170] = 167, + [171] = 162, + [172] = 163, + [173] = 173, + [174] = 147, + [175] = 163, + [176] = 163, + [177] = 167, + [178] = 178, + [179] = 162, + [180] = 178, + [181] = 162, + [182] = 147, + [183] = 183, + [184] = 184, + [185] = 147, + [186] = 186, + [187] = 159, + [188] = 155, + [189] = 189, + [190] = 164, + [191] = 191, + [192] = 149, + [193] = 169, + [194] = 162, + [195] = 195, + [196] = 195, + [197] = 146, + [198] = 184, + [199] = 189, + [200] = 169, + [201] = 165, + [202] = 202, + [203] = 167, + [204] = 160, + [205] = 163, + [206] = 153, + [207] = 207, + [208] = 150, + [209] = 209, + [210] = 146, + [211] = 211, + [212] = 163, + [213] = 209, + [214] = 152, + [215] = 211, + [216] = 167, + [217] = 162, + [218] = 148, + [219] = 191, + [220] = 150, + [221] = 186, + [222] = 202, + [223] = 223, + [224] = 224, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 229, + [231] = 228, + [232] = 229, + [233] = 233, + [234] = 228, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 235, + [239] = 239, + [240] = 228, + [241] = 241, + [242] = 233, + [243] = 228, + [244] = 229, + [245] = 233, + [246] = 235, + [247] = 235, + [248] = 228, + [249] = 229, + [250] = 228, + [251] = 233, + [252] = 229, + [253] = 233, + [254] = 229, + [255] = 233, + [256] = 233, + [257] = 235, + [258] = 228, + [259] = 233, + [260] = 229, + [261] = 233, + [262] = 233, + [263] = 235, + [264] = 235, + [265] = 235, + [266] = 229, + [267] = 267, + [268] = 228, + [269] = 269, + [270] = 270, + [271] = 228, + [272] = 235, + [273] = 229, + [274] = 235, + [275] = 275, + [276] = 275, + [277] = 277, + [278] = 278, + [279] = 279, + [280] = 280, + [281] = 119, + [282] = 282, + [283] = 279, + [284] = 284, + [285] = 285, + [286] = 282, + [287] = 285, + [288] = 284, + [289] = 279, + [290] = 280, + [291] = 284, + [292] = 279, + [293] = 280, + [294] = 279, + [295] = 280, + [296] = 280, + [297] = 284, + [298] = 285, + [299] = 285, + [300] = 284, + [301] = 285, + [302] = 282, + [303] = 282, + [304] = 279, + [305] = 305, + [306] = 306, + [307] = 282, + [308] = 279, + [309] = 285, + [310] = 285, + [311] = 284, + [312] = 280, + [313] = 279, + [314] = 314, + [315] = 285, + [316] = 285, + [317] = 282, + [318] = 279, + [319] = 319, + [320] = 320, + [321] = 321, + [322] = 320, + [323] = 321, + [324] = 320, + [325] = 321, + [326] = 326, + [327] = 321, + [328] = 320, + [329] = 329, + [330] = 319, + [331] = 321, + [332] = 320, + [333] = 321, + [334] = 321, + [335] = 320, + [336] = 320, + [337] = 319, + [338] = 326, + [339] = 326, + [340] = 326, + [341] = 319, + [342] = 326, + [343] = 343, + [344] = 326, + [345] = 319, + [346] = 319, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 356, + [357] = 357, + [358] = 358, + [359] = 359, + [360] = 360, + [361] = 361, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 369, + [370] = 370, + [371] = 371, + [372] = 372, + [373] = 373, + [374] = 374, + [375] = 375, + [376] = 376, + [377] = 377, + [378] = 378, + [379] = 379, + [380] = 380, + [381] = 381, + [382] = 382, + [383] = 383, + [384] = 384, + [385] = 385, + [386] = 386, + [387] = 387, + [388] = 388, + [389] = 389, + [390] = 390, + [391] = 391, + [392] = 392, + [393] = 393, + [394] = 394, + [395] = 395, + [396] = 396, + [397] = 397, + [398] = 398, + [399] = 399, + [400] = 400, + [401] = 401, + [402] = 402, + [403] = 403, + [404] = 404, + [405] = 405, + [406] = 406, + [407] = 407, + [408] = 408, + [409] = 409, + [410] = 410, + [411] = 411, + [412] = 412, + [413] = 413, + [414] = 414, + [415] = 415, + [416] = 416, + [417] = 406, + [418] = 418, + [419] = 419, + [420] = 420, + [421] = 414, + [422] = 352, + [423] = 423, + [424] = 394, + [425] = 425, + [426] = 393, + [427] = 353, + [428] = 428, + [429] = 429, + [430] = 430, + [431] = 391, + [432] = 418, + [433] = 433, + [434] = 410, + [435] = 390, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 384, + [440] = 382, + [441] = 441, + [442] = 407, + [443] = 443, + [444] = 444, + [445] = 356, + [446] = 446, + [447] = 447, + [448] = 375, + [449] = 389, + [450] = 450, + [451] = 366, + [452] = 452, + [453] = 409, + [454] = 454, + [455] = 455, + [456] = 408, + [457] = 365, + [458] = 356, + [459] = 363, + [460] = 460, + [461] = 461, + [462] = 462, + [463] = 362, + [464] = 464, + [465] = 465, + [466] = 407, + [467] = 467, + [468] = 468, + [469] = 469, + [470] = 470, + [471] = 400, + [472] = 399, + [473] = 358, + [474] = 357, + [475] = 407, + [476] = 476, + [477] = 349, + [478] = 405, + [479] = 479, + [480] = 406, + [481] = 461, + [482] = 479, + [483] = 483, + [484] = 484, + [485] = 485, + [486] = 486, + [487] = 352, + [488] = 353, + [489] = 489, + [490] = 490, + [491] = 491, + [492] = 356, + [493] = 493, + [494] = 389, + [495] = 495, + [496] = 496, + [497] = 497, + [498] = 498, + [499] = 499, + [500] = 397, + [501] = 501, + [502] = 502, + [503] = 503, + [504] = 504, + [505] = 505, + [506] = 506, + [507] = 507, + [508] = 483, + [509] = 395, + [510] = 510, + [511] = 392, + [512] = 512, + [513] = 513, + [514] = 514, + [515] = 515, + [516] = 516, + [517] = 517, + [518] = 388, + [519] = 387, + [520] = 520, + [521] = 385, + [522] = 380, + [523] = 523, + [524] = 379, + [525] = 378, + [526] = 526, + [527] = 527, + [528] = 377, + [529] = 529, + [530] = 530, + [531] = 531, + [532] = 532, + [533] = 533, + [534] = 534, + [535] = 376, + [536] = 536, + [537] = 537, + [538] = 538, + [539] = 373, + [540] = 540, + [541] = 541, + [542] = 542, + [543] = 543, + [544] = 544, + [545] = 545, + [546] = 546, + [547] = 352, + [548] = 372, + [549] = 371, + [550] = 550, + [551] = 551, + [552] = 552, + [553] = 553, + [554] = 554, + [555] = 555, + [556] = 556, + [557] = 557, + [558] = 558, + [559] = 559, + [560] = 560, + [561] = 561, + [562] = 562, + [563] = 353, + [564] = 564, + [565] = 565, + [566] = 566, + [567] = 567, + [568] = 389, + [569] = 569, + [570] = 570, + [571] = 571, + [572] = 572, + [573] = 573, + [574] = 574, + [575] = 575, + [576] = 576, + [577] = 370, + [578] = 369, + [579] = 579, + [580] = 580, + [581] = 581, + [582] = 582, + [583] = 583, + [584] = 584, + [585] = 368, + [586] = 586, + [587] = 381, + [588] = 446, + [589] = 589, + [590] = 367, + [591] = 591, + [592] = 592, + [593] = 593, + [594] = 594, + [595] = 489, + [596] = 543, + [597] = 495, + [598] = 598, + [599] = 496, + [600] = 497, + [601] = 601, + [602] = 602, + [603] = 603, + [604] = 544, + [605] = 605, + [606] = 606, + [607] = 607, + [608] = 608, + [609] = 609, + [610] = 610, + [611] = 611, + [612] = 612, + [613] = 613, + [614] = 614, + [615] = 615, + [616] = 616, + [617] = 504, + [618] = 618, + [619] = 606, + [620] = 620, + [621] = 621, + [622] = 605, + [623] = 623, + [624] = 498, + [625] = 625, + [626] = 626, + [627] = 364, + [628] = 628, + [629] = 629, + [630] = 630, + [631] = 631, + [632] = 592, + [633] = 591, + [634] = 634, + [635] = 583, + [636] = 581, + [637] = 561, + [638] = 615, + [639] = 361, + [640] = 640, + [641] = 360, + [642] = 499, + [643] = 643, + [644] = 501, + [645] = 645, + [646] = 557, + [647] = 556, + [648] = 648, + [649] = 649, + [650] = 576, + [651] = 651, + [652] = 652, + [653] = 653, + [654] = 654, + [655] = 503, + [656] = 656, + [657] = 630, + [658] = 658, + [659] = 542, + [660] = 660, + [661] = 661, + [662] = 541, + [663] = 538, + [664] = 664, + [665] = 665, + [666] = 666, + [667] = 667, + [668] = 668, + [669] = 669, + [670] = 613, + [671] = 536, + [672] = 672, + [673] = 673, + [674] = 674, + [675] = 611, + [676] = 407, + [677] = 359, + [678] = 668, + [679] = 679, + [680] = 680, + [681] = 674, + [682] = 682, + [683] = 546, + [684] = 550, + [685] = 355, + [686] = 510, + [687] = 502, + [688] = 406, + [689] = 402, + [690] = 690, + [691] = 691, + [692] = 692, + [693] = 610, + [694] = 694, + [695] = 695, + [696] = 696, + [697] = 697, + [698] = 698, + [699] = 351, + [700] = 350, + [701] = 465, + [702] = 464, + [703] = 433, + [704] = 389, + [705] = 419, + [706] = 706, + [707] = 415, + [708] = 411, + [709] = 403, + [710] = 710, + [711] = 352, + [712] = 354, + [713] = 413, + [714] = 429, + [715] = 430, + [716] = 437, + [717] = 416, + [718] = 718, + [719] = 438, + [720] = 720, + [721] = 353, + [722] = 722, + [723] = 356, + [724] = 401, + [725] = 404, + [726] = 537, + [727] = 727, + [728] = 728, + [729] = 680, + [730] = 730, + [731] = 441, + [732] = 443, + [733] = 450, + [734] = 722, + [735] = 735, + [736] = 736, + [737] = 737, + [738] = 589, + [739] = 407, + [740] = 601, + [741] = 603, + [742] = 530, + [743] = 452, + [744] = 744, + [745] = 745, + [746] = 555, + [747] = 389, + [748] = 706, + [749] = 735, + [750] = 374, + [751] = 751, + [752] = 505, + [753] = 420, + [754] = 754, + [755] = 755, + [756] = 645, + [757] = 648, + [758] = 534, + [759] = 656, + [760] = 760, + [761] = 761, + [762] = 660, + [763] = 661, + [764] = 425, + [765] = 454, + [766] = 455, + [767] = 467, + [768] = 768, + [769] = 436, + [770] = 447, + [771] = 469, + [772] = 470, + [773] = 476, + [774] = 485, + [775] = 486, + [776] = 776, + [777] = 490, + [778] = 778, + [779] = 779, + [780] = 347, + [781] = 781, + [782] = 782, + [783] = 562, + [784] = 664, + [785] = 785, + [786] = 491, + [787] = 665, + [788] = 564, + [789] = 789, + [790] = 552, + [791] = 785, + [792] = 347, + [793] = 695, + [794] = 608, + [795] = 795, + [796] = 406, + [797] = 565, + [798] = 582, + [799] = 695, + [800] = 566, + [801] = 609, + [802] = 347, + [803] = 785, + [804] = 804, + [805] = 612, + [806] = 782, + [807] = 781, + [808] = 779, + [809] = 778, + [810] = 776, + [811] = 804, + [812] = 761, + [813] = 760, + [814] = 607, + [815] = 815, + [816] = 381, + [817] = 621, + [818] = 569, + [819] = 754, + [820] = 751, + [821] = 374, + [822] = 446, + [823] = 789, + [824] = 824, + [825] = 706, + [826] = 768, + [827] = 827, + [828] = 573, + [829] = 614, + [830] = 616, + [831] = 625, + [832] = 782, + [833] = 460, + [834] = 626, + [835] = 634, + [836] = 836, + [837] = 658, + [838] = 838, + [839] = 839, + [840] = 781, + [841] = 690, + [842] = 692, + [843] = 697, + [844] = 462, + [845] = 698, + [846] = 779, + [847] = 847, + [848] = 848, + [849] = 849, + [850] = 514, + [851] = 516, + [852] = 695, + [853] = 853, + [854] = 854, + [855] = 855, + [856] = 347, + [857] = 857, + [858] = 785, + [859] = 778, + [860] = 776, + [861] = 861, + [862] = 529, + [863] = 782, + [864] = 781, + [865] = 779, + [866] = 866, + [867] = 778, + [868] = 755, + [869] = 776, + [870] = 870, + [871] = 679, + [872] = 761, + [873] = 760, + [874] = 874, + [875] = 745, + [876] = 754, + [877] = 751, + [878] = 374, + [879] = 737, + [880] = 880, + [881] = 706, + [882] = 406, + [883] = 883, + [884] = 815, + [885] = 885, + [886] = 886, + [887] = 887, + [888] = 824, + [889] = 889, + [890] = 531, + [891] = 891, + [892] = 892, + [893] = 893, + [894] = 894, + [895] = 895, + [896] = 896, + [897] = 745, + [898] = 736, + [899] = 899, + [900] = 889, + [901] = 696, + [902] = 902, + [903] = 903, + [904] = 904, + [905] = 905, + [906] = 906, + [907] = 899, + [908] = 761, + [909] = 909, + [910] = 760, + [911] = 911, + [912] = 904, + [913] = 913, + [914] = 618, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 838, + [919] = 815, + [920] = 920, + [921] = 751, + [922] = 754, + [923] = 532, + [924] = 755, + [925] = 925, + [926] = 926, + [927] = 628, + [928] = 928, + [929] = 710, + [930] = 930, + [931] = 880, + [932] = 932, + [933] = 720, + [934] = 848, + [935] = 883, + [936] = 887, + [937] = 352, + [938] = 849, + [939] = 895, + [940] = 906, + [941] = 902, + [942] = 942, + [943] = 943, + [944] = 527, + [945] = 352, + [946] = 484, + [947] = 353, + [948] = 730, + [949] = 909, + [950] = 916, + [951] = 444, + [952] = 824, + [953] = 682, + [954] = 954, + [955] = 506, + [956] = 412, + [957] = 917, + [958] = 706, + [959] = 959, + [960] = 545, + [961] = 558, + [962] = 920, + [963] = 963, + [964] = 643, + [965] = 428, + [966] = 374, + [967] = 751, + [968] = 754, + [969] = 640, + [970] = 913, + [971] = 928, + [972] = 720, + [973] = 533, + [974] = 930, + [975] = 975, + [976] = 356, + [977] = 905, + [978] = 623, + [979] = 963, + [980] = 760, + [981] = 761, + [982] = 932, + [983] = 959, + [984] = 776, + [985] = 778, + [986] = 779, + [987] = 781, + [988] = 782, + [989] = 507, + [990] = 523, + [991] = 695, + [992] = 785, + [993] = 993, + [994] = 954, + [995] = 943, + [996] = 942, + [997] = 695, + [998] = 347, + [999] = 785, + [1000] = 398, + [1001] = 381, + [1002] = 446, + [1003] = 782, + [1004] = 903, + [1005] = 781, + [1006] = 779, + [1007] = 778, + [1008] = 776, + [1009] = 348, + [1010] = 926, + [1011] = 620, + [1012] = 598, + [1013] = 761, + [1014] = 760, + [1015] = 874, + [1016] = 925, + [1017] = 915, + [1018] = 520, + [1019] = 896, + [1020] = 894, + [1021] = 526, + [1022] = 893, + [1023] = 853, + [1024] = 493, + [1025] = 892, + [1026] = 891, + [1027] = 423, + [1028] = 886, + [1029] = 885, + [1030] = 745, + [1031] = 517, + [1032] = 824, + [1033] = 754, + [1034] = 751, + [1035] = 515, + [1036] = 673, + [1037] = 374, + [1038] = 902, + [1039] = 902, + [1040] = 904, + [1041] = 899, + [1042] = 706, + [1043] = 540, + [1044] = 594, + [1045] = 899, + [1046] = 815, + [1047] = 755, + [1048] = 720, + [1049] = 579, + [1050] = 593, + [1051] = 584, + [1052] = 553, + [1053] = 706, + [1054] = 904, + [1055] = 374, + [1056] = 580, + [1057] = 751, + [1058] = 754, + [1059] = 396, + [1060] = 672, + [1061] = 572, + [1062] = 1062, + [1063] = 866, + [1064] = 586, + [1065] = 602, + [1066] = 667, + [1067] = 760, + [1068] = 761, + [1069] = 666, + [1070] = 512, + [1071] = 993, + [1072] = 776, + [1073] = 631, + [1074] = 778, + [1075] = 649, + [1076] = 854, + [1077] = 855, + [1078] = 779, + [1079] = 554, + [1080] = 559, + [1081] = 669, + [1082] = 691, + [1083] = 694, + [1084] = 567, + [1085] = 654, + [1086] = 570, + [1087] = 653, + [1088] = 718, + [1089] = 781, + [1090] = 695, + [1091] = 727, + [1092] = 652, + [1093] = 861, + [1094] = 571, + [1095] = 347, + [1096] = 785, + [1097] = 651, + [1098] = 782, + [1099] = 1099, + [1100] = 1100, + [1101] = 1101, + [1102] = 1102, + [1103] = 1103, + [1104] = 1104, + [1105] = 1105, + [1106] = 1106, + [1107] = 1107, + [1108] = 1108, + [1109] = 1109, + [1110] = 1110, + [1111] = 1111, + [1112] = 1112, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, + [1117] = 1117, + [1118] = 1118, + [1119] = 1119, + [1120] = 1120, + [1121] = 1121, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 1125, + [1126] = 1126, + [1127] = 1127, + [1128] = 1128, + [1129] = 1129, + [1130] = 1130, + [1131] = 1131, + [1132] = 1132, + [1133] = 1133, + [1134] = 1100, + [1135] = 1105, + [1136] = 1104, + [1137] = 1102, + [1138] = 1099, + [1139] = 1101, + [1140] = 1103, + [1141] = 1141, + [1142] = 1142, + [1143] = 1143, + [1144] = 1127, + [1145] = 1108, + [1146] = 1109, + [1147] = 1116, + [1148] = 1118, + [1149] = 1111, + [1150] = 1150, + [1151] = 1129, + [1152] = 1130, + [1153] = 1120, + [1154] = 1110, + [1155] = 1126, + [1156] = 1156, + [1157] = 1133, + [1158] = 1117, + [1159] = 1115, + [1160] = 1131, + [1161] = 1161, + [1162] = 1162, + [1163] = 1113, + [1164] = 1114, + [1165] = 1132, + [1166] = 1119, + [1167] = 1123, + [1168] = 1125, + [1169] = 1128, + [1170] = 1124, + [1171] = 1112, + [1172] = 1121, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, + [1176] = 1176, + [1177] = 1177, + [1178] = 1178, + [1179] = 1179, + [1180] = 1180, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, + [1184] = 1184, + [1185] = 1185, + [1186] = 1186, + [1187] = 1187, + [1188] = 1188, + [1189] = 1189, + [1190] = 1190, + [1191] = 1191, + [1192] = 1192, + [1193] = 1193, + [1194] = 1194, + [1195] = 1195, + [1196] = 1196, + [1197] = 1197, + [1198] = 1198, + [1199] = 1199, + [1200] = 1200, + [1201] = 1201, + [1202] = 1202, + [1203] = 1203, + [1204] = 1204, + [1205] = 1205, + [1206] = 1206, + [1207] = 1207, + [1208] = 1208, + [1209] = 1209, + [1210] = 1210, + [1211] = 1211, + [1212] = 1212, + [1213] = 1213, + [1214] = 1214, + [1215] = 1215, + [1216] = 1216, + [1217] = 1217, + [1218] = 1218, + [1219] = 1219, + [1220] = 1220, + [1221] = 1221, + [1222] = 1222, + [1223] = 1223, + [1224] = 1224, + [1225] = 1225, + [1226] = 1226, + [1227] = 1227, + [1228] = 1228, + [1229] = 1229, + [1230] = 1162, + [1231] = 1231, + [1232] = 1232, + [1233] = 1233, + [1234] = 1234, + [1235] = 1235, + [1236] = 1236, + [1237] = 1237, + [1238] = 1238, + [1239] = 1239, + [1240] = 1240, + [1241] = 1241, + [1242] = 1242, + [1243] = 1243, + [1244] = 1244, + [1245] = 1245, + [1246] = 1246, + [1247] = 1247, + [1248] = 1248, + [1249] = 1249, + [1250] = 1250, + [1251] = 1251, + [1252] = 1252, + [1253] = 1253, + [1254] = 1254, + [1255] = 1179, + [1256] = 1256, + [1257] = 1257, + [1258] = 1258, + [1259] = 1259, + [1260] = 1260, + [1261] = 1261, + [1262] = 1262, + [1263] = 1263, + [1264] = 1175, + [1265] = 1174, + [1266] = 1188, + [1267] = 1177, + [1268] = 1187, + [1269] = 1269, + [1270] = 1270, + [1271] = 1271, + [1272] = 1272, + [1273] = 1273, + [1274] = 1274, + [1275] = 1275, + [1276] = 1276, + [1277] = 1277, + [1278] = 1278, + [1279] = 1279, + [1280] = 1280, + [1281] = 1181, + [1282] = 1282, + [1283] = 1283, + [1284] = 1183, + [1285] = 1184, + [1286] = 1286, + [1287] = 1287, + [1288] = 1185, + [1289] = 1289, + [1290] = 1290, + [1291] = 1291, + [1292] = 1292, + [1293] = 1293, + [1294] = 1294, + [1295] = 1295, + [1296] = 1296, + [1297] = 1297, + [1298] = 1298, + [1299] = 1150, + [1300] = 1142, + [1301] = 1143, + [1302] = 1141, + [1303] = 1177, + [1304] = 1187, + [1305] = 1305, + [1306] = 1174, + [1307] = 1182, + [1308] = 1180, + [1309] = 1179, + [1310] = 1185, + [1311] = 1184, + [1312] = 1183, + [1313] = 1188, + [1314] = 1314, + [1315] = 1181, + [1316] = 1175, + [1317] = 1317, + [1318] = 1317, + [1319] = 1319, + [1320] = 1320, + [1321] = 1320, + [1322] = 1320, + [1323] = 1317, + [1324] = 1324, + [1325] = 1320, + [1326] = 1317, + [1327] = 1100, + [1328] = 1105, + [1329] = 1104, + [1330] = 1101, + [1331] = 1102, + [1332] = 1103, + [1333] = 1099, + [1334] = 1100, + [1335] = 1100, + [1336] = 1099, + [1337] = 1337, + [1338] = 1186, + [1339] = 1104, + [1340] = 1099, + [1341] = 1104, + [1342] = 1337, + [1343] = 1101, + [1344] = 1337, + [1345] = 1337, + [1346] = 1102, + [1347] = 1101, + [1348] = 1103, + [1349] = 1103, + [1350] = 1100, + [1351] = 1105, + [1352] = 1105, + [1353] = 1104, + [1354] = 1105, + [1355] = 1103, + [1356] = 1102, + [1357] = 1101, + [1358] = 1099, + [1359] = 1102, + [1360] = 1104, + [1361] = 1192, + [1362] = 1099, + [1363] = 1202, + [1364] = 1199, + [1365] = 1205, + [1366] = 1201, + [1367] = 1191, + [1368] = 1189, + [1369] = 1190, + [1370] = 1206, + [1371] = 1162, + [1372] = 1198, + [1373] = 1208, + [1374] = 1194, + [1375] = 1102, + [1376] = 1101, + [1377] = 1377, + [1378] = 1378, + [1379] = 1193, + [1380] = 1203, + [1381] = 1195, + [1382] = 1197, + [1383] = 1100, + [1384] = 1207, + [1385] = 1103, + [1386] = 1105, + [1387] = 1209, + [1388] = 1388, + [1389] = 1211, + [1390] = 1210, + [1391] = 1214, + [1392] = 1213, + [1393] = 1215, + [1394] = 1212, + [1395] = 1218, + [1396] = 1216, + [1397] = 1217, + [1398] = 1231, + [1399] = 1162, + [1400] = 1222, + [1401] = 1233, + [1402] = 1229, + [1403] = 1219, + [1404] = 1227, + [1405] = 1235, + [1406] = 1221, + [1407] = 1220, + [1408] = 1223, + [1409] = 1225, + [1410] = 1224, + [1411] = 1234, + [1412] = 1232, + [1413] = 1226, + [1414] = 1228, + [1415] = 1237, + [1416] = 1240, + [1417] = 1417, + [1418] = 1243, + [1419] = 1236, + [1420] = 1238, + [1421] = 1241, + [1422] = 1247, + [1423] = 1244, + [1424] = 1239, + [1425] = 1242, + [1426] = 1245, + [1427] = 1246, + [1428] = 1291, + [1429] = 1296, + [1430] = 1287, + [1431] = 1290, + [1432] = 1188, + [1433] = 1252, + [1434] = 1297, + [1435] = 1277, + [1436] = 1276, + [1437] = 1254, + [1438] = 1272, + [1439] = 1282, + [1440] = 1257, + [1441] = 1279, + [1442] = 1248, + [1443] = 1280, + [1444] = 1283, + [1445] = 1251, + [1446] = 1269, + [1447] = 1295, + [1448] = 1256, + [1449] = 1278, + [1450] = 1260, + [1451] = 1263, + [1452] = 1271, + [1453] = 1274, + [1454] = 1275, + [1455] = 1185, + [1456] = 1184, + [1457] = 1258, + [1458] = 1286, + [1459] = 1270, + [1460] = 1187, + [1461] = 1262, + [1462] = 1289, + [1463] = 1250, + [1464] = 1183, + [1465] = 1249, + [1466] = 1177, + [1467] = 1181, + [1468] = 1259, + [1469] = 1273, + [1470] = 1294, + [1471] = 1261, + [1472] = 1298, + [1473] = 1253, + [1474] = 1179, + [1475] = 1174, + [1476] = 1175, + [1477] = 1292, + [1478] = 1293, + [1479] = 1109, + [1480] = 1108, + [1481] = 1116, + [1482] = 1115, + [1483] = 1108, + [1484] = 1113, + [1485] = 1485, + [1486] = 1116, + [1487] = 1126, + [1488] = 1130, + [1489] = 1129, + [1490] = 1129, + [1491] = 1124, + [1492] = 1108, + [1493] = 1114, + [1494] = 1111, + [1495] = 1485, + [1496] = 1120, + [1497] = 1119, + [1498] = 1485, + [1499] = 1121, + [1500] = 1125, + [1501] = 1109, + [1502] = 1123, + [1503] = 1118, + [1504] = 1127, + [1505] = 1110, + [1506] = 1117, + [1507] = 1108, + [1508] = 1128, + [1509] = 1112, + [1510] = 1109, + [1511] = 1109, + [1512] = 1127, + [1513] = 1485, + [1514] = 1485, + [1515] = 1130, + [1516] = 1118, + [1517] = 1111, + [1518] = 1485, + [1519] = 1519, + [1520] = 1520, + [1521] = 1521, + [1522] = 1522, + [1523] = 1523, + [1524] = 1524, + [1525] = 1525, + [1526] = 1526, + [1527] = 1527, + [1528] = 1528, + [1529] = 1529, + [1530] = 1530, + [1531] = 1531, + [1532] = 1532, + [1533] = 1533, + [1534] = 1534, + [1535] = 1535, + [1536] = 1536, + [1537] = 1537, + [1538] = 1538, + [1539] = 1539, + [1540] = 1540, + [1541] = 1541, + [1542] = 1542, + [1543] = 1543, + [1544] = 1544, + [1545] = 1545, + [1546] = 1546, + [1547] = 1547, + [1548] = 1548, + [1549] = 1549, + [1550] = 1550, + [1551] = 1551, + [1552] = 1552, + [1553] = 1553, + [1554] = 1554, + [1555] = 1555, + [1556] = 1556, + [1557] = 1557, + [1558] = 1558, + [1559] = 1559, + [1560] = 1560, + [1561] = 1561, + [1562] = 1562, + [1563] = 1563, + [1564] = 1564, + [1565] = 1565, + [1566] = 1566, + [1567] = 1567, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, + [1571] = 1571, + [1572] = 1572, + [1573] = 1573, + [1574] = 1574, + [1575] = 1575, + [1576] = 1576, + [1577] = 1577, + [1578] = 1578, + [1579] = 1579, + [1580] = 1580, + [1581] = 1581, + [1582] = 1582, + [1583] = 1583, + [1584] = 1584, + [1585] = 1585, + [1586] = 1586, + [1587] = 1587, + [1588] = 1588, + [1589] = 1547, + [1590] = 1590, + [1591] = 1591, + [1592] = 1592, + [1593] = 1593, + [1594] = 1594, + [1595] = 1595, + [1596] = 1596, + [1597] = 1597, + [1598] = 1132, + [1599] = 1599, + [1600] = 1600, + [1601] = 1562, + [1602] = 1602, + [1603] = 1603, + [1604] = 1528, + [1605] = 1605, + [1606] = 1606, + [1607] = 1607, + [1608] = 1608, + [1609] = 1609, + [1610] = 1610, + [1611] = 1611, + [1612] = 1612, + [1613] = 1613, + [1614] = 1540, + [1615] = 1550, + [1616] = 1558, + [1617] = 1617, + [1618] = 1523, + [1619] = 1619, + [1620] = 1620, + [1621] = 1525, + [1622] = 1613, + [1623] = 1623, + [1624] = 1534, + [1625] = 1133, + [1626] = 1626, + [1627] = 1627, + [1628] = 1536, + [1629] = 1629, + [1630] = 1630, + [1631] = 1539, + [1632] = 1600, + [1633] = 1633, + [1634] = 1542, + [1635] = 1543, + [1636] = 1636, + [1637] = 1637, + [1638] = 1638, + [1639] = 1639, + [1640] = 1640, + [1641] = 1641, + [1642] = 1642, + [1643] = 1643, + [1644] = 1633, + [1645] = 1645, + [1646] = 1646, + [1647] = 1133, + [1648] = 1648, + [1649] = 1649, + [1650] = 1650, + [1651] = 1651, + [1652] = 1652, + [1653] = 1653, + [1654] = 1132, + [1655] = 1633, + [1656] = 1656, + [1657] = 1131, + [1658] = 1658, + [1659] = 1659, + [1660] = 1660, + [1661] = 1661, + [1662] = 1553, + [1663] = 1663, + [1664] = 1664, + [1665] = 1665, + [1666] = 1557, + [1667] = 1156, + [1668] = 1668, + [1669] = 1669, + [1670] = 1670, + [1671] = 1671, + [1672] = 1661, + [1673] = 1561, + [1674] = 1521, + [1675] = 1675, + [1676] = 1522, + [1677] = 1677, + [1678] = 1678, + [1679] = 1524, + [1680] = 1529, + [1681] = 1530, + [1682] = 1682, + [1683] = 1683, + [1684] = 1684, + [1685] = 1685, + [1686] = 1686, + [1687] = 1687, + [1688] = 1531, + [1689] = 1535, + [1690] = 1109, + [1691] = 1544, + [1692] = 1545, + [1693] = 1548, + [1694] = 1694, + [1695] = 1695, + [1696] = 1696, + [1697] = 1697, + [1698] = 1698, + [1699] = 1549, + [1700] = 1554, + [1701] = 1161, + [1702] = 1702, + [1703] = 1108, + [1704] = 1613, + [1705] = 1705, + [1706] = 1706, + [1707] = 1126, + [1708] = 1708, + [1709] = 1709, + [1710] = 1555, + [1711] = 1711, + [1712] = 1556, + [1713] = 1713, + [1714] = 1714, + [1715] = 1559, + [1716] = 1121, + [1717] = 1125, + [1718] = 1113, + [1719] = 1112, + [1720] = 1115, + [1721] = 1721, + [1722] = 1722, + [1723] = 1560, + [1724] = 1117, + [1725] = 1110, + [1726] = 1123, + [1727] = 1124, + [1728] = 1728, + [1729] = 1729, + [1730] = 1730, + [1731] = 1128, + [1732] = 1119, + [1733] = 1120, + [1734] = 1114, + [1735] = 1633, + [1736] = 1736, + [1737] = 1613, + [1738] = 1564, + [1739] = 1565, + [1740] = 1568, + [1741] = 1569, + [1742] = 1742, + [1743] = 1743, + [1744] = 1744, + [1745] = 1745, + [1746] = 1571, + [1747] = 1747, + [1748] = 1748, + [1749] = 1572, + [1750] = 1750, + [1751] = 1751, + [1752] = 1752, + [1753] = 1753, + [1754] = 1754, + [1755] = 1648, + [1756] = 1756, + [1757] = 1757, + [1758] = 1758, + [1759] = 1759, + [1760] = 1760, + [1761] = 1761, + [1762] = 1576, + [1763] = 1641, + [1764] = 1764, + [1765] = 1126, + [1766] = 1579, + [1767] = 1580, + [1768] = 1678, + [1769] = 1121, + [1770] = 1125, + [1771] = 1113, + [1772] = 1772, + [1773] = 1586, + [1774] = 1774, + [1775] = 1775, + [1776] = 1587, + [1777] = 1112, + [1778] = 1115, + [1779] = 1592, + [1780] = 1117, + [1781] = 1781, + [1782] = 1782, + [1783] = 1110, + [1784] = 1123, + [1785] = 1124, + [1786] = 1128, + [1787] = 1119, + [1788] = 1788, + [1789] = 1789, + [1790] = 1120, + [1791] = 1791, + [1792] = 1792, + [1793] = 1114, + [1794] = 1595, + [1795] = 1605, + [1796] = 1606, + [1797] = 1608, + [1798] = 1798, + [1799] = 1799, + [1800] = 1800, + [1801] = 1610, + [1802] = 1131, + [1803] = 1617, + [1804] = 1600, + [1805] = 1805, + [1806] = 1626, + [1807] = 1627, + [1808] = 1633, + [1809] = 1809, + [1810] = 1810, + [1811] = 1811, + [1812] = 1629, + [1813] = 1813, + [1814] = 1630, + [1815] = 1639, + [1816] = 1640, + [1817] = 1817, + [1818] = 1649, + [1819] = 1658, + [1820] = 1659, + [1821] = 1821, + [1822] = 1121, + [1823] = 1823, + [1824] = 1824, + [1825] = 1125, + [1826] = 1668, + [1827] = 1669, + [1828] = 1113, + [1829] = 1829, + [1830] = 1830, + [1831] = 1685, + [1832] = 1686, + [1833] = 1694, + [1834] = 1695, + [1835] = 1835, + [1836] = 1705, + [1837] = 1713, + [1838] = 1838, + [1839] = 1839, + [1840] = 1714, + [1841] = 1721, + [1842] = 1722, + [1843] = 1728, + [1844] = 1729, + [1845] = 1747, + [1846] = 1748, + [1847] = 1754, + [1848] = 1774, + [1849] = 1775, + [1850] = 1850, + [1851] = 1851, + [1852] = 1852, + [1853] = 1853, + [1854] = 1854, + [1855] = 1855, + [1856] = 1566, + [1857] = 1857, + [1858] = 1858, + [1859] = 1563, + [1860] = 1860, + [1861] = 1781, + [1862] = 1782, + [1863] = 1863, + [1864] = 1791, + [1865] = 1792, + [1866] = 1799, + [1867] = 1867, + [1868] = 1868, + [1869] = 1869, + [1870] = 1870, + [1871] = 1871, + [1872] = 1811, + [1873] = 1873, + [1874] = 1874, + [1875] = 1813, + [1876] = 1876, + [1877] = 1650, + [1878] = 1519, + [1879] = 1821, + [1880] = 1880, + [1881] = 1881, + [1882] = 1829, + [1883] = 1830, + [1884] = 1838, + [1885] = 1854, + [1886] = 1855, + [1887] = 1887, + [1888] = 1888, + [1889] = 1562, + [1890] = 1868, + [1891] = 1891, + [1892] = 1869, + [1893] = 1887, + [1894] = 1888, + [1895] = 1895, + [1896] = 1896, + [1897] = 1895, + [1898] = 1898, + [1899] = 1899, + [1900] = 1898, + [1901] = 1901, + [1902] = 1902, + [1903] = 1903, + [1904] = 1904, + [1905] = 1633, + [1906] = 1906, + [1907] = 1907, + [1908] = 1908, + [1909] = 1909, + [1910] = 1910, + [1911] = 1911, + [1912] = 1912, + [1913] = 1600, + [1914] = 1914, + [1915] = 1915, + [1916] = 1916, + [1917] = 1612, + [1918] = 1918, + [1919] = 1919, + [1920] = 1920, + [1921] = 1901, + [1922] = 1764, + [1923] = 1603, + [1924] = 1924, + [1925] = 1596, + [1926] = 1903, + [1927] = 1904, + [1928] = 1928, + [1929] = 1562, + [1930] = 1594, + [1931] = 1931, + [1932] = 1932, + [1933] = 1933, + [1934] = 1613, + [1935] = 1876, + [1936] = 1936, + [1937] = 1937, + [1938] = 1874, + [1939] = 1591, + [1940] = 1940, + [1941] = 1678, + [1942] = 1942, + [1943] = 1633, + [1944] = 1944, + [1945] = 1945, + [1946] = 1633, + [1947] = 1947, + [1948] = 1678, + [1949] = 1949, + [1950] = 1950, + [1951] = 1906, + [1952] = 1909, + [1953] = 1761, + [1954] = 1760, + [1955] = 1759, + [1956] = 1756, + [1957] = 1753, + [1958] = 1958, + [1959] = 1752, + [1960] = 1750, + [1961] = 1600, + [1962] = 1660, + [1963] = 1910, + [1964] = 1911, + [1965] = 1656, + [1966] = 1653, + [1967] = 1967, + [1968] = 1968, + [1969] = 1652, + [1970] = 1562, + [1971] = 1651, + [1972] = 1613, + [1973] = 1646, + [1974] = 1645, + [1975] = 1643, + [1976] = 1912, + [1977] = 1590, + [1978] = 1978, + [1979] = 1642, + [1980] = 1915, + [1981] = 1638, + [1982] = 1982, + [1983] = 1637, + [1984] = 1916, + [1985] = 1924, + [1986] = 1636, + [1987] = 1588, + [1988] = 1613, + [1989] = 1599, + [1990] = 1597, + [1991] = 1593, + [1992] = 1928, + [1993] = 1931, + [1994] = 1581, + [1995] = 1578, + [1996] = 1573, + [1997] = 1541, + [1998] = 1546, + [1999] = 1870, + [2000] = 1527, + [2001] = 1526, + [2002] = 1532, + [2003] = 1936, + [2004] = 1937, + [2005] = 1533, + [2006] = 1537, + [2007] = 1538, + [2008] = 1613, + [2009] = 1551, + [2010] = 1552, + [2011] = 1664, + [2012] = 1675, + [2013] = 1682, + [2014] = 2014, + [2015] = 2015, + [2016] = 1683, + [2017] = 1678, + [2018] = 1697, + [2019] = 1940, + [2020] = 1708, + [2021] = 1114, + [2022] = 2022, + [2023] = 2023, + [2024] = 1120, + [2025] = 1119, + [2026] = 1709, + [2027] = 1730, + [2028] = 1128, + [2029] = 1743, + [2030] = 1124, + [2031] = 1123, + [2032] = 1744, + [2033] = 1110, + [2034] = 1117, + [2035] = 2035, + [2036] = 1751, + [2037] = 1115, + [2038] = 1112, + [2039] = 2039, + [2040] = 2040, + [2041] = 1633, + [2042] = 1757, + [2043] = 1949, + [2044] = 1758, + [2045] = 2045, + [2046] = 1950, + [2047] = 2047, + [2048] = 1585, + [2049] = 2049, + [2050] = 1772, + [2051] = 1850, + [2052] = 1851, + [2053] = 1860, + [2054] = 2054, + [2055] = 1562, + [2056] = 1871, + [2057] = 2057, + [2058] = 1958, + [2059] = 1891, + [2060] = 1967, + [2061] = 1899, + [2062] = 1918, + [2063] = 1919, + [2064] = 1678, + [2065] = 1933, + [2066] = 1944, + [2067] = 1945, + [2068] = 2068, + [2069] = 2069, + [2070] = 2070, + [2071] = 1584, + [2072] = 2072, + [2073] = 2014, + [2074] = 2074, + [2075] = 2015, + [2076] = 2022, + [2077] = 2023, + [2078] = 2039, + [2079] = 2054, + [2080] = 1978, + [2081] = 2035, + [2082] = 2082, + [2083] = 2083, + [2084] = 2068, + [2085] = 2069, + [2086] = 2074, + [2087] = 2083, + [2088] = 2088, + [2089] = 2089, + [2090] = 2090, + [2091] = 2091, + [2092] = 2092, + [2093] = 2093, + [2094] = 2088, + [2095] = 2070, + [2096] = 1947, + [2097] = 2040, + [2098] = 2045, + [2099] = 1942, + [2100] = 1932, + [2101] = 1908, + [2102] = 1907, + [2103] = 1902, + [2104] = 1896, + [2105] = 1881, + [2106] = 1880, + [2107] = 1126, + [2108] = 1867, + [2109] = 1858, + [2110] = 1857, + [2111] = 1839, + [2112] = 1736, + [2113] = 1600, + [2114] = 2089, + [2115] = 1706, + [2116] = 2047, + [2117] = 1702, + [2118] = 1687, + [2119] = 1684, + [2120] = 2049, + [2121] = 2057, + [2122] = 2122, + [2123] = 1677, + [2124] = 1670, + [2125] = 1620, + [2126] = 1619, + [2127] = 2127, + [2128] = 1611, + [2129] = 1607, + [2130] = 1575, + [2131] = 2122, + [2132] = 2132, + [2133] = 1671, + [2134] = 1665, + [2135] = 1582, + [2136] = 1711, + [2137] = 1577, + [2138] = 1742, + [2139] = 2139, + [2140] = 2140, + [2141] = 1745, + [2142] = 1574, + [2143] = 1570, + [2144] = 1798, + [2145] = 1800, + [2146] = 1809, + [2147] = 1810, + [2148] = 1823, + [2149] = 1824, + [2150] = 1835, + [2151] = 2151, + [2152] = 1852, + [2153] = 1853, + [2154] = 1863, + [2155] = 2155, + [2156] = 2156, + [2157] = 1914, + [2158] = 2132, + [2159] = 1920, + [2160] = 2072, + [2161] = 2082, + [2162] = 1520, + [2163] = 2163, + [2164] = 2163, + [2165] = 1602, + [2166] = 2090, + [2167] = 2091, + [2168] = 1613, + [2169] = 1567, + [2170] = 2156, + [2171] = 2155, + [2172] = 2151, + [2173] = 2140, + [2174] = 2092, + [2175] = 2093, + [2176] = 1583, + [2177] = 2139, + [2178] = 2178, + [2179] = 1218, + [2180] = 2180, + [2181] = 2181, + [2182] = 2182, + [2183] = 1217, + [2184] = 2184, + [2185] = 2185, + [2186] = 1176, + [2187] = 2187, + [2188] = 1173, + [2189] = 1114, + [2190] = 1120, + [2191] = 2191, + [2192] = 1119, + [2193] = 2193, + [2194] = 1128, + [2195] = 1124, + [2196] = 1123, + [2197] = 2197, + [2198] = 2198, + [2199] = 2199, + [2200] = 1110, + [2201] = 1117, + [2202] = 1115, + [2203] = 2203, + [2204] = 2204, + [2205] = 1216, + [2206] = 1112, + [2207] = 1121, + [2208] = 1125, + [2209] = 1113, + [2210] = 1126, + [2211] = 2211, + [2212] = 1161, + [2213] = 1156, + [2214] = 1178, + [2215] = 2215, + [2216] = 2216, + [2217] = 2217, + [2218] = 2218, + [2219] = 2219, + [2220] = 2220, + [2221] = 2221, + [2222] = 1161, + [2223] = 1156, + [2224] = 2217, + [2225] = 2225, + [2226] = 2221, + [2227] = 1229, + [2228] = 2218, + [2229] = 2220, + [2230] = 2219, + [2231] = 2218, + [2232] = 2221, + [2233] = 2221, + [2234] = 2218, + [2235] = 2219, + [2236] = 2220, + [2237] = 2219, + [2238] = 2218, + [2239] = 2221, + [2240] = 2220, + [2241] = 2221, + [2242] = 2217, + [2243] = 2218, + [2244] = 2244, + [2245] = 2220, + [2246] = 2219, + [2247] = 2218, + [2248] = 2219, + [2249] = 2220, + [2250] = 2250, + [2251] = 2251, + [2252] = 2252, + [2253] = 2252, + [2254] = 1242, + [2255] = 1239, + [2256] = 2256, + [2257] = 1241, + [2258] = 2258, + [2259] = 1141, + [2260] = 2260, + [2261] = 1245, + [2262] = 2262, + [2263] = 2263, + [2264] = 2264, + [2265] = 2265, + [2266] = 2266, + [2267] = 2251, + [2268] = 1162, + [2269] = 1099, + [2270] = 1104, + [2271] = 2271, + [2272] = 1141, + [2273] = 1141, + [2274] = 2274, + [2275] = 1217, + [2276] = 1211, + [2277] = 1210, + [2278] = 1209, + [2279] = 1218, + [2280] = 1162, + [2281] = 1229, + [2282] = 1216, + [2283] = 1229, + [2284] = 1217, + [2285] = 1216, + [2286] = 1162, + [2287] = 1218, + [2288] = 1242, + [2289] = 1239, + [2290] = 1211, + [2291] = 1210, + [2292] = 1209, + [2293] = 1245, + [2294] = 1162, + [2295] = 1141, + [2296] = 1217, + [2297] = 1211, + [2298] = 1216, + [2299] = 1229, + [2300] = 1218, + [2301] = 1210, + [2302] = 1241, + [2303] = 1209, + [2304] = 1217, + [2305] = 1235, + [2306] = 1216, + [2307] = 1239, + [2308] = 1216, + [2309] = 1245, + [2310] = 2310, + [2311] = 1229, + [2312] = 1162, + [2313] = 1218, + [2314] = 1241, + [2315] = 1227, + [2316] = 1217, + [2317] = 1162, + [2318] = 2318, + [2319] = 1218, + [2320] = 1221, + [2321] = 2321, + [2322] = 1229, + [2323] = 1242, + [2324] = 1219, + [2325] = 1234, + [2326] = 1239, + [2327] = 1150, + [2328] = 1241, + [2329] = 1233, + [2330] = 2330, + [2331] = 1245, + [2332] = 1223, + [2333] = 1244, + [2334] = 1247, + [2335] = 2335, + [2336] = 1220, + [2337] = 1242, + [2338] = 1162, + [2339] = 1143, + [2340] = 1142, + [2341] = 1143, + [2342] = 1221, + [2343] = 1235, + [2344] = 1238, + [2345] = 2345, + [2346] = 2346, + [2347] = 1227, + [2348] = 1245, + [2349] = 2346, + [2350] = 1142, + [2351] = 1150, + [2352] = 1245, + [2353] = 1143, + [2354] = 1243, + [2355] = 1237, + [2356] = 1240, + [2357] = 1241, + [2358] = 1239, + [2359] = 1242, + [2360] = 1236, + [2361] = 1142, + [2362] = 1150, + [2363] = 2346, + [2364] = 1241, + [2365] = 1143, + [2366] = 1227, + [2367] = 2367, + [2368] = 1221, + [2369] = 2346, + [2370] = 2370, + [2371] = 1235, + [2372] = 1242, + [2373] = 2373, + [2374] = 1239, + [2375] = 2346, + [2376] = 1142, + [2377] = 2346, + [2378] = 2346, + [2379] = 2346, + [2380] = 2380, + [2381] = 2346, + [2382] = 1150, + [2383] = 2383, + [2384] = 2384, + [2385] = 1247, + [2386] = 1244, + [2387] = 2387, + [2388] = 1182, + [2389] = 2389, + [2390] = 1175, + [2391] = 1174, + [2392] = 1177, + [2393] = 1187, + [2394] = 1234, + [2395] = 1233, + [2396] = 1223, + [2397] = 1220, + [2398] = 1185, + [2399] = 1184, + [2400] = 2400, + [2401] = 1180, + [2402] = 1183, + [2403] = 1188, + [2404] = 1143, + [2405] = 1244, + [2406] = 1181, + [2407] = 2407, + [2408] = 1179, + [2409] = 1219, + [2410] = 1162, + [2411] = 1219, + [2412] = 2412, + [2413] = 1220, + [2414] = 1223, + [2415] = 2415, + [2416] = 1233, + [2417] = 1234, + [2418] = 2418, + [2419] = 1247, + [2420] = 1162, + [2421] = 2421, + [2422] = 2422, + [2423] = 2423, + [2424] = 2424, + [2425] = 2425, + [2426] = 2426, + [2427] = 2427, + [2428] = 1207, + [2429] = 2429, + [2430] = 2430, + [2431] = 2431, + [2432] = 2432, + [2433] = 2433, + [2434] = 2434, + [2435] = 1142, + [2436] = 2436, + [2437] = 2437, + [2438] = 2438, + [2439] = 2439, + [2440] = 2440, + [2441] = 2441, + [2442] = 2442, + [2443] = 2443, + [2444] = 2444, + [2445] = 2445, + [2446] = 2446, + [2447] = 2447, + [2448] = 2448, + [2449] = 2449, + [2450] = 2450, + [2451] = 2451, + [2452] = 1150, + [2453] = 2453, + [2454] = 2454, + [2455] = 2455, + [2456] = 2456, + [2457] = 1237, + [2458] = 1211, + [2459] = 1184, + [2460] = 1185, + [2461] = 1182, + [2462] = 1305, + [2463] = 1180, + [2464] = 1236, + [2465] = 1243, + [2466] = 1187, + [2467] = 1177, + [2468] = 1179, + [2469] = 1174, + [2470] = 1141, + [2471] = 1240, + [2472] = 1238, + [2473] = 1183, + [2474] = 1180, + [2475] = 1175, + [2476] = 1243, + [2477] = 1238, + [2478] = 1180, + [2479] = 2479, + [2480] = 1181, + [2481] = 1188, + [2482] = 1237, + [2483] = 1175, + [2484] = 1314, + [2485] = 2485, + [2486] = 2486, + [2487] = 1240, + [2488] = 1182, + [2489] = 2489, + [2490] = 1181, + [2491] = 1174, + [2492] = 1182, + [2493] = 2493, + [2494] = 1187, + [2495] = 1141, + [2496] = 1187, + [2497] = 1188, + [2498] = 1177, + [2499] = 1181, + [2500] = 1179, + [2501] = 1188, + [2502] = 1183, + [2503] = 1175, + [2504] = 1179, + [2505] = 1177, + [2506] = 1209, + [2507] = 1236, + [2508] = 1185, + [2509] = 1184, + [2510] = 1183, + [2511] = 1210, + [2512] = 1184, + [2513] = 1185, + [2514] = 1141, + [2515] = 1174, + [2516] = 2516, + [2517] = 2517, + [2518] = 2518, + [2519] = 1183, + [2520] = 2520, + [2521] = 1174, + [2522] = 2522, + [2523] = 1177, + [2524] = 1187, + [2525] = 1141, + [2526] = 1319, + [2527] = 1141, + [2528] = 1180, + [2529] = 2529, + [2530] = 1179, + [2531] = 2531, + [2532] = 2532, + [2533] = 2533, + [2534] = 2534, + [2535] = 2535, + [2536] = 1175, + [2537] = 1184, + [2538] = 1185, + [2539] = 2539, + [2540] = 2540, + [2541] = 2541, + [2542] = 2542, + [2543] = 1188, + [2544] = 1182, + [2545] = 1181, + [2546] = 2546, + [2547] = 2547, + [2548] = 2548, + [2549] = 2549, + [2550] = 1162, + [2551] = 2551, + [2552] = 2552, + [2553] = 2553, + [2554] = 2554, + [2555] = 2555, + [2556] = 2556, + [2557] = 2555, + [2558] = 2558, + [2559] = 2559, + [2560] = 2560, + [2561] = 2561, + [2562] = 2560, + [2563] = 2555, + [2564] = 2564, + [2565] = 2559, + [2566] = 1162, + [2567] = 2567, + [2568] = 2568, + [2569] = 2569, + [2570] = 2569, + [2571] = 2571, + [2572] = 2572, + [2573] = 2559, + [2574] = 2569, + [2575] = 2569, + [2576] = 2555, + [2577] = 2577, + [2578] = 2555, + [2579] = 2579, + [2580] = 2580, + [2581] = 2569, + [2582] = 2555, + [2583] = 2569, + [2584] = 2569, + [2585] = 2585, + [2586] = 2586, + [2587] = 2587, + [2588] = 2586, + [2589] = 2569, + [2590] = 2558, + [2591] = 2555, + [2592] = 2572, + [2593] = 2569, + [2594] = 2594, + [2595] = 1186, + [2596] = 2596, + [2597] = 2597, + [2598] = 2598, + [2599] = 2555, + [2600] = 2529, + [2601] = 2569, + [2602] = 2602, + [2603] = 2585, + [2604] = 2558, + [2605] = 2605, + [2606] = 2606, + [2607] = 2567, + [2608] = 1186, + [2609] = 2594, + [2610] = 2598, + [2611] = 2568, + [2612] = 2602, + [2613] = 2555, + [2614] = 2555, + [2615] = 2564, + [2616] = 2616, + [2617] = 1229, + [2618] = 1141, + [2619] = 1186, + [2620] = 2620, + [2621] = 2621, + [2622] = 2622, + [2623] = 2623, + [2624] = 1217, + [2625] = 2625, + [2626] = 2626, + [2627] = 2623, + [2628] = 1221, + [2629] = 2626, + [2630] = 1186, + [2631] = 2631, + [2632] = 2632, + [2633] = 1235, + [2634] = 2623, + [2635] = 2623, + [2636] = 1218, + [2637] = 2637, + [2638] = 1227, + [2639] = 1186, + [2640] = 2640, + [2641] = 2623, + [2642] = 2642, + [2643] = 2643, + [2644] = 2644, + [2645] = 2623, + [2646] = 2568, + [2647] = 1216, + [2648] = 2606, + [2649] = 1234, + [2650] = 1192, + [2651] = 2529, + [2652] = 1202, + [2653] = 1193, + [2654] = 1199, + [2655] = 2655, + [2656] = 1191, + [2657] = 1233, + [2658] = 2658, + [2659] = 1195, + [2660] = 1194, + [2661] = 1206, + [2662] = 1203, + [2663] = 1223, + [2664] = 1162, + [2665] = 1202, + [2666] = 2666, + [2667] = 1199, + [2668] = 2668, + [2669] = 2669, + [2670] = 1193, + [2671] = 1190, + [2672] = 1220, + [2673] = 2673, + [2674] = 1194, + [2675] = 2675, + [2676] = 2676, + [2677] = 1219, + [2678] = 1162, + [2679] = 1190, + [2680] = 2680, + [2681] = 1198, + [2682] = 2682, + [2683] = 2640, + [2684] = 1207, + [2685] = 1197, + [2686] = 1197, + [2687] = 1201, + [2688] = 1186, + [2689] = 1203, + [2690] = 2690, + [2691] = 1162, + [2692] = 1199, + [2693] = 1195, + [2694] = 1189, + [2695] = 1191, + [2696] = 1206, + [2697] = 1198, + [2698] = 1205, + [2699] = 1195, + [2700] = 1162, + [2701] = 1208, + [2702] = 1203, + [2703] = 1099, + [2704] = 2704, + [2705] = 1193, + [2706] = 1208, + [2707] = 1247, + [2708] = 2708, + [2709] = 2709, + [2710] = 1206, + [2711] = 1244, + [2712] = 1189, + [2713] = 1201, + [2714] = 1189, + [2715] = 1208, + [2716] = 1202, + [2717] = 1201, + [2718] = 2718, + [2719] = 2719, + [2720] = 1207, + [2721] = 1192, + [2722] = 1205, + [2723] = 1162, + [2724] = 2724, + [2725] = 2725, + [2726] = 1194, + [2727] = 1198, + [2728] = 1197, + [2729] = 1207, + [2730] = 1205, + [2731] = 2731, + [2732] = 1141, + [2733] = 1190, + [2734] = 1192, + [2735] = 1191, + [2736] = 2736, + [2737] = 2737, + [2738] = 2738, + [2739] = 2739, + [2740] = 2740, + [2741] = 1198, + [2742] = 1162, + [2743] = 2743, + [2744] = 2744, + [2745] = 2745, + [2746] = 2746, + [2747] = 2747, + [2748] = 1199, + [2749] = 2749, + [2750] = 1209, + [2751] = 1208, + [2752] = 1241, + [2753] = 1207, + [2754] = 1197, + [2755] = 2755, + [2756] = 2756, + [2757] = 2757, + [2758] = 2758, + [2759] = 2759, + [2760] = 1203, + [2761] = 1195, + [2762] = 2762, + [2763] = 2763, + [2764] = 2764, + [2765] = 2765, + [2766] = 1193, + [2767] = 2767, + [2768] = 1245, + [2769] = 1238, + [2770] = 1243, + [2771] = 1104, + [2772] = 2772, + [2773] = 2773, + [2774] = 1237, + [2775] = 2775, + [2776] = 1201, + [2777] = 1189, + [2778] = 1206, + [2779] = 1211, + [2780] = 2780, + [2781] = 1210, + [2782] = 1240, + [2783] = 1191, + [2784] = 1239, + [2785] = 1209, + [2786] = 1205, + [2787] = 2453, + [2788] = 1236, + [2789] = 2789, + [2790] = 2790, + [2791] = 2791, + [2792] = 2792, + [2793] = 2793, + [2794] = 1242, + [2795] = 2795, + [2796] = 1210, + [2797] = 1190, + [2798] = 2798, + [2799] = 2799, + [2800] = 2800, + [2801] = 1192, + [2802] = 2802, + [2803] = 2803, + [2804] = 1211, + [2805] = 2805, + [2806] = 2806, + [2807] = 2807, + [2808] = 2808, + [2809] = 2809, + [2810] = 1210, + [2811] = 2811, + [2812] = 2812, + [2813] = 2813, + [2814] = 1211, + [2815] = 1194, + [2816] = 1209, + [2817] = 2817, + [2818] = 2818, + [2819] = 1202, + [2820] = 2820, + [2821] = 2821, + [2822] = 1211, + [2823] = 1212, + [2824] = 2824, + [2825] = 2825, + [2826] = 2826, + [2827] = 1213, + [2828] = 1212, + [2829] = 1209, + [2830] = 2830, + [2831] = 1214, + [2832] = 2256, + [2833] = 1215, + [2834] = 1215, + [2835] = 1214, + [2836] = 2836, + [2837] = 2837, + [2838] = 1210, + [2839] = 2839, + [2840] = 1210, + [2841] = 2841, + [2842] = 1215, + [2843] = 1213, + [2844] = 1213, + [2845] = 2845, + [2846] = 1214, + [2847] = 1209, + [2848] = 2841, + [2849] = 1211, + [2850] = 1212, + [2851] = 1218, + [2852] = 1215, + [2853] = 2853, + [2854] = 2854, + [2855] = 2855, + [2856] = 2856, + [2857] = 1216, + [2858] = 2858, + [2859] = 2859, + [2860] = 1216, + [2861] = 2861, + [2862] = 2862, + [2863] = 2863, + [2864] = 1214, + [2865] = 2865, + [2866] = 2866, + [2867] = 1217, + [2868] = 2868, + [2869] = 2869, + [2870] = 2870, + [2871] = 2871, + [2872] = 2872, + [2873] = 2873, + [2874] = 2874, + [2875] = 1218, + [2876] = 1213, + [2877] = 2877, + [2878] = 1216, + [2879] = 2879, + [2880] = 2880, + [2881] = 2881, + [2882] = 2882, + [2883] = 2883, + [2884] = 2265, + [2885] = 2885, + [2886] = 1212, + [2887] = 2887, + [2888] = 1162, + [2889] = 2889, + [2890] = 2890, + [2891] = 2891, + [2892] = 2892, + [2893] = 2893, + [2894] = 2894, + [2895] = 2264, + [2896] = 2896, + [2897] = 2897, + [2898] = 2898, + [2899] = 2899, + [2900] = 2900, + [2901] = 2901, + [2902] = 2902, + [2903] = 2903, + [2904] = 2904, + [2905] = 2905, + [2906] = 1217, + [2907] = 2907, + [2908] = 2908, + [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] = 1218, + [2923] = 2923, + [2924] = 1229, + [2925] = 1216, + [2926] = 2926, + [2927] = 1217, + [2928] = 2262, + [2929] = 2929, + [2930] = 2930, + [2931] = 2931, + [2932] = 2932, + [2933] = 2933, + [2934] = 2934, + [2935] = 2935, + [2936] = 1218, + [2937] = 2937, + [2938] = 2938, + [2939] = 2939, + [2940] = 2940, + [2941] = 2941, + [2942] = 2942, + [2943] = 2943, + [2944] = 2944, + [2945] = 2945, + [2946] = 2946, + [2947] = 2947, + [2948] = 2948, + [2949] = 2949, + [2950] = 2950, + [2951] = 2951, + [2952] = 2952, + [2953] = 2953, + [2954] = 2954, + [2955] = 2955, + [2956] = 1217, + [2957] = 2957, + [2958] = 2263, + [2959] = 2959, + [2960] = 1216, + [2961] = 1231, + [2962] = 1231, + [2963] = 1222, + [2964] = 1217, + [2965] = 1232, + [2966] = 1224, + [2967] = 1233, + [2968] = 1234, + [2969] = 1221, + [2970] = 1224, + [2971] = 2971, + [2972] = 1227, + [2973] = 1223, + [2974] = 1228, + [2975] = 1220, + [2976] = 1223, + [2977] = 1222, + [2978] = 1222, + [2979] = 1219, + [2980] = 1225, + [2981] = 1233, + [2982] = 1231, + [2983] = 1234, + [2984] = 1229, + [2985] = 1220, + [2986] = 1211, + [2987] = 1229, + [2988] = 1227, + [2989] = 1162, + [2990] = 1227, + [2991] = 1226, + [2992] = 1235, + [2993] = 1219, + [2994] = 1162, + [2995] = 1229, + [2996] = 1219, + [2997] = 1218, + [2998] = 1216, + [2999] = 1210, + [3000] = 1232, + [3001] = 1217, + [3002] = 1220, + [3003] = 1228, + [3004] = 1226, + [3005] = 1221, + [3006] = 1226, + [3007] = 1228, + [3008] = 1218, + [3009] = 1223, + [3010] = 1141, + [3011] = 1235, + [3012] = 1232, + [3013] = 1224, + [3014] = 1209, + [3015] = 1225, + [3016] = 1229, + [3017] = 1221, + [3018] = 1233, + [3019] = 2690, + [3020] = 1234, + [3021] = 1235, + [3022] = 1225, + [3023] = 2256, + [3024] = 1162, + [3025] = 3025, + [3026] = 1162, + [3027] = 1247, + [3028] = 1225, + [3029] = 1231, + [3030] = 3030, + [3031] = 1221, + [3032] = 1247, + [3033] = 3033, + [3034] = 1243, + [3035] = 1233, + [3036] = 1235, + [3037] = 2971, + [3038] = 1234, + [3039] = 1223, + [3040] = 1221, + [3041] = 3041, + [3042] = 1246, + [3043] = 1245, + [3044] = 1226, + [3045] = 1220, + [3046] = 1227, + [3047] = 1222, + [3048] = 1244, + [3049] = 1236, + [3050] = 1241, + [3051] = 1417, + [3052] = 1246, + [3053] = 2263, + [3054] = 1238, + [3055] = 1243, + [3056] = 1235, + [3057] = 1211, + [3058] = 1237, + [3059] = 1216, + [3060] = 1239, + [3061] = 1162, + [3062] = 1240, + [3063] = 1210, + [3064] = 1241, + [3065] = 1239, + [3066] = 1236, + [3067] = 1209, + [3068] = 1242, + [3069] = 1241, + [3070] = 1227, + [3071] = 1229, + [3072] = 1239, + [3073] = 1242, + [3074] = 1241, + [3075] = 1245, + [3076] = 1242, + [3077] = 1240, + [3078] = 1217, + [3079] = 1162, + [3080] = 1218, + [3081] = 3081, + [3082] = 3082, + [3083] = 2310, + [3084] = 1245, + [3085] = 1229, + [3086] = 1216, + [3087] = 1232, + [3088] = 1247, + [3089] = 1244, + [3090] = 1219, + [3091] = 1237, + [3092] = 1238, + [3093] = 1240, + [3094] = 2265, + [3095] = 1245, + [3096] = 1239, + [3097] = 1246, + [3098] = 1244, + [3099] = 2264, + [3100] = 1224, + [3101] = 1229, + [3102] = 1236, + [3103] = 1218, + [3104] = 1217, + [3105] = 2262, + [3106] = 3106, + [3107] = 3107, + [3108] = 3108, + [3109] = 3109, + [3110] = 1238, + [3111] = 1243, + [3112] = 1228, + [3113] = 1237, + [3114] = 1242, + [3115] = 1417, + [3116] = 1273, + [3117] = 1238, + [3118] = 1269, + [3119] = 1297, + [3120] = 1259, + [3121] = 1254, + [3122] = 1292, + [3123] = 1270, + [3124] = 1273, + [3125] = 1287, + [3126] = 1295, + [3127] = 1275, + [3128] = 1289, + [3129] = 1243, + [3130] = 1277, + [3131] = 1276, + [3132] = 1244, + [3133] = 1272, + [3134] = 2318, + [3135] = 1237, + [3136] = 1280, + [3137] = 1248, + [3138] = 1282, + [3139] = 1179, + [3140] = 1257, + [3141] = 1181, + [3142] = 1188, + [3143] = 1253, + [3144] = 1245, + [3145] = 1290, + [3146] = 1183, + [3147] = 1263, + [3148] = 1252, + [3149] = 1240, + [3150] = 1184, + [3151] = 1185, + [3152] = 1258, + [3153] = 1261, + [3154] = 1236, + [3155] = 1187, + [3156] = 1177, + [3157] = 1174, + [3158] = 1291, + [3159] = 1259, + [3160] = 1294, + [3161] = 1274, + [3162] = 1175, + [3163] = 1298, + [3164] = 1251, + [3165] = 1261, + [3166] = 1296, + [3167] = 1293, + [3168] = 1271, + [3169] = 1286, + [3170] = 1260, + [3171] = 1175, + [3172] = 1256, + [3173] = 1179, + [3174] = 1283, + [3175] = 1249, + [3176] = 1250, + [3177] = 1234, + [3178] = 1233, + [3179] = 1279, + [3180] = 1262, + [3181] = 1278, + [3182] = 1277, + [3183] = 1276, + [3184] = 1297, + [3185] = 1272, + [3186] = 1223, + [3187] = 1295, + [3188] = 1220, + [3189] = 1262, + [3190] = 1250, + [3191] = 1283, + [3192] = 1278, + [3193] = 1239, + [3194] = 1256, + [3195] = 1187, + [3196] = 1260, + [3197] = 1219, + [3198] = 1263, + [3199] = 1271, + [3200] = 1179, + [3201] = 1274, + [3202] = 1181, + [3203] = 1177, + [3204] = 1245, + [3205] = 1174, + [3206] = 1188, + [3207] = 1289, + [3208] = 1183, + [3209] = 1241, + [3210] = 1279, + [3211] = 1239, + [3212] = 1242, + [3213] = 1246, + [3214] = 1269, + [3215] = 1251, + [3216] = 1184, + [3217] = 1249, + [3218] = 1286, + [3219] = 1185, + [3220] = 1293, + [3221] = 1242, + [3222] = 1287, + [3223] = 1296, + [3224] = 1298, + [3225] = 1217, + [3226] = 1187, + [3227] = 1294, + [3228] = 1291, + [3229] = 1247, + [3230] = 1290, + [3231] = 1181, + [3232] = 1177, + [3233] = 1174, + [3234] = 1244, + [3235] = 1175, + [3236] = 1241, + [3237] = 1259, + [3238] = 1229, + [3239] = 1188, + [3240] = 1258, + [3241] = 1261, + [3242] = 1216, + [3243] = 1218, + [3244] = 1162, + [3245] = 1253, + [3246] = 1257, + [3247] = 1290, + [3248] = 1252, + [3249] = 1272, + [3250] = 1162, + [3251] = 1254, + [3252] = 1292, + [3253] = 1276, + [3254] = 1277, + [3255] = 1269, + [3256] = 1287, + [3257] = 1292, + [3258] = 1295, + [3259] = 1297, + [3260] = 1282, + [3261] = 1248, + [3262] = 1280, + [3263] = 1275, + [3264] = 1273, + [3265] = 1270, + [3266] = 1185, + [3267] = 1184, + [3268] = 2335, + [3269] = 1254, + [3270] = 1183, + [3271] = 1252, + [3272] = 1289, + [3273] = 1258, + [3274] = 1274, + [3275] = 1291, + [3276] = 1294, + [3277] = 1282, + [3278] = 1248, + [3279] = 1280, + [3280] = 1298, + [3281] = 1296, + [3282] = 1275, + [3283] = 1293, + [3284] = 1247, + [3285] = 1286, + [3286] = 1249, + [3287] = 1279, + [3288] = 1278, + [3289] = 1270, + [3290] = 1257, + [3291] = 1262, + [3292] = 1253, + [3293] = 1250, + [3294] = 1283, + [3295] = 1251, + [3296] = 1271, + [3297] = 2321, + [3298] = 2330, + [3299] = 1256, + [3300] = 1260, + [3301] = 1263, + [3302] = 1177, + [3303] = 1273, + [3304] = 1269, + [3305] = 1235, + [3306] = 1162, + [3307] = 1276, + [3308] = 1277, + [3309] = 1287, + [3310] = 1417, + [3311] = 1292, + [3312] = 2370, + [3313] = 1187, + [3314] = 1295, + [3315] = 1289, + [3316] = 2373, + [3317] = 1263, + [3318] = 1274, + [3319] = 1271, + [3320] = 1257, + [3321] = 1260, + [3322] = 1256, + [3323] = 1179, + [3324] = 1251, + [3325] = 1283, + [3326] = 1245, + [3327] = 1250, + [3328] = 1241, + [3329] = 1297, + [3330] = 1185, + [3331] = 1262, + [3332] = 1175, + [3333] = 1261, + [3334] = 2971, + [3335] = 1278, + [3336] = 1221, + [3337] = 1242, + [3338] = 1279, + [3339] = 1239, + [3340] = 1241, + [3341] = 1239, + [3342] = 1249, + [3343] = 1286, + [3344] = 1242, + [3345] = 1245, + [3346] = 1236, + [3347] = 1240, + [3348] = 1293, + [3349] = 1296, + [3350] = 1298, + [3351] = 1237, + [3352] = 1184, + [3353] = 1294, + [3354] = 1291, + [3355] = 1253, + [3356] = 1181, + [3357] = 1188, + [3358] = 1259, + [3359] = 1258, + [3360] = 1243, + [3361] = 1227, + [3362] = 1238, + [3363] = 1290, + [3364] = 1183, + [3365] = 1282, + [3366] = 1252, + [3367] = 1248, + [3368] = 1254, + [3369] = 1280, + [3370] = 1275, + [3371] = 2345, + [3372] = 1270, + [3373] = 1272, + [3374] = 1174, + [3375] = 2421, + [3376] = 2443, + [3377] = 2450, + [3378] = 2400, + [3379] = 1247, + [3380] = 1162, + [3381] = 2412, + [3382] = 1227, + [3383] = 1234, + [3384] = 2415, + [3385] = 1244, + [3386] = 1219, + [3387] = 2440, + [3388] = 1221, + [3389] = 1235, + [3390] = 2418, + [3391] = 2441, + [3392] = 1241, + [3393] = 1220, + [3394] = 1245, + [3395] = 2456, + [3396] = 1223, + [3397] = 1239, + [3398] = 2384, + [3399] = 2451, + [3400] = 2455, + [3401] = 2454, + [3402] = 2422, + [3403] = 2449, + [3404] = 2448, + [3405] = 2383, + [3406] = 1233, + [3407] = 2447, + [3408] = 2446, + [3409] = 2445, + [3410] = 2444, + [3411] = 1242, + [3412] = 2256, + [3413] = 2442, + [3414] = 2423, + [3415] = 2426, + [3416] = 2438, + [3417] = 2437, + [3418] = 2436, + [3419] = 2434, + [3420] = 2433, + [3421] = 2432, + [3422] = 2431, + [3423] = 2430, + [3424] = 2429, + [3425] = 2427, + [3426] = 2439, + [3427] = 2425, + [3428] = 2424, + [3429] = 1220, + [3430] = 3106, + [3431] = 1240, + [3432] = 3432, + [3433] = 3108, + [3434] = 1247, + [3435] = 2493, + [3436] = 1211, + [3437] = 2485, + [3438] = 1236, + [3439] = 2263, + [3440] = 1244, + [3441] = 1210, + [3442] = 1234, + [3443] = 1219, + [3444] = 1243, + [3445] = 1223, + [3446] = 1233, + [3447] = 1238, + [3448] = 2265, + [3449] = 2264, + [3450] = 1237, + [3451] = 1209, + [3452] = 2262, + [3453] = 2549, + [3454] = 1243, + [3455] = 3455, + [3456] = 2540, + [3457] = 2535, + [3458] = 2546, + [3459] = 2531, + [3460] = 2520, + [3461] = 2518, + [3462] = 2541, + [3463] = 2552, + [3464] = 2533, + [3465] = 2517, + [3466] = 2539, + [3467] = 2551, + [3468] = 2553, + [3469] = 2547, + [3470] = 2548, + [3471] = 2542, + [3472] = 2516, + [3473] = 2534, + [3474] = 2532, + [3475] = 1216, + [3476] = 1229, + [3477] = 1218, + [3478] = 2522, + [3479] = 1240, + [3480] = 1217, + [3481] = 1238, + [3482] = 1237, + [3483] = 1236, + [3484] = 1162, + [3485] = 2561, + [3486] = 2606, + [3487] = 2605, + [3488] = 1235, + [3489] = 1221, + [3490] = 1239, + [3491] = 2606, + [3492] = 1245, + [3493] = 2642, + [3494] = 1241, + [3495] = 1242, + [3496] = 2640, + [3497] = 1227, + [3498] = 2631, + [3499] = 2637, + [3500] = 2625, + [3501] = 2658, + [3502] = 1244, + [3503] = 3503, + [3504] = 2731, + [3505] = 2666, + [3506] = 2668, + [3507] = 3507, + [3508] = 2676, + [3509] = 1219, + [3510] = 1220, + [3511] = 1223, + [3512] = 1233, + [3513] = 1234, + [3514] = 2709, + [3515] = 2640, + [3516] = 1247, + [3517] = 3517, + [3518] = 2757, + [3519] = 1243, + [3520] = 2765, + [3521] = 2764, + [3522] = 2763, + [3523] = 3523, + [3524] = 3524, + [3525] = 3525, + [3526] = 3524, + [3527] = 2759, + [3528] = 3524, + [3529] = 2758, + [3530] = 2812, + [3531] = 2756, + [3532] = 3532, + [3533] = 3524, + [3534] = 3524, + [3535] = 2813, + [3536] = 3524, + [3537] = 3537, + [3538] = 3524, + [3539] = 3524, + [3540] = 3524, + [3541] = 2767, + [3542] = 3524, + [3543] = 3524, + [3544] = 3524, + [3545] = 3545, + [3546] = 2680, + [3547] = 1238, + [3548] = 3524, + [3549] = 3524, + [3550] = 3524, + [3551] = 3524, + [3552] = 1237, + [3553] = 2749, + [3554] = 2772, + [3555] = 2773, + [3556] = 2807, + [3557] = 3524, + [3558] = 1240, + [3559] = 2808, + [3560] = 3524, + [3561] = 3524, + [3562] = 1236, + [3563] = 2737, + [3564] = 2775, + [3565] = 2793, + [3566] = 3524, + [3567] = 3524, + [3568] = 2798, + [3569] = 2799, + [3570] = 3524, + [3571] = 2800, + [3572] = 2746, + [3573] = 2806, + [3574] = 3524, + [3575] = 3524, + [3576] = 3524, + [3577] = 3524, + [3578] = 3524, + [3579] = 3524, + [3580] = 3524, + [3581] = 2809, + [3582] = 2744, + [3583] = 2743, + [3584] = 2738, + [3585] = 3585, + [3586] = 2825, + [3587] = 2904, + [3588] = 3588, + [3589] = 3589, + [3590] = 3590, + [3591] = 2839, + [3592] = 3592, + [3593] = 3593, + [3594] = 3594, + [3595] = 2837, + [3596] = 3596, + [3597] = 3597, + [3598] = 3598, + [3599] = 2836, + [3600] = 2904, + [3601] = 2909, + [3602] = 3602, + [3603] = 2909, + [3604] = 3604, + [3605] = 3605, + [3606] = 2826, + [3607] = 3607, + [3608] = 3608, + [3609] = 3609, + [3610] = 3610, + [3611] = 3611, + [3612] = 3612, + [3613] = 3613, + [3614] = 3614, + [3615] = 3615, + [3616] = 3616, + [3617] = 3617, + [3618] = 3618, + [3619] = 3619, + [3620] = 3620, + [3621] = 3621, + [3622] = 3622, + [3623] = 3623, + [3624] = 3624, + [3625] = 3625, + [3626] = 3626, + [3627] = 3627, + [3628] = 3628, + [3629] = 3629, + [3630] = 3630, + [3631] = 2904, + [3632] = 3632, + [3633] = 3633, + [3634] = 3634, + [3635] = 3635, + [3636] = 3636, + [3637] = 3637, + [3638] = 3638, + [3639] = 3639, + [3640] = 3640, + [3641] = 3641, + [3642] = 3642, + [3643] = 3643, + [3644] = 3644, + [3645] = 3645, + [3646] = 3646, + [3647] = 3647, + [3648] = 3648, + [3649] = 3649, + [3650] = 3650, + [3651] = 3651, + [3652] = 3652, + [3653] = 3653, + [3654] = 3654, + [3655] = 3655, + [3656] = 3656, + [3657] = 3657, + [3658] = 3658, + [3659] = 3659, + [3660] = 3660, + [3661] = 3661, + [3662] = 3662, + [3663] = 3663, + [3664] = 3664, + [3665] = 3665, + [3666] = 3666, + [3667] = 3667, + [3668] = 3668, + [3669] = 3669, + [3670] = 3670, + [3671] = 3671, + [3672] = 3672, + [3673] = 3673, + [3674] = 3674, + [3675] = 3675, + [3676] = 3676, + [3677] = 3677, + [3678] = 3678, + [3679] = 2909, + [3680] = 3680, + [3681] = 3681, + [3682] = 3682, + [3683] = 3683, + [3684] = 3684, + [3685] = 3685, + [3686] = 3686, + [3687] = 3687, + [3688] = 3688, + [3689] = 3689, + [3690] = 3690, + [3691] = 3691, + [3692] = 3692, + [3693] = 3693, + [3694] = 3694, + [3695] = 3695, + [3696] = 3696, + [3697] = 3697, + [3698] = 3698, + [3699] = 3699, + [3700] = 3700, + [3701] = 3701, + [3702] = 3702, + [3703] = 3703, + [3704] = 3704, + [3705] = 3705, + [3706] = 3706, + [3707] = 3707, + [3708] = 3708, + [3709] = 3709, + [3710] = 3710, + [3711] = 3711, + [3712] = 3712, + [3713] = 3713, + [3714] = 3714, + [3715] = 3715, + [3716] = 3716, + [3717] = 3717, + [3718] = 3718, + [3719] = 3719, + [3720] = 3720, + [3721] = 3721, + [3722] = 3722, + [3723] = 3723, + [3724] = 3724, + [3725] = 3725, + [3726] = 3726, + [3727] = 3727, + [3728] = 3728, + [3729] = 3729, + [3730] = 3730, + [3731] = 3731, + [3732] = 3732, + [3733] = 3733, + [3734] = 3734, + [3735] = 3735, + [3736] = 3736, + [3737] = 3737, + [3738] = 3738, + [3739] = 3739, + [3740] = 3740, + [3741] = 3741, + [3742] = 3742, + [3743] = 3743, + [3744] = 3744, + [3745] = 3745, + [3746] = 3746, + [3747] = 3747, + [3748] = 3748, + [3749] = 3749, + [3750] = 3750, + [3751] = 3751, + [3752] = 3752, + [3753] = 3753, + [3754] = 3754, + [3755] = 3755, + [3756] = 3756, + [3757] = 3757, + [3758] = 3758, + [3759] = 3759, + [3760] = 3760, + [3761] = 3761, + [3762] = 3762, + [3763] = 3763, + [3764] = 3764, + [3765] = 3765, + [3766] = 3766, + [3767] = 3767, + [3768] = 3768, + [3769] = 3769, + [3770] = 3770, + [3771] = 3771, + [3772] = 3772, + [3773] = 3773, + [3774] = 3774, + [3775] = 3775, + [3776] = 3776, + [3777] = 3777, + [3778] = 3778, + [3779] = 3779, + [3780] = 3780, + [3781] = 3781, + [3782] = 3782, + [3783] = 3783, + [3784] = 3784, + [3785] = 3785, + [3786] = 3786, + [3787] = 3787, + [3788] = 3788, + [3789] = 3789, + [3790] = 3790, + [3791] = 3791, + [3792] = 3792, + [3793] = 3793, + [3794] = 3794, + [3795] = 3795, + [3796] = 3796, + [3797] = 3797, + [3798] = 3798, + [3799] = 3799, + [3800] = 3800, + [3801] = 3801, + [3802] = 3802, + [3803] = 3803, + [3804] = 3804, + [3805] = 3805, + [3806] = 3806, + [3807] = 3807, + [3808] = 3808, + [3809] = 3809, + [3810] = 3810, + [3811] = 3811, + [3812] = 3812, + [3813] = 3813, + [3814] = 3814, + [3815] = 3815, + [3816] = 3816, + [3817] = 3817, + [3818] = 3818, + [3819] = 3819, + [3820] = 3820, + [3821] = 3821, + [3822] = 3822, + [3823] = 3823, + [3824] = 3824, + [3825] = 3825, + [3826] = 3826, + [3827] = 3827, + [3828] = 3828, + [3829] = 3829, + [3830] = 3830, + [3831] = 3831, + [3832] = 3832, + [3833] = 3833, + [3834] = 3834, + [3835] = 3835, + [3836] = 3836, + [3837] = 3837, + [3838] = 3838, + [3839] = 3839, + [3840] = 3840, + [3841] = 3841, + [3842] = 3842, + [3843] = 3843, + [3844] = 3844, + [3845] = 3845, + [3846] = 3846, + [3847] = 3847, + [3848] = 3848, + [3849] = 3849, + [3850] = 3850, + [3851] = 3851, + [3852] = 3852, + [3853] = 3853, + [3854] = 3854, + [3855] = 3855, + [3856] = 3856, + [3857] = 3857, + [3858] = 3858, + [3859] = 3859, + [3860] = 3860, + [3861] = 3861, + [3862] = 3862, + [3863] = 3863, + [3864] = 3864, + [3865] = 3865, + [3866] = 3866, + [3867] = 3867, + [3868] = 3868, + [3869] = 3869, + [3870] = 3870, + [3871] = 3871, + [3872] = 3872, + [3873] = 3873, + [3874] = 3874, + [3875] = 3875, + [3876] = 3876, + [3877] = 3877, + [3878] = 3878, + [3879] = 3879, + [3880] = 3880, + [3881] = 3881, + [3882] = 3882, + [3883] = 3883, + [3884] = 3884, + [3885] = 3885, + [3886] = 3886, + [3887] = 3887, + [3888] = 3888, + [3889] = 2940, + [3890] = 3890, + [3891] = 3891, + [3892] = 3892, + [3893] = 3893, + [3894] = 2948, + [3895] = 2955, + [3896] = 3896, + [3897] = 3897, + [3898] = 3898, + [3899] = 3899, + [3900] = 3900, + [3901] = 3901, + [3902] = 3902, + [3903] = 3903, + [3904] = 3904, + [3905] = 3905, + [3906] = 3906, + [3907] = 3907, + [3908] = 3908, + [3909] = 3909, + [3910] = 3910, + [3911] = 3911, + [3912] = 2931, + [3913] = 3913, + [3914] = 3914, + [3915] = 3915, + [3916] = 3916, + [3917] = 3917, + [3918] = 3918, + [3919] = 3919, + [3920] = 3920, + [3921] = 3921, + [3922] = 3922, + [3923] = 2898, + [3924] = 2897, + [3925] = 3925, + [3926] = 3926, + [3927] = 3927, + [3928] = 3928, + [3929] = 3929, + [3930] = 2891, + [3931] = 3931, + [3932] = 3932, + [3933] = 3933, + [3934] = 3934, + [3935] = 3935, + [3936] = 3936, + [3937] = 3937, + [3938] = 3938, + [3939] = 3939, + [3940] = 3940, + [3941] = 3941, + [3942] = 3942, + [3943] = 3943, + [3944] = 3944, + [3945] = 3945, + [3946] = 3946, + [3947] = 3947, + [3948] = 3948, + [3949] = 3949, + [3950] = 3950, + [3951] = 3951, + [3952] = 2951, + [3953] = 2950, + [3954] = 3954, + [3955] = 3955, + [3956] = 3956, + [3957] = 3957, + [3958] = 3958, + [3959] = 3959, + [3960] = 3960, + [3961] = 3961, + [3962] = 3962, + [3963] = 3963, + [3964] = 2894, + [3965] = 2890, + [3966] = 2873, + [3967] = 3967, + [3968] = 3968, + [3969] = 3969, + [3970] = 3970, + [3971] = 3971, + [3972] = 3972, + [3973] = 3973, + [3974] = 3974, + [3975] = 3975, + [3976] = 3976, + [3977] = 3977, + [3978] = 3978, + [3979] = 2870, + [3980] = 3980, + [3981] = 3981, + [3982] = 3982, + [3983] = 3983, + [3984] = 3984, + [3985] = 3985, + [3986] = 3986, + [3987] = 3987, + [3988] = 3988, + [3989] = 3989, + [3990] = 3990, + [3991] = 3991, + [3992] = 3992, + [3993] = 3993, + [3994] = 3994, + [3995] = 3995, + [3996] = 3996, + [3997] = 3997, + [3998] = 3998, + [3999] = 3999, + [4000] = 4000, + [4001] = 4001, + [4002] = 4002, + [4003] = 4003, + [4004] = 4004, + [4005] = 4005, + [4006] = 4006, + [4007] = 4007, + [4008] = 4008, + [4009] = 4009, + [4010] = 4010, + [4011] = 4011, + [4012] = 4012, + [4013] = 4013, + [4014] = 4014, + [4015] = 4015, + [4016] = 2853, + [4017] = 2883, + [4018] = 4018, + [4019] = 4019, + [4020] = 4020, + [4021] = 4021, + [4022] = 4022, + [4023] = 4023, + [4024] = 4024, + [4025] = 4025, + [4026] = 2933, + [4027] = 2905, + [4028] = 2896, + [4029] = 4029, + [4030] = 4030, + [4031] = 2893, + [4032] = 4032, + [4033] = 4033, + [4034] = 4034, + [4035] = 4035, + [4036] = 4036, + [4037] = 4037, + [4038] = 4038, + [4039] = 4039, + [4040] = 4040, + [4041] = 4041, + [4042] = 4042, + [4043] = 4043, + [4044] = 4044, + [4045] = 4045, + [4046] = 4046, + [4047] = 4047, + [4048] = 4048, + [4049] = 4049, + [4050] = 4050, + [4051] = 4051, + [4052] = 4052, + [4053] = 4053, + [4054] = 4054, + [4055] = 4055, + [4056] = 4056, + [4057] = 4057, + [4058] = 4058, + [4059] = 4059, + [4060] = 4060, + [4061] = 4061, + [4062] = 4062, + [4063] = 4063, + [4064] = 4064, + [4065] = 4065, + [4066] = 4066, + [4067] = 4067, + [4068] = 4068, + [4069] = 4069, + [4070] = 4070, + [4071] = 4071, + [4072] = 4072, + [4073] = 4073, + [4074] = 4074, + [4075] = 4075, + [4076] = 4076, + [4077] = 4077, + [4078] = 4078, + [4079] = 4079, + [4080] = 4080, + [4081] = 4081, + [4082] = 4082, + [4083] = 4083, + [4084] = 4084, + [4085] = 4085, + [4086] = 4086, + [4087] = 4087, + [4088] = 4088, + [4089] = 4089, + [4090] = 4090, + [4091] = 4091, + [4092] = 4092, + [4093] = 4093, + [4094] = 4094, + [4095] = 4095, + [4096] = 4096, + [4097] = 4097, + [4098] = 4098, + [4099] = 4099, + [4100] = 4100, + [4101] = 4101, + [4102] = 4102, + [4103] = 4103, + [4104] = 4104, + [4105] = 4105, + [4106] = 4106, + [4107] = 4107, + [4108] = 4108, + [4109] = 4109, + [4110] = 4110, + [4111] = 4111, + [4112] = 4112, + [4113] = 4113, + [4114] = 4114, + [4115] = 4115, + [4116] = 4116, + [4117] = 4117, + [4118] = 4118, + [4119] = 4119, + [4120] = 4120, + [4121] = 4121, + [4122] = 4122, + [4123] = 4123, + [4124] = 4124, + [4125] = 4125, + [4126] = 2945, + [4127] = 4127, + [4128] = 4128, + [4129] = 4129, + [4130] = 4130, + [4131] = 4131, + [4132] = 4132, + [4133] = 4133, + [4134] = 4134, + [4135] = 4135, + [4136] = 4136, + [4137] = 4137, + [4138] = 2953, + [4139] = 4139, + [4140] = 4140, + [4141] = 4141, + [4142] = 4142, + [4143] = 4143, + [4144] = 4144, + [4145] = 4145, + [4146] = 4146, + [4147] = 4147, + [4148] = 4148, + [4149] = 4149, + [4150] = 4150, + [4151] = 4151, + [4152] = 4152, + [4153] = 4153, + [4154] = 4154, + [4155] = 4155, + [4156] = 4156, + [4157] = 4157, + [4158] = 4158, + [4159] = 4159, + [4160] = 4160, + [4161] = 4161, + [4162] = 4162, + [4163] = 4163, + [4164] = 4164, + [4165] = 4165, + [4166] = 4166, + [4167] = 4167, + [4168] = 4168, + [4169] = 4169, + [4170] = 4170, + [4171] = 4171, + [4172] = 4172, + [4173] = 4173, + [4174] = 4174, + [4175] = 4175, + [4176] = 4176, + [4177] = 4177, + [4178] = 4178, + [4179] = 4179, + [4180] = 4180, + [4181] = 4181, + [4182] = 4182, + [4183] = 4183, + [4184] = 4184, + [4185] = 4185, + [4186] = 4186, + [4187] = 4187, + [4188] = 2872, + [4189] = 4189, + [4190] = 4190, + [4191] = 4191, + [4192] = 4192, + [4193] = 4193, + [4194] = 4194, + [4195] = 4195, + [4196] = 4196, + [4197] = 4197, + [4198] = 4198, + [4199] = 4199, + [4200] = 4200, + [4201] = 4201, + [4202] = 4202, + [4203] = 4203, + [4204] = 4204, + [4205] = 4205, + [4206] = 4206, + [4207] = 4207, + [4208] = 4208, + [4209] = 4209, + [4210] = 4210, + [4211] = 4211, + [4212] = 4212, + [4213] = 4213, + [4214] = 4214, + [4215] = 4215, + [4216] = 4216, + [4217] = 4217, + [4218] = 4215, + [4219] = 4219, + [4220] = 4217, + [4221] = 4212, + [4222] = 4214, + [4223] = 4223, + [4224] = 4213, + [4225] = 4225, + [4226] = 4226, + [4227] = 4227, + [4228] = 4228, + [4229] = 3025, + [4230] = 4230, + [4231] = 4231, + [4232] = 4232, + [4233] = 4233, + [4234] = 4234, + [4235] = 3033, + [4236] = 3041, + [4237] = 2824, + [4238] = 3081, + [4239] = 3109, + [4240] = 3107, + [4241] = 1229, + [4242] = 1216, + [4243] = 1218, + [4244] = 1217, + [4245] = 1217, + [4246] = 1216, + [4247] = 1229, + [4248] = 1218, + [4249] = 1162, + [4250] = 4250, + [4251] = 1242, + [4252] = 1239, + [4253] = 2820, + [4254] = 1245, + [4255] = 1241, + [4256] = 1162, + [4257] = 4257, + [4258] = 4258, + [4259] = 4259, + [4260] = 4260, + [4261] = 4261, + [4262] = 4262, + [4263] = 4263, + [4264] = 4264, + [4265] = 2256, + [4266] = 4266, + [4267] = 4267, + [4268] = 4268, + [4269] = 4269, + [4270] = 4266, + [4271] = 4262, + [4272] = 4272, + [4273] = 4273, + [4274] = 4274, + [4275] = 4261, + [4276] = 4262, + [4277] = 4277, + [4278] = 4259, + [4279] = 4279, + [4280] = 4280, + [4281] = 4262, + [4282] = 4282, + [4283] = 4283, + [4284] = 4284, + [4285] = 4257, + [4286] = 4286, + [4287] = 4287, + [4288] = 4288, + [4289] = 4262, + [4290] = 4261, + [4291] = 4291, + [4292] = 4272, + [4293] = 4262, + [4294] = 4258, + [4295] = 4261, + [4296] = 4269, + [4297] = 4297, + [4298] = 4297, + [4299] = 4266, + [4300] = 4300, + [4301] = 4283, + [4302] = 4302, + [4303] = 4303, + [4304] = 4304, + [4305] = 4305, + [4306] = 4287, + [4307] = 4297, + [4308] = 4308, + [4309] = 4309, + [4310] = 4304, + [4311] = 4308, + [4312] = 4266, + [4313] = 4266, + [4314] = 4266, + [4315] = 4279, + [4316] = 4280, + [4317] = 4261, + [4318] = 4266, + [4319] = 4282, + [4320] = 4284, + [4321] = 4287, + [4322] = 4300, + [4323] = 4323, + [4324] = 4277, + [4325] = 4267, + [4326] = 4288, + [4327] = 4273, + [4328] = 1241, + [4329] = 4329, + [4330] = 1245, + [4331] = 4261, + [4332] = 4286, + [4333] = 1239, + [4334] = 1242, + [4335] = 4335, + [4336] = 4305, + [4337] = 4260, + [4338] = 4274, + [4339] = 4291, + [4340] = 4291, + [4341] = 4258, + [4342] = 4342, + [4343] = 4343, + [4344] = 4344, + [4345] = 4345, + [4346] = 4346, + [4347] = 4343, + [4348] = 4348, + [4349] = 4349, + [4350] = 4345, + [4351] = 4351, + [4352] = 2265, + [4353] = 4342, + [4354] = 4351, + [4355] = 4344, + [4356] = 4343, + [4357] = 4357, + [4358] = 4351, + [4359] = 4344, + [4360] = 4357, + [4361] = 4361, + [4362] = 4351, + [4363] = 4363, + [4364] = 4344, + [4365] = 4343, + [4366] = 4366, + [4367] = 4351, + [4368] = 4349, + [4369] = 4363, + [4370] = 4370, + [4371] = 4344, + [4372] = 4372, + [4373] = 4373, + [4374] = 4342, + [4375] = 4342, + [4376] = 4376, + [4377] = 4377, + [4378] = 4378, + [4379] = 4363, + [4380] = 4363, + [4381] = 4343, + [4382] = 4351, + [4383] = 4344, + [4384] = 4351, + [4385] = 4343, + [4386] = 4386, + [4387] = 4342, + [4388] = 4344, + [4389] = 4372, + [4390] = 4343, + [4391] = 4343, + [4392] = 4345, + [4393] = 4393, + [4394] = 4386, + [4395] = 4395, + [4396] = 4351, + [4397] = 4344, + [4398] = 4343, + [4399] = 4399, + [4400] = 4351, + [4401] = 4386, + [4402] = 4357, + [4403] = 4344, + [4404] = 4343, + [4405] = 4361, + [4406] = 4406, + [4407] = 4357, + [4408] = 4372, + [4409] = 4395, + [4410] = 2264, + [4411] = 4363, + [4412] = 4351, + [4413] = 4348, + [4414] = 4344, + [4415] = 4415, + [4416] = 4351, + [4417] = 4386, + [4418] = 4418, + [4419] = 4344, + [4420] = 4386, + [4421] = 4342, + [4422] = 4343, + [4423] = 4363, + [4424] = 4424, + [4425] = 4425, + [4426] = 4426, + [4427] = 4346, + [4428] = 4346, + [4429] = 4372, + [4430] = 4363, + [4431] = 4351, + [4432] = 4432, + [4433] = 4344, + [4434] = 4343, + [4435] = 4343, + [4436] = 4343, + [4437] = 4344, + [4438] = 4343, + [4439] = 4366, + [4440] = 4351, + [4441] = 4351, + [4442] = 4346, + [4443] = 4342, + [4444] = 4426, + [4445] = 4344, + [4446] = 4373, + [4447] = 4343, + [4448] = 4344, + [4449] = 4351, + [4450] = 4344, + [4451] = 4343, + [4452] = 4351, + [4453] = 4425, + [4454] = 4426, + [4455] = 4426, + [4456] = 4425, + [4457] = 4363, + [4458] = 4386, + [4459] = 4342, + [4460] = 4363, + [4461] = 4415, + [4462] = 4343, + [4463] = 4346, + [4464] = 4342, + [4465] = 4465, + [4466] = 4351, + [4467] = 4344, + [4468] = 4386, + [4469] = 4343, + [4470] = 4351, + [4471] = 4357, + [4472] = 4344, + [4473] = 4343, + [4474] = 4363, + [4475] = 4386, + [4476] = 4393, + [4477] = 4376, + [4478] = 4465, + [4479] = 4386, + [4480] = 4342, + [4481] = 4377, + [4482] = 4363, + [4483] = 4343, + [4484] = 2256, + [4485] = 4342, + [4486] = 4486, + [4487] = 4465, + [4488] = 2262, + [4489] = 4344, + [4490] = 4372, + [4491] = 4363, + [4492] = 4351, + [4493] = 4351, + [4494] = 4344, + [4495] = 4343, + [4496] = 4349, + [4497] = 4351, + [4498] = 4418, + [4499] = 4344, + [4500] = 4346, + [4501] = 4344, + [4502] = 4344, + [4503] = 4386, + [4504] = 4343, + [4505] = 4370, + [4506] = 4426, + [4507] = 4425, + [4508] = 4343, + [4509] = 4415, + [4510] = 4346, + [4511] = 4366, + [4512] = 4344, + [4513] = 4426, + [4514] = 4425, + [4515] = 4363, + [4516] = 4351, + [4517] = 4344, + [4518] = 4344, + [4519] = 4519, + [4520] = 4351, + [4521] = 4344, + [4522] = 4363, + [4523] = 4344, + [4524] = 4363, + [4525] = 4349, + [4526] = 4344, + [4527] = 4527, + [4528] = 4386, + [4529] = 4344, + [4530] = 4344, + [4531] = 4344, + [4532] = 4357, + [4533] = 4342, + [4534] = 4376, + [4535] = 4344, + [4536] = 4344, + [4537] = 4351, + [4538] = 4538, + [4539] = 4344, + [4540] = 4540, + [4541] = 4344, + [4542] = 4344, + [4543] = 4344, + [4544] = 4386, + [4545] = 4425, + [4546] = 4348, + [4547] = 4344, + [4548] = 4344, + [4549] = 4343, + [4550] = 4386, + [4551] = 4551, + [4552] = 4363, + [4553] = 4342, + [4554] = 4415, + [4555] = 4342, + [4556] = 4343, + [4557] = 4377, + [4558] = 4351, + [4559] = 4357, + [4560] = 4363, + [4561] = 4343, + [4562] = 4363, + [4563] = 4363, + [4564] = 4349, + [4565] = 4344, + [4566] = 4342, + [4567] = 4378, + [4568] = 4342, + [4569] = 4386, + [4570] = 4406, + [4571] = 4342, + [4572] = 4572, + [4573] = 4363, + [4574] = 4372, + [4575] = 4363, + [4576] = 4386, + [4577] = 4346, + [4578] = 4343, + [4579] = 4342, + [4580] = 4342, + [4581] = 4342, + [4582] = 4386, + [4583] = 4363, + [4584] = 4349, + [4585] = 4386, + [4586] = 4351, + [4587] = 4587, + [4588] = 4432, + [4589] = 4370, + [4590] = 4393, + [4591] = 4351, + [4592] = 4418, + [4593] = 4386, + [4594] = 4363, + [4595] = 4344, + [4596] = 4363, + [4597] = 4343, + [4598] = 4386, + [4599] = 4344, + [4600] = 4344, + [4601] = 4342, + [4602] = 4587, + [4603] = 4342, + [4604] = 4378, + [4605] = 4343, + [4606] = 4386, + [4607] = 4357, + [4608] = 4363, + [4609] = 4386, + [4610] = 2263, + [4611] = 4611, + [4612] = 4342, + [4613] = 4386, + [4614] = 4363, + [4615] = 4395, + [4616] = 4538, + [4617] = 4386, + [4618] = 4618, + [4619] = 4342, + [4620] = 4342, + [4621] = 4346, + [4622] = 4386, + [4623] = 4623, + [4624] = 4624, + [4625] = 4363, + [4626] = 4626, + [4627] = 4627, + [4628] = 4357, + [4629] = 4623, + [4630] = 4393, + [4631] = 4351, + [4632] = 4351, + [4633] = 4351, + [4634] = 4344, + [4635] = 4343, + [4636] = 4342, + [4637] = 4386, + [4638] = 4346, + [4639] = 4639, + [4640] = 4363, + [4641] = 4342, + [4642] = 4342, + [4643] = 4386, + [4644] = 4363, + [4645] = 4645, + [4646] = 4386, + [4647] = 4363, + [4648] = 4342, + [4649] = 4357, + [4650] = 4486, + [4651] = 4342, + [4652] = 4386, + [4653] = 4363, + [4654] = 4386, + [4655] = 4386, + [4656] = 4611, + [4657] = 4342, + [4658] = 4626, + [4659] = 4386, + [4660] = 4361, + [4661] = 4406, + [4662] = 4662, + [4663] = 2265, + [4664] = 2264, + [4665] = 2263, + [4666] = 2690, + [4667] = 2262, + [4668] = 4668, + [4669] = 4669, + [4670] = 4669, + [4671] = 1141, + [4672] = 1141, + [4673] = 4673, + [4674] = 4674, + [4675] = 4674, + [4676] = 4676, + [4677] = 4676, + [4678] = 4676, + [4679] = 4679, + [4680] = 4679, + [4681] = 4676, + [4682] = 4676, + [4683] = 4676, + [4684] = 4679, + [4685] = 4679, + [4686] = 4676, + [4687] = 4676, + [4688] = 4676, + [4689] = 4679, + [4690] = 4679, + [4691] = 4679, + [4692] = 4676, + [4693] = 4679, + [4694] = 4676, + [4695] = 4679, + [4696] = 4676, + [4697] = 4676, + [4698] = 4676, + [4699] = 4679, + [4700] = 4679, + [4701] = 4676, + [4702] = 4679, + [4703] = 4676, + [4704] = 4679, + [4705] = 4676, + [4706] = 4676, + [4707] = 4679, + [4708] = 4676, + [4709] = 4679, + [4710] = 1141, + [4711] = 4679, + [4712] = 1141, + [4713] = 4676, + [4714] = 4679, + [4715] = 4679, + [4716] = 4676, + [4717] = 4676, + [4718] = 4679, + [4719] = 4679, + [4720] = 4679, + [4721] = 4676, + [4722] = 4679, + [4723] = 4676, + [4724] = 4679, + [4725] = 4676, + [4726] = 4679, + [4727] = 4676, + [4728] = 4679, + [4729] = 4676, + [4730] = 4676, + [4731] = 4679, + [4732] = 4679, + [4733] = 4679, + [4734] = 4679, + [4735] = 1141, + [4736] = 4676, + [4737] = 4679, + [4738] = 4676, + [4739] = 4679, + [4740] = 4676, + [4741] = 3108, + [4742] = 1141, + [4743] = 3106, + [4744] = 4744, + [4745] = 1141, + [4746] = 4744, + [4747] = 1141, + [4748] = 1141, + [4749] = 4749, + [4750] = 4749, + [4751] = 4751, + [4752] = 4751, + [4753] = 4753, + [4754] = 4754, + [4755] = 1141, + [4756] = 4749, + [4757] = 1141, + [4758] = 4753, + [4759] = 4749, + [4760] = 1141, + [4761] = 4761, + [4762] = 4762, + [4763] = 4763, + [4764] = 4764, + [4765] = 1211, + [4766] = 4766, + [4767] = 4767, + [4768] = 4768, + [4769] = 1141, + [4770] = 4763, + [4771] = 4771, + [4772] = 4772, + [4773] = 4773, + [4774] = 4766, + [4775] = 4775, + [4776] = 4776, + [4777] = 4777, + [4778] = 1209, + [4779] = 4779, + [4780] = 4779, + [4781] = 4777, + [4782] = 4782, + [4783] = 4766, + [4784] = 4784, + [4785] = 4785, + [4786] = 4776, + [4787] = 4767, + [4788] = 4782, + [4789] = 4764, + [4790] = 4763, + [4791] = 1209, + [4792] = 4792, + [4793] = 4773, + [4794] = 4762, + [4795] = 4777, + [4796] = 4796, + [4797] = 4762, + [4798] = 1210, + [4799] = 4779, + [4800] = 4800, + [4801] = 4792, + [4802] = 4767, + [4803] = 4764, + [4804] = 1141, + [4805] = 4805, + [4806] = 4796, + [4807] = 4775, + [4808] = 4808, + [4809] = 4762, + [4810] = 4785, + [4811] = 4784, + [4812] = 4812, + [4813] = 4813, + [4814] = 4779, + [4815] = 4777, + [4816] = 4782, + [4817] = 4766, + [4818] = 1211, + [4819] = 4805, + [4820] = 4768, + [4821] = 4776, + [4822] = 1210, + [4823] = 4812, + [4824] = 4763, + [4825] = 4805, + [4826] = 4792, + [4827] = 4812, + [4828] = 4775, + [4829] = 4808, + [4830] = 4792, + [4831] = 4773, + [4832] = 4813, + [4833] = 4764, + [4834] = 4767, + [4835] = 4835, + [4836] = 4836, + [4837] = 1217, + [4838] = 1229, + [4839] = 1217, + [4840] = 4840, + [4841] = 1211, + [4842] = 4842, + [4843] = 1216, + [4844] = 4844, + [4845] = 4845, + [4846] = 4842, + [4847] = 1216, + [4848] = 1218, + [4849] = 1141, + [4850] = 4840, + [4851] = 4842, + [4852] = 4852, + [4853] = 1218, + [4854] = 4854, + [4855] = 1210, + [4856] = 1209, + [4857] = 1229, + [4858] = 4858, + [4859] = 4840, + [4860] = 1218, + [4861] = 1209, + [4862] = 4862, + [4863] = 4863, + [4864] = 4864, + [4865] = 1209, + [4866] = 1216, + [4867] = 1210, + [4868] = 4868, + [4869] = 1211, + [4870] = 4868, + [4871] = 4862, + [4872] = 1229, + [4873] = 1162, + [4874] = 4862, + [4875] = 1229, + [4876] = 4868, + [4877] = 1211, + [4878] = 1216, + [4879] = 1141, + [4880] = 1218, + [4881] = 4862, + [4882] = 1141, + [4883] = 4863, + [4884] = 4863, + [4885] = 4863, + [4886] = 1162, + [4887] = 4887, + [4888] = 1217, + [4889] = 4868, + [4890] = 1217, + [4891] = 1210, + [4892] = 4864, + [4893] = 4893, + [4894] = 4894, + [4895] = 1162, + [4896] = 4896, + [4897] = 4896, + [4898] = 4898, + [4899] = 1162, + [4900] = 1209, + [4901] = 2310, + [4902] = 1210, + [4903] = 4896, + [4904] = 1211, + [4905] = 4905, + [4906] = 1216, + [4907] = 1229, + [4908] = 1218, + [4909] = 4909, + [4910] = 4910, + [4911] = 4911, + [4912] = 4912, + [4913] = 4905, + [4914] = 4914, + [4915] = 4915, + [4916] = 4916, + [4917] = 4905, + [4918] = 4918, + [4919] = 1209, + [4920] = 4920, + [4921] = 4893, + [4922] = 1217, + [4923] = 4923, + [4924] = 4924, + [4925] = 4925, + [4926] = 4896, + [4927] = 4927, + [4928] = 4925, + [4929] = 1242, + [4930] = 1235, + [4931] = 4896, + [4932] = 4905, + [4933] = 1245, + [4934] = 1239, + [4935] = 4923, + [4936] = 4898, + [4937] = 1217, + [4938] = 4896, + [4939] = 4939, + [4940] = 4940, + [4941] = 4905, + [4942] = 1218, + [4943] = 4896, + [4944] = 1227, + [4945] = 4905, + [4946] = 1221, + [4947] = 4947, + [4948] = 1241, + [4949] = 4894, + [4950] = 4896, + [4951] = 1210, + [4952] = 4905, + [4953] = 1235, + [4954] = 1209, + [4955] = 1216, + [4956] = 1210, + [4957] = 1211, + [4958] = 4905, + [4959] = 4896, + [4960] = 1229, + [4961] = 1211, + [4962] = 1216, + [4963] = 1218, + [4964] = 4905, + [4965] = 4965, + [4966] = 4920, + [4967] = 4918, + [4968] = 4909, + [4969] = 2310, + [4970] = 1162, + [4971] = 1241, + [4972] = 1245, + [4973] = 1239, + [4974] = 1221, + [4975] = 1218, + [4976] = 1242, + [4977] = 1229, + [4978] = 1227, + [4979] = 1216, + [4980] = 4905, + [4981] = 4896, + [4982] = 4911, + [4983] = 4924, + [4984] = 4918, + [4985] = 1217, + [4986] = 1209, + [4987] = 1210, + [4988] = 1211, + [4989] = 1219, + [4990] = 1220, + [4991] = 1241, + [4992] = 4992, + [4993] = 1239, + [4994] = 1242, + [4995] = 1217, + [4996] = 1218, + [4997] = 1162, + [4998] = 1229, + [4999] = 4999, + [5000] = 1216, + [5001] = 1218, + [5002] = 1216, + [5003] = 5003, + [5004] = 5004, + [5005] = 1229, + [5006] = 1217, + [5007] = 1162, + [5008] = 1216, + [5009] = 1229, + [5010] = 1218, + [5011] = 1220, + [5012] = 1162, + [5013] = 5013, + [5014] = 5014, + [5015] = 5015, + [5016] = 5015, + [5017] = 5014, + [5018] = 1216, + [5019] = 1219, + [5020] = 5020, + [5021] = 1223, + [5022] = 1211, + [5023] = 5003, + [5024] = 1218, + [5025] = 1210, + [5026] = 1209, + [5027] = 5013, + [5028] = 1217, + [5029] = 1247, + [5030] = 1244, + [5031] = 1234, + [5032] = 1217, + [5033] = 1235, + [5034] = 1233, + [5035] = 5014, + [5036] = 4999, + [5037] = 1223, + [5038] = 1245, + [5039] = 2335, + [5040] = 1244, + [5041] = 2335, + [5042] = 4999, + [5043] = 5003, + [5044] = 5015, + [5045] = 5013, + [5046] = 1233, + [5047] = 1234, + [5048] = 5014, + [5049] = 5003, + [5050] = 1247, + [5051] = 5015, + [5052] = 1242, + [5053] = 1217, + [5054] = 1239, + [5055] = 5003, + [5056] = 1229, + [5057] = 5057, + [5058] = 5015, + [5059] = 5014, + [5060] = 1245, + [5061] = 1241, + [5062] = 5013, + [5063] = 5013, + [5064] = 1211, + [5065] = 5004, + [5066] = 5057, + [5067] = 1210, + [5068] = 5068, + [5069] = 1218, + [5070] = 4999, + [5071] = 5071, + [5072] = 1221, + [5073] = 1209, + [5074] = 5074, + [5075] = 4999, + [5076] = 2330, + [5077] = 1227, + [5078] = 5003, + [5079] = 5071, + [5080] = 1209, + [5081] = 4999, + [5082] = 5015, + [5083] = 1210, + [5084] = 5013, + [5085] = 1211, + [5086] = 1216, + [5087] = 2330, + [5088] = 5014, + [5089] = 1242, + [5090] = 2373, + [5091] = 1211, + [5092] = 1235, + [5093] = 5093, + [5094] = 5094, + [5095] = 1210, + [5096] = 5094, + [5097] = 1221, + [5098] = 1162, + [5099] = 1162, + [5100] = 1209, + [5101] = 1227, + [5102] = 5093, + [5103] = 1162, + [5104] = 1217, + [5105] = 2373, + [5106] = 1229, + [5107] = 3107, + [5108] = 2345, + [5109] = 5093, + [5110] = 5094, + [5111] = 1218, + [5112] = 1242, + [5113] = 1229, + [5114] = 1239, + [5115] = 5094, + [5116] = 1217, + [5117] = 1229, + [5118] = 1216, + [5119] = 1217, + [5120] = 1241, + [5121] = 1242, + [5122] = 1239, + [5123] = 1217, + [5124] = 5093, + [5125] = 1241, + [5126] = 1247, + [5127] = 1243, + [5128] = 1245, + [5129] = 1218, + [5130] = 1229, + [5131] = 1216, + [5132] = 1218, + [5133] = 1229, + [5134] = 1245, + [5135] = 1216, + [5136] = 1237, + [5137] = 5093, + [5138] = 1238, + [5139] = 4940, + [5140] = 1244, + [5141] = 5141, + [5142] = 4939, + [5143] = 1162, + [5144] = 5144, + [5145] = 1217, + [5146] = 1247, + [5147] = 1227, + [5148] = 1235, + [5149] = 1209, + [5150] = 1221, + [5151] = 2370, + [5152] = 1216, + [5153] = 1221, + [5154] = 4915, + [5155] = 4916, + [5156] = 1227, + [5157] = 1162, + [5158] = 5158, + [5159] = 5159, + [5160] = 1217, + [5161] = 1218, + [5162] = 1210, + [5163] = 1235, + [5164] = 1216, + [5165] = 1211, + [5166] = 2345, + [5167] = 1218, + [5168] = 1229, + [5169] = 1216, + [5170] = 5170, + [5171] = 1229, + [5172] = 1238, + [5173] = 1243, + [5174] = 5094, + [5175] = 1236, + [5176] = 5094, + [5177] = 1245, + [5178] = 1237, + [5179] = 1239, + [5180] = 1244, + [5181] = 1241, + [5182] = 1240, + [5183] = 1218, + [5184] = 1240, + [5185] = 1236, + [5186] = 5093, + [5187] = 2370, + [5188] = 2454, + [5189] = 1242, + [5190] = 2431, + [5191] = 2430, + [5192] = 2429, + [5193] = 1236, + [5194] = 2427, + [5195] = 1220, + [5196] = 2426, + [5197] = 2425, + [5198] = 2425, + [5199] = 1223, + [5200] = 2178, + [5201] = 1216, + [5202] = 1229, + [5203] = 2424, + [5204] = 2423, + [5205] = 1218, + [5206] = 2422, + [5207] = 2421, + [5208] = 5208, + [5209] = 2418, + [5210] = 1238, + [5211] = 5211, + [5212] = 5212, + [5213] = 2415, + [5214] = 5214, + [5215] = 1162, + [5216] = 2412, + [5217] = 1245, + [5218] = 2400, + [5219] = 1235, + [5220] = 1162, + [5221] = 2439, + [5222] = 2433, + [5223] = 2447, + [5224] = 2434, + [5225] = 2383, + [5226] = 2436, + [5227] = 1241, + [5228] = 1242, + [5229] = 2437, + [5230] = 2211, + [5231] = 2438, + [5232] = 1219, + [5233] = 1227, + [5234] = 1221, + [5235] = 1245, + [5236] = 1234, + [5237] = 1239, + [5238] = 1235, + [5239] = 1239, + [5240] = 1242, + [5241] = 5241, + [5242] = 2440, + [5243] = 2426, + [5244] = 1234, + [5245] = 1233, + [5246] = 2441, + [5247] = 2448, + [5248] = 5248, + [5249] = 2442, + [5250] = 2443, + [5251] = 2400, + [5252] = 2449, + [5253] = 5253, + [5254] = 1219, + [5255] = 2415, + [5256] = 5256, + [5257] = 1220, + [5258] = 2444, + [5259] = 2450, + [5260] = 1223, + [5261] = 1223, + [5262] = 5262, + [5263] = 5253, + [5264] = 2446, + [5265] = 1220, + [5266] = 2445, + [5267] = 1233, + [5268] = 1234, + [5269] = 2446, + [5270] = 2447, + [5271] = 2445, + [5272] = 2444, + [5273] = 2383, + [5274] = 1243, + [5275] = 2432, + [5276] = 1245, + [5277] = 1241, + [5278] = 1219, + [5279] = 1244, + [5280] = 2443, + [5281] = 2442, + [5282] = 2448, + [5283] = 1247, + [5284] = 1162, + [5285] = 2449, + [5286] = 2454, + [5287] = 2441, + [5288] = 2455, + [5289] = 2451, + [5290] = 2384, + [5291] = 1241, + [5292] = 2456, + [5293] = 1245, + [5294] = 1239, + [5295] = 1242, + [5296] = 1162, + [5297] = 2450, + [5298] = 5298, + [5299] = 1244, + [5300] = 5262, + [5301] = 2451, + [5302] = 2455, + [5303] = 1227, + [5304] = 1221, + [5305] = 1247, + [5306] = 2456, + [5307] = 1227, + [5308] = 1221, + [5309] = 2427, + [5310] = 5256, + [5311] = 5311, + [5312] = 1235, + [5313] = 5253, + [5314] = 2418, + [5315] = 2429, + [5316] = 2430, + [5317] = 1235, + [5318] = 2431, + [5319] = 1221, + [5320] = 5262, + [5321] = 2432, + [5322] = 2384, + [5323] = 1227, + [5324] = 2433, + [5325] = 1162, + [5326] = 1240, + [5327] = 1233, + [5328] = 1234, + [5329] = 1245, + [5330] = 1247, + [5331] = 2310, + [5332] = 1237, + [5333] = 1217, + [5334] = 1241, + [5335] = 1244, + [5336] = 1239, + [5337] = 1242, + [5338] = 2422, + [5339] = 2423, + [5340] = 2421, + [5341] = 2424, + [5342] = 1162, + [5343] = 5343, + [5344] = 1241, + [5345] = 5345, + [5346] = 1239, + [5347] = 1162, + [5348] = 1162, + [5349] = 1219, + [5350] = 2310, + [5351] = 1162, + [5352] = 1220, + [5353] = 2437, + [5354] = 2434, + [5355] = 2412, + [5356] = 2438, + [5357] = 1223, + [5358] = 5256, + [5359] = 5208, + [5360] = 2440, + [5361] = 2439, + [5362] = 1233, + [5363] = 2436, + [5364] = 5364, + [5365] = 5365, + [5366] = 5366, + [5367] = 5367, + [5368] = 1240, + [5369] = 1236, + [5370] = 1218, + [5371] = 5371, + [5372] = 5372, + [5373] = 1229, + [5374] = 1216, + [5375] = 5375, + [5376] = 5376, + [5377] = 1235, + [5378] = 1221, + [5379] = 5379, + [5380] = 1227, + [5381] = 2485, + [5382] = 1241, + [5383] = 5383, + [5384] = 1245, + [5385] = 1237, + [5386] = 1219, + [5387] = 1239, + [5388] = 1243, + [5389] = 1242, + [5390] = 1238, + [5391] = 1219, + [5392] = 5392, + [5393] = 1241, + [5394] = 2485, + [5395] = 1220, + [5396] = 1223, + [5397] = 1245, + [5398] = 5398, + [5399] = 1233, + [5400] = 1234, + [5401] = 1239, + [5402] = 1242, + [5403] = 1220, + [5404] = 5404, + [5405] = 1223, + [5406] = 5404, + [5407] = 1227, + [5408] = 1244, + [5409] = 1221, + [5410] = 2310, + [5411] = 1235, + [5412] = 1247, + [5413] = 5413, + [5414] = 5404, + [5415] = 5404, + [5416] = 5416, + [5417] = 5417, + [5418] = 5418, + [5419] = 5419, + [5420] = 5417, + [5421] = 5421, + [5422] = 5422, + [5423] = 5423, + [5424] = 1217, + [5425] = 1233, + [5426] = 1234, + [5427] = 5379, + [5428] = 5383, + [5429] = 5379, + [5430] = 5364, + [5431] = 5431, + [5432] = 5417, + [5433] = 1238, + [5434] = 1217, + [5435] = 1219, + [5436] = 5436, + [5437] = 5404, + [5438] = 1209, + [5439] = 1220, + [5440] = 1223, + [5441] = 1243, + [5442] = 1247, + [5443] = 1210, + [5444] = 1233, + [5445] = 1234, + [5446] = 1211, + [5447] = 1237, + [5448] = 1240, + [5449] = 1244, + [5450] = 1245, + [5451] = 1247, + [5452] = 5379, + [5453] = 1241, + [5454] = 1236, + [5455] = 1244, + [5456] = 1236, + [5457] = 5417, + [5458] = 5458, + [5459] = 1240, + [5460] = 1217, + [5461] = 5371, + [5462] = 1237, + [5463] = 1239, + [5464] = 5404, + [5465] = 1243, + [5466] = 1242, + [5467] = 1238, + [5468] = 1229, + [5469] = 1242, + [5470] = 1239, + [5471] = 5364, + [5472] = 2493, + [5473] = 5379, + [5474] = 5404, + [5475] = 1245, + [5476] = 5379, + [5477] = 1245, + [5478] = 5371, + [5479] = 1241, + [5480] = 1216, + [5481] = 1229, + [5482] = 2493, + [5483] = 1241, + [5484] = 5404, + [5485] = 1218, + [5486] = 5486, + [5487] = 1227, + [5488] = 5436, + [5489] = 1239, + [5490] = 5367, + [5491] = 1242, + [5492] = 1216, + [5493] = 1218, + [5494] = 1221, + [5495] = 1235, + [5496] = 5496, + [5497] = 5379, + [5498] = 5422, + [5499] = 5417, + [5500] = 5404, + [5501] = 5379, + [5502] = 1219, + [5503] = 5503, + [5504] = 1220, + [5505] = 5417, + [5506] = 1223, + [5507] = 1233, + [5508] = 1234, + [5509] = 5509, + [5510] = 1242, + [5511] = 1239, + [5512] = 1247, + [5513] = 1241, + [5514] = 5503, + [5515] = 5379, + [5516] = 1162, + [5517] = 5496, + [5518] = 5518, + [5519] = 5379, + [5520] = 1244, + [5521] = 5521, + [5522] = 1245, + [5523] = 5523, + [5524] = 5524, + [5525] = 1236, + [5526] = 1238, + [5527] = 1244, + [5528] = 5528, + [5529] = 1242, + [5530] = 1239, + [5531] = 1234, + [5532] = 1233, + [5533] = 2516, + [5534] = 2264, + [5535] = 1223, + [5536] = 1220, + [5537] = 1241, + [5538] = 2546, + [5539] = 5539, + [5540] = 1219, + [5541] = 1227, + [5542] = 2518, + [5543] = 1221, + [5544] = 2373, + [5545] = 5545, + [5546] = 1235, + [5547] = 1245, + [5548] = 2263, + [5549] = 2310, + [5550] = 2310, + [5551] = 2549, + [5552] = 2540, + [5553] = 2535, + [5554] = 2256, + [5555] = 2517, + [5556] = 2546, + [5557] = 2178, + [5558] = 1236, + [5559] = 2531, + [5560] = 2542, + [5561] = 5561, + [5562] = 5562, + [5563] = 1240, + [5564] = 1237, + [5565] = 5565, + [5566] = 5539, + [5567] = 1243, + [5568] = 2552, + [5569] = 1238, + [5570] = 2532, + [5571] = 1236, + [5572] = 1216, + [5573] = 1229, + [5574] = 1219, + [5575] = 1218, + [5576] = 5068, + [5577] = 1220, + [5578] = 5578, + [5579] = 1223, + [5580] = 1233, + [5581] = 1162, + [5582] = 1238, + [5583] = 1234, + [5584] = 1243, + [5585] = 2533, + [5586] = 5586, + [5587] = 1237, + [5588] = 2553, + [5589] = 2551, + [5590] = 2310, + [5591] = 1216, + [5592] = 1240, + [5593] = 2541, + [5594] = 2531, + [5595] = 5595, + [5596] = 1235, + [5597] = 1229, + [5598] = 5578, + [5599] = 1218, + [5600] = 5539, + [5601] = 1221, + [5602] = 1247, + [5603] = 1227, + [5604] = 5241, + [5605] = 1244, + [5606] = 5248, + [5607] = 5607, + [5608] = 2370, + [5609] = 1240, + [5610] = 2522, + [5611] = 1247, + [5612] = 1237, + [5613] = 5020, + [5614] = 1217, + [5615] = 2178, + [5616] = 2516, + [5617] = 1236, + [5618] = 1217, + [5619] = 1240, + [5620] = 2520, + [5621] = 2518, + [5622] = 2373, + [5623] = 1237, + [5624] = 1243, + [5625] = 5625, + [5626] = 1238, + [5627] = 2534, + [5628] = 2522, + [5629] = 2540, + [5630] = 5630, + [5631] = 2547, + [5632] = 5632, + [5633] = 5539, + [5634] = 2370, + [5635] = 2535, + [5636] = 2533, + [5637] = 5637, + [5638] = 1243, + [5639] = 2541, + [5640] = 2539, + [5641] = 2548, + [5642] = 5642, + [5643] = 2265, + [5644] = 1247, + [5645] = 1162, + [5646] = 5578, + [5647] = 5647, + [5648] = 2549, + [5649] = 1162, + [5650] = 1219, + [5651] = 1220, + [5652] = 1223, + [5653] = 2552, + [5654] = 1233, + [5655] = 1234, + [5656] = 1244, + [5657] = 2262, + [5658] = 2517, + [5659] = 5214, + [5660] = 2539, + [5661] = 5211, + [5662] = 2551, + [5663] = 2553, + [5664] = 2520, + [5665] = 2547, + [5666] = 2548, + [5667] = 2542, + [5668] = 2534, + [5669] = 2532, + [5670] = 1239, + [5671] = 5671, + [5672] = 5672, + [5673] = 2427, + [5674] = 5672, + [5675] = 5671, + [5676] = 5676, + [5677] = 5672, + [5678] = 5678, + [5679] = 5679, + [5680] = 5680, + [5681] = 1162, + [5682] = 5672, + [5683] = 2441, + [5684] = 2442, + [5685] = 2443, + [5686] = 5686, + [5687] = 1238, + [5688] = 5688, + [5689] = 5689, + [5690] = 1243, + [5691] = 2606, + [5692] = 5692, + [5693] = 2426, + [5694] = 5672, + [5695] = 1237, + [5696] = 2444, + [5697] = 5697, + [5698] = 5698, + [5699] = 2606, + [5700] = 1240, + [5701] = 2445, + [5702] = 5672, + [5703] = 5672, + [5704] = 5704, + [5705] = 1236, + [5706] = 1238, + [5707] = 5698, + [5708] = 5708, + [5709] = 1243, + [5710] = 5672, + [5711] = 2429, + [5712] = 5708, + [5713] = 1237, + [5714] = 2561, + [5715] = 1240, + [5716] = 5672, + [5717] = 2425, + [5718] = 2412, + [5719] = 5686, + [5720] = 5672, + [5721] = 5721, + [5722] = 1162, + [5723] = 5672, + [5724] = 2178, + [5725] = 1236, + [5726] = 2446, + [5727] = 5679, + [5728] = 5708, + [5729] = 5729, + [5730] = 5730, + [5731] = 5731, + [5732] = 5698, + [5733] = 1219, + [5734] = 5734, + [5735] = 2418, + [5736] = 5672, + [5737] = 5679, + [5738] = 2561, + [5739] = 2616, + [5740] = 5729, + [5741] = 1220, + [5742] = 5708, + [5743] = 1223, + [5744] = 1162, + [5745] = 1241, + [5746] = 1247, + [5747] = 2430, + [5748] = 2447, + [5749] = 5749, + [5750] = 1245, + [5751] = 5676, + [5752] = 5752, + [5753] = 5753, + [5754] = 5672, + [5755] = 5708, + [5756] = 5756, + [5757] = 1239, + [5758] = 2373, + [5759] = 5672, + [5760] = 1233, + [5761] = 5686, + [5762] = 5678, + [5763] = 1234, + [5764] = 5764, + [5765] = 5765, + [5766] = 5729, + [5767] = 5672, + [5768] = 2448, + [5769] = 5680, + [5770] = 2370, + [5771] = 2904, + [5772] = 2415, + [5773] = 5773, + [5774] = 5731, + [5775] = 5672, + [5776] = 2449, + [5777] = 1244, + [5778] = 1242, + [5779] = 2454, + [5780] = 5672, + [5781] = 5672, + [5782] = 5679, + [5783] = 1162, + [5784] = 5784, + [5785] = 5785, + [5786] = 5680, + [5787] = 2616, + [5788] = 2433, + [5789] = 5698, + [5790] = 5671, + [5791] = 5791, + [5792] = 5792, + [5793] = 1244, + [5794] = 5678, + [5795] = 5698, + [5796] = 5676, + [5797] = 5797, + [5798] = 5798, + [5799] = 5672, + [5800] = 2455, + [5801] = 2451, + [5802] = 5704, + [5803] = 2587, + [5804] = 2421, + [5805] = 2605, + [5806] = 5672, + [5807] = 5807, + [5808] = 5672, + [5809] = 2422, + [5810] = 5810, + [5811] = 2384, + [5812] = 1247, + [5813] = 5672, + [5814] = 5689, + [5815] = 5815, + [5816] = 5672, + [5817] = 2909, + [5818] = 2606, + [5819] = 5819, + [5820] = 5708, + [5821] = 2418, + [5822] = 2456, + [5823] = 5729, + [5824] = 2421, + [5825] = 2422, + [5826] = 5826, + [5827] = 5827, + [5828] = 5708, + [5829] = 5678, + [5830] = 5830, + [5831] = 5672, + [5832] = 5784, + [5833] = 1236, + [5834] = 5698, + [5835] = 5730, + [5836] = 5729, + [5837] = 5672, + [5838] = 2605, + [5839] = 5672, + [5840] = 1240, + [5841] = 1237, + [5842] = 2383, + [5843] = 5708, + [5844] = 1243, + [5845] = 5845, + [5846] = 2423, + [5847] = 2424, + [5848] = 2412, + [5849] = 2432, + [5850] = 5850, + [5851] = 5729, + [5852] = 5672, + [5853] = 1241, + [5854] = 5144, + [5855] = 5698, + [5856] = 2440, + [5857] = 2415, + [5858] = 5708, + [5859] = 1245, + [5860] = 2439, + [5861] = 1238, + [5862] = 5773, + [5863] = 5826, + [5864] = 2438, + [5865] = 1239, + [5866] = 2425, + [5867] = 5752, + [5868] = 2426, + [5869] = 2427, + [5870] = 5672, + [5871] = 5734, + [5872] = 2437, + [5873] = 5873, + [5874] = 2429, + [5875] = 2430, + [5876] = 2436, + [5877] = 2431, + [5878] = 2432, + [5879] = 2433, + [5880] = 2434, + [5881] = 5676, + [5882] = 2434, + [5883] = 2436, + [5884] = 2437, + [5885] = 2438, + [5886] = 2439, + [5887] = 2440, + [5888] = 5672, + [5889] = 1234, + [5890] = 2441, + [5891] = 2442, + [5892] = 2443, + [5893] = 2444, + [5894] = 2445, + [5895] = 1233, + [5896] = 2446, + [5897] = 2447, + [5898] = 2383, + [5899] = 5672, + [5900] = 2448, + [5901] = 2449, + [5902] = 2454, + [5903] = 5903, + [5904] = 2455, + [5905] = 2451, + [5906] = 5815, + [5907] = 5672, + [5908] = 2384, + [5909] = 5909, + [5910] = 2456, + [5911] = 2423, + [5912] = 5912, + [5913] = 1242, + [5914] = 1242, + [5915] = 1223, + [5916] = 1220, + [5917] = 2424, + [5918] = 5698, + [5919] = 5764, + [5920] = 5708, + [5921] = 5698, + [5922] = 1241, + [5923] = 2431, + [5924] = 5924, + [5925] = 5692, + [5926] = 2587, + [5927] = 5815, + [5928] = 5671, + [5929] = 1219, + [5930] = 1245, + [5931] = 5729, + [5932] = 5708, + [5933] = 5686, + [5934] = 5934, + [5935] = 5935, + [5936] = 2256, + [5937] = 5937, + [5938] = 5938, + [5939] = 5939, + [5940] = 5940, + [5941] = 5941, + [5942] = 5942, + [5943] = 5942, + [5944] = 5944, + [5945] = 2640, + [5946] = 5946, + [5947] = 5947, + [5948] = 5939, + [5949] = 5939, + [5950] = 5950, + [5951] = 5951, + [5952] = 5952, + [5953] = 5953, + [5954] = 5939, + [5955] = 1241, + [5956] = 1236, + [5957] = 5957, + [5958] = 2625, + [5959] = 5959, + [5960] = 5960, + [5961] = 5961, + [5962] = 5962, + [5963] = 5939, + [5964] = 5964, + [5965] = 5962, + [5966] = 5966, + [5967] = 5939, + [5968] = 5968, + [5969] = 5969, + [5970] = 1245, + [5971] = 2552, + [5972] = 5942, + [5973] = 5545, + [5974] = 5939, + [5975] = 1240, + [5976] = 5976, + [5977] = 5977, + [5978] = 5939, + [5979] = 1237, + [5980] = 5980, + [5981] = 2606, + [5982] = 5982, + [5983] = 2518, + [5984] = 5984, + [5985] = 5985, + [5986] = 5986, + [5987] = 5987, + [5988] = 5988, + [5989] = 5989, + [5990] = 5990, + [5991] = 5991, + [5992] = 5992, + [5993] = 5993, + [5994] = 2552, + [5995] = 2631, + [5996] = 1243, + [5997] = 5997, + [5998] = 2535, + [5999] = 5999, + [6000] = 6000, + [6001] = 6001, + [6002] = 6002, + [6003] = 6003, + [6004] = 6004, + [6005] = 2262, + [6006] = 6006, + [6007] = 5939, + [6008] = 2517, + [6009] = 1238, + [6010] = 6010, + [6011] = 5647, + [6012] = 6012, + [6013] = 6013, + [6014] = 2540, + [6015] = 2263, + [6016] = 2642, + [6017] = 5939, + [6018] = 2373, + [6019] = 6019, + [6020] = 6020, + [6021] = 6021, + [6022] = 2264, + [6023] = 6023, + [6024] = 6024, + [6025] = 6025, + [6026] = 2373, + [6027] = 5988, + [6028] = 6028, + [6029] = 5944, + [6030] = 2265, + [6031] = 5947, + [6032] = 5950, + [6033] = 5951, + [6034] = 6012, + [6035] = 6035, + [6036] = 5939, + [6037] = 2625, + [6038] = 5976, + [6039] = 5939, + [6040] = 5966, + [6041] = 6000, + [6042] = 5960, + [6043] = 5953, + [6044] = 6001, + [6045] = 6045, + [6046] = 5964, + [6047] = 5968, + [6048] = 2531, + [6049] = 2370, + [6050] = 5982, + [6051] = 5939, + [6052] = 6004, + [6053] = 6053, + [6054] = 2539, + [6055] = 5939, + [6056] = 1239, + [6057] = 5939, + [6058] = 1242, + [6059] = 6059, + [6060] = 5939, + [6061] = 6006, + [6062] = 1242, + [6063] = 6063, + [6064] = 1239, + [6065] = 2532, + [6066] = 6066, + [6067] = 5942, + [6068] = 6066, + [6069] = 6002, + [6070] = 2549, + [6071] = 6045, + [6072] = 6053, + [6073] = 2551, + [6074] = 6010, + [6075] = 5939, + [6076] = 2643, + [6077] = 1245, + [6078] = 2622, + [6079] = 2620, + [6080] = 5935, + [6081] = 1241, + [6082] = 2540, + [6083] = 2534, + [6084] = 2535, + [6085] = 2637, + [6086] = 6086, + [6087] = 6087, + [6088] = 6088, + [6089] = 5939, + [6090] = 6090, + [6091] = 2542, + [6092] = 5939, + [6093] = 2553, + [6094] = 6094, + [6095] = 6095, + [6096] = 6096, + [6097] = 5939, + [6098] = 5939, + [6099] = 6088, + [6100] = 2620, + [6101] = 6101, + [6102] = 6025, + [6103] = 5939, + [6104] = 2640, + [6105] = 6105, + [6106] = 5939, + [6107] = 6107, + [6108] = 6108, + [6109] = 2370, + [6110] = 6110, + [6111] = 6111, + [6112] = 2548, + [6113] = 2547, + [6114] = 6114, + [6115] = 2621, + [6116] = 6024, + [6117] = 5939, + [6118] = 2541, + [6119] = 6023, + [6120] = 6120, + [6121] = 2637, + [6122] = 2642, + [6123] = 6123, + [6124] = 5991, + [6125] = 6021, + [6126] = 5982, + [6127] = 6035, + [6128] = 6128, + [6129] = 6129, + [6130] = 6130, + [6131] = 5939, + [6132] = 1227, + [6133] = 2547, + [6134] = 6114, + [6135] = 1221, + [6136] = 2548, + [6137] = 5934, + [6138] = 5982, + [6139] = 6139, + [6140] = 6140, + [6141] = 6141, + [6142] = 5957, + [6143] = 2373, + [6144] = 1235, + [6145] = 6003, + [6146] = 2553, + [6147] = 5953, + [6148] = 2370, + [6149] = 6149, + [6150] = 5939, + [6151] = 2542, + [6152] = 6152, + [6153] = 6002, + [6154] = 2520, + [6155] = 2412, + [6156] = 6156, + [6157] = 2256, + [6158] = 5939, + [6159] = 2541, + [6160] = 5939, + [6161] = 5991, + [6162] = 6090, + [6163] = 6123, + [6164] = 5939, + [6165] = 5939, + [6166] = 2644, + [6167] = 2549, + [6168] = 2606, + [6169] = 2534, + [6170] = 2415, + [6171] = 6171, + [6172] = 6028, + [6173] = 5939, + [6174] = 5962, + [6175] = 6013, + [6176] = 6176, + [6177] = 5939, + [6178] = 2532, + [6179] = 5987, + [6180] = 1240, + [6181] = 2551, + [6182] = 6182, + [6183] = 6183, + [6184] = 6184, + [6185] = 2418, + [6186] = 6140, + [6187] = 2421, + [6188] = 2422, + [6189] = 1207, + [6190] = 5595, + [6191] = 5980, + [6192] = 5952, + [6193] = 5939, + [6194] = 6194, + [6195] = 5941, + [6196] = 5999, + [6197] = 2423, + [6198] = 2424, + [6199] = 6003, + [6200] = 6200, + [6201] = 1236, + [6202] = 2531, + [6203] = 2425, + [6204] = 2426, + [6205] = 2427, + [6206] = 5939, + [6207] = 2429, + [6208] = 2430, + [6209] = 2431, + [6210] = 2432, + [6211] = 2433, + [6212] = 6212, + [6213] = 2434, + [6214] = 2436, + [6215] = 2437, + [6216] = 2438, + [6217] = 2439, + [6218] = 2440, + [6219] = 6182, + [6220] = 2441, + [6221] = 2442, + [6222] = 2443, + [6223] = 2444, + [6224] = 2445, + [6225] = 2446, + [6226] = 2447, + [6227] = 2383, + [6228] = 2448, + [6229] = 2449, + [6230] = 2454, + [6231] = 2455, + [6232] = 2451, + [6233] = 2384, + [6234] = 2456, + [6235] = 6235, + [6236] = 6066, + [6237] = 6237, + [6238] = 5942, + [6239] = 6087, + [6240] = 6240, + [6241] = 2631, + [6242] = 6242, + [6243] = 6152, + [6244] = 5982, + [6245] = 5939, + [6246] = 6246, + [6247] = 6247, + [6248] = 6141, + [6249] = 6249, + [6250] = 6250, + [6251] = 1238, + [6252] = 5939, + [6253] = 6183, + [6254] = 6254, + [6255] = 6107, + [6256] = 1243, + [6257] = 5977, + [6258] = 5939, + [6259] = 6250, + [6260] = 2644, + [6261] = 6120, + [6262] = 5940, + [6263] = 6020, + [6264] = 5985, + [6265] = 6265, + [6266] = 6063, + [6267] = 6139, + [6268] = 6156, + [6269] = 2539, + [6270] = 5939, + [6271] = 2640, + [6272] = 5939, + [6273] = 5942, + [6274] = 6274, + [6275] = 6111, + [6276] = 6130, + [6277] = 6247, + [6278] = 6194, + [6279] = 5939, + [6280] = 6095, + [6281] = 5961, + [6282] = 6019, + [6283] = 6101, + [6284] = 5939, + [6285] = 5969, + [6286] = 6171, + [6287] = 6287, + [6288] = 6020, + [6289] = 5993, + [6290] = 5959, + [6291] = 2256, + [6292] = 6292, + [6293] = 5946, + [6294] = 5982, + [6295] = 5939, + [6296] = 2518, + [6297] = 6237, + [6298] = 6094, + [6299] = 2517, + [6300] = 5939, + [6301] = 5997, + [6302] = 6149, + [6303] = 2520, + [6304] = 5939, + [6305] = 6130, + [6306] = 6129, + [6307] = 1237, + [6308] = 6086, + [6309] = 5939, + [6310] = 6123, + [6311] = 2424, + [6312] = 6312, + [6313] = 6313, + [6314] = 5989, + [6315] = 5938, + [6316] = 6316, + [6317] = 6317, + [6318] = 6318, + [6319] = 6319, + [6320] = 6320, + [6321] = 6321, + [6322] = 6322, + [6323] = 6323, + [6324] = 6324, + [6325] = 6325, + [6326] = 6326, + [6327] = 6327, + [6328] = 6328, + [6329] = 6329, + [6330] = 6330, + [6331] = 6331, + [6332] = 2421, + [6333] = 6333, + [6334] = 6328, + [6335] = 2422, + [6336] = 6336, + [6337] = 6337, + [6338] = 6338, + [6339] = 6339, + [6340] = 6338, + [6341] = 6341, + [6342] = 6313, + [6343] = 2418, + [6344] = 6344, + [6345] = 2606, + [6346] = 6346, + [6347] = 6344, + [6348] = 6348, + [6349] = 6349, + [6350] = 6350, + [6351] = 6346, + [6352] = 6352, + [6353] = 6353, + [6354] = 6354, + [6355] = 6355, + [6356] = 6356, + [6357] = 6357, + [6358] = 6358, + [6359] = 6359, + [6360] = 6360, + [6361] = 6361, + [6362] = 6362, + [6363] = 6323, + [6364] = 6364, + [6365] = 6365, + [6366] = 6366, + [6367] = 6367, + [6368] = 6368, + [6369] = 6316, + [6370] = 6370, + [6371] = 2709, + [6372] = 6372, + [6373] = 6373, + [6374] = 6374, + [6375] = 6375, + [6376] = 6376, + [6377] = 2433, + [6378] = 2432, + [6379] = 6376, + [6380] = 6380, + [6381] = 6381, + [6382] = 6382, + [6383] = 2431, + [6384] = 2430, + [6385] = 6313, + [6386] = 2429, + [6387] = 6387, + [6388] = 2731, + [6389] = 6375, + [6390] = 6390, + [6391] = 6391, + [6392] = 6392, + [6393] = 2640, + [6394] = 6394, + [6395] = 6395, + [6396] = 6396, + [6397] = 6397, + [6398] = 2621, + [6399] = 6399, + [6400] = 1162, + [6401] = 6401, + [6402] = 6402, + [6403] = 6323, + [6404] = 6404, + [6405] = 6405, + [6406] = 2412, + [6407] = 6407, + [6408] = 6408, + [6409] = 5912, + [6410] = 6410, + [6411] = 6411, + [6412] = 6312, + [6413] = 6333, + [6414] = 6414, + [6415] = 6415, + [6416] = 6416, + [6417] = 6417, + [6418] = 6328, + [6419] = 6419, + [6420] = 6420, + [6421] = 6401, + [6422] = 6370, + [6423] = 6423, + [6424] = 5909, + [6425] = 6364, + [6426] = 2606, + [6427] = 6354, + [6428] = 6344, + [6429] = 6429, + [6430] = 6430, + [6431] = 6431, + [6432] = 6432, + [6433] = 6404, + [6434] = 6434, + [6435] = 6382, + [6436] = 6436, + [6437] = 6437, + [6438] = 6438, + [6439] = 6439, + [6440] = 6440, + [6441] = 6439, + [6442] = 6442, + [6443] = 6443, + [6444] = 6444, + [6445] = 5144, + [6446] = 6446, + [6447] = 6447, + [6448] = 6362, + [6449] = 6449, + [6450] = 6450, + [6451] = 6451, + [6452] = 6416, + [6453] = 6453, + [6454] = 6446, + [6455] = 6455, + [6456] = 6360, + [6457] = 6457, + [6458] = 2676, + [6459] = 2415, + [6460] = 6338, + [6461] = 6461, + [6462] = 6462, + [6463] = 6463, + [6464] = 2658, + [6465] = 6313, + [6466] = 5797, + [6467] = 2668, + [6468] = 6468, + [6469] = 6469, + [6470] = 6470, + [6471] = 6471, + [6472] = 6396, + [6473] = 6473, + [6474] = 6344, + [6475] = 6323, + [6476] = 6375, + [6477] = 6477, + [6478] = 6478, + [6479] = 2640, + [6480] = 6480, + [6481] = 6481, + [6482] = 6482, + [6483] = 6483, + [6484] = 6316, + [6485] = 6376, + [6486] = 6486, + [6487] = 6471, + [6488] = 6488, + [6489] = 6489, + [6490] = 6316, + [6491] = 6491, + [6492] = 6492, + [6493] = 6493, + [6494] = 6494, + [6495] = 6495, + [6496] = 6496, + [6497] = 6327, + [6498] = 6498, + [6499] = 6499, + [6500] = 6483, + [6501] = 6358, + [6502] = 6455, + [6503] = 6411, + [6504] = 6468, + [6505] = 5810, + [6506] = 6344, + [6507] = 6481, + [6508] = 6410, + [6509] = 6509, + [6510] = 5807, + [6511] = 6491, + [6512] = 6512, + [6513] = 6513, + [6514] = 6444, + [6515] = 6463, + [6516] = 6516, + [6517] = 6517, + [6518] = 5792, + [6519] = 6519, + [6520] = 6449, + [6521] = 2666, + [6522] = 6319, + [6523] = 2731, + [6524] = 6370, + [6525] = 6525, + [6526] = 6364, + [6527] = 2606, + [6528] = 6528, + [6529] = 6354, + [6530] = 6338, + [6531] = 2434, + [6532] = 2436, + [6533] = 6478, + [6534] = 2437, + [6535] = 6535, + [6536] = 2438, + [6537] = 6537, + [6538] = 6538, + [6539] = 6352, + [6540] = 6184, + [6541] = 6541, + [6542] = 6542, + [6543] = 6543, + [6544] = 6355, + [6545] = 6545, + [6546] = 6356, + [6547] = 2423, + [6548] = 6548, + [6549] = 6549, + [6550] = 6538, + [6551] = 2439, + [6552] = 6552, + [6553] = 2424, + [6554] = 5845, + [6555] = 2709, + [6556] = 6316, + [6557] = 6313, + [6558] = 6558, + [6559] = 6397, + [6560] = 2418, + [6561] = 6323, + [6562] = 6562, + [6563] = 6348, + [6564] = 6564, + [6565] = 6330, + [6566] = 2440, + [6567] = 6329, + [6568] = 6568, + [6569] = 6358, + [6570] = 1234, + [6571] = 2421, + [6572] = 2422, + [6573] = 1233, + [6574] = 6516, + [6575] = 6349, + [6576] = 6564, + [6577] = 6519, + [6578] = 6578, + [6579] = 6579, + [6580] = 6580, + [6581] = 2606, + [6582] = 6419, + [6583] = 6583, + [6584] = 6584, + [6585] = 1219, + [6586] = 6586, + [6587] = 6368, + [6588] = 6588, + [6589] = 6442, + [6590] = 6590, + [6591] = 6591, + [6592] = 6592, + [6593] = 1220, + [6594] = 6381, + [6595] = 1223, + [6596] = 6596, + [6597] = 6391, + [6598] = 6329, + [6599] = 6599, + [6600] = 1233, + [6601] = 1234, + [6602] = 6602, + [6603] = 6364, + [6604] = 6604, + [6605] = 6438, + [6606] = 6354, + [6607] = 6607, + [6608] = 6608, + [6609] = 6609, + [6610] = 6610, + [6611] = 6419, + [6612] = 6382, + [6613] = 6613, + [6614] = 6364, + [6615] = 6615, + [6616] = 6354, + [6617] = 6364, + [6618] = 6451, + [6619] = 6461, + [6620] = 6354, + [6621] = 6430, + [6622] = 6622, + [6623] = 6457, + [6624] = 6624, + [6625] = 6625, + [6626] = 6364, + [6627] = 6568, + [6628] = 6382, + [6629] = 6419, + [6630] = 6613, + [6631] = 6438, + [6632] = 6341, + [6633] = 6509, + [6634] = 6513, + [6635] = 6323, + [6636] = 6373, + [6637] = 6442, + [6638] = 6624, + [6639] = 6639, + [6640] = 6640, + [6641] = 6641, + [6642] = 2444, + [6643] = 6591, + [6644] = 6644, + [6645] = 6492, + [6646] = 6443, + [6647] = 6647, + [6648] = 1244, + [6649] = 6649, + [6650] = 6650, + [6651] = 6651, + [6652] = 6450, + [6653] = 6323, + [6654] = 6354, + [6655] = 6313, + [6656] = 6656, + [6657] = 6568, + [6658] = 6658, + [6659] = 6659, + [6660] = 6660, + [6661] = 6661, + [6662] = 1247, + [6663] = 6376, + [6664] = 6568, + [6665] = 6568, + [6666] = 6430, + [6667] = 6338, + [6668] = 2423, + [6669] = 6669, + [6670] = 3517, + [6671] = 6568, + [6672] = 6313, + [6673] = 6673, + [6674] = 6649, + [6675] = 6580, + [6676] = 3503, + [6677] = 6677, + [6678] = 6313, + [6679] = 6552, + [6680] = 6362, + [6681] = 6468, + [6682] = 6360, + [6683] = 6640, + [6684] = 6591, + [6685] = 6344, + [6686] = 6686, + [6687] = 6687, + [6688] = 6688, + [6689] = 6689, + [6690] = 6580, + [6691] = 6408, + [6692] = 1223, + [6693] = 1295, + [6694] = 6407, + [6695] = 6695, + [6696] = 2666, + [6697] = 2456, + [6698] = 6438, + [6699] = 2384, + [6700] = 2451, + [6701] = 6344, + [6702] = 2455, + [6703] = 6319, + [6704] = 6704, + [6705] = 6408, + [6706] = 2454, + [6707] = 2449, + [6708] = 2448, + [6709] = 2383, + [6710] = 6488, + [6711] = 6338, + [6712] = 6317, + [6713] = 2447, + [6714] = 2446, + [6715] = 2445, + [6716] = 6716, + [6717] = 6444, + [6718] = 1220, + [6719] = 6719, + [6720] = 2443, + [6721] = 2442, + [6722] = 2441, + [6723] = 2265, + [6724] = 2440, + [6725] = 6407, + [6726] = 6492, + [6727] = 6727, + [6728] = 6728, + [6729] = 2439, + [6730] = 6730, + [6731] = 6356, + [6732] = 2438, + [6733] = 6323, + [6734] = 2437, + [6735] = 2436, + [6736] = 2434, + [6737] = 2264, + [6738] = 2433, + [6739] = 2432, + [6740] = 2431, + [6741] = 6478, + [6742] = 6338, + [6743] = 2430, + [6744] = 2429, + [6745] = 6745, + [6746] = 6317, + [6747] = 6730, + [6748] = 6316, + [6749] = 6316, + [6750] = 6444, + [6751] = 2263, + [6752] = 6752, + [6753] = 2427, + [6754] = 2426, + [6755] = 2425, + [6756] = 2637, + [6757] = 6625, + [6758] = 6758, + [6759] = 6759, + [6760] = 6470, + [6761] = 6354, + [6762] = 2425, + [6763] = 6763, + [6764] = 6764, + [6765] = 6373, + [6766] = 6463, + [6767] = 6449, + [6768] = 6436, + [6769] = 6344, + [6770] = 6770, + [6771] = 6442, + [6772] = 6772, + [6773] = 6548, + [6774] = 6545, + [6775] = 6473, + [6776] = 6387, + [6777] = 6759, + [6778] = 2441, + [6779] = 6469, + [6780] = 6436, + [6781] = 6313, + [6782] = 2426, + [6783] = 6387, + [6784] = 2262, + [6785] = 2424, + [6786] = 2423, + [6787] = 2427, + [6788] = 6788, + [6789] = 6789, + [6790] = 6788, + [6791] = 6316, + [6792] = 2631, + [6793] = 6316, + [6794] = 2415, + [6795] = 6795, + [6796] = 2427, + [6797] = 6528, + [6798] = 5850, + [6799] = 6799, + [6800] = 6392, + [6801] = 6512, + [6802] = 6488, + [6803] = 6596, + [6804] = 6795, + [6805] = 6805, + [6806] = 6806, + [6807] = 6807, + [6808] = 6808, + [6809] = 2426, + [6810] = 6470, + [6811] = 6811, + [6812] = 6812, + [6813] = 6469, + [6814] = 6316, + [6815] = 6495, + [6816] = 6443, + [6817] = 6482, + [6818] = 6818, + [6819] = 6397, + [6820] = 2422, + [6821] = 6352, + [6822] = 2421, + [6823] = 2418, + [6824] = 6824, + [6825] = 2642, + [6826] = 6686, + [6827] = 2384, + [6828] = 6828, + [6829] = 6354, + [6830] = 6364, + [6831] = 2425, + [6832] = 6832, + [6833] = 6730, + [6834] = 6834, + [6835] = 6835, + [6836] = 2622, + [6837] = 6837, + [6838] = 6364, + [6839] = 6492, + [6840] = 2412, + [6841] = 2451, + [6842] = 6842, + [6843] = 6763, + [6844] = 6759, + [6845] = 6651, + [6846] = 6846, + [6847] = 2455, + [6848] = 6848, + [6849] = 2668, + [6850] = 6367, + [6851] = 6365, + [6852] = 6852, + [6853] = 6348, + [6854] = 6354, + [6855] = 6608, + [6856] = 6359, + [6857] = 6350, + [6858] = 6858, + [6859] = 6859, + [6860] = 6473, + [6861] = 6361, + [6862] = 6434, + [6863] = 2456, + [6864] = 6864, + [6865] = 6337, + [6866] = 2658, + [6867] = 6353, + [6868] = 2429, + [6869] = 6336, + [6870] = 6362, + [6871] = 6360, + [6872] = 6313, + [6873] = 6341, + [6874] = 6391, + [6875] = 1219, + [6876] = 6313, + [6877] = 6877, + [6878] = 6325, + [6879] = 6622, + [6880] = 6880, + [6881] = 2430, + [6882] = 6380, + [6883] = 6883, + [6884] = 2415, + [6885] = 2442, + [6886] = 6364, + [6887] = 2643, + [6888] = 6324, + [6889] = 6727, + [6890] = 6477, + [6891] = 6436, + [6892] = 6864, + [6893] = 6545, + [6894] = 6615, + [6895] = 2676, + [6896] = 6481, + [6897] = 6313, + [6898] = 2456, + [6899] = 6313, + [6900] = 6313, + [6901] = 6313, + [6902] = 6548, + [6903] = 6828, + [6904] = 6758, + [6905] = 6457, + [6906] = 2444, + [6907] = 6907, + [6908] = 6908, + [6909] = 6380, + [6910] = 6799, + [6911] = 6344, + [6912] = 6752, + [6913] = 6489, + [6914] = 2432, + [6915] = 6915, + [6916] = 6493, + [6917] = 6496, + [6918] = 6918, + [6919] = 6498, + [6920] = 2433, + [6921] = 6313, + [6922] = 6745, + [6923] = 6338, + [6924] = 3507, + [6925] = 6348, + [6926] = 6926, + [6927] = 6639, + [6928] = 6607, + [6929] = 6929, + [6930] = 6313, + [6931] = 6562, + [6932] = 6513, + [6933] = 6641, + [6934] = 1162, + [6935] = 6644, + [6936] = 6806, + [6937] = 6492, + [6938] = 6313, + [6939] = 6659, + [6940] = 6695, + [6941] = 6509, + [6942] = 2445, + [6943] = 6943, + [6944] = 6461, + [6945] = 6313, + [6946] = 6492, + [6947] = 6947, + [6948] = 6313, + [6949] = 6313, + [6950] = 6907, + [6951] = 6951, + [6952] = 6647, + [6953] = 6313, + [6954] = 6954, + [6955] = 6313, + [6956] = 6650, + [6957] = 2434, + [6958] = 6399, + [6959] = 6313, + [6960] = 6368, + [6961] = 6381, + [6962] = 6323, + [6963] = 6963, + [6964] = 6883, + [6965] = 6394, + [6966] = 6395, + [6967] = 6656, + [6968] = 6348, + [6969] = 6558, + [6970] = 2436, + [6971] = 6943, + [6972] = 2454, + [6973] = 6877, + [6974] = 2446, + [6975] = 6834, + [6976] = 6846, + [6977] = 2437, + [6978] = 6390, + [6979] = 6835, + [6980] = 6688, + [6981] = 6689, + [6982] = 2412, + [6983] = 2449, + [6984] = 6716, + [6985] = 6313, + [6986] = 2448, + [6987] = 5141, + [6988] = 6719, + [6989] = 6313, + [6990] = 6858, + [6991] = 6499, + [6992] = 2438, + [6993] = 6993, + [6994] = 6338, + [6995] = 6661, + [6996] = 6996, + [6997] = 6997, + [6998] = 6998, + [6999] = 6480, + [7000] = 2439, + [7001] = 6344, + [7002] = 6604, + [7003] = 2440, + [7004] = 2383, + [7005] = 6416, + [7006] = 7006, + [7007] = 2447, + [7008] = 7008, + [7009] = 6824, + [7010] = 6763, + [7011] = 6313, + [7012] = 1162, + [7013] = 6313, + [7014] = 6374, + [7015] = 7015, + [7016] = 6313, + [7017] = 2443, + [7018] = 6599, + [7019] = 7006, + [7020] = 6758, + [7021] = 7021, + [7022] = 6455, + [7023] = 6859, + [7024] = 6752, + [7025] = 6745, + [7026] = 7015, + [7027] = 6951, + [7028] = 6770, + [7029] = 6313, + [7030] = 6313, + [7031] = 6348, + [7032] = 6615, + [7033] = 2431, + [7034] = 2384, + [7035] = 2451, + [7036] = 2455, + [7037] = 2454, + [7038] = 2449, + [7039] = 2448, + [7040] = 2383, + [7041] = 2447, + [7042] = 2446, + [7043] = 6451, + [7044] = 2445, + [7045] = 2444, + [7046] = 6609, + [7047] = 2443, + [7048] = 2442, + [7049] = 2441, + [7050] = 1243, + [7051] = 2762, + [7052] = 7052, + [7053] = 7053, + [7054] = 7054, + [7055] = 7055, + [7056] = 2551, + [7057] = 7057, + [7058] = 7058, + [7059] = 7059, + [7060] = 7060, + [7061] = 7061, + [7062] = 7062, + [7063] = 7063, + [7064] = 1162, + [7065] = 7065, + [7066] = 2757, + [7067] = 2758, + [7068] = 7055, + [7069] = 7069, + [7070] = 2553, + [7071] = 7071, + [7072] = 7072, + [7073] = 7073, + [7074] = 2539, + [7075] = 7065, + [7076] = 7076, + [7077] = 7077, + [7078] = 7078, + [7079] = 1162, + [7080] = 7080, + [7081] = 3537, + [7082] = 7082, + [7083] = 7083, + [7084] = 2759, + [7085] = 2793, + [7086] = 7086, + [7087] = 2178, + [7088] = 7088, + [7089] = 7089, + [7090] = 2813, + [7091] = 2798, + [7092] = 6543, + [7093] = 7093, + [7094] = 7094, + [7095] = 7095, + [7096] = 7096, + [7097] = 2799, + [7098] = 2800, + [7099] = 7099, + [7100] = 7100, + [7101] = 7101, + [7102] = 5144, + [7103] = 7103, + [7104] = 7104, + [7105] = 7105, + [7106] = 7106, + [7107] = 2547, + [7108] = 2548, + [7109] = 7109, + [7110] = 2709, + [7111] = 7111, + [7112] = 7112, + [7113] = 7113, + [7114] = 7114, + [7115] = 2812, + [7116] = 7116, + [7117] = 7117, + [7118] = 2809, + [7119] = 7119, + [7120] = 2542, + [7121] = 2534, + [7122] = 7052, + [7123] = 7123, + [7124] = 2806, + [7125] = 2773, + [7126] = 3545, + [7127] = 2772, + [7128] = 7128, + [7129] = 7129, + [7130] = 7130, + [7131] = 7131, + [7132] = 7132, + [7133] = 7094, + [7134] = 7134, + [7135] = 2676, + [7136] = 7136, + [7137] = 2658, + [7138] = 2517, + [7139] = 2643, + [7140] = 2668, + [7141] = 2666, + [7142] = 7142, + [7143] = 7143, + [7144] = 7128, + [7145] = 2731, + [7146] = 7094, + [7147] = 7147, + [7148] = 7148, + [7149] = 2622, + [7150] = 7143, + [7151] = 7151, + [7152] = 7152, + [7153] = 2621, + [7154] = 7062, + [7155] = 7071, + [7156] = 7060, + [7157] = 2802, + [7158] = 2518, + [7159] = 2520, + [7160] = 2806, + [7161] = 2809, + [7162] = 2812, + [7163] = 2813, + [7164] = 2532, + [7165] = 7165, + [7166] = 7106, + [7167] = 7167, + [7168] = 7168, + [7169] = 7117, + [7170] = 2756, + [7171] = 7171, + [7172] = 7109, + [7173] = 7173, + [7174] = 7174, + [7175] = 7175, + [7176] = 7176, + [7177] = 7177, + [7178] = 7065, + [7179] = 7130, + [7180] = 2802, + [7181] = 2767, + [7182] = 2765, + [7183] = 7100, + [7184] = 7184, + [7185] = 2541, + [7186] = 7123, + [7187] = 2640, + [7188] = 7168, + [7189] = 2740, + [7190] = 7190, + [7191] = 7191, + [7192] = 7176, + [7193] = 7193, + [7194] = 2749, + [7195] = 7101, + [7196] = 1238, + [7197] = 7119, + [7198] = 2764, + [7199] = 2807, + [7200] = 7200, + [7201] = 6453, + [7202] = 7173, + [7203] = 7089, + [7204] = 2737, + [7205] = 1237, + [7206] = 1240, + [7207] = 1236, + [7208] = 7057, + [7209] = 7058, + [7210] = 2756, + [7211] = 2763, + [7212] = 2762, + [7213] = 3525, + [7214] = 2811, + [7215] = 3523, + [7216] = 7129, + [7217] = 2740, + [7218] = 2775, + [7219] = 7088, + [7220] = 2746, + [7221] = 2744, + [7222] = 2743, + [7223] = 7086, + [7224] = 7224, + [7225] = 2640, + [7226] = 2738, + [7227] = 2531, + [7228] = 7228, + [7229] = 7229, + [7230] = 7230, + [7231] = 7231, + [7232] = 3106, + [7233] = 7233, + [7234] = 7234, + [7235] = 7076, + [7236] = 7236, + [7237] = 7237, + [7238] = 7175, + [7239] = 7239, + [7240] = 7080, + [7241] = 7241, + [7242] = 7242, + [7243] = 7176, + [7244] = 7096, + [7245] = 7095, + [7246] = 2749, + [7247] = 7175, + [7248] = 2737, + [7249] = 7076, + [7250] = 7250, + [7251] = 7250, + [7252] = 7252, + [7253] = 7253, + [7254] = 7069, + [7255] = 7255, + [7256] = 7167, + [7257] = 7257, + [7258] = 7200, + [7259] = 7184, + [7260] = 7260, + [7261] = 7147, + [7262] = 2811, + [7263] = 2807, + [7264] = 7264, + [7265] = 2535, + [7266] = 7114, + [7267] = 2540, + [7268] = 7268, + [7269] = 7269, + [7270] = 7061, + [7271] = 7063, + [7272] = 7272, + [7273] = 7151, + [7274] = 2773, + [7275] = 2772, + [7276] = 2640, + [7277] = 7269, + [7278] = 7278, + [7279] = 7148, + [7280] = 2800, + [7281] = 7234, + [7282] = 2799, + [7283] = 2552, + [7284] = 1162, + [7285] = 1104, + [7286] = 2746, + [7287] = 2798, + [7288] = 2793, + [7289] = 7111, + [7290] = 7082, + [7291] = 7176, + [7292] = 7175, + [7293] = 7250, + [7294] = 2808, + [7295] = 2767, + [7296] = 2549, + [7297] = 2764, + [7298] = 2763, + [7299] = 7167, + [7300] = 2759, + [7301] = 7093, + [7302] = 7302, + [7303] = 7134, + [7304] = 7304, + [7305] = 7255, + [7306] = 7304, + [7307] = 2808, + [7308] = 7167, + [7309] = 2795, + [7310] = 2775, + [7311] = 2744, + [7312] = 7224, + [7313] = 2743, + [7314] = 7104, + [7315] = 7148, + [7316] = 7071, + [7317] = 7071, + [7318] = 7062, + [7319] = 7062, + [7320] = 7054, + [7321] = 7054, + [7322] = 2738, + [7323] = 7152, + [7324] = 7152, + [7325] = 7151, + [7326] = 7151, + [7327] = 7103, + [7328] = 2757, + [7329] = 7329, + [7330] = 7257, + [7331] = 7190, + [7332] = 2758, + [7333] = 7177, + [7334] = 7171, + [7335] = 7239, + [7336] = 7329, + [7337] = 2640, + [7338] = 7228, + [7339] = 7339, + [7340] = 7329, + [7341] = 7148, + [7342] = 2765, + [7343] = 7304, + [7344] = 7094, + [7345] = 7230, + [7346] = 7114, + [7347] = 3585, + [7348] = 7086, + [7349] = 7088, + [7350] = 7152, + [7351] = 7190, + [7352] = 7278, + [7353] = 7353, + [7354] = 7354, + [7355] = 7355, + [7356] = 7356, + [7357] = 7357, + [7358] = 7358, + [7359] = 7359, + [7360] = 7360, + [7361] = 7361, + [7362] = 7362, + [7363] = 7363, + [7364] = 7364, + [7365] = 7365, + [7366] = 7366, + [7367] = 7367, + [7368] = 7368, + [7369] = 7369, + [7370] = 7370, + [7371] = 7371, + [7372] = 7372, + [7373] = 7373, + [7374] = 7374, + [7375] = 7375, + [7376] = 7376, + [7377] = 7377, + [7378] = 7378, + [7379] = 7379, + [7380] = 7380, + [7381] = 7381, + [7382] = 7382, + [7383] = 7383, + [7384] = 7384, + [7385] = 7385, + [7386] = 7386, + [7387] = 7387, + [7388] = 7388, + [7389] = 7389, + [7390] = 7390, + [7391] = 7391, + [7392] = 7392, + [7393] = 7393, + [7394] = 7394, + [7395] = 7395, + [7396] = 2837, + [7397] = 7397, + [7398] = 7398, + [7399] = 7354, + [7400] = 7400, + [7401] = 7401, + [7402] = 7402, + [7403] = 7385, + [7404] = 7404, + [7405] = 7389, + [7406] = 2795, + [7407] = 7407, + [7408] = 7378, + [7409] = 7409, + [7410] = 7377, + [7411] = 7376, + [7412] = 7412, + [7413] = 7413, + [7414] = 7414, + [7415] = 7415, + [7416] = 7416, + [7417] = 7355, + [7418] = 7418, + [7419] = 7380, + [7420] = 7420, + [7421] = 7359, + [7422] = 7422, + [7423] = 7423, + [7424] = 7424, + [7425] = 7425, + [7426] = 7426, + [7427] = 7374, + [7428] = 7401, + [7429] = 7400, + [7430] = 7379, + [7431] = 7397, + [7432] = 7432, + [7433] = 7404, + [7434] = 7434, + [7435] = 7435, + [7436] = 7432, + [7437] = 7404, + [7438] = 7379, + [7439] = 7439, + [7440] = 7440, + [7441] = 7441, + [7442] = 7374, + [7443] = 7443, + [7444] = 7444, + [7445] = 7445, + [7446] = 7414, + [7447] = 7415, + [7448] = 7424, + [7449] = 7376, + [7450] = 7450, + [7451] = 7425, + [7452] = 7452, + [7453] = 7377, + [7454] = 7426, + [7455] = 7455, + [7456] = 7456, + [7457] = 7432, + [7458] = 7458, + [7459] = 7378, + [7460] = 7460, + [7461] = 7404, + [7462] = 7462, + [7463] = 7463, + [7464] = 7464, + [7465] = 7465, + [7466] = 7466, + [7467] = 7467, + [7468] = 7385, + [7469] = 7394, + [7470] = 7470, + [7471] = 7471, + [7472] = 7393, + [7473] = 7388, + [7474] = 7474, + [7475] = 7475, + [7476] = 7476, + [7477] = 7477, + [7478] = 7401, + [7479] = 7389, + [7480] = 7389, + [7481] = 7481, + [7482] = 7482, + [7483] = 7355, + [7484] = 7367, + [7485] = 7485, + [7486] = 7462, + [7487] = 7463, + [7488] = 7488, + [7489] = 7476, + [7490] = 7413, + [7491] = 7466, + [7492] = 7492, + [7493] = 7439, + [7494] = 7394, + [7495] = 7495, + [7496] = 7445, + [7497] = 7497, + [7498] = 7462, + [7499] = 7463, + [7500] = 7466, + [7501] = 7394, + [7502] = 7400, + [7503] = 7475, + [7504] = 7397, + [7505] = 7393, + [7506] = 7380, + [7507] = 7507, + [7508] = 7508, + [7509] = 7509, + [7510] = 7510, + [7511] = 7509, + [7512] = 7512, + [7513] = 7513, + [7514] = 7388, + [7515] = 7380, + [7516] = 7474, + [7517] = 7492, + [7518] = 7518, + [7519] = 7519, + [7520] = 7520, + [7521] = 7521, + [7522] = 7522, + [7523] = 7507, + [7524] = 7524, + [7525] = 7525, + [7526] = 7508, + [7527] = 7374, + [7528] = 7367, + [7529] = 7529, + [7530] = 7530, + [7531] = 7513, + [7532] = 7518, + [7533] = 7533, + [7534] = 7534, + [7535] = 7535, + [7536] = 7536, + [7537] = 3588, + [7538] = 7538, + [7539] = 7367, + [7540] = 7529, + [7541] = 7364, + [7542] = 7388, + [7543] = 7543, + [7544] = 7544, + [7545] = 7460, + [7546] = 7546, + [7547] = 7547, + [7548] = 7548, + [7549] = 7549, + [7550] = 7550, + [7551] = 7367, + [7552] = 7552, + [7553] = 2836, + [7554] = 7554, + [7555] = 7555, + [7556] = 7393, + [7557] = 7557, + [7558] = 7558, + [7559] = 7559, + [7560] = 7560, + [7561] = 7561, + [7562] = 7562, + [7563] = 7563, + [7564] = 7564, + [7565] = 7395, + [7566] = 7566, + [7567] = 7557, + [7568] = 7568, + [7569] = 7569, + [7570] = 7464, + [7571] = 7394, + [7572] = 7398, + [7573] = 3589, + [7574] = 7495, + [7575] = 7575, + [7576] = 3585, + [7577] = 7389, + [7578] = 7544, + [7579] = 7379, + [7580] = 7394, + [7581] = 7581, + [7582] = 7452, + [7583] = 7561, + [7584] = 2904, + [7585] = 7585, + [7586] = 7510, + [7587] = 7587, + [7588] = 7564, + [7589] = 7589, + [7590] = 7590, + [7591] = 7591, + [7592] = 7592, + [7593] = 2826, + [7594] = 7389, + [7595] = 3594, + [7596] = 7596, + [7597] = 7597, + [7598] = 7598, + [7599] = 7599, + [7600] = 7600, + [7601] = 7601, + [7602] = 2825, + [7603] = 7603, + [7604] = 7604, + [7605] = 7605, + [7606] = 7606, + [7607] = 7380, + [7608] = 7608, + [7609] = 7609, + [7610] = 7610, + [7611] = 7388, + [7612] = 7600, + [7613] = 7613, + [7614] = 7435, + [7615] = 7393, + [7616] = 7397, + [7617] = 7400, + [7618] = 7618, + [7619] = 7619, + [7620] = 7401, + [7621] = 7385, + [7622] = 3592, + [7623] = 7623, + [7624] = 7434, + [7625] = 7625, + [7626] = 7626, + [7627] = 7627, + [7628] = 6318, + [7629] = 6339, + [7630] = 7630, + [7631] = 7378, + [7632] = 7377, + [7633] = 7633, + [7634] = 2909, + [7635] = 7376, + [7636] = 7382, + [7637] = 7637, + [7638] = 3590, + [7639] = 7512, + [7640] = 7640, + [7641] = 7397, + [7642] = 7404, + [7643] = 7359, + [7644] = 7644, + [7645] = 7645, + [7646] = 7646, + [7647] = 7374, + [7648] = 7379, + [7649] = 2631, + [7650] = 7650, + [7651] = 7547, + [7652] = 7548, + [7653] = 7400, + [7654] = 7654, + [7655] = 7591, + [7656] = 7656, + [7657] = 7657, + [7658] = 7658, + [7659] = 7585, + [7660] = 7513, + [7661] = 7387, + [7662] = 7414, + [7663] = 2837, + [7664] = 7518, + [7665] = 7415, + [7666] = 7424, + [7667] = 7667, + [7668] = 7401, + [7669] = 7425, + [7670] = 7670, + [7671] = 7671, + [7672] = 7432, + [7673] = 7673, + [7674] = 7426, + [7675] = 7432, + [7676] = 3604, + [7677] = 7677, + [7678] = 7678, + [7679] = 7679, + [7680] = 7680, + [7681] = 7394, + [7682] = 7404, + [7683] = 7683, + [7684] = 7684, + [7685] = 7432, + [7686] = 7394, + [7687] = 7687, + [7688] = 7367, + [7689] = 7689, + [7690] = 7432, + [7691] = 7394, + [7692] = 7692, + [7693] = 7432, + [7694] = 7394, + [7695] = 7389, + [7696] = 7696, + [7697] = 7610, + [7698] = 7529, + [7699] = 7598, + [7700] = 7432, + [7701] = 7355, + [7702] = 7702, + [7703] = 7394, + [7704] = 7462, + [7705] = 7463, + [7706] = 7706, + [7707] = 7707, + [7708] = 7466, + [7709] = 7394, + [7710] = 7710, + [7711] = 7711, + [7712] = 7432, + [7713] = 7713, + [7714] = 3605, + [7715] = 2606, + [7716] = 7394, + [7717] = 7717, + [7718] = 7718, + [7719] = 7719, + [7720] = 7394, + [7721] = 7601, + [7722] = 7722, + [7723] = 7599, + [7724] = 7432, + [7725] = 7725, + [7726] = 7590, + [7727] = 7394, + [7728] = 7728, + [7729] = 7729, + [7730] = 7513, + [7731] = 7731, + [7732] = 7518, + [7733] = 7432, + [7734] = 7734, + [7735] = 7735, + [7736] = 7597, + [7737] = 7581, + [7738] = 7738, + [7739] = 7367, + [7740] = 7575, + [7741] = 7450, + [7742] = 7529, + [7743] = 7394, + [7744] = 7744, + [7745] = 6764, + [7746] = 7746, + [7747] = 7432, + [7748] = 7748, + [7749] = 7394, + [7750] = 7650, + [7751] = 7444, + [7752] = 7432, + [7753] = 7394, + [7754] = 7369, + [7755] = 7432, + [7756] = 7598, + [7757] = 7416, + [7758] = 7394, + [7759] = 7386, + [7760] = 7533, + [7761] = 7432, + [7762] = 7762, + [7763] = 7394, + [7764] = 7764, + [7765] = 7432, + [7766] = 7766, + [7767] = 6805, + [7768] = 7534, + [7769] = 7769, + [7770] = 7770, + [7771] = 7771, + [7772] = 7409, + [7773] = 7432, + [7774] = 7394, + [7775] = 7557, + [7776] = 7748, + [7777] = 7367, + [7778] = 7729, + [7779] = 7779, + [7780] = 7780, + [7781] = 7678, + [7782] = 7677, + [7783] = 7432, + [7784] = 7394, + [7785] = 7381, + [7786] = 7786, + [7787] = 7561, + [7788] = 7788, + [7789] = 7379, + [7790] = 7546, + [7791] = 7564, + [7792] = 7374, + [7793] = 7395, + [7794] = 7568, + [7795] = 7604, + [7796] = 7796, + [7797] = 7394, + [7798] = 7420, + [7799] = 7432, + [7800] = 7679, + [7801] = 7591, + [7802] = 7367, + [7803] = 7380, + [7804] = 7388, + [7805] = 7432, + [7806] = 7389, + [7807] = 7683, + [7808] = 7393, + [7809] = 7397, + [7810] = 7495, + [7811] = 7394, + [7812] = 7400, + [7813] = 7401, + [7814] = 7640, + [7815] = 7376, + [7816] = 7385, + [7817] = 7432, + [7818] = 7377, + [7819] = 7378, + [7820] = 7667, + [7821] = 7432, + [7822] = 7389, + [7823] = 7394, + [7824] = 7378, + [7825] = 7364, + [7826] = 7377, + [7827] = 7376, + [7828] = 7828, + [7829] = 7367, + [7830] = 7830, + [7831] = 7432, + [7832] = 7796, + [7833] = 7402, + [7834] = 7359, + [7835] = 7389, + [7836] = 7836, + [7837] = 7394, + [7838] = 7374, + [7839] = 7367, + [7840] = 7432, + [7841] = 7389, + [7842] = 7379, + [7843] = 7394, + [7844] = 7844, + [7845] = 7367, + [7846] = 5647, + [7847] = 1105, + [7848] = 7848, + [7849] = 1104, + [7850] = 7363, + [7851] = 1207, + [7852] = 7432, + [7853] = 7354, + [7854] = 7379, + [7855] = 7492, + [7856] = 7374, + [7857] = 7412, + [7858] = 7414, + [7859] = 7415, + [7860] = 7424, + [7861] = 7432, + [7862] = 7425, + [7863] = 7426, + [7864] = 7569, + [7865] = 2826, + [7866] = 7432, + [7867] = 7670, + [7868] = 7868, + [7869] = 2825, + [7870] = 7559, + [7871] = 7389, + [7872] = 7872, + [7873] = 7394, + [7874] = 7376, + [7875] = 7367, + [7876] = 7613, + [7877] = 7404, + [7878] = 7377, + [7879] = 7378, + [7880] = 7432, + [7881] = 7389, + [7882] = 7656, + [7883] = 7883, + [7884] = 7394, + [7885] = 7885, + [7886] = 7460, + [7887] = 7887, + [7888] = 7555, + [7889] = 7654, + [7890] = 7367, + [7891] = 6811, + [7892] = 7367, + [7893] = 7385, + [7894] = 6818, + [7895] = 7401, + [7896] = 7389, + [7897] = 7780, + [7898] = 7355, + [7899] = 3596, + [7900] = 7385, + [7901] = 7462, + [7902] = 7463, + [7903] = 7401, + [7904] = 7466, + [7905] = 7394, + [7906] = 7788, + [7907] = 2642, + [7908] = 7559, + [7909] = 7400, + [7910] = 7830, + [7911] = 7397, + [7912] = 7393, + [7913] = 7388, + [7914] = 7771, + [7915] = 7915, + [7916] = 7432, + [7917] = 7380, + [7918] = 7762, + [7919] = 7557, + [7920] = 7414, + [7921] = 7415, + [7922] = 7696, + [7923] = 7923, + [7924] = 7389, + [7925] = 7925, + [7926] = 7394, + [7927] = 7927, + [7928] = 7928, + [7929] = 2637, + [7930] = 7930, + [7931] = 7931, + [7932] = 7932, + [7933] = 7432, + [7934] = 7513, + [7935] = 5545, + [7936] = 7409, + [7937] = 7937, + [7938] = 7518, + [7939] = 7485, + [7940] = 7940, + [7941] = 2839, + [7942] = 7942, + [7943] = 7367, + [7944] = 7529, + [7945] = 7945, + [7946] = 7748, + [7947] = 7702, + [7948] = 7389, + [7949] = 7443, + [7950] = 7394, + [7951] = 7644, + [7952] = 7367, + [7953] = 7400, + [7954] = 7367, + [7955] = 7937, + [7956] = 3585, + [7957] = 7558, + [7958] = 7432, + [7959] = 7677, + [7960] = 7960, + [7961] = 7561, + [7962] = 7779, + [7963] = 7689, + [7964] = 5765, + [7965] = 7389, + [7966] = 7562, + [7967] = 7397, + [7968] = 7393, + [7969] = 7564, + [7970] = 7394, + [7971] = 7366, + [7972] = 7554, + [7973] = 7367, + [7974] = 7974, + [7975] = 6592, + [7976] = 7828, + [7977] = 7455, + [7978] = 7978, + [7979] = 6584, + [7980] = 2256, + [7981] = 7564, + [7982] = 7389, + [7983] = 7562, + [7984] = 7637, + [7985] = 7561, + [7986] = 3607, + [7987] = 7987, + [7988] = 7384, + [7989] = 7394, + [7990] = 7872, + [7991] = 7991, + [7992] = 7418, + [7993] = 7358, + [7994] = 7994, + [7995] = 7557, + [7996] = 7367, + [7997] = 7836, + [7998] = 7422, + [7999] = 7390, + [8000] = 7432, + [8001] = 7389, + [8002] = 7394, + [8003] = 7356, + [8004] = 7367, + [8005] = 6832, + [8006] = 8006, + [8007] = 7844, + [8008] = 5595, + [8009] = 8009, + [8010] = 7432, + [8011] = 8011, + [8012] = 7388, + [8013] = 7389, + [8014] = 7470, + [8015] = 7394, + [8016] = 7678, + [8017] = 7380, + [8018] = 7367, + [8019] = 7552, + [8020] = 7424, + [8021] = 8021, + [8022] = 8022, + [8023] = 7529, + [8024] = 7376, + [8025] = 7367, + [8026] = 2830, + [8027] = 7729, + [8028] = 7377, + [8029] = 7425, + [8030] = 7518, + [8031] = 7426, + [8032] = 7513, + [8033] = 7394, + [8034] = 7569, + [8035] = 3597, + [8036] = 7592, + [8037] = 7389, + [8038] = 7432, + [8039] = 7432, + [8040] = 2836, + [8041] = 7404, + [8042] = 5873, + [8043] = 7389, + [8044] = 7394, + [8045] = 8045, + [8046] = 5141, + [8047] = 7592, + [8048] = 8048, + [8049] = 7367, + [8050] = 8050, + [8051] = 3593, + [8052] = 8052, + [8053] = 7557, + [8054] = 7744, + [8055] = 7378, + [8056] = 7432, + [8057] = 7393, + [8058] = 7379, + [8059] = 8059, + [8060] = 7376, + [8061] = 7373, + [8062] = 8062, + [8063] = 6880, + [8064] = 8064, + [8065] = 7385, + [8066] = 7722, + [8067] = 7394, + [8068] = 7466, + [8069] = 7463, + [8070] = 7462, + [8071] = 8071, + [8072] = 7445, + [8073] = 7439, + [8074] = 2904, + [8075] = 7404, + [8076] = 7355, + [8077] = 7566, + [8078] = 7389, + [8079] = 7391, + [8080] = 6704, + [8081] = 6687, + [8082] = 8082, + [8083] = 7359, + [8084] = 7377, + [8085] = 1099, + [8086] = 6677, + [8087] = 5924, + [8088] = 7713, + [8089] = 7460, + [8090] = 6673, + [8091] = 7432, + [8092] = 7443, + [8093] = 7654, + [8094] = 7561, + [8095] = 7389, + [8096] = 6660, + [8097] = 3602, + [8098] = 6658, + [8099] = 7564, + [8100] = 7780, + [8101] = 7404, + [8102] = 7394, + [8103] = 7367, + [8104] = 7432, + [8105] = 7587, + [8106] = 7596, + [8107] = 7788, + [8108] = 7680, + [8109] = 7692, + [8110] = 7378, + [8111] = 7618, + [8112] = 8112, + [8113] = 7432, + [8114] = 7426, + [8115] = 7425, + [8116] = 7424, + [8117] = 8117, + [8118] = 7422, + [8119] = 7418, + [8120] = 7401, + [8121] = 7558, + [8122] = 7400, + [8123] = 7687, + [8124] = 7415, + [8125] = 7414, + [8126] = 7684, + [8127] = 7432, + [8128] = 7389, + [8129] = 7402, + [8130] = 7354, + [8131] = 7387, + [8132] = 7394, + [8133] = 7367, + [8134] = 8134, + [8135] = 2839, + [8136] = 7432, + [8137] = 7382, + [8138] = 7389, + [8139] = 8139, + [8140] = 7394, + [8141] = 7367, + [8142] = 7379, + [8143] = 7432, + [8144] = 7940, + [8145] = 7392, + [8146] = 7374, + [8147] = 7389, + [8148] = 7394, + [8149] = 8149, + [8150] = 7359, + [8151] = 7389, + [8152] = 7363, + [8153] = 7366, + [8154] = 7394, + [8155] = 7671, + [8156] = 2909, + [8157] = 7367, + [8158] = 7376, + [8159] = 7377, + [8160] = 7378, + [8161] = 8161, + [8162] = 7432, + [8163] = 7389, + [8164] = 7394, + [8165] = 7385, + [8166] = 8166, + [8167] = 7673, + [8168] = 7391, + [8169] = 7412, + [8170] = 7420, + [8171] = 7432, + [8172] = 8172, + [8173] = 7401, + [8174] = 7400, + [8175] = 7397, + [8176] = 7380, + [8177] = 7452, + [8178] = 7464, + [8179] = 7627, + [8180] = 7388, + [8181] = 7393, + [8182] = 7388, + [8183] = 7413, + [8184] = 7367, + [8185] = 7380, + [8186] = 8186, + [8187] = 8187, + [8188] = 8188, + [8189] = 8189, + [8190] = 8190, + [8191] = 8191, + [8192] = 8192, + [8193] = 8193, + [8194] = 8194, + [8195] = 8195, + [8196] = 8196, + [8197] = 8197, + [8198] = 8198, + [8199] = 8199, + [8200] = 8200, + [8201] = 8201, + [8202] = 8202, + [8203] = 8203, + [8204] = 8204, + [8205] = 8205, + [8206] = 8206, + [8207] = 8207, + [8208] = 8208, + [8209] = 8209, + [8210] = 8210, + [8211] = 8211, + [8212] = 8212, + [8213] = 8213, + [8214] = 2917, + [8215] = 8215, + [8216] = 8216, + [8217] = 8217, + [8218] = 8218, + [8219] = 3942, + [8220] = 8220, + [8221] = 8221, + [8222] = 8222, + [8223] = 3929, + [8224] = 3928, + [8225] = 8225, + [8226] = 8215, + [8227] = 8227, + [8228] = 8216, + [8229] = 8229, + [8230] = 8230, + [8231] = 8231, + [8232] = 8232, + [8233] = 3926, + [8234] = 3925, + [8235] = 8235, + [8236] = 8236, + [8237] = 3922, + [8238] = 8238, + [8239] = 8239, + [8240] = 8240, + [8241] = 8235, + [8242] = 8242, + [8243] = 8216, + [8244] = 8215, + [8245] = 3921, + [8246] = 3920, + [8247] = 8247, + [8248] = 8248, + [8249] = 8249, + [8250] = 8250, + [8251] = 8251, + [8252] = 8252, + [8253] = 8238, + [8254] = 8254, + [8255] = 8255, + [8256] = 8256, + [8257] = 8257, + [8258] = 8258, + [8259] = 8259, + [8260] = 8260, + [8261] = 3919, + [8262] = 8262, + [8263] = 8235, + [8264] = 8264, + [8265] = 8265, + [8266] = 3910, + [8267] = 8267, + [8268] = 8268, + [8269] = 8269, + [8270] = 8270, + [8271] = 8271, + [8272] = 8272, + [8273] = 8232, + [8274] = 8274, + [8275] = 8275, + [8276] = 8231, + [8277] = 8277, + [8278] = 8278, + [8279] = 8279, + [8280] = 8280, + [8281] = 8281, + [8282] = 8229, + [8283] = 8283, + [8284] = 8284, + [8285] = 8285, + [8286] = 8286, + [8287] = 8287, + [8288] = 8288, + [8289] = 8289, + [8290] = 8290, + [8291] = 8291, + [8292] = 8292, + [8293] = 8293, + [8294] = 8294, + [8295] = 8295, + [8296] = 8296, + [8297] = 8251, + [8298] = 8298, + [8299] = 8299, + [8300] = 8300, + [8301] = 8301, + [8302] = 8302, + [8303] = 8303, + [8304] = 8221, + [8305] = 8305, + [8306] = 8306, + [8307] = 8220, + [8308] = 8308, + [8309] = 8309, + [8310] = 8310, + [8311] = 8311, + [8312] = 8212, + [8313] = 8313, + [8314] = 8211, + [8315] = 8315, + [8316] = 8316, + [8317] = 8317, + [8318] = 8318, + [8319] = 8319, + [8320] = 8320, + [8321] = 8210, + [8322] = 8322, + [8323] = 8323, + [8324] = 8324, + [8325] = 8325, + [8326] = 8240, + [8327] = 8327, + [8328] = 8328, + [8329] = 8329, + [8330] = 8330, + [8331] = 8208, + [8332] = 8332, + [8333] = 8205, + [8334] = 8334, + [8335] = 8335, + [8336] = 8336, + [8337] = 8198, + [8338] = 8338, + [8339] = 8339, + [8340] = 8188, + [8341] = 8341, + [8342] = 8342, + [8343] = 8343, + [8344] = 8344, + [8345] = 8345, + [8346] = 8190, + [8347] = 8192, + [8348] = 8348, + [8349] = 8349, + [8350] = 8350, + [8351] = 8200, + [8352] = 8203, + [8353] = 8353, + [8354] = 8354, + [8355] = 8355, + [8356] = 8356, + [8357] = 8357, + [8358] = 8358, + [8359] = 8189, + [8360] = 8360, + [8361] = 8361, + [8362] = 8362, + [8363] = 8363, + [8364] = 8364, + [8365] = 8365, + [8366] = 8366, + [8367] = 8367, + [8368] = 8368, + [8369] = 8369, + [8370] = 8370, + [8371] = 8371, + [8372] = 8372, + [8373] = 8373, + [8374] = 8374, + [8375] = 8375, + [8376] = 8376, + [8377] = 8377, + [8378] = 2872, + [8379] = 8215, + [8380] = 8380, + [8381] = 8216, + [8382] = 8382, + [8383] = 8383, + [8384] = 8384, + [8385] = 8385, + [8386] = 8386, + [8387] = 8387, + [8388] = 8388, + [8389] = 8389, + [8390] = 8390, + [8391] = 8391, + [8392] = 8392, + [8393] = 8393, + [8394] = 8394, + [8395] = 8395, + [8396] = 8396, + [8397] = 8397, + [8398] = 8398, + [8399] = 8399, + [8400] = 8400, + [8401] = 8401, + [8402] = 8238, + [8403] = 8403, + [8404] = 8404, + [8405] = 8187, + [8406] = 8406, + [8407] = 8407, + [8408] = 8408, + [8409] = 8409, + [8410] = 2866, + [8411] = 8411, + [8412] = 8412, + [8413] = 8413, + [8414] = 8414, + [8415] = 8415, + [8416] = 8416, + [8417] = 8417, + [8418] = 8418, + [8419] = 8419, + [8420] = 8420, + [8421] = 8421, + [8422] = 8422, + [8423] = 8423, + [8424] = 8424, + [8425] = 8425, + [8426] = 8426, + [8427] = 8427, + [8428] = 8428, + [8429] = 8238, + [8430] = 8430, + [8431] = 8431, + [8432] = 8432, + [8433] = 8433, + [8434] = 5141, + [8435] = 8435, + [8436] = 8436, + [8437] = 8437, + [8438] = 8438, + [8439] = 8439, + [8440] = 8440, + [8441] = 8441, + [8442] = 8442, + [8443] = 8443, + [8444] = 8210, + [8445] = 8445, + [8446] = 8446, + [8447] = 8447, + [8448] = 8448, + [8449] = 3641, + [8450] = 8450, + [8451] = 8451, + [8452] = 8452, + [8453] = 8186, + [8454] = 8454, + [8455] = 8455, + [8456] = 8456, + [8457] = 8457, + [8458] = 8458, + [8459] = 8459, + [8460] = 8460, + [8461] = 8461, + [8462] = 8462, + [8463] = 8463, + [8464] = 8464, + [8465] = 8465, + [8466] = 8466, + [8467] = 8467, + [8468] = 8468, + [8469] = 8469, + [8470] = 8470, + [8471] = 8471, + [8472] = 8472, + [8473] = 8473, + [8474] = 8474, + [8475] = 8475, + [8476] = 8476, + [8477] = 8477, + [8478] = 8478, + [8479] = 8479, + [8480] = 8480, + [8481] = 8481, + [8482] = 8482, + [8483] = 8483, + [8484] = 8484, + [8485] = 8485, + [8486] = 3649, + [8487] = 8215, + [8488] = 8488, + [8489] = 8216, + [8490] = 8490, + [8491] = 8491, + [8492] = 8492, + [8493] = 8493, + [8494] = 8494, + [8495] = 3650, + [8496] = 8496, + [8497] = 8497, + [8498] = 8498, + [8499] = 8499, + [8500] = 8500, + [8501] = 8501, + [8502] = 8502, + [8503] = 8503, + [8504] = 8504, + [8505] = 8505, + [8506] = 8206, + [8507] = 8507, + [8508] = 3652, + [8509] = 8509, + [8510] = 8238, + [8511] = 8511, + [8512] = 8512, + [8513] = 8513, + [8514] = 8514, + [8515] = 8515, + [8516] = 8516, + [8517] = 8517, + [8518] = 3656, + [8519] = 8519, + [8520] = 8520, + [8521] = 8207, + [8522] = 8204, + [8523] = 8239, + [8524] = 8202, + [8525] = 8525, + [8526] = 8526, + [8527] = 8527, + [8528] = 8528, + [8529] = 8529, + [8530] = 8530, + [8531] = 8531, + [8532] = 8532, + [8533] = 8533, + [8534] = 8534, + [8535] = 8535, + [8536] = 8536, + [8537] = 8537, + [8538] = 8538, + [8539] = 8539, + [8540] = 8197, + [8541] = 8196, + [8542] = 2953, + [8543] = 8543, + [8544] = 8232, + [8545] = 8545, + [8546] = 8546, + [8547] = 8547, + [8548] = 8548, + [8549] = 8549, + [8550] = 8550, + [8551] = 8551, + [8552] = 8210, + [8553] = 8553, + [8554] = 8554, + [8555] = 8555, + [8556] = 8556, + [8557] = 8231, + [8558] = 8558, + [8559] = 8559, + [8560] = 8560, + [8561] = 8561, + [8562] = 8191, + [8563] = 8189, + [8564] = 8564, + [8565] = 8201, + [8566] = 8566, + [8567] = 8567, + [8568] = 8568, + [8569] = 8569, + [8570] = 8570, + [8571] = 8571, + [8572] = 8572, + [8573] = 8573, + [8574] = 8574, + [8575] = 8575, + [8576] = 8576, + [8577] = 8577, + [8578] = 8578, + [8579] = 8193, + [8580] = 8203, + [8581] = 8200, + [8582] = 8194, + [8583] = 8192, + [8584] = 8216, + [8585] = 8190, + [8586] = 8586, + [8587] = 8587, + [8588] = 8230, + [8589] = 8589, + [8590] = 8590, + [8591] = 8591, + [8592] = 2945, + [8593] = 8593, + [8594] = 8594, + [8595] = 8238, + [8596] = 8596, + [8597] = 8195, + [8598] = 8229, + [8599] = 8188, + [8600] = 2830, + [8601] = 8198, + [8602] = 8199, + [8603] = 8242, + [8604] = 8205, + [8605] = 8208, + [8606] = 8606, + [8607] = 8607, + [8608] = 8520, + [8609] = 8609, + [8610] = 8610, + [8611] = 8611, + [8612] = 8612, + [8613] = 8209, + [8614] = 3692, + [8615] = 8210, + [8616] = 8616, + [8617] = 8211, + [8618] = 8212, + [8619] = 8210, + [8620] = 3593, + [8621] = 3705, + [8622] = 8217, + [8623] = 8623, + [8624] = 8220, + [8625] = 8221, + [8626] = 8626, + [8627] = 8236, + [8628] = 8628, + [8629] = 8626, + [8630] = 8628, + [8631] = 8225, + [8632] = 3713, + [8633] = 2795, + [8634] = 2893, + [8635] = 8229, + [8636] = 8230, + [8637] = 8231, + [8638] = 8232, + [8639] = 2709, + [8640] = 2896, + [8641] = 8216, + [8642] = 2905, + [8643] = 8221, + [8644] = 2933, + [8645] = 8645, + [8646] = 8238, + [8647] = 8220, + [8648] = 8217, + [8649] = 2883, + [8650] = 8400, + [8651] = 8387, + [8652] = 8238, + [8653] = 8240, + [8654] = 8235, + [8655] = 8212, + [8656] = 8211, + [8657] = 2853, + [8658] = 8216, + [8659] = 8210, + [8660] = 8215, + [8661] = 8209, + [8662] = 8662, + [8663] = 8213, + [8664] = 1162, + [8665] = 8665, + [8666] = 1099, + [8667] = 8667, + [8668] = 2640, + [8669] = 8669, + [8670] = 2625, + [8671] = 2909, + [8672] = 2915, + [8673] = 2904, + [8674] = 1104, + [8675] = 3602, + [8676] = 2887, + [8677] = 2908, + [8678] = 2907, + [8679] = 2903, + [8680] = 2880, + [8681] = 2879, + [8682] = 2877, + [8683] = 2874, + [8684] = 2859, + [8685] = 2858, + [8686] = 2856, + [8687] = 2863, + [8688] = 2952, + [8689] = 2949, + [8690] = 2916, + [8691] = 2885, + [8692] = 2920, + [8693] = 2931, + [8694] = 2937, + [8695] = 8216, + [8696] = 2938, + [8697] = 2940, + [8698] = 2944, + [8699] = 3798, + [8700] = 2946, + [8701] = 2947, + [8702] = 2948, + [8703] = 2955, + [8704] = 2932, + [8705] = 2854, + [8706] = 8238, + [8707] = 6249, + [8708] = 2921, + [8709] = 3799, + [8710] = 2919, + [8711] = 2900, + [8712] = 2901, + [8713] = 3804, + [8714] = 2898, + [8715] = 2897, + [8716] = 2892, + [8717] = 2891, + [8718] = 3597, + [8719] = 8719, + [8720] = 6212, + [8721] = 8564, + [8722] = 5984, + [8723] = 3807, + [8724] = 5937, + [8725] = 2889, + [8726] = 2882, + [8727] = 8607, + [8728] = 2893, + [8729] = 3808, + [8730] = 2913, + [8731] = 2959, + [8732] = 2951, + [8733] = 2950, + [8734] = 2912, + [8735] = 2899, + [8736] = 2894, + [8737] = 2890, + [8738] = 2873, + [8739] = 2870, + [8740] = 7734, + [8741] = 3602, + [8742] = 6287, + [8743] = 6242, + [8744] = 6240, + [8745] = 2926, + [8746] = 2923, + [8747] = 8222, + [8748] = 2900, + [8749] = 8216, + [8750] = 2869, + [8751] = 2853, + [8752] = 2883, + [8753] = 3811, + [8754] = 2954, + [8755] = 2943, + [8756] = 2933, + [8757] = 2905, + [8758] = 2896, + [8759] = 8238, + [8760] = 5986, + [8761] = 2909, + [8762] = 3812, + [8763] = 2870, + [8764] = 2873, + [8765] = 3593, + [8766] = 6176, + [8767] = 6059, + [8768] = 6292, + [8769] = 2945, + [8770] = 2957, + [8771] = 8208, + [8772] = 2953, + [8773] = 2920, + [8774] = 2934, + [8775] = 8775, + [8776] = 2904, + [8777] = 2918, + [8778] = 2865, + [8779] = 2890, + [8780] = 2866, + [8781] = 2868, + [8782] = 2871, + [8783] = 2872, + [8784] = 2902, + [8785] = 2911, + [8786] = 2917, + [8787] = 3680, + [8788] = 3610, + [8789] = 3611, + [8790] = 3612, + [8791] = 8247, + [8792] = 3613, + [8793] = 8216, + [8794] = 3614, + [8795] = 3615, + [8796] = 3616, + [8797] = 8205, + [8798] = 3617, + [8799] = 8248, + [8800] = 3618, + [8801] = 8238, + [8802] = 3619, + [8803] = 3620, + [8804] = 8804, + [8805] = 3621, + [8806] = 2894, + [8807] = 3622, + [8808] = 8249, + [8809] = 3623, + [8810] = 8199, + [8811] = 8250, + [8812] = 8812, + [8813] = 3624, + [8814] = 8814, + [8815] = 3625, + [8816] = 3626, + [8817] = 8609, + [8818] = 8252, + [8819] = 3627, + [8820] = 8216, + [8821] = 3628, + [8822] = 3629, + [8823] = 3630, + [8824] = 8824, + [8825] = 3632, + [8826] = 8254, + [8827] = 3633, + [8828] = 8238, + [8829] = 3634, + [8830] = 3635, + [8831] = 2950, + [8832] = 3636, + [8833] = 8198, + [8834] = 3637, + [8835] = 8255, + [8836] = 3638, + [8837] = 8188, + [8838] = 8256, + [8839] = 2951, + [8840] = 3639, + [8841] = 2854, + [8842] = 3640, + [8843] = 3642, + [8844] = 8844, + [8845] = 8257, + [8846] = 3643, + [8847] = 8216, + [8848] = 3644, + [8849] = 3645, + [8850] = 8227, + [8851] = 8851, + [8852] = 3646, + [8853] = 3647, + [8854] = 3648, + [8855] = 8238, + [8856] = 3651, + [8857] = 8259, + [8858] = 8858, + [8859] = 3653, + [8860] = 8860, + [8861] = 8260, + [8862] = 3654, + [8863] = 3655, + [8864] = 8195, + [8865] = 3657, + [8866] = 2889, + [8867] = 8262, + [8868] = 8868, + [8869] = 3658, + [8870] = 8264, + [8871] = 8871, + [8872] = 3659, + [8873] = 8216, + [8874] = 3660, + [8875] = 3661, + [8876] = 3662, + [8877] = 8258, + [8878] = 8238, + [8879] = 3663, + [8880] = 3664, + [8881] = 3665, + [8882] = 3666, + [8883] = 3597, + [8884] = 8267, + [8885] = 3667, + [8886] = 3668, + [8887] = 3669, + [8888] = 8216, + [8889] = 3670, + [8890] = 3671, + [8891] = 8268, + [8892] = 3672, + [8893] = 8238, + [8894] = 8269, + [8895] = 3673, + [8896] = 3674, + [8897] = 3675, + [8898] = 3890, + [8899] = 8270, + [8900] = 3676, + [8901] = 3677, + [8902] = 3678, + [8903] = 8216, + [8904] = 8271, + [8905] = 8596, + [8906] = 3681, + [8907] = 3682, + [8908] = 8238, + [8909] = 3683, + [8910] = 8272, + [8911] = 3684, + [8912] = 8274, + [8913] = 3897, + [8914] = 3685, + [8915] = 3686, + [8916] = 3687, + [8917] = 8275, + [8918] = 8216, + [8919] = 3688, + [8920] = 8277, + [8921] = 3689, + [8922] = 3690, + [8923] = 8238, + [8924] = 3691, + [8925] = 8278, + [8926] = 3693, + [8927] = 8279, + [8928] = 8594, + [8929] = 3694, + [8930] = 3695, + [8931] = 3696, + [8932] = 8280, + [8933] = 8216, + [8934] = 3697, + [8935] = 3698, + [8936] = 3753, + [8937] = 3699, + [8938] = 8238, + [8939] = 8281, + [8940] = 3700, + [8941] = 8283, + [8942] = 3701, + [8943] = 3898, + [8944] = 3702, + [8945] = 8284, + [8946] = 3703, + [8947] = 8285, + [8948] = 8216, + [8949] = 3704, + [8950] = 3706, + [8951] = 3707, + [8952] = 8286, + [8953] = 8238, + [8954] = 3708, + [8955] = 3709, + [8956] = 3710, + [8957] = 3711, + [8958] = 8593, + [8959] = 3712, + [8960] = 8287, + [8961] = 3714, + [8962] = 8288, + [8963] = 8216, + [8964] = 3715, + [8965] = 3716, + [8966] = 3717, + [8967] = 8289, + [8968] = 8238, + [8969] = 3718, + [8970] = 3719, + [8971] = 3720, + [8972] = 3721, + [8973] = 3899, + [8974] = 8290, + [8975] = 3722, + [8976] = 8291, + [8977] = 3723, + [8978] = 8216, + [8979] = 3724, + [8980] = 3725, + [8981] = 8293, + [8982] = 3726, + [8983] = 8238, + [8984] = 3727, + [8985] = 3609, + [8986] = 8294, + [8987] = 3728, + [8988] = 3901, + [8989] = 3729, + [8990] = 3730, + [8991] = 3731, + [8992] = 8295, + [8993] = 8216, + [8994] = 3732, + [8995] = 8296, + [8996] = 3733, + [8997] = 3734, + [8998] = 8238, + [8999] = 3735, + [9000] = 8298, + [9001] = 3736, + [9002] = 8300, + [9003] = 8591, + [9004] = 3737, + [9005] = 3738, + [9006] = 3739, + [9007] = 8301, + [9008] = 8216, + [9009] = 3740, + [9010] = 8302, + [9011] = 3741, + [9012] = 3742, + [9013] = 8238, + [9014] = 3743, + [9015] = 8305, + [9016] = 3744, + [9017] = 3745, + [9018] = 3902, + [9019] = 3903, + [9020] = 3746, + [9021] = 8306, + [9022] = 3747, + [9023] = 8216, + [9024] = 8308, + [9025] = 3748, + [9026] = 3749, + [9027] = 8310, + [9028] = 8238, + [9029] = 3750, + [9030] = 8311, + [9031] = 3751, + [9032] = 3752, + [9033] = 3904, + [9034] = 8589, + [9035] = 8313, + [9036] = 3754, + [9037] = 8315, + [9038] = 8216, + [9039] = 3755, + [9040] = 3756, + [9041] = 3757, + [9042] = 8316, + [9043] = 8238, + [9044] = 3758, + [9045] = 8317, + [9046] = 3759, + [9047] = 3760, + [9048] = 3905, + [9049] = 8587, + [9050] = 3761, + [9051] = 8318, + [9052] = 3829, + [9053] = 8216, + [9054] = 3762, + [9055] = 8319, + [9056] = 3763, + [9057] = 8320, + [9058] = 8238, + [9059] = 3764, + [9060] = 3765, + [9061] = 3766, + [9062] = 3767, + [9063] = 3906, + [9064] = 8322, + [9065] = 3768, + [9066] = 8323, + [9067] = 3769, + [9068] = 8216, + [9069] = 3770, + [9070] = 3771, + [9071] = 8324, + [9072] = 3772, + [9073] = 8238, + [9074] = 3773, + [9075] = 3774, + [9076] = 8325, + [9077] = 3775, + [9078] = 8590, + [9079] = 3776, + [9080] = 3777, + [9081] = 3778, + [9082] = 8327, + [9083] = 8216, + [9084] = 3779, + [9085] = 8328, + [9086] = 3780, + [9087] = 3781, + [9088] = 8238, + [9089] = 3782, + [9090] = 8329, + [9091] = 3783, + [9092] = 8330, + [9093] = 3909, + [9094] = 3784, + [9095] = 3785, + [9096] = 3786, + [9097] = 8332, + [9098] = 8216, + [9099] = 3787, + [9100] = 3788, + [9101] = 3789, + [9102] = 3790, + [9103] = 8238, + [9104] = 8334, + [9105] = 3791, + [9106] = 8335, + [9107] = 3792, + [9108] = 2676, + [9109] = 3793, + [9110] = 3794, + [9111] = 8336, + [9112] = 3795, + [9113] = 8216, + [9114] = 8338, + [9115] = 3796, + [9116] = 8238, + [9117] = 3797, + [9118] = 3800, + [9119] = 8339, + [9120] = 2658, + [9121] = 3801, + [9122] = 8341, + [9123] = 3802, + [9124] = 3803, + [9125] = 8216, + [9126] = 3805, + [9127] = 8342, + [9128] = 3806, + [9129] = 3809, + [9130] = 2668, + [9131] = 2891, + [9132] = 3810, + [9133] = 8343, + [9134] = 3813, + [9135] = 8344, + [9136] = 3814, + [9137] = 3815, + [9138] = 8345, + [9139] = 3816, + [9140] = 8348, + [9141] = 3817, + [9142] = 3818, + [9143] = 3819, + [9144] = 8349, + [9145] = 3820, + [9146] = 8350, + [9147] = 3821, + [9148] = 3822, + [9149] = 3823, + [9150] = 8353, + [9151] = 3824, + [9152] = 8354, + [9153] = 3825, + [9154] = 3826, + [9155] = 8586, + [9156] = 3827, + [9157] = 8355, + [9158] = 2887, + [9159] = 3828, + [9160] = 8356, + [9161] = 3830, + [9162] = 8357, + [9163] = 3886, + [9164] = 9164, + [9165] = 3831, + [9166] = 8358, + [9167] = 3832, + [9168] = 8265, + [9169] = 3833, + [9170] = 3834, + [9171] = 8361, + [9172] = 3835, + [9173] = 8362, + [9174] = 3836, + [9175] = 3837, + [9176] = 2885, + [9177] = 9177, + [9178] = 3838, + [9179] = 8363, + [9180] = 3839, + [9181] = 8364, + [9182] = 3840, + [9183] = 3841, + [9184] = 8190, + [9185] = 3842, + [9186] = 8365, + [9187] = 3843, + [9188] = 3844, + [9189] = 3845, + [9190] = 8192, + [9191] = 9191, + [9192] = 3846, + [9193] = 8366, + [9194] = 3847, + [9195] = 8292, + [9196] = 8367, + [9197] = 3848, + [9198] = 3849, + [9199] = 3850, + [9200] = 8299, + [9201] = 8368, + [9202] = 9202, + [9203] = 9203, + [9204] = 3851, + [9205] = 8369, + [9206] = 3852, + [9207] = 3853, + [9208] = 3854, + [9209] = 8370, + [9210] = 3855, + [9211] = 8436, + [9212] = 8371, + [9213] = 3856, + [9214] = 9214, + [9215] = 9215, + [9216] = 3857, + [9217] = 3858, + [9218] = 8372, + [9219] = 3859, + [9220] = 3860, + [9221] = 9221, + [9222] = 9222, + [9223] = 8537, + [9224] = 3861, + [9225] = 8373, + [9226] = 3862, + [9227] = 8374, + [9228] = 3863, + [9229] = 8194, + [9230] = 8611, + [9231] = 3864, + [9232] = 2897, + [9233] = 8375, + [9234] = 3865, + [9235] = 8376, + [9236] = 3866, + [9237] = 3867, + [9238] = 3868, + [9239] = 8377, + [9240] = 3869, + [9241] = 8380, + [9242] = 3870, + [9243] = 3871, + [9244] = 3872, + [9245] = 8382, + [9246] = 3873, + [9247] = 3874, + [9248] = 8200, + [9249] = 3875, + [9250] = 8383, + [9251] = 3876, + [9252] = 8384, + [9253] = 3877, + [9254] = 8719, + [9255] = 3878, + [9256] = 8385, + [9257] = 3879, + [9258] = 8386, + [9259] = 3880, + [9260] = 3881, + [9261] = 3882, + [9262] = 8388, + [9263] = 3883, + [9264] = 8389, + [9265] = 3884, + [9266] = 3885, + [9267] = 3913, + [9268] = 8390, + [9269] = 3887, + [9270] = 8775, + [9271] = 8391, + [9272] = 3888, + [9273] = 3891, + [9274] = 8203, + [9275] = 3892, + [9276] = 8392, + [9277] = 2898, + [9278] = 3893, + [9279] = 8360, + [9280] = 3896, + [9281] = 8394, + [9282] = 3900, + [9283] = 3907, + [9284] = 2901, + [9285] = 3908, + [9286] = 8395, + [9287] = 3911, + [9288] = 8396, + [9289] = 3955, + [9290] = 3914, + [9291] = 8397, + [9292] = 3915, + [9293] = 8398, + [9294] = 3916, + [9295] = 9177, + [9296] = 3917, + [9297] = 9297, + [9298] = 2921, + [9299] = 3918, + [9300] = 8399, + [9301] = 9301, + [9302] = 3927, + [9303] = 8401, + [9304] = 8578, + [9305] = 3931, + [9306] = 8403, + [9307] = 3932, + [9308] = 8404, + [9309] = 3933, + [9310] = 3968, + [9311] = 8577, + [9312] = 3934, + [9313] = 8586, + [9314] = 3935, + [9315] = 8406, + [9316] = 3936, + [9317] = 3937, + [9318] = 3938, + [9319] = 8407, + [9320] = 3939, + [9321] = 8408, + [9322] = 3940, + [9323] = 3941, + [9324] = 3943, + [9325] = 8409, + [9326] = 3944, + [9327] = 3945, + [9328] = 3969, + [9329] = 3947, + [9330] = 8411, + [9331] = 3949, + [9332] = 8413, + [9333] = 3950, + [9334] = 3951, + [9335] = 8414, + [9336] = 3954, + [9337] = 8416, + [9338] = 3970, + [9339] = 3956, + [9340] = 3957, + [9341] = 8417, + [9342] = 3958, + [9343] = 8418, + [9344] = 3959, + [9345] = 3960, + [9346] = 3961, + [9347] = 8419, + [9348] = 3962, + [9349] = 8420, + [9350] = 3963, + [9351] = 3967, + [9352] = 8576, + [9353] = 3986, + [9354] = 8421, + [9355] = 3971, + [9356] = 3989, + [9357] = 8422, + [9358] = 3990, + [9359] = 8423, + [9360] = 3992, + [9361] = 3993, + [9362] = 8424, + [9363] = 3994, + [9364] = 8425, + [9365] = 3995, + [9366] = 3996, + [9367] = 3997, + [9368] = 8426, + [9369] = 3998, + [9370] = 8427, + [9371] = 3999, + [9372] = 4000, + [9373] = 8575, + [9374] = 4001, + [9375] = 8428, + [9376] = 3972, + [9377] = 4002, + [9378] = 8430, + [9379] = 4003, + [9380] = 8431, + [9381] = 4004, + [9382] = 3973, + [9383] = 4005, + [9384] = 8432, + [9385] = 4006, + [9386] = 8433, + [9387] = 4007, + [9388] = 4008, + [9389] = 8435, + [9390] = 4009, + [9391] = 8437, + [9392] = 4010, + [9393] = 4011, + [9394] = 8574, + [9395] = 3974, + [9396] = 4012, + [9397] = 8393, + [9398] = 4013, + [9399] = 8439, + [9400] = 4014, + [9401] = 4015, + [9402] = 4018, + [9403] = 8443, + [9404] = 4019, + [9405] = 8440, + [9406] = 8573, + [9407] = 4020, + [9408] = 8441, + [9409] = 4021, + [9410] = 8442, + [9411] = 4022, + [9412] = 3975, + [9413] = 3976, + [9414] = 8572, + [9415] = 3977, + [9416] = 4023, + [9417] = 4083, + [9418] = 8571, + [9419] = 4024, + [9420] = 8445, + [9421] = 4025, + [9422] = 8446, + [9423] = 4029, + [9424] = 4030, + [9425] = 4032, + [9426] = 8447, + [9427] = 4033, + [9428] = 8448, + [9429] = 4034, + [9430] = 4035, + [9431] = 4055, + [9432] = 8450, + [9433] = 4056, + [9434] = 8451, + [9435] = 4064, + [9436] = 4065, + [9437] = 3978, + [9438] = 4066, + [9439] = 8452, + [9440] = 3980, + [9441] = 4070, + [9442] = 4071, + [9443] = 8454, + [9444] = 4072, + [9445] = 3981, + [9446] = 4073, + [9447] = 8455, + [9448] = 4074, + [9449] = 8456, + [9450] = 4075, + [9451] = 4076, + [9452] = 8457, + [9453] = 4077, + [9454] = 8458, + [9455] = 4078, + [9456] = 4079, + [9457] = 8570, + [9458] = 3982, + [9459] = 4080, + [9460] = 8459, + [9461] = 3983, + [9462] = 4081, + [9463] = 8460, + [9464] = 4082, + [9465] = 8461, + [9466] = 3984, + [9467] = 4084, + [9468] = 8462, + [9469] = 4085, + [9470] = 8463, + [9471] = 4086, + [9472] = 4087, + [9473] = 8569, + [9474] = 3985, + [9475] = 4088, + [9476] = 8464, + [9477] = 8568, + [9478] = 4089, + [9479] = 8465, + [9480] = 3987, + [9481] = 4090, + [9482] = 8466, + [9483] = 4091, + [9484] = 8467, + [9485] = 4092, + [9486] = 8567, + [9487] = 3988, + [9488] = 4093, + [9489] = 8468, + [9490] = 4094, + [9491] = 8469, + [9492] = 4095, + [9493] = 4112, + [9494] = 4113, + [9495] = 8470, + [9496] = 4114, + [9497] = 4127, + [9498] = 9498, + [9499] = 4128, + [9500] = 8193, + [9501] = 9501, + [9502] = 4129, + [9503] = 8471, + [9504] = 3991, + [9505] = 2666, + [9506] = 2731, + [9507] = 4133, + [9508] = 8201, + [9509] = 4134, + [9510] = 8472, + [9511] = 4135, + [9512] = 8473, + [9513] = 4136, + [9514] = 4151, + [9515] = 4137, + [9516] = 8474, + [9517] = 4139, + [9518] = 8475, + [9519] = 4140, + [9520] = 4141, + [9521] = 8476, + [9522] = 4142, + [9523] = 8477, + [9524] = 4143, + [9525] = 4144, + [9526] = 2916, + [9527] = 2949, + [9528] = 4145, + [9529] = 8478, + [9530] = 8207, + [9531] = 4146, + [9532] = 8479, + [9533] = 2952, + [9534] = 4147, + [9535] = 8480, + [9536] = 4148, + [9537] = 8481, + [9538] = 4149, + [9539] = 2931, + [9540] = 9540, + [9541] = 9541, + [9542] = 4150, + [9543] = 8482, + [9544] = 9544, + [9545] = 4184, + [9546] = 8483, + [9547] = 4165, + [9548] = 8484, + [9549] = 3948, + [9550] = 9550, + [9551] = 8611, + [9552] = 8436, + [9553] = 9553, + [9554] = 4047, + [9555] = 2955, + [9556] = 8485, + [9557] = 8292, + [9558] = 8611, + [9559] = 3946, + [9560] = 8299, + [9561] = 8488, + [9562] = 8436, + [9563] = 4167, + [9564] = 8490, + [9565] = 4168, + [9566] = 4172, + [9567] = 4180, + [9568] = 8491, + [9569] = 4181, + [9570] = 8436, + [9571] = 8492, + [9572] = 2948, + [9573] = 4182, + [9574] = 8189, + [9575] = 8537, + [9576] = 9576, + [9577] = 2915, + [9578] = 4185, + [9579] = 8493, + [9580] = 4186, + [9581] = 2947, + [9582] = 8611, + [9583] = 4187, + [9584] = 4189, + [9585] = 8611, + [9586] = 8436, + [9587] = 8611, + [9588] = 4190, + [9589] = 8494, + [9590] = 4191, + [9591] = 4192, + [9592] = 8436, + [9593] = 4193, + [9594] = 8496, + [9595] = 8191, + [9596] = 4194, + [9597] = 8497, + [9598] = 2944, + [9599] = 8775, + [9600] = 4195, + [9601] = 8438, + [9602] = 4196, + [9603] = 8499, + [9604] = 4197, + [9605] = 8611, + [9606] = 8436, + [9607] = 9177, + [9608] = 8566, + [9609] = 4036, + [9610] = 4198, + [9611] = 8500, + [9612] = 8561, + [9613] = 4199, + [9614] = 8611, + [9615] = 8436, + [9616] = 4200, + [9617] = 8501, + [9618] = 4037, + [9619] = 8560, + [9620] = 4038, + [9621] = 8611, + [9622] = 4208, + [9623] = 8514, + [9624] = 8299, + [9625] = 4207, + [9626] = 8502, + [9627] = 4206, + [9628] = 8503, + [9629] = 4205, + [9630] = 4204, + [9631] = 8436, + [9632] = 8504, + [9633] = 8436, + [9634] = 4203, + [9635] = 8537, + [9636] = 8505, + [9637] = 4202, + [9638] = 4201, + [9639] = 9639, + [9640] = 8559, + [9641] = 8611, + [9642] = 4039, + [9643] = 2908, + [9644] = 2907, + [9645] = 8206, + [9646] = 2903, + [9647] = 4183, + [9648] = 4179, + [9649] = 8507, + [9650] = 4178, + [9651] = 8509, + [9652] = 4177, + [9653] = 4176, + [9654] = 4175, + [9655] = 4174, + [9656] = 8511, + [9657] = 4173, + [9658] = 3608, + [9659] = 4040, + [9660] = 8558, + [9661] = 4171, + [9662] = 8512, + [9663] = 8299, + [9664] = 4170, + [9665] = 8513, + [9666] = 4169, + [9667] = 8611, + [9668] = 8436, + [9669] = 8436, + [9670] = 4041, + [9671] = 8556, + [9672] = 4164, + [9673] = 4042, + [9674] = 8611, + [9675] = 8515, + [9676] = 4043, + [9677] = 8611, + [9678] = 8436, + [9679] = 4163, + [9680] = 4116, + [9681] = 4162, + [9682] = 4161, + [9683] = 4160, + [9684] = 4044, + [9685] = 8555, + [9686] = 4045, + [9687] = 4159, + [9688] = 4046, + [9689] = 8516, + [9690] = 4158, + [9691] = 8299, + [9692] = 4157, + [9693] = 8611, + [9694] = 4156, + [9695] = 8517, + [9696] = 4155, + [9697] = 8436, + [9698] = 8436, + [9699] = 4166, + [9700] = 4154, + [9701] = 8554, + [9702] = 8611, + [9703] = 8519, + [9704] = 4153, + [9705] = 8498, + [9706] = 4152, + [9707] = 9707, + [9708] = 9708, + [9709] = 2880, + [9710] = 8204, + [9711] = 2879, + [9712] = 2877, + [9713] = 2874, + [9714] = 4048, + [9715] = 8202, + [9716] = 8299, + [9717] = 4132, + [9718] = 8525, + [9719] = 4131, + [9720] = 4130, + [9721] = 8436, + [9722] = 8553, + [9723] = 9723, + [9724] = 8611, + [9725] = 8611, + [9726] = 4125, + [9727] = 8526, + [9728] = 4124, + [9729] = 8527, + [9730] = 4123, + [9731] = 4122, + [9732] = 4121, + [9733] = 8528, + [9734] = 8436, + [9735] = 4120, + [9736] = 8299, + [9737] = 4119, + [9738] = 4118, + [9739] = 8529, + [9740] = 8436, + [9741] = 4049, + [9742] = 4117, + [9743] = 8611, + [9744] = 8530, + [9745] = 9745, + [9746] = 4115, + [9747] = 8531, + [9748] = 4050, + [9749] = 4111, + [9750] = 4051, + [9751] = 8611, + [9752] = 8436, + [9753] = 8551, + [9754] = 8299, + [9755] = 4110, + [9756] = 8532, + [9757] = 4109, + [9758] = 8436, + [9759] = 4052, + [9760] = 8533, + [9761] = 8611, + [9762] = 4108, + [9763] = 4107, + [9764] = 4106, + [9765] = 4105, + [9766] = 8534, + [9767] = 4104, + [9768] = 4103, + [9769] = 4053, + [9770] = 4054, + [9771] = 4102, + [9772] = 8299, + [9773] = 8535, + [9774] = 4101, + [9775] = 8536, + [9776] = 8436, + [9777] = 8611, + [9778] = 8611, + [9779] = 4100, + [9780] = 8436, + [9781] = 4099, + [9782] = 8538, + [9783] = 4098, + [9784] = 4097, + [9785] = 8550, + [9786] = 4057, + [9787] = 4096, + [9788] = 8539, + [9789] = 8436, + [9790] = 4058, + [9791] = 8611, + [9792] = 2937, + [9793] = 8611, + [9794] = 8436, + [9795] = 8549, + [9796] = 4059, + [9797] = 8436, + [9798] = 8548, + [9799] = 8611, + [9800] = 2940, + [9801] = 4060, + [9802] = 8611, + [9803] = 8436, + [9804] = 2859, + [9805] = 8436, + [9806] = 4061, + [9807] = 8611, + [9808] = 2858, + [9809] = 8197, + [9810] = 2856, + [9811] = 8196, + [9812] = 8436, + [9813] = 8611, + [9814] = 2863, + [9815] = 4069, + [9816] = 8543, + [9817] = 4068, + [9818] = 8436, + [9819] = 8611, + [9820] = 8545, + [9821] = 4067, + [9822] = 8547, + [9823] = 4063, + [9824] = 8436, + [9825] = 8611, + [9826] = 8546, + [9827] = 4062, + [9828] = 9828, + [9829] = 9829, + [9830] = 9830, + [9831] = 9831, + [9832] = 9832, + [9833] = 9829, + [9834] = 7465, + [9835] = 7482, + [9836] = 2938, + [9837] = 9832, + [9838] = 9829, + [9839] = 9839, + [9840] = 9832, + [9841] = 9841, + [9842] = 9842, + [9843] = 9829, + [9844] = 9832, + [9845] = 9845, + [9846] = 9829, + [9847] = 9847, + [9848] = 9832, + [9849] = 9849, + [9850] = 9850, + [9851] = 9851, + [9852] = 9852, + [9853] = 9829, + [9854] = 9832, + [9855] = 9855, + [9856] = 9829, + [9857] = 9832, + [9858] = 9855, + [9859] = 9829, + [9860] = 9860, + [9861] = 9861, + [9862] = 9832, + [9863] = 9863, + [9864] = 9864, + [9865] = 9865, + [9866] = 9866, + [9867] = 9867, + [9868] = 9868, + [9869] = 9855, + [9870] = 9829, + [9871] = 9871, + [9872] = 9872, + [9873] = 9873, + [9874] = 9832, + [9875] = 9875, + [9876] = 9876, + [9877] = 9855, + [9878] = 9829, + [9879] = 9879, + [9880] = 9880, + [9881] = 9832, + [9882] = 9882, + [9883] = 9883, + [9884] = 9884, + [9885] = 9885, + [9886] = 9886, + [9887] = 9887, + [9888] = 9888, + [9889] = 9889, + [9890] = 9890, + [9891] = 9891, + [9892] = 9892, + [9893] = 9893, + [9894] = 2946, + [9895] = 7365, + [9896] = 9896, + [9897] = 9897, + [9898] = 7362, + [9899] = 7360, + [9900] = 7371, + [9901] = 7372, + [9902] = 9902, + [9903] = 9903, + [9904] = 7375, + [9905] = 9855, + [9906] = 9906, + [9907] = 9829, + [9908] = 9908, + [9909] = 9909, + [9910] = 9832, + [9911] = 9911, + [9912] = 9912, + [9913] = 9913, + [9914] = 9914, + [9915] = 2932, + [9916] = 9916, + [9917] = 9917, + [9918] = 9918, + [9919] = 9919, + [9920] = 9920, + [9921] = 9921, + [9922] = 9922, + [9923] = 9923, + [9924] = 9924, + [9925] = 9925, + [9926] = 9926, + [9927] = 9927, + [9928] = 9928, + [9929] = 9929, + [9930] = 9930, + [9931] = 9931, + [9932] = 9932, + [9933] = 9933, + [9934] = 9934, + [9935] = 9935, + [9936] = 9936, + [9937] = 9937, + [9938] = 9938, + [9939] = 9939, + [9940] = 9940, + [9941] = 9941, + [9942] = 9942, + [9943] = 9943, + [9944] = 9944, + [9945] = 9945, + [9946] = 9946, + [9947] = 9947, + [9948] = 9948, + [9949] = 9949, + [9950] = 9950, + [9951] = 9951, + [9952] = 9952, + [9953] = 9953, + [9954] = 9954, + [9955] = 9955, + [9956] = 9956, + [9957] = 9957, + [9958] = 9958, + [9959] = 9959, + [9960] = 9960, + [9961] = 9961, + [9962] = 9962, + [9963] = 9963, + [9964] = 9964, + [9965] = 9965, + [9966] = 9966, + [9967] = 9967, + [9968] = 9968, + [9969] = 9969, + [9970] = 9970, + [9971] = 9971, + [9972] = 9972, + [9973] = 9973, + [9974] = 9974, + [9975] = 9975, + [9976] = 9976, + [9977] = 9977, + [9978] = 9978, + [9979] = 9979, + [9980] = 9980, + [9981] = 9981, + [9982] = 9982, + [9983] = 9983, + [9984] = 9984, + [9985] = 9985, + [9986] = 9986, + [9987] = 9987, + [9988] = 9988, + [9989] = 9989, + [9990] = 9990, + [9991] = 9991, + [9992] = 2919, + [9993] = 9993, + [9994] = 7519, + [9995] = 9995, + [9996] = 7520, + [9997] = 7522, + [9998] = 7524, + [9999] = 7525, + [10000] = 10000, + [10001] = 7530, + [10002] = 7563, + [10003] = 10003, + [10004] = 7543, + [10005] = 10005, + [10006] = 10006, + [10007] = 10007, + [10008] = 10008, + [10009] = 10009, + [10010] = 10010, + [10011] = 10011, + [10012] = 10012, + [10013] = 10013, + [10014] = 9855, + [10015] = 10015, + [10016] = 10016, + [10017] = 9829, + [10018] = 10018, + [10019] = 10019, + [10020] = 10020, + [10021] = 10021, + [10022] = 10022, + [10023] = 9908, + [10024] = 9993, + [10025] = 10025, + [10026] = 9984, + [10027] = 2892, + [10028] = 9832, + [10029] = 10029, + [10030] = 10030, + [10031] = 9979, + [10032] = 10032, + [10033] = 10033, + [10034] = 10034, + [10035] = 10035, + [10036] = 9961, + [10037] = 10037, + [10038] = 10038, + [10039] = 9943, + [10040] = 10037, + [10041] = 10037, + [10042] = 10037, + [10043] = 10037, + [10044] = 10021, + [10045] = 9941, + [10046] = 9930, + [10047] = 10020, + [10048] = 10018, + [10049] = 9831, + [10050] = 10037, + [10051] = 10051, + [10052] = 9880, + [10053] = 10037, + [10054] = 10054, + [10055] = 10037, + [10056] = 10056, + [10057] = 10057, + [10058] = 10037, + [10059] = 9852, + [10060] = 10037, + [10061] = 10037, + [10062] = 10062, + [10063] = 9841, + [10064] = 10037, + [10065] = 10037, + [10066] = 10010, + [10067] = 10037, + [10068] = 9828, + [10069] = 10037, + [10070] = 9839, + [10071] = 10037, + [10072] = 9842, + [10073] = 10073, + [10074] = 10009, + [10075] = 10003, + [10076] = 9845, + [10077] = 10000, + [10078] = 10037, + [10079] = 9847, + [10080] = 10037, + [10081] = 10081, + [10082] = 10082, + [10083] = 9849, + [10084] = 10084, + [10085] = 9850, + [10086] = 10086, + [10087] = 9851, + [10088] = 2882, + [10089] = 10037, + [10090] = 7706, + [10091] = 7717, + [10092] = 7718, + [10093] = 9860, + [10094] = 9861, + [10095] = 7728, + [10096] = 9863, + [10097] = 7746, + [10098] = 7764, + [10099] = 7766, + [10100] = 9864, + [10101] = 7609, + [10102] = 9865, + [10103] = 8064, + [10104] = 10104, + [10105] = 9866, + [10106] = 10106, + [10107] = 9867, + [10108] = 10108, + [10109] = 9868, + [10110] = 10081, + [10111] = 10111, + [10112] = 9871, + [10113] = 10084, + [10114] = 9872, + [10115] = 2913, + [10116] = 9873, + [10117] = 2959, + [10118] = 10086, + [10119] = 10037, + [10120] = 9875, + [10121] = 10104, + [10122] = 10106, + [10123] = 9906, + [10124] = 10108, + [10125] = 9879, + [10126] = 10081, + [10127] = 9882, + [10128] = 10084, + [10129] = 9883, + [10130] = 2912, + [10131] = 10086, + [10132] = 9884, + [10133] = 2899, + [10134] = 9885, + [10135] = 10037, + [10136] = 9886, + [10137] = 10104, + [10138] = 10106, + [10139] = 9887, + [10140] = 10108, + [10141] = 9888, + [10142] = 10081, + [10143] = 9890, + [10144] = 10084, + [10145] = 9891, + [10146] = 10086, + [10147] = 9892, + [10148] = 9893, + [10149] = 10037, + [10150] = 9896, + [10151] = 10104, + [10152] = 9897, + [10153] = 2625, + [10154] = 10154, + [10155] = 10106, + [10156] = 9902, + [10157] = 10108, + [10158] = 9903, + [10159] = 9995, + [10160] = 9909, + [10161] = 9991, + [10162] = 9989, + [10163] = 9911, + [10164] = 8172, + [10165] = 9913, + [10166] = 10081, + [10167] = 9914, + [10168] = 8064, + [10169] = 9916, + [10170] = 10084, + [10171] = 9917, + [10172] = 9918, + [10173] = 10086, + [10174] = 9919, + [10175] = 9987, + [10176] = 9920, + [10177] = 9981, + [10178] = 9921, + [10179] = 9922, + [10180] = 9980, + [10181] = 9923, + [10182] = 9978, + [10183] = 9924, + [10184] = 9972, + [10185] = 9947, + [10186] = 9925, + [10187] = 10037, + [10188] = 9926, + [10189] = 10189, + [10190] = 9927, + [10191] = 10191, + [10192] = 9928, + [10193] = 10104, + [10194] = 10106, + [10195] = 9931, + [10196] = 10108, + [10197] = 9933, + [10198] = 10081, + [10199] = 9935, + [10200] = 10081, + [10201] = 9937, + [10202] = 10084, + [10203] = 9938, + [10204] = 9940, + [10205] = 10205, + [10206] = 9944, + [10207] = 10086, + [10208] = 9945, + [10209] = 10037, + [10210] = 9949, + [10211] = 9950, + [10212] = 10212, + [10213] = 9951, + [10214] = 2926, + [10215] = 9952, + [10216] = 9953, + [10217] = 9954, + [10218] = 10218, + [10219] = 9956, + [10220] = 2923, + [10221] = 7923, + [10222] = 9958, + [10223] = 7925, + [10224] = 9959, + [10225] = 7927, + [10226] = 9960, + [10227] = 7928, + [10228] = 9963, + [10229] = 7931, + [10230] = 9966, + [10231] = 9975, + [10232] = 7932, + [10233] = 9967, + [10234] = 8172, + [10235] = 9968, + [10236] = 10236, + [10237] = 9969, + [10238] = 9970, + [10239] = 9971, + [10240] = 10189, + [10241] = 9973, + [10242] = 9974, + [10243] = 9955, + [10244] = 9976, + [10245] = 9977, + [10246] = 10246, + [10247] = 9982, + [10248] = 10248, + [10249] = 9983, + [10250] = 9985, + [10251] = 2869, + [10252] = 9990, + [10253] = 10104, + [10254] = 10005, + [10255] = 10108, + [10256] = 10006, + [10257] = 10007, + [10258] = 10008, + [10259] = 10106, + [10260] = 10011, + [10261] = 10016, + [10262] = 10030, + [10263] = 1162, + [10264] = 10032, + [10265] = 10265, + [10266] = 10033, + [10267] = 10034, + [10268] = 10035, + [10269] = 2954, + [10270] = 10038, + [10271] = 10054, + [10272] = 10051, + [10273] = 10273, + [10274] = 10056, + [10275] = 10073, + [10276] = 10276, + [10277] = 9929, + [10278] = 9932, + [10279] = 2943, + [10280] = 9936, + [10281] = 10281, + [10282] = 10108, + [10283] = 9939, + [10284] = 9942, + [10285] = 10106, + [10286] = 10104, + [10287] = 10287, + [10288] = 10288, + [10289] = 10189, + [10290] = 10290, + [10291] = 10291, + [10292] = 10037, + [10293] = 9929, + [10294] = 9932, + [10295] = 10295, + [10296] = 10296, + [10297] = 9939, + [10298] = 9942, + [10299] = 10086, + [10300] = 10084, + [10301] = 9965, + [10302] = 9964, + [10303] = 9962, + [10304] = 9929, + [10305] = 9932, + [10306] = 9957, + [10307] = 9942, + [10308] = 10296, + [10309] = 10295, + [10310] = 10288, + [10311] = 10276, + [10312] = 10312, + [10313] = 9929, + [10314] = 9932, + [10315] = 10315, + [10316] = 9942, + [10317] = 10081, + [10318] = 2625, + [10319] = 10265, + [10320] = 10320, + [10321] = 10321, + [10322] = 10246, + [10323] = 10012, + [10324] = 10084, + [10325] = 10325, + [10326] = 10084, + [10327] = 10086, + [10328] = 10086, + [10329] = 10081, + [10330] = 10037, + [10331] = 10037, + [10332] = 10154, + [10333] = 10333, + [10334] = 10189, + [10335] = 7978, + [10336] = 7994, + [10337] = 8006, + [10338] = 9855, + [10339] = 10291, + [10340] = 10104, + [10341] = 10106, + [10342] = 10062, + [10343] = 2957, + [10344] = 10108, + [10345] = 10081, + [10346] = 10084, + [10347] = 10086, + [10348] = 10037, + [10349] = 2934, + [10350] = 10015, + [10351] = 10290, + [10352] = 9948, + [10353] = 9946, + [10354] = 10189, + [10355] = 2868, + [10356] = 10189, + [10357] = 10104, + [10358] = 10358, + [10359] = 10106, + [10360] = 10281, + [10361] = 10108, + [10362] = 10218, + [10363] = 10081, + [10364] = 10104, + [10365] = 9829, + [10366] = 10019, + [10367] = 10106, + [10368] = 10368, + [10369] = 9942, + [10370] = 10084, + [10371] = 10086, + [10372] = 10037, + [10373] = 10189, + [10374] = 10281, + [10375] = 10273, + [10376] = 10287, + [10377] = 10104, + [10378] = 10378, + [10379] = 2865, + [10380] = 8045, + [10381] = 10106, + [10382] = 9832, + [10383] = 10281, + [10384] = 10108, + [10385] = 2871, + [10386] = 10218, + [10387] = 10022, + [10388] = 9908, + [10389] = 10081, + [10390] = 10265, + [10391] = 10288, + [10392] = 10084, + [10393] = 8082, + [10394] = 2902, + [10395] = 10086, + [10396] = 10037, + [10397] = 10189, + [10398] = 10104, + [10399] = 10025, + [10400] = 10400, + [10401] = 9939, + [10402] = 10106, + [10403] = 10281, + [10404] = 10212, + [10405] = 10218, + [10406] = 10108, + [10407] = 10281, + [10408] = 10106, + [10409] = 10104, + [10410] = 10108, + [10411] = 10189, + [10412] = 10218, + [10413] = 10086, + [10414] = 10084, + [10415] = 10288, + [10416] = 10212, + [10417] = 10108, + [10418] = 10276, + [10419] = 10265, + [10420] = 10246, + [10421] = 10218, + [10422] = 10029, + [10423] = 10212, + [10424] = 2911, + [10425] = 8117, + [10426] = 10081, + [10427] = 2918, + [10428] = 10400, + [10429] = 10400, + [10430] = 10400, + [10431] = 10400, + [10432] = 10432, + [10433] = 10433, + [10434] = 9936, + [10435] = 9934, + [10436] = 9932, + [10437] = 10037, + [10438] = 10400, + [10439] = 9929, + [10440] = 10440, +}; + +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 < 43250 + ? (c < 5984 + ? (c < 2947 + ? (c < 2160 + ? (c < 1369 + ? (c < 750 + ? (c < 192 + ? (c < 174 + ? (c < 'a' + ? (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_6(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_7(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_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 < '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_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 <= '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_10(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(595); + if (lookahead == '!') ADVANCE(1286); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(2); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1398); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == '*') ADVANCE(1394); + if (lookahead == '+') ADVANCE(1389); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1391); + if (lookahead == '.') ADVANCE(1291); + if (lookahead == '/') ADVANCE(1396); + if (lookahead == '0') ADVANCE(1223); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == ';') ADVANCE(1461); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(1381); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1297); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == 'P') ADVANCE(462); + if (lookahead == 'T') ADVANCE(572); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1272); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '_') ADVANCE(1492); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(490); + if (lookahead == 'b') ADVANCE(465); + if (lookahead == 'c') ADVANCE(117); + if (lookahead == 'd') ADVANCE(197); + if (lookahead == 'e') ADVANCE(386); + if (lookahead == 'f') ADVANCE(112); + if (lookahead == 'g') ADVANCE(226); + if (lookahead == 'i') ADVANCE(269); + if (lookahead == 'l') ADVANCE(113); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(295); + if (lookahead == 'o') ADVANCE(440); + if (lookahead == 'p') ADVANCE(119); + if (lookahead == 'r') ADVANCE(198); + if (lookahead == 's') ADVANCE(199); + if (lookahead == 't') ADVANCE(291); + if (lookahead == 'u') ADVANCE(1276); + if (lookahead == 'v') ADVANCE(123); + if (lookahead == 'w') ADVANCE(232); + if (lookahead == 'y') ADVANCE(300); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(591) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1224); + END_STATE(); + case 1: + if (lookahead == '!') ADVANCE(1286); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '%') ADVANCE(1398); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == '*') ADVANCE(1394); + if (lookahead == '+') ADVANCE(1389); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1391); + if (lookahead == '.') ADVANCE(1291); + if (lookahead == '/') ADVANCE(1396); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == ';') ADVANCE(1461); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(1381); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1297); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == 'a') ADVANCE(489); + if (lookahead == 'c') ADVANCE(118); + if (lookahead == 'd') ADVANCE(266); + if (lookahead == 'e') ADVANCE(386); + if (lookahead == 'f') ADVANCE(141); + if (lookahead == 'i') ADVANCE(369); + if (lookahead == 'l') ADVANCE(113); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(418); + if (lookahead == 'o') ADVANCE(442); + if (lookahead == 'p') ADVANCE(417); + if (lookahead == 'r') ADVANCE(223); + if (lookahead == 's') ADVANCE(506); + if (lookahead == 't') ADVANCE(578); + if (lookahead == 'u') ADVANCE(388); + if (lookahead == 'v') ADVANCE(123); + if (lookahead == 'w') ADVANCE(231); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(40) + END_STATE(); + case 2: + if (lookahead == '!') ADVANCE(596); + if (lookahead == 'a') ADVANCE(563); + if (lookahead == 'c') ADVANCE(416); + if (lookahead == 'd') ADVANCE(494); + if (lookahead == 'e') ADVANCE(364); + if (lookahead == 'f') ADVANCE(299); + if (lookahead == 'i') ADVANCE(272); + if (lookahead == 'k') ADVANCE(225); + if (lookahead == 'l') ADVANCE(303); + if (lookahead == 's') ADVANCE(257); + if (lookahead == 'w') ADVANCE(126); + END_STATE(); + case 3: + if (lookahead == '!') ADVANCE(596); + if (lookahead == 'c') ADVANCE(416); + if (lookahead == 'd') ADVANCE(494); + if (lookahead == 'e') ADVANCE(364); + if (lookahead == 'f') ADVANCE(299); + if (lookahead == 'i') ADVANCE(272); + if (lookahead == 'k') ADVANCE(225); + if (lookahead == 'l') ADVANCE(303); + if (lookahead == 's') ADVANCE(257); + if (lookahead == 'w') ADVANCE(126); + END_STATE(); + case 4: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1297); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1150); + if (lookahead == 'f') ADVANCE(931); + if (lookahead == 'i') ADVANCE(1140); + if (lookahead == 'n') ADVANCE(1019); + if (lookahead == 's') ADVANCE(984); + if (lookahead == 't') ADVANCE(1120); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(5) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (aux_sym_simple_identifier_token1_character_set_1(lookahead)) ADVANCE(1209); + END_STATE(); + case 5: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1295); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1150); + if (lookahead == 'f') ADVANCE(931); + if (lookahead == 'i') ADVANCE(1140); + if (lookahead == 'n') ADVANCE(1019); + if (lookahead == 's') ADVANCE(984); + if (lookahead == 't') ADVANCE(1120); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(5) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (aux_sym_simple_identifier_token1_character_set_1(lookahead)) ADVANCE(1209); + END_STATE(); + case 6: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == '<') ADVANCE(1320); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1323); + if (lookahead == '?') ADVANCE(583); + if (lookahead == '@') ADVANCE(1490); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1150); + if (lookahead == 'f') ADVANCE(931); + if (lookahead == 'n') ADVANCE(1019); + if (lookahead == 's') ADVANCE(984); + if (lookahead == 't') ADVANCE(1120); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '^' || + lookahead == '|') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(6) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (aux_sym_simple_identifier_token1_character_set_1(lookahead)) ADVANCE(1209); + END_STATE(); + case 7: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == '<') ADVANCE(1320); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1323); + if (lookahead == '?') ADVANCE(583); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == '_') ADVANCE(1493); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1150); + if (lookahead == 'f') ADVANCE(931); + if (lookahead == 'i') ADVANCE(1081); + if (lookahead == 'n') ADVANCE(1019); + if (lookahead == 's') ADVANCE(979); + if (lookahead == 't') ADVANCE(1120); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '^' || + lookahead == '|') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(7) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (aux_sym_simple_identifier_token1_character_set_2(lookahead)) ADVANCE(1209); + END_STATE(); + case 8: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == '<') ADVANCE(1320); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1323); + if (lookahead == '?') ADVANCE(583); + if (lookahead == '@') ADVANCE(1490); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1150); + if (lookahead == 'f') ADVANCE(931); + if (lookahead == 'n') ADVANCE(1019); + if (lookahead == 's') ADVANCE(979); + if (lookahead == 't') ADVANCE(1120); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '^' || + lookahead == '|') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(8) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (aux_sym_simple_identifier_token1_character_set_1(lookahead)) ADVANCE(1209); + END_STATE(); + case 9: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == '<') ADVANCE(1320); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1323); + if (lookahead == '?') ADVANCE(583); + if (lookahead == '@') ADVANCE(1490); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1150); + if (lookahead == 'f') ADVANCE(931); + if (lookahead == 'n') ADVANCE(1019); + if (lookahead == 's') ADVANCE(979); + if (lookahead == 't') ADVANCE(1120); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '^' || + lookahead == '|') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(9) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (aux_sym_simple_identifier_token1_character_set_1(lookahead)) ADVANCE(1209); + END_STATE(); + case 10: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == ';') ADVANCE(1461); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1297); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1141); + if (lookahead == 'c') ADVANCE(913); + if (lookahead == 'd') ADVANCE(1003); + if (lookahead == 'e') ADVANCE(1079); + if (lookahead == 'f') ADVANCE(930); + if (lookahead == 'i') ADVANCE(1060); + if (lookahead == 'l') ADVANCE(916); + if (lookahead == 'm') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(1018); + if (lookahead == 'o') ADVANCE(1110); + if (lookahead == 'p') ADVANCE(1096); + if (lookahead == 'r') ADVANCE(961); + if (lookahead == 's') ADVANCE(980); + if (lookahead == 't') ADVANCE(1119); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'v') ADVANCE(928); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(11) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 11: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == ';') ADVANCE(1461); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1295); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1141); + if (lookahead == 'c') ADVANCE(913); + if (lookahead == 'd') ADVANCE(1003); + if (lookahead == 'e') ADVANCE(1079); + if (lookahead == 'f') ADVANCE(930); + if (lookahead == 'i') ADVANCE(1060); + if (lookahead == 'l') ADVANCE(916); + if (lookahead == 'm') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(1018); + if (lookahead == 'o') ADVANCE(1110); + if (lookahead == 'p') ADVANCE(1096); + if (lookahead == 'r') ADVANCE(961); + if (lookahead == 's') ADVANCE(980); + if (lookahead == 't') ADVANCE(1119); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'v') ADVANCE(928); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(11) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 12: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1297); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1150); + if (lookahead == 'c') ADVANCE(913); + if (lookahead == 'd') ADVANCE(1203); + if (lookahead == 'f') ADVANCE(915); + if (lookahead == 'i') ADVANCE(1065); + if (lookahead == 'l') ADVANCE(917); + if (lookahead == 'm') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(1018); + if (lookahead == 'o') ADVANCE(1110); + if (lookahead == 'p') ADVANCE(1095); + if (lookahead == 'r') ADVANCE(961); + if (lookahead == 's') ADVANCE(982); + if (lookahead == 't') ADVANCE(1120); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(13) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 13: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1295); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1150); + if (lookahead == 'c') ADVANCE(913); + if (lookahead == 'd') ADVANCE(1203); + if (lookahead == 'f') ADVANCE(915); + if (lookahead == 'i') ADVANCE(1065); + if (lookahead == 'l') ADVANCE(917); + if (lookahead == 'm') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(1018); + if (lookahead == 'o') ADVANCE(1110); + if (lookahead == 'p') ADVANCE(1095); + if (lookahead == 'r') ADVANCE(961); + if (lookahead == 's') ADVANCE(982); + if (lookahead == 't') ADVANCE(1120); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(13) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 14: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == '<') ADVANCE(1320); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1323); + if (lookahead == '?') ADVANCE(583); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1150); + if (lookahead == 'c') ADVANCE(913); + if (lookahead == 'd') ADVANCE(1203); + if (lookahead == 'f') ADVANCE(915); + if (lookahead == 'i') ADVANCE(1066); + if (lookahead == 'l') ADVANCE(917); + if (lookahead == 'm') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(1018); + if (lookahead == 'o') ADVANCE(1110); + if (lookahead == 'p') ADVANCE(1095); + if (lookahead == 'r') ADVANCE(961); + if (lookahead == 's') ADVANCE(982); + if (lookahead == 't') ADVANCE(1120); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '^' || + lookahead == '|') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(14) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 15: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == '<') ADVANCE(1320); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1323); + if (lookahead == '?') ADVANCE(583); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1150); + if (lookahead == 'f') ADVANCE(931); + if (lookahead == 'i') ADVANCE(1081); + if (lookahead == 'n') ADVANCE(1019); + if (lookahead == 's') ADVANCE(979); + if (lookahead == 't') ADVANCE(1120); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '^' || + lookahead == '|') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(15) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 16: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == '<') ADVANCE(1320); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1323); + if (lookahead == '?') ADVANCE(583); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(856); + if (lookahead == 'b') ADVANCE(851); + if (lookahead == 'c') ADVANCE(653); + if (lookahead == 'd') ADVANCE(810); + if (lookahead == 'e') ADVANCE(797); + if (lookahead == 'f') ADVANCE(635); + if (lookahead == 'g') ADVANCE(896); + if (lookahead == 'i') ADVANCE(724); + if (lookahead == 'l') ADVANCE(637); + if (lookahead == 'm') ADVANCE(888); + if (lookahead == 'n') ADVANCE(740); + if (lookahead == 'o') ADVANCE(825); + if (lookahead == 'p') ADVANCE(813); + if (lookahead == 'r') ADVANCE(693); + if (lookahead == 's') ADVANCE(699); + if (lookahead == 't') ADVANCE(737); + if (lookahead == 'u') ADVANCE(787); + if (lookahead == 'v') ADVANCE(641); + if (lookahead == 'w') ADVANCE(703); + if (lookahead == 'y') ADVANCE(758); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '^' || + lookahead == '|') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(16) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_4(lookahead)) ADVANCE(1209); + END_STATE(); + case 17: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == '<') ADVANCE(1320); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1323); + if (lookahead == '?') ADVANCE(583); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(856); + if (lookahead == 'b') ADVANCE(851); + if (lookahead == 'c') ADVANCE(653); + if (lookahead == 'd') ADVANCE(810); + if (lookahead == 'e') ADVANCE(797); + if (lookahead == 'f') ADVANCE(649); + if (lookahead == 'g') ADVANCE(896); + if (lookahead == 'i') ADVANCE(723); + if (lookahead == 'l') ADVANCE(637); + if (lookahead == 'm') ADVANCE(888); + if (lookahead == 'n') ADVANCE(740); + if (lookahead == 'o') ADVANCE(825); + if (lookahead == 'p') ADVANCE(813); + if (lookahead == 'r') ADVANCE(693); + if (lookahead == 's') ADVANCE(699); + if (lookahead == 't') ADVANCE(737); + if (lookahead == 'u') ADVANCE(787); + if (lookahead == 'v') ADVANCE(641); + if (lookahead == 'w') ADVANCE(703); + if (lookahead == 'y') ADVANCE(758); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '^' || + lookahead == '|') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(17) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_4(lookahead)) ADVANCE(1209); + END_STATE(); + case 18: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == '<') ADVANCE(1320); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1323); + if (lookahead == '?') ADVANCE(583); + if (lookahead == '@') ADVANCE(1490); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == '_') ADVANCE(784); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(856); + if (lookahead == 'b') ADVANCE(851); + if (lookahead == 'c') ADVANCE(775); + if (lookahead == 'd') ADVANCE(811); + if (lookahead == 'e') ADVANCE(797); + if (lookahead == 'f') ADVANCE(636); + if (lookahead == 'g') ADVANCE(717); + if (lookahead == 'i') ADVANCE(725); + if (lookahead == 'l') ADVANCE(637); + if (lookahead == 'm') ADVANCE(888); + if (lookahead == 'n') ADVANCE(740); + if (lookahead == 'r') ADVANCE(696); + if (lookahead == 's') ADVANCE(697); + if (lookahead == 't') ADVANCE(737); + if (lookahead == 'u') ADVANCE(787); + if (lookahead == 'v') ADVANCE(641); + if (lookahead == 'w') ADVANCE(703); + if (lookahead == 'y') ADVANCE(758); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '^' || + lookahead == '|') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(18) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (('A' <= lookahead && lookahead <= 'Z') || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_4(lookahead)) ADVANCE(1209); + END_STATE(); + case 19: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == '<') ADVANCE(1320); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1323); + if (lookahead == '?') ADVANCE(583); + if (lookahead == '@') ADVANCE(1490); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(856); + if (lookahead == 'b') ADVANCE(851); + if (lookahead == 'c') ADVANCE(775); + if (lookahead == 'd') ADVANCE(811); + if (lookahead == 'e') ADVANCE(797); + if (lookahead == 'f') ADVANCE(636); + if (lookahead == 'g') ADVANCE(896); + if (lookahead == 'i') ADVANCE(725); + if (lookahead == 'l') ADVANCE(637); + if (lookahead == 'n') ADVANCE(741); + if (lookahead == 'r') ADVANCE(696); + if (lookahead == 's') ADVANCE(700); + if (lookahead == 't') ADVANCE(737); + if (lookahead == 'u') ADVANCE(787); + if (lookahead == 'v') ADVANCE(641); + if (lookahead == 'w') ADVANCE(703); + if (lookahead == 'y') ADVANCE(758); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '^' || + lookahead == '|') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(19) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_4(lookahead)) ADVANCE(1209); + END_STATE(); + case 20: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == '<') ADVANCE(1320); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1323); + if (lookahead == '?') ADVANCE(583); + if (lookahead == '@') ADVANCE(1490); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(856); + if (lookahead == 'b') ADVANCE(851); + if (lookahead == 'c') ADVANCE(775); + if (lookahead == 'd') ADVANCE(811); + if (lookahead == 'e') ADVANCE(797); + if (lookahead == 'f') ADVANCE(636); + if (lookahead == 'g') ADVANCE(896); + if (lookahead == 'i') ADVANCE(726); + if (lookahead == 'l') ADVANCE(637); + if (lookahead == 'n') ADVANCE(741); + if (lookahead == 'r') ADVANCE(696); + if (lookahead == 's') ADVANCE(700); + if (lookahead == 't') ADVANCE(737); + if (lookahead == 'u') ADVANCE(787); + if (lookahead == 'v') ADVANCE(641); + if (lookahead == 'w') ADVANCE(703); + if (lookahead == 'y') ADVANCE(758); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '^' || + lookahead == '|') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(20) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_4(lookahead)) ADVANCE(1209); + END_STATE(); + case 21: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == '<') ADVANCE(1320); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1323); + if (lookahead == '?') ADVANCE(583); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == '_') ADVANCE(1493); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1150); + if (lookahead == 'f') ADVANCE(931); + if (lookahead == 'i') ADVANCE(1140); + if (lookahead == 'l') ADVANCE(992); + if (lookahead == 'n') ADVANCE(1019); + if (lookahead == 's') ADVANCE(984); + if (lookahead == 't') ADVANCE(1120); + if (lookahead == 'v') ADVANCE(928); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '^' || + lookahead == '|') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(21) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (aux_sym_simple_identifier_token1_character_set_2(lookahead)) ADVANCE(1209); + END_STATE(); + case 22: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == '<') ADVANCE(1320); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1323); + if (lookahead == '?') ADVANCE(583); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == '_') ADVANCE(1493); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1150); + if (lookahead == 'f') ADVANCE(931); + if (lookahead == 'i') ADVANCE(1140); + if (lookahead == 'n') ADVANCE(1019); + if (lookahead == 's') ADVANCE(984); + if (lookahead == 't') ADVANCE(1120); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '^' || + lookahead == '|') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(22) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (aux_sym_simple_identifier_token1_character_set_2(lookahead)) ADVANCE(1209); + END_STATE(); + case 23: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(161); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == '<') ADVANCE(1320); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1323); + if (lookahead == '?') ADVANCE(583); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1150); + if (lookahead == 'f') ADVANCE(931); + if (lookahead == 'g') ADVANCE(995); + if (lookahead == 'n') ADVANCE(1019); + if (lookahead == 's') ADVANCE(972); + if (lookahead == 't') ADVANCE(1120); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '^' || + lookahead == '|') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(23) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 24: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(111); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == '<') ADVANCE(1320); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1323); + if (lookahead == '?') ADVANCE(583); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1150); + if (lookahead == 'c') ADVANCE(914); + if (lookahead == 'f') ADVANCE(931); + if (lookahead == 'l') ADVANCE(992); + if (lookahead == 'n') ADVANCE(1019); + if (lookahead == 's') ADVANCE(984); + if (lookahead == 't') ADVANCE(1120); + if (lookahead == 'v') ADVANCE(928); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '^' || + lookahead == '|') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(24) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 25: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1398); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == '*') ADVANCE(1394); + if (lookahead == '+') ADVANCE(1389); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1391); + if (lookahead == '.') ADVANCE(89); + if (lookahead == '/') ADVANCE(1396); + if (lookahead == '0') ADVANCE(1224); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(1381); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1297); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'i') ADVANCE(1140); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(26) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1224); + if (aux_sym_simple_identifier_token1_character_set_1(lookahead)) ADVANCE(1209); + END_STATE(); + case 26: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1398); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == '*') ADVANCE(1394); + if (lookahead == '+') ADVANCE(1389); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1391); + if (lookahead == '.') ADVANCE(89); + if (lookahead == '/') ADVANCE(1396); + if (lookahead == '0') ADVANCE(1224); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(1381); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1295); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'i') ADVANCE(1140); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(26) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1224); + if (aux_sym_simple_identifier_token1_character_set_1(lookahead)) ADVANCE(1209); + END_STATE(); + case 27: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1398); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1394); + if (lookahead == '+') ADVANCE(1389); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1391); + if (lookahead == '.') ADVANCE(89); + if (lookahead == '/') ADVANCE(1396); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(1381); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1297); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'i') ADVANCE(1075); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(28) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 28: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1398); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1394); + if (lookahead == '+') ADVANCE(1389); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1391); + if (lookahead == '.') ADVANCE(89); + if (lookahead == '/') ADVANCE(1396); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(1381); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1295); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'i') ADVANCE(1075); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(28) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 29: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1398); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1394); + if (lookahead == '+') ADVANCE(1389); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1391); + if (lookahead == '.') ADVANCE(89); + if (lookahead == '/') ADVANCE(1396); + if (lookahead == ';') ADVANCE(1461); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(1381); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1297); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1142); + if (lookahead == 'c') ADVANCE(913); + if (lookahead == 'd') ADVANCE(1003); + if (lookahead == 'e') ADVANCE(1079); + if (lookahead == 'f') ADVANCE(1014); + if (lookahead == 'i') ADVANCE(1060); + if (lookahead == 'l') ADVANCE(916); + if (lookahead == 'm') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(1100); + if (lookahead == 'o') ADVANCE(1110); + if (lookahead == 'p') ADVANCE(1096); + if (lookahead == 'r') ADVANCE(961); + if (lookahead == 's') ADVANCE(1157); + if (lookahead == 't') ADVANCE(1205); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'v') ADVANCE(928); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(30) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 30: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1398); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1394); + if (lookahead == '+') ADVANCE(1389); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1391); + if (lookahead == '.') ADVANCE(89); + if (lookahead == '/') ADVANCE(1396); + if (lookahead == ';') ADVANCE(1461); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(1381); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1295); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1142); + if (lookahead == 'c') ADVANCE(913); + if (lookahead == 'd') ADVANCE(1003); + if (lookahead == 'e') ADVANCE(1079); + if (lookahead == 'f') ADVANCE(1014); + if (lookahead == 'i') ADVANCE(1060); + if (lookahead == 'l') ADVANCE(916); + if (lookahead == 'm') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(1100); + if (lookahead == 'o') ADVANCE(1110); + if (lookahead == 'p') ADVANCE(1096); + if (lookahead == 'r') ADVANCE(961); + if (lookahead == 's') ADVANCE(1157); + if (lookahead == 't') ADVANCE(1205); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'v') ADVANCE(928); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(30) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 31: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1398); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1394); + if (lookahead == '+') ADVANCE(1389); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1391); + if (lookahead == '.') ADVANCE(89); + if (lookahead == '/') ADVANCE(1396); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(1381); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1297); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'c') ADVANCE(913); + if (lookahead == 'd') ADVANCE(1203); + if (lookahead == 'f') ADVANCE(932); + if (lookahead == 'i') ADVANCE(1065); + if (lookahead == 'l') ADVANCE(917); + if (lookahead == 'm') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(1100); + if (lookahead == 'o') ADVANCE(1110); + if (lookahead == 'p') ADVANCE(1095); + if (lookahead == 'r') ADVANCE(961); + if (lookahead == 's') ADVANCE(1166); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(32) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 32: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1398); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1394); + if (lookahead == '+') ADVANCE(1389); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1391); + if (lookahead == '.') ADVANCE(89); + if (lookahead == '/') ADVANCE(1396); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(1381); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1295); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'c') ADVANCE(913); + if (lookahead == 'd') ADVANCE(1203); + if (lookahead == 'f') ADVANCE(932); + if (lookahead == 'i') ADVANCE(1065); + if (lookahead == 'l') ADVANCE(917); + if (lookahead == 'm') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(1100); + if (lookahead == 'o') ADVANCE(1110); + if (lookahead == 'p') ADVANCE(1095); + if (lookahead == 'r') ADVANCE(961); + if (lookahead == 's') ADVANCE(1166); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(32) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 33: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(1291); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1297); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'i') ADVANCE(1140); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(34) + if (aux_sym_simple_identifier_token1_character_set_1(lookahead)) ADVANCE(1209); + END_STATE(); + case 34: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(1291); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1295); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'i') ADVANCE(1140); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(34) + if (aux_sym_simple_identifier_token1_character_set_1(lookahead)) ADVANCE(1209); + END_STATE(); + case 35: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(1291); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == ';') ADVANCE(1461); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1297); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1142); + if (lookahead == 'c') ADVANCE(913); + if (lookahead == 'd') ADVANCE(1003); + if (lookahead == 'e') ADVANCE(1079); + if (lookahead == 'f') ADVANCE(1014); + if (lookahead == 'i') ADVANCE(1060); + if (lookahead == 'l') ADVANCE(916); + if (lookahead == 'm') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(1100); + if (lookahead == 'o') ADVANCE(1110); + if (lookahead == 'p') ADVANCE(1096); + if (lookahead == 'r') ADVANCE(961); + if (lookahead == 's') ADVANCE(1157); + if (lookahead == 't') ADVANCE(1205); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'v') ADVANCE(928); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(36) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 36: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(1291); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == ';') ADVANCE(1461); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1295); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1142); + if (lookahead == 'c') ADVANCE(913); + if (lookahead == 'd') ADVANCE(1003); + if (lookahead == 'e') ADVANCE(1079); + if (lookahead == 'f') ADVANCE(1014); + if (lookahead == 'i') ADVANCE(1060); + if (lookahead == 'l') ADVANCE(916); + if (lookahead == 'm') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(1100); + if (lookahead == 'o') ADVANCE(1110); + if (lookahead == 'p') ADVANCE(1096); + if (lookahead == 'r') ADVANCE(961); + if (lookahead == 's') ADVANCE(1157); + if (lookahead == 't') ADVANCE(1205); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'v') ADVANCE(928); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(36) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 37: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(1291); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1297); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'c') ADVANCE(913); + if (lookahead == 'd') ADVANCE(1203); + if (lookahead == 'f') ADVANCE(932); + if (lookahead == 'i') ADVANCE(1065); + if (lookahead == 'l') ADVANCE(917); + if (lookahead == 'm') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(1100); + if (lookahead == 'o') ADVANCE(1110); + if (lookahead == 'p') ADVANCE(1095); + if (lookahead == 'r') ADVANCE(961); + if (lookahead == 's') ADVANCE(1166); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(38) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 38: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(1291); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1295); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'c') ADVANCE(913); + if (lookahead == 'd') ADVANCE(1203); + if (lookahead == 'f') ADVANCE(932); + if (lookahead == 'i') ADVANCE(1065); + if (lookahead == 'l') ADVANCE(917); + if (lookahead == 'm') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(1100); + if (lookahead == 'o') ADVANCE(1110); + if (lookahead == 'p') ADVANCE(1095); + if (lookahead == 'r') ADVANCE(961); + if (lookahead == 's') ADVANCE(1166); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(38) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 39: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(89); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '`') ADVANCE(110); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '?' || + lookahead == '\\') ADVANCE(583); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(39) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 40: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '%') ADVANCE(1398); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == '*') ADVANCE(1394); + if (lookahead == '+') ADVANCE(1389); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1391); + if (lookahead == '.') ADVANCE(1291); + if (lookahead == '/') ADVANCE(1396); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == ';') ADVANCE(1461); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(1381); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1295); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == 'a') ADVANCE(489); + if (lookahead == 'c') ADVANCE(118); + if (lookahead == 'd') ADVANCE(266); + if (lookahead == 'e') ADVANCE(386); + if (lookahead == 'f') ADVANCE(141); + if (lookahead == 'i') ADVANCE(369); + if (lookahead == 'l') ADVANCE(113); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(418); + if (lookahead == 'o') ADVANCE(442); + if (lookahead == 'p') ADVANCE(417); + if (lookahead == 'r') ADVANCE(223); + if (lookahead == 's') ADVANCE(506); + if (lookahead == 't') ADVANCE(578); + if (lookahead == 'u') ADVANCE(388); + if (lookahead == 'v') ADVANCE(123); + if (lookahead == 'w') ADVANCE(231); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(40) + END_STATE(); + case 41: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '%') ADVANCE(1398); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1394); + if (lookahead == '+') ADVANCE(1389); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1391); + if (lookahead == '.') ADVANCE(89); + if (lookahead == '/') ADVANCE(1396); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(1381); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1297); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == 'i') ADVANCE(384); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(42) + END_STATE(); + case 42: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '%') ADVANCE(1398); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1394); + if (lookahead == '+') ADVANCE(1389); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1391); + if (lookahead == '.') ADVANCE(89); + if (lookahead == '/') ADVANCE(1396); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(1381); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1295); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == 'i') ADVANCE(384); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(42) + END_STATE(); + case 43: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(1291); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == ';') ADVANCE(1461); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1297); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == 'a') ADVANCE(489); + if (lookahead == 'c') ADVANCE(118); + if (lookahead == 'd') ADVANCE(266); + if (lookahead == 'e') ADVANCE(386); + if (lookahead == 'f') ADVANCE(141); + if (lookahead == 'i') ADVANCE(369); + if (lookahead == 'l') ADVANCE(113); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(418); + if (lookahead == 'o') ADVANCE(442); + if (lookahead == 'p') ADVANCE(417); + if (lookahead == 'r') ADVANCE(223); + if (lookahead == 's') ADVANCE(249); + if (lookahead == 't') ADVANCE(578); + if (lookahead == 'u') ADVANCE(388); + if (lookahead == 'v') ADVANCE(123); + if (lookahead == 'w') ADVANCE(231); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(44) + END_STATE(); + case 44: + if (lookahead == '!') ADVANCE(80); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(1291); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == ';') ADVANCE(1461); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1295); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(583); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == 'a') ADVANCE(489); + if (lookahead == 'c') ADVANCE(118); + if (lookahead == 'd') ADVANCE(266); + if (lookahead == 'e') ADVANCE(386); + if (lookahead == 'f') ADVANCE(141); + if (lookahead == 'i') ADVANCE(369); + if (lookahead == 'l') ADVANCE(113); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(418); + if (lookahead == 'o') ADVANCE(442); + if (lookahead == 'p') ADVANCE(417); + if (lookahead == 'r') ADVANCE(223); + if (lookahead == 's') ADVANCE(249); + if (lookahead == 't') ADVANCE(578); + if (lookahead == 'u') ADVANCE(388); + if (lookahead == 'v') ADVANCE(123); + if (lookahead == 'w') ADVANCE(231); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(44) + END_STATE(); + case 45: + if (lookahead == '!') ADVANCE(1285); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '&') ADVANCE(1300); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '.') ADVANCE(1290); + if (lookahead == '/') ADVANCE(85); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == '<') ADVANCE(1318); + if (lookahead == '>') ADVANCE(1321); + if (lookahead == '?') ADVANCE(1296); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == 'i') ADVANCE(383); + if (lookahead == 'u') ADVANCE(1275); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(74) + END_STATE(); + case 46: + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(1247); + if (lookahead == '/') ADVANCE(1240); + if (lookahead == '\\') ADVANCE(1273); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(1239); + if (lookahead != 0) ADVANCE(1271); + END_STATE(); + case 47: + if (lookahead == '"') ADVANCE(1278); + END_STATE(); + case 48: + if (lookahead == '"') ADVANCE(1234); + if (lookahead == '#') ADVANCE(1247); + if (lookahead == '/') ADVANCE(1240); + if (lookahead == '\\') ADVANCE(1273); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(1239); + if (lookahead != 0) ADVANCE(1271); + END_STATE(); + case 49: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == '*') ADVANCE(1393); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '0') ADVANCE(1224); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == '<') ADVANCE(1318); + if (lookahead == '>') ADVANCE(1321); + if (lookahead == '@') ADVANCE(1490); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == '`') ADVANCE(110); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(49) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1224); + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 50: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '_') ADVANCE(1493); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'i') ADVANCE(1081); + if (lookahead == 's') ADVANCE(1099); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(50) + if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1209); + END_STATE(); + case 51: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '@') ADVANCE(1490); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '_') ADVANCE(1493); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 's') ADVANCE(1099); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(51) + if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1209); + END_STATE(); + case 52: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '<') ADVANCE(1318); + if (lookahead == '?') ADVANCE(1294); + if (lookahead == '@') ADVANCE(1490); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 's') ADVANCE(985); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(52) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 53: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '<') ADVANCE(1318); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1151); + if (lookahead == 'c') ADVANCE(913); + if (lookahead == 'd') ADVANCE(1203); + if (lookahead == 'e') ADVANCE(1079); + if (lookahead == 'f') ADVANCE(1014); + if (lookahead == 'i') ADVANCE(1073); + if (lookahead == 'l') ADVANCE(916); + if (lookahead == 'm') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(1100); + if (lookahead == 'o') ADVANCE(1110); + if (lookahead == 'p') ADVANCE(1095); + if (lookahead == 'r') ADVANCE(961); + if (lookahead == 's') ADVANCE(981); + if (lookahead == 't') ADVANCE(1205); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'v') ADVANCE(928); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(53) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 54: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '<') ADVANCE(1318); + if (lookahead == '@') ADVANCE(1490); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1151); + if (lookahead == 'c') ADVANCE(1051); + if (lookahead == 'e') ADVANCE(1079); + if (lookahead == 'f') ADVANCE(1039); + if (lookahead == 'i') ADVANCE(1077); + if (lookahead == 'l') ADVANCE(916); + if (lookahead == 's') ADVANCE(983); + if (lookahead == 't') ADVANCE(1205); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'v') ADVANCE(928); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(54) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 55: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '<') ADVANCE(1318); + if (lookahead == '@') ADVANCE(1490); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 's') ADVANCE(1099); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(55) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 56: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'i') ADVANCE(1081); + if (lookahead == 's') ADVANCE(1099); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(56) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 57: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '_') ADVANCE(1493); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1196); + if (lookahead == 'c') ADVANCE(914); + if (lookahead == 'i') ADVANCE(1140); + if (lookahead == 'l') ADVANCE(992); + if (lookahead == 't') ADVANCE(1126); + if (lookahead == 'v') ADVANCE(928); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(57) + if (aux_sym_simple_identifier_token1_character_set_2(lookahead)) ADVANCE(1209); + END_STATE(); + case 58: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '_') ADVANCE(1493); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1196); + if (lookahead == 'c') ADVANCE(914); + if (lookahead == 'i') ADVANCE(1140); + if (lookahead == 'l') ADVANCE(992); + if (lookahead == 'v') ADVANCE(928); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(58) + if (aux_sym_simple_identifier_token1_character_set_2(lookahead)) ADVANCE(1209); + END_STATE(); + case 59: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '_') ADVANCE(1493); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'c') ADVANCE(914); + if (lookahead == 'i') ADVANCE(1140); + if (lookahead == 'l') ADVANCE(992); + if (lookahead == 'v') ADVANCE(928); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(59) + if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1209); + END_STATE(); + case 60: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '_') ADVANCE(1493); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'i') ADVANCE(1140); + if (lookahead == 'l') ADVANCE(992); + if (lookahead == 'v') ADVANCE(928); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(60) + if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1209); + END_STATE(); + case 61: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '_') ADVANCE(1493); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'i') ADVANCE(1140); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(61) + if (aux_sym_simple_identifier_token1_character_set_5(lookahead)) ADVANCE(1209); + END_STATE(); + case 62: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '/') ADVANCE(85); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'i') ADVANCE(1076); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(62) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 63: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1142); + if (lookahead == 'c') ADVANCE(913); + if (lookahead == 'd') ADVANCE(1003); + if (lookahead == 'e') ADVANCE(1079); + if (lookahead == 'f') ADVANCE(1014); + if (lookahead == 'i') ADVANCE(1061); + if (lookahead == 'l') ADVANCE(916); + if (lookahead == 'm') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(1100); + if (lookahead == 'o') ADVANCE(1110); + if (lookahead == 'p') ADVANCE(1097); + if (lookahead == 'r') ADVANCE(961); + if (lookahead == 's') ADVANCE(1157); + if (lookahead == 't') ADVANCE(1205); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'v') ADVANCE(928); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '{') ADVANCE(590); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(63) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 64: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1142); + if (lookahead == 'c') ADVANCE(1050); + if (lookahead == 'd') ADVANCE(1203); + if (lookahead == 'e') ADVANCE(1079); + if (lookahead == 'f') ADVANCE(1014); + if (lookahead == 'i') ADVANCE(1061); + if (lookahead == 'l') ADVANCE(916); + if (lookahead == 'm') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(1100); + if (lookahead == 'o') ADVANCE(1110); + if (lookahead == 'p') ADVANCE(1097); + if (lookahead == 'r') ADVANCE(961); + if (lookahead == 's') ADVANCE(1158); + if (lookahead == 't') ADVANCE(1205); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'v') ADVANCE(928); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(64) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 65: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(1142); + if (lookahead == 'c') ADVANCE(1050); + if (lookahead == 'd') ADVANCE(1003); + if (lookahead == 'e') ADVANCE(1079); + if (lookahead == 'f') ADVANCE(1014); + if (lookahead == 'i') ADVANCE(1061); + if (lookahead == 'l') ADVANCE(916); + if (lookahead == 'm') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(1100); + if (lookahead == 'o') ADVANCE(1110); + if (lookahead == 'p') ADVANCE(1097); + if (lookahead == 'r') ADVANCE(961); + if (lookahead == 's') ADVANCE(1157); + if (lookahead == 't') ADVANCE(1205); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'v') ADVANCE(928); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(65) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 66: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'c') ADVANCE(913); + if (lookahead == 'd') ADVANCE(1203); + if (lookahead == 'f') ADVANCE(1015); + if (lookahead == 'i') ADVANCE(1066); + if (lookahead == 'l') ADVANCE(917); + if (lookahead == 'm') ADVANCE(1182); + if (lookahead == 'n') ADVANCE(1100); + if (lookahead == 'o') ADVANCE(1110); + if (lookahead == 'p') ADVANCE(1095); + if (lookahead == 'r') ADVANCE(961); + if (lookahead == 's') ADVANCE(1166); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(66) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 67: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'c') ADVANCE(1051); + if (lookahead == 'e') ADVANCE(1080); + if (lookahead == 'f') ADVANCE(1191); + if (lookahead == 'l') ADVANCE(992); + if (lookahead == 'p') ADVANCE(1131); + if (lookahead == 's') ADVANCE(1170); + if (lookahead == 't') ADVANCE(1205); + if (lookahead == 'v') ADVANCE(928); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(67) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 68: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'f') ADVANCE(1191); + if (lookahead == 'i') ADVANCE(1093); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(68) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 69: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'f') ADVANCE(931); + if (lookahead == 't') ADVANCE(1129); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(69) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 70: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'l') ADVANCE(992); + if (lookahead == 'v') ADVANCE(928); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(70) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 71: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 's') ADVANCE(985); + if (lookahead == 'u') ADVANCE(1067); + if (lookahead == 'w') ADVANCE(989); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(71) + if (aux_sym_simple_identifier_token1_character_set_3(lookahead)) ADVANCE(1209); + END_STATE(); + case 72: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '&') ADVANCE(1300); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '.') ADVANCE(1290); + if (lookahead == '/') ADVANCE(85); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == '<') ADVANCE(1318); + if (lookahead == '?') ADVANCE(1294); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == 'a') ADVANCE(489); + if (lookahead == 'c') ADVANCE(118); + if (lookahead == 'd') ADVANCE(266); + if (lookahead == 'e') ADVANCE(386); + if (lookahead == 'f') ADVANCE(141); + if (lookahead == 'i') ADVANCE(368); + if (lookahead == 'l') ADVANCE(113); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(418); + if (lookahead == 'o') ADVANCE(442); + if (lookahead == 'p') ADVANCE(417); + if (lookahead == 'r') ADVANCE(223); + if (lookahead == 's') ADVANCE(506); + if (lookahead == 't') ADVANCE(578); + if (lookahead == 'u') ADVANCE(388); + if (lookahead == 'v') ADVANCE(123); + if (lookahead == 'w') ADVANCE(231); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(72) + END_STATE(); + case 73: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '&') ADVANCE(1300); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '.') ADVANCE(1290); + if (lookahead == '/') ADVANCE(85); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == '<') ADVANCE(1318); + if (lookahead == '?') ADVANCE(1294); + if (lookahead == 'i') ADVANCE(383); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(73) + END_STATE(); + case 74: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '&') ADVANCE(1300); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '.') ADVANCE(1290); + if (lookahead == '/') ADVANCE(85); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == '<') ADVANCE(1318); + if (lookahead == '>') ADVANCE(1321); + if (lookahead == '?') ADVANCE(1294); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == 'i') ADVANCE(383); + if (lookahead == 'u') ADVANCE(1275); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(74) + END_STATE(); + case 75: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '/') ADVANCE(85); + if (lookahead == '<') ADVANCE(1318); + if (lookahead == '@') ADVANCE(1490); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '_') ADVANCE(372); + if (lookahead == 'a') ADVANCE(496); + if (lookahead == 'c') ADVANCE(349); + if (lookahead == 'e') ADVANCE(386); + if (lookahead == 'f') ADVANCE(328); + if (lookahead == 'g') ADVANCE(252); + if (lookahead == 'i') ADVANCE(385); + if (lookahead == 'l') ADVANCE(113); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(418); + if (lookahead == 's') ADVANCE(255); + if (lookahead == 't') ADVANCE(578); + if (lookahead == 'u') ADVANCE(388); + if (lookahead == 'v') ADVANCE(123); + if (lookahead == 'w') ADVANCE(231); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(75) + END_STATE(); + case 76: + if (lookahead == '#') ADVANCE(196); + if (lookahead == '.') ADVANCE(89); + if (lookahead == '/') ADVANCE(83); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(76) + if (lookahead == '&' || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '\\') ADVANCE(583); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(81); + END_STATE(); + case 77: + if (lookahead == '#') ADVANCE(77); + if (lookahead == '(') ADVANCE(1280); + END_STATE(); + case 78: + if (lookahead == ')') ADVANCE(1550); + END_STATE(); + case 79: + if (lookahead == ')') ADVANCE(1551); + END_STATE(); + case 80: + if (lookahead == '.') ADVANCE(1312); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '=') ADVANCE(1382); + if (lookahead == '&' || + lookahead == '/' || + lookahead == '>' || + lookahead == '?') ADVANCE(1309); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1308); + END_STATE(); + case 81: + if (lookahead == '.') ADVANCE(1312); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '&' || + lookahead == '/' || + ('=' <= lookahead && lookahead <= '?')) ADVANCE(1309); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1308); + END_STATE(); + case 82: + if (lookahead == '.') ADVANCE(1313); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1309); + END_STATE(); + case 83: + if (lookahead == '.') ADVANCE(1314); + if (lookahead == '/') ADVANCE(629); + if (lookahead == '<') ADVANCE(84); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1310); + END_STATE(); + case 84: + if (lookahead == '.') ADVANCE(1314); + if (lookahead == '<') ADVANCE(84); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1310); + END_STATE(); + case 85: + if (lookahead == '/') ADVANCE(632); + END_STATE(); + case 86: + if (lookahead == '/') ADVANCE(632); + if (lookahead == '=') ADVANCE(1376); + END_STATE(); + case 87: + if (lookahead == ':') ADVANCE(1306); + END_STATE(); + case 88: + if (lookahead == ':') ADVANCE(1307); + END_STATE(); + case 89: + if (lookahead == '<') ADVANCE(91); + if (lookahead == '&' || + lookahead == '/' || + ('=' <= lookahead && lookahead <= '?')) ADVANCE(1313); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '.' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1312); + END_STATE(); + case 90: + if (lookahead == '<') ADVANCE(91); + if (lookahead == '&' || + lookahead == '/' || + ('=' <= lookahead && lookahead <= '?')) ADVANCE(1313); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '.' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1312); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1219); + END_STATE(); + case 91: + if (lookahead == '<') ADVANCE(91); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1313); + END_STATE(); + case 92: + if (lookahead == '<') ADVANCE(92); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '.' || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1314); + END_STATE(); + case 93: + if (lookahead == '=') ADVANCE(1316); + if (lookahead == '.' || + lookahead == '<') ADVANCE(583); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + lookahead == '>' || + lookahead == '?' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1317); + END_STATE(); + case 94: + if (lookahead == '=') ADVANCE(1378); + END_STATE(); + case 95: + if (lookahead == '=') ADVANCE(1374); + END_STATE(); + case 96: + if (lookahead == '=') ADVANCE(1370); + END_STATE(); + case 97: + if (lookahead == '=') ADVANCE(1372); + END_STATE(); + case 98: + if (lookahead == 'D') ADVANCE(1328); + END_STATE(); + case 99: + if (lookahead == 'L') ADVANCE(436); + END_STATE(); + case 100: + if (lookahead == 'L') ADVANCE(331); + END_STATE(); + case 101: + if (lookahead == 'L') ADVANCE(333); + END_STATE(); + case 102: + if (lookahead == 'P') ADVANCE(142); + END_STATE(); + case 103: + if (lookahead == '_') ADVANCE(103); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1224); + END_STATE(); + case 104: + if (lookahead == '_') ADVANCE(104); + if (lookahead == '0' || + lookahead == '1') ADVANCE(1227); + END_STATE(); + case 105: + if (lookahead == '_') ADVANCE(105); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1226); + END_STATE(); + case 106: + if (lookahead == '_') ADVANCE(106); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1225); + END_STATE(); + case 107: + if (lookahead == '_') ADVANCE(107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1222); + END_STATE(); + case 108: + if (lookahead == '_') ADVANCE(108); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1219); + END_STATE(); + case 109: + if (lookahead == '_') ADVANCE(109); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1220); + END_STATE(); + case 110: + if (lookahead == '`') ADVANCE(1211); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') ADVANCE(110); + END_STATE(); + case 111: + if (lookahead == 'a') ADVANCE(563); + if (lookahead == 'c') ADVANCE(416); + if (lookahead == 'd') ADVANCE(494); + if (lookahead == 'e') ADVANCE(364); + if (lookahead == 'f') ADVANCE(299); + if (lookahead == 'i') ADVANCE(272); + if (lookahead == 'k') ADVANCE(225); + if (lookahead == 'l') ADVANCE(303); + if (lookahead == 's') ADVANCE(257); + if (lookahead == 'w') ADVANCE(126); + END_STATE(); + case 112: + if (lookahead == 'a') ADVANCE(336); + if (lookahead == 'i') ADVANCE(351); + if (lookahead == 'o') ADVANCE(453); + if (lookahead == 'u') ADVANCE(387); + END_STATE(); + case 113: + if (lookahead == 'a') ADVANCE(580); + if (lookahead == 'e') ADVANCE(508); + END_STATE(); + case 114: + if (lookahead == 'a') ADVANCE(334); + END_STATE(); + case 115: + if (lookahead == 'a') ADVANCE(283); + END_STATE(); + case 116: + if (lookahead == 'a') ADVANCE(335); + END_STATE(); + case 117: + if (lookahead == 'a') ADVANCE(498); + if (lookahead == 'l') ADVANCE(124); + if (lookahead == 'o') ADVANCE(375); + END_STATE(); + case 118: + if (lookahead == 'a') ADVANCE(498); + if (lookahead == 'l') ADVANCE(124); + if (lookahead == 'o') ADVANCE(407); + END_STATE(); + case 119: + if (lookahead == 'a') ADVANCE(470); + if (lookahead == 'o') ADVANCE(500); + if (lookahead == 'r') ADVANCE(201); + if (lookahead == 'u') ADVANCE(157); + END_STATE(); + case 120: + if (lookahead == 'a') ADVANCE(450); + END_STATE(); + case 121: + if (lookahead == 'a') ADVANCE(373); + END_STATE(); + case 122: + if (lookahead == 'a') ADVANCE(276); + END_STATE(); + case 123: + if (lookahead == 'a') ADVANCE(454); + END_STATE(); + case 124: + if (lookahead == 'a') ADVANCE(499); + END_STATE(); + case 125: + if (lookahead == 'a') ADVANCE(366); + END_STATE(); + case 126: + if (lookahead == 'a') ADVANCE(469); + END_STATE(); + case 127: + if (lookahead == 'a') ADVANCE(463); + END_STATE(); + case 128: + if (lookahead == 'a') ADVANCE(341); + END_STATE(); + case 129: + if (lookahead == 'a') ADVANCE(367); + END_STATE(); + case 130: + if (lookahead == 'a') ADVANCE(537); + if (lookahead == 'r') ADVANCE(557); + END_STATE(); + case 131: + if (lookahead == 'a') ADVANCE(493); + END_STATE(); + case 132: + if (lookahead == 'a') ADVANCE(343); + END_STATE(); + case 133: + if (lookahead == 'a') ADVANCE(344); + END_STATE(); + case 134: + if (lookahead == 'a') ADVANCE(539); + END_STATE(); + case 135: + if (lookahead == 'a') ADVANCE(346); + END_STATE(); + case 136: + if (lookahead == 'a') ADVANCE(396); + END_STATE(); + case 137: + if (lookahead == 'a') ADVANCE(347); + END_STATE(); + case 138: + if (lookahead == 'a') ADVANCE(348); + END_STATE(); + case 139: + if (lookahead == 'a') ADVANCE(514); + END_STATE(); + case 140: + if (lookahead == 'a') ADVANCE(360); + if (lookahead == 'i') ADVANCE(351); + if (lookahead == 'o') ADVANCE(453); + if (lookahead == 'u') ADVANCE(387); + END_STATE(); + case 141: + if (lookahead == 'a') ADVANCE(360); + if (lookahead == 'i') ADVANCE(351); + if (lookahead == 'u') ADVANCE(387); + END_STATE(); + case 142: + if (lookahead == 'a') ADVANCE(523); + END_STATE(); + case 143: + if (lookahead == 'a') ADVANCE(524); + END_STATE(); + case 144: + if (lookahead == 'a') ADVANCE(529); + END_STATE(); + case 145: + if (lookahead == 'a') ADVANCE(160); + END_STATE(); + case 146: + if (lookahead == 'a') ADVANCE(310); + END_STATE(); + case 147: + if (lookahead == 'a') ADVANCE(479); + END_STATE(); + case 148: + if (lookahead == 'a') ADVANCE(306); + END_STATE(); + case 149: + if (lookahead == 'a') ADVANCE(277); + END_STATE(); + case 150: + if (lookahead == 'a') ADVANCE(538); + END_STATE(); + case 151: + if (lookahead == 'a') ADVANCE(359); + END_STATE(); + case 152: + if (lookahead == 'a') ADVANCE(530); + END_STATE(); + case 153: + if (lookahead == 'a') ADVANCE(532); + END_STATE(); + case 154: + if (lookahead == 'a') ADVANCE(533); + END_STATE(); + case 155: + if (lookahead == 'a') ADVANCE(542); + END_STATE(); + case 156: + if (lookahead == 'a') ADVANCE(541); + END_STATE(); + case 157: + if (lookahead == 'b') ADVANCE(352); + END_STATE(); + case 158: + if (lookahead == 'b') ADVANCE(497); + END_STATE(); + case 159: + if (lookahead == 'b') ADVANCE(497); + if (lookahead == 'p') ADVANCE(245); + END_STATE(); + case 160: + if (lookahead == 'b') ADVANCE(362); + END_STATE(); + case 161: + if (lookahead == 'c') ADVANCE(416); + if (lookahead == 'd') ADVANCE(494); + if (lookahead == 'e') ADVANCE(364); + if (lookahead == 'f') ADVANCE(299); + if (lookahead == 'i') ADVANCE(272); + if (lookahead == 'k') ADVANCE(225); + if (lookahead == 'l') ADVANCE(303); + if (lookahead == 's') ADVANCE(257); + if (lookahead == 'w') ADVANCE(126); + END_STATE(); + case 162: + if (lookahead == 'c') ADVANCE(1449); + END_STATE(); + case 163: + if (lookahead == 'c') ADVANCE(1302); + END_STATE(); + case 164: + if (lookahead == 'c') ADVANCE(1506); + END_STATE(); + case 165: + if (lookahead == 'c') ADVANCE(1527); + END_STATE(); + case 166: + if (lookahead == 'c') ADVANCE(1530); + END_STATE(); + case 167: + if (lookahead == 'c') ADVANCE(286); + END_STATE(); + case 168: + if (lookahead == 'c') ADVANCE(353); + END_STATE(); + case 169: + if (lookahead == 'c') ADVANCE(243); + if (lookahead == 'p') ADVANCE(258); + if (lookahead == 'q') ADVANCE(560); + if (lookahead == 't') ADVANCE(558); + END_STATE(); + case 170: + if (lookahead == 'c') ADVANCE(120); + END_STATE(); + case 171: + if (lookahead == 'c') ADVANCE(332); + END_STATE(); + case 172: + if (lookahead == 'c') ADVANCE(535); + END_STATE(); + case 173: + if (lookahead == 'c') ADVANCE(515); + END_STATE(); + case 174: + if (lookahead == 'c') ADVANCE(233); + if (lookahead == 'f') ADVANCE(296); + END_STATE(); + case 175: + if (lookahead == 'c') ADVANCE(516); + END_STATE(); + case 176: + if (lookahead == 'c') ADVANCE(228); + END_STATE(); + case 177: + if (lookahead == 'c') ADVANCE(240); + END_STATE(); + case 178: + if (lookahead == 'c') ADVANCE(218); + END_STATE(); + case 179: + if (lookahead == 'c') ADVANCE(425); + END_STATE(); + case 180: + if (lookahead == 'c') ADVANCE(427); + END_STATE(); + case 181: + if (lookahead == 'c') ADVANCE(478); + END_STATE(); + case 182: + if (lookahead == 'c') ADVANCE(156); + END_STATE(); + case 183: + if (lookahead == 'c') ADVANCE(540); + END_STATE(); + case 184: + if (lookahead == 'd') ADVANCE(1352); + END_STATE(); + case 185: + if (lookahead == 'd') ADVANCE(1422); + END_STATE(); + case 186: + if (lookahead == 'd') ADVANCE(1547); + END_STATE(); + case 187: + if (lookahead == 'd') ADVANCE(1503); + END_STATE(); + case 188: + if (lookahead == 'd') ADVANCE(320); + if (lookahead == 'f') ADVANCE(293); + if (lookahead == 'i') ADVANCE(509); + if (lookahead == 'o') ADVANCE(554); + if (lookahead == 't') ADVANCE(242); + END_STATE(); + case 189: + if (lookahead == 'd') ADVANCE(320); + if (lookahead == 'i') ADVANCE(509); + END_STATE(); + case 190: + if (lookahead == 'd') ADVANCE(297); + END_STATE(); + case 191: + if (lookahead == 'd') ADVANCE(302); + END_STATE(); + case 192: + if (lookahead == 'd') ADVANCE(543); + END_STATE(); + case 193: + if (lookahead == 'd') ADVANCE(215); + END_STATE(); + case 194: + if (lookahead == 'd') ADVANCE(251); + END_STATE(); + case 195: + if (lookahead == 'd') ADVANCE(363); + END_STATE(); + case 196: + if (lookahead == 'e') ADVANCE(364); + if (lookahead == 'i') ADVANCE(271); + if (lookahead == 's') ADVANCE(415); + if (lookahead == 'w') ADVANCE(126); + END_STATE(); + case 197: + if (lookahead == 'e') ADVANCE(305); + if (lookahead == 'o') ADVANCE(1362); + if (lookahead == 'y') ADVANCE(397); + END_STATE(); + case 198: + if (lookahead == 'e') ADVANCE(169); + END_STATE(); + case 199: + if (lookahead == 'e') ADVANCE(339); + if (lookahead == 'o') ADVANCE(370); + if (lookahead == 't') ADVANCE(130); + if (lookahead == 'u') ADVANCE(159); + if (lookahead == 'w') ADVANCE(308); + END_STATE(); + case 200: + if (lookahead == 'e') ADVANCE(377); + if (lookahead == 't') ADVANCE(307); + END_STATE(); + case 201: + if (lookahead == 'e') ADVANCE(174); + if (lookahead == 'i') ADVANCE(562); + if (lookahead == 'o') ADVANCE(451); + END_STATE(); + case 202: + if (lookahead == 'e') ADVANCE(174); + if (lookahead == 'i') ADVANCE(562); + if (lookahead == 'o') ADVANCE(545); + END_STATE(); + case 203: + if (lookahead == 'e') ADVANCE(1292); + END_STATE(); + case 204: + if (lookahead == 'e') ADVANCE(1356); + END_STATE(); + case 205: + if (lookahead == 'e') ADVANCE(1298); + END_STATE(); + case 206: + if (lookahead == 'e') ADVANCE(1228); + END_STATE(); + case 207: + if (lookahead == 'e') ADVANCE(1558); + END_STATE(); + case 208: + if (lookahead == 'e') ADVANCE(1327); + END_STATE(); + case 209: + if (lookahead == 'e') ADVANCE(1330); + END_STATE(); + case 210: + if (lookahead == 'e') ADVANCE(1231); + END_STATE(); + case 211: + if (lookahead == 'e') ADVANCE(1410); + END_STATE(); + case 212: + if (lookahead == 'e') ADVANCE(1509); + END_STATE(); + case 213: + if (lookahead == 'e') ADVANCE(1418); + END_STATE(); + case 214: + if (lookahead == 'e') ADVANCE(1556); + END_STATE(); + case 215: + if (lookahead == 'e') ADVANCE(1497); + END_STATE(); + case 216: + if (lookahead == 'e') ADVANCE(1424); + END_STATE(); + case 217: + if (lookahead == 'e') ADVANCE(1333); + END_STATE(); + case 218: + if (lookahead == 'e') ADVANCE(1500); + END_STATE(); + case 219: + if (lookahead == 'e') ADVANCE(1515); + END_STATE(); + case 220: + if (lookahead == 'e') ADVANCE(1543); + END_STATE(); + case 221: + if (lookahead == 'e') ADVANCE(78); + END_STATE(); + case 222: + if (lookahead == 'e') ADVANCE(1487); + END_STATE(); + case 223: + if (lookahead == 'e') ADVANCE(452); + END_STATE(); + case 224: + if (lookahead == 'e') ADVANCE(447); + END_STATE(); + case 225: + if (lookahead == 'e') ADVANCE(573); + END_STATE(); + case 226: + if (lookahead == 'e') ADVANCE(507); + if (lookahead == 'u') ADVANCE(127); + END_STATE(); + case 227: + if (lookahead == 'e') ADVANCE(285); + END_STATE(); + case 228: + if (lookahead == 'e') ADVANCE(99); + END_STATE(); + case 229: + if (lookahead == 'e') ADVANCE(79); + END_STATE(); + case 230: + if (lookahead == 'e') ADVANCE(448); + END_STATE(); + case 231: + if (lookahead == 'e') ADVANCE(114); + END_STATE(); + case 232: + if (lookahead == 'e') ADVANCE(114); + if (lookahead == 'h') ADVANCE(325); + END_STATE(); + case 233: + if (lookahead == 'e') ADVANCE(194); + END_STATE(); + case 234: + if (lookahead == 'e') ADVANCE(186); + END_STATE(); + case 235: + if (lookahead == 'e') ADVANCE(116); + END_STATE(); + case 236: + if (lookahead == 'e') ADVANCE(350); + END_STATE(); + case 237: + if (lookahead == 'e') ADVANCE(187); + END_STATE(); + case 238: + if (lookahead == 'e') ADVANCE(471); + END_STATE(); + case 239: + if (lookahead == 'e') ADVANCE(192); + END_STATE(); + case 240: + if (lookahead == 'e') ADVANCE(284); + END_STATE(); + case 241: + if (lookahead == 'e') ADVANCE(400); + END_STATE(); + case 242: + if (lookahead == 'e') ADVANCE(486); + END_STATE(); + case 243: + if (lookahead == 'e') ADVANCE(294); + END_STATE(); + case 244: + if (lookahead == 'e') ADVANCE(406); + END_STATE(); + case 245: + if (lookahead == 'e') ADVANCE(455); + END_STATE(); + case 246: + if (lookahead == 'e') ADVANCE(151); + END_STATE(); + case 247: + if (lookahead == 'e') ADVANCE(458); + END_STATE(); + case 248: + if (lookahead == 'e') ADVANCE(464); + END_STATE(); + case 249: + if (lookahead == 'e') ADVANCE(338); + if (lookahead == 't') ADVANCE(130); + if (lookahead == 'u') ADVANCE(158); + END_STATE(); + case 250: + if (lookahead == 'e') ADVANCE(460); + END_STATE(); + case 251: + if (lookahead == 'e') ADVANCE(408); + END_STATE(); + case 252: + if (lookahead == 'e') ADVANCE(518); + END_STATE(); + case 253: + if (lookahead == 'e') ADVANCE(518); + if (lookahead == 'u') ADVANCE(127); + END_STATE(); + case 254: + if (lookahead == 'e') ADVANCE(519); + if (lookahead == 't') ADVANCE(130); + if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'w') ADVANCE(308); + END_STATE(); + case 255: + if (lookahead == 'e') ADVANCE(519); + if (lookahead == 't') ADVANCE(466); + END_STATE(); + case 256: + if (lookahead == 'e') ADVANCE(376); + if (lookahead == 't') ADVANCE(307); + END_STATE(); + case 257: + if (lookahead == 'e') ADVANCE(358); + if (lookahead == 'o') ADVANCE(553); + END_STATE(); + case 258: + if (lookahead == 'e') ADVANCE(139); + END_STATE(); + case 259: + if (lookahead == 'e') ADVANCE(480); + END_STATE(); + case 260: + if (lookahead == 'e') ADVANCE(183); + END_STATE(); + case 261: + if (lookahead == 'e') ADVANCE(481); + END_STATE(); + case 262: + if (lookahead == 'e') ADVANCE(175); + END_STATE(); + case 263: + if (lookahead == 'e') ADVANCE(482); + END_STATE(); + case 264: + if (lookahead == 'e') ADVANCE(483); + END_STATE(); + case 265: + if (lookahead == 'e') ADVANCE(304); + if (lookahead == 'o') ADVANCE(1362); + if (lookahead == 'y') ADVANCE(397); + END_STATE(); + case 266: + if (lookahead == 'e') ADVANCE(304); + if (lookahead == 'y') ADVANCE(397); + END_STATE(); + case 267: + if (lookahead == 'e') ADVANCE(411); + END_STATE(); + case 268: + if (lookahead == 'e') ADVANCE(101); + END_STATE(); + case 269: + if (lookahead == 'f') ADVANCE(1350); + if (lookahead == 'm') ADVANCE(444); + if (lookahead == 'n') ADVANCE(1341); + if (lookahead == 's') ADVANCE(1387); + END_STATE(); + case 270: + if (lookahead == 'f') ADVANCE(1350); + if (lookahead == 'm') ADVANCE(444); + if (lookahead == 'n') ADVANCE(188); + END_STATE(); + case 271: + if (lookahead == 'f') ADVANCE(1560); + END_STATE(); + case 272: + if (lookahead == 'f') ADVANCE(1560); + if (lookahead == 'm') ADVANCE(115); + END_STATE(); + case 273: + if (lookahead == 'f') ADVANCE(1344); + END_STATE(); + case 274: + if (lookahead == 'f') ADVANCE(576); + END_STATE(); + case 275: + if (lookahead == 'f') ADVANCE(298); + END_STATE(); + case 276: + if (lookahead == 'f') ADVANCE(221); + END_STATE(); + case 277: + if (lookahead == 'f') ADVANCE(229); + END_STATE(); + case 278: + if (lookahead == 'g') ADVANCE(1561); + END_STATE(); + case 279: + if (lookahead == 'g') ADVANCE(1521); + END_STATE(); + case 280: + if (lookahead == 'g') ADVANCE(1542); + END_STATE(); + case 281: + if (lookahead == 'g') ADVANCE(1524); + END_STATE(); + case 282: + if (lookahead == 'g') ADVANCE(289); + END_STATE(); + case 283: + if (lookahead == 'g') ADVANCE(268); + END_STATE(); + case 284: + if (lookahead == 'g') ADVANCE(475); + END_STATE(); + case 285: + if (lookahead == 'g') ADVANCE(152); + END_STATE(); + case 286: + if (lookahead == 'h') ADVANCE(1354); + END_STATE(); + case 287: + if (lookahead == 'h') ADVANCE(1364); + END_STATE(); + case 288: + if (lookahead == 'h') ADVANCE(1329); + END_STATE(); + case 289: + if (lookahead == 'h') ADVANCE(1359); + END_STATE(); + case 290: + if (lookahead == 'h') ADVANCE(136); + END_STATE(); + case 291: + if (lookahead == 'h') ADVANCE(467); + if (lookahead == 'r') ADVANCE(555); + if (lookahead == 'y') ADVANCE(449); + END_STATE(); + case 292: + if (lookahead == 'h') ADVANCE(472); + END_STATE(); + case 293: + if (lookahead == 'i') ADVANCE(569); + END_STATE(); + case 294: + if (lookahead == 'i') ADVANCE(565); + END_STATE(); + case 295: + if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'o') ADVANCE(389); + END_STATE(); + case 296: + if (lookahead == 'i') ADVANCE(570); + END_STATE(); + case 297: + if (lookahead == 'i') ADVANCE(271); + END_STATE(); + case 298: + if (lookahead == 'i') ADVANCE(571); + END_STATE(); + case 299: + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'u') ADVANCE(390); + END_STATE(); + case 300: + if (lookahead == 'i') ADVANCE(236); + END_STATE(); + case 301: + if (lookahead == 'i') ADVANCE(445); + END_STATE(); + case 302: + if (lookahead == 'i') ADVANCE(274); + END_STATE(); + case 303: + if (lookahead == 'i') ADVANCE(402); + END_STATE(); + case 304: + if (lookahead == 'i') ADVANCE(410); + END_STATE(); + case 305: + if (lookahead == 'i') ADVANCE(410); + if (lookahead == 'l') ADVANCE(227); + END_STATE(); + case 306: + if (lookahead == 'i') ADVANCE(357); + END_STATE(); + case 307: + if (lookahead == 'i') ADVANCE(437); + END_STATE(); + case 308: + if (lookahead == 'i') ADVANCE(525); + END_STATE(); + case 309: + if (lookahead == 'i') ADVANCE(432); + END_STATE(); + case 310: + if (lookahead == 'i') ADVANCE(510); + END_STATE(); + case 311: + if (lookahead == 'i') ADVANCE(395); + END_STATE(); + case 312: + if (lookahead == 'i') ADVANCE(164); + END_STATE(); + case 313: + if (lookahead == 'i') ADVANCE(165); + END_STATE(); + case 314: + if (lookahead == 'i') ADVANCE(166); + END_STATE(); + case 315: + if (lookahead == 'i') ADVANCE(512); + END_STATE(); + case 316: + if (lookahead == 'i') ADVANCE(391); + END_STATE(); + case 317: + if (lookahead == 'i') ADVANCE(392); + END_STATE(); + case 318: + if (lookahead == 'i') ADVANCE(394); + END_STATE(); + case 319: + if (lookahead == 'i') ADVANCE(398); + END_STATE(); + case 320: + if (lookahead == 'i') ADVANCE(488); + END_STATE(); + case 321: + if (lookahead == 'i') ADVANCE(131); + END_STATE(); + case 322: + if (lookahead == 'i') ADVANCE(193); + END_STATE(); + case 323: + if (lookahead == 'i') ADVANCE(433); + END_STATE(); + case 324: + if (lookahead == 'i') ADVANCE(484); + END_STATE(); + case 325: + if (lookahead == 'i') ADVANCE(361); + END_STATE(); + case 326: + if (lookahead == 'i') ADVANCE(434); + END_STATE(); + case 327: + if (lookahead == 'i') ADVANCE(531); + END_STATE(); + case 328: + if (lookahead == 'i') ADVANCE(399); + if (lookahead == 'u') ADVANCE(387); + END_STATE(); + case 329: + if (lookahead == 'i') ADVANCE(566); + END_STATE(); + case 330: + if (lookahead == 'i') ADVANCE(267); + END_STATE(); + case 331: + if (lookahead == 'i') ADVANCE(544); + END_STATE(); + case 332: + if (lookahead == 'i') ADVANCE(153); + END_STATE(); + case 333: + if (lookahead == 'i') ADVANCE(546); + END_STATE(); + case 334: + if (lookahead == 'k') ADVANCE(1544); + END_STATE(); + case 335: + if (lookahead == 'k') ADVANCE(1420); + END_STATE(); + case 336: + if (lookahead == 'l') ADVANCE(355); + END_STATE(); + case 337: + if (lookahead == 'l') ADVANCE(1216); + END_STATE(); + case 338: + if (lookahead == 'l') ADVANCE(273); + END_STATE(); + case 339: + if (lookahead == 'l') ADVANCE(273); + if (lookahead == 't') ADVANCE(1471); + END_STATE(); + case 340: + if (lookahead == 'l') ADVANCE(428); + END_STATE(); + case 341: + if (lookahead == 'l') ADVANCE(1536); + END_STATE(); + case 342: + if (lookahead == 'l') ADVANCE(1293); + END_STATE(); + case 343: + if (lookahead == 'l') ADVANCE(1512); + END_STATE(); + case 344: + if (lookahead == 'l') ADVANCE(1533); + END_STATE(); + case 345: + if (lookahead == 'l') ADVANCE(1440); + END_STATE(); + case 346: + if (lookahead == 'l') ADVANCE(1335); + END_STATE(); + case 347: + if (lookahead == 'l') ADVANCE(1334); + END_STATE(); + case 348: + if (lookahead == 'l') ADVANCE(1336); + END_STATE(); + case 349: + if (lookahead == 'l') ADVANCE(124); + END_STATE(); + case 350: + if (lookahead == 'l') ADVANCE(185); + END_STATE(); + case 351: + if (lookahead == 'l') ADVANCE(230); + if (lookahead == 'n') ADVANCE(128); + END_STATE(); + case 352: + if (lookahead == 'l') ADVANCE(312); + END_STATE(); + case 353: + if (lookahead == 'l') ADVANCE(422); + END_STATE(); + case 354: + if (lookahead == 'l') ADVANCE(521); + END_STATE(); + case 355: + if (lookahead == 'l') ADVANCE(521); + if (lookahead == 's') ADVANCE(210); + END_STATE(); + case 356: + if (lookahead == 'l') ADVANCE(208); + END_STATE(); + case 357: + if (lookahead == 'l') ADVANCE(145); + END_STATE(); + case 358: + if (lookahead == 'l') ADVANCE(260); + END_STATE(); + case 359: + if (lookahead == 'l') ADVANCE(321); + END_STATE(); + case 360: + if (lookahead == 'l') ADVANCE(354); + END_STATE(); + case 361: + if (lookahead == 'l') ADVANCE(211); + END_STATE(); + case 362: + if (lookahead == 'l') ADVANCE(216); + END_STATE(); + case 363: + if (lookahead == 'l') ADVANCE(217); + END_STATE(); + case 364: + if (lookahead == 'l') ADVANCE(502); + if (lookahead == 'n') ADVANCE(190); + if (lookahead == 'r') ADVANCE(487); + END_STATE(); + case 365: + if (lookahead == 'm') ADVANCE(1437); + END_STATE(); + case 366: + if (lookahead == 'm') ADVANCE(1554); + END_STATE(); + case 367: + if (lookahead == 'm') ADVANCE(1555); + END_STATE(); + case 368: + if (lookahead == 'm') ADVANCE(444); + if (lookahead == 'n') ADVANCE(188); + END_STATE(); + case 369: + if (lookahead == 'm') ADVANCE(444); + if (lookahead == 'n') ADVANCE(188); + if (lookahead == 's') ADVANCE(1387); + END_STATE(); + case 370: + if (lookahead == 'm') ADVANCE(205); + END_STATE(); + case 371: + if (lookahead == 'm') ADVANCE(379); + END_STATE(); + case 372: + if (lookahead == 'm') ADVANCE(435); + END_STATE(); + case 373: + if (lookahead == 'm') ADVANCE(314); + END_STATE(); + case 374: + if (lookahead == 'm') ADVANCE(561); + END_STATE(); + case 375: + if (lookahead == 'n') ADVANCE(534); + END_STATE(); + case 376: + if (lookahead == 'n') ADVANCE(1518); + END_STATE(); + case 377: + if (lookahead == 'n') ADVANCE(1518); + if (lookahead == 'r') ADVANCE(150); + END_STATE(); + case 378: + if (lookahead == 'n') ADVANCE(1416); + END_STATE(); + case 379: + if (lookahead == 'n') ADVANCE(1331); + END_STATE(); + case 380: + if (lookahead == 'n') ADVANCE(1332); + END_STATE(); + case 381: + if (lookahead == 'n') ADVANCE(1452); + END_STATE(); + case 382: + if (lookahead == 'n') ADVANCE(1559); + END_STATE(); + case 383: + if (lookahead == 'n') ADVANCE(1338); + END_STATE(); + case 384: + if (lookahead == 'n') ADVANCE(1338); + if (lookahead == 's') ADVANCE(1387); + END_STATE(); + case 385: + if (lookahead == 'n') ADVANCE(189); + END_STATE(); + case 386: + if (lookahead == 'n') ADVANCE(548); + if (lookahead == 'x') ADVANCE(527); + END_STATE(); + case 387: + if (lookahead == 'n') ADVANCE(162); + END_STATE(); + case 388: + if (lookahead == 'n') ADVANCE(412); + END_STATE(); + case 389: + if (lookahead == 'n') ADVANCE(374); + END_STATE(); + case 390: + if (lookahead == 'n') ADVANCE(172); + END_STATE(); + case 391: + if (lookahead == 'n') ADVANCE(278); + END_STATE(); + case 392: + if (lookahead == 'n') ADVANCE(279); + END_STATE(); + case 393: + if (lookahead == 'n') ADVANCE(163); + END_STATE(); + case 394: + if (lookahead == 'n') ADVANCE(280); + END_STATE(); + case 395: + if (lookahead == 'n') ADVANCE(556); + END_STATE(); + case 396: + if (lookahead == 'n') ADVANCE(195); + END_STATE(); + case 397: + if (lookahead == 'n') ADVANCE(121); + END_STATE(); + case 398: + if (lookahead == 'n') ADVANCE(281); + END_STATE(); + case 399: + if (lookahead == 'n') ADVANCE(128); + END_STATE(); + case 400: + if (lookahead == 'n') ADVANCE(505); + END_STATE(); + case 401: + if (lookahead == 'n') ADVANCE(504); + END_STATE(); + case 402: + if (lookahead == 'n') ADVANCE(209); + END_STATE(); + case 403: + if (lookahead == 'n') ADVANCE(132); + END_STATE(); + case 404: + if (lookahead == 'n') ADVANCE(133); + END_STATE(); + case 405: + if (lookahead == 'n') ADVANCE(234); + END_STATE(); + case 406: + if (lookahead == 'n') ADVANCE(330); + END_STATE(); + case 407: + if (lookahead == 'n') ADVANCE(564); + END_STATE(); + case 408: + if (lookahead == 'n') ADVANCE(177); + END_STATE(); + case 409: + if (lookahead == 'n') ADVANCE(316); + END_STATE(); + case 410: + if (lookahead == 'n') ADVANCE(315); + END_STATE(); + case 411: + if (lookahead == 'n') ADVANCE(178); + END_STATE(); + case 412: + if (lookahead == 'o') ADVANCE(568); + END_STATE(); + case 413: + if (lookahead == 'o') ADVANCE(290); + END_STATE(); + case 414: + if (lookahead == 'o') ADVANCE(567); + END_STATE(); + case 415: + if (lookahead == 'o') ADVANCE(553); + END_STATE(); + case 416: + if (lookahead == 'o') ADVANCE(340); + END_STATE(); + case 417: + if (lookahead == 'o') ADVANCE(500); + if (lookahead == 'r') ADVANCE(202); + if (lookahead == 'u') ADVANCE(157); + END_STATE(); + case 418: + if (lookahead == 'o') ADVANCE(389); + END_STATE(); + case 419: + if (lookahead == 'o') ADVANCE(171); + END_STATE(); + case 420: + if (lookahead == 'o') ADVANCE(552); + END_STATE(); + case 421: + if (lookahead == 'o') ADVANCE(551); + END_STATE(); + case 422: + if (lookahead == 'o') ADVANCE(501); + END_STATE(); + case 423: + if (lookahead == 'o') ADVANCE(168); + END_STATE(); + case 424: + if (lookahead == 'o') ADVANCE(477); + END_STATE(); + case 425: + if (lookahead == 'o') ADVANCE(342); + END_STATE(); + case 426: + if (lookahead == 'o') ADVANCE(179); + END_STATE(); + case 427: + if (lookahead == 'o') ADVANCE(345); + END_STATE(); + case 428: + if (lookahead == 'o') ADVANCE(456); + if (lookahead == 'u') ADVANCE(371); + END_STATE(); + case 429: + if (lookahead == 'o') ADVANCE(457); + END_STATE(); + case 430: + if (lookahead == 'o') ADVANCE(459); + END_STATE(); + case 431: + if (lookahead == 'o') ADVANCE(461); + END_STATE(); + case 432: + if (lookahead == 'o') ADVANCE(380); + END_STATE(); + case 433: + if (lookahead == 'o') ADVANCE(381); + END_STATE(); + case 434: + if (lookahead == 'o') ADVANCE(382); + END_STATE(); + case 435: + if (lookahead == 'o') ADVANCE(191); + END_STATE(); + case 436: + if (lookahead == 'o') ADVANCE(182); + END_STATE(); + case 437: + if (lookahead == 'o') ADVANCE(404); + END_STATE(); + case 438: + if (lookahead == 'o') ADVANCE(536); + END_STATE(); + case 439: + if (lookahead == 'o') ADVANCE(180); + END_STATE(); + case 440: + if (lookahead == 'p') ADVANCE(200); + if (lookahead == 'v') ADVANCE(238); + END_STATE(); + case 441: + if (lookahead == 'p') ADVANCE(1484); + END_STATE(); + case 442: + if (lookahead == 'p') ADVANCE(256); + if (lookahead == 'v') ADVANCE(238); + END_STATE(); + case 443: + if (lookahead == 'p') ADVANCE(203); + END_STATE(); + case 444: + if (lookahead == 'p') ADVANCE(424); + END_STATE(); + case 445: + if (lookahead == 'p') ADVANCE(517); + END_STATE(); + case 446: + if (lookahead == 'p') ADVANCE(222); + END_STATE(); + case 447: + if (lookahead == 'p') ADVANCE(258); + if (lookahead == 'q') ADVANCE(560); + END_STATE(); + case 448: + if (lookahead == 'p') ADVANCE(476); + END_STATE(); + case 449: + if (lookahead == 'p') ADVANCE(246); + END_STATE(); + case 450: + if (lookahead == 'p') ADVANCE(318); + END_STATE(); + case 451: + if (lookahead == 'p') ADVANCE(259); + if (lookahead == 't') ADVANCE(439); + END_STATE(); + case 452: + if (lookahead == 'q') ADVANCE(560); + END_STATE(); + case 453: + if (lookahead == 'r') ADVANCE(1408); + END_STATE(); + case 454: + if (lookahead == 'r') ADVANCE(1446); + END_STATE(); + case 455: + if (lookahead == 'r') ADVANCE(1347); + END_STATE(); + case 456: + if (lookahead == 'r') ADVANCE(100); + END_STATE(); + case 457: + if (lookahead == 'r') ADVANCE(1561); + END_STATE(); + case 458: + if (lookahead == 'r') ADVANCE(87); + END_STATE(); + case 459: + if (lookahead == 'r') ADVANCE(1483); + END_STATE(); + case 460: + if (lookahead == 'r') ADVANCE(1553); + END_STATE(); + case 461: + if (lookahead == 'r') ADVANCE(1305); + END_STATE(); + case 462: + if (lookahead == 'r') ADVANCE(438); + END_STATE(); + case 463: + if (lookahead == 'r') ADVANCE(184); + END_STATE(); + case 464: + if (lookahead == 'r') ADVANCE(88); + END_STATE(); + case 465: + if (lookahead == 'r') ADVANCE(235); + END_STATE(); + case 466: + if (lookahead == 'r') ADVANCE(557); + END_STATE(); + case 467: + if (lookahead == 'r') ADVANCE(414); + END_STATE(); + case 468: + if (lookahead == 'r') ADVANCE(176); + END_STATE(); + case 469: + if (lookahead == 'r') ADVANCE(409); + END_STATE(); + case 470: + if (lookahead == 'r') ADVANCE(125); + END_STATE(); + case 471: + if (lookahead == 'r') ADVANCE(473); + END_STATE(); + case 472: + if (lookahead == 'r') ADVANCE(420); + END_STATE(); + case 473: + if (lookahead == 'r') ADVANCE(322); + END_STATE(); + case 474: + if (lookahead == 'r') ADVANCE(378); + END_STATE(); + case 475: + if (lookahead == 'r') ADVANCE(421); + END_STATE(); + case 476: + if (lookahead == 'r') ADVANCE(329); + END_STATE(); + case 477: + if (lookahead == 'r') ADVANCE(513); + END_STATE(); + case 478: + if (lookahead == 'r') ADVANCE(301); + END_STATE(); + case 479: + if (lookahead == 'r') ADVANCE(129); + END_STATE(); + case 480: + if (lookahead == 'r') ADVANCE(522); + END_STATE(); + case 481: + if (lookahead == 'r') ADVANCE(135); + END_STATE(); + case 482: + if (lookahead == 'r') ADVANCE(137); + END_STATE(); + case 483: + if (lookahead == 'r') ADVANCE(138); + END_STATE(); + case 484: + if (lookahead == 'r') ADVANCE(237); + END_STATE(); + case 485: + if (lookahead == 'r') ADVANCE(220); + END_STATE(); + case 486: + if (lookahead == 'r') ADVANCE(403); + END_STATE(); + case 487: + if (lookahead == 'r') ADVANCE(429); + END_STATE(); + case 488: + if (lookahead == 'r') ADVANCE(262); + END_STATE(); + case 489: + if (lookahead == 's') ADVANCE(495); + END_STATE(); + case 490: + if (lookahead == 's') ADVANCE(495); + if (lookahead == 'w') ADVANCE(146); + END_STATE(); + case 491: + if (lookahead == 's') ADVANCE(170); + END_STATE(); + case 492: + if (lookahead == 's') ADVANCE(1434); + END_STATE(); + case 493: + if (lookahead == 's') ADVANCE(1428); + END_STATE(); + case 494: + if (lookahead == 's') ADVANCE(413); + END_STATE(); + case 495: + if (lookahead == 's') ADVANCE(419); + if (lookahead == 'y') ADVANCE(393); + END_STATE(); + case 496: + if (lookahead == 's') ADVANCE(577); + END_STATE(); + case 497: + if (lookahead == 's') ADVANCE(181); + END_STATE(); + case 498: + if (lookahead == 's') ADVANCE(204); + END_STATE(); + case 499: + if (lookahead == 's') ADVANCE(492); + END_STATE(); + case 500: + if (lookahead == 's') ADVANCE(520); + END_STATE(); + case 501: + if (lookahead == 's') ADVANCE(559); + END_STATE(); + case 502: + if (lookahead == 's') ADVANCE(207); + END_STATE(); + case 503: + if (lookahead == 's') ADVANCE(122); + if (lookahead == 'u') ADVANCE(401); + END_STATE(); + case 504: + if (lookahead == 's') ADVANCE(149); + END_STATE(); + case 505: + if (lookahead == 's') ADVANCE(323); + END_STATE(); + case 506: + if (lookahead == 't') ADVANCE(130); + if (lookahead == 'u') ADVANCE(158); + END_STATE(); + case 507: + if (lookahead == 't') ADVANCE(1468); + END_STATE(); + case 508: + if (lookahead == 't') ADVANCE(1443); + END_STATE(); + case 509: + if (lookahead == 't') ADVANCE(1458); + END_STATE(); + case 510: + if (lookahead == 't') ADVANCE(1324); + END_STATE(); + case 511: + if (lookahead == 't') ADVANCE(1539); + END_STATE(); + case 512: + if (lookahead == 't') ADVANCE(1462); + END_STATE(); + case 513: + if (lookahead == 't') ADVANCE(1425); + END_STATE(); + case 514: + if (lookahead == 't') ADVANCE(1412); + END_STATE(); + case 515: + if (lookahead == 't') ADVANCE(1431); + END_STATE(); + case 516: + if (lookahead == 't') ADVANCE(1455); + END_STATE(); + case 517: + if (lookahead == 't') ADVANCE(1464); + END_STATE(); + case 518: + if (lookahead == 't') ADVANCE(1466); + END_STATE(); + case 519: + if (lookahead == 't') ADVANCE(1469); + END_STATE(); + case 520: + if (lookahead == 't') ADVANCE(275); + END_STATE(); + case 521: + if (lookahead == 't') ADVANCE(292); + END_STATE(); + case 522: + if (lookahead == 't') ADVANCE(575); + END_STATE(); + case 523: + if (lookahead == 't') ADVANCE(287); + END_STATE(); + case 524: + if (lookahead == 't') ADVANCE(288); + END_STATE(); + case 525: + if (lookahead == 't') ADVANCE(167); + END_STATE(); + case 526: + if (lookahead == 't') ADVANCE(423); + END_STATE(); + case 527: + if (lookahead == 't') ADVANCE(241); + END_STATE(); + case 528: + if (lookahead == 't') ADVANCE(134); + END_STATE(); + case 529: + if (lookahead == 't') ADVANCE(212); + END_STATE(); + case 530: + if (lookahead == 't') ADVANCE(214); + END_STATE(); + case 531: + if (lookahead == 't') ADVANCE(261); + END_STATE(); + case 532: + if (lookahead == 't') ADVANCE(239); + END_STATE(); + case 533: + if (lookahead == 't') ADVANCE(219); + END_STATE(); + case 534: + if (lookahead == 't') ADVANCE(311); + if (lookahead == 'v') ADVANCE(244); + END_STATE(); + case 535: + if (lookahead == 't') ADVANCE(309); + END_STATE(); + case 536: + if (lookahead == 't') ADVANCE(426); + END_STATE(); + case 537: + if (lookahead == 't') ADVANCE(313); + END_STATE(); + case 538: + if (lookahead == 't') ADVANCE(430); + END_STATE(); + case 539: + if (lookahead == 't') ADVANCE(317); + END_STATE(); + case 540: + if (lookahead == 't') ADVANCE(431); + END_STATE(); + case 541: + if (lookahead == 't') ADVANCE(326); + END_STATE(); + case 542: + if (lookahead == 't') ADVANCE(319); + END_STATE(); + case 543: + if (lookahead == 't') ADVANCE(579); + END_STATE(); + case 544: + if (lookahead == 't') ADVANCE(263); + END_STATE(); + case 545: + if (lookahead == 't') ADVANCE(439); + END_STATE(); + case 546: + if (lookahead == 't') ADVANCE(264); + END_STATE(); + case 547: + if (lookahead == 't') ADVANCE(155); + END_STATE(); + case 548: + if (lookahead == 'u') ADVANCE(365); + END_STATE(); + case 549: + if (lookahead == 'u') ADVANCE(528); + END_STATE(); + case 550: + if (lookahead == 'u') ADVANCE(526); + END_STATE(); + case 551: + if (lookahead == 'u') ADVANCE(441); + END_STATE(); + case 552: + if (lookahead == 'u') ADVANCE(282); + END_STATE(); + case 553: + if (lookahead == 'u') ADVANCE(468); + END_STATE(); + case 554: + if (lookahead == 'u') ADVANCE(511); + END_STATE(); + case 555: + if (lookahead == 'u') ADVANCE(206); + if (lookahead == 'y') ADVANCE(1366); + END_STATE(); + case 556: + if (lookahead == 'u') ADVANCE(213); + END_STATE(); + case 557: + if (lookahead == 'u') ADVANCE(173); + END_STATE(); + case 558: + if (lookahead == 'u') ADVANCE(474); + END_STATE(); + case 559: + if (lookahead == 'u') ADVANCE(485); + END_STATE(); + case 560: + if (lookahead == 'u') ADVANCE(324); + END_STATE(); + case 561: + if (lookahead == 'u') ADVANCE(547); + END_STATE(); + case 562: + if (lookahead == 'v') ADVANCE(144); + END_STATE(); + case 563: + if (lookahead == 'v') ADVANCE(148); + END_STATE(); + case 564: + if (lookahead == 'v') ADVANCE(244); + END_STATE(); + case 565: + if (lookahead == 'v') ADVANCE(250); + END_STATE(); + case 566: + if (lookahead == 'v') ADVANCE(154); + END_STATE(); + case 567: + if (lookahead == 'w') ADVANCE(1414); + END_STATE(); + case 568: + if (lookahead == 'w') ADVANCE(405); + END_STATE(); + case 569: + if (lookahead == 'x') ADVANCE(1477); + END_STATE(); + case 570: + if (lookahead == 'x') ADVANCE(1474); + END_STATE(); + case 571: + if (lookahead == 'x') ADVANCE(1480); + END_STATE(); + case 572: + if (lookahead == 'y') ADVANCE(443); + END_STATE(); + case 573: + if (lookahead == 'y') ADVANCE(102); + END_STATE(); + case 574: + if (lookahead == 'y') ADVANCE(1494); + END_STATE(); + case 575: + if (lookahead == 'y') ADVANCE(1552); + END_STATE(); + case 576: + if (lookahead == 'y') ADVANCE(1472); + END_STATE(); + case 577: + if (lookahead == 'y') ADVANCE(393); + END_STATE(); + case 578: + if (lookahead == 'y') ADVANCE(449); + END_STATE(); + case 579: + if (lookahead == 'y') ADVANCE(446); + END_STATE(); + case 580: + if (lookahead == 'z') ADVANCE(574); + END_STATE(); + case 581: + if (lookahead == '}') ADVANCE(1277); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(581); + END_STATE(); + case 582: + if (lookahead == '+' || + lookahead == '-') ADVANCE(588); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1220); + END_STATE(); + case 583: + if (lookahead == '.' || + lookahead == '<') ADVANCE(583); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1317); + END_STATE(); + case 584: + if (lookahead == '0' || + lookahead == '1') ADVANCE(1227); + END_STATE(); + case 585: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1226); + END_STATE(); + case 586: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1212); + if (aux_sym_simple_identifier_token4_character_set_1(lookahead)) ADVANCE(1214); + END_STATE(); + case 587: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1219); + END_STATE(); + case 588: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1220); + END_STATE(); + case 589: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1225); + END_STATE(); + case 590: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(581); + END_STATE(); + case 591: + if (eof) ADVANCE(595); + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(2); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1398); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == '*') ADVANCE(1394); + if (lookahead == '+') ADVANCE(1389); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(1391); + if (lookahead == '.') ADVANCE(1291); + if (lookahead == '/') ADVANCE(1396); + if (lookahead == '0') ADVANCE(1223); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == ';') ADVANCE(1461); + if (lookahead == '<') ADVANCE(1319); + if (lookahead == '=') ADVANCE(1381); + if (lookahead == '>') ADVANCE(1322); + if (lookahead == '?') ADVANCE(1295); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == 'P') ADVANCE(462); + if (lookahead == 'T') ADVANCE(572); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1272); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == '^') ADVANCE(1404); + if (lookahead == '_') ADVANCE(1492); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(490); + if (lookahead == 'b') ADVANCE(465); + if (lookahead == 'c') ADVANCE(117); + if (lookahead == 'd') ADVANCE(197); + if (lookahead == 'e') ADVANCE(386); + if (lookahead == 'f') ADVANCE(112); + if (lookahead == 'g') ADVANCE(226); + if (lookahead == 'i') ADVANCE(269); + if (lookahead == 'l') ADVANCE(113); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(295); + if (lookahead == 'o') ADVANCE(440); + if (lookahead == 'p') ADVANCE(119); + if (lookahead == 'r') ADVANCE(198); + if (lookahead == 's') ADVANCE(199); + if (lookahead == 't') ADVANCE(291); + if (lookahead == 'u') ADVANCE(1276); + if (lookahead == 'v') ADVANCE(123); + if (lookahead == 'w') ADVANCE(232); + if (lookahead == 'y') ADVANCE(300); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '|') ADVANCE(1403); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(591) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1224); + END_STATE(); + case 592: + if (eof) ADVANCE(595); + if (lookahead == '!') ADVANCE(80); + if (lookahead == '"') ADVANCE(1235); + if (lookahead == '#') ADVANCE(3); + if (lookahead == '$') ADVANCE(586); + if (lookahead == '%') ADVANCE(1399); + if (lookahead == '&') ADVANCE(1301); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == '*') ADVANCE(1395); + if (lookahead == '+') ADVANCE(1390); + if (lookahead == '-') ADVANCE(1392); + if (lookahead == '.') ADVANCE(90); + if (lookahead == '/') ADVANCE(1397); + if (lookahead == '0') ADVANCE(1221); + if (lookahead == '<') ADVANCE(1320); + if (lookahead == '=') ADVANCE(93); + if (lookahead == '>') ADVANCE(1323); + if (lookahead == '?') ADVANCE(583); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == '[') ADVANCE(1288); + if (lookahead == '\\') ADVANCE(1274); + if (lookahead == '`') ADVANCE(110); + if (lookahead == 'a') ADVANCE(852); + if (lookahead == 'c') ADVANCE(774); + if (lookahead == 'd') ADVANCE(810); + if (lookahead == 'e') ADVANCE(797); + if (lookahead == 'f') ADVANCE(635); + if (lookahead == 'g') ADVANCE(896); + if (lookahead == 'i') ADVANCE(722); + if (lookahead == 'l') ADVANCE(637); + if (lookahead == 'm') ADVANCE(888); + if (lookahead == 'n') ADVANCE(740); + if (lookahead == 'o') ADVANCE(825); + if (lookahead == 'p') ADVANCE(812); + if (lookahead == 'r') ADVANCE(683); + if (lookahead == 's') ADVANCE(699); + if (lookahead == 't') ADVANCE(737); + if (lookahead == 'u') ADVANCE(787); + if (lookahead == 'v') ADVANCE(641); + if (lookahead == 'w') ADVANCE(703); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '~') ADVANCE(1402); + if (lookahead == '^' || + lookahead == '|') ADVANCE(81); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(592) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1222); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_4(lookahead)) ADVANCE(1209); + END_STATE(); + case 593: + if (eof) ADVANCE(595); + if (lookahead == '!') ADVANCE(1285); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '%') ADVANCE(94); + if (lookahead == '&') ADVANCE(1300); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == '*') ADVANCE(95); + if (lookahead == '+') ADVANCE(96); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(97); + if (lookahead == '.') ADVANCE(1290); + if (lookahead == '/') ADVANCE(86); + if (lookahead == '0') ADVANCE(1224); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == ';') ADVANCE(1461); + if (lookahead == '<') ADVANCE(1318); + if (lookahead == '=') ADVANCE(1380); + if (lookahead == '>') ADVANCE(1321); + if (lookahead == '?') ADVANCE(1296); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == 'P') ADVANCE(462); + if (lookahead == 'T') ADVANCE(572); + if (lookahead == '\\') ADVANCE(77); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == '_') ADVANCE(372); + if (lookahead == 'a') ADVANCE(489); + if (lookahead == 'c') ADVANCE(118); + if (lookahead == 'd') ADVANCE(265); + if (lookahead == 'e') ADVANCE(386); + if (lookahead == 'f') ADVANCE(140); + if (lookahead == 'g') ADVANCE(253); + if (lookahead == 'i') ADVANCE(270); + if (lookahead == 'l') ADVANCE(113); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(418); + if (lookahead == 'o') ADVANCE(440); + if (lookahead == 'p') ADVANCE(417); + if (lookahead == 'r') ADVANCE(224); + if (lookahead == 's') ADVANCE(254); + if (lookahead == 't') ADVANCE(578); + if (lookahead == 'u') ADVANCE(388); + if (lookahead == 'v') ADVANCE(123); + if (lookahead == 'w') ADVANCE(232); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(594) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1224); + END_STATE(); + case 594: + if (eof) ADVANCE(595); + if (lookahead == '#') ADVANCE(196); + if (lookahead == '%') ADVANCE(94); + if (lookahead == '&') ADVANCE(1300); + if (lookahead == '(') ADVANCE(1287); + if (lookahead == ')') ADVANCE(1279); + if (lookahead == '*') ADVANCE(95); + if (lookahead == '+') ADVANCE(96); + if (lookahead == ',') ADVANCE(1282); + if (lookahead == '-') ADVANCE(97); + if (lookahead == '.') ADVANCE(1290); + if (lookahead == '/') ADVANCE(86); + if (lookahead == '0') ADVANCE(1224); + if (lookahead == ':') ADVANCE(1284); + if (lookahead == ';') ADVANCE(1461); + if (lookahead == '<') ADVANCE(1318); + if (lookahead == '=') ADVANCE(1380); + if (lookahead == '>') ADVANCE(1321); + if (lookahead == '?') ADVANCE(1294); + if (lookahead == '@') ADVANCE(1491); + if (lookahead == 'P') ADVANCE(462); + if (lookahead == 'T') ADVANCE(572); + if (lookahead == '\\') ADVANCE(77); + if (lookahead == ']') ADVANCE(1289); + if (lookahead == '_') ADVANCE(372); + if (lookahead == 'a') ADVANCE(489); + if (lookahead == 'c') ADVANCE(118); + if (lookahead == 'd') ADVANCE(265); + if (lookahead == 'e') ADVANCE(386); + if (lookahead == 'f') ADVANCE(140); + if (lookahead == 'g') ADVANCE(253); + if (lookahead == 'i') ADVANCE(270); + if (lookahead == 'l') ADVANCE(113); + if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'n') ADVANCE(418); + if (lookahead == 'o') ADVANCE(440); + if (lookahead == 'p') ADVANCE(417); + if (lookahead == 'r') ADVANCE(224); + if (lookahead == 's') ADVANCE(254); + if (lookahead == 't') ADVANCE(578); + if (lookahead == 'u') ADVANCE(388); + if (lookahead == 'v') ADVANCE(123); + if (lookahead == 'w') ADVANCE(232); + if (lookahead == '{') ADVANCE(1337); + if (lookahead == '}') ADVANCE(1343); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(594) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1224); + END_STATE(); + case 595: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 596: + ACCEPT_TOKEN(anon_sym_POUND_BANG); + END_STATE(); + case 597: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == '#') ADVANCE(605); + if (lookahead == '/') ADVANCE(598); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(597); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 598: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == '/') ADVANCE(628); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 599: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'L') ADVANCE(618); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 600: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'a') ADVANCE(626); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 601: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'a') ADVANCE(622); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 602: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'c') ADVANCE(600); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 603: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'c') ADVANCE(607); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 604: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'd') ADVANCE(610); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 605: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'e') ADVANCE(613); + if (lookahead == 'i') ADVANCE(608); + if (lookahead == 's') ADVANCE(617); + if (lookahead == 'w') ADVANCE(601); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 606: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'e') ADVANCE(610); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 607: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'e') ADVANCE(599); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 608: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'f') ADVANCE(628); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 609: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'g') ADVANCE(628); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 610: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'i') ADVANCE(608); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 611: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'i') ADVANCE(615); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 612: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'i') ADVANCE(619); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 613: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'l') ADVANCE(625); + if (lookahead == 'n') ADVANCE(604); + if (lookahead == 'r') ADVANCE(624); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 614: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'n') ADVANCE(628); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 615: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'n') ADVANCE(609); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 616: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'n') ADVANCE(611); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 617: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'o') ADVANCE(627); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 618: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'o') ADVANCE(602); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 619: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'o') ADVANCE(614); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 620: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'o') ADVANCE(621); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 621: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'r') ADVANCE(628); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 622: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'r') ADVANCE(616); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 623: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'r') ADVANCE(603); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 624: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'r') ADVANCE(620); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 625: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 's') ADVANCE(606); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 626: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 't') ADVANCE(612); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 627: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead == 'u') ADVANCE(623); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 628: + ACCEPT_TOKEN(aux_sym_shebang_line_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(628); + END_STATE(); + case 629: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '/') ADVANCE(629); + if (lookahead == '<') ADVANCE(630); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1311); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(632); + END_STATE(); + case 630: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '<') ADVANCE(630); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1311); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(632); + END_STATE(); + case 631: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '<') ADVANCE(631); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '.' || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1315); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(632); + END_STATE(); + case 632: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(632); + END_STATE(); + case 633: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1306); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 634: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1307); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 635: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(776); + if (lookahead == 'i') ADVANCE(777); + if (lookahead == 'o') ADVANCE(835); + if (lookahead == 'u') ADVANCE(789); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 636: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(776); + if (lookahead == 'i') ADVANCE(801); + if (lookahead == 'o') ADVANCE(835); + if (lookahead == 'u') ADVANCE(789); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 637: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(911); + if (lookahead == 'e') ADVANCE(862); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 638: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(764); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 639: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(857); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 640: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(765); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 641: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(836); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 642: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(785); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 643: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(837); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 644: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(769); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 645: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(854); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 646: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(882); + if (lookahead == 'r') ADVANCE(889); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 647: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(770); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 648: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(771); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 649: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(773); + if (lookahead == 'i') ADVANCE(777); + if (lookahead == 'o') ADVANCE(835); + if (lookahead == 'u') ADVANCE(789); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 650: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(867); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 651: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(878); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 652: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(752); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 653: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(861); + if (lookahead == 'l') ADVANCE(639); + if (lookahead == 'o') ADVANCE(793); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 654: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(781); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 655: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(877); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 656: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(879); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 657: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(883); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 658: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'a') ADVANCE(880); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 659: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'b') ADVANCE(779); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 660: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'c') ADVANCE(1450); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 661: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'c') ADVANCE(1303); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 662: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'c') ADVANCE(735); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 663: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'c') ADVANCE(1507); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 664: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'c') ADVANCE(1528); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 665: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'c') ADVANCE(1531); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 666: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'c') ADVANCE(822); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 667: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'c') ADVANCE(698); + if (lookahead == 'f') ADVANCE(742); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 668: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'c') ADVANCE(762); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 669: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'c') ADVANCE(868); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 670: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'c') ADVANCE(869); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 671: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'c') ADVANCE(702); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 672: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'c') ADVANCE(690); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 673: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'd') ADVANCE(1353); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 674: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'd') ADVANCE(1548); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 675: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'd') ADVANCE(1504); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 676: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'd') ADVANCE(1423); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 677: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'd') ADVANCE(748); + if (lookahead == 'f') ADVANCE(739); + if (lookahead == 'i') ADVANCE(863); + if (lookahead == 'o') ADVANCE(893); + if (lookahead == 't') ADVANCE(710); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 678: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'd') ADVANCE(748); + if (lookahead == 'i') ADVANCE(863); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 679: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'd') ADVANCE(689); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 680: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'd') ADVANCE(871); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 681: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'd') ADVANCE(743); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 682: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'd') ADVANCE(716); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 683: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(829); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 684: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(667); + if (lookahead == 'i') ADVANCE(899); + if (lookahead == 'o') ADVANCE(881); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 685: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(1229); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 686: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(1232); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 687: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(1411); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 688: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(1510); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 689: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(1498); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 690: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(1501); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 691: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(1516); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 692: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(1488); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 693: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(828); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 694: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(1357); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 695: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(1419); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 696: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(830); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 697: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(767); + if (lookahead == 't') ADVANCE(839); + if (lookahead == 'u') ADVANCE(834); + if (lookahead == 'w') ADVANCE(750); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 698: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(682); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 699: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(768); + if (lookahead == 't') ADVANCE(646); + if (lookahead == 'u') ADVANCE(834); + if (lookahead == 'w') ADVANCE(750); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 700: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(768); + if (lookahead == 't') ADVANCE(839); + if (lookahead == 'u') ADVANCE(834); + if (lookahead == 'w') ADVANCE(750); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 701: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(674); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 702: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(734); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 703: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(638); + if (lookahead == 'h') ADVANCE(746); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 704: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(833); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 705: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(675); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 706: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(842); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 707: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(680); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 708: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(790); + if (lookahead == 't') ADVANCE(745); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 709: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(800); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 710: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(850); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 711: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(654); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 712: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(805); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 713: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(778); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 714: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(838); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 715: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(640); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 716: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(803); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 717: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(870); + if (lookahead == 'u') ADVANCE(643); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 718: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(729); + if (lookahead == 'i') ADVANCE(899); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 719: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(670); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 720: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(650); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 721: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'e') ADVANCE(807); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 722: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'f') ADVANCE(1351); + if (lookahead == 'm') ADVANCE(827); + if (lookahead == 'n') ADVANCE(677); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 723: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'f') ADVANCE(1351); + if (lookahead == 'n') ADVANCE(677); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 724: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'f') ADVANCE(1351); + if (lookahead == 'n') ADVANCE(1339); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 725: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'f') ADVANCE(1351); + if (lookahead == 'n') ADVANCE(678); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 726: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'f') ADVANCE(1351); + if (lookahead == 'n') ADVANCE(1340); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 727: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'f') ADVANCE(1345); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 728: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'f') ADVANCE(908); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 729: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'f') ADVANCE(742); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 730: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'f') ADVANCE(744); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 731: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'g') ADVANCE(1522); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 732: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'g') ADVANCE(1525); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 733: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'g') ADVANCE(736); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 734: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'g') ADVANCE(840); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 735: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'h') ADVANCE(1355); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 736: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'h') ADVANCE(1360); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 737: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'h') ADVANCE(849); + if (lookahead == 'r') ADVANCE(892); + if (lookahead == 'y') ADVANCE(832); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 738: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'h') ADVANCE(841); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 739: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(904); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 740: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(766); + if (lookahead == 'o') ADVANCE(795); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 741: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(766); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 742: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(905); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 743: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(728); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 744: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(906); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 745: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(824); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 746: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(780); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 747: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(823); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 748: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(843); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 749: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(663); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 750: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(875); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 751: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(664); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 752: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(864); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 753: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(665); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 754: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(645); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 755: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(791); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 756: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(796); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 757: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(802); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 758: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(713); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 759: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(679); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 760: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(846); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 761: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(721); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 762: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(656); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 763: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'i') ADVANCE(901); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 764: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'k') ADVANCE(1545); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 765: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'k') ADVANCE(1421); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 766: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'l') ADVANCE(1217); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 767: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'l') ADVANCE(727); + if (lookahead == 't') ADVANCE(1470); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 768: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'l') ADVANCE(727); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 769: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'l') ADVANCE(1537); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 770: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'l') ADVANCE(1513); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 771: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'l') ADVANCE(1534); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 772: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'l') ADVANCE(1441); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 773: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'l') ADVANCE(782); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 774: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'l') ADVANCE(639); + if (lookahead == 'o') ADVANCE(788); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 775: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'l') ADVANCE(639); + if (lookahead == 'o') ADVANCE(809); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 776: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'l') ADVANCE(859); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 777: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'l') ADVANCE(704); + if (lookahead == 'n') ADVANCE(644); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 778: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'l') ADVANCE(676); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 779: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'l') ADVANCE(749); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 780: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'l') ADVANCE(687); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 781: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'l') ADVANCE(754); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 782: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'l') ADVANCE(873); + if (lookahead == 's') ADVANCE(686); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 783: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'm') ADVANCE(1438); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 784: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'm') ADVANCE(820); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 785: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'm') ADVANCE(753); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 786: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'm') ADVANCE(898); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 787: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(814); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 788: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(900); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 789: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(660); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 790: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(1519); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 791: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(731); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 792: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(1453); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 793: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(884); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 794: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(1417); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 795: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(786); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 796: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(732); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 797: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(887); + if (lookahead == 'x') ADVANCE(874); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 798: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(661); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 799: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(642); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 800: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(860); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 801: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(644); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 802: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(895); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 803: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(671); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 804: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(701); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 805: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(761); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 806: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(647); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 807: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(672); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 808: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(648); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 809: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'n') ADVANCE(885); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 810: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'o') ADVANCE(1363); + if (lookahead == 'y') ADVANCE(799); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 811: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'o') ADVANCE(1363); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 812: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'o') ADVANCE(858); + if (lookahead == 'r') ADVANCE(684); + if (lookahead == 'u') ADVANCE(659); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 813: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'o') ADVANCE(858); + if (lookahead == 'r') ADVANCE(718); + if (lookahead == 'u') ADVANCE(659); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 814: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'o') ADVANCE(903); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 815: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'o') ADVANCE(668); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 816: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'o') ADVANCE(902); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 817: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'o') ADVANCE(891); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 818: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'o') ADVANCE(845); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 819: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'o') ADVANCE(666); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 820: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'o') ADVANCE(681); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 821: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'o') ADVANCE(890); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 822: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'o') ADVANCE(772); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 823: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'o') ADVANCE(792); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 824: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'o') ADVANCE(808); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 825: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'p') ADVANCE(708); + if (lookahead == 'v') ADVANCE(706); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 826: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'p') ADVANCE(1485); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 827: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'p') ADVANCE(818); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 828: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'p') ADVANCE(720); + if (lookahead == 'q') ADVANCE(897); + if (lookahead == 't') ADVANCE(894); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 829: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'p') ADVANCE(720); + if (lookahead == 'q') ADVANCE(897); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 830: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'p') ADVANCE(720); + if (lookahead == 't') ADVANCE(894); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 831: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'p') ADVANCE(692); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 832: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'p') ADVANCE(711); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 833: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'p') ADVANCE(847); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 834: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'p') ADVANCE(714); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 835: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'r') ADVANCE(1409); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 836: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'r') ADVANCE(1447); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 837: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'r') ADVANCE(673); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 838: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'r') ADVANCE(1348); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 839: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'r') ADVANCE(889); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 840: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'r') ADVANCE(817); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 841: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'r') ADVANCE(821); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 842: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'r') ADVANCE(844); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 843: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'r') ADVANCE(719); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 844: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 845: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'r') ADVANCE(866); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 846: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'r') ADVANCE(705); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 847: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'r') ADVANCE(763); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 848: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'r') ADVANCE(794); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 849: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'r') ADVANCE(816); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 850: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'r') ADVANCE(806); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 851: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'r') ADVANCE(715); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 852: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 's') ADVANCE(855); + if (lookahead == 'w') ADVANCE(652); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 853: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 's') ADVANCE(1435); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 854: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 's') ADVANCE(1429); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 855: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 's') ADVANCE(815); + if (lookahead == 'y') ADVANCE(798); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 856: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 's') ADVANCE(909); + if (lookahead == 'w') ADVANCE(652); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 857: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 's') ADVANCE(853); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 858: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 's') ADVANCE(872); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 859: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 's') ADVANCE(686); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 860: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 's') ADVANCE(747); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 861: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 's') ADVANCE(694); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 862: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(1444); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 863: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(1459); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 864: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(1325); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 865: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(1540); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 866: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(1426); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 867: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(1413); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 868: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(1432); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 869: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(1456); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 870: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(1467); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 871: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(910); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 872: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(730); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 873: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(738); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 874: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(709); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 875: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(662); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 876: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(655); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 877: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(755); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 878: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(688); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 879: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(707); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 880: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(691); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 881: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(819); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 882: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(751); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 883: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(756); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 884: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(757); + if (lookahead == 'v') ADVANCE(712); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 885: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(757); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 886: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 't') ADVANCE(657); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 887: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'u') ADVANCE(783); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 888: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'u') ADVANCE(876); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 889: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'u') ADVANCE(669); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 890: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'u') ADVANCE(733); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 891: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'u') ADVANCE(826); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 892: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'u') ADVANCE(685); + if (lookahead == 'y') ADVANCE(1365); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 893: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'u') ADVANCE(865); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 894: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'u') ADVANCE(848); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 895: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'u') ADVANCE(695); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 896: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'u') ADVANCE(643); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 897: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'u') ADVANCE(760); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 898: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'u') ADVANCE(886); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 899: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'v') ADVANCE(651); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 900: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'v') ADVANCE(712); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 901: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'v') ADVANCE(658); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 902: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'w') ADVANCE(1415); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 903: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'w') ADVANCE(804); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 904: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'x') ADVANCE(1478); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 905: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'x') ADVANCE(1475); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 906: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'x') ADVANCE(1481); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 907: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'y') ADVANCE(1495); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 908: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'y') ADVANCE(1473); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 909: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'y') ADVANCE(798); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 910: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'y') ADVANCE(831); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 911: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'z') ADVANCE(907); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 912: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 913: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1145); + if (lookahead == 'l') ADVANCE(921); + if (lookahead == 'o') ADVANCE(1068); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 914: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1145); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 915: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1042); + if (lookahead == 'i') ADVANCE(1052); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 916: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1207); + if (lookahead == 'e') ADVANCE(1156); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 917: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1207); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 918: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1025); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 919: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1041); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 920: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1062); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 921: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1146); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 922: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1167); + if (lookahead == 'r') ADVANCE(1190); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 923: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1167); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 924: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1044); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 925: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1045); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 926: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1046); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 927: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1169); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 928: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1122); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 929: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1143); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 930: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1058); + if (lookahead == 'i') ADVANCE(1052); + if (lookahead == 'u') ADVANCE(1084); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 931: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1058); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 932: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1056); + if (lookahead == 'i') ADVANCE(1052); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 933: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1168); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 934: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1057); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 935: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1171); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 936: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1179); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 937: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'a') ADVANCE(1175); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_8(lookahead)) ADVANCE(1209); + END_STATE(); + case 938: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'b') ADVANCE(1055); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 939: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'b') ADVANCE(1148); + if (lookahead == 'p') ADVANCE(990); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 940: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'b') ADVANCE(1148); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 941: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'c') ADVANCE(1304); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 942: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'c') ADVANCE(1508); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 943: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'c') ADVANCE(1529); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 944: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'c') ADVANCE(1532); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 945: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'c') ADVANCE(1451); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 946: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'c') ADVANCE(1103); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 947: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'c') ADVANCE(1162); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 948: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'c') ADVANCE(1163); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 949: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'c') ADVANCE(1038); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 950: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'c') ADVANCE(969); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 951: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'c') ADVANCE(1000); + if (lookahead == 'f') ADVANCE(1022); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 952: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'c') ADVANCE(988); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 953: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'c') ADVANCE(1136); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 954: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'd') ADVANCE(1549); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 955: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'd') ADVANCE(1505); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 956: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'd') ADVANCE(968); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 957: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'd') ADVANCE(1165); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 958: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'd') ADVANCE(1037); + if (lookahead == 'f') ADVANCE(1016); + if (lookahead == 'i') ADVANCE(1159); + if (lookahead == 'o') ADVANCE(1186); + if (lookahead == 't') ADVANCE(978); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 959: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'd') ADVANCE(1037); + if (lookahead == 'i') ADVANCE(1159); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 960: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'd') ADVANCE(1002); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 961: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1118); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 962: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1006); + if (lookahead == 'i') ADVANCE(1193); + if (lookahead == 'o') ADVANCE(1178); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 963: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1006); + if (lookahead == 'i') ADVANCE(1193); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 964: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1358); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 965: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1230); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 966: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1233); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 967: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1511); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 968: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1499); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 969: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1502); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 970: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1517); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 971: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1299); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 972: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1048); + if (lookahead == 'u') ADVANCE(1113); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 973: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(951); + if (lookahead == 'i') ADVANCE(1193); + if (lookahead == 'o') ADVANCE(1178); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 974: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1489); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 975: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1127); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 976: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1117); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 977: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(954); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 978: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1138); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 979: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1049); + if (lookahead == 'o') ADVANCE(1063); + if (lookahead == 'u') ADVANCE(1113); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 980: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1049); + if (lookahead == 't') ADVANCE(922); + if (lookahead == 'u') ADVANCE(939); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 981: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1049); + if (lookahead == 't') ADVANCE(922); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 982: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1049); + if (lookahead == 't') ADVANCE(923); + if (lookahead == 'u') ADVANCE(1113); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 983: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1049); + if (lookahead == 't') ADVANCE(1128); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 984: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1049); + if (lookahead == 'u') ADVANCE(1113); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 985: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1049); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 986: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(955); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 987: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(957); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 988: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1011); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 989: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(919); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 990: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1121); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 991: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1071); + if (lookahead == 't') ADVANCE(1020); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 992: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1156); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 993: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1090); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 994: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1123); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 995: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1181); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 996: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1124); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 997: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1082); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 998: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(934); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 999: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1086); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1000: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(960); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1001: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(948); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1002: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1092); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1003: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'e') ADVANCE(1034); + if (lookahead == 'y') ADVANCE(1083); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1004: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'f') ADVANCE(1346); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1005: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'f') ADVANCE(1016); + if (lookahead == 'o') ADVANCE(1186); + if (lookahead == 't') ADVANCE(978); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1006: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'f') ADVANCE(1022); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1007: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'f') ADVANCE(1024); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1008: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'g') ADVANCE(1523); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1009: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'g') ADVANCE(1526); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1010: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'g') ADVANCE(1012); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1011: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'g') ADVANCE(1130); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1012: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'h') ADVANCE(1361); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1013: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'h') ADVANCE(1125); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1014: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1052); + if (lookahead == 'u') ADVANCE(1084); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1015: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1052); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1016: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1198); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1017: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(956); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1018: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1043); + if (lookahead == 'o') ADVANCE(1069); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1019: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1043); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1020: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1109); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1021: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(942); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1022: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1199); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1023: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(943); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1024: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1200); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1025: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1153); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1026: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1114); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1027: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(944); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1028: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1133); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1029: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1072); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1030: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1159); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1031: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1078); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1032: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1160); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1033: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(997); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1034: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1091); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1035: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1107); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1036: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(929); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1037: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1137); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1038: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(937); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1039: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1085); + if (lookahead == 'u') ADVANCE(1084); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1040: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'i') ADVANCE(1195); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1041: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'k') ADVANCE(1546); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1042: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'l') ADVANCE(1053); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1043: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'l') ADVANCE(1218); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1044: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'l') ADVANCE(1538); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1045: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'l') ADVANCE(1514); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1046: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'l') ADVANCE(1535); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1047: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'l') ADVANCE(1442); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1048: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'l') ADVANCE(1004); + if (lookahead == 't') ADVANCE(1173); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1049: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'l') ADVANCE(1004); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1050: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'l') ADVANCE(921); + if (lookahead == 'o') ADVANCE(1068); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1051: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'l') ADVANCE(921); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1052: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'l') ADVANCE(976); + if (lookahead == 'n') ADVANCE(924); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1053: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'l') ADVANCE(1154); + if (lookahead == 's') ADVANCE(966); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1054: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'l') ADVANCE(1154); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1055: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'l') ADVANCE(1021); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1056: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'l') ADVANCE(1054); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1057: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'l') ADVANCE(1036); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1058: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'l') ADVANCE(1149); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1059: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'm') ADVANCE(1439); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1060: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'm') ADVANCE(1112); + if (lookahead == 'n') ADVANCE(958); + if (lookahead == 's') ADVANCE(1388); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1061: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'm') ADVANCE(1112); + if (lookahead == 'n') ADVANCE(958); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1062: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'm') ADVANCE(1027); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1063: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'm') ADVANCE(971); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1064: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'm') ADVANCE(1192); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1065: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(1005); + if (lookahead == 's') ADVANCE(1388); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1066: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(1005); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1067: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(1094); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1068: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(1194); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1069: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(1064); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1070: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(941); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1071: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(1520); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1072: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(1008); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1073: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(958); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1074: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(1454); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1075: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(1342); + if (lookahead == 's') ADVANCE(1388); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1076: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(1342); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1077: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(959); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1078: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(1009); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1079: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(1184); + if (lookahead == 'x') ADVANCE(1174); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1080: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(1184); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1081: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(1108); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1082: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(950); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1083: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(920); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1084: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(945); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1085: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(924); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1086: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(1152); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1087: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(925); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1088: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(926); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1089: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(977); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1090: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(1033); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1091: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(1032); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1092: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(952); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1093: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'n') ADVANCE(1030); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1094: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'o') ADVANCE(1197); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1095: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'o') ADVANCE(1144); + if (lookahead == 'r') ADVANCE(963); + if (lookahead == 'u') ADVANCE(938); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1096: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'o') ADVANCE(1144); + if (lookahead == 'r') ADVANCE(973); + if (lookahead == 'u') ADVANCE(938); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1097: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'o') ADVANCE(1144); + if (lookahead == 'r') ADVANCE(962); + if (lookahead == 'u') ADVANCE(938); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1098: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'o') ADVANCE(1183); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1099: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'o') ADVANCE(1063); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1100: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'o') ADVANCE(1069); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1101: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'o') ADVANCE(1185); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1102: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'o') ADVANCE(949); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1103: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'o') ADVANCE(1047); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1104: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'o') ADVANCE(946); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1105: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'o') ADVANCE(1134); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1106: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'o') ADVANCE(1178); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1107: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'o') ADVANCE(1074); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1108: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'o') ADVANCE(1186); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1109: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'o') ADVANCE(1088); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1110: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'p') ADVANCE(991); + if (lookahead == 'v') ADVANCE(975); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1111: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'p') ADVANCE(1486); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1112: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'p') ADVANCE(1105); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1113: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'p') ADVANCE(990); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1114: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'p') ADVANCE(1164); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1115: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'p') ADVANCE(974); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1116: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'p') ADVANCE(998); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1117: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'p') ADVANCE(1135); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1118: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'q') ADVANCE(1187); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1119: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(1188); + if (lookahead == 'y') ADVANCE(1116); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1120: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(1188); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1121: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(1349); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1122: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(1448); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1123: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(633); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1124: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(634); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1125: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(1098); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1126: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(1201); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1127: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(1132); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1128: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(1190); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1129: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(1189); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1130: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(1101); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1131: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(1106); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1132: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(1017); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1133: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(986); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1134: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(1161); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1135: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(1040); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1136: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(1026); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1137: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(1001); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1138: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'r') ADVANCE(1087); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1139: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 's') ADVANCE(1436); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1140: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 's') ADVANCE(1388); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1141: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 's') ADVANCE(1147); + if (lookahead == 'w') ADVANCE(918); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1142: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 's') ADVANCE(1147); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1143: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 's') ADVANCE(1430); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1144: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 's') ADVANCE(1176); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1145: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 's') ADVANCE(964); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1146: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 's') ADVANCE(1139); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1147: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 's') ADVANCE(1102); + if (lookahead == 'y') ADVANCE(1070); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1148: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 's') ADVANCE(953); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1149: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 's') ADVANCE(966); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1150: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 's') ADVANCE(1204); + if (lookahead == 'w') ADVANCE(918); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1151: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 's') ADVANCE(1204); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1152: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 's') ADVANCE(1035); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1153: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(1326); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1154: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(1013); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1155: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(1541); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1156: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(1445); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1157: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(922); + if (lookahead == 'u') ADVANCE(940); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1158: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(922); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1159: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(1460); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1160: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(1463); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1161: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(1427); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1162: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(1433); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1163: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(1457); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1164: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(1465); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1165: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(1206); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1166: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(923); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1167: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(1023); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1168: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(1029); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1169: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(967); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1170: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(1128); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1171: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(970); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1172: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(994); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1173: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(996); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1174: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(999); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1175: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(987); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1176: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(1007); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1177: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(933); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1178: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(1104); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1179: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(1031); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1180: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(936); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1181: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 't') ADVANCE(1172); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1182: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'u') ADVANCE(1177); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1183: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'u') ADVANCE(1010); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1184: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'u') ADVANCE(1059); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1185: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'u') ADVANCE(1111); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1186: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'u') ADVANCE(1155); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1187: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'u') ADVANCE(1028); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1188: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'u') ADVANCE(965); + if (lookahead == 'y') ADVANCE(1367); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1189: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'u') ADVANCE(965); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1190: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'u') ADVANCE(947); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1191: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'u') ADVANCE(1084); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1192: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'u') ADVANCE(1180); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1193: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'v') ADVANCE(927); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1194: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'v') ADVANCE(993); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1195: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'v') ADVANCE(935); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1196: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'w') ADVANCE(918); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1197: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'w') ADVANCE(1089); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1198: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'x') ADVANCE(1479); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1199: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'x') ADVANCE(1476); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1200: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'x') ADVANCE(1482); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1201: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'y') ADVANCE(1367); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1202: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'y') ADVANCE(1496); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1203: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'y') ADVANCE(1083); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1204: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'y') ADVANCE(1070); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1205: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'y') ADVANCE(1116); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1206: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'y') ADVANCE(1115); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1207: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 'z') ADVANCE(1202); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_9(lookahead)) ADVANCE(1209); + END_STATE(); + case 1208: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 8419) ADVANCE(1210); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1209: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1210: + ACCEPT_TOKEN(aux_sym_simple_identifier_token1); + if (aux_sym_simple_identifier_token1_character_set_10(lookahead)) ADVANCE(1209); + END_STATE(); + case 1211: + ACCEPT_TOKEN(aux_sym_simple_identifier_token2); + END_STATE(); + case 1212: + ACCEPT_TOKEN(aux_sym_simple_identifier_token3); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1212); + END_STATE(); + case 1213: + ACCEPT_TOKEN(aux_sym_simple_identifier_token4); + if (lookahead == 8419) ADVANCE(1215); + if (lookahead == 65039) ADVANCE(1213); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1214); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1214); + END_STATE(); + case 1214: + ACCEPT_TOKEN(aux_sym_simple_identifier_token4); + if (lookahead == 65039) ADVANCE(1213); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1214); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1214); + END_STATE(); + case 1215: + ACCEPT_TOKEN(aux_sym_simple_identifier_token4); + if (aux_sym_simple_identifier_token1_character_set_10(lookahead)) ADVANCE(1214); + END_STATE(); + case 1216: + ACCEPT_TOKEN(anon_sym_nil); + END_STATE(); + case 1217: + ACCEPT_TOKEN(anon_sym_nil); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1218: + ACCEPT_TOKEN(anon_sym_nil); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1219: + ACCEPT_TOKEN(sym_real_literal); + if (lookahead == '_') ADVANCE(108); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(582); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1219); + END_STATE(); + case 1220: + ACCEPT_TOKEN(sym_real_literal); + if (lookahead == '_') ADVANCE(109); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1220); + END_STATE(); + case 1221: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == '.') ADVANCE(587); + if (lookahead == '_') ADVANCE(107); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(584); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(582); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(585); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(589); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1222); + END_STATE(); + case 1222: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == '.') ADVANCE(587); + if (lookahead == '_') ADVANCE(107); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(582); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1222); + END_STATE(); + case 1223: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == '_') ADVANCE(103); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(584); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(585); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(589); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1224); + END_STATE(); + case 1224: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == '_') ADVANCE(103); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1224); + END_STATE(); + case 1225: + ACCEPT_TOKEN(sym_hex_literal); + if (lookahead == '_') ADVANCE(106); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1225); + END_STATE(); + case 1226: + ACCEPT_TOKEN(sym_oct_literal); + if (lookahead == '_') ADVANCE(105); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(1226); + END_STATE(); + case 1227: + ACCEPT_TOKEN(sym_bin_literal); + if (lookahead == '_') ADVANCE(104); + if (lookahead == '0' || + lookahead == '1') ADVANCE(1227); + END_STATE(); + case 1228: + ACCEPT_TOKEN(anon_sym_true); + END_STATE(); + case 1229: + ACCEPT_TOKEN(anon_sym_true); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1230: + ACCEPT_TOKEN(anon_sym_true); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1231: + ACCEPT_TOKEN(anon_sym_false); + END_STATE(); + case 1232: + ACCEPT_TOKEN(anon_sym_false); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1233: + ACCEPT_TOKEN(anon_sym_false); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1234: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 1235: + ACCEPT_TOKEN(anon_sym_DQUOTE); + if (lookahead == '"') ADVANCE(47); + END_STATE(); + case 1236: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == '\n') ADVANCE(1271); + if (lookahead == 'f') ADVANCE(1238); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1238); + END_STATE(); + case 1237: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == '\n') ADVANCE(1271); + if (lookahead == 'i') ADVANCE(1236); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1238); + END_STATE(); + case 1238: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == '\n') ADVANCE(1271); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1238); + END_STATE(); + case 1239: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == '#') ADVANCE(1247); + if (lookahead == '/') ADVANCE(1240); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(1239); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1240: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == '/') ADVANCE(1238); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1241: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'L') ADVANCE(1260); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1242: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'a') ADVANCE(1268); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1243: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'a') ADVANCE(1263); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1244: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'c') ADVANCE(1242); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1245: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'c') ADVANCE(1249); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1246: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'd') ADVANCE(1252); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1247: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'e') ADVANCE(1255); + if (lookahead == 'i') ADVANCE(1250); + if (lookahead == 's') ADVANCE(1259); + if (lookahead == 'w') ADVANCE(1243); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1248: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'e') ADVANCE(1237); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1249: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'e') ADVANCE(1241); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1250: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'f') ADVANCE(1238); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1251: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'g') ADVANCE(1270); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1252: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'i') ADVANCE(1250); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1253: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'i') ADVANCE(1257); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1254: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'i') ADVANCE(1261); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1255: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'l') ADVANCE(1267); + if (lookahead == 'n') ADVANCE(1246); + if (lookahead == 'r') ADVANCE(1266); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1256: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'n') ADVANCE(1270); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1257: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'n') ADVANCE(1251); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1258: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'n') ADVANCE(1253); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1259: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'o') ADVANCE(1269); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1260: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'o') ADVANCE(1244); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1261: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'o') ADVANCE(1256); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1262: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'o') ADVANCE(1265); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1263: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'r') ADVANCE(1258); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1264: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'r') ADVANCE(1245); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1265: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'r') ADVANCE(1270); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1266: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'r') ADVANCE(1262); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1267: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 's') ADVANCE(1248); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1268: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 't') ADVANCE(1254); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1269: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == 'u') ADVANCE(1264); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1270: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(1271); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1270); + END_STATE(); + case 1271: + ACCEPT_TOKEN(aux_sym_line_str_text_token1); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(1271); + END_STATE(); + case 1272: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '(') ADVANCE(1281); + if (lookahead == '.' || + lookahead == '<') ADVANCE(583); + if (lookahead == '\n' || + lookahead == '"' || + lookahead == '\'' || + lookahead == '0' || + lookahead == '\\' || + lookahead == 'n' || + lookahead == 'r' || + lookahead == 't') ADVANCE(1283); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1317); + END_STATE(); + case 1273: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '(') ADVANCE(1281); + if (lookahead == '\n' || + lookahead == '"' || + lookahead == '\'' || + lookahead == '0' || + lookahead == '\\' || + lookahead == 'n' || + lookahead == 'r' || + lookahead == 't') ADVANCE(1283); + END_STATE(); + case 1274: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '.' || + lookahead == '<') ADVANCE(583); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1317); + END_STATE(); + case 1275: + ACCEPT_TOKEN(anon_sym_u); + END_STATE(); + case 1276: + ACCEPT_TOKEN(anon_sym_u); + if (lookahead == 'n') ADVANCE(412); + END_STATE(); + case 1277: + ACCEPT_TOKEN(aux_sym__uni_character_literal_token1); + END_STATE(); + case 1278: + ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); + END_STATE(); + case 1279: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 1280: + ACCEPT_TOKEN(sym_raw_str_interpolation_start); + END_STATE(); + case 1281: + ACCEPT_TOKEN(anon_sym_BSLASH_LPAREN); + END_STATE(); + case 1282: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 1283: + ACCEPT_TOKEN(sym__escaped_identifier); + END_STATE(); + case 1284: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 1285: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 1286: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '.') ADVANCE(1312); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '=') ADVANCE(1382); + if (lookahead == '&' || + lookahead == '/' || + lookahead == '>' || + lookahead == '?') ADVANCE(1309); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1308); + END_STATE(); + case 1287: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 1288: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 1289: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 1290: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 1291: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '<') ADVANCE(91); + if (lookahead == '&' || + lookahead == '/' || + ('=' <= lookahead && lookahead <= '?')) ADVANCE(1313); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '.' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1312); + END_STATE(); + case 1292: + ACCEPT_TOKEN(anon_sym_Type); + END_STATE(); + case 1293: + ACCEPT_TOKEN(anon_sym_Protocol); + END_STATE(); + case 1294: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 1295: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.' || + lookahead == '<') ADVANCE(583); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1317); + END_STATE(); + case 1296: + ACCEPT_TOKEN(sym__immediate_quest); + END_STATE(); + case 1297: + ACCEPT_TOKEN(sym__immediate_quest); + if (lookahead == '.' || + lookahead == '<') ADVANCE(583); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1317); + END_STATE(); + case 1298: + ACCEPT_TOKEN(anon_sym_some); + END_STATE(); + case 1299: + ACCEPT_TOKEN(anon_sym_some); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1300: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 1301: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '.' || + lookahead == '<') ADVANCE(583); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1317); + END_STATE(); + case 1302: + ACCEPT_TOKEN(anon_sym_async); + END_STATE(); + case 1303: + ACCEPT_TOKEN(anon_sym_async); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1304: + ACCEPT_TOKEN(anon_sym_async); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1305: + ACCEPT_TOKEN(anon_sym_POUNDselector); + END_STATE(); + case 1306: + ACCEPT_TOKEN(anon_sym_getter_COLON); + END_STATE(); + case 1307: + ACCEPT_TOKEN(anon_sym_setter_COLON); + END_STATE(); + case 1308: + ACCEPT_TOKEN(aux_sym_custom_operator_token1); + if (lookahead == '.') ADVANCE(1312); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '&' || + lookahead == '/' || + ('=' <= lookahead && lookahead <= '?')) ADVANCE(1309); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1308); + END_STATE(); + case 1309: + ACCEPT_TOKEN(aux_sym_custom_operator_token1); + if (lookahead == '.') ADVANCE(1313); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1309); + END_STATE(); + case 1310: + ACCEPT_TOKEN(aux_sym_custom_operator_token1); + if (lookahead == '.') ADVANCE(1314); + if (lookahead == '<') ADVANCE(84); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1310); + END_STATE(); + case 1311: + ACCEPT_TOKEN(aux_sym_custom_operator_token1); + if (lookahead == '.') ADVANCE(1315); + if (lookahead == '<') ADVANCE(630); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1311); + END_STATE(); + case 1312: + ACCEPT_TOKEN(aux_sym_custom_operator_token1); + if (lookahead == '<') ADVANCE(91); + if (lookahead == '&' || + lookahead == '/' || + ('=' <= lookahead && lookahead <= '?')) ADVANCE(1313); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '.' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1312); + END_STATE(); + case 1313: + ACCEPT_TOKEN(aux_sym_custom_operator_token1); + if (lookahead == '<') ADVANCE(91); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1313); + END_STATE(); + case 1314: + ACCEPT_TOKEN(aux_sym_custom_operator_token1); + if (lookahead == '<') ADVANCE(92); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '.' || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1314); + END_STATE(); + case 1315: + ACCEPT_TOKEN(aux_sym_custom_operator_token1); + if (lookahead == '<') ADVANCE(631); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '.' || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1315); + END_STATE(); + case 1316: + ACCEPT_TOKEN(aux_sym_custom_operator_token1); + if (lookahead == '=') ADVANCE(1384); + if (lookahead == '.' || + lookahead == '<') ADVANCE(583); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + lookahead == '>' || + lookahead == '?' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1317); + END_STATE(); + case 1317: + ACCEPT_TOKEN(aux_sym_custom_operator_token1); + if (lookahead == '.' || + lookahead == '<') ADVANCE(583); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1317); + END_STATE(); + case 1318: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 1319: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '.') ADVANCE(583); + if (lookahead == '<') ADVANCE(1405); + if (lookahead == '=') ADVANCE(1385); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + lookahead == '>' || + lookahead == '?' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1317); + END_STATE(); + case 1320: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(1385); + if (lookahead == '.' || + lookahead == '<') ADVANCE(583); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + lookahead == '>' || + lookahead == '?' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1317); + END_STATE(); + case 1321: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 1322: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1386); + if (lookahead == '>') ADVANCE(1406); + if (lookahead == '.' || + lookahead == '<') ADVANCE(583); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + lookahead == '?' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1317); + END_STATE(); + case 1323: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1386); + if (lookahead == '.' || + lookahead == '<') ADVANCE(583); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + lookahead == '>' || + lookahead == '?' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1317); + END_STATE(); + case 1324: + ACCEPT_TOKEN(sym__await_operator); + END_STATE(); + case 1325: + ACCEPT_TOKEN(sym__await_operator); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1326: + ACCEPT_TOKEN(sym__await_operator); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1327: + ACCEPT_TOKEN(anon_sym_POUNDfile); + if (lookahead == 'I') ADVANCE(98); + if (lookahead == 'L') ADVANCE(327); + if (lookahead == 'P') ADVANCE(143); + END_STATE(); + case 1328: + ACCEPT_TOKEN(anon_sym_POUNDfileID); + END_STATE(); + case 1329: + ACCEPT_TOKEN(anon_sym_POUNDfilePath); + END_STATE(); + case 1330: + ACCEPT_TOKEN(anon_sym_POUNDline); + END_STATE(); + case 1331: + ACCEPT_TOKEN(anon_sym_POUNDcolumn); + END_STATE(); + case 1332: + ACCEPT_TOKEN(anon_sym_POUNDfunction); + END_STATE(); + case 1333: + ACCEPT_TOKEN(anon_sym_POUNDdsohandle); + END_STATE(); + case 1334: + ACCEPT_TOKEN(anon_sym_POUNDcolorLiteral); + END_STATE(); + case 1335: + ACCEPT_TOKEN(anon_sym_POUNDfileLiteral); + END_STATE(); + case 1336: + ACCEPT_TOKEN(anon_sym_POUNDimageLiteral); + END_STATE(); + case 1337: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 1338: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 1339: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'd') ADVANCE(748); + if (lookahead == 'f') ADVANCE(739); + if (lookahead == 'i') ADVANCE(863); + if (lookahead == 'o') ADVANCE(893); + if (lookahead == 't') ADVANCE(710); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1340: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 'd') ADVANCE(748); + if (lookahead == 'i') ADVANCE(863); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1341: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'd') ADVANCE(320); + if (lookahead == 'f') ADVANCE(293); + if (lookahead == 'i') ADVANCE(509); + if (lookahead == 'o') ADVANCE(554); + if (lookahead == 't') ADVANCE(242); + END_STATE(); + case 1342: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1343: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 1344: + ACCEPT_TOKEN(anon_sym_self); + END_STATE(); + case 1345: + ACCEPT_TOKEN(anon_sym_self); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1346: + ACCEPT_TOKEN(anon_sym_self); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1347: + ACCEPT_TOKEN(anon_sym_super); + END_STATE(); + case 1348: + ACCEPT_TOKEN(anon_sym_super); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1349: + ACCEPT_TOKEN(anon_sym_super); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1350: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 1351: + ACCEPT_TOKEN(anon_sym_if); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1352: + ACCEPT_TOKEN(anon_sym_guard); + END_STATE(); + case 1353: + ACCEPT_TOKEN(anon_sym_guard); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1354: + ACCEPT_TOKEN(anon_sym_switch); + END_STATE(); + case 1355: + ACCEPT_TOKEN(anon_sym_switch); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1356: + ACCEPT_TOKEN(anon_sym_case); + END_STATE(); + case 1357: + ACCEPT_TOKEN(anon_sym_case); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1358: + ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1359: + ACCEPT_TOKEN(anon_sym_fallthrough); + END_STATE(); + case 1360: + ACCEPT_TOKEN(anon_sym_fallthrough); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1361: + ACCEPT_TOKEN(anon_sym_fallthrough); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1362: + ACCEPT_TOKEN(anon_sym_do); + END_STATE(); + case 1363: + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1364: + ACCEPT_TOKEN(anon_sym_POUNDkeyPath); + END_STATE(); + case 1365: + ACCEPT_TOKEN(anon_sym_try); + if (lookahead == '!') ADVANCE(1368); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == '?') ADVANCE(1369); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1366: + ACCEPT_TOKEN(anon_sym_try); + if (lookahead == '!') ADVANCE(1368); + if (lookahead == '?') ADVANCE(1369); + END_STATE(); + case 1367: + ACCEPT_TOKEN(anon_sym_try); + if (lookahead == '!') ADVANCE(1368); + if (lookahead == '?') ADVANCE(1369); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1368: + ACCEPT_TOKEN(anon_sym_try_BANG); + END_STATE(); + case 1369: + ACCEPT_TOKEN(anon_sym_try_QMARK); + END_STATE(); + case 1370: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 1371: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + if (lookahead == '.') ADVANCE(1313); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1309); + END_STATE(); + case 1372: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 1373: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + if (lookahead == '.') ADVANCE(1313); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1309); + END_STATE(); + case 1374: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 1375: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + if (lookahead == '.') ADVANCE(1313); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1309); + END_STATE(); + case 1376: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 1377: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + if (lookahead == '.') ADVANCE(1314); + if (lookahead == '<') ADVANCE(84); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1310); + END_STATE(); + case 1378: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 1379: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + if (lookahead == '.') ADVANCE(1313); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1309); + END_STATE(); + case 1380: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 1381: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(1316); + if (lookahead == '.' || + lookahead == '<') ADVANCE(583); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + lookahead == '>' || + lookahead == '?' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1317); + END_STATE(); + case 1382: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '.') ADVANCE(1313); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '=') ADVANCE(1383); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + lookahead == '>' || + lookahead == '?' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1309); + END_STATE(); + case 1383: + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + if (lookahead == '.') ADVANCE(1313); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1309); + END_STATE(); + case 1384: + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + if (lookahead == '.' || + lookahead == '<') ADVANCE(583); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1317); + END_STATE(); + case 1385: + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '.' || + lookahead == '<') ADVANCE(583); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1317); + END_STATE(); + case 1386: + ACCEPT_TOKEN(anon_sym_GT_EQ); + if (lookahead == '.' || + lookahead == '<') ADVANCE(583); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1317); + END_STATE(); + case 1387: + ACCEPT_TOKEN(anon_sym_is); + END_STATE(); + case 1388: + ACCEPT_TOKEN(anon_sym_is); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1389: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(1400); + if (lookahead == '.') ADVANCE(1312); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '=') ADVANCE(1371); + if (lookahead == '&' || + lookahead == '/' || + lookahead == '>' || + lookahead == '?') ADVANCE(1309); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '-' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1308); + END_STATE(); + case 1390: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(1400); + if (lookahead == '.') ADVANCE(1312); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '&' || + lookahead == '/' || + ('=' <= lookahead && lookahead <= '?')) ADVANCE(1309); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '-' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1308); + END_STATE(); + case 1391: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(1401); + if (lookahead == '.') ADVANCE(1312); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '=') ADVANCE(1373); + if (lookahead == '&' || + lookahead == '/' || + lookahead == '>' || + lookahead == '?') ADVANCE(1309); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1308); + END_STATE(); + case 1392: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(1401); + if (lookahead == '.') ADVANCE(1312); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '&' || + lookahead == '/' || + ('=' <= lookahead && lookahead <= '?')) ADVANCE(1309); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1308); + END_STATE(); + case 1393: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 1394: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '.') ADVANCE(1312); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '=') ADVANCE(1375); + if (lookahead == '&' || + lookahead == '/' || + lookahead == '>' || + lookahead == '?') ADVANCE(1309); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1308); + END_STATE(); + case 1395: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '.') ADVANCE(1312); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '&' || + lookahead == '/' || + ('=' <= lookahead && lookahead <= '?')) ADVANCE(1309); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1308); + END_STATE(); + case 1396: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '.') ADVANCE(1314); + if (lookahead == '/') ADVANCE(629); + if (lookahead == '<') ADVANCE(84); + if (lookahead == '=') ADVANCE(1377); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '>' || + lookahead == '?' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1310); + END_STATE(); + case 1397: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '.') ADVANCE(1314); + if (lookahead == '/') ADVANCE(629); + if (lookahead == '<') ADVANCE(84); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1310); + END_STATE(); + case 1398: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '.') ADVANCE(1312); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '=') ADVANCE(1379); + if (lookahead == '&' || + lookahead == '/' || + lookahead == '>' || + lookahead == '?') ADVANCE(1309); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1308); + END_STATE(); + case 1399: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '.') ADVANCE(1312); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '&' || + lookahead == '/' || + ('=' <= lookahead && lookahead <= '?')) ADVANCE(1309); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1308); + END_STATE(); + case 1400: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + if (lookahead == '.') ADVANCE(1312); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '&' || + lookahead == '/' || + ('=' <= lookahead && lookahead <= '?')) ADVANCE(1309); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1308); + END_STATE(); + case 1401: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (lookahead == '.') ADVANCE(1312); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '&' || + lookahead == '/' || + ('=' <= lookahead && lookahead <= '?')) ADVANCE(1309); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1308); + END_STATE(); + case 1402: + ACCEPT_TOKEN(anon_sym_TILDE); + if (lookahead == '.') ADVANCE(1312); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '&' || + lookahead == '/' || + ('=' <= lookahead && lookahead <= '?')) ADVANCE(1309); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1308); + END_STATE(); + case 1403: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '.') ADVANCE(1312); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '&' || + lookahead == '/' || + ('=' <= lookahead && lookahead <= '?')) ADVANCE(1309); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1308); + END_STATE(); + case 1404: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '.') ADVANCE(1312); + if (lookahead == '<') ADVANCE(82); + if (lookahead == '&' || + lookahead == '/' || + ('=' <= lookahead && lookahead <= '?')) ADVANCE(1309); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1308); + END_STATE(); + case 1405: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '.' || + lookahead == '<') ADVANCE(583); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1317); + END_STATE(); + case 1406: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '.' || + lookahead == '<') ADVANCE(583); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('=' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|' || + lookahead == '~') ADVANCE(1317); + END_STATE(); + case 1407: + ACCEPT_TOKEN(sym_statement_label); + END_STATE(); + case 1408: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 1409: + ACCEPT_TOKEN(anon_sym_for); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1410: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 1411: + ACCEPT_TOKEN(anon_sym_while); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1412: + ACCEPT_TOKEN(anon_sym_repeat); + END_STATE(); + case 1413: + ACCEPT_TOKEN(anon_sym_repeat); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1414: + ACCEPT_TOKEN(sym_throw_keyword); + END_STATE(); + case 1415: + ACCEPT_TOKEN(sym_throw_keyword); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1416: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 1417: + ACCEPT_TOKEN(anon_sym_return); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1418: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 1419: + ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1420: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 1421: + ACCEPT_TOKEN(anon_sym_break); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1422: + ACCEPT_TOKEN(anon_sym_yield); + END_STATE(); + case 1423: + ACCEPT_TOKEN(anon_sym_yield); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1424: + ACCEPT_TOKEN(anon_sym_POUNDavailable); + END_STATE(); + case 1425: + ACCEPT_TOKEN(anon_sym_import); + END_STATE(); + case 1426: + ACCEPT_TOKEN(anon_sym_import); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1427: + ACCEPT_TOKEN(anon_sym_import); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1428: + ACCEPT_TOKEN(anon_sym_typealias); + END_STATE(); + case 1429: + ACCEPT_TOKEN(anon_sym_typealias); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1430: + ACCEPT_TOKEN(anon_sym_typealias); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1431: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); + case 1432: + ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1433: + ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1434: + ACCEPT_TOKEN(anon_sym_class); + END_STATE(); + case 1435: + ACCEPT_TOKEN(anon_sym_class); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1436: + ACCEPT_TOKEN(anon_sym_class); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1437: + ACCEPT_TOKEN(anon_sym_enum); + END_STATE(); + case 1438: + ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1439: + ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1440: + ACCEPT_TOKEN(anon_sym_protocol); + END_STATE(); + case 1441: + ACCEPT_TOKEN(anon_sym_protocol); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1442: + ACCEPT_TOKEN(anon_sym_protocol); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1443: + ACCEPT_TOKEN(anon_sym_let); + END_STATE(); + case 1444: + ACCEPT_TOKEN(anon_sym_let); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1445: + ACCEPT_TOKEN(anon_sym_let); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1446: + ACCEPT_TOKEN(anon_sym_var); + END_STATE(); + case 1447: + ACCEPT_TOKEN(anon_sym_var); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1448: + ACCEPT_TOKEN(anon_sym_var); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1449: + ACCEPT_TOKEN(anon_sym_func); + END_STATE(); + case 1450: + ACCEPT_TOKEN(anon_sym_func); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1451: + ACCEPT_TOKEN(anon_sym_func); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1452: + ACCEPT_TOKEN(anon_sym_extension); + END_STATE(); + case 1453: + ACCEPT_TOKEN(anon_sym_extension); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1454: + ACCEPT_TOKEN(anon_sym_extension); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1455: + ACCEPT_TOKEN(anon_sym_indirect); + END_STATE(); + case 1456: + ACCEPT_TOKEN(anon_sym_indirect); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1457: + ACCEPT_TOKEN(anon_sym_indirect); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1458: + ACCEPT_TOKEN(anon_sym_init); + END_STATE(); + case 1459: + ACCEPT_TOKEN(anon_sym_init); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1460: + ACCEPT_TOKEN(anon_sym_init); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1461: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 1462: + ACCEPT_TOKEN(anon_sym_deinit); + END_STATE(); + case 1463: + ACCEPT_TOKEN(anon_sym_deinit); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1464: + ACCEPT_TOKEN(anon_sym_subscript); + END_STATE(); + case 1465: + ACCEPT_TOKEN(anon_sym_subscript); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1466: + ACCEPT_TOKEN(anon_sym_get); + END_STATE(); + case 1467: + ACCEPT_TOKEN(anon_sym_get); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1468: + ACCEPT_TOKEN(anon_sym_get); + if (lookahead == 't') ADVANCE(247); + END_STATE(); + case 1469: + ACCEPT_TOKEN(anon_sym_set); + END_STATE(); + case 1470: + ACCEPT_TOKEN(anon_sym_set); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1471: + ACCEPT_TOKEN(anon_sym_set); + if (lookahead == 'p') ADVANCE(147); + if (lookahead == 't') ADVANCE(248); + END_STATE(); + case 1472: + ACCEPT_TOKEN(anon_sym__modify); + END_STATE(); + case 1473: + ACCEPT_TOKEN(anon_sym__modify); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1474: + ACCEPT_TOKEN(anon_sym_prefix); + END_STATE(); + case 1475: + ACCEPT_TOKEN(anon_sym_prefix); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1476: + ACCEPT_TOKEN(anon_sym_prefix); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1477: + ACCEPT_TOKEN(anon_sym_infix); + END_STATE(); + case 1478: + ACCEPT_TOKEN(anon_sym_infix); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1479: + ACCEPT_TOKEN(anon_sym_infix); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1480: + ACCEPT_TOKEN(anon_sym_postfix); + END_STATE(); + case 1481: + ACCEPT_TOKEN(anon_sym_postfix); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1482: + ACCEPT_TOKEN(anon_sym_postfix); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1483: + ACCEPT_TOKEN(anon_sym_operator); + END_STATE(); + case 1484: + ACCEPT_TOKEN(anon_sym_precedencegroup); + END_STATE(); + case 1485: + ACCEPT_TOKEN(anon_sym_precedencegroup); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1486: + ACCEPT_TOKEN(anon_sym_precedencegroup); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1487: + ACCEPT_TOKEN(anon_sym_associatedtype); + END_STATE(); + case 1488: + ACCEPT_TOKEN(anon_sym_associatedtype); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1489: + ACCEPT_TOKEN(anon_sym_associatedtype); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1490: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 1491: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == 'a') ADVANCE(550); + if (lookahead == 'e') ADVANCE(491); + END_STATE(); + case 1492: + ACCEPT_TOKEN(sym_wildcard_pattern); + END_STATE(); + case 1493: + ACCEPT_TOKEN(sym_wildcard_pattern); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1494: + ACCEPT_TOKEN(sym_property_behavior_modifier); + END_STATE(); + case 1495: + ACCEPT_TOKEN(sym_property_behavior_modifier); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1496: + ACCEPT_TOKEN(sym_property_behavior_modifier); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1497: + ACCEPT_TOKEN(anon_sym_override); + END_STATE(); + case 1498: + ACCEPT_TOKEN(anon_sym_override); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1499: + ACCEPT_TOKEN(anon_sym_override); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1500: + ACCEPT_TOKEN(anon_sym_convenience); + END_STATE(); + case 1501: + ACCEPT_TOKEN(anon_sym_convenience); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1502: + ACCEPT_TOKEN(anon_sym_convenience); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1503: + ACCEPT_TOKEN(anon_sym_required); + END_STATE(); + case 1504: + ACCEPT_TOKEN(anon_sym_required); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1505: + ACCEPT_TOKEN(anon_sym_required); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1506: + ACCEPT_TOKEN(anon_sym_public); + END_STATE(); + case 1507: + ACCEPT_TOKEN(anon_sym_public); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1508: + ACCEPT_TOKEN(anon_sym_public); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1509: + ACCEPT_TOKEN(anon_sym_private); + END_STATE(); + case 1510: + ACCEPT_TOKEN(anon_sym_private); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1511: + ACCEPT_TOKEN(anon_sym_private); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1512: + ACCEPT_TOKEN(anon_sym_internal); + END_STATE(); + case 1513: + ACCEPT_TOKEN(anon_sym_internal); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1514: + ACCEPT_TOKEN(anon_sym_internal); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1515: + ACCEPT_TOKEN(anon_sym_fileprivate); + END_STATE(); + case 1516: + ACCEPT_TOKEN(anon_sym_fileprivate); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1517: + ACCEPT_TOKEN(anon_sym_fileprivate); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1518: + ACCEPT_TOKEN(anon_sym_open); + END_STATE(); + case 1519: + ACCEPT_TOKEN(anon_sym_open); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1520: + ACCEPT_TOKEN(anon_sym_open); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1521: + ACCEPT_TOKEN(anon_sym_mutating); + END_STATE(); + case 1522: + ACCEPT_TOKEN(anon_sym_mutating); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1523: + ACCEPT_TOKEN(anon_sym_mutating); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1524: + ACCEPT_TOKEN(anon_sym_nonmutating); + END_STATE(); + case 1525: + ACCEPT_TOKEN(anon_sym_nonmutating); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1526: + ACCEPT_TOKEN(anon_sym_nonmutating); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1527: + ACCEPT_TOKEN(anon_sym_static); + END_STATE(); + case 1528: + ACCEPT_TOKEN(anon_sym_static); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1529: + ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1530: + ACCEPT_TOKEN(anon_sym_dynamic); + END_STATE(); + case 1531: + ACCEPT_TOKEN(anon_sym_dynamic); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1532: + ACCEPT_TOKEN(anon_sym_dynamic); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1533: + ACCEPT_TOKEN(anon_sym_optional); + END_STATE(); + case 1534: + ACCEPT_TOKEN(anon_sym_optional); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1535: + ACCEPT_TOKEN(anon_sym_optional); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1536: + ACCEPT_TOKEN(anon_sym_final); + END_STATE(); + case 1537: + ACCEPT_TOKEN(anon_sym_final); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1538: + ACCEPT_TOKEN(anon_sym_final); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1539: + ACCEPT_TOKEN(anon_sym_inout); + END_STATE(); + case 1540: + ACCEPT_TOKEN(anon_sym_inout); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1541: + ACCEPT_TOKEN(anon_sym_inout); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1542: + ACCEPT_TOKEN(anon_sym_ATescaping); + END_STATE(); + case 1543: + ACCEPT_TOKEN(anon_sym_ATautoclosure); + END_STATE(); + case 1544: + ACCEPT_TOKEN(anon_sym_weak); + END_STATE(); + case 1545: + ACCEPT_TOKEN(anon_sym_weak); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1546: + ACCEPT_TOKEN(anon_sym_weak); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1547: + ACCEPT_TOKEN(anon_sym_unowned); + if (lookahead == '(') ADVANCE(503); + END_STATE(); + case 1548: + ACCEPT_TOKEN(anon_sym_unowned); + if (lookahead == '(') ADVANCE(503); + if (lookahead == ':') ADVANCE(1407); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(912); + if (aux_sym_simple_identifier_token1_character_set_7(lookahead)) ADVANCE(1209); + END_STATE(); + case 1549: + ACCEPT_TOKEN(anon_sym_unowned); + if (lookahead == '(') ADVANCE(503); + if (lookahead == 65039) ADVANCE(1208); + if ((127995 <= lookahead && lookahead <= 127999)) ADVANCE(1209); + if (aux_sym_simple_identifier_token1_character_set_6(lookahead)) ADVANCE(1209); + END_STATE(); + case 1550: + ACCEPT_TOKEN(anon_sym_unowned_LPARENsafe_RPAREN); + END_STATE(); + case 1551: + ACCEPT_TOKEN(anon_sym_unowned_LPARENunsafe_RPAREN); + END_STATE(); + case 1552: + ACCEPT_TOKEN(anon_sym_property); + END_STATE(); + case 1553: + ACCEPT_TOKEN(anon_sym_receiver); + END_STATE(); + case 1554: + ACCEPT_TOKEN(anon_sym_param); + END_STATE(); + case 1555: + ACCEPT_TOKEN(anon_sym_setparam); + END_STATE(); + case 1556: + ACCEPT_TOKEN(anon_sym_delegate); + END_STATE(); + case 1557: + ACCEPT_TOKEN(sym_directive); + if (lookahead == 'f') ADVANCE(1560); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1560); + END_STATE(); + case 1558: + ACCEPT_TOKEN(sym_directive); + if (lookahead == 'i') ADVANCE(1557); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1560); + END_STATE(); + case 1559: + ACCEPT_TOKEN(sym_directive); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(1559); + END_STATE(); + case 1560: + ACCEPT_TOKEN(sym_directive); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(1560); + END_STATE(); + case 1561: + ACCEPT_TOKEN(sym_diagnostic); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(1561); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 592, .external_lex_state = 2}, + [2] = {.lex_state = 16, .external_lex_state = 3}, + [3] = {.lex_state = 16, .external_lex_state = 3}, + [4] = {.lex_state = 592, .external_lex_state = 2}, + [5] = {.lex_state = 592, .external_lex_state = 2}, + [6] = {.lex_state = 592, .external_lex_state = 2}, + [7] = {.lex_state = 592, .external_lex_state = 2}, + [8] = {.lex_state = 17, .external_lex_state = 3}, + [9] = {.lex_state = 17, .external_lex_state = 3}, + [10] = {.lex_state = 18, .external_lex_state = 2}, + [11] = {.lex_state = 18, .external_lex_state = 2}, + [12] = {.lex_state = 18, .external_lex_state = 2}, + [13] = {.lex_state = 18, .external_lex_state = 2}, + [14] = {.lex_state = 20, .external_lex_state = 2}, + [15] = {.lex_state = 20, .external_lex_state = 2}, + [16] = {.lex_state = 20, .external_lex_state = 2}, + [17] = {.lex_state = 20, .external_lex_state = 2}, + [18] = {.lex_state = 20, .external_lex_state = 2}, + [19] = {.lex_state = 20, .external_lex_state = 2}, + [20] = {.lex_state = 20, .external_lex_state = 2}, + [21] = {.lex_state = 20, .external_lex_state = 2}, + [22] = {.lex_state = 20, .external_lex_state = 2}, + [23] = {.lex_state = 20, .external_lex_state = 2}, + [24] = {.lex_state = 20, .external_lex_state = 2}, + [25] = {.lex_state = 20, .external_lex_state = 2}, + [26] = {.lex_state = 20, .external_lex_state = 2}, + [27] = {.lex_state = 20, .external_lex_state = 2}, + [28] = {.lex_state = 20, .external_lex_state = 2}, + [29] = {.lex_state = 20, .external_lex_state = 2}, + [30] = {.lex_state = 20, .external_lex_state = 2}, + [31] = {.lex_state = 20, .external_lex_state = 2}, + [32] = {.lex_state = 20, .external_lex_state = 2}, + [33] = {.lex_state = 20, .external_lex_state = 2}, + [34] = {.lex_state = 20, .external_lex_state = 2}, + [35] = {.lex_state = 20, .external_lex_state = 2}, + [36] = {.lex_state = 20, .external_lex_state = 2}, + [37] = {.lex_state = 20, .external_lex_state = 2}, + [38] = {.lex_state = 20, .external_lex_state = 2}, + [39] = {.lex_state = 20, .external_lex_state = 2}, + [40] = {.lex_state = 20, .external_lex_state = 2}, + [41] = {.lex_state = 20, .external_lex_state = 2}, + [42] = {.lex_state = 19, .external_lex_state = 2}, + [43] = {.lex_state = 19, .external_lex_state = 2}, + [44] = {.lex_state = 19, .external_lex_state = 2}, + [45] = {.lex_state = 19, .external_lex_state = 2}, + [46] = {.lex_state = 19, .external_lex_state = 2}, + [47] = {.lex_state = 19, .external_lex_state = 2}, + [48] = {.lex_state = 19, .external_lex_state = 2}, + [49] = {.lex_state = 19, .external_lex_state = 2}, + [50] = {.lex_state = 19, .external_lex_state = 2}, + [51] = {.lex_state = 19, .external_lex_state = 2}, + [52] = {.lex_state = 19, .external_lex_state = 2}, + [53] = {.lex_state = 19, .external_lex_state = 2}, + [54] = {.lex_state = 19, .external_lex_state = 2}, + [55] = {.lex_state = 19, .external_lex_state = 2}, + [56] = {.lex_state = 19, .external_lex_state = 2}, + [57] = {.lex_state = 19, .external_lex_state = 2}, + [58] = {.lex_state = 19, .external_lex_state = 2}, + [59] = {.lex_state = 19, .external_lex_state = 2}, + [60] = {.lex_state = 19, .external_lex_state = 2}, + [61] = {.lex_state = 19, .external_lex_state = 2}, + [62] = {.lex_state = 19, .external_lex_state = 2}, + [63] = {.lex_state = 19, .external_lex_state = 2}, + [64] = {.lex_state = 19, .external_lex_state = 2}, + [65] = {.lex_state = 19, .external_lex_state = 2}, + [66] = {.lex_state = 19, .external_lex_state = 2}, + [67] = {.lex_state = 19, .external_lex_state = 2}, + [68] = {.lex_state = 19, .external_lex_state = 2}, + [69] = {.lex_state = 19, .external_lex_state = 2}, + [70] = {.lex_state = 19, .external_lex_state = 2}, + [71] = {.lex_state = 19, .external_lex_state = 2}, + [72] = {.lex_state = 19, .external_lex_state = 2}, + [73] = {.lex_state = 19, .external_lex_state = 2}, + [74] = {.lex_state = 19, .external_lex_state = 2}, + [75] = {.lex_state = 19, .external_lex_state = 2}, + [76] = {.lex_state = 19, .external_lex_state = 2}, + [77] = {.lex_state = 19, .external_lex_state = 2}, + [78] = {.lex_state = 19, .external_lex_state = 2}, + [79] = {.lex_state = 19, .external_lex_state = 2}, + [80] = {.lex_state = 19, .external_lex_state = 2}, + [81] = {.lex_state = 19, .external_lex_state = 2}, + [82] = {.lex_state = 19, .external_lex_state = 2}, + [83] = {.lex_state = 19, .external_lex_state = 2}, + [84] = {.lex_state = 19, .external_lex_state = 2}, + [85] = {.lex_state = 19, .external_lex_state = 2}, + [86] = {.lex_state = 19, .external_lex_state = 2}, + [87] = {.lex_state = 19, .external_lex_state = 2}, + [88] = {.lex_state = 19, .external_lex_state = 2}, + [89] = {.lex_state = 19, .external_lex_state = 2}, + [90] = {.lex_state = 19, .external_lex_state = 2}, + [91] = {.lex_state = 19, .external_lex_state = 2}, + [92] = {.lex_state = 19, .external_lex_state = 2}, + [93] = {.lex_state = 19, .external_lex_state = 2}, + [94] = {.lex_state = 19, .external_lex_state = 2}, + [95] = {.lex_state = 19, .external_lex_state = 2}, + [96] = {.lex_state = 19, .external_lex_state = 2}, + [97] = {.lex_state = 19, .external_lex_state = 2}, + [98] = {.lex_state = 19, .external_lex_state = 2}, + [99] = {.lex_state = 19, .external_lex_state = 2}, + [100] = {.lex_state = 19, .external_lex_state = 2}, + [101] = {.lex_state = 19, .external_lex_state = 2}, + [102] = {.lex_state = 19, .external_lex_state = 2}, + [103] = {.lex_state = 19, .external_lex_state = 2}, + [104] = {.lex_state = 19, .external_lex_state = 2}, + [105] = {.lex_state = 19, .external_lex_state = 2}, + [106] = {.lex_state = 19, .external_lex_state = 2}, + [107] = {.lex_state = 19, .external_lex_state = 2}, + [108] = {.lex_state = 19, .external_lex_state = 2}, + [109] = {.lex_state = 19, .external_lex_state = 2}, + [110] = {.lex_state = 19, .external_lex_state = 2}, + [111] = {.lex_state = 19, .external_lex_state = 2}, + [112] = {.lex_state = 19, .external_lex_state = 2}, + [113] = {.lex_state = 19, .external_lex_state = 2}, + [114] = {.lex_state = 19, .external_lex_state = 2}, + [115] = {.lex_state = 19, .external_lex_state = 2}, + [116] = {.lex_state = 19, .external_lex_state = 2}, + [117] = {.lex_state = 19, .external_lex_state = 2}, + [118] = {.lex_state = 19, .external_lex_state = 2}, + [119] = {.lex_state = 14, .external_lex_state = 4}, + [120] = {.lex_state = 7, .external_lex_state = 2}, + [121] = {.lex_state = 8, .external_lex_state = 2}, + [122] = {.lex_state = 15, .external_lex_state = 2}, + [123] = {.lex_state = 9, .external_lex_state = 2}, + [124] = {.lex_state = 9, .external_lex_state = 2}, + [125] = {.lex_state = 9, .external_lex_state = 2}, + [126] = {.lex_state = 9, .external_lex_state = 2}, + [127] = {.lex_state = 9, .external_lex_state = 2}, + [128] = {.lex_state = 9, .external_lex_state = 2}, + [129] = {.lex_state = 24, .external_lex_state = 2}, + [130] = {.lex_state = 24, .external_lex_state = 2}, + [131] = {.lex_state = 24, .external_lex_state = 2}, + [132] = {.lex_state = 24, .external_lex_state = 2}, + [133] = {.lex_state = 24, .external_lex_state = 2}, + [134] = {.lex_state = 24, .external_lex_state = 2}, + [135] = {.lex_state = 24, .external_lex_state = 2}, + [136] = {.lex_state = 24, .external_lex_state = 2}, + [137] = {.lex_state = 24, .external_lex_state = 2}, + [138] = {.lex_state = 24, .external_lex_state = 2}, + [139] = {.lex_state = 24, .external_lex_state = 2}, + [140] = {.lex_state = 24, .external_lex_state = 2}, + [141] = {.lex_state = 24, .external_lex_state = 2}, + [142] = {.lex_state = 24, .external_lex_state = 2}, + [143] = {.lex_state = 21, .external_lex_state = 2}, + [144] = {.lex_state = 21, .external_lex_state = 2}, + [145] = {.lex_state = 21, .external_lex_state = 2}, + [146] = {.lex_state = 21, .external_lex_state = 2}, + [147] = {.lex_state = 6, .external_lex_state = 2}, + [148] = {.lex_state = 21, .external_lex_state = 2}, + [149] = {.lex_state = 21, .external_lex_state = 2}, + [150] = {.lex_state = 21, .external_lex_state = 2}, + [151] = {.lex_state = 21, .external_lex_state = 2}, + [152] = {.lex_state = 21, .external_lex_state = 2}, + [153] = {.lex_state = 21, .external_lex_state = 2}, + [154] = {.lex_state = 6, .external_lex_state = 2}, + [155] = {.lex_state = 21, .external_lex_state = 2}, + [156] = {.lex_state = 21, .external_lex_state = 2}, + [157] = {.lex_state = 6, .external_lex_state = 2}, + [158] = {.lex_state = 6, .external_lex_state = 2}, + [159] = {.lex_state = 21, .external_lex_state = 2}, + [160] = {.lex_state = 21, .external_lex_state = 2}, + [161] = {.lex_state = 6, .external_lex_state = 2}, + [162] = {.lex_state = 6, .external_lex_state = 2}, + [163] = {.lex_state = 6, .external_lex_state = 2}, + [164] = {.lex_state = 21, .external_lex_state = 2}, + [165] = {.lex_state = 21, .external_lex_state = 2}, + [166] = {.lex_state = 21, .external_lex_state = 2}, + [167] = {.lex_state = 6, .external_lex_state = 2}, + [168] = {.lex_state = 6, .external_lex_state = 2}, + [169] = {.lex_state = 21, .external_lex_state = 2}, + [170] = {.lex_state = 6, .external_lex_state = 2}, + [171] = {.lex_state = 6, .external_lex_state = 2}, + [172] = {.lex_state = 6, .external_lex_state = 2}, + [173] = {.lex_state = 6, .external_lex_state = 2}, + [174] = {.lex_state = 6, .external_lex_state = 2}, + [175] = {.lex_state = 6, .external_lex_state = 2}, + [176] = {.lex_state = 6, .external_lex_state = 2}, + [177] = {.lex_state = 6, .external_lex_state = 2}, + [178] = {.lex_state = 21, .external_lex_state = 2}, + [179] = {.lex_state = 6, .external_lex_state = 2}, + [180] = {.lex_state = 21, .external_lex_state = 2}, + [181] = {.lex_state = 6, .external_lex_state = 2}, + [182] = {.lex_state = 6, .external_lex_state = 2}, + [183] = {.lex_state = 21, .external_lex_state = 2}, + [184] = {.lex_state = 21, .external_lex_state = 2}, + [185] = {.lex_state = 6, .external_lex_state = 2}, + [186] = {.lex_state = 21, .external_lex_state = 2}, + [187] = {.lex_state = 21, .external_lex_state = 2}, + [188] = {.lex_state = 21, .external_lex_state = 2}, + [189] = {.lex_state = 21, .external_lex_state = 2}, + [190] = {.lex_state = 21, .external_lex_state = 2}, + [191] = {.lex_state = 21, .external_lex_state = 2}, + [192] = {.lex_state = 21, .external_lex_state = 2}, + [193] = {.lex_state = 21, .external_lex_state = 2}, + [194] = {.lex_state = 6, .external_lex_state = 2}, + [195] = {.lex_state = 21, .external_lex_state = 2}, + [196] = {.lex_state = 21, .external_lex_state = 2}, + [197] = {.lex_state = 21, .external_lex_state = 2}, + [198] = {.lex_state = 21, .external_lex_state = 2}, + [199] = {.lex_state = 21, .external_lex_state = 2}, + [200] = {.lex_state = 21, .external_lex_state = 2}, + [201] = {.lex_state = 21, .external_lex_state = 2}, + [202] = {.lex_state = 21, .external_lex_state = 2}, + [203] = {.lex_state = 6, .external_lex_state = 2}, + [204] = {.lex_state = 21, .external_lex_state = 2}, + [205] = {.lex_state = 6, .external_lex_state = 2}, + [206] = {.lex_state = 21, .external_lex_state = 2}, + [207] = {.lex_state = 21, .external_lex_state = 2}, + [208] = {.lex_state = 21, .external_lex_state = 2}, + [209] = {.lex_state = 21, .external_lex_state = 2}, + [210] = {.lex_state = 21, .external_lex_state = 2}, + [211] = {.lex_state = 21, .external_lex_state = 2}, + [212] = {.lex_state = 6, .external_lex_state = 2}, + [213] = {.lex_state = 21, .external_lex_state = 2}, + [214] = {.lex_state = 21, .external_lex_state = 2}, + [215] = {.lex_state = 21, .external_lex_state = 2}, + [216] = {.lex_state = 6, .external_lex_state = 2}, + [217] = {.lex_state = 6, .external_lex_state = 2}, + [218] = {.lex_state = 21, .external_lex_state = 2}, + [219] = {.lex_state = 21, .external_lex_state = 2}, + [220] = {.lex_state = 21, .external_lex_state = 2}, + [221] = {.lex_state = 21, .external_lex_state = 2}, + [222] = {.lex_state = 21, .external_lex_state = 2}, + [223] = {.lex_state = 6, .external_lex_state = 2}, + [224] = {.lex_state = 6, .external_lex_state = 2}, + [225] = {.lex_state = 6, .external_lex_state = 2}, + [226] = {.lex_state = 15, .external_lex_state = 2}, + [227] = {.lex_state = 22, .external_lex_state = 2}, + [228] = {.lex_state = 22, .external_lex_state = 2}, + [229] = {.lex_state = 22, .external_lex_state = 2}, + [230] = {.lex_state = 22, .external_lex_state = 2}, + [231] = {.lex_state = 22, .external_lex_state = 2}, + [232] = {.lex_state = 22, .external_lex_state = 2}, + [233] = {.lex_state = 22, .external_lex_state = 2}, + [234] = {.lex_state = 22, .external_lex_state = 2}, + [235] = {.lex_state = 22, .external_lex_state = 2}, + [236] = {.lex_state = 22, .external_lex_state = 2}, + [237] = {.lex_state = 22, .external_lex_state = 2}, + [238] = {.lex_state = 22, .external_lex_state = 2}, + [239] = {.lex_state = 22, .external_lex_state = 2}, + [240] = {.lex_state = 22, .external_lex_state = 2}, + [241] = {.lex_state = 22, .external_lex_state = 2}, + [242] = {.lex_state = 22, .external_lex_state = 2}, + [243] = {.lex_state = 22, .external_lex_state = 2}, + [244] = {.lex_state = 22, .external_lex_state = 2}, + [245] = {.lex_state = 22, .external_lex_state = 2}, + [246] = {.lex_state = 22, .external_lex_state = 2}, + [247] = {.lex_state = 22, .external_lex_state = 2}, + [248] = {.lex_state = 22, .external_lex_state = 2}, + [249] = {.lex_state = 22, .external_lex_state = 2}, + [250] = {.lex_state = 22, .external_lex_state = 2}, + [251] = {.lex_state = 22, .external_lex_state = 2}, + [252] = {.lex_state = 22, .external_lex_state = 2}, + [253] = {.lex_state = 22, .external_lex_state = 2}, + [254] = {.lex_state = 22, .external_lex_state = 2}, + [255] = {.lex_state = 22, .external_lex_state = 2}, + [256] = {.lex_state = 22, .external_lex_state = 2}, + [257] = {.lex_state = 22, .external_lex_state = 2}, + [258] = {.lex_state = 22, .external_lex_state = 2}, + [259] = {.lex_state = 22, .external_lex_state = 2}, + [260] = {.lex_state = 22, .external_lex_state = 2}, + [261] = {.lex_state = 22, .external_lex_state = 2}, + [262] = {.lex_state = 22, .external_lex_state = 2}, + [263] = {.lex_state = 22, .external_lex_state = 2}, + [264] = {.lex_state = 22, .external_lex_state = 2}, + [265] = {.lex_state = 22, .external_lex_state = 2}, + [266] = {.lex_state = 22, .external_lex_state = 2}, + [267] = {.lex_state = 22, .external_lex_state = 2}, + [268] = {.lex_state = 22, .external_lex_state = 2}, + [269] = {.lex_state = 22, .external_lex_state = 2}, + [270] = {.lex_state = 22, .external_lex_state = 2}, + [271] = {.lex_state = 22, .external_lex_state = 2}, + [272] = {.lex_state = 22, .external_lex_state = 2}, + [273] = {.lex_state = 22, .external_lex_state = 2}, + [274] = {.lex_state = 22, .external_lex_state = 2}, + [275] = {.lex_state = 6, .external_lex_state = 2}, + [276] = {.lex_state = 6, .external_lex_state = 5}, + [277] = {.lex_state = 6, .external_lex_state = 2}, + [278] = {.lex_state = 6, .external_lex_state = 2}, + [279] = {.lex_state = 6, .external_lex_state = 2}, + [280] = {.lex_state = 6, .external_lex_state = 2}, + [281] = {.lex_state = 6, .external_lex_state = 6}, + [282] = {.lex_state = 23, .external_lex_state = 2}, + [283] = {.lex_state = 6, .external_lex_state = 2}, + [284] = {.lex_state = 6, .external_lex_state = 2}, + [285] = {.lex_state = 6, .external_lex_state = 2}, + [286] = {.lex_state = 23, .external_lex_state = 2}, + [287] = {.lex_state = 6, .external_lex_state = 2}, + [288] = {.lex_state = 6, .external_lex_state = 2}, + [289] = {.lex_state = 6, .external_lex_state = 2}, + [290] = {.lex_state = 6, .external_lex_state = 2}, + [291] = {.lex_state = 6, .external_lex_state = 2}, + [292] = {.lex_state = 6, .external_lex_state = 2}, + [293] = {.lex_state = 6, .external_lex_state = 2}, + [294] = {.lex_state = 6, .external_lex_state = 2}, + [295] = {.lex_state = 6, .external_lex_state = 2}, + [296] = {.lex_state = 6, .external_lex_state = 2}, + [297] = {.lex_state = 6, .external_lex_state = 2}, + [298] = {.lex_state = 6, .external_lex_state = 2}, + [299] = {.lex_state = 6, .external_lex_state = 2}, + [300] = {.lex_state = 6, .external_lex_state = 2}, + [301] = {.lex_state = 6, .external_lex_state = 2}, + [302] = {.lex_state = 23, .external_lex_state = 2}, + [303] = {.lex_state = 23, .external_lex_state = 2}, + [304] = {.lex_state = 6, .external_lex_state = 2}, + [305] = {.lex_state = 6, .external_lex_state = 2}, + [306] = {.lex_state = 6, .external_lex_state = 2}, + [307] = {.lex_state = 23, .external_lex_state = 2}, + [308] = {.lex_state = 6, .external_lex_state = 2}, + [309] = {.lex_state = 6, .external_lex_state = 2}, + [310] = {.lex_state = 6, .external_lex_state = 2}, + [311] = {.lex_state = 6, .external_lex_state = 2}, + [312] = {.lex_state = 6, .external_lex_state = 2}, + [313] = {.lex_state = 6, .external_lex_state = 2}, + [314] = {.lex_state = 6, .external_lex_state = 2}, + [315] = {.lex_state = 6, .external_lex_state = 2}, + [316] = {.lex_state = 6, .external_lex_state = 2}, + [317] = {.lex_state = 23, .external_lex_state = 2}, + [318] = {.lex_state = 6, .external_lex_state = 2}, + [319] = {.lex_state = 6, .external_lex_state = 2}, + [320] = {.lex_state = 6, .external_lex_state = 2}, + [321] = {.lex_state = 6, .external_lex_state = 2}, + [322] = {.lex_state = 6, .external_lex_state = 2}, + [323] = {.lex_state = 6, .external_lex_state = 2}, + [324] = {.lex_state = 6, .external_lex_state = 2}, + [325] = {.lex_state = 6, .external_lex_state = 2}, + [326] = {.lex_state = 6, .external_lex_state = 2}, + [327] = {.lex_state = 6, .external_lex_state = 2}, + [328] = {.lex_state = 6, .external_lex_state = 2}, + [329] = {.lex_state = 6, .external_lex_state = 2}, + [330] = {.lex_state = 6, .external_lex_state = 2}, + [331] = {.lex_state = 6, .external_lex_state = 2}, + [332] = {.lex_state = 6, .external_lex_state = 2}, + [333] = {.lex_state = 6, .external_lex_state = 2}, + [334] = {.lex_state = 6, .external_lex_state = 2}, + [335] = {.lex_state = 6, .external_lex_state = 2}, + [336] = {.lex_state = 6, .external_lex_state = 2}, + [337] = {.lex_state = 6, .external_lex_state = 2}, + [338] = {.lex_state = 6, .external_lex_state = 2}, + [339] = {.lex_state = 6, .external_lex_state = 2}, + [340] = {.lex_state = 6, .external_lex_state = 2}, + [341] = {.lex_state = 6, .external_lex_state = 2}, + [342] = {.lex_state = 6, .external_lex_state = 2}, + [343] = {.lex_state = 6, .external_lex_state = 2}, + [344] = {.lex_state = 6, .external_lex_state = 2}, + [345] = {.lex_state = 6, .external_lex_state = 2}, + [346] = {.lex_state = 6, .external_lex_state = 2}, + [347] = {.lex_state = 6, .external_lex_state = 2}, + [348] = {.lex_state = 6, .external_lex_state = 2}, + [349] = {.lex_state = 6, .external_lex_state = 2}, + [350] = {.lex_state = 6, .external_lex_state = 2}, + [351] = {.lex_state = 6, .external_lex_state = 2}, + [352] = {.lex_state = 6, .external_lex_state = 2}, + [353] = {.lex_state = 6, .external_lex_state = 2}, + [354] = {.lex_state = 6, .external_lex_state = 2}, + [355] = {.lex_state = 6, .external_lex_state = 2}, + [356] = {.lex_state = 6, .external_lex_state = 2}, + [357] = {.lex_state = 6, .external_lex_state = 2}, + [358] = {.lex_state = 6, .external_lex_state = 2}, + [359] = {.lex_state = 6, .external_lex_state = 2}, + [360] = {.lex_state = 6, .external_lex_state = 2}, + [361] = {.lex_state = 6, .external_lex_state = 2}, + [362] = {.lex_state = 6, .external_lex_state = 2}, + [363] = {.lex_state = 6, .external_lex_state = 2}, + [364] = {.lex_state = 6, .external_lex_state = 2}, + [365] = {.lex_state = 6, .external_lex_state = 2}, + [366] = {.lex_state = 6, .external_lex_state = 2}, + [367] = {.lex_state = 6, .external_lex_state = 2}, + [368] = {.lex_state = 6, .external_lex_state = 2}, + [369] = {.lex_state = 6, .external_lex_state = 2}, + [370] = {.lex_state = 6, .external_lex_state = 2}, + [371] = {.lex_state = 6, .external_lex_state = 2}, + [372] = {.lex_state = 6, .external_lex_state = 2}, + [373] = {.lex_state = 6, .external_lex_state = 2}, + [374] = {.lex_state = 6, .external_lex_state = 2}, + [375] = {.lex_state = 6, .external_lex_state = 2}, + [376] = {.lex_state = 6, .external_lex_state = 2}, + [377] = {.lex_state = 6, .external_lex_state = 2}, + [378] = {.lex_state = 6, .external_lex_state = 2}, + [379] = {.lex_state = 6, .external_lex_state = 2}, + [380] = {.lex_state = 6, .external_lex_state = 2}, + [381] = {.lex_state = 6, .external_lex_state = 2}, + [382] = {.lex_state = 6, .external_lex_state = 2}, + [383] = {.lex_state = 6, .external_lex_state = 2}, + [384] = {.lex_state = 6, .external_lex_state = 2}, + [385] = {.lex_state = 6, .external_lex_state = 2}, + [386] = {.lex_state = 6, .external_lex_state = 2}, + [387] = {.lex_state = 6, .external_lex_state = 2}, + [388] = {.lex_state = 6, .external_lex_state = 2}, + [389] = {.lex_state = 6, .external_lex_state = 2}, + [390] = {.lex_state = 6, .external_lex_state = 2}, + [391] = {.lex_state = 6, .external_lex_state = 2}, + [392] = {.lex_state = 6, .external_lex_state = 2}, + [393] = {.lex_state = 6, .external_lex_state = 2}, + [394] = {.lex_state = 6, .external_lex_state = 2}, + [395] = {.lex_state = 6, .external_lex_state = 2}, + [396] = {.lex_state = 6, .external_lex_state = 2}, + [397] = {.lex_state = 6, .external_lex_state = 2}, + [398] = {.lex_state = 6, .external_lex_state = 2}, + [399] = {.lex_state = 6, .external_lex_state = 2}, + [400] = {.lex_state = 6, .external_lex_state = 2}, + [401] = {.lex_state = 6, .external_lex_state = 2}, + [402] = {.lex_state = 6, .external_lex_state = 2}, + [403] = {.lex_state = 6, .external_lex_state = 2}, + [404] = {.lex_state = 6, .external_lex_state = 2}, + [405] = {.lex_state = 6, .external_lex_state = 2}, + [406] = {.lex_state = 6, .external_lex_state = 2}, + [407] = {.lex_state = 6, .external_lex_state = 2}, + [408] = {.lex_state = 6, .external_lex_state = 2}, + [409] = {.lex_state = 6, .external_lex_state = 2}, + [410] = {.lex_state = 6, .external_lex_state = 2}, + [411] = {.lex_state = 6, .external_lex_state = 2}, + [412] = {.lex_state = 6, .external_lex_state = 2}, + [413] = {.lex_state = 6, .external_lex_state = 2}, + [414] = {.lex_state = 6, .external_lex_state = 2}, + [415] = {.lex_state = 6, .external_lex_state = 2}, + [416] = {.lex_state = 6, .external_lex_state = 2}, + [417] = {.lex_state = 6, .external_lex_state = 2}, + [418] = {.lex_state = 6, .external_lex_state = 2}, + [419] = {.lex_state = 6, .external_lex_state = 2}, + [420] = {.lex_state = 6, .external_lex_state = 2}, + [421] = {.lex_state = 6, .external_lex_state = 2}, + [422] = {.lex_state = 6, .external_lex_state = 2}, + [423] = {.lex_state = 6, .external_lex_state = 2}, + [424] = {.lex_state = 6, .external_lex_state = 2}, + [425] = {.lex_state = 6, .external_lex_state = 2}, + [426] = {.lex_state = 6, .external_lex_state = 2}, + [427] = {.lex_state = 6, .external_lex_state = 2}, + [428] = {.lex_state = 6, .external_lex_state = 2}, + [429] = {.lex_state = 6, .external_lex_state = 2}, + [430] = {.lex_state = 6, .external_lex_state = 2}, + [431] = {.lex_state = 6, .external_lex_state = 2}, + [432] = {.lex_state = 6, .external_lex_state = 2}, + [433] = {.lex_state = 6, .external_lex_state = 2}, + [434] = {.lex_state = 6, .external_lex_state = 2}, + [435] = {.lex_state = 6, .external_lex_state = 2}, + [436] = {.lex_state = 6, .external_lex_state = 2}, + [437] = {.lex_state = 6, .external_lex_state = 2}, + [438] = {.lex_state = 6, .external_lex_state = 2}, + [439] = {.lex_state = 6, .external_lex_state = 2}, + [440] = {.lex_state = 6, .external_lex_state = 2}, + [441] = {.lex_state = 6, .external_lex_state = 2}, + [442] = {.lex_state = 6, .external_lex_state = 2}, + [443] = {.lex_state = 6, .external_lex_state = 2}, + [444] = {.lex_state = 6, .external_lex_state = 2}, + [445] = {.lex_state = 6, .external_lex_state = 2}, + [446] = {.lex_state = 6, .external_lex_state = 2}, + [447] = {.lex_state = 6, .external_lex_state = 2}, + [448] = {.lex_state = 6, .external_lex_state = 2}, + [449] = {.lex_state = 6, .external_lex_state = 2}, + [450] = {.lex_state = 6, .external_lex_state = 2}, + [451] = {.lex_state = 6, .external_lex_state = 2}, + [452] = {.lex_state = 6, .external_lex_state = 2}, + [453] = {.lex_state = 6, .external_lex_state = 2}, + [454] = {.lex_state = 6, .external_lex_state = 2}, + [455] = {.lex_state = 6, .external_lex_state = 2}, + [456] = {.lex_state = 6, .external_lex_state = 2}, + [457] = {.lex_state = 6, .external_lex_state = 2}, + [458] = {.lex_state = 6, .external_lex_state = 2}, + [459] = {.lex_state = 6, .external_lex_state = 2}, + [460] = {.lex_state = 6, .external_lex_state = 2}, + [461] = {.lex_state = 6, .external_lex_state = 2}, + [462] = {.lex_state = 6, .external_lex_state = 2}, + [463] = {.lex_state = 6, .external_lex_state = 2}, + [464] = {.lex_state = 6, .external_lex_state = 2}, + [465] = {.lex_state = 6, .external_lex_state = 2}, + [466] = {.lex_state = 6, .external_lex_state = 2}, + [467] = {.lex_state = 6, .external_lex_state = 2}, + [468] = {.lex_state = 6, .external_lex_state = 2}, + [469] = {.lex_state = 6, .external_lex_state = 2}, + [470] = {.lex_state = 6, .external_lex_state = 2}, + [471] = {.lex_state = 6, .external_lex_state = 2}, + [472] = {.lex_state = 6, .external_lex_state = 2}, + [473] = {.lex_state = 6, .external_lex_state = 2}, + [474] = {.lex_state = 6, .external_lex_state = 2}, + [475] = {.lex_state = 6, .external_lex_state = 2}, + [476] = {.lex_state = 6, .external_lex_state = 2}, + [477] = {.lex_state = 6, .external_lex_state = 2}, + [478] = {.lex_state = 6, .external_lex_state = 2}, + [479] = {.lex_state = 6, .external_lex_state = 2}, + [480] = {.lex_state = 6, .external_lex_state = 2}, + [481] = {.lex_state = 6, .external_lex_state = 2}, + [482] = {.lex_state = 6, .external_lex_state = 2}, + [483] = {.lex_state = 6, .external_lex_state = 2}, + [484] = {.lex_state = 6, .external_lex_state = 2}, + [485] = {.lex_state = 6, .external_lex_state = 2}, + [486] = {.lex_state = 6, .external_lex_state = 2}, + [487] = {.lex_state = 6, .external_lex_state = 2}, + [488] = {.lex_state = 6, .external_lex_state = 2}, + [489] = {.lex_state = 6, .external_lex_state = 2}, + [490] = {.lex_state = 6, .external_lex_state = 2}, + [491] = {.lex_state = 6, .external_lex_state = 2}, + [492] = {.lex_state = 6, .external_lex_state = 2}, + [493] = {.lex_state = 6, .external_lex_state = 2}, + [494] = {.lex_state = 6, .external_lex_state = 2}, + [495] = {.lex_state = 6, .external_lex_state = 2}, + [496] = {.lex_state = 6, .external_lex_state = 2}, + [497] = {.lex_state = 6, .external_lex_state = 2}, + [498] = {.lex_state = 6, .external_lex_state = 2}, + [499] = {.lex_state = 6, .external_lex_state = 2}, + [500] = {.lex_state = 6, .external_lex_state = 2}, + [501] = {.lex_state = 6, .external_lex_state = 2}, + [502] = {.lex_state = 6, .external_lex_state = 2}, + [503] = {.lex_state = 6, .external_lex_state = 2}, + [504] = {.lex_state = 6, .external_lex_state = 2}, + [505] = {.lex_state = 6, .external_lex_state = 2}, + [506] = {.lex_state = 6, .external_lex_state = 2}, + [507] = {.lex_state = 6, .external_lex_state = 2}, + [508] = {.lex_state = 6, .external_lex_state = 2}, + [509] = {.lex_state = 6, .external_lex_state = 2}, + [510] = {.lex_state = 6, .external_lex_state = 2}, + [511] = {.lex_state = 6, .external_lex_state = 2}, + [512] = {.lex_state = 6, .external_lex_state = 2}, + [513] = {.lex_state = 6, .external_lex_state = 2}, + [514] = {.lex_state = 6, .external_lex_state = 2}, + [515] = {.lex_state = 6, .external_lex_state = 2}, + [516] = {.lex_state = 6, .external_lex_state = 2}, + [517] = {.lex_state = 6, .external_lex_state = 2}, + [518] = {.lex_state = 6, .external_lex_state = 2}, + [519] = {.lex_state = 6, .external_lex_state = 2}, + [520] = {.lex_state = 6, .external_lex_state = 2}, + [521] = {.lex_state = 6, .external_lex_state = 2}, + [522] = {.lex_state = 6, .external_lex_state = 2}, + [523] = {.lex_state = 6, .external_lex_state = 2}, + [524] = {.lex_state = 6, .external_lex_state = 2}, + [525] = {.lex_state = 6, .external_lex_state = 2}, + [526] = {.lex_state = 6, .external_lex_state = 2}, + [527] = {.lex_state = 6, .external_lex_state = 2}, + [528] = {.lex_state = 6, .external_lex_state = 2}, + [529] = {.lex_state = 6, .external_lex_state = 2}, + [530] = {.lex_state = 6, .external_lex_state = 2}, + [531] = {.lex_state = 6, .external_lex_state = 2}, + [532] = {.lex_state = 6, .external_lex_state = 2}, + [533] = {.lex_state = 6, .external_lex_state = 2}, + [534] = {.lex_state = 6, .external_lex_state = 2}, + [535] = {.lex_state = 6, .external_lex_state = 2}, + [536] = {.lex_state = 6, .external_lex_state = 2}, + [537] = {.lex_state = 6, .external_lex_state = 2}, + [538] = {.lex_state = 6, .external_lex_state = 2}, + [539] = {.lex_state = 6, .external_lex_state = 2}, + [540] = {.lex_state = 6, .external_lex_state = 2}, + [541] = {.lex_state = 6, .external_lex_state = 2}, + [542] = {.lex_state = 6, .external_lex_state = 2}, + [543] = {.lex_state = 6, .external_lex_state = 2}, + [544] = {.lex_state = 6, .external_lex_state = 2}, + [545] = {.lex_state = 6, .external_lex_state = 2}, + [546] = {.lex_state = 6, .external_lex_state = 2}, + [547] = {.lex_state = 6, .external_lex_state = 2}, + [548] = {.lex_state = 6, .external_lex_state = 2}, + [549] = {.lex_state = 6, .external_lex_state = 2}, + [550] = {.lex_state = 6, .external_lex_state = 2}, + [551] = {.lex_state = 6, .external_lex_state = 2}, + [552] = {.lex_state = 6, .external_lex_state = 2}, + [553] = {.lex_state = 6, .external_lex_state = 2}, + [554] = {.lex_state = 6, .external_lex_state = 2}, + [555] = {.lex_state = 6, .external_lex_state = 2}, + [556] = {.lex_state = 6, .external_lex_state = 2}, + [557] = {.lex_state = 6, .external_lex_state = 2}, + [558] = {.lex_state = 6, .external_lex_state = 2}, + [559] = {.lex_state = 6, .external_lex_state = 2}, + [560] = {.lex_state = 6, .external_lex_state = 2}, + [561] = {.lex_state = 6, .external_lex_state = 2}, + [562] = {.lex_state = 6, .external_lex_state = 2}, + [563] = {.lex_state = 6, .external_lex_state = 2}, + [564] = {.lex_state = 6, .external_lex_state = 2}, + [565] = {.lex_state = 6, .external_lex_state = 2}, + [566] = {.lex_state = 6, .external_lex_state = 2}, + [567] = {.lex_state = 6, .external_lex_state = 2}, + [568] = {.lex_state = 6, .external_lex_state = 2}, + [569] = {.lex_state = 6, .external_lex_state = 2}, + [570] = {.lex_state = 6, .external_lex_state = 2}, + [571] = {.lex_state = 6, .external_lex_state = 2}, + [572] = {.lex_state = 6, .external_lex_state = 2}, + [573] = {.lex_state = 6, .external_lex_state = 2}, + [574] = {.lex_state = 6, .external_lex_state = 2}, + [575] = {.lex_state = 6, .external_lex_state = 2}, + [576] = {.lex_state = 6, .external_lex_state = 2}, + [577] = {.lex_state = 6, .external_lex_state = 2}, + [578] = {.lex_state = 6, .external_lex_state = 2}, + [579] = {.lex_state = 6, .external_lex_state = 2}, + [580] = {.lex_state = 6, .external_lex_state = 2}, + [581] = {.lex_state = 6, .external_lex_state = 2}, + [582] = {.lex_state = 6, .external_lex_state = 2}, + [583] = {.lex_state = 6, .external_lex_state = 2}, + [584] = {.lex_state = 6, .external_lex_state = 2}, + [585] = {.lex_state = 6, .external_lex_state = 2}, + [586] = {.lex_state = 6, .external_lex_state = 2}, + [587] = {.lex_state = 6, .external_lex_state = 2}, + [588] = {.lex_state = 6, .external_lex_state = 2}, + [589] = {.lex_state = 6, .external_lex_state = 2}, + [590] = {.lex_state = 6, .external_lex_state = 2}, + [591] = {.lex_state = 6, .external_lex_state = 2}, + [592] = {.lex_state = 6, .external_lex_state = 2}, + [593] = {.lex_state = 6, .external_lex_state = 2}, + [594] = {.lex_state = 6, .external_lex_state = 2}, + [595] = {.lex_state = 6, .external_lex_state = 2}, + [596] = {.lex_state = 6, .external_lex_state = 2}, + [597] = {.lex_state = 6, .external_lex_state = 2}, + [598] = {.lex_state = 6, .external_lex_state = 2}, + [599] = {.lex_state = 6, .external_lex_state = 2}, + [600] = {.lex_state = 6, .external_lex_state = 2}, + [601] = {.lex_state = 6, .external_lex_state = 2}, + [602] = {.lex_state = 6, .external_lex_state = 2}, + [603] = {.lex_state = 6, .external_lex_state = 2}, + [604] = {.lex_state = 6, .external_lex_state = 2}, + [605] = {.lex_state = 6, .external_lex_state = 2}, + [606] = {.lex_state = 6, .external_lex_state = 2}, + [607] = {.lex_state = 6, .external_lex_state = 2}, + [608] = {.lex_state = 6, .external_lex_state = 2}, + [609] = {.lex_state = 6, .external_lex_state = 2}, + [610] = {.lex_state = 6, .external_lex_state = 2}, + [611] = {.lex_state = 6, .external_lex_state = 2}, + [612] = {.lex_state = 6, .external_lex_state = 2}, + [613] = {.lex_state = 6, .external_lex_state = 2}, + [614] = {.lex_state = 6, .external_lex_state = 2}, + [615] = {.lex_state = 6, .external_lex_state = 2}, + [616] = {.lex_state = 6, .external_lex_state = 2}, + [617] = {.lex_state = 6, .external_lex_state = 2}, + [618] = {.lex_state = 6, .external_lex_state = 2}, + [619] = {.lex_state = 6, .external_lex_state = 2}, + [620] = {.lex_state = 6, .external_lex_state = 2}, + [621] = {.lex_state = 6, .external_lex_state = 2}, + [622] = {.lex_state = 6, .external_lex_state = 2}, + [623] = {.lex_state = 6, .external_lex_state = 2}, + [624] = {.lex_state = 6, .external_lex_state = 2}, + [625] = {.lex_state = 6, .external_lex_state = 2}, + [626] = {.lex_state = 6, .external_lex_state = 2}, + [627] = {.lex_state = 6, .external_lex_state = 2}, + [628] = {.lex_state = 6, .external_lex_state = 2}, + [629] = {.lex_state = 6, .external_lex_state = 2}, + [630] = {.lex_state = 6, .external_lex_state = 2}, + [631] = {.lex_state = 6, .external_lex_state = 2}, + [632] = {.lex_state = 6, .external_lex_state = 2}, + [633] = {.lex_state = 6, .external_lex_state = 2}, + [634] = {.lex_state = 6, .external_lex_state = 2}, + [635] = {.lex_state = 6, .external_lex_state = 2}, + [636] = {.lex_state = 6, .external_lex_state = 2}, + [637] = {.lex_state = 6, .external_lex_state = 2}, + [638] = {.lex_state = 6, .external_lex_state = 2}, + [639] = {.lex_state = 6, .external_lex_state = 2}, + [640] = {.lex_state = 6, .external_lex_state = 2}, + [641] = {.lex_state = 6, .external_lex_state = 2}, + [642] = {.lex_state = 6, .external_lex_state = 2}, + [643] = {.lex_state = 6, .external_lex_state = 2}, + [644] = {.lex_state = 6, .external_lex_state = 2}, + [645] = {.lex_state = 6, .external_lex_state = 2}, + [646] = {.lex_state = 6, .external_lex_state = 2}, + [647] = {.lex_state = 6, .external_lex_state = 2}, + [648] = {.lex_state = 6, .external_lex_state = 2}, + [649] = {.lex_state = 6, .external_lex_state = 2}, + [650] = {.lex_state = 6, .external_lex_state = 2}, + [651] = {.lex_state = 6, .external_lex_state = 2}, + [652] = {.lex_state = 6, .external_lex_state = 2}, + [653] = {.lex_state = 6, .external_lex_state = 2}, + [654] = {.lex_state = 6, .external_lex_state = 2}, + [655] = {.lex_state = 6, .external_lex_state = 2}, + [656] = {.lex_state = 6, .external_lex_state = 2}, + [657] = {.lex_state = 6, .external_lex_state = 2}, + [658] = {.lex_state = 6, .external_lex_state = 2}, + [659] = {.lex_state = 6, .external_lex_state = 2}, + [660] = {.lex_state = 6, .external_lex_state = 2}, + [661] = {.lex_state = 6, .external_lex_state = 2}, + [662] = {.lex_state = 6, .external_lex_state = 2}, + [663] = {.lex_state = 6, .external_lex_state = 2}, + [664] = {.lex_state = 6, .external_lex_state = 2}, + [665] = {.lex_state = 6, .external_lex_state = 2}, + [666] = {.lex_state = 6, .external_lex_state = 2}, + [667] = {.lex_state = 6, .external_lex_state = 2}, + [668] = {.lex_state = 6, .external_lex_state = 2}, + [669] = {.lex_state = 6, .external_lex_state = 2}, + [670] = {.lex_state = 6, .external_lex_state = 2}, + [671] = {.lex_state = 6, .external_lex_state = 2}, + [672] = {.lex_state = 6, .external_lex_state = 2}, + [673] = {.lex_state = 6, .external_lex_state = 2}, + [674] = {.lex_state = 6, .external_lex_state = 2}, + [675] = {.lex_state = 6, .external_lex_state = 2}, + [676] = {.lex_state = 6, .external_lex_state = 2}, + [677] = {.lex_state = 6, .external_lex_state = 2}, + [678] = {.lex_state = 6, .external_lex_state = 2}, + [679] = {.lex_state = 6, .external_lex_state = 2}, + [680] = {.lex_state = 6, .external_lex_state = 2}, + [681] = {.lex_state = 6, .external_lex_state = 2}, + [682] = {.lex_state = 6, .external_lex_state = 2}, + [683] = {.lex_state = 6, .external_lex_state = 2}, + [684] = {.lex_state = 6, .external_lex_state = 2}, + [685] = {.lex_state = 6, .external_lex_state = 2}, + [686] = {.lex_state = 6, .external_lex_state = 2}, + [687] = {.lex_state = 6, .external_lex_state = 2}, + [688] = {.lex_state = 6, .external_lex_state = 2}, + [689] = {.lex_state = 6, .external_lex_state = 2}, + [690] = {.lex_state = 6, .external_lex_state = 2}, + [691] = {.lex_state = 6, .external_lex_state = 2}, + [692] = {.lex_state = 6, .external_lex_state = 2}, + [693] = {.lex_state = 6, .external_lex_state = 2}, + [694] = {.lex_state = 6, .external_lex_state = 2}, + [695] = {.lex_state = 6, .external_lex_state = 2}, + [696] = {.lex_state = 6, .external_lex_state = 2}, + [697] = {.lex_state = 6, .external_lex_state = 2}, + [698] = {.lex_state = 6, .external_lex_state = 2}, + [699] = {.lex_state = 6, .external_lex_state = 2}, + [700] = {.lex_state = 6, .external_lex_state = 2}, + [701] = {.lex_state = 6, .external_lex_state = 2}, + [702] = {.lex_state = 6, .external_lex_state = 2}, + [703] = {.lex_state = 6, .external_lex_state = 2}, + [704] = {.lex_state = 6, .external_lex_state = 2}, + [705] = {.lex_state = 6, .external_lex_state = 2}, + [706] = {.lex_state = 6, .external_lex_state = 2}, + [707] = {.lex_state = 6, .external_lex_state = 2}, + [708] = {.lex_state = 6, .external_lex_state = 2}, + [709] = {.lex_state = 6, .external_lex_state = 2}, + [710] = {.lex_state = 6, .external_lex_state = 2}, + [711] = {.lex_state = 6, .external_lex_state = 2}, + [712] = {.lex_state = 6, .external_lex_state = 2}, + [713] = {.lex_state = 6, .external_lex_state = 2}, + [714] = {.lex_state = 6, .external_lex_state = 2}, + [715] = {.lex_state = 6, .external_lex_state = 2}, + [716] = {.lex_state = 6, .external_lex_state = 2}, + [717] = {.lex_state = 6, .external_lex_state = 2}, + [718] = {.lex_state = 6, .external_lex_state = 2}, + [719] = {.lex_state = 6, .external_lex_state = 2}, + [720] = {.lex_state = 6, .external_lex_state = 2}, + [721] = {.lex_state = 6, .external_lex_state = 2}, + [722] = {.lex_state = 6, .external_lex_state = 2}, + [723] = {.lex_state = 6, .external_lex_state = 2}, + [724] = {.lex_state = 6, .external_lex_state = 2}, + [725] = {.lex_state = 6, .external_lex_state = 2}, + [726] = {.lex_state = 6, .external_lex_state = 2}, + [727] = {.lex_state = 6, .external_lex_state = 2}, + [728] = {.lex_state = 6, .external_lex_state = 2}, + [729] = {.lex_state = 6, .external_lex_state = 2}, + [730] = {.lex_state = 6, .external_lex_state = 2}, + [731] = {.lex_state = 6, .external_lex_state = 2}, + [732] = {.lex_state = 6, .external_lex_state = 2}, + [733] = {.lex_state = 6, .external_lex_state = 2}, + [734] = {.lex_state = 6, .external_lex_state = 2}, + [735] = {.lex_state = 6, .external_lex_state = 2}, + [736] = {.lex_state = 6, .external_lex_state = 2}, + [737] = {.lex_state = 6, .external_lex_state = 2}, + [738] = {.lex_state = 6, .external_lex_state = 2}, + [739] = {.lex_state = 6, .external_lex_state = 2}, + [740] = {.lex_state = 6, .external_lex_state = 2}, + [741] = {.lex_state = 6, .external_lex_state = 2}, + [742] = {.lex_state = 6, .external_lex_state = 2}, + [743] = {.lex_state = 6, .external_lex_state = 2}, + [744] = {.lex_state = 6, .external_lex_state = 2}, + [745] = {.lex_state = 6, .external_lex_state = 2}, + [746] = {.lex_state = 6, .external_lex_state = 2}, + [747] = {.lex_state = 6, .external_lex_state = 2}, + [748] = {.lex_state = 6, .external_lex_state = 2}, + [749] = {.lex_state = 6, .external_lex_state = 2}, + [750] = {.lex_state = 6, .external_lex_state = 2}, + [751] = {.lex_state = 6, .external_lex_state = 2}, + [752] = {.lex_state = 6, .external_lex_state = 2}, + [753] = {.lex_state = 6, .external_lex_state = 2}, + [754] = {.lex_state = 6, .external_lex_state = 2}, + [755] = {.lex_state = 6, .external_lex_state = 2}, + [756] = {.lex_state = 6, .external_lex_state = 2}, + [757] = {.lex_state = 6, .external_lex_state = 2}, + [758] = {.lex_state = 6, .external_lex_state = 2}, + [759] = {.lex_state = 6, .external_lex_state = 2}, + [760] = {.lex_state = 6, .external_lex_state = 2}, + [761] = {.lex_state = 6, .external_lex_state = 2}, + [762] = {.lex_state = 6, .external_lex_state = 2}, + [763] = {.lex_state = 6, .external_lex_state = 2}, + [764] = {.lex_state = 6, .external_lex_state = 2}, + [765] = {.lex_state = 6, .external_lex_state = 2}, + [766] = {.lex_state = 6, .external_lex_state = 2}, + [767] = {.lex_state = 6, .external_lex_state = 2}, + [768] = {.lex_state = 6, .external_lex_state = 2}, + [769] = {.lex_state = 6, .external_lex_state = 2}, + [770] = {.lex_state = 6, .external_lex_state = 2}, + [771] = {.lex_state = 6, .external_lex_state = 2}, + [772] = {.lex_state = 6, .external_lex_state = 2}, + [773] = {.lex_state = 6, .external_lex_state = 2}, + [774] = {.lex_state = 6, .external_lex_state = 2}, + [775] = {.lex_state = 6, .external_lex_state = 2}, + [776] = {.lex_state = 6, .external_lex_state = 2}, + [777] = {.lex_state = 6, .external_lex_state = 2}, + [778] = {.lex_state = 6, .external_lex_state = 2}, + [779] = {.lex_state = 6, .external_lex_state = 2}, + [780] = {.lex_state = 6, .external_lex_state = 2}, + [781] = {.lex_state = 6, .external_lex_state = 2}, + [782] = {.lex_state = 6, .external_lex_state = 2}, + [783] = {.lex_state = 6, .external_lex_state = 2}, + [784] = {.lex_state = 6, .external_lex_state = 2}, + [785] = {.lex_state = 6, .external_lex_state = 2}, + [786] = {.lex_state = 6, .external_lex_state = 2}, + [787] = {.lex_state = 6, .external_lex_state = 2}, + [788] = {.lex_state = 6, .external_lex_state = 2}, + [789] = {.lex_state = 6, .external_lex_state = 2}, + [790] = {.lex_state = 6, .external_lex_state = 2}, + [791] = {.lex_state = 6, .external_lex_state = 2}, + [792] = {.lex_state = 6, .external_lex_state = 2}, + [793] = {.lex_state = 6, .external_lex_state = 2}, + [794] = {.lex_state = 6, .external_lex_state = 2}, + [795] = {.lex_state = 6, .external_lex_state = 2}, + [796] = {.lex_state = 6, .external_lex_state = 2}, + [797] = {.lex_state = 6, .external_lex_state = 2}, + [798] = {.lex_state = 6, .external_lex_state = 2}, + [799] = {.lex_state = 6, .external_lex_state = 2}, + [800] = {.lex_state = 6, .external_lex_state = 2}, + [801] = {.lex_state = 6, .external_lex_state = 2}, + [802] = {.lex_state = 6, .external_lex_state = 2}, + [803] = {.lex_state = 6, .external_lex_state = 2}, + [804] = {.lex_state = 6, .external_lex_state = 2}, + [805] = {.lex_state = 6, .external_lex_state = 2}, + [806] = {.lex_state = 6, .external_lex_state = 2}, + [807] = {.lex_state = 6, .external_lex_state = 2}, + [808] = {.lex_state = 6, .external_lex_state = 2}, + [809] = {.lex_state = 6, .external_lex_state = 2}, + [810] = {.lex_state = 6, .external_lex_state = 2}, + [811] = {.lex_state = 6, .external_lex_state = 2}, + [812] = {.lex_state = 6, .external_lex_state = 2}, + [813] = {.lex_state = 6, .external_lex_state = 2}, + [814] = {.lex_state = 6, .external_lex_state = 2}, + [815] = {.lex_state = 6, .external_lex_state = 2}, + [816] = {.lex_state = 6, .external_lex_state = 2}, + [817] = {.lex_state = 6, .external_lex_state = 2}, + [818] = {.lex_state = 6, .external_lex_state = 2}, + [819] = {.lex_state = 6, .external_lex_state = 2}, + [820] = {.lex_state = 6, .external_lex_state = 2}, + [821] = {.lex_state = 6, .external_lex_state = 2}, + [822] = {.lex_state = 6, .external_lex_state = 2}, + [823] = {.lex_state = 6, .external_lex_state = 2}, + [824] = {.lex_state = 6, .external_lex_state = 2}, + [825] = {.lex_state = 6, .external_lex_state = 2}, + [826] = {.lex_state = 6, .external_lex_state = 2}, + [827] = {.lex_state = 6, .external_lex_state = 2}, + [828] = {.lex_state = 6, .external_lex_state = 2}, + [829] = {.lex_state = 6, .external_lex_state = 2}, + [830] = {.lex_state = 6, .external_lex_state = 2}, + [831] = {.lex_state = 6, .external_lex_state = 2}, + [832] = {.lex_state = 6, .external_lex_state = 2}, + [833] = {.lex_state = 6, .external_lex_state = 2}, + [834] = {.lex_state = 6, .external_lex_state = 2}, + [835] = {.lex_state = 6, .external_lex_state = 2}, + [836] = {.lex_state = 6, .external_lex_state = 2}, + [837] = {.lex_state = 6, .external_lex_state = 2}, + [838] = {.lex_state = 6, .external_lex_state = 2}, + [839] = {.lex_state = 6, .external_lex_state = 2}, + [840] = {.lex_state = 6, .external_lex_state = 2}, + [841] = {.lex_state = 6, .external_lex_state = 2}, + [842] = {.lex_state = 6, .external_lex_state = 2}, + [843] = {.lex_state = 6, .external_lex_state = 2}, + [844] = {.lex_state = 6, .external_lex_state = 2}, + [845] = {.lex_state = 6, .external_lex_state = 2}, + [846] = {.lex_state = 6, .external_lex_state = 2}, + [847] = {.lex_state = 6, .external_lex_state = 2}, + [848] = {.lex_state = 6, .external_lex_state = 2}, + [849] = {.lex_state = 6, .external_lex_state = 2}, + [850] = {.lex_state = 6, .external_lex_state = 2}, + [851] = {.lex_state = 6, .external_lex_state = 2}, + [852] = {.lex_state = 6, .external_lex_state = 2}, + [853] = {.lex_state = 6, .external_lex_state = 2}, + [854] = {.lex_state = 6, .external_lex_state = 2}, + [855] = {.lex_state = 6, .external_lex_state = 2}, + [856] = {.lex_state = 6, .external_lex_state = 2}, + [857] = {.lex_state = 6, .external_lex_state = 2}, + [858] = {.lex_state = 6, .external_lex_state = 2}, + [859] = {.lex_state = 6, .external_lex_state = 2}, + [860] = {.lex_state = 6, .external_lex_state = 2}, + [861] = {.lex_state = 6, .external_lex_state = 2}, + [862] = {.lex_state = 6, .external_lex_state = 2}, + [863] = {.lex_state = 6, .external_lex_state = 2}, + [864] = {.lex_state = 6, .external_lex_state = 2}, + [865] = {.lex_state = 6, .external_lex_state = 2}, + [866] = {.lex_state = 6, .external_lex_state = 2}, + [867] = {.lex_state = 6, .external_lex_state = 2}, + [868] = {.lex_state = 6, .external_lex_state = 2}, + [869] = {.lex_state = 6, .external_lex_state = 2}, + [870] = {.lex_state = 6, .external_lex_state = 2}, + [871] = {.lex_state = 6, .external_lex_state = 2}, + [872] = {.lex_state = 6, .external_lex_state = 2}, + [873] = {.lex_state = 6, .external_lex_state = 2}, + [874] = {.lex_state = 6, .external_lex_state = 2}, + [875] = {.lex_state = 6, .external_lex_state = 2}, + [876] = {.lex_state = 6, .external_lex_state = 2}, + [877] = {.lex_state = 6, .external_lex_state = 2}, + [878] = {.lex_state = 6, .external_lex_state = 2}, + [879] = {.lex_state = 6, .external_lex_state = 2}, + [880] = {.lex_state = 6, .external_lex_state = 2}, + [881] = {.lex_state = 6, .external_lex_state = 2}, + [882] = {.lex_state = 6, .external_lex_state = 2}, + [883] = {.lex_state = 6, .external_lex_state = 2}, + [884] = {.lex_state = 6, .external_lex_state = 2}, + [885] = {.lex_state = 6, .external_lex_state = 2}, + [886] = {.lex_state = 6, .external_lex_state = 2}, + [887] = {.lex_state = 6, .external_lex_state = 2}, + [888] = {.lex_state = 6, .external_lex_state = 2}, + [889] = {.lex_state = 6, .external_lex_state = 2}, + [890] = {.lex_state = 6, .external_lex_state = 2}, + [891] = {.lex_state = 6, .external_lex_state = 2}, + [892] = {.lex_state = 6, .external_lex_state = 2}, + [893] = {.lex_state = 6, .external_lex_state = 2}, + [894] = {.lex_state = 6, .external_lex_state = 2}, + [895] = {.lex_state = 6, .external_lex_state = 2}, + [896] = {.lex_state = 6, .external_lex_state = 2}, + [897] = {.lex_state = 6, .external_lex_state = 2}, + [898] = {.lex_state = 6, .external_lex_state = 2}, + [899] = {.lex_state = 6, .external_lex_state = 2}, + [900] = {.lex_state = 6, .external_lex_state = 2}, + [901] = {.lex_state = 6, .external_lex_state = 2}, + [902] = {.lex_state = 6, .external_lex_state = 2}, + [903] = {.lex_state = 6, .external_lex_state = 2}, + [904] = {.lex_state = 6, .external_lex_state = 2}, + [905] = {.lex_state = 6, .external_lex_state = 2}, + [906] = {.lex_state = 6, .external_lex_state = 2}, + [907] = {.lex_state = 6, .external_lex_state = 2}, + [908] = {.lex_state = 6, .external_lex_state = 2}, + [909] = {.lex_state = 6, .external_lex_state = 2}, + [910] = {.lex_state = 6, .external_lex_state = 2}, + [911] = {.lex_state = 6, .external_lex_state = 2}, + [912] = {.lex_state = 6, .external_lex_state = 2}, + [913] = {.lex_state = 6, .external_lex_state = 2}, + [914] = {.lex_state = 6, .external_lex_state = 2}, + [915] = {.lex_state = 6, .external_lex_state = 2}, + [916] = {.lex_state = 6, .external_lex_state = 2}, + [917] = {.lex_state = 6, .external_lex_state = 2}, + [918] = {.lex_state = 6, .external_lex_state = 2}, + [919] = {.lex_state = 6, .external_lex_state = 2}, + [920] = {.lex_state = 6, .external_lex_state = 2}, + [921] = {.lex_state = 6, .external_lex_state = 2}, + [922] = {.lex_state = 6, .external_lex_state = 2}, + [923] = {.lex_state = 6, .external_lex_state = 2}, + [924] = {.lex_state = 6, .external_lex_state = 2}, + [925] = {.lex_state = 6, .external_lex_state = 2}, + [926] = {.lex_state = 6, .external_lex_state = 2}, + [927] = {.lex_state = 6, .external_lex_state = 2}, + [928] = {.lex_state = 6, .external_lex_state = 2}, + [929] = {.lex_state = 6, .external_lex_state = 2}, + [930] = {.lex_state = 6, .external_lex_state = 2}, + [931] = {.lex_state = 6, .external_lex_state = 2}, + [932] = {.lex_state = 6, .external_lex_state = 2}, + [933] = {.lex_state = 6, .external_lex_state = 2}, + [934] = {.lex_state = 6, .external_lex_state = 2}, + [935] = {.lex_state = 6, .external_lex_state = 2}, + [936] = {.lex_state = 6, .external_lex_state = 2}, + [937] = {.lex_state = 6, .external_lex_state = 2}, + [938] = {.lex_state = 6, .external_lex_state = 2}, + [939] = {.lex_state = 6, .external_lex_state = 2}, + [940] = {.lex_state = 6, .external_lex_state = 2}, + [941] = {.lex_state = 6, .external_lex_state = 2}, + [942] = {.lex_state = 6, .external_lex_state = 2}, + [943] = {.lex_state = 6, .external_lex_state = 2}, + [944] = {.lex_state = 6, .external_lex_state = 2}, + [945] = {.lex_state = 6, .external_lex_state = 2}, + [946] = {.lex_state = 6, .external_lex_state = 2}, + [947] = {.lex_state = 6, .external_lex_state = 2}, + [948] = {.lex_state = 6, .external_lex_state = 2}, + [949] = {.lex_state = 6, .external_lex_state = 2}, + [950] = {.lex_state = 6, .external_lex_state = 2}, + [951] = {.lex_state = 6, .external_lex_state = 2}, + [952] = {.lex_state = 6, .external_lex_state = 2}, + [953] = {.lex_state = 6, .external_lex_state = 2}, + [954] = {.lex_state = 6, .external_lex_state = 2}, + [955] = {.lex_state = 6, .external_lex_state = 2}, + [956] = {.lex_state = 6, .external_lex_state = 2}, + [957] = {.lex_state = 6, .external_lex_state = 2}, + [958] = {.lex_state = 6, .external_lex_state = 2}, + [959] = {.lex_state = 6, .external_lex_state = 2}, + [960] = {.lex_state = 6, .external_lex_state = 2}, + [961] = {.lex_state = 6, .external_lex_state = 2}, + [962] = {.lex_state = 6, .external_lex_state = 2}, + [963] = {.lex_state = 6, .external_lex_state = 2}, + [964] = {.lex_state = 6, .external_lex_state = 2}, + [965] = {.lex_state = 6, .external_lex_state = 2}, + [966] = {.lex_state = 6, .external_lex_state = 2}, + [967] = {.lex_state = 6, .external_lex_state = 2}, + [968] = {.lex_state = 6, .external_lex_state = 2}, + [969] = {.lex_state = 6, .external_lex_state = 2}, + [970] = {.lex_state = 6, .external_lex_state = 2}, + [971] = {.lex_state = 6, .external_lex_state = 2}, + [972] = {.lex_state = 6, .external_lex_state = 2}, + [973] = {.lex_state = 6, .external_lex_state = 2}, + [974] = {.lex_state = 6, .external_lex_state = 2}, + [975] = {.lex_state = 6, .external_lex_state = 2}, + [976] = {.lex_state = 6, .external_lex_state = 2}, + [977] = {.lex_state = 6, .external_lex_state = 2}, + [978] = {.lex_state = 6, .external_lex_state = 2}, + [979] = {.lex_state = 6, .external_lex_state = 2}, + [980] = {.lex_state = 6, .external_lex_state = 2}, + [981] = {.lex_state = 6, .external_lex_state = 2}, + [982] = {.lex_state = 6, .external_lex_state = 2}, + [983] = {.lex_state = 6, .external_lex_state = 2}, + [984] = {.lex_state = 6, .external_lex_state = 2}, + [985] = {.lex_state = 6, .external_lex_state = 2}, + [986] = {.lex_state = 6, .external_lex_state = 2}, + [987] = {.lex_state = 6, .external_lex_state = 2}, + [988] = {.lex_state = 6, .external_lex_state = 2}, + [989] = {.lex_state = 6, .external_lex_state = 2}, + [990] = {.lex_state = 6, .external_lex_state = 2}, + [991] = {.lex_state = 6, .external_lex_state = 2}, + [992] = {.lex_state = 6, .external_lex_state = 2}, + [993] = {.lex_state = 6, .external_lex_state = 2}, + [994] = {.lex_state = 6, .external_lex_state = 2}, + [995] = {.lex_state = 6, .external_lex_state = 2}, + [996] = {.lex_state = 6, .external_lex_state = 2}, + [997] = {.lex_state = 6, .external_lex_state = 2}, + [998] = {.lex_state = 6, .external_lex_state = 2}, + [999] = {.lex_state = 6, .external_lex_state = 2}, + [1000] = {.lex_state = 6, .external_lex_state = 2}, + [1001] = {.lex_state = 6, .external_lex_state = 2}, + [1002] = {.lex_state = 6, .external_lex_state = 2}, + [1003] = {.lex_state = 6, .external_lex_state = 2}, + [1004] = {.lex_state = 6, .external_lex_state = 2}, + [1005] = {.lex_state = 6, .external_lex_state = 2}, + [1006] = {.lex_state = 6, .external_lex_state = 2}, + [1007] = {.lex_state = 6, .external_lex_state = 2}, + [1008] = {.lex_state = 6, .external_lex_state = 2}, + [1009] = {.lex_state = 6, .external_lex_state = 2}, + [1010] = {.lex_state = 6, .external_lex_state = 2}, + [1011] = {.lex_state = 6, .external_lex_state = 2}, + [1012] = {.lex_state = 6, .external_lex_state = 2}, + [1013] = {.lex_state = 6, .external_lex_state = 2}, + [1014] = {.lex_state = 6, .external_lex_state = 2}, + [1015] = {.lex_state = 6, .external_lex_state = 2}, + [1016] = {.lex_state = 6, .external_lex_state = 2}, + [1017] = {.lex_state = 6, .external_lex_state = 2}, + [1018] = {.lex_state = 6, .external_lex_state = 2}, + [1019] = {.lex_state = 6, .external_lex_state = 2}, + [1020] = {.lex_state = 6, .external_lex_state = 2}, + [1021] = {.lex_state = 6, .external_lex_state = 2}, + [1022] = {.lex_state = 6, .external_lex_state = 2}, + [1023] = {.lex_state = 6, .external_lex_state = 2}, + [1024] = {.lex_state = 6, .external_lex_state = 2}, + [1025] = {.lex_state = 6, .external_lex_state = 2}, + [1026] = {.lex_state = 6, .external_lex_state = 2}, + [1027] = {.lex_state = 6, .external_lex_state = 2}, + [1028] = {.lex_state = 6, .external_lex_state = 2}, + [1029] = {.lex_state = 6, .external_lex_state = 2}, + [1030] = {.lex_state = 6, .external_lex_state = 2}, + [1031] = {.lex_state = 6, .external_lex_state = 2}, + [1032] = {.lex_state = 6, .external_lex_state = 2}, + [1033] = {.lex_state = 6, .external_lex_state = 2}, + [1034] = {.lex_state = 6, .external_lex_state = 2}, + [1035] = {.lex_state = 6, .external_lex_state = 2}, + [1036] = {.lex_state = 6, .external_lex_state = 2}, + [1037] = {.lex_state = 6, .external_lex_state = 2}, + [1038] = {.lex_state = 6, .external_lex_state = 2}, + [1039] = {.lex_state = 6, .external_lex_state = 2}, + [1040] = {.lex_state = 6, .external_lex_state = 2}, + [1041] = {.lex_state = 6, .external_lex_state = 2}, + [1042] = {.lex_state = 6, .external_lex_state = 2}, + [1043] = {.lex_state = 6, .external_lex_state = 2}, + [1044] = {.lex_state = 6, .external_lex_state = 2}, + [1045] = {.lex_state = 6, .external_lex_state = 2}, + [1046] = {.lex_state = 6, .external_lex_state = 2}, + [1047] = {.lex_state = 6, .external_lex_state = 2}, + [1048] = {.lex_state = 6, .external_lex_state = 2}, + [1049] = {.lex_state = 6, .external_lex_state = 2}, + [1050] = {.lex_state = 6, .external_lex_state = 2}, + [1051] = {.lex_state = 6, .external_lex_state = 2}, + [1052] = {.lex_state = 6, .external_lex_state = 2}, + [1053] = {.lex_state = 6, .external_lex_state = 2}, + [1054] = {.lex_state = 6, .external_lex_state = 2}, + [1055] = {.lex_state = 6, .external_lex_state = 2}, + [1056] = {.lex_state = 6, .external_lex_state = 2}, + [1057] = {.lex_state = 6, .external_lex_state = 2}, + [1058] = {.lex_state = 6, .external_lex_state = 2}, + [1059] = {.lex_state = 6, .external_lex_state = 2}, + [1060] = {.lex_state = 6, .external_lex_state = 2}, + [1061] = {.lex_state = 6, .external_lex_state = 2}, + [1062] = {.lex_state = 6, .external_lex_state = 2}, + [1063] = {.lex_state = 6, .external_lex_state = 2}, + [1064] = {.lex_state = 6, .external_lex_state = 2}, + [1065] = {.lex_state = 6, .external_lex_state = 2}, + [1066] = {.lex_state = 6, .external_lex_state = 2}, + [1067] = {.lex_state = 6, .external_lex_state = 2}, + [1068] = {.lex_state = 6, .external_lex_state = 2}, + [1069] = {.lex_state = 6, .external_lex_state = 2}, + [1070] = {.lex_state = 6, .external_lex_state = 2}, + [1071] = {.lex_state = 6, .external_lex_state = 2}, + [1072] = {.lex_state = 6, .external_lex_state = 2}, + [1073] = {.lex_state = 6, .external_lex_state = 2}, + [1074] = {.lex_state = 6, .external_lex_state = 2}, + [1075] = {.lex_state = 6, .external_lex_state = 2}, + [1076] = {.lex_state = 6, .external_lex_state = 2}, + [1077] = {.lex_state = 6, .external_lex_state = 2}, + [1078] = {.lex_state = 6, .external_lex_state = 2}, + [1079] = {.lex_state = 6, .external_lex_state = 2}, + [1080] = {.lex_state = 6, .external_lex_state = 2}, + [1081] = {.lex_state = 6, .external_lex_state = 2}, + [1082] = {.lex_state = 6, .external_lex_state = 2}, + [1083] = {.lex_state = 6, .external_lex_state = 2}, + [1084] = {.lex_state = 6, .external_lex_state = 2}, + [1085] = {.lex_state = 6, .external_lex_state = 2}, + [1086] = {.lex_state = 6, .external_lex_state = 2}, + [1087] = {.lex_state = 6, .external_lex_state = 2}, + [1088] = {.lex_state = 6, .external_lex_state = 2}, + [1089] = {.lex_state = 6, .external_lex_state = 2}, + [1090] = {.lex_state = 6, .external_lex_state = 2}, + [1091] = {.lex_state = 6, .external_lex_state = 2}, + [1092] = {.lex_state = 6, .external_lex_state = 2}, + [1093] = {.lex_state = 6, .external_lex_state = 2}, + [1094] = {.lex_state = 6, .external_lex_state = 2}, + [1095] = {.lex_state = 6, .external_lex_state = 2}, + [1096] = {.lex_state = 6, .external_lex_state = 2}, + [1097] = {.lex_state = 6, .external_lex_state = 2}, + [1098] = {.lex_state = 6, .external_lex_state = 2}, + [1099] = {.lex_state = 10, .external_lex_state = 7}, + [1100] = {.lex_state = 10, .external_lex_state = 7}, + [1101] = {.lex_state = 10, .external_lex_state = 7}, + [1102] = {.lex_state = 10, .external_lex_state = 7}, + [1103] = {.lex_state = 10, .external_lex_state = 7}, + [1104] = {.lex_state = 10, .external_lex_state = 7}, + [1105] = {.lex_state = 10, .external_lex_state = 7}, + [1106] = {.lex_state = 592, .external_lex_state = 2}, + [1107] = {.lex_state = 592, .external_lex_state = 2}, + [1108] = {.lex_state = 43, .external_lex_state = 8}, + [1109] = {.lex_state = 43, .external_lex_state = 8}, + [1110] = {.lex_state = 43, .external_lex_state = 8}, + [1111] = {.lex_state = 43, .external_lex_state = 8}, + [1112] = {.lex_state = 43, .external_lex_state = 8}, + [1113] = {.lex_state = 43, .external_lex_state = 8}, + [1114] = {.lex_state = 43, .external_lex_state = 8}, + [1115] = {.lex_state = 43, .external_lex_state = 8}, + [1116] = {.lex_state = 43, .external_lex_state = 8}, + [1117] = {.lex_state = 43, .external_lex_state = 8}, + [1118] = {.lex_state = 43, .external_lex_state = 8}, + [1119] = {.lex_state = 43, .external_lex_state = 8}, + [1120] = {.lex_state = 43, .external_lex_state = 8}, + [1121] = {.lex_state = 43, .external_lex_state = 8}, + [1122] = {.lex_state = 43, .external_lex_state = 8}, + [1123] = {.lex_state = 43, .external_lex_state = 8}, + [1124] = {.lex_state = 43, .external_lex_state = 8}, + [1125] = {.lex_state = 43, .external_lex_state = 8}, + [1126] = {.lex_state = 43, .external_lex_state = 8}, + [1127] = {.lex_state = 43, .external_lex_state = 8}, + [1128] = {.lex_state = 43, .external_lex_state = 8}, + [1129] = {.lex_state = 43, .external_lex_state = 8}, + [1130] = {.lex_state = 43, .external_lex_state = 8}, + [1131] = {.lex_state = 43, .external_lex_state = 8}, + [1132] = {.lex_state = 43, .external_lex_state = 8}, + [1133] = {.lex_state = 43, .external_lex_state = 8}, + [1134] = {.lex_state = 12, .external_lex_state = 9}, + [1135] = {.lex_state = 12, .external_lex_state = 9}, + [1136] = {.lex_state = 12, .external_lex_state = 9}, + [1137] = {.lex_state = 12, .external_lex_state = 9}, + [1138] = {.lex_state = 12, .external_lex_state = 9}, + [1139] = {.lex_state = 12, .external_lex_state = 9}, + [1140] = {.lex_state = 12, .external_lex_state = 9}, + [1141] = {.lex_state = 43, .external_lex_state = 10}, + [1142] = {.lex_state = 29, .external_lex_state = 8}, + [1143] = {.lex_state = 29, .external_lex_state = 8}, + [1144] = {.lex_state = 43, .external_lex_state = 11}, + [1145] = {.lex_state = 43, .external_lex_state = 11}, + [1146] = {.lex_state = 43, .external_lex_state = 11}, + [1147] = {.lex_state = 43, .external_lex_state = 11}, + [1148] = {.lex_state = 43, .external_lex_state = 11}, + [1149] = {.lex_state = 43, .external_lex_state = 11}, + [1150] = {.lex_state = 29, .external_lex_state = 8}, + [1151] = {.lex_state = 43, .external_lex_state = 11}, + [1152] = {.lex_state = 43, .external_lex_state = 11}, + [1153] = {.lex_state = 43, .external_lex_state = 11}, + [1154] = {.lex_state = 43, .external_lex_state = 11}, + [1155] = {.lex_state = 43, .external_lex_state = 11}, + [1156] = {.lex_state = 43, .external_lex_state = 11}, + [1157] = {.lex_state = 43, .external_lex_state = 11}, + [1158] = {.lex_state = 43, .external_lex_state = 11}, + [1159] = {.lex_state = 43, .external_lex_state = 11}, + [1160] = {.lex_state = 43, .external_lex_state = 11}, + [1161] = {.lex_state = 43, .external_lex_state = 11}, + [1162] = {.lex_state = 1, .external_lex_state = 8}, + [1163] = {.lex_state = 43, .external_lex_state = 11}, + [1164] = {.lex_state = 43, .external_lex_state = 11}, + [1165] = {.lex_state = 43, .external_lex_state = 11}, + [1166] = {.lex_state = 43, .external_lex_state = 11}, + [1167] = {.lex_state = 43, .external_lex_state = 11}, + [1168] = {.lex_state = 43, .external_lex_state = 11}, + [1169] = {.lex_state = 43, .external_lex_state = 11}, + [1170] = {.lex_state = 43, .external_lex_state = 11}, + [1171] = {.lex_state = 43, .external_lex_state = 11}, + [1172] = {.lex_state = 43, .external_lex_state = 11}, + [1173] = {.lex_state = 43, .external_lex_state = 11}, + [1174] = {.lex_state = 29, .external_lex_state = 8}, + [1175] = {.lex_state = 29, .external_lex_state = 8}, + [1176] = {.lex_state = 43, .external_lex_state = 11}, + [1177] = {.lex_state = 29, .external_lex_state = 8}, + [1178] = {.lex_state = 43, .external_lex_state = 11}, + [1179] = {.lex_state = 29, .external_lex_state = 8}, + [1180] = {.lex_state = 35, .external_lex_state = 8}, + [1181] = {.lex_state = 29, .external_lex_state = 8}, + [1182] = {.lex_state = 29, .external_lex_state = 8}, + [1183] = {.lex_state = 29, .external_lex_state = 8}, + [1184] = {.lex_state = 29, .external_lex_state = 8}, + [1185] = {.lex_state = 29, .external_lex_state = 8}, + [1186] = {.lex_state = 1, .external_lex_state = 8}, + [1187] = {.lex_state = 29, .external_lex_state = 8}, + [1188] = {.lex_state = 29, .external_lex_state = 8}, + [1189] = {.lex_state = 1, .external_lex_state = 8}, + [1190] = {.lex_state = 1, .external_lex_state = 8}, + [1191] = {.lex_state = 1, .external_lex_state = 8}, + [1192] = {.lex_state = 1, .external_lex_state = 8}, + [1193] = {.lex_state = 1, .external_lex_state = 8}, + [1194] = {.lex_state = 1, .external_lex_state = 8}, + [1195] = {.lex_state = 1, .external_lex_state = 8}, + [1196] = {.lex_state = 20, .external_lex_state = 2}, + [1197] = {.lex_state = 1, .external_lex_state = 8}, + [1198] = {.lex_state = 1, .external_lex_state = 8}, + [1199] = {.lex_state = 1, .external_lex_state = 8}, + [1200] = {.lex_state = 20, .external_lex_state = 2}, + [1201] = {.lex_state = 1, .external_lex_state = 8}, + [1202] = {.lex_state = 1, .external_lex_state = 8}, + [1203] = {.lex_state = 1, .external_lex_state = 8}, + [1204] = {.lex_state = 20, .external_lex_state = 2}, + [1205] = {.lex_state = 1, .external_lex_state = 8}, + [1206] = {.lex_state = 1, .external_lex_state = 8}, + [1207] = {.lex_state = 1, .external_lex_state = 8}, + [1208] = {.lex_state = 1, .external_lex_state = 8}, + [1209] = {.lex_state = 43, .external_lex_state = 10}, + [1210] = {.lex_state = 43, .external_lex_state = 10}, + [1211] = {.lex_state = 43, .external_lex_state = 10}, + [1212] = {.lex_state = 43, .external_lex_state = 8}, + [1213] = {.lex_state = 43, .external_lex_state = 8}, + [1214] = {.lex_state = 43, .external_lex_state = 8}, + [1215] = {.lex_state = 43, .external_lex_state = 8}, + [1216] = {.lex_state = 43, .external_lex_state = 8}, + [1217] = {.lex_state = 43, .external_lex_state = 8}, + [1218] = {.lex_state = 43, .external_lex_state = 8}, + [1219] = {.lex_state = 43, .external_lex_state = 8}, + [1220] = {.lex_state = 43, .external_lex_state = 8}, + [1221] = {.lex_state = 43, .external_lex_state = 8}, + [1222] = {.lex_state = 43, .external_lex_state = 8}, + [1223] = {.lex_state = 43, .external_lex_state = 8}, + [1224] = {.lex_state = 43, .external_lex_state = 8}, + [1225] = {.lex_state = 43, .external_lex_state = 8}, + [1226] = {.lex_state = 43, .external_lex_state = 8}, + [1227] = {.lex_state = 43, .external_lex_state = 8}, + [1228] = {.lex_state = 43, .external_lex_state = 8}, + [1229] = {.lex_state = 43, .external_lex_state = 8}, + [1230] = {.lex_state = 43, .external_lex_state = 8}, + [1231] = {.lex_state = 43, .external_lex_state = 8}, + [1232] = {.lex_state = 43, .external_lex_state = 8}, + [1233] = {.lex_state = 43, .external_lex_state = 8}, + [1234] = {.lex_state = 43, .external_lex_state = 8}, + [1235] = {.lex_state = 43, .external_lex_state = 8}, + [1236] = {.lex_state = 43, .external_lex_state = 8}, + [1237] = {.lex_state = 43, .external_lex_state = 8}, + [1238] = {.lex_state = 43, .external_lex_state = 8}, + [1239] = {.lex_state = 43, .external_lex_state = 8}, + [1240] = {.lex_state = 43, .external_lex_state = 8}, + [1241] = {.lex_state = 43, .external_lex_state = 8}, + [1242] = {.lex_state = 43, .external_lex_state = 8}, + [1243] = {.lex_state = 43, .external_lex_state = 8}, + [1244] = {.lex_state = 43, .external_lex_state = 8}, + [1245] = {.lex_state = 43, .external_lex_state = 8}, + [1246] = {.lex_state = 43, .external_lex_state = 8}, + [1247] = {.lex_state = 43, .external_lex_state = 8}, + [1248] = {.lex_state = 43, .external_lex_state = 8}, + [1249] = {.lex_state = 43, .external_lex_state = 8}, + [1250] = {.lex_state = 43, .external_lex_state = 8}, + [1251] = {.lex_state = 43, .external_lex_state = 8}, + [1252] = {.lex_state = 43, .external_lex_state = 8}, + [1253] = {.lex_state = 43, .external_lex_state = 8}, + [1254] = {.lex_state = 43, .external_lex_state = 8}, + [1255] = {.lex_state = 43, .external_lex_state = 8}, + [1256] = {.lex_state = 43, .external_lex_state = 8}, + [1257] = {.lex_state = 43, .external_lex_state = 8}, + [1258] = {.lex_state = 43, .external_lex_state = 8}, + [1259] = {.lex_state = 43, .external_lex_state = 8}, + [1260] = {.lex_state = 43, .external_lex_state = 8}, + [1261] = {.lex_state = 43, .external_lex_state = 8}, + [1262] = {.lex_state = 43, .external_lex_state = 8}, + [1263] = {.lex_state = 43, .external_lex_state = 8}, + [1264] = {.lex_state = 43, .external_lex_state = 8}, + [1265] = {.lex_state = 43, .external_lex_state = 8}, + [1266] = {.lex_state = 43, .external_lex_state = 8}, + [1267] = {.lex_state = 43, .external_lex_state = 8}, + [1268] = {.lex_state = 43, .external_lex_state = 8}, + [1269] = {.lex_state = 43, .external_lex_state = 8}, + [1270] = {.lex_state = 43, .external_lex_state = 8}, + [1271] = {.lex_state = 43, .external_lex_state = 8}, + [1272] = {.lex_state = 43, .external_lex_state = 8}, + [1273] = {.lex_state = 43, .external_lex_state = 8}, + [1274] = {.lex_state = 43, .external_lex_state = 8}, + [1275] = {.lex_state = 43, .external_lex_state = 8}, + [1276] = {.lex_state = 43, .external_lex_state = 8}, + [1277] = {.lex_state = 43, .external_lex_state = 8}, + [1278] = {.lex_state = 43, .external_lex_state = 8}, + [1279] = {.lex_state = 43, .external_lex_state = 8}, + [1280] = {.lex_state = 43, .external_lex_state = 8}, + [1281] = {.lex_state = 43, .external_lex_state = 8}, + [1282] = {.lex_state = 43, .external_lex_state = 8}, + [1283] = {.lex_state = 43, .external_lex_state = 8}, + [1284] = {.lex_state = 43, .external_lex_state = 8}, + [1285] = {.lex_state = 43, .external_lex_state = 8}, + [1286] = {.lex_state = 43, .external_lex_state = 8}, + [1287] = {.lex_state = 43, .external_lex_state = 8}, + [1288] = {.lex_state = 43, .external_lex_state = 8}, + [1289] = {.lex_state = 43, .external_lex_state = 8}, + [1290] = {.lex_state = 43, .external_lex_state = 8}, + [1291] = {.lex_state = 43, .external_lex_state = 8}, + [1292] = {.lex_state = 43, .external_lex_state = 8}, + [1293] = {.lex_state = 43, .external_lex_state = 8}, + [1294] = {.lex_state = 43, .external_lex_state = 8}, + [1295] = {.lex_state = 43, .external_lex_state = 8}, + [1296] = {.lex_state = 43, .external_lex_state = 8}, + [1297] = {.lex_state = 43, .external_lex_state = 8}, + [1298] = {.lex_state = 43, .external_lex_state = 8}, + [1299] = {.lex_state = 31, .external_lex_state = 11}, + [1300] = {.lex_state = 31, .external_lex_state = 11}, + [1301] = {.lex_state = 31, .external_lex_state = 11}, + [1302] = {.lex_state = 43, .external_lex_state = 12}, + [1303] = {.lex_state = 31, .external_lex_state = 11}, + [1304] = {.lex_state = 31, .external_lex_state = 11}, + [1305] = {.lex_state = 31, .external_lex_state = 13}, + [1306] = {.lex_state = 31, .external_lex_state = 11}, + [1307] = {.lex_state = 31, .external_lex_state = 11}, + [1308] = {.lex_state = 37, .external_lex_state = 11}, + [1309] = {.lex_state = 31, .external_lex_state = 11}, + [1310] = {.lex_state = 31, .external_lex_state = 11}, + [1311] = {.lex_state = 31, .external_lex_state = 11}, + [1312] = {.lex_state = 31, .external_lex_state = 11}, + [1313] = {.lex_state = 31, .external_lex_state = 11}, + [1314] = {.lex_state = 31, .external_lex_state = 13}, + [1315] = {.lex_state = 31, .external_lex_state = 11}, + [1316] = {.lex_state = 31, .external_lex_state = 11}, + [1317] = {.lex_state = 593, .external_lex_state = 14}, + [1318] = {.lex_state = 593, .external_lex_state = 14}, + [1319] = {.lex_state = 31, .external_lex_state = 11}, + [1320] = {.lex_state = 593, .external_lex_state = 14}, + [1321] = {.lex_state = 593, .external_lex_state = 14}, + [1322] = {.lex_state = 593, .external_lex_state = 14}, + [1323] = {.lex_state = 593, .external_lex_state = 14}, + [1324] = {.lex_state = 593, .external_lex_state = 14}, + [1325] = {.lex_state = 593, .external_lex_state = 14}, + [1326] = {.lex_state = 593, .external_lex_state = 14}, + [1327] = {.lex_state = 4, .external_lex_state = 7}, + [1328] = {.lex_state = 4, .external_lex_state = 7}, + [1329] = {.lex_state = 4, .external_lex_state = 7}, + [1330] = {.lex_state = 4, .external_lex_state = 7}, + [1331] = {.lex_state = 4, .external_lex_state = 7}, + [1332] = {.lex_state = 4, .external_lex_state = 7}, + [1333] = {.lex_state = 4, .external_lex_state = 7}, + [1334] = {.lex_state = 4, .external_lex_state = 15}, + [1335] = {.lex_state = 4, .external_lex_state = 15}, + [1336] = {.lex_state = 4, .external_lex_state = 15}, + [1337] = {.lex_state = 593, .external_lex_state = 14}, + [1338] = {.lex_state = 1, .external_lex_state = 11}, + [1339] = {.lex_state = 4, .external_lex_state = 15}, + [1340] = {.lex_state = 4, .external_lex_state = 16}, + [1341] = {.lex_state = 4, .external_lex_state = 16}, + [1342] = {.lex_state = 593, .external_lex_state = 14}, + [1343] = {.lex_state = 4, .external_lex_state = 15}, + [1344] = {.lex_state = 593, .external_lex_state = 14}, + [1345] = {.lex_state = 593, .external_lex_state = 14}, + [1346] = {.lex_state = 4, .external_lex_state = 16}, + [1347] = {.lex_state = 4, .external_lex_state = 16}, + [1348] = {.lex_state = 4, .external_lex_state = 15}, + [1349] = {.lex_state = 4, .external_lex_state = 16}, + [1350] = {.lex_state = 4, .external_lex_state = 16}, + [1351] = {.lex_state = 4, .external_lex_state = 15}, + [1352] = {.lex_state = 4, .external_lex_state = 15}, + [1353] = {.lex_state = 4, .external_lex_state = 15}, + [1354] = {.lex_state = 4, .external_lex_state = 16}, + [1355] = {.lex_state = 4, .external_lex_state = 15}, + [1356] = {.lex_state = 4, .external_lex_state = 15}, + [1357] = {.lex_state = 4, .external_lex_state = 15}, + [1358] = {.lex_state = 4, .external_lex_state = 15}, + [1359] = {.lex_state = 4, .external_lex_state = 15}, + [1360] = {.lex_state = 4, .external_lex_state = 17}, + [1361] = {.lex_state = 1, .external_lex_state = 11}, + [1362] = {.lex_state = 4, .external_lex_state = 17}, + [1363] = {.lex_state = 1, .external_lex_state = 11}, + [1364] = {.lex_state = 1, .external_lex_state = 11}, + [1365] = {.lex_state = 1, .external_lex_state = 11}, + [1366] = {.lex_state = 1, .external_lex_state = 11}, + [1367] = {.lex_state = 1, .external_lex_state = 11}, + [1368] = {.lex_state = 1, .external_lex_state = 11}, + [1369] = {.lex_state = 1, .external_lex_state = 11}, + [1370] = {.lex_state = 1, .external_lex_state = 11}, + [1371] = {.lex_state = 1, .external_lex_state = 11}, + [1372] = {.lex_state = 1, .external_lex_state = 11}, + [1373] = {.lex_state = 1, .external_lex_state = 11}, + [1374] = {.lex_state = 1, .external_lex_state = 11}, + [1375] = {.lex_state = 4, .external_lex_state = 17}, + [1376] = {.lex_state = 4, .external_lex_state = 17}, + [1377] = {.lex_state = 593, .external_lex_state = 14}, + [1378] = {.lex_state = 593, .external_lex_state = 14}, + [1379] = {.lex_state = 1, .external_lex_state = 11}, + [1380] = {.lex_state = 1, .external_lex_state = 11}, + [1381] = {.lex_state = 1, .external_lex_state = 11}, + [1382] = {.lex_state = 1, .external_lex_state = 11}, + [1383] = {.lex_state = 4, .external_lex_state = 17}, + [1384] = {.lex_state = 1, .external_lex_state = 11}, + [1385] = {.lex_state = 4, .external_lex_state = 17}, + [1386] = {.lex_state = 4, .external_lex_state = 17}, + [1387] = {.lex_state = 43, .external_lex_state = 12}, + [1388] = {.lex_state = 593, .external_lex_state = 14}, + [1389] = {.lex_state = 43, .external_lex_state = 12}, + [1390] = {.lex_state = 43, .external_lex_state = 12}, + [1391] = {.lex_state = 43, .external_lex_state = 11}, + [1392] = {.lex_state = 43, .external_lex_state = 11}, + [1393] = {.lex_state = 43, .external_lex_state = 11}, + [1394] = {.lex_state = 43, .external_lex_state = 11}, + [1395] = {.lex_state = 43, .external_lex_state = 11}, + [1396] = {.lex_state = 43, .external_lex_state = 11}, + [1397] = {.lex_state = 43, .external_lex_state = 11}, + [1398] = {.lex_state = 43, .external_lex_state = 11}, + [1399] = {.lex_state = 43, .external_lex_state = 11}, + [1400] = {.lex_state = 43, .external_lex_state = 11}, + [1401] = {.lex_state = 43, .external_lex_state = 11}, + [1402] = {.lex_state = 43, .external_lex_state = 11}, + [1403] = {.lex_state = 43, .external_lex_state = 11}, + [1404] = {.lex_state = 43, .external_lex_state = 11}, + [1405] = {.lex_state = 43, .external_lex_state = 11}, + [1406] = {.lex_state = 43, .external_lex_state = 11}, + [1407] = {.lex_state = 43, .external_lex_state = 11}, + [1408] = {.lex_state = 43, .external_lex_state = 11}, + [1409] = {.lex_state = 43, .external_lex_state = 11}, + [1410] = {.lex_state = 43, .external_lex_state = 11}, + [1411] = {.lex_state = 43, .external_lex_state = 11}, + [1412] = {.lex_state = 43, .external_lex_state = 11}, + [1413] = {.lex_state = 43, .external_lex_state = 11}, + [1414] = {.lex_state = 43, .external_lex_state = 11}, + [1415] = {.lex_state = 43, .external_lex_state = 11}, + [1416] = {.lex_state = 43, .external_lex_state = 11}, + [1417] = {.lex_state = 43, .external_lex_state = 11}, + [1418] = {.lex_state = 43, .external_lex_state = 11}, + [1419] = {.lex_state = 43, .external_lex_state = 11}, + [1420] = {.lex_state = 43, .external_lex_state = 11}, + [1421] = {.lex_state = 43, .external_lex_state = 11}, + [1422] = {.lex_state = 43, .external_lex_state = 11}, + [1423] = {.lex_state = 43, .external_lex_state = 11}, + [1424] = {.lex_state = 43, .external_lex_state = 11}, + [1425] = {.lex_state = 43, .external_lex_state = 11}, + [1426] = {.lex_state = 43, .external_lex_state = 11}, + [1427] = {.lex_state = 43, .external_lex_state = 11}, + [1428] = {.lex_state = 43, .external_lex_state = 11}, + [1429] = {.lex_state = 43, .external_lex_state = 11}, + [1430] = {.lex_state = 43, .external_lex_state = 11}, + [1431] = {.lex_state = 43, .external_lex_state = 11}, + [1432] = {.lex_state = 43, .external_lex_state = 11}, + [1433] = {.lex_state = 43, .external_lex_state = 11}, + [1434] = {.lex_state = 43, .external_lex_state = 11}, + [1435] = {.lex_state = 43, .external_lex_state = 11}, + [1436] = {.lex_state = 43, .external_lex_state = 11}, + [1437] = {.lex_state = 43, .external_lex_state = 11}, + [1438] = {.lex_state = 43, .external_lex_state = 11}, + [1439] = {.lex_state = 43, .external_lex_state = 11}, + [1440] = {.lex_state = 43, .external_lex_state = 11}, + [1441] = {.lex_state = 43, .external_lex_state = 11}, + [1442] = {.lex_state = 43, .external_lex_state = 11}, + [1443] = {.lex_state = 43, .external_lex_state = 11}, + [1444] = {.lex_state = 43, .external_lex_state = 11}, + [1445] = {.lex_state = 43, .external_lex_state = 11}, + [1446] = {.lex_state = 43, .external_lex_state = 11}, + [1447] = {.lex_state = 43, .external_lex_state = 11}, + [1448] = {.lex_state = 43, .external_lex_state = 11}, + [1449] = {.lex_state = 43, .external_lex_state = 11}, + [1450] = {.lex_state = 43, .external_lex_state = 11}, + [1451] = {.lex_state = 43, .external_lex_state = 11}, + [1452] = {.lex_state = 43, .external_lex_state = 11}, + [1453] = {.lex_state = 43, .external_lex_state = 11}, + [1454] = {.lex_state = 43, .external_lex_state = 11}, + [1455] = {.lex_state = 43, .external_lex_state = 11}, + [1456] = {.lex_state = 43, .external_lex_state = 11}, + [1457] = {.lex_state = 43, .external_lex_state = 11}, + [1458] = {.lex_state = 43, .external_lex_state = 11}, + [1459] = {.lex_state = 43, .external_lex_state = 11}, + [1460] = {.lex_state = 43, .external_lex_state = 11}, + [1461] = {.lex_state = 43, .external_lex_state = 11}, + [1462] = {.lex_state = 43, .external_lex_state = 11}, + [1463] = {.lex_state = 43, .external_lex_state = 11}, + [1464] = {.lex_state = 43, .external_lex_state = 11}, + [1465] = {.lex_state = 43, .external_lex_state = 11}, + [1466] = {.lex_state = 43, .external_lex_state = 11}, + [1467] = {.lex_state = 43, .external_lex_state = 11}, + [1468] = {.lex_state = 43, .external_lex_state = 11}, + [1469] = {.lex_state = 43, .external_lex_state = 11}, + [1470] = {.lex_state = 43, .external_lex_state = 11}, + [1471] = {.lex_state = 43, .external_lex_state = 11}, + [1472] = {.lex_state = 43, .external_lex_state = 11}, + [1473] = {.lex_state = 43, .external_lex_state = 11}, + [1474] = {.lex_state = 43, .external_lex_state = 11}, + [1475] = {.lex_state = 43, .external_lex_state = 11}, + [1476] = {.lex_state = 43, .external_lex_state = 11}, + [1477] = {.lex_state = 43, .external_lex_state = 11}, + [1478] = {.lex_state = 43, .external_lex_state = 11}, + [1479] = {.lex_state = 43, .external_lex_state = 8}, + [1480] = {.lex_state = 43, .external_lex_state = 8}, + [1481] = {.lex_state = 43, .external_lex_state = 18}, + [1482] = {.lex_state = 43, .external_lex_state = 8}, + [1483] = {.lex_state = 43, .external_lex_state = 18}, + [1484] = {.lex_state = 43, .external_lex_state = 8}, + [1485] = {.lex_state = 43, .external_lex_state = 8}, + [1486] = {.lex_state = 43, .external_lex_state = 18}, + [1487] = {.lex_state = 43, .external_lex_state = 8}, + [1488] = {.lex_state = 43, .external_lex_state = 18}, + [1489] = {.lex_state = 43, .external_lex_state = 18}, + [1490] = {.lex_state = 43, .external_lex_state = 18}, + [1491] = {.lex_state = 43, .external_lex_state = 8}, + [1492] = {.lex_state = 43, .external_lex_state = 18}, + [1493] = {.lex_state = 43, .external_lex_state = 8}, + [1494] = {.lex_state = 43, .external_lex_state = 18}, + [1495] = {.lex_state = 43, .external_lex_state = 8}, + [1496] = {.lex_state = 43, .external_lex_state = 8}, + [1497] = {.lex_state = 43, .external_lex_state = 8}, + [1498] = {.lex_state = 43, .external_lex_state = 8}, + [1499] = {.lex_state = 43, .external_lex_state = 8}, + [1500] = {.lex_state = 43, .external_lex_state = 8}, + [1501] = {.lex_state = 43, .external_lex_state = 18}, + [1502] = {.lex_state = 43, .external_lex_state = 8}, + [1503] = {.lex_state = 43, .external_lex_state = 18}, + [1504] = {.lex_state = 43, .external_lex_state = 18}, + [1505] = {.lex_state = 43, .external_lex_state = 8}, + [1506] = {.lex_state = 43, .external_lex_state = 8}, + [1507] = {.lex_state = 43, .external_lex_state = 19}, + [1508] = {.lex_state = 43, .external_lex_state = 8}, + [1509] = {.lex_state = 43, .external_lex_state = 8}, + [1510] = {.lex_state = 43, .external_lex_state = 19}, + [1511] = {.lex_state = 43, .external_lex_state = 18}, + [1512] = {.lex_state = 43, .external_lex_state = 18}, + [1513] = {.lex_state = 43, .external_lex_state = 8}, + [1514] = {.lex_state = 43, .external_lex_state = 8}, + [1515] = {.lex_state = 43, .external_lex_state = 18}, + [1516] = {.lex_state = 43, .external_lex_state = 18}, + [1517] = {.lex_state = 43, .external_lex_state = 18}, + [1518] = {.lex_state = 43, .external_lex_state = 8}, + [1519] = {.lex_state = 43, .external_lex_state = 19}, + [1520] = {.lex_state = 43, .external_lex_state = 19}, + [1521] = {.lex_state = 43, .external_lex_state = 19}, + [1522] = {.lex_state = 43, .external_lex_state = 19}, + [1523] = {.lex_state = 43, .external_lex_state = 19}, + [1524] = {.lex_state = 43, .external_lex_state = 19}, + [1525] = {.lex_state = 43, .external_lex_state = 19}, + [1526] = {.lex_state = 43, .external_lex_state = 19}, + [1527] = {.lex_state = 43, .external_lex_state = 19}, + [1528] = {.lex_state = 43, .external_lex_state = 19}, + [1529] = {.lex_state = 43, .external_lex_state = 19}, + [1530] = {.lex_state = 43, .external_lex_state = 19}, + [1531] = {.lex_state = 43, .external_lex_state = 19}, + [1532] = {.lex_state = 43, .external_lex_state = 19}, + [1533] = {.lex_state = 43, .external_lex_state = 19}, + [1534] = {.lex_state = 43, .external_lex_state = 19}, + [1535] = {.lex_state = 43, .external_lex_state = 19}, + [1536] = {.lex_state = 43, .external_lex_state = 19}, + [1537] = {.lex_state = 43, .external_lex_state = 19}, + [1538] = {.lex_state = 43, .external_lex_state = 19}, + [1539] = {.lex_state = 43, .external_lex_state = 19}, + [1540] = {.lex_state = 43, .external_lex_state = 19}, + [1541] = {.lex_state = 43, .external_lex_state = 19}, + [1542] = {.lex_state = 43, .external_lex_state = 19}, + [1543] = {.lex_state = 43, .external_lex_state = 19}, + [1544] = {.lex_state = 43, .external_lex_state = 19}, + [1545] = {.lex_state = 43, .external_lex_state = 19}, + [1546] = {.lex_state = 43, .external_lex_state = 19}, + [1547] = {.lex_state = 43, .external_lex_state = 19}, + [1548] = {.lex_state = 43, .external_lex_state = 19}, + [1549] = {.lex_state = 43, .external_lex_state = 19}, + [1550] = {.lex_state = 43, .external_lex_state = 19}, + [1551] = {.lex_state = 43, .external_lex_state = 19}, + [1552] = {.lex_state = 43, .external_lex_state = 19}, + [1553] = {.lex_state = 43, .external_lex_state = 19}, + [1554] = {.lex_state = 43, .external_lex_state = 19}, + [1555] = {.lex_state = 43, .external_lex_state = 19}, + [1556] = {.lex_state = 43, .external_lex_state = 19}, + [1557] = {.lex_state = 43, .external_lex_state = 19}, + [1558] = {.lex_state = 43, .external_lex_state = 19}, + [1559] = {.lex_state = 43, .external_lex_state = 19}, + [1560] = {.lex_state = 43, .external_lex_state = 19}, + [1561] = {.lex_state = 43, .external_lex_state = 19}, + [1562] = {.lex_state = 43, .external_lex_state = 8}, + [1563] = {.lex_state = 43, .external_lex_state = 19}, + [1564] = {.lex_state = 43, .external_lex_state = 19}, + [1565] = {.lex_state = 43, .external_lex_state = 19}, + [1566] = {.lex_state = 43, .external_lex_state = 19}, + [1567] = {.lex_state = 43, .external_lex_state = 19}, + [1568] = {.lex_state = 43, .external_lex_state = 19}, + [1569] = {.lex_state = 43, .external_lex_state = 19}, + [1570] = {.lex_state = 43, .external_lex_state = 19}, + [1571] = {.lex_state = 43, .external_lex_state = 19}, + [1572] = {.lex_state = 43, .external_lex_state = 19}, + [1573] = {.lex_state = 43, .external_lex_state = 19}, + [1574] = {.lex_state = 43, .external_lex_state = 19}, + [1575] = {.lex_state = 43, .external_lex_state = 19}, + [1576] = {.lex_state = 43, .external_lex_state = 19}, + [1577] = {.lex_state = 43, .external_lex_state = 19}, + [1578] = {.lex_state = 43, .external_lex_state = 19}, + [1579] = {.lex_state = 43, .external_lex_state = 19}, + [1580] = {.lex_state = 43, .external_lex_state = 19}, + [1581] = {.lex_state = 43, .external_lex_state = 19}, + [1582] = {.lex_state = 43, .external_lex_state = 19}, + [1583] = {.lex_state = 43, .external_lex_state = 19}, + [1584] = {.lex_state = 43, .external_lex_state = 19}, + [1585] = {.lex_state = 43, .external_lex_state = 19}, + [1586] = {.lex_state = 43, .external_lex_state = 19}, + [1587] = {.lex_state = 43, .external_lex_state = 19}, + [1588] = {.lex_state = 43, .external_lex_state = 19}, + [1589] = {.lex_state = 43, .external_lex_state = 19}, + [1590] = {.lex_state = 43, .external_lex_state = 19}, + [1591] = {.lex_state = 43, .external_lex_state = 19}, + [1592] = {.lex_state = 43, .external_lex_state = 19}, + [1593] = {.lex_state = 43, .external_lex_state = 19}, + [1594] = {.lex_state = 43, .external_lex_state = 19}, + [1595] = {.lex_state = 43, .external_lex_state = 19}, + [1596] = {.lex_state = 43, .external_lex_state = 19}, + [1597] = {.lex_state = 43, .external_lex_state = 19}, + [1598] = {.lex_state = 43, .external_lex_state = 18}, + [1599] = {.lex_state = 43, .external_lex_state = 19}, + [1600] = {.lex_state = 43, .external_lex_state = 8}, + [1601] = {.lex_state = 43, .external_lex_state = 8}, + [1602] = {.lex_state = 43, .external_lex_state = 19}, + [1603] = {.lex_state = 43, .external_lex_state = 19}, + [1604] = {.lex_state = 43, .external_lex_state = 19}, + [1605] = {.lex_state = 43, .external_lex_state = 19}, + [1606] = {.lex_state = 43, .external_lex_state = 19}, + [1607] = {.lex_state = 43, .external_lex_state = 19}, + [1608] = {.lex_state = 43, .external_lex_state = 19}, + [1609] = {.lex_state = 43, .external_lex_state = 8}, + [1610] = {.lex_state = 43, .external_lex_state = 19}, + [1611] = {.lex_state = 43, .external_lex_state = 19}, + [1612] = {.lex_state = 43, .external_lex_state = 19}, + [1613] = {.lex_state = 43, .external_lex_state = 8}, + [1614] = {.lex_state = 43, .external_lex_state = 19}, + [1615] = {.lex_state = 43, .external_lex_state = 19}, + [1616] = {.lex_state = 43, .external_lex_state = 19}, + [1617] = {.lex_state = 43, .external_lex_state = 19}, + [1618] = {.lex_state = 43, .external_lex_state = 19}, + [1619] = {.lex_state = 43, .external_lex_state = 19}, + [1620] = {.lex_state = 43, .external_lex_state = 19}, + [1621] = {.lex_state = 43, .external_lex_state = 19}, + [1622] = {.lex_state = 43, .external_lex_state = 8}, + [1623] = {.lex_state = 43, .external_lex_state = 8}, + [1624] = {.lex_state = 43, .external_lex_state = 19}, + [1625] = {.lex_state = 43, .external_lex_state = 18}, + [1626] = {.lex_state = 43, .external_lex_state = 19}, + [1627] = {.lex_state = 43, .external_lex_state = 19}, + [1628] = {.lex_state = 43, .external_lex_state = 19}, + [1629] = {.lex_state = 43, .external_lex_state = 19}, + [1630] = {.lex_state = 43, .external_lex_state = 19}, + [1631] = {.lex_state = 43, .external_lex_state = 19}, + [1632] = {.lex_state = 43, .external_lex_state = 8}, + [1633] = {.lex_state = 43, .external_lex_state = 8}, + [1634] = {.lex_state = 43, .external_lex_state = 19}, + [1635] = {.lex_state = 43, .external_lex_state = 19}, + [1636] = {.lex_state = 43, .external_lex_state = 19}, + [1637] = {.lex_state = 43, .external_lex_state = 19}, + [1638] = {.lex_state = 43, .external_lex_state = 19}, + [1639] = {.lex_state = 43, .external_lex_state = 19}, + [1640] = {.lex_state = 43, .external_lex_state = 19}, + [1641] = {.lex_state = 43, .external_lex_state = 19}, + [1642] = {.lex_state = 43, .external_lex_state = 19}, + [1643] = {.lex_state = 43, .external_lex_state = 19}, + [1644] = {.lex_state = 43, .external_lex_state = 8}, + [1645] = {.lex_state = 43, .external_lex_state = 19}, + [1646] = {.lex_state = 43, .external_lex_state = 19}, + [1647] = {.lex_state = 43, .external_lex_state = 18}, + [1648] = {.lex_state = 43, .external_lex_state = 8}, + [1649] = {.lex_state = 43, .external_lex_state = 19}, + [1650] = {.lex_state = 43, .external_lex_state = 19}, + [1651] = {.lex_state = 43, .external_lex_state = 19}, + [1652] = {.lex_state = 43, .external_lex_state = 19}, + [1653] = {.lex_state = 43, .external_lex_state = 19}, + [1654] = {.lex_state = 43, .external_lex_state = 18}, + [1655] = {.lex_state = 43, .external_lex_state = 8}, + [1656] = {.lex_state = 43, .external_lex_state = 19}, + [1657] = {.lex_state = 43, .external_lex_state = 18}, + [1658] = {.lex_state = 43, .external_lex_state = 19}, + [1659] = {.lex_state = 43, .external_lex_state = 19}, + [1660] = {.lex_state = 43, .external_lex_state = 19}, + [1661] = {.lex_state = 43, .external_lex_state = 8}, + [1662] = {.lex_state = 43, .external_lex_state = 19}, + [1663] = {.lex_state = 43, .external_lex_state = 8}, + [1664] = {.lex_state = 43, .external_lex_state = 19}, + [1665] = {.lex_state = 43, .external_lex_state = 19}, + [1666] = {.lex_state = 43, .external_lex_state = 19}, + [1667] = {.lex_state = 43, .external_lex_state = 18}, + [1668] = {.lex_state = 43, .external_lex_state = 19}, + [1669] = {.lex_state = 43, .external_lex_state = 19}, + [1670] = {.lex_state = 43, .external_lex_state = 19}, + [1671] = {.lex_state = 43, .external_lex_state = 19}, + [1672] = {.lex_state = 43, .external_lex_state = 8}, + [1673] = {.lex_state = 43, .external_lex_state = 19}, + [1674] = {.lex_state = 43, .external_lex_state = 19}, + [1675] = {.lex_state = 43, .external_lex_state = 19}, + [1676] = {.lex_state = 43, .external_lex_state = 19}, + [1677] = {.lex_state = 43, .external_lex_state = 19}, + [1678] = {.lex_state = 43, .external_lex_state = 8}, + [1679] = {.lex_state = 43, .external_lex_state = 19}, + [1680] = {.lex_state = 43, .external_lex_state = 19}, + [1681] = {.lex_state = 43, .external_lex_state = 19}, + [1682] = {.lex_state = 43, .external_lex_state = 19}, + [1683] = {.lex_state = 43, .external_lex_state = 19}, + [1684] = {.lex_state = 43, .external_lex_state = 19}, + [1685] = {.lex_state = 43, .external_lex_state = 19}, + [1686] = {.lex_state = 43, .external_lex_state = 19}, + [1687] = {.lex_state = 43, .external_lex_state = 19}, + [1688] = {.lex_state = 43, .external_lex_state = 19}, + [1689] = {.lex_state = 43, .external_lex_state = 19}, + [1690] = {.lex_state = 43, .external_lex_state = 20}, + [1691] = {.lex_state = 43, .external_lex_state = 19}, + [1692] = {.lex_state = 43, .external_lex_state = 19}, + [1693] = {.lex_state = 43, .external_lex_state = 19}, + [1694] = {.lex_state = 43, .external_lex_state = 19}, + [1695] = {.lex_state = 43, .external_lex_state = 19}, + [1696] = {.lex_state = 43, .external_lex_state = 8}, + [1697] = {.lex_state = 43, .external_lex_state = 19}, + [1698] = {.lex_state = 43, .external_lex_state = 8}, + [1699] = {.lex_state = 43, .external_lex_state = 19}, + [1700] = {.lex_state = 43, .external_lex_state = 19}, + [1701] = {.lex_state = 43, .external_lex_state = 18}, + [1702] = {.lex_state = 43, .external_lex_state = 19}, + [1703] = {.lex_state = 43, .external_lex_state = 20}, + [1704] = {.lex_state = 43, .external_lex_state = 8}, + [1705] = {.lex_state = 43, .external_lex_state = 19}, + [1706] = {.lex_state = 43, .external_lex_state = 19}, + [1707] = {.lex_state = 43, .external_lex_state = 19}, + [1708] = {.lex_state = 43, .external_lex_state = 19}, + [1709] = {.lex_state = 43, .external_lex_state = 19}, + [1710] = {.lex_state = 43, .external_lex_state = 19}, + [1711] = {.lex_state = 43, .external_lex_state = 19}, + [1712] = {.lex_state = 43, .external_lex_state = 19}, + [1713] = {.lex_state = 43, .external_lex_state = 19}, + [1714] = {.lex_state = 43, .external_lex_state = 19}, + [1715] = {.lex_state = 43, .external_lex_state = 19}, + [1716] = {.lex_state = 43, .external_lex_state = 19}, + [1717] = {.lex_state = 43, .external_lex_state = 19}, + [1718] = {.lex_state = 43, .external_lex_state = 19}, + [1719] = {.lex_state = 43, .external_lex_state = 19}, + [1720] = {.lex_state = 43, .external_lex_state = 19}, + [1721] = {.lex_state = 43, .external_lex_state = 19}, + [1722] = {.lex_state = 43, .external_lex_state = 19}, + [1723] = {.lex_state = 43, .external_lex_state = 19}, + [1724] = {.lex_state = 43, .external_lex_state = 19}, + [1725] = {.lex_state = 43, .external_lex_state = 19}, + [1726] = {.lex_state = 43, .external_lex_state = 19}, + [1727] = {.lex_state = 43, .external_lex_state = 19}, + [1728] = {.lex_state = 43, .external_lex_state = 19}, + [1729] = {.lex_state = 43, .external_lex_state = 19}, + [1730] = {.lex_state = 43, .external_lex_state = 19}, + [1731] = {.lex_state = 43, .external_lex_state = 19}, + [1732] = {.lex_state = 43, .external_lex_state = 19}, + [1733] = {.lex_state = 43, .external_lex_state = 19}, + [1734] = {.lex_state = 43, .external_lex_state = 19}, + [1735] = {.lex_state = 43, .external_lex_state = 8}, + [1736] = {.lex_state = 43, .external_lex_state = 19}, + [1737] = {.lex_state = 43, .external_lex_state = 8}, + [1738] = {.lex_state = 43, .external_lex_state = 19}, + [1739] = {.lex_state = 43, .external_lex_state = 19}, + [1740] = {.lex_state = 43, .external_lex_state = 19}, + [1741] = {.lex_state = 43, .external_lex_state = 19}, + [1742] = {.lex_state = 43, .external_lex_state = 19}, + [1743] = {.lex_state = 43, .external_lex_state = 19}, + [1744] = {.lex_state = 43, .external_lex_state = 19}, + [1745] = {.lex_state = 43, .external_lex_state = 19}, + [1746] = {.lex_state = 43, .external_lex_state = 19}, + [1747] = {.lex_state = 43, .external_lex_state = 19}, + [1748] = {.lex_state = 43, .external_lex_state = 19}, + [1749] = {.lex_state = 43, .external_lex_state = 19}, + [1750] = {.lex_state = 43, .external_lex_state = 19}, + [1751] = {.lex_state = 43, .external_lex_state = 19}, + [1752] = {.lex_state = 43, .external_lex_state = 19}, + [1753] = {.lex_state = 43, .external_lex_state = 19}, + [1754] = {.lex_state = 43, .external_lex_state = 19}, + [1755] = {.lex_state = 43, .external_lex_state = 8}, + [1756] = {.lex_state = 43, .external_lex_state = 19}, + [1757] = {.lex_state = 43, .external_lex_state = 19}, + [1758] = {.lex_state = 43, .external_lex_state = 19}, + [1759] = {.lex_state = 43, .external_lex_state = 19}, + [1760] = {.lex_state = 43, .external_lex_state = 19}, + [1761] = {.lex_state = 43, .external_lex_state = 19}, + [1762] = {.lex_state = 43, .external_lex_state = 19}, + [1763] = {.lex_state = 43, .external_lex_state = 19}, + [1764] = {.lex_state = 43, .external_lex_state = 19}, + [1765] = {.lex_state = 43, .external_lex_state = 18}, + [1766] = {.lex_state = 43, .external_lex_state = 19}, + [1767] = {.lex_state = 43, .external_lex_state = 19}, + [1768] = {.lex_state = 43, .external_lex_state = 8}, + [1769] = {.lex_state = 43, .external_lex_state = 18}, + [1770] = {.lex_state = 43, .external_lex_state = 18}, + [1771] = {.lex_state = 43, .external_lex_state = 18}, + [1772] = {.lex_state = 43, .external_lex_state = 19}, + [1773] = {.lex_state = 43, .external_lex_state = 19}, + [1774] = {.lex_state = 43, .external_lex_state = 19}, + [1775] = {.lex_state = 43, .external_lex_state = 19}, + [1776] = {.lex_state = 43, .external_lex_state = 19}, + [1777] = {.lex_state = 43, .external_lex_state = 18}, + [1778] = {.lex_state = 43, .external_lex_state = 18}, + [1779] = {.lex_state = 43, .external_lex_state = 19}, + [1780] = {.lex_state = 43, .external_lex_state = 18}, + [1781] = {.lex_state = 43, .external_lex_state = 19}, + [1782] = {.lex_state = 43, .external_lex_state = 19}, + [1783] = {.lex_state = 43, .external_lex_state = 18}, + [1784] = {.lex_state = 43, .external_lex_state = 18}, + [1785] = {.lex_state = 43, .external_lex_state = 18}, + [1786] = {.lex_state = 43, .external_lex_state = 18}, + [1787] = {.lex_state = 43, .external_lex_state = 18}, + [1788] = {.lex_state = 43, .external_lex_state = 8}, + [1789] = {.lex_state = 43, .external_lex_state = 8}, + [1790] = {.lex_state = 43, .external_lex_state = 18}, + [1791] = {.lex_state = 43, .external_lex_state = 19}, + [1792] = {.lex_state = 43, .external_lex_state = 19}, + [1793] = {.lex_state = 43, .external_lex_state = 18}, + [1794] = {.lex_state = 43, .external_lex_state = 19}, + [1795] = {.lex_state = 43, .external_lex_state = 19}, + [1796] = {.lex_state = 43, .external_lex_state = 19}, + [1797] = {.lex_state = 43, .external_lex_state = 19}, + [1798] = {.lex_state = 43, .external_lex_state = 19}, + [1799] = {.lex_state = 43, .external_lex_state = 19}, + [1800] = {.lex_state = 43, .external_lex_state = 19}, + [1801] = {.lex_state = 43, .external_lex_state = 19}, + [1802] = {.lex_state = 43, .external_lex_state = 18}, + [1803] = {.lex_state = 43, .external_lex_state = 19}, + [1804] = {.lex_state = 43, .external_lex_state = 8}, + [1805] = {.lex_state = 43, .external_lex_state = 8}, + [1806] = {.lex_state = 43, .external_lex_state = 19}, + [1807] = {.lex_state = 43, .external_lex_state = 19}, + [1808] = {.lex_state = 43, .external_lex_state = 8}, + [1809] = {.lex_state = 43, .external_lex_state = 19}, + [1810] = {.lex_state = 43, .external_lex_state = 19}, + [1811] = {.lex_state = 43, .external_lex_state = 19}, + [1812] = {.lex_state = 43, .external_lex_state = 19}, + [1813] = {.lex_state = 43, .external_lex_state = 19}, + [1814] = {.lex_state = 43, .external_lex_state = 19}, + [1815] = {.lex_state = 43, .external_lex_state = 19}, + [1816] = {.lex_state = 43, .external_lex_state = 19}, + [1817] = {.lex_state = 43, .external_lex_state = 8}, + [1818] = {.lex_state = 43, .external_lex_state = 19}, + [1819] = {.lex_state = 43, .external_lex_state = 19}, + [1820] = {.lex_state = 43, .external_lex_state = 19}, + [1821] = {.lex_state = 43, .external_lex_state = 19}, + [1822] = {.lex_state = 43, .external_lex_state = 18}, + [1823] = {.lex_state = 43, .external_lex_state = 19}, + [1824] = {.lex_state = 43, .external_lex_state = 19}, + [1825] = {.lex_state = 43, .external_lex_state = 18}, + [1826] = {.lex_state = 43, .external_lex_state = 19}, + [1827] = {.lex_state = 43, .external_lex_state = 19}, + [1828] = {.lex_state = 43, .external_lex_state = 18}, + [1829] = {.lex_state = 43, .external_lex_state = 19}, + [1830] = {.lex_state = 43, .external_lex_state = 19}, + [1831] = {.lex_state = 43, .external_lex_state = 19}, + [1832] = {.lex_state = 43, .external_lex_state = 19}, + [1833] = {.lex_state = 43, .external_lex_state = 19}, + [1834] = {.lex_state = 43, .external_lex_state = 19}, + [1835] = {.lex_state = 43, .external_lex_state = 19}, + [1836] = {.lex_state = 43, .external_lex_state = 19}, + [1837] = {.lex_state = 43, .external_lex_state = 19}, + [1838] = {.lex_state = 43, .external_lex_state = 19}, + [1839] = {.lex_state = 43, .external_lex_state = 19}, + [1840] = {.lex_state = 43, .external_lex_state = 19}, + [1841] = {.lex_state = 43, .external_lex_state = 19}, + [1842] = {.lex_state = 43, .external_lex_state = 19}, + [1843] = {.lex_state = 43, .external_lex_state = 19}, + [1844] = {.lex_state = 43, .external_lex_state = 19}, + [1845] = {.lex_state = 43, .external_lex_state = 19}, + [1846] = {.lex_state = 43, .external_lex_state = 19}, + [1847] = {.lex_state = 43, .external_lex_state = 19}, + [1848] = {.lex_state = 43, .external_lex_state = 19}, + [1849] = {.lex_state = 43, .external_lex_state = 19}, + [1850] = {.lex_state = 43, .external_lex_state = 19}, + [1851] = {.lex_state = 43, .external_lex_state = 19}, + [1852] = {.lex_state = 43, .external_lex_state = 19}, + [1853] = {.lex_state = 43, .external_lex_state = 19}, + [1854] = {.lex_state = 43, .external_lex_state = 19}, + [1855] = {.lex_state = 43, .external_lex_state = 19}, + [1856] = {.lex_state = 43, .external_lex_state = 19}, + [1857] = {.lex_state = 43, .external_lex_state = 19}, + [1858] = {.lex_state = 43, .external_lex_state = 19}, + [1859] = {.lex_state = 43, .external_lex_state = 19}, + [1860] = {.lex_state = 43, .external_lex_state = 19}, + [1861] = {.lex_state = 43, .external_lex_state = 19}, + [1862] = {.lex_state = 43, .external_lex_state = 19}, + [1863] = {.lex_state = 43, .external_lex_state = 19}, + [1864] = {.lex_state = 43, .external_lex_state = 19}, + [1865] = {.lex_state = 43, .external_lex_state = 19}, + [1866] = {.lex_state = 43, .external_lex_state = 19}, + [1867] = {.lex_state = 43, .external_lex_state = 19}, + [1868] = {.lex_state = 43, .external_lex_state = 19}, + [1869] = {.lex_state = 43, .external_lex_state = 19}, + [1870] = {.lex_state = 43, .external_lex_state = 19}, + [1871] = {.lex_state = 43, .external_lex_state = 19}, + [1872] = {.lex_state = 43, .external_lex_state = 19}, + [1873] = {.lex_state = 43, .external_lex_state = 8}, + [1874] = {.lex_state = 43, .external_lex_state = 19}, + [1875] = {.lex_state = 43, .external_lex_state = 19}, + [1876] = {.lex_state = 43, .external_lex_state = 19}, + [1877] = {.lex_state = 43, .external_lex_state = 19}, + [1878] = {.lex_state = 43, .external_lex_state = 19}, + [1879] = {.lex_state = 43, .external_lex_state = 19}, + [1880] = {.lex_state = 43, .external_lex_state = 19}, + [1881] = {.lex_state = 43, .external_lex_state = 19}, + [1882] = {.lex_state = 43, .external_lex_state = 19}, + [1883] = {.lex_state = 43, .external_lex_state = 19}, + [1884] = {.lex_state = 43, .external_lex_state = 19}, + [1885] = {.lex_state = 43, .external_lex_state = 19}, + [1886] = {.lex_state = 43, .external_lex_state = 19}, + [1887] = {.lex_state = 43, .external_lex_state = 19}, + [1888] = {.lex_state = 43, .external_lex_state = 19}, + [1889] = {.lex_state = 43, .external_lex_state = 8}, + [1890] = {.lex_state = 43, .external_lex_state = 19}, + [1891] = {.lex_state = 43, .external_lex_state = 19}, + [1892] = {.lex_state = 43, .external_lex_state = 19}, + [1893] = {.lex_state = 43, .external_lex_state = 19}, + [1894] = {.lex_state = 43, .external_lex_state = 19}, + [1895] = {.lex_state = 43, .external_lex_state = 19}, + [1896] = {.lex_state = 43, .external_lex_state = 19}, + [1897] = {.lex_state = 43, .external_lex_state = 19}, + [1898] = {.lex_state = 43, .external_lex_state = 19}, + [1899] = {.lex_state = 43, .external_lex_state = 19}, + [1900] = {.lex_state = 43, .external_lex_state = 19}, + [1901] = {.lex_state = 43, .external_lex_state = 19}, + [1902] = {.lex_state = 43, .external_lex_state = 19}, + [1903] = {.lex_state = 43, .external_lex_state = 19}, + [1904] = {.lex_state = 43, .external_lex_state = 19}, + [1905] = {.lex_state = 43, .external_lex_state = 8}, + [1906] = {.lex_state = 43, .external_lex_state = 19}, + [1907] = {.lex_state = 43, .external_lex_state = 19}, + [1908] = {.lex_state = 43, .external_lex_state = 19}, + [1909] = {.lex_state = 43, .external_lex_state = 19}, + [1910] = {.lex_state = 43, .external_lex_state = 19}, + [1911] = {.lex_state = 43, .external_lex_state = 19}, + [1912] = {.lex_state = 43, .external_lex_state = 19}, + [1913] = {.lex_state = 43, .external_lex_state = 8}, + [1914] = {.lex_state = 43, .external_lex_state = 19}, + [1915] = {.lex_state = 43, .external_lex_state = 19}, + [1916] = {.lex_state = 43, .external_lex_state = 19}, + [1917] = {.lex_state = 43, .external_lex_state = 19}, + [1918] = {.lex_state = 43, .external_lex_state = 19}, + [1919] = {.lex_state = 43, .external_lex_state = 19}, + [1920] = {.lex_state = 43, .external_lex_state = 19}, + [1921] = {.lex_state = 43, .external_lex_state = 19}, + [1922] = {.lex_state = 43, .external_lex_state = 8}, + [1923] = {.lex_state = 43, .external_lex_state = 19}, + [1924] = {.lex_state = 43, .external_lex_state = 19}, + [1925] = {.lex_state = 43, .external_lex_state = 19}, + [1926] = {.lex_state = 43, .external_lex_state = 19}, + [1927] = {.lex_state = 43, .external_lex_state = 19}, + [1928] = {.lex_state = 43, .external_lex_state = 19}, + [1929] = {.lex_state = 43, .external_lex_state = 8}, + [1930] = {.lex_state = 43, .external_lex_state = 19}, + [1931] = {.lex_state = 43, .external_lex_state = 19}, + [1932] = {.lex_state = 43, .external_lex_state = 19}, + [1933] = {.lex_state = 43, .external_lex_state = 19}, + [1934] = {.lex_state = 43, .external_lex_state = 8}, + [1935] = {.lex_state = 43, .external_lex_state = 19}, + [1936] = {.lex_state = 43, .external_lex_state = 19}, + [1937] = {.lex_state = 43, .external_lex_state = 19}, + [1938] = {.lex_state = 43, .external_lex_state = 19}, + [1939] = {.lex_state = 43, .external_lex_state = 19}, + [1940] = {.lex_state = 43, .external_lex_state = 19}, + [1941] = {.lex_state = 43, .external_lex_state = 8}, + [1942] = {.lex_state = 43, .external_lex_state = 19}, + [1943] = {.lex_state = 43, .external_lex_state = 8}, + [1944] = {.lex_state = 43, .external_lex_state = 19}, + [1945] = {.lex_state = 43, .external_lex_state = 19}, + [1946] = {.lex_state = 43, .external_lex_state = 8}, + [1947] = {.lex_state = 43, .external_lex_state = 19}, + [1948] = {.lex_state = 43, .external_lex_state = 8}, + [1949] = {.lex_state = 43, .external_lex_state = 19}, + [1950] = {.lex_state = 43, .external_lex_state = 19}, + [1951] = {.lex_state = 43, .external_lex_state = 19}, + [1952] = {.lex_state = 43, .external_lex_state = 19}, + [1953] = {.lex_state = 43, .external_lex_state = 19}, + [1954] = {.lex_state = 43, .external_lex_state = 19}, + [1955] = {.lex_state = 43, .external_lex_state = 19}, + [1956] = {.lex_state = 43, .external_lex_state = 19}, + [1957] = {.lex_state = 43, .external_lex_state = 19}, + [1958] = {.lex_state = 43, .external_lex_state = 19}, + [1959] = {.lex_state = 43, .external_lex_state = 19}, + [1960] = {.lex_state = 43, .external_lex_state = 19}, + [1961] = {.lex_state = 43, .external_lex_state = 8}, + [1962] = {.lex_state = 43, .external_lex_state = 19}, + [1963] = {.lex_state = 43, .external_lex_state = 19}, + [1964] = {.lex_state = 43, .external_lex_state = 19}, + [1965] = {.lex_state = 43, .external_lex_state = 19}, + [1966] = {.lex_state = 43, .external_lex_state = 19}, + [1967] = {.lex_state = 43, .external_lex_state = 19}, + [1968] = {.lex_state = 43, .external_lex_state = 8}, + [1969] = {.lex_state = 43, .external_lex_state = 19}, + [1970] = {.lex_state = 43, .external_lex_state = 8}, + [1971] = {.lex_state = 43, .external_lex_state = 19}, + [1972] = {.lex_state = 43, .external_lex_state = 8}, + [1973] = {.lex_state = 43, .external_lex_state = 19}, + [1974] = {.lex_state = 43, .external_lex_state = 19}, + [1975] = {.lex_state = 43, .external_lex_state = 19}, + [1976] = {.lex_state = 43, .external_lex_state = 19}, + [1977] = {.lex_state = 43, .external_lex_state = 19}, + [1978] = {.lex_state = 43, .external_lex_state = 19}, + [1979] = {.lex_state = 43, .external_lex_state = 19}, + [1980] = {.lex_state = 43, .external_lex_state = 19}, + [1981] = {.lex_state = 43, .external_lex_state = 19}, + [1982] = {.lex_state = 43, .external_lex_state = 8}, + [1983] = {.lex_state = 43, .external_lex_state = 19}, + [1984] = {.lex_state = 43, .external_lex_state = 19}, + [1985] = {.lex_state = 43, .external_lex_state = 19}, + [1986] = {.lex_state = 43, .external_lex_state = 19}, + [1987] = {.lex_state = 43, .external_lex_state = 19}, + [1988] = {.lex_state = 43, .external_lex_state = 8}, + [1989] = {.lex_state = 43, .external_lex_state = 19}, + [1990] = {.lex_state = 43, .external_lex_state = 19}, + [1991] = {.lex_state = 43, .external_lex_state = 19}, + [1992] = {.lex_state = 43, .external_lex_state = 19}, + [1993] = {.lex_state = 43, .external_lex_state = 19}, + [1994] = {.lex_state = 43, .external_lex_state = 19}, + [1995] = {.lex_state = 43, .external_lex_state = 19}, + [1996] = {.lex_state = 43, .external_lex_state = 19}, + [1997] = {.lex_state = 43, .external_lex_state = 19}, + [1998] = {.lex_state = 43, .external_lex_state = 19}, + [1999] = {.lex_state = 43, .external_lex_state = 19}, + [2000] = {.lex_state = 43, .external_lex_state = 19}, + [2001] = {.lex_state = 43, .external_lex_state = 19}, + [2002] = {.lex_state = 43, .external_lex_state = 19}, + [2003] = {.lex_state = 43, .external_lex_state = 19}, + [2004] = {.lex_state = 43, .external_lex_state = 19}, + [2005] = {.lex_state = 43, .external_lex_state = 19}, + [2006] = {.lex_state = 43, .external_lex_state = 19}, + [2007] = {.lex_state = 43, .external_lex_state = 19}, + [2008] = {.lex_state = 43, .external_lex_state = 8}, + [2009] = {.lex_state = 43, .external_lex_state = 19}, + [2010] = {.lex_state = 43, .external_lex_state = 19}, + [2011] = {.lex_state = 43, .external_lex_state = 19}, + [2012] = {.lex_state = 43, .external_lex_state = 19}, + [2013] = {.lex_state = 43, .external_lex_state = 19}, + [2014] = {.lex_state = 43, .external_lex_state = 19}, + [2015] = {.lex_state = 43, .external_lex_state = 19}, + [2016] = {.lex_state = 43, .external_lex_state = 19}, + [2017] = {.lex_state = 43, .external_lex_state = 8}, + [2018] = {.lex_state = 43, .external_lex_state = 19}, + [2019] = {.lex_state = 43, .external_lex_state = 19}, + [2020] = {.lex_state = 43, .external_lex_state = 19}, + [2021] = {.lex_state = 43, .external_lex_state = 18}, + [2022] = {.lex_state = 43, .external_lex_state = 19}, + [2023] = {.lex_state = 43, .external_lex_state = 19}, + [2024] = {.lex_state = 43, .external_lex_state = 18}, + [2025] = {.lex_state = 43, .external_lex_state = 18}, + [2026] = {.lex_state = 43, .external_lex_state = 19}, + [2027] = {.lex_state = 43, .external_lex_state = 19}, + [2028] = {.lex_state = 43, .external_lex_state = 18}, + [2029] = {.lex_state = 43, .external_lex_state = 19}, + [2030] = {.lex_state = 43, .external_lex_state = 18}, + [2031] = {.lex_state = 43, .external_lex_state = 18}, + [2032] = {.lex_state = 43, .external_lex_state = 19}, + [2033] = {.lex_state = 43, .external_lex_state = 18}, + [2034] = {.lex_state = 43, .external_lex_state = 18}, + [2035] = {.lex_state = 43, .external_lex_state = 19}, + [2036] = {.lex_state = 43, .external_lex_state = 19}, + [2037] = {.lex_state = 43, .external_lex_state = 18}, + [2038] = {.lex_state = 43, .external_lex_state = 18}, + [2039] = {.lex_state = 43, .external_lex_state = 19}, + [2040] = {.lex_state = 43, .external_lex_state = 19}, + [2041] = {.lex_state = 43, .external_lex_state = 8}, + [2042] = {.lex_state = 43, .external_lex_state = 19}, + [2043] = {.lex_state = 43, .external_lex_state = 19}, + [2044] = {.lex_state = 43, .external_lex_state = 19}, + [2045] = {.lex_state = 43, .external_lex_state = 19}, + [2046] = {.lex_state = 43, .external_lex_state = 19}, + [2047] = {.lex_state = 43, .external_lex_state = 19}, + [2048] = {.lex_state = 43, .external_lex_state = 19}, + [2049] = {.lex_state = 43, .external_lex_state = 19}, + [2050] = {.lex_state = 43, .external_lex_state = 19}, + [2051] = {.lex_state = 43, .external_lex_state = 19}, + [2052] = {.lex_state = 43, .external_lex_state = 19}, + [2053] = {.lex_state = 43, .external_lex_state = 19}, + [2054] = {.lex_state = 43, .external_lex_state = 19}, + [2055] = {.lex_state = 43, .external_lex_state = 8}, + [2056] = {.lex_state = 43, .external_lex_state = 19}, + [2057] = {.lex_state = 43, .external_lex_state = 19}, + [2058] = {.lex_state = 43, .external_lex_state = 19}, + [2059] = {.lex_state = 43, .external_lex_state = 19}, + [2060] = {.lex_state = 43, .external_lex_state = 19}, + [2061] = {.lex_state = 43, .external_lex_state = 19}, + [2062] = {.lex_state = 43, .external_lex_state = 19}, + [2063] = {.lex_state = 43, .external_lex_state = 19}, + [2064] = {.lex_state = 43, .external_lex_state = 8}, + [2065] = {.lex_state = 43, .external_lex_state = 19}, + [2066] = {.lex_state = 43, .external_lex_state = 19}, + [2067] = {.lex_state = 43, .external_lex_state = 19}, + [2068] = {.lex_state = 43, .external_lex_state = 19}, + [2069] = {.lex_state = 43, .external_lex_state = 19}, + [2070] = {.lex_state = 43, .external_lex_state = 19}, + [2071] = {.lex_state = 43, .external_lex_state = 19}, + [2072] = {.lex_state = 43, .external_lex_state = 19}, + [2073] = {.lex_state = 43, .external_lex_state = 19}, + [2074] = {.lex_state = 43, .external_lex_state = 19}, + [2075] = {.lex_state = 43, .external_lex_state = 19}, + [2076] = {.lex_state = 43, .external_lex_state = 19}, + [2077] = {.lex_state = 43, .external_lex_state = 19}, + [2078] = {.lex_state = 43, .external_lex_state = 19}, + [2079] = {.lex_state = 43, .external_lex_state = 19}, + [2080] = {.lex_state = 43, .external_lex_state = 19}, + [2081] = {.lex_state = 43, .external_lex_state = 19}, + [2082] = {.lex_state = 43, .external_lex_state = 19}, + [2083] = {.lex_state = 43, .external_lex_state = 19}, + [2084] = {.lex_state = 43, .external_lex_state = 19}, + [2085] = {.lex_state = 43, .external_lex_state = 19}, + [2086] = {.lex_state = 43, .external_lex_state = 19}, + [2087] = {.lex_state = 43, .external_lex_state = 19}, + [2088] = {.lex_state = 43, .external_lex_state = 19}, + [2089] = {.lex_state = 43, .external_lex_state = 19}, + [2090] = {.lex_state = 43, .external_lex_state = 19}, + [2091] = {.lex_state = 43, .external_lex_state = 19}, + [2092] = {.lex_state = 43, .external_lex_state = 19}, + [2093] = {.lex_state = 43, .external_lex_state = 19}, + [2094] = {.lex_state = 43, .external_lex_state = 19}, + [2095] = {.lex_state = 43, .external_lex_state = 19}, + [2096] = {.lex_state = 43, .external_lex_state = 19}, + [2097] = {.lex_state = 43, .external_lex_state = 19}, + [2098] = {.lex_state = 43, .external_lex_state = 19}, + [2099] = {.lex_state = 43, .external_lex_state = 19}, + [2100] = {.lex_state = 43, .external_lex_state = 19}, + [2101] = {.lex_state = 43, .external_lex_state = 19}, + [2102] = {.lex_state = 43, .external_lex_state = 19}, + [2103] = {.lex_state = 43, .external_lex_state = 19}, + [2104] = {.lex_state = 43, .external_lex_state = 19}, + [2105] = {.lex_state = 43, .external_lex_state = 19}, + [2106] = {.lex_state = 43, .external_lex_state = 19}, + [2107] = {.lex_state = 43, .external_lex_state = 18}, + [2108] = {.lex_state = 43, .external_lex_state = 19}, + [2109] = {.lex_state = 43, .external_lex_state = 19}, + [2110] = {.lex_state = 43, .external_lex_state = 19}, + [2111] = {.lex_state = 43, .external_lex_state = 19}, + [2112] = {.lex_state = 43, .external_lex_state = 19}, + [2113] = {.lex_state = 43, .external_lex_state = 8}, + [2114] = {.lex_state = 43, .external_lex_state = 19}, + [2115] = {.lex_state = 43, .external_lex_state = 19}, + [2116] = {.lex_state = 43, .external_lex_state = 19}, + [2117] = {.lex_state = 43, .external_lex_state = 19}, + [2118] = {.lex_state = 43, .external_lex_state = 19}, + [2119] = {.lex_state = 43, .external_lex_state = 19}, + [2120] = {.lex_state = 43, .external_lex_state = 19}, + [2121] = {.lex_state = 43, .external_lex_state = 19}, + [2122] = {.lex_state = 43, .external_lex_state = 19}, + [2123] = {.lex_state = 43, .external_lex_state = 19}, + [2124] = {.lex_state = 43, .external_lex_state = 19}, + [2125] = {.lex_state = 43, .external_lex_state = 19}, + [2126] = {.lex_state = 43, .external_lex_state = 19}, + [2127] = {.lex_state = 43, .external_lex_state = 8}, + [2128] = {.lex_state = 43, .external_lex_state = 19}, + [2129] = {.lex_state = 43, .external_lex_state = 19}, + [2130] = {.lex_state = 43, .external_lex_state = 19}, + [2131] = {.lex_state = 43, .external_lex_state = 19}, + [2132] = {.lex_state = 43, .external_lex_state = 19}, + [2133] = {.lex_state = 43, .external_lex_state = 19}, + [2134] = {.lex_state = 43, .external_lex_state = 19}, + [2135] = {.lex_state = 43, .external_lex_state = 19}, + [2136] = {.lex_state = 43, .external_lex_state = 19}, + [2137] = {.lex_state = 43, .external_lex_state = 19}, + [2138] = {.lex_state = 43, .external_lex_state = 19}, + [2139] = {.lex_state = 43, .external_lex_state = 19}, + [2140] = {.lex_state = 43, .external_lex_state = 19}, + [2141] = {.lex_state = 43, .external_lex_state = 19}, + [2142] = {.lex_state = 43, .external_lex_state = 19}, + [2143] = {.lex_state = 43, .external_lex_state = 19}, + [2144] = {.lex_state = 43, .external_lex_state = 19}, + [2145] = {.lex_state = 43, .external_lex_state = 19}, + [2146] = {.lex_state = 43, .external_lex_state = 19}, + [2147] = {.lex_state = 43, .external_lex_state = 19}, + [2148] = {.lex_state = 43, .external_lex_state = 19}, + [2149] = {.lex_state = 43, .external_lex_state = 19}, + [2150] = {.lex_state = 43, .external_lex_state = 19}, + [2151] = {.lex_state = 43, .external_lex_state = 19}, + [2152] = {.lex_state = 43, .external_lex_state = 19}, + [2153] = {.lex_state = 43, .external_lex_state = 19}, + [2154] = {.lex_state = 43, .external_lex_state = 19}, + [2155] = {.lex_state = 43, .external_lex_state = 19}, + [2156] = {.lex_state = 43, .external_lex_state = 19}, + [2157] = {.lex_state = 43, .external_lex_state = 19}, + [2158] = {.lex_state = 43, .external_lex_state = 19}, + [2159] = {.lex_state = 43, .external_lex_state = 19}, + [2160] = {.lex_state = 43, .external_lex_state = 19}, + [2161] = {.lex_state = 43, .external_lex_state = 19}, + [2162] = {.lex_state = 43, .external_lex_state = 19}, + [2163] = {.lex_state = 43, .external_lex_state = 19}, + [2164] = {.lex_state = 43, .external_lex_state = 19}, + [2165] = {.lex_state = 43, .external_lex_state = 19}, + [2166] = {.lex_state = 43, .external_lex_state = 19}, + [2167] = {.lex_state = 43, .external_lex_state = 19}, + [2168] = {.lex_state = 43, .external_lex_state = 8}, + [2169] = {.lex_state = 43, .external_lex_state = 19}, + [2170] = {.lex_state = 43, .external_lex_state = 19}, + [2171] = {.lex_state = 43, .external_lex_state = 19}, + [2172] = {.lex_state = 43, .external_lex_state = 19}, + [2173] = {.lex_state = 43, .external_lex_state = 19}, + [2174] = {.lex_state = 43, .external_lex_state = 19}, + [2175] = {.lex_state = 43, .external_lex_state = 19}, + [2176] = {.lex_state = 43, .external_lex_state = 19}, + [2177] = {.lex_state = 43, .external_lex_state = 19}, + [2178] = {.lex_state = 6, .external_lex_state = 2}, + [2179] = {.lex_state = 6, .external_lex_state = 2}, + [2180] = {.lex_state = 43, .external_lex_state = 8}, + [2181] = {.lex_state = 43, .external_lex_state = 8}, + [2182] = {.lex_state = 43, .external_lex_state = 8}, + [2183] = {.lex_state = 6, .external_lex_state = 2}, + [2184] = {.lex_state = 43, .external_lex_state = 8}, + [2185] = {.lex_state = 43, .external_lex_state = 8}, + [2186] = {.lex_state = 43, .external_lex_state = 18}, + [2187] = {.lex_state = 43, .external_lex_state = 8}, + [2188] = {.lex_state = 43, .external_lex_state = 18}, + [2189] = {.lex_state = 43, .external_lex_state = 20}, + [2190] = {.lex_state = 43, .external_lex_state = 20}, + [2191] = {.lex_state = 43, .external_lex_state = 8}, + [2192] = {.lex_state = 43, .external_lex_state = 20}, + [2193] = {.lex_state = 43, .external_lex_state = 8}, + [2194] = {.lex_state = 43, .external_lex_state = 20}, + [2195] = {.lex_state = 43, .external_lex_state = 20}, + [2196] = {.lex_state = 43, .external_lex_state = 20}, + [2197] = {.lex_state = 43, .external_lex_state = 8}, + [2198] = {.lex_state = 43, .external_lex_state = 8}, + [2199] = {.lex_state = 43, .external_lex_state = 8}, + [2200] = {.lex_state = 43, .external_lex_state = 20}, + [2201] = {.lex_state = 43, .external_lex_state = 20}, + [2202] = {.lex_state = 43, .external_lex_state = 20}, + [2203] = {.lex_state = 43, .external_lex_state = 8}, + [2204] = {.lex_state = 43, .external_lex_state = 8}, + [2205] = {.lex_state = 6, .external_lex_state = 2}, + [2206] = {.lex_state = 43, .external_lex_state = 20}, + [2207] = {.lex_state = 43, .external_lex_state = 20}, + [2208] = {.lex_state = 43, .external_lex_state = 20}, + [2209] = {.lex_state = 43, .external_lex_state = 20}, + [2210] = {.lex_state = 43, .external_lex_state = 20}, + [2211] = {.lex_state = 6, .external_lex_state = 2}, + [2212] = {.lex_state = 43, .external_lex_state = 20}, + [2213] = {.lex_state = 43, .external_lex_state = 20}, + [2214] = {.lex_state = 43, .external_lex_state = 18}, + [2215] = {.lex_state = 43, .external_lex_state = 8}, + [2216] = {.lex_state = 43, .external_lex_state = 8}, + [2217] = {.lex_state = 593, .external_lex_state = 14}, + [2218] = {.lex_state = 43, .external_lex_state = 8}, + [2219] = {.lex_state = 43, .external_lex_state = 8}, + [2220] = {.lex_state = 43, .external_lex_state = 8}, + [2221] = {.lex_state = 43, .external_lex_state = 8}, + [2222] = {.lex_state = 43, .external_lex_state = 8}, + [2223] = {.lex_state = 43, .external_lex_state = 8}, + [2224] = {.lex_state = 593, .external_lex_state = 14}, + [2225] = {.lex_state = 43, .external_lex_state = 18}, + [2226] = {.lex_state = 43, .external_lex_state = 8}, + [2227] = {.lex_state = 6, .external_lex_state = 2}, + [2228] = {.lex_state = 43, .external_lex_state = 8}, + [2229] = {.lex_state = 43, .external_lex_state = 8}, + [2230] = {.lex_state = 43, .external_lex_state = 8}, + [2231] = {.lex_state = 43, .external_lex_state = 8}, + [2232] = {.lex_state = 43, .external_lex_state = 8}, + [2233] = {.lex_state = 43, .external_lex_state = 8}, + [2234] = {.lex_state = 43, .external_lex_state = 8}, + [2235] = {.lex_state = 43, .external_lex_state = 8}, + [2236] = {.lex_state = 43, .external_lex_state = 8}, + [2237] = {.lex_state = 43, .external_lex_state = 8}, + [2238] = {.lex_state = 43, .external_lex_state = 8}, + [2239] = {.lex_state = 43, .external_lex_state = 8}, + [2240] = {.lex_state = 43, .external_lex_state = 8}, + [2241] = {.lex_state = 43, .external_lex_state = 8}, + [2242] = {.lex_state = 593, .external_lex_state = 14}, + [2243] = {.lex_state = 43, .external_lex_state = 8}, + [2244] = {.lex_state = 43, .external_lex_state = 8}, + [2245] = {.lex_state = 43, .external_lex_state = 8}, + [2246] = {.lex_state = 43, .external_lex_state = 8}, + [2247] = {.lex_state = 43, .external_lex_state = 8}, + [2248] = {.lex_state = 43, .external_lex_state = 8}, + [2249] = {.lex_state = 43, .external_lex_state = 8}, + [2250] = {.lex_state = 593, .external_lex_state = 14}, + [2251] = {.lex_state = 6, .external_lex_state = 2}, + [2252] = {.lex_state = 43, .external_lex_state = 8}, + [2253] = {.lex_state = 43, .external_lex_state = 8}, + [2254] = {.lex_state = 6, .external_lex_state = 2}, + [2255] = {.lex_state = 6, .external_lex_state = 2}, + [2256] = {.lex_state = 6, .external_lex_state = 2}, + [2257] = {.lex_state = 6, .external_lex_state = 2}, + [2258] = {.lex_state = 593, .external_lex_state = 14}, + [2259] = {.lex_state = 593, .external_lex_state = 21}, + [2260] = {.lex_state = 6, .external_lex_state = 2}, + [2261] = {.lex_state = 6, .external_lex_state = 2}, + [2262] = {.lex_state = 6, .external_lex_state = 2}, + [2263] = {.lex_state = 6, .external_lex_state = 2}, + [2264] = {.lex_state = 6, .external_lex_state = 2}, + [2265] = {.lex_state = 6, .external_lex_state = 2}, + [2266] = {.lex_state = 43, .external_lex_state = 8}, + [2267] = {.lex_state = 6, .external_lex_state = 2}, + [2268] = {.lex_state = 6, .external_lex_state = 2}, + [2269] = {.lex_state = 6, .external_lex_state = 2}, + [2270] = {.lex_state = 6, .external_lex_state = 2}, + [2271] = {.lex_state = 593, .external_lex_state = 14}, + [2272] = {.lex_state = 593, .external_lex_state = 22}, + [2273] = {.lex_state = 593, .external_lex_state = 23}, + [2274] = {.lex_state = 27, .external_lex_state = 24}, + [2275] = {.lex_state = 593, .external_lex_state = 25}, + [2276] = {.lex_state = 593, .external_lex_state = 21}, + [2277] = {.lex_state = 593, .external_lex_state = 21}, + [2278] = {.lex_state = 593, .external_lex_state = 21}, + [2279] = {.lex_state = 593, .external_lex_state = 25}, + [2280] = {.lex_state = 593, .external_lex_state = 25}, + [2281] = {.lex_state = 593, .external_lex_state = 25}, + [2282] = {.lex_state = 593, .external_lex_state = 25}, + [2283] = {.lex_state = 593, .external_lex_state = 26}, + [2284] = {.lex_state = 593, .external_lex_state = 26}, + [2285] = {.lex_state = 593, .external_lex_state = 26}, + [2286] = {.lex_state = 27, .external_lex_state = 24}, + [2287] = {.lex_state = 593, .external_lex_state = 26}, + [2288] = {.lex_state = 593, .external_lex_state = 25}, + [2289] = {.lex_state = 593, .external_lex_state = 25}, + [2290] = {.lex_state = 593, .external_lex_state = 23}, + [2291] = {.lex_state = 593, .external_lex_state = 23}, + [2292] = {.lex_state = 593, .external_lex_state = 23}, + [2293] = {.lex_state = 593, .external_lex_state = 25}, + [2294] = {.lex_state = 593, .external_lex_state = 26}, + [2295] = {.lex_state = 593, .external_lex_state = 27}, + [2296] = {.lex_state = 72, .external_lex_state = 26}, + [2297] = {.lex_state = 593, .external_lex_state = 22}, + [2298] = {.lex_state = 72, .external_lex_state = 26}, + [2299] = {.lex_state = 72, .external_lex_state = 26}, + [2300] = {.lex_state = 72, .external_lex_state = 26}, + [2301] = {.lex_state = 593, .external_lex_state = 22}, + [2302] = {.lex_state = 593, .external_lex_state = 25}, + [2303] = {.lex_state = 593, .external_lex_state = 22}, + [2304] = {.lex_state = 593, .external_lex_state = 28}, + [2305] = {.lex_state = 593, .external_lex_state = 29}, + [2306] = {.lex_state = 593, .external_lex_state = 28}, + [2307] = {.lex_state = 593, .external_lex_state = 26}, + [2308] = {.lex_state = 593, .external_lex_state = 30}, + [2309] = {.lex_state = 593, .external_lex_state = 26}, + [2310] = {.lex_state = 72, .external_lex_state = 26}, + [2311] = {.lex_state = 593, .external_lex_state = 30}, + [2312] = {.lex_state = 593, .external_lex_state = 30}, + [2313] = {.lex_state = 593, .external_lex_state = 30}, + [2314] = {.lex_state = 593, .external_lex_state = 26}, + [2315] = {.lex_state = 593, .external_lex_state = 29}, + [2316] = {.lex_state = 593, .external_lex_state = 30}, + [2317] = {.lex_state = 72, .external_lex_state = 26}, + [2318] = {.lex_state = 593, .external_lex_state = 14}, + [2319] = {.lex_state = 593, .external_lex_state = 28}, + [2320] = {.lex_state = 593, .external_lex_state = 29}, + [2321] = {.lex_state = 593, .external_lex_state = 14}, + [2322] = {.lex_state = 593, .external_lex_state = 28}, + [2323] = {.lex_state = 593, .external_lex_state = 26}, + [2324] = {.lex_state = 72, .external_lex_state = 29}, + [2325] = {.lex_state = 72, .external_lex_state = 29}, + [2326] = {.lex_state = 72, .external_lex_state = 26}, + [2327] = {.lex_state = 25, .external_lex_state = 8}, + [2328] = {.lex_state = 72, .external_lex_state = 26}, + [2329] = {.lex_state = 72, .external_lex_state = 29}, + [2330] = {.lex_state = 593, .external_lex_state = 31}, + [2331] = {.lex_state = 72, .external_lex_state = 26}, + [2332] = {.lex_state = 72, .external_lex_state = 29}, + [2333] = {.lex_state = 593, .external_lex_state = 29}, + [2334] = {.lex_state = 593, .external_lex_state = 29}, + [2335] = {.lex_state = 593, .external_lex_state = 31}, + [2336] = {.lex_state = 72, .external_lex_state = 29}, + [2337] = {.lex_state = 72, .external_lex_state = 26}, + [2338] = {.lex_state = 593, .external_lex_state = 28}, + [2339] = {.lex_state = 25, .external_lex_state = 8}, + [2340] = {.lex_state = 25, .external_lex_state = 8}, + [2341] = {.lex_state = 25, .external_lex_state = 18}, + [2342] = {.lex_state = 593, .external_lex_state = 31}, + [2343] = {.lex_state = 593, .external_lex_state = 31}, + [2344] = {.lex_state = 72, .external_lex_state = 29}, + [2345] = {.lex_state = 593, .external_lex_state = 31}, + [2346] = {.lex_state = 25, .external_lex_state = 8}, + [2347] = {.lex_state = 593, .external_lex_state = 31}, + [2348] = {.lex_state = 593, .external_lex_state = 30}, + [2349] = {.lex_state = 25, .external_lex_state = 8}, + [2350] = {.lex_state = 25, .external_lex_state = 19}, + [2351] = {.lex_state = 25, .external_lex_state = 19}, + [2352] = {.lex_state = 593, .external_lex_state = 28}, + [2353] = {.lex_state = 25, .external_lex_state = 19}, + [2354] = {.lex_state = 72, .external_lex_state = 29}, + [2355] = {.lex_state = 72, .external_lex_state = 29}, + [2356] = {.lex_state = 72, .external_lex_state = 29}, + [2357] = {.lex_state = 593, .external_lex_state = 28}, + [2358] = {.lex_state = 593, .external_lex_state = 28}, + [2359] = {.lex_state = 593, .external_lex_state = 28}, + [2360] = {.lex_state = 72, .external_lex_state = 29}, + [2361] = {.lex_state = 25, .external_lex_state = 18}, + [2362] = {.lex_state = 25, .external_lex_state = 18}, + [2363] = {.lex_state = 25, .external_lex_state = 8}, + [2364] = {.lex_state = 593, .external_lex_state = 30}, + [2365] = {.lex_state = 25, .external_lex_state = 18}, + [2366] = {.lex_state = 593, .external_lex_state = 32}, + [2367] = {.lex_state = 25, .external_lex_state = 8}, + [2368] = {.lex_state = 593, .external_lex_state = 32}, + [2369] = {.lex_state = 25, .external_lex_state = 8}, + [2370] = {.lex_state = 72, .external_lex_state = 29}, + [2371] = {.lex_state = 593, .external_lex_state = 32}, + [2372] = {.lex_state = 593, .external_lex_state = 30}, + [2373] = {.lex_state = 72, .external_lex_state = 29}, + [2374] = {.lex_state = 593, .external_lex_state = 30}, + [2375] = {.lex_state = 25, .external_lex_state = 8}, + [2376] = {.lex_state = 25, .external_lex_state = 18}, + [2377] = {.lex_state = 25, .external_lex_state = 8}, + [2378] = {.lex_state = 25, .external_lex_state = 8}, + [2379] = {.lex_state = 25, .external_lex_state = 8}, + [2380] = {.lex_state = 25, .external_lex_state = 8}, + [2381] = {.lex_state = 25, .external_lex_state = 8}, + [2382] = {.lex_state = 25, .external_lex_state = 18}, + [2383] = {.lex_state = 72, .external_lex_state = 29}, + [2384] = {.lex_state = 72, .external_lex_state = 29}, + [2385] = {.lex_state = 593, .external_lex_state = 31}, + [2386] = {.lex_state = 593, .external_lex_state = 31}, + [2387] = {.lex_state = 593, .external_lex_state = 32}, + [2388] = {.lex_state = 25, .external_lex_state = 8}, + [2389] = {.lex_state = 593, .external_lex_state = 32}, + [2390] = {.lex_state = 25, .external_lex_state = 8}, + [2391] = {.lex_state = 25, .external_lex_state = 8}, + [2392] = {.lex_state = 25, .external_lex_state = 8}, + [2393] = {.lex_state = 25, .external_lex_state = 8}, + [2394] = {.lex_state = 593, .external_lex_state = 31}, + [2395] = {.lex_state = 593, .external_lex_state = 31}, + [2396] = {.lex_state = 593, .external_lex_state = 31}, + [2397] = {.lex_state = 593, .external_lex_state = 31}, + [2398] = {.lex_state = 25, .external_lex_state = 8}, + [2399] = {.lex_state = 25, .external_lex_state = 8}, + [2400] = {.lex_state = 593, .external_lex_state = 31}, + [2401] = {.lex_state = 33, .external_lex_state = 8}, + [2402] = {.lex_state = 25, .external_lex_state = 8}, + [2403] = {.lex_state = 25, .external_lex_state = 8}, + [2404] = {.lex_state = 25, .external_lex_state = 20}, + [2405] = {.lex_state = 593, .external_lex_state = 32}, + [2406] = {.lex_state = 25, .external_lex_state = 8}, + [2407] = {.lex_state = 593, .external_lex_state = 32}, + [2408] = {.lex_state = 25, .external_lex_state = 8}, + [2409] = {.lex_state = 593, .external_lex_state = 31}, + [2410] = {.lex_state = 72, .external_lex_state = 29}, + [2411] = {.lex_state = 593, .external_lex_state = 32}, + [2412] = {.lex_state = 72, .external_lex_state = 29}, + [2413] = {.lex_state = 593, .external_lex_state = 32}, + [2414] = {.lex_state = 593, .external_lex_state = 32}, + [2415] = {.lex_state = 72, .external_lex_state = 29}, + [2416] = {.lex_state = 593, .external_lex_state = 32}, + [2417] = {.lex_state = 593, .external_lex_state = 32}, + [2418] = {.lex_state = 72, .external_lex_state = 29}, + [2419] = {.lex_state = 593, .external_lex_state = 32}, + [2420] = {.lex_state = 25, .external_lex_state = 8}, + [2421] = {.lex_state = 72, .external_lex_state = 29}, + [2422] = {.lex_state = 72, .external_lex_state = 29}, + [2423] = {.lex_state = 72, .external_lex_state = 29}, + [2424] = {.lex_state = 72, .external_lex_state = 29}, + [2425] = {.lex_state = 72, .external_lex_state = 29}, + [2426] = {.lex_state = 72, .external_lex_state = 29}, + [2427] = {.lex_state = 72, .external_lex_state = 29}, + [2428] = {.lex_state = 41, .external_lex_state = 24}, + [2429] = {.lex_state = 72, .external_lex_state = 29}, + [2430] = {.lex_state = 72, .external_lex_state = 29}, + [2431] = {.lex_state = 72, .external_lex_state = 29}, + [2432] = {.lex_state = 72, .external_lex_state = 29}, + [2433] = {.lex_state = 72, .external_lex_state = 29}, + [2434] = {.lex_state = 72, .external_lex_state = 29}, + [2435] = {.lex_state = 25, .external_lex_state = 20}, + [2436] = {.lex_state = 72, .external_lex_state = 29}, + [2437] = {.lex_state = 72, .external_lex_state = 29}, + [2438] = {.lex_state = 72, .external_lex_state = 29}, + [2439] = {.lex_state = 72, .external_lex_state = 29}, + [2440] = {.lex_state = 72, .external_lex_state = 29}, + [2441] = {.lex_state = 72, .external_lex_state = 29}, + [2442] = {.lex_state = 72, .external_lex_state = 29}, + [2443] = {.lex_state = 72, .external_lex_state = 29}, + [2444] = {.lex_state = 72, .external_lex_state = 29}, + [2445] = {.lex_state = 72, .external_lex_state = 29}, + [2446] = {.lex_state = 72, .external_lex_state = 29}, + [2447] = {.lex_state = 72, .external_lex_state = 29}, + [2448] = {.lex_state = 72, .external_lex_state = 29}, + [2449] = {.lex_state = 72, .external_lex_state = 29}, + [2450] = {.lex_state = 593, .external_lex_state = 31}, + [2451] = {.lex_state = 72, .external_lex_state = 29}, + [2452] = {.lex_state = 25, .external_lex_state = 20}, + [2453] = {.lex_state = 41, .external_lex_state = 24}, + [2454] = {.lex_state = 72, .external_lex_state = 29}, + [2455] = {.lex_state = 72, .external_lex_state = 29}, + [2456] = {.lex_state = 72, .external_lex_state = 29}, + [2457] = {.lex_state = 593, .external_lex_state = 31}, + [2458] = {.lex_state = 593, .external_lex_state = 27}, + [2459] = {.lex_state = 25, .external_lex_state = 19}, + [2460] = {.lex_state = 25, .external_lex_state = 19}, + [2461] = {.lex_state = 25, .external_lex_state = 18}, + [2462] = {.lex_state = 25, .external_lex_state = 33}, + [2463] = {.lex_state = 33, .external_lex_state = 18}, + [2464] = {.lex_state = 593, .external_lex_state = 31}, + [2465] = {.lex_state = 593, .external_lex_state = 32}, + [2466] = {.lex_state = 25, .external_lex_state = 19}, + [2467] = {.lex_state = 25, .external_lex_state = 19}, + [2468] = {.lex_state = 25, .external_lex_state = 18}, + [2469] = {.lex_state = 25, .external_lex_state = 19}, + [2470] = {.lex_state = 43, .external_lex_state = 24}, + [2471] = {.lex_state = 593, .external_lex_state = 31}, + [2472] = {.lex_state = 593, .external_lex_state = 32}, + [2473] = {.lex_state = 25, .external_lex_state = 19}, + [2474] = {.lex_state = 33, .external_lex_state = 19}, + [2475] = {.lex_state = 25, .external_lex_state = 19}, + [2476] = {.lex_state = 593, .external_lex_state = 31}, + [2477] = {.lex_state = 593, .external_lex_state = 31}, + [2478] = {.lex_state = 33, .external_lex_state = 18}, + [2479] = {.lex_state = 593, .external_lex_state = 34}, + [2480] = {.lex_state = 25, .external_lex_state = 18}, + [2481] = {.lex_state = 25, .external_lex_state = 18}, + [2482] = {.lex_state = 593, .external_lex_state = 32}, + [2483] = {.lex_state = 25, .external_lex_state = 18}, + [2484] = {.lex_state = 25, .external_lex_state = 33}, + [2485] = {.lex_state = 593, .external_lex_state = 29}, + [2486] = {.lex_state = 0, .external_lex_state = 35}, + [2487] = {.lex_state = 593, .external_lex_state = 32}, + [2488] = {.lex_state = 25, .external_lex_state = 19}, + [2489] = {.lex_state = 593, .external_lex_state = 32}, + [2490] = {.lex_state = 25, .external_lex_state = 19}, + [2491] = {.lex_state = 25, .external_lex_state = 18}, + [2492] = {.lex_state = 25, .external_lex_state = 18}, + [2493] = {.lex_state = 593, .external_lex_state = 31}, + [2494] = {.lex_state = 25, .external_lex_state = 18}, + [2495] = {.lex_state = 43, .external_lex_state = 24}, + [2496] = {.lex_state = 25, .external_lex_state = 18}, + [2497] = {.lex_state = 25, .external_lex_state = 19}, + [2498] = {.lex_state = 25, .external_lex_state = 18}, + [2499] = {.lex_state = 25, .external_lex_state = 18}, + [2500] = {.lex_state = 25, .external_lex_state = 18}, + [2501] = {.lex_state = 25, .external_lex_state = 18}, + [2502] = {.lex_state = 25, .external_lex_state = 18}, + [2503] = {.lex_state = 25, .external_lex_state = 18}, + [2504] = {.lex_state = 25, .external_lex_state = 19}, + [2505] = {.lex_state = 25, .external_lex_state = 18}, + [2506] = {.lex_state = 593, .external_lex_state = 27}, + [2507] = {.lex_state = 593, .external_lex_state = 32}, + [2508] = {.lex_state = 25, .external_lex_state = 18}, + [2509] = {.lex_state = 25, .external_lex_state = 18}, + [2510] = {.lex_state = 25, .external_lex_state = 18}, + [2511] = {.lex_state = 593, .external_lex_state = 27}, + [2512] = {.lex_state = 25, .external_lex_state = 18}, + [2513] = {.lex_state = 25, .external_lex_state = 18}, + [2514] = {.lex_state = 43, .external_lex_state = 36}, + [2515] = {.lex_state = 25, .external_lex_state = 18}, + [2516] = {.lex_state = 593, .external_lex_state = 32}, + [2517] = {.lex_state = 593, .external_lex_state = 29}, + [2518] = {.lex_state = 593, .external_lex_state = 29}, + [2519] = {.lex_state = 25, .external_lex_state = 20}, + [2520] = {.lex_state = 593, .external_lex_state = 29}, + [2521] = {.lex_state = 25, .external_lex_state = 20}, + [2522] = {.lex_state = 593, .external_lex_state = 32}, + [2523] = {.lex_state = 25, .external_lex_state = 20}, + [2524] = {.lex_state = 25, .external_lex_state = 20}, + [2525] = {.lex_state = 43, .external_lex_state = 37}, + [2526] = {.lex_state = 25, .external_lex_state = 18}, + [2527] = {.lex_state = 593, .external_lex_state = 38}, + [2528] = {.lex_state = 33, .external_lex_state = 20}, + [2529] = {.lex_state = 63, .external_lex_state = 14}, + [2530] = {.lex_state = 25, .external_lex_state = 20}, + [2531] = {.lex_state = 593, .external_lex_state = 29}, + [2532] = {.lex_state = 593, .external_lex_state = 29}, + [2533] = {.lex_state = 593, .external_lex_state = 32}, + [2534] = {.lex_state = 593, .external_lex_state = 29}, + [2535] = {.lex_state = 593, .external_lex_state = 29}, + [2536] = {.lex_state = 25, .external_lex_state = 20}, + [2537] = {.lex_state = 25, .external_lex_state = 20}, + [2538] = {.lex_state = 25, .external_lex_state = 20}, + [2539] = {.lex_state = 593, .external_lex_state = 29}, + [2540] = {.lex_state = 593, .external_lex_state = 29}, + [2541] = {.lex_state = 593, .external_lex_state = 29}, + [2542] = {.lex_state = 593, .external_lex_state = 29}, + [2543] = {.lex_state = 25, .external_lex_state = 20}, + [2544] = {.lex_state = 25, .external_lex_state = 20}, + [2545] = {.lex_state = 25, .external_lex_state = 20}, + [2546] = {.lex_state = 593, .external_lex_state = 32}, + [2547] = {.lex_state = 593, .external_lex_state = 29}, + [2548] = {.lex_state = 593, .external_lex_state = 29}, + [2549] = {.lex_state = 593, .external_lex_state = 29}, + [2550] = {.lex_state = 593, .external_lex_state = 32}, + [2551] = {.lex_state = 593, .external_lex_state = 29}, + [2552] = {.lex_state = 593, .external_lex_state = 29}, + [2553] = {.lex_state = 593, .external_lex_state = 29}, + [2554] = {.lex_state = 0, .external_lex_state = 8}, + [2555] = {.lex_state = 0, .external_lex_state = 8}, + [2556] = {.lex_state = 0, .external_lex_state = 8}, + [2557] = {.lex_state = 0, .external_lex_state = 8}, + [2558] = {.lex_state = 0, .external_lex_state = 8}, + [2559] = {.lex_state = 0, .external_lex_state = 8}, + [2560] = {.lex_state = 0, .external_lex_state = 8}, + [2561] = {.lex_state = 593, .external_lex_state = 32}, + [2562] = {.lex_state = 0, .external_lex_state = 8}, + [2563] = {.lex_state = 0, .external_lex_state = 8}, + [2564] = {.lex_state = 0, .external_lex_state = 8}, + [2565] = {.lex_state = 0, .external_lex_state = 8}, + [2566] = {.lex_state = 0, .external_lex_state = 35}, + [2567] = {.lex_state = 0, .external_lex_state = 8}, + [2568] = {.lex_state = 0, .external_lex_state = 19}, + [2569] = {.lex_state = 0, .external_lex_state = 8}, + [2570] = {.lex_state = 0, .external_lex_state = 8}, + [2571] = {.lex_state = 0, .external_lex_state = 8}, + [2572] = {.lex_state = 0, .external_lex_state = 8}, + [2573] = {.lex_state = 0, .external_lex_state = 8}, + [2574] = {.lex_state = 0, .external_lex_state = 8}, + [2575] = {.lex_state = 0, .external_lex_state = 8}, + [2576] = {.lex_state = 0, .external_lex_state = 8}, + [2577] = {.lex_state = 0, .external_lex_state = 8}, + [2578] = {.lex_state = 0, .external_lex_state = 8}, + [2579] = {.lex_state = 0, .external_lex_state = 8}, + [2580] = {.lex_state = 0, .external_lex_state = 8}, + [2581] = {.lex_state = 0, .external_lex_state = 8}, + [2582] = {.lex_state = 0, .external_lex_state = 8}, + [2583] = {.lex_state = 0, .external_lex_state = 8}, + [2584] = {.lex_state = 0, .external_lex_state = 8}, + [2585] = {.lex_state = 0, .external_lex_state = 8}, + [2586] = {.lex_state = 0, .external_lex_state = 8}, + [2587] = {.lex_state = 593, .external_lex_state = 31}, + [2588] = {.lex_state = 0, .external_lex_state = 8}, + [2589] = {.lex_state = 0, .external_lex_state = 8}, + [2590] = {.lex_state = 0, .external_lex_state = 8}, + [2591] = {.lex_state = 0, .external_lex_state = 8}, + [2592] = {.lex_state = 0, .external_lex_state = 8}, + [2593] = {.lex_state = 0, .external_lex_state = 8}, + [2594] = {.lex_state = 0, .external_lex_state = 8}, + [2595] = {.lex_state = 0, .external_lex_state = 8}, + [2596] = {.lex_state = 0, .external_lex_state = 8}, + [2597] = {.lex_state = 0, .external_lex_state = 8}, + [2598] = {.lex_state = 0, .external_lex_state = 8}, + [2599] = {.lex_state = 0, .external_lex_state = 8}, + [2600] = {.lex_state = 65, .external_lex_state = 14}, + [2601] = {.lex_state = 0, .external_lex_state = 8}, + [2602] = {.lex_state = 0, .external_lex_state = 8}, + [2603] = {.lex_state = 0, .external_lex_state = 8}, + [2604] = {.lex_state = 0, .external_lex_state = 8}, + [2605] = {.lex_state = 593, .external_lex_state = 32}, + [2606] = {.lex_state = 593, .external_lex_state = 31}, + [2607] = {.lex_state = 0, .external_lex_state = 8}, + [2608] = {.lex_state = 0, .external_lex_state = 8}, + [2609] = {.lex_state = 0, .external_lex_state = 8}, + [2610] = {.lex_state = 0, .external_lex_state = 8}, + [2611] = {.lex_state = 0, .external_lex_state = 8}, + [2612] = {.lex_state = 0, .external_lex_state = 8}, + [2613] = {.lex_state = 0, .external_lex_state = 8}, + [2614] = {.lex_state = 0, .external_lex_state = 8}, + [2615] = {.lex_state = 0, .external_lex_state = 8}, + [2616] = {.lex_state = 593, .external_lex_state = 31}, + [2617] = {.lex_state = 53, .external_lex_state = 39}, + [2618] = {.lex_state = 593, .external_lex_state = 40}, + [2619] = {.lex_state = 0, .external_lex_state = 19}, + [2620] = {.lex_state = 593, .external_lex_state = 31}, + [2621] = {.lex_state = 593, .external_lex_state = 25}, + [2622] = {.lex_state = 593, .external_lex_state = 25}, + [2623] = {.lex_state = 0, .external_lex_state = 8}, + [2624] = {.lex_state = 53, .external_lex_state = 39}, + [2625] = {.lex_state = 593, .external_lex_state = 31}, + [2626] = {.lex_state = 0, .external_lex_state = 8}, + [2627] = {.lex_state = 0, .external_lex_state = 8}, + [2628] = {.lex_state = 593, .external_lex_state = 14}, + [2629] = {.lex_state = 0, .external_lex_state = 8}, + [2630] = {.lex_state = 0, .external_lex_state = 18}, + [2631] = {.lex_state = 593, .external_lex_state = 32}, + [2632] = {.lex_state = 0, .external_lex_state = 8}, + [2633] = {.lex_state = 593, .external_lex_state = 14}, + [2634] = {.lex_state = 0, .external_lex_state = 8}, + [2635] = {.lex_state = 0, .external_lex_state = 8}, + [2636] = {.lex_state = 53, .external_lex_state = 39}, + [2637] = {.lex_state = 593, .external_lex_state = 32}, + [2638] = {.lex_state = 593, .external_lex_state = 14}, + [2639] = {.lex_state = 0, .external_lex_state = 18}, + [2640] = {.lex_state = 593, .external_lex_state = 31}, + [2641] = {.lex_state = 0, .external_lex_state = 8}, + [2642] = {.lex_state = 593, .external_lex_state = 32}, + [2643] = {.lex_state = 593, .external_lex_state = 25}, + [2644] = {.lex_state = 593, .external_lex_state = 31}, + [2645] = {.lex_state = 0, .external_lex_state = 8}, + [2646] = {.lex_state = 0, .external_lex_state = 8}, + [2647] = {.lex_state = 53, .external_lex_state = 39}, + [2648] = {.lex_state = 593, .external_lex_state = 32}, + [2649] = {.lex_state = 593, .external_lex_state = 14}, + [2650] = {.lex_state = 0, .external_lex_state = 19}, + [2651] = {.lex_state = 64, .external_lex_state = 14}, + [2652] = {.lex_state = 0, .external_lex_state = 18}, + [2653] = {.lex_state = 0, .external_lex_state = 18}, + [2654] = {.lex_state = 0, .external_lex_state = 18}, + [2655] = {.lex_state = 593, .external_lex_state = 14}, + [2656] = {.lex_state = 0, .external_lex_state = 19}, + [2657] = {.lex_state = 593, .external_lex_state = 14}, + [2658] = {.lex_state = 593, .external_lex_state = 32}, + [2659] = {.lex_state = 0, .external_lex_state = 18}, + [2660] = {.lex_state = 0, .external_lex_state = 18}, + [2661] = {.lex_state = 0, .external_lex_state = 19}, + [2662] = {.lex_state = 0, .external_lex_state = 18}, + [2663] = {.lex_state = 593, .external_lex_state = 14}, + [2664] = {.lex_state = 0, .external_lex_state = 19}, + [2665] = {.lex_state = 0, .external_lex_state = 18}, + [2666] = {.lex_state = 593, .external_lex_state = 32}, + [2667] = {.lex_state = 0, .external_lex_state = 18}, + [2668] = {.lex_state = 593, .external_lex_state = 32}, + [2669] = {.lex_state = 593, .external_lex_state = 14}, + [2670] = {.lex_state = 0, .external_lex_state = 18}, + [2671] = {.lex_state = 0, .external_lex_state = 18}, + [2672] = {.lex_state = 593, .external_lex_state = 14}, + [2673] = {.lex_state = 593, .external_lex_state = 14}, + [2674] = {.lex_state = 0, .external_lex_state = 19}, + [2675] = {.lex_state = 593, .external_lex_state = 14}, + [2676] = {.lex_state = 593, .external_lex_state = 32}, + [2677] = {.lex_state = 593, .external_lex_state = 14}, + [2678] = {.lex_state = 593, .external_lex_state = 31}, + [2679] = {.lex_state = 0, .external_lex_state = 18}, + [2680] = {.lex_state = 593, .external_lex_state = 14}, + [2681] = {.lex_state = 0, .external_lex_state = 18}, + [2682] = {.lex_state = 0, .external_lex_state = 8}, + [2683] = {.lex_state = 593, .external_lex_state = 32}, + [2684] = {.lex_state = 0, .external_lex_state = 19}, + [2685] = {.lex_state = 0, .external_lex_state = 18}, + [2686] = {.lex_state = 0, .external_lex_state = 19}, + [2687] = {.lex_state = 0, .external_lex_state = 18}, + [2688] = {.lex_state = 0, .external_lex_state = 20}, + [2689] = {.lex_state = 0, .external_lex_state = 19}, + [2690] = {.lex_state = 593, .external_lex_state = 14}, + [2691] = {.lex_state = 0, .external_lex_state = 18}, + [2692] = {.lex_state = 0, .external_lex_state = 19}, + [2693] = {.lex_state = 0, .external_lex_state = 19}, + [2694] = {.lex_state = 0, .external_lex_state = 18}, + [2695] = {.lex_state = 0, .external_lex_state = 18}, + [2696] = {.lex_state = 0, .external_lex_state = 18}, + [2697] = {.lex_state = 0, .external_lex_state = 18}, + [2698] = {.lex_state = 0, .external_lex_state = 18}, + [2699] = {.lex_state = 0, .external_lex_state = 18}, + [2700] = {.lex_state = 53, .external_lex_state = 39}, + [2701] = {.lex_state = 0, .external_lex_state = 18}, + [2702] = {.lex_state = 0, .external_lex_state = 18}, + [2703] = {.lex_state = 593, .external_lex_state = 14}, + [2704] = {.lex_state = 593, .external_lex_state = 14}, + [2705] = {.lex_state = 0, .external_lex_state = 19}, + [2706] = {.lex_state = 0, .external_lex_state = 18}, + [2707] = {.lex_state = 593, .external_lex_state = 14}, + [2708] = {.lex_state = 593, .external_lex_state = 14}, + [2709] = {.lex_state = 593, .external_lex_state = 32}, + [2710] = {.lex_state = 0, .external_lex_state = 18}, + [2711] = {.lex_state = 593, .external_lex_state = 14}, + [2712] = {.lex_state = 0, .external_lex_state = 18}, + [2713] = {.lex_state = 0, .external_lex_state = 19}, + [2714] = {.lex_state = 0, .external_lex_state = 19}, + [2715] = {.lex_state = 0, .external_lex_state = 19}, + [2716] = {.lex_state = 0, .external_lex_state = 19}, + [2717] = {.lex_state = 0, .external_lex_state = 18}, + [2718] = {.lex_state = 593, .external_lex_state = 14}, + [2719] = {.lex_state = 593, .external_lex_state = 14}, + [2720] = {.lex_state = 0, .external_lex_state = 18}, + [2721] = {.lex_state = 0, .external_lex_state = 18}, + [2722] = {.lex_state = 0, .external_lex_state = 19}, + [2723] = {.lex_state = 0, .external_lex_state = 18}, + [2724] = {.lex_state = 593, .external_lex_state = 14}, + [2725] = {.lex_state = 593, .external_lex_state = 14}, + [2726] = {.lex_state = 0, .external_lex_state = 18}, + [2727] = {.lex_state = 0, .external_lex_state = 19}, + [2728] = {.lex_state = 0, .external_lex_state = 18}, + [2729] = {.lex_state = 0, .external_lex_state = 18}, + [2730] = {.lex_state = 0, .external_lex_state = 18}, + [2731] = {.lex_state = 593, .external_lex_state = 32}, + [2732] = {.lex_state = 593, .external_lex_state = 41}, + [2733] = {.lex_state = 0, .external_lex_state = 19}, + [2734] = {.lex_state = 0, .external_lex_state = 18}, + [2735] = {.lex_state = 0, .external_lex_state = 18}, + [2736] = {.lex_state = 593, .external_lex_state = 14}, + [2737] = {.lex_state = 593, .external_lex_state = 14}, + [2738] = {.lex_state = 593, .external_lex_state = 14}, + [2739] = {.lex_state = 593, .external_lex_state = 14}, + [2740] = {.lex_state = 593, .external_lex_state = 32}, + [2741] = {.lex_state = 0, .external_lex_state = 20}, + [2742] = {.lex_state = 0, .external_lex_state = 20}, + [2743] = {.lex_state = 593, .external_lex_state = 14}, + [2744] = {.lex_state = 593, .external_lex_state = 14}, + [2745] = {.lex_state = 593, .external_lex_state = 14}, + [2746] = {.lex_state = 593, .external_lex_state = 14}, + [2747] = {.lex_state = 593, .external_lex_state = 14}, + [2748] = {.lex_state = 0, .external_lex_state = 20}, + [2749] = {.lex_state = 593, .external_lex_state = 14}, + [2750] = {.lex_state = 43, .external_lex_state = 24}, + [2751] = {.lex_state = 0, .external_lex_state = 20}, + [2752] = {.lex_state = 53, .external_lex_state = 39}, + [2753] = {.lex_state = 0, .external_lex_state = 20}, + [2754] = {.lex_state = 0, .external_lex_state = 20}, + [2755] = {.lex_state = 593, .external_lex_state = 14}, + [2756] = {.lex_state = 593, .external_lex_state = 14}, + [2757] = {.lex_state = 593, .external_lex_state = 14}, + [2758] = {.lex_state = 593, .external_lex_state = 14}, + [2759] = {.lex_state = 593, .external_lex_state = 14}, + [2760] = {.lex_state = 0, .external_lex_state = 20}, + [2761] = {.lex_state = 0, .external_lex_state = 20}, + [2762] = {.lex_state = 593, .external_lex_state = 32}, + [2763] = {.lex_state = 593, .external_lex_state = 14}, + [2764] = {.lex_state = 593, .external_lex_state = 14}, + [2765] = {.lex_state = 593, .external_lex_state = 14}, + [2766] = {.lex_state = 0, .external_lex_state = 20}, + [2767] = {.lex_state = 593, .external_lex_state = 14}, + [2768] = {.lex_state = 53, .external_lex_state = 39}, + [2769] = {.lex_state = 593, .external_lex_state = 14}, + [2770] = {.lex_state = 593, .external_lex_state = 14}, + [2771] = {.lex_state = 593, .external_lex_state = 14}, + [2772] = {.lex_state = 593, .external_lex_state = 14}, + [2773] = {.lex_state = 593, .external_lex_state = 14}, + [2774] = {.lex_state = 593, .external_lex_state = 14}, + [2775] = {.lex_state = 593, .external_lex_state = 14}, + [2776] = {.lex_state = 0, .external_lex_state = 20}, + [2777] = {.lex_state = 0, .external_lex_state = 20}, + [2778] = {.lex_state = 0, .external_lex_state = 20}, + [2779] = {.lex_state = 43, .external_lex_state = 36}, + [2780] = {.lex_state = 593, .external_lex_state = 14}, + [2781] = {.lex_state = 43, .external_lex_state = 36}, + [2782] = {.lex_state = 593, .external_lex_state = 14}, + [2783] = {.lex_state = 0, .external_lex_state = 20}, + [2784] = {.lex_state = 53, .external_lex_state = 39}, + [2785] = {.lex_state = 43, .external_lex_state = 36}, + [2786] = {.lex_state = 0, .external_lex_state = 20}, + [2787] = {.lex_state = 0, .external_lex_state = 8}, + [2788] = {.lex_state = 593, .external_lex_state = 14}, + [2789] = {.lex_state = 593, .external_lex_state = 14}, + [2790] = {.lex_state = 593, .external_lex_state = 14}, + [2791] = {.lex_state = 593, .external_lex_state = 14}, + [2792] = {.lex_state = 593, .external_lex_state = 14}, + [2793] = {.lex_state = 593, .external_lex_state = 14}, + [2794] = {.lex_state = 53, .external_lex_state = 39}, + [2795] = {.lex_state = 593, .external_lex_state = 25}, + [2796] = {.lex_state = 43, .external_lex_state = 24}, + [2797] = {.lex_state = 0, .external_lex_state = 20}, + [2798] = {.lex_state = 593, .external_lex_state = 14}, + [2799] = {.lex_state = 593, .external_lex_state = 14}, + [2800] = {.lex_state = 593, .external_lex_state = 14}, + [2801] = {.lex_state = 0, .external_lex_state = 20}, + [2802] = {.lex_state = 593, .external_lex_state = 32}, + [2803] = {.lex_state = 593, .external_lex_state = 14}, + [2804] = {.lex_state = 43, .external_lex_state = 24}, + [2805] = {.lex_state = 593, .external_lex_state = 14}, + [2806] = {.lex_state = 593, .external_lex_state = 14}, + [2807] = {.lex_state = 593, .external_lex_state = 14}, + [2808] = {.lex_state = 593, .external_lex_state = 14}, + [2809] = {.lex_state = 593, .external_lex_state = 14}, + [2810] = {.lex_state = 43, .external_lex_state = 24}, + [2811] = {.lex_state = 593, .external_lex_state = 32}, + [2812] = {.lex_state = 593, .external_lex_state = 14}, + [2813] = {.lex_state = 593, .external_lex_state = 14}, + [2814] = {.lex_state = 43, .external_lex_state = 24}, + [2815] = {.lex_state = 0, .external_lex_state = 20}, + [2816] = {.lex_state = 43, .external_lex_state = 24}, + [2817] = {.lex_state = 593, .external_lex_state = 14}, + [2818] = {.lex_state = 593, .external_lex_state = 14}, + [2819] = {.lex_state = 0, .external_lex_state = 20}, + [2820] = {.lex_state = 53, .external_lex_state = 34}, + [2821] = {.lex_state = 593, .external_lex_state = 14}, + [2822] = {.lex_state = 593, .external_lex_state = 38}, + [2823] = {.lex_state = 43, .external_lex_state = 18}, + [2824] = {.lex_state = 593, .external_lex_state = 14}, + [2825] = {.lex_state = 593, .external_lex_state = 14}, + [2826] = {.lex_state = 593, .external_lex_state = 14}, + [2827] = {.lex_state = 43, .external_lex_state = 18}, + [2828] = {.lex_state = 43, .external_lex_state = 18}, + [2829] = {.lex_state = 43, .external_lex_state = 37}, + [2830] = {.lex_state = 593, .external_lex_state = 14}, + [2831] = {.lex_state = 43, .external_lex_state = 18}, + [2832] = {.lex_state = 53, .external_lex_state = 34}, + [2833] = {.lex_state = 43, .external_lex_state = 18}, + [2834] = {.lex_state = 43, .external_lex_state = 18}, + [2835] = {.lex_state = 43, .external_lex_state = 18}, + [2836] = {.lex_state = 593, .external_lex_state = 14}, + [2837] = {.lex_state = 593, .external_lex_state = 14}, + [2838] = {.lex_state = 593, .external_lex_state = 38}, + [2839] = {.lex_state = 593, .external_lex_state = 14}, + [2840] = {.lex_state = 43, .external_lex_state = 37}, + [2841] = {.lex_state = 593, .external_lex_state = 34}, + [2842] = {.lex_state = 43, .external_lex_state = 19}, + [2843] = {.lex_state = 43, .external_lex_state = 18}, + [2844] = {.lex_state = 43, .external_lex_state = 19}, + [2845] = {.lex_state = 593, .external_lex_state = 34}, + [2846] = {.lex_state = 43, .external_lex_state = 19}, + [2847] = {.lex_state = 593, .external_lex_state = 38}, + [2848] = {.lex_state = 593, .external_lex_state = 34}, + [2849] = {.lex_state = 43, .external_lex_state = 37}, + [2850] = {.lex_state = 43, .external_lex_state = 19}, + [2851] = {.lex_state = 43, .external_lex_state = 19}, + [2852] = {.lex_state = 43, .external_lex_state = 20}, + [2853] = {.lex_state = 593, .external_lex_state = 14}, + [2854] = {.lex_state = 593, .external_lex_state = 14}, + [2855] = {.lex_state = 593, .external_lex_state = 14}, + [2856] = {.lex_state = 593, .external_lex_state = 14}, + [2857] = {.lex_state = 43, .external_lex_state = 19}, + [2858] = {.lex_state = 593, .external_lex_state = 14}, + [2859] = {.lex_state = 593, .external_lex_state = 14}, + [2860] = {.lex_state = 43, .external_lex_state = 18}, + [2861] = {.lex_state = 593, .external_lex_state = 14}, + [2862] = {.lex_state = 593, .external_lex_state = 14}, + [2863] = {.lex_state = 593, .external_lex_state = 14}, + [2864] = {.lex_state = 43, .external_lex_state = 20}, + [2865] = {.lex_state = 593, .external_lex_state = 14}, + [2866] = {.lex_state = 593, .external_lex_state = 14}, + [2867] = {.lex_state = 593, .external_lex_state = 42}, + [2868] = {.lex_state = 593, .external_lex_state = 14}, + [2869] = {.lex_state = 593, .external_lex_state = 14}, + [2870] = {.lex_state = 593, .external_lex_state = 14}, + [2871] = {.lex_state = 593, .external_lex_state = 14}, + [2872] = {.lex_state = 593, .external_lex_state = 14}, + [2873] = {.lex_state = 593, .external_lex_state = 14}, + [2874] = {.lex_state = 593, .external_lex_state = 14}, + [2875] = {.lex_state = 43, .external_lex_state = 18}, + [2876] = {.lex_state = 43, .external_lex_state = 20}, + [2877] = {.lex_state = 593, .external_lex_state = 14}, + [2878] = {.lex_state = 43, .external_lex_state = 18}, + [2879] = {.lex_state = 593, .external_lex_state = 14}, + [2880] = {.lex_state = 593, .external_lex_state = 14}, + [2881] = {.lex_state = 593, .external_lex_state = 14}, + [2882] = {.lex_state = 593, .external_lex_state = 14}, + [2883] = {.lex_state = 593, .external_lex_state = 14}, + [2884] = {.lex_state = 53, .external_lex_state = 34}, + [2885] = {.lex_state = 593, .external_lex_state = 14}, + [2886] = {.lex_state = 43, .external_lex_state = 20}, + [2887] = {.lex_state = 593, .external_lex_state = 14}, + [2888] = {.lex_state = 593, .external_lex_state = 14}, + [2889] = {.lex_state = 593, .external_lex_state = 14}, + [2890] = {.lex_state = 593, .external_lex_state = 14}, + [2891] = {.lex_state = 593, .external_lex_state = 14}, + [2892] = {.lex_state = 593, .external_lex_state = 14}, + [2893] = {.lex_state = 593, .external_lex_state = 14}, + [2894] = {.lex_state = 593, .external_lex_state = 14}, + [2895] = {.lex_state = 53, .external_lex_state = 34}, + [2896] = {.lex_state = 593, .external_lex_state = 14}, + [2897] = {.lex_state = 593, .external_lex_state = 14}, + [2898] = {.lex_state = 593, .external_lex_state = 14}, + [2899] = {.lex_state = 593, .external_lex_state = 14}, + [2900] = {.lex_state = 593, .external_lex_state = 14}, + [2901] = {.lex_state = 593, .external_lex_state = 14}, + [2902] = {.lex_state = 593, .external_lex_state = 14}, + [2903] = {.lex_state = 593, .external_lex_state = 14}, + [2904] = {.lex_state = 593, .external_lex_state = 14}, + [2905] = {.lex_state = 593, .external_lex_state = 14}, + [2906] = {.lex_state = 43, .external_lex_state = 18}, + [2907] = {.lex_state = 593, .external_lex_state = 14}, + [2908] = {.lex_state = 593, .external_lex_state = 14}, + [2909] = {.lex_state = 593, .external_lex_state = 14}, + [2910] = {.lex_state = 593, .external_lex_state = 14}, + [2911] = {.lex_state = 593, .external_lex_state = 14}, + [2912] = {.lex_state = 593, .external_lex_state = 14}, + [2913] = {.lex_state = 593, .external_lex_state = 14}, + [2914] = {.lex_state = 593, .external_lex_state = 14}, + [2915] = {.lex_state = 593, .external_lex_state = 14}, + [2916] = {.lex_state = 593, .external_lex_state = 14}, + [2917] = {.lex_state = 593, .external_lex_state = 14}, + [2918] = {.lex_state = 593, .external_lex_state = 14}, + [2919] = {.lex_state = 593, .external_lex_state = 14}, + [2920] = {.lex_state = 593, .external_lex_state = 14}, + [2921] = {.lex_state = 593, .external_lex_state = 14}, + [2922] = {.lex_state = 593, .external_lex_state = 42}, + [2923] = {.lex_state = 593, .external_lex_state = 14}, + [2924] = {.lex_state = 593, .external_lex_state = 42}, + [2925] = {.lex_state = 593, .external_lex_state = 42}, + [2926] = {.lex_state = 593, .external_lex_state = 14}, + [2927] = {.lex_state = 43, .external_lex_state = 18}, + [2928] = {.lex_state = 53, .external_lex_state = 34}, + [2929] = {.lex_state = 593, .external_lex_state = 14}, + [2930] = {.lex_state = 593, .external_lex_state = 14}, + [2931] = {.lex_state = 593, .external_lex_state = 14}, + [2932] = {.lex_state = 593, .external_lex_state = 14}, + [2933] = {.lex_state = 593, .external_lex_state = 14}, + [2934] = {.lex_state = 593, .external_lex_state = 14}, + [2935] = {.lex_state = 593, .external_lex_state = 14}, + [2936] = {.lex_state = 43, .external_lex_state = 18}, + [2937] = {.lex_state = 593, .external_lex_state = 14}, + [2938] = {.lex_state = 593, .external_lex_state = 14}, + [2939] = {.lex_state = 593, .external_lex_state = 14}, + [2940] = {.lex_state = 593, .external_lex_state = 14}, + [2941] = {.lex_state = 593, .external_lex_state = 14}, + [2942] = {.lex_state = 593, .external_lex_state = 14}, + [2943] = {.lex_state = 593, .external_lex_state = 14}, + [2944] = {.lex_state = 593, .external_lex_state = 14}, + [2945] = {.lex_state = 593, .external_lex_state = 14}, + [2946] = {.lex_state = 593, .external_lex_state = 14}, + [2947] = {.lex_state = 593, .external_lex_state = 14}, + [2948] = {.lex_state = 593, .external_lex_state = 14}, + [2949] = {.lex_state = 593, .external_lex_state = 14}, + [2950] = {.lex_state = 593, .external_lex_state = 14}, + [2951] = {.lex_state = 593, .external_lex_state = 14}, + [2952] = {.lex_state = 593, .external_lex_state = 14}, + [2953] = {.lex_state = 593, .external_lex_state = 14}, + [2954] = {.lex_state = 593, .external_lex_state = 14}, + [2955] = {.lex_state = 593, .external_lex_state = 14}, + [2956] = {.lex_state = 43, .external_lex_state = 19}, + [2957] = {.lex_state = 593, .external_lex_state = 14}, + [2958] = {.lex_state = 53, .external_lex_state = 34}, + [2959] = {.lex_state = 593, .external_lex_state = 14}, + [2960] = {.lex_state = 43, .external_lex_state = 20}, + [2961] = {.lex_state = 43, .external_lex_state = 19}, + [2962] = {.lex_state = 43, .external_lex_state = 18}, + [2963] = {.lex_state = 43, .external_lex_state = 18}, + [2964] = {.lex_state = 72, .external_lex_state = 42}, + [2965] = {.lex_state = 43, .external_lex_state = 18}, + [2966] = {.lex_state = 43, .external_lex_state = 18}, + [2967] = {.lex_state = 43, .external_lex_state = 19}, + [2968] = {.lex_state = 43, .external_lex_state = 19}, + [2969] = {.lex_state = 43, .external_lex_state = 19}, + [2970] = {.lex_state = 43, .external_lex_state = 18}, + [2971] = {.lex_state = 593, .external_lex_state = 14}, + [2972] = {.lex_state = 43, .external_lex_state = 18}, + [2973] = {.lex_state = 43, .external_lex_state = 19}, + [2974] = {.lex_state = 43, .external_lex_state = 19}, + [2975] = {.lex_state = 43, .external_lex_state = 18}, + [2976] = {.lex_state = 43, .external_lex_state = 18}, + [2977] = {.lex_state = 43, .external_lex_state = 19}, + [2978] = {.lex_state = 43, .external_lex_state = 18}, + [2979] = {.lex_state = 43, .external_lex_state = 18}, + [2980] = {.lex_state = 43, .external_lex_state = 18}, + [2981] = {.lex_state = 43, .external_lex_state = 18}, + [2982] = {.lex_state = 43, .external_lex_state = 18}, + [2983] = {.lex_state = 43, .external_lex_state = 18}, + [2984] = {.lex_state = 43, .external_lex_state = 18}, + [2985] = {.lex_state = 43, .external_lex_state = 19}, + [2986] = {.lex_state = 593, .external_lex_state = 40}, + [2987] = {.lex_state = 43, .external_lex_state = 18}, + [2988] = {.lex_state = 43, .external_lex_state = 19}, + [2989] = {.lex_state = 43, .external_lex_state = 18}, + [2990] = {.lex_state = 43, .external_lex_state = 18}, + [2991] = {.lex_state = 43, .external_lex_state = 19}, + [2992] = {.lex_state = 43, .external_lex_state = 19}, + [2993] = {.lex_state = 43, .external_lex_state = 18}, + [2994] = {.lex_state = 43, .external_lex_state = 19}, + [2995] = {.lex_state = 72, .external_lex_state = 42}, + [2996] = {.lex_state = 43, .external_lex_state = 19}, + [2997] = {.lex_state = 72, .external_lex_state = 42}, + [2998] = {.lex_state = 72, .external_lex_state = 42}, + [2999] = {.lex_state = 593, .external_lex_state = 40}, + [3000] = {.lex_state = 43, .external_lex_state = 18}, + [3001] = {.lex_state = 43, .external_lex_state = 20}, + [3002] = {.lex_state = 43, .external_lex_state = 18}, + [3003] = {.lex_state = 43, .external_lex_state = 18}, + [3004] = {.lex_state = 43, .external_lex_state = 18}, + [3005] = {.lex_state = 43, .external_lex_state = 18}, + [3006] = {.lex_state = 43, .external_lex_state = 18}, + [3007] = {.lex_state = 43, .external_lex_state = 18}, + [3008] = {.lex_state = 43, .external_lex_state = 20}, + [3009] = {.lex_state = 43, .external_lex_state = 18}, + [3010] = {.lex_state = 593, .external_lex_state = 43}, + [3011] = {.lex_state = 43, .external_lex_state = 18}, + [3012] = {.lex_state = 43, .external_lex_state = 19}, + [3013] = {.lex_state = 43, .external_lex_state = 19}, + [3014] = {.lex_state = 593, .external_lex_state = 40}, + [3015] = {.lex_state = 43, .external_lex_state = 19}, + [3016] = {.lex_state = 43, .external_lex_state = 19}, + [3017] = {.lex_state = 43, .external_lex_state = 18}, + [3018] = {.lex_state = 43, .external_lex_state = 18}, + [3019] = {.lex_state = 593, .external_lex_state = 34}, + [3020] = {.lex_state = 43, .external_lex_state = 18}, + [3021] = {.lex_state = 43, .external_lex_state = 18}, + [3022] = {.lex_state = 43, .external_lex_state = 18}, + [3023] = {.lex_state = 593, .external_lex_state = 14}, + [3024] = {.lex_state = 593, .external_lex_state = 42}, + [3025] = {.lex_state = 593, .external_lex_state = 14}, + [3026] = {.lex_state = 43, .external_lex_state = 18}, + [3027] = {.lex_state = 43, .external_lex_state = 19}, + [3028] = {.lex_state = 43, .external_lex_state = 20}, + [3029] = {.lex_state = 43, .external_lex_state = 20}, + [3030] = {.lex_state = 43, .external_lex_state = 8}, + [3031] = {.lex_state = 593, .external_lex_state = 44}, + [3032] = {.lex_state = 43, .external_lex_state = 18}, + [3033] = {.lex_state = 593, .external_lex_state = 14}, + [3034] = {.lex_state = 43, .external_lex_state = 18}, + [3035] = {.lex_state = 43, .external_lex_state = 20}, + [3036] = {.lex_state = 43, .external_lex_state = 20}, + [3037] = {.lex_state = 593, .external_lex_state = 14}, + [3038] = {.lex_state = 43, .external_lex_state = 20}, + [3039] = {.lex_state = 43, .external_lex_state = 20}, + [3040] = {.lex_state = 43, .external_lex_state = 20}, + [3041] = {.lex_state = 593, .external_lex_state = 14}, + [3042] = {.lex_state = 43, .external_lex_state = 18}, + [3043] = {.lex_state = 593, .external_lex_state = 42}, + [3044] = {.lex_state = 43, .external_lex_state = 20}, + [3045] = {.lex_state = 43, .external_lex_state = 20}, + [3046] = {.lex_state = 43, .external_lex_state = 20}, + [3047] = {.lex_state = 43, .external_lex_state = 20}, + [3048] = {.lex_state = 43, .external_lex_state = 19}, + [3049] = {.lex_state = 43, .external_lex_state = 19}, + [3050] = {.lex_state = 43, .external_lex_state = 18}, + [3051] = {.lex_state = 43, .external_lex_state = 18}, + [3052] = {.lex_state = 43, .external_lex_state = 18}, + [3053] = {.lex_state = 593, .external_lex_state = 14}, + [3054] = {.lex_state = 43, .external_lex_state = 18}, + [3055] = {.lex_state = 43, .external_lex_state = 18}, + [3056] = {.lex_state = 593, .external_lex_state = 44}, + [3057] = {.lex_state = 593, .external_lex_state = 41}, + [3058] = {.lex_state = 43, .external_lex_state = 18}, + [3059] = {.lex_state = 593, .external_lex_state = 45}, + [3060] = {.lex_state = 43, .external_lex_state = 19}, + [3061] = {.lex_state = 72, .external_lex_state = 42}, + [3062] = {.lex_state = 43, .external_lex_state = 18}, + [3063] = {.lex_state = 593, .external_lex_state = 41}, + [3064] = {.lex_state = 593, .external_lex_state = 42}, + [3065] = {.lex_state = 593, .external_lex_state = 42}, + [3066] = {.lex_state = 43, .external_lex_state = 18}, + [3067] = {.lex_state = 593, .external_lex_state = 41}, + [3068] = {.lex_state = 593, .external_lex_state = 42}, + [3069] = {.lex_state = 43, .external_lex_state = 18}, + [3070] = {.lex_state = 593, .external_lex_state = 44}, + [3071] = {.lex_state = 43, .external_lex_state = 20}, + [3072] = {.lex_state = 43, .external_lex_state = 18}, + [3073] = {.lex_state = 43, .external_lex_state = 18}, + [3074] = {.lex_state = 43, .external_lex_state = 19}, + [3075] = {.lex_state = 43, .external_lex_state = 19}, + [3076] = {.lex_state = 43, .external_lex_state = 18}, + [3077] = {.lex_state = 43, .external_lex_state = 19}, + [3078] = {.lex_state = 593, .external_lex_state = 45}, + [3079] = {.lex_state = 43, .external_lex_state = 20}, + [3080] = {.lex_state = 593, .external_lex_state = 39}, + [3081] = {.lex_state = 593, .external_lex_state = 14}, + [3082] = {.lex_state = 43, .external_lex_state = 8}, + [3083] = {.lex_state = 72, .external_lex_state = 42}, + [3084] = {.lex_state = 43, .external_lex_state = 18}, + [3085] = {.lex_state = 593, .external_lex_state = 39}, + [3086] = {.lex_state = 593, .external_lex_state = 39}, + [3087] = {.lex_state = 43, .external_lex_state = 20}, + [3088] = {.lex_state = 43, .external_lex_state = 18}, + [3089] = {.lex_state = 43, .external_lex_state = 18}, + [3090] = {.lex_state = 43, .external_lex_state = 20}, + [3091] = {.lex_state = 43, .external_lex_state = 19}, + [3092] = {.lex_state = 43, .external_lex_state = 19}, + [3093] = {.lex_state = 43, .external_lex_state = 18}, + [3094] = {.lex_state = 593, .external_lex_state = 14}, + [3095] = {.lex_state = 43, .external_lex_state = 18}, + [3096] = {.lex_state = 43, .external_lex_state = 18}, + [3097] = {.lex_state = 43, .external_lex_state = 19}, + [3098] = {.lex_state = 43, .external_lex_state = 18}, + [3099] = {.lex_state = 593, .external_lex_state = 14}, + [3100] = {.lex_state = 43, .external_lex_state = 20}, + [3101] = {.lex_state = 593, .external_lex_state = 45}, + [3102] = {.lex_state = 43, .external_lex_state = 18}, + [3103] = {.lex_state = 593, .external_lex_state = 45}, + [3104] = {.lex_state = 593, .external_lex_state = 39}, + [3105] = {.lex_state = 593, .external_lex_state = 14}, + [3106] = {.lex_state = 593, .external_lex_state = 14}, + [3107] = {.lex_state = 593, .external_lex_state = 14}, + [3108] = {.lex_state = 593, .external_lex_state = 14}, + [3109] = {.lex_state = 593, .external_lex_state = 14}, + [3110] = {.lex_state = 43, .external_lex_state = 18}, + [3111] = {.lex_state = 43, .external_lex_state = 19}, + [3112] = {.lex_state = 43, .external_lex_state = 20}, + [3113] = {.lex_state = 43, .external_lex_state = 18}, + [3114] = {.lex_state = 43, .external_lex_state = 19}, + [3115] = {.lex_state = 43, .external_lex_state = 20}, + [3116] = {.lex_state = 43, .external_lex_state = 18}, + [3117] = {.lex_state = 43, .external_lex_state = 20}, + [3118] = {.lex_state = 43, .external_lex_state = 18}, + [3119] = {.lex_state = 43, .external_lex_state = 18}, + [3120] = {.lex_state = 43, .external_lex_state = 18}, + [3121] = {.lex_state = 43, .external_lex_state = 18}, + [3122] = {.lex_state = 43, .external_lex_state = 18}, + [3123] = {.lex_state = 43, .external_lex_state = 18}, + [3124] = {.lex_state = 43, .external_lex_state = 18}, + [3125] = {.lex_state = 43, .external_lex_state = 18}, + [3126] = {.lex_state = 43, .external_lex_state = 18}, + [3127] = {.lex_state = 43, .external_lex_state = 18}, + [3128] = {.lex_state = 43, .external_lex_state = 18}, + [3129] = {.lex_state = 43, .external_lex_state = 20}, + [3130] = {.lex_state = 43, .external_lex_state = 18}, + [3131] = {.lex_state = 43, .external_lex_state = 18}, + [3132] = {.lex_state = 593, .external_lex_state = 44}, + [3133] = {.lex_state = 43, .external_lex_state = 18}, + [3134] = {.lex_state = 593, .external_lex_state = 34}, + [3135] = {.lex_state = 43, .external_lex_state = 20}, + [3136] = {.lex_state = 43, .external_lex_state = 18}, + [3137] = {.lex_state = 43, .external_lex_state = 18}, + [3138] = {.lex_state = 43, .external_lex_state = 18}, + [3139] = {.lex_state = 43, .external_lex_state = 18}, + [3140] = {.lex_state = 43, .external_lex_state = 18}, + [3141] = {.lex_state = 43, .external_lex_state = 18}, + [3142] = {.lex_state = 43, .external_lex_state = 18}, + [3143] = {.lex_state = 43, .external_lex_state = 18}, + [3144] = {.lex_state = 43, .external_lex_state = 20}, + [3145] = {.lex_state = 43, .external_lex_state = 18}, + [3146] = {.lex_state = 43, .external_lex_state = 18}, + [3147] = {.lex_state = 43, .external_lex_state = 18}, + [3148] = {.lex_state = 43, .external_lex_state = 18}, + [3149] = {.lex_state = 43, .external_lex_state = 20}, + [3150] = {.lex_state = 43, .external_lex_state = 18}, + [3151] = {.lex_state = 43, .external_lex_state = 18}, + [3152] = {.lex_state = 43, .external_lex_state = 18}, + [3153] = {.lex_state = 43, .external_lex_state = 18}, + [3154] = {.lex_state = 43, .external_lex_state = 20}, + [3155] = {.lex_state = 43, .external_lex_state = 18}, + [3156] = {.lex_state = 43, .external_lex_state = 18}, + [3157] = {.lex_state = 43, .external_lex_state = 18}, + [3158] = {.lex_state = 43, .external_lex_state = 18}, + [3159] = {.lex_state = 43, .external_lex_state = 18}, + [3160] = {.lex_state = 43, .external_lex_state = 18}, + [3161] = {.lex_state = 43, .external_lex_state = 18}, + [3162] = {.lex_state = 43, .external_lex_state = 18}, + [3163] = {.lex_state = 43, .external_lex_state = 18}, + [3164] = {.lex_state = 43, .external_lex_state = 18}, + [3165] = {.lex_state = 43, .external_lex_state = 18}, + [3166] = {.lex_state = 43, .external_lex_state = 18}, + [3167] = {.lex_state = 43, .external_lex_state = 18}, + [3168] = {.lex_state = 43, .external_lex_state = 18}, + [3169] = {.lex_state = 43, .external_lex_state = 18}, + [3170] = {.lex_state = 43, .external_lex_state = 18}, + [3171] = {.lex_state = 43, .external_lex_state = 18}, + [3172] = {.lex_state = 43, .external_lex_state = 18}, + [3173] = {.lex_state = 43, .external_lex_state = 18}, + [3174] = {.lex_state = 43, .external_lex_state = 18}, + [3175] = {.lex_state = 43, .external_lex_state = 18}, + [3176] = {.lex_state = 43, .external_lex_state = 18}, + [3177] = {.lex_state = 72, .external_lex_state = 44}, + [3178] = {.lex_state = 72, .external_lex_state = 44}, + [3179] = {.lex_state = 43, .external_lex_state = 18}, + [3180] = {.lex_state = 43, .external_lex_state = 18}, + [3181] = {.lex_state = 43, .external_lex_state = 18}, + [3182] = {.lex_state = 43, .external_lex_state = 18}, + [3183] = {.lex_state = 43, .external_lex_state = 18}, + [3184] = {.lex_state = 43, .external_lex_state = 18}, + [3185] = {.lex_state = 43, .external_lex_state = 18}, + [3186] = {.lex_state = 72, .external_lex_state = 44}, + [3187] = {.lex_state = 43, .external_lex_state = 18}, + [3188] = {.lex_state = 72, .external_lex_state = 44}, + [3189] = {.lex_state = 43, .external_lex_state = 18}, + [3190] = {.lex_state = 43, .external_lex_state = 18}, + [3191] = {.lex_state = 43, .external_lex_state = 18}, + [3192] = {.lex_state = 43, .external_lex_state = 18}, + [3193] = {.lex_state = 43, .external_lex_state = 20}, + [3194] = {.lex_state = 43, .external_lex_state = 18}, + [3195] = {.lex_state = 43, .external_lex_state = 18}, + [3196] = {.lex_state = 43, .external_lex_state = 18}, + [3197] = {.lex_state = 72, .external_lex_state = 44}, + [3198] = {.lex_state = 43, .external_lex_state = 18}, + [3199] = {.lex_state = 43, .external_lex_state = 18}, + [3200] = {.lex_state = 43, .external_lex_state = 19}, + [3201] = {.lex_state = 43, .external_lex_state = 18}, + [3202] = {.lex_state = 43, .external_lex_state = 19}, + [3203] = {.lex_state = 43, .external_lex_state = 18}, + [3204] = {.lex_state = 72, .external_lex_state = 42}, + [3205] = {.lex_state = 43, .external_lex_state = 18}, + [3206] = {.lex_state = 43, .external_lex_state = 19}, + [3207] = {.lex_state = 43, .external_lex_state = 18}, + [3208] = {.lex_state = 43, .external_lex_state = 19}, + [3209] = {.lex_state = 72, .external_lex_state = 42}, + [3210] = {.lex_state = 43, .external_lex_state = 18}, + [3211] = {.lex_state = 72, .external_lex_state = 42}, + [3212] = {.lex_state = 72, .external_lex_state = 42}, + [3213] = {.lex_state = 43, .external_lex_state = 20}, + [3214] = {.lex_state = 43, .external_lex_state = 18}, + [3215] = {.lex_state = 43, .external_lex_state = 18}, + [3216] = {.lex_state = 43, .external_lex_state = 19}, + [3217] = {.lex_state = 43, .external_lex_state = 18}, + [3218] = {.lex_state = 43, .external_lex_state = 18}, + [3219] = {.lex_state = 43, .external_lex_state = 19}, + [3220] = {.lex_state = 43, .external_lex_state = 18}, + [3221] = {.lex_state = 43, .external_lex_state = 20}, + [3222] = {.lex_state = 43, .external_lex_state = 18}, + [3223] = {.lex_state = 43, .external_lex_state = 18}, + [3224] = {.lex_state = 43, .external_lex_state = 18}, + [3225] = {.lex_state = 593, .external_lex_state = 46}, + [3226] = {.lex_state = 43, .external_lex_state = 19}, + [3227] = {.lex_state = 43, .external_lex_state = 18}, + [3228] = {.lex_state = 43, .external_lex_state = 18}, + [3229] = {.lex_state = 43, .external_lex_state = 20}, + [3230] = {.lex_state = 43, .external_lex_state = 19}, + [3231] = {.lex_state = 43, .external_lex_state = 18}, + [3232] = {.lex_state = 43, .external_lex_state = 19}, + [3233] = {.lex_state = 43, .external_lex_state = 19}, + [3234] = {.lex_state = 43, .external_lex_state = 20}, + [3235] = {.lex_state = 43, .external_lex_state = 19}, + [3236] = {.lex_state = 43, .external_lex_state = 20}, + [3237] = {.lex_state = 43, .external_lex_state = 19}, + [3238] = {.lex_state = 593, .external_lex_state = 46}, + [3239] = {.lex_state = 43, .external_lex_state = 18}, + [3240] = {.lex_state = 43, .external_lex_state = 18}, + [3241] = {.lex_state = 43, .external_lex_state = 19}, + [3242] = {.lex_state = 593, .external_lex_state = 46}, + [3243] = {.lex_state = 593, .external_lex_state = 46}, + [3244] = {.lex_state = 593, .external_lex_state = 39}, + [3245] = {.lex_state = 43, .external_lex_state = 19}, + [3246] = {.lex_state = 43, .external_lex_state = 19}, + [3247] = {.lex_state = 43, .external_lex_state = 18}, + [3248] = {.lex_state = 43, .external_lex_state = 18}, + [3249] = {.lex_state = 43, .external_lex_state = 19}, + [3250] = {.lex_state = 593, .external_lex_state = 45}, + [3251] = {.lex_state = 43, .external_lex_state = 18}, + [3252] = {.lex_state = 43, .external_lex_state = 18}, + [3253] = {.lex_state = 43, .external_lex_state = 19}, + [3254] = {.lex_state = 43, .external_lex_state = 19}, + [3255] = {.lex_state = 43, .external_lex_state = 19}, + [3256] = {.lex_state = 43, .external_lex_state = 19}, + [3257] = {.lex_state = 43, .external_lex_state = 19}, + [3258] = {.lex_state = 43, .external_lex_state = 19}, + [3259] = {.lex_state = 43, .external_lex_state = 19}, + [3260] = {.lex_state = 43, .external_lex_state = 19}, + [3261] = {.lex_state = 43, .external_lex_state = 19}, + [3262] = {.lex_state = 43, .external_lex_state = 19}, + [3263] = {.lex_state = 43, .external_lex_state = 19}, + [3264] = {.lex_state = 43, .external_lex_state = 19}, + [3265] = {.lex_state = 43, .external_lex_state = 19}, + [3266] = {.lex_state = 43, .external_lex_state = 18}, + [3267] = {.lex_state = 43, .external_lex_state = 18}, + [3268] = {.lex_state = 593, .external_lex_state = 47}, + [3269] = {.lex_state = 43, .external_lex_state = 19}, + [3270] = {.lex_state = 43, .external_lex_state = 18}, + [3271] = {.lex_state = 43, .external_lex_state = 19}, + [3272] = {.lex_state = 43, .external_lex_state = 19}, + [3273] = {.lex_state = 43, .external_lex_state = 19}, + [3274] = {.lex_state = 43, .external_lex_state = 19}, + [3275] = {.lex_state = 43, .external_lex_state = 19}, + [3276] = {.lex_state = 43, .external_lex_state = 19}, + [3277] = {.lex_state = 43, .external_lex_state = 18}, + [3278] = {.lex_state = 43, .external_lex_state = 18}, + [3279] = {.lex_state = 43, .external_lex_state = 18}, + [3280] = {.lex_state = 43, .external_lex_state = 19}, + [3281] = {.lex_state = 43, .external_lex_state = 19}, + [3282] = {.lex_state = 43, .external_lex_state = 18}, + [3283] = {.lex_state = 43, .external_lex_state = 19}, + [3284] = {.lex_state = 593, .external_lex_state = 44}, + [3285] = {.lex_state = 43, .external_lex_state = 19}, + [3286] = {.lex_state = 43, .external_lex_state = 19}, + [3287] = {.lex_state = 43, .external_lex_state = 19}, + [3288] = {.lex_state = 43, .external_lex_state = 19}, + [3289] = {.lex_state = 43, .external_lex_state = 18}, + [3290] = {.lex_state = 43, .external_lex_state = 18}, + [3291] = {.lex_state = 43, .external_lex_state = 19}, + [3292] = {.lex_state = 43, .external_lex_state = 18}, + [3293] = {.lex_state = 43, .external_lex_state = 19}, + [3294] = {.lex_state = 43, .external_lex_state = 19}, + [3295] = {.lex_state = 43, .external_lex_state = 19}, + [3296] = {.lex_state = 43, .external_lex_state = 19}, + [3297] = {.lex_state = 593, .external_lex_state = 34}, + [3298] = {.lex_state = 593, .external_lex_state = 47}, + [3299] = {.lex_state = 43, .external_lex_state = 19}, + [3300] = {.lex_state = 43, .external_lex_state = 19}, + [3301] = {.lex_state = 43, .external_lex_state = 19}, + [3302] = {.lex_state = 43, .external_lex_state = 20}, + [3303] = {.lex_state = 43, .external_lex_state = 20}, + [3304] = {.lex_state = 43, .external_lex_state = 20}, + [3305] = {.lex_state = 593, .external_lex_state = 47}, + [3306] = {.lex_state = 593, .external_lex_state = 46}, + [3307] = {.lex_state = 43, .external_lex_state = 20}, + [3308] = {.lex_state = 43, .external_lex_state = 20}, + [3309] = {.lex_state = 43, .external_lex_state = 20}, + [3310] = {.lex_state = 43, .external_lex_state = 8}, + [3311] = {.lex_state = 43, .external_lex_state = 20}, + [3312] = {.lex_state = 72, .external_lex_state = 44}, + [3313] = {.lex_state = 43, .external_lex_state = 20}, + [3314] = {.lex_state = 43, .external_lex_state = 20}, + [3315] = {.lex_state = 43, .external_lex_state = 20}, + [3316] = {.lex_state = 72, .external_lex_state = 44}, + [3317] = {.lex_state = 43, .external_lex_state = 20}, + [3318] = {.lex_state = 43, .external_lex_state = 20}, + [3319] = {.lex_state = 43, .external_lex_state = 20}, + [3320] = {.lex_state = 43, .external_lex_state = 20}, + [3321] = {.lex_state = 43, .external_lex_state = 20}, + [3322] = {.lex_state = 43, .external_lex_state = 20}, + [3323] = {.lex_state = 43, .external_lex_state = 20}, + [3324] = {.lex_state = 43, .external_lex_state = 20}, + [3325] = {.lex_state = 43, .external_lex_state = 20}, + [3326] = {.lex_state = 593, .external_lex_state = 39}, + [3327] = {.lex_state = 43, .external_lex_state = 20}, + [3328] = {.lex_state = 593, .external_lex_state = 39}, + [3329] = {.lex_state = 43, .external_lex_state = 20}, + [3330] = {.lex_state = 43, .external_lex_state = 20}, + [3331] = {.lex_state = 43, .external_lex_state = 20}, + [3332] = {.lex_state = 43, .external_lex_state = 20}, + [3333] = {.lex_state = 43, .external_lex_state = 20}, + [3334] = {.lex_state = 593, .external_lex_state = 14}, + [3335] = {.lex_state = 43, .external_lex_state = 20}, + [3336] = {.lex_state = 593, .external_lex_state = 47}, + [3337] = {.lex_state = 593, .external_lex_state = 45}, + [3338] = {.lex_state = 43, .external_lex_state = 20}, + [3339] = {.lex_state = 593, .external_lex_state = 45}, + [3340] = {.lex_state = 593, .external_lex_state = 45}, + [3341] = {.lex_state = 593, .external_lex_state = 39}, + [3342] = {.lex_state = 43, .external_lex_state = 20}, + [3343] = {.lex_state = 43, .external_lex_state = 20}, + [3344] = {.lex_state = 593, .external_lex_state = 39}, + [3345] = {.lex_state = 593, .external_lex_state = 45}, + [3346] = {.lex_state = 72, .external_lex_state = 44}, + [3347] = {.lex_state = 72, .external_lex_state = 44}, + [3348] = {.lex_state = 43, .external_lex_state = 20}, + [3349] = {.lex_state = 43, .external_lex_state = 20}, + [3350] = {.lex_state = 43, .external_lex_state = 20}, + [3351] = {.lex_state = 72, .external_lex_state = 44}, + [3352] = {.lex_state = 43, .external_lex_state = 20}, + [3353] = {.lex_state = 43, .external_lex_state = 20}, + [3354] = {.lex_state = 43, .external_lex_state = 20}, + [3355] = {.lex_state = 43, .external_lex_state = 20}, + [3356] = {.lex_state = 43, .external_lex_state = 20}, + [3357] = {.lex_state = 43, .external_lex_state = 20}, + [3358] = {.lex_state = 43, .external_lex_state = 20}, + [3359] = {.lex_state = 43, .external_lex_state = 20}, + [3360] = {.lex_state = 72, .external_lex_state = 44}, + [3361] = {.lex_state = 593, .external_lex_state = 47}, + [3362] = {.lex_state = 72, .external_lex_state = 44}, + [3363] = {.lex_state = 43, .external_lex_state = 20}, + [3364] = {.lex_state = 43, .external_lex_state = 20}, + [3365] = {.lex_state = 43, .external_lex_state = 20}, + [3366] = {.lex_state = 43, .external_lex_state = 20}, + [3367] = {.lex_state = 43, .external_lex_state = 20}, + [3368] = {.lex_state = 43, .external_lex_state = 20}, + [3369] = {.lex_state = 43, .external_lex_state = 20}, + [3370] = {.lex_state = 43, .external_lex_state = 20}, + [3371] = {.lex_state = 593, .external_lex_state = 47}, + [3372] = {.lex_state = 43, .external_lex_state = 20}, + [3373] = {.lex_state = 43, .external_lex_state = 20}, + [3374] = {.lex_state = 43, .external_lex_state = 20}, + [3375] = {.lex_state = 72, .external_lex_state = 44}, + [3376] = {.lex_state = 72, .external_lex_state = 44}, + [3377] = {.lex_state = 593, .external_lex_state = 47}, + [3378] = {.lex_state = 593, .external_lex_state = 47}, + [3379] = {.lex_state = 593, .external_lex_state = 47}, + [3380] = {.lex_state = 72, .external_lex_state = 44}, + [3381] = {.lex_state = 72, .external_lex_state = 44}, + [3382] = {.lex_state = 593, .external_lex_state = 48}, + [3383] = {.lex_state = 593, .external_lex_state = 47}, + [3384] = {.lex_state = 72, .external_lex_state = 44}, + [3385] = {.lex_state = 593, .external_lex_state = 47}, + [3386] = {.lex_state = 593, .external_lex_state = 47}, + [3387] = {.lex_state = 72, .external_lex_state = 44}, + [3388] = {.lex_state = 593, .external_lex_state = 48}, + [3389] = {.lex_state = 593, .external_lex_state = 48}, + [3390] = {.lex_state = 72, .external_lex_state = 44}, + [3391] = {.lex_state = 72, .external_lex_state = 44}, + [3392] = {.lex_state = 593, .external_lex_state = 46}, + [3393] = {.lex_state = 593, .external_lex_state = 47}, + [3394] = {.lex_state = 593, .external_lex_state = 46}, + [3395] = {.lex_state = 72, .external_lex_state = 44}, + [3396] = {.lex_state = 593, .external_lex_state = 47}, + [3397] = {.lex_state = 593, .external_lex_state = 46}, + [3398] = {.lex_state = 72, .external_lex_state = 44}, + [3399] = {.lex_state = 72, .external_lex_state = 44}, + [3400] = {.lex_state = 72, .external_lex_state = 44}, + [3401] = {.lex_state = 72, .external_lex_state = 44}, + [3402] = {.lex_state = 72, .external_lex_state = 44}, + [3403] = {.lex_state = 72, .external_lex_state = 44}, + [3404] = {.lex_state = 72, .external_lex_state = 44}, + [3405] = {.lex_state = 72, .external_lex_state = 44}, + [3406] = {.lex_state = 593, .external_lex_state = 47}, + [3407] = {.lex_state = 72, .external_lex_state = 44}, + [3408] = {.lex_state = 72, .external_lex_state = 44}, + [3409] = {.lex_state = 72, .external_lex_state = 44}, + [3410] = {.lex_state = 72, .external_lex_state = 44}, + [3411] = {.lex_state = 593, .external_lex_state = 46}, + [3412] = {.lex_state = 593, .external_lex_state = 34}, + [3413] = {.lex_state = 72, .external_lex_state = 44}, + [3414] = {.lex_state = 72, .external_lex_state = 44}, + [3415] = {.lex_state = 72, .external_lex_state = 44}, + [3416] = {.lex_state = 72, .external_lex_state = 44}, + [3417] = {.lex_state = 72, .external_lex_state = 44}, + [3418] = {.lex_state = 72, .external_lex_state = 44}, + [3419] = {.lex_state = 72, .external_lex_state = 44}, + [3420] = {.lex_state = 72, .external_lex_state = 44}, + [3421] = {.lex_state = 72, .external_lex_state = 44}, + [3422] = {.lex_state = 72, .external_lex_state = 44}, + [3423] = {.lex_state = 72, .external_lex_state = 44}, + [3424] = {.lex_state = 72, .external_lex_state = 44}, + [3425] = {.lex_state = 72, .external_lex_state = 44}, + [3426] = {.lex_state = 72, .external_lex_state = 44}, + [3427] = {.lex_state = 72, .external_lex_state = 44}, + [3428] = {.lex_state = 72, .external_lex_state = 44}, + [3429] = {.lex_state = 593, .external_lex_state = 48}, + [3430] = {.lex_state = 593, .external_lex_state = 34}, + [3431] = {.lex_state = 593, .external_lex_state = 47}, + [3432] = {.lex_state = 593, .external_lex_state = 14}, + [3433] = {.lex_state = 593, .external_lex_state = 34}, + [3434] = {.lex_state = 593, .external_lex_state = 48}, + [3435] = {.lex_state = 593, .external_lex_state = 47}, + [3436] = {.lex_state = 593, .external_lex_state = 43}, + [3437] = {.lex_state = 593, .external_lex_state = 44}, + [3438] = {.lex_state = 593, .external_lex_state = 47}, + [3439] = {.lex_state = 593, .external_lex_state = 34}, + [3440] = {.lex_state = 593, .external_lex_state = 48}, + [3441] = {.lex_state = 593, .external_lex_state = 43}, + [3442] = {.lex_state = 593, .external_lex_state = 48}, + [3443] = {.lex_state = 593, .external_lex_state = 48}, + [3444] = {.lex_state = 593, .external_lex_state = 47}, + [3445] = {.lex_state = 593, .external_lex_state = 48}, + [3446] = {.lex_state = 593, .external_lex_state = 48}, + [3447] = {.lex_state = 593, .external_lex_state = 47}, + [3448] = {.lex_state = 593, .external_lex_state = 34}, + [3449] = {.lex_state = 593, .external_lex_state = 34}, + [3450] = {.lex_state = 593, .external_lex_state = 47}, + [3451] = {.lex_state = 593, .external_lex_state = 43}, + [3452] = {.lex_state = 593, .external_lex_state = 34}, + [3453] = {.lex_state = 593, .external_lex_state = 44}, + [3454] = {.lex_state = 593, .external_lex_state = 48}, + [3455] = {.lex_state = 39, .external_lex_state = 49}, + [3456] = {.lex_state = 593, .external_lex_state = 44}, + [3457] = {.lex_state = 593, .external_lex_state = 44}, + [3458] = {.lex_state = 593, .external_lex_state = 48}, + [3459] = {.lex_state = 593, .external_lex_state = 44}, + [3460] = {.lex_state = 593, .external_lex_state = 44}, + [3461] = {.lex_state = 593, .external_lex_state = 44}, + [3462] = {.lex_state = 593, .external_lex_state = 44}, + [3463] = {.lex_state = 593, .external_lex_state = 44}, + [3464] = {.lex_state = 593, .external_lex_state = 48}, + [3465] = {.lex_state = 593, .external_lex_state = 44}, + [3466] = {.lex_state = 593, .external_lex_state = 44}, + [3467] = {.lex_state = 593, .external_lex_state = 44}, + [3468] = {.lex_state = 593, .external_lex_state = 44}, + [3469] = {.lex_state = 593, .external_lex_state = 44}, + [3470] = {.lex_state = 593, .external_lex_state = 44}, + [3471] = {.lex_state = 593, .external_lex_state = 44}, + [3472] = {.lex_state = 593, .external_lex_state = 48}, + [3473] = {.lex_state = 593, .external_lex_state = 44}, + [3474] = {.lex_state = 593, .external_lex_state = 44}, + [3475] = {.lex_state = 593, .external_lex_state = 50}, + [3476] = {.lex_state = 593, .external_lex_state = 50}, + [3477] = {.lex_state = 593, .external_lex_state = 50}, + [3478] = {.lex_state = 593, .external_lex_state = 48}, + [3479] = {.lex_state = 593, .external_lex_state = 48}, + [3480] = {.lex_state = 593, .external_lex_state = 50}, + [3481] = {.lex_state = 593, .external_lex_state = 48}, + [3482] = {.lex_state = 593, .external_lex_state = 48}, + [3483] = {.lex_state = 593, .external_lex_state = 48}, + [3484] = {.lex_state = 593, .external_lex_state = 50}, + [3485] = {.lex_state = 593, .external_lex_state = 48}, + [3486] = {.lex_state = 593, .external_lex_state = 47}, + [3487] = {.lex_state = 593, .external_lex_state = 48}, + [3488] = {.lex_state = 593, .external_lex_state = 51}, + [3489] = {.lex_state = 593, .external_lex_state = 51}, + [3490] = {.lex_state = 593, .external_lex_state = 50}, + [3491] = {.lex_state = 593, .external_lex_state = 48}, + [3492] = {.lex_state = 593, .external_lex_state = 50}, + [3493] = {.lex_state = 593, .external_lex_state = 48}, + [3494] = {.lex_state = 593, .external_lex_state = 50}, + [3495] = {.lex_state = 593, .external_lex_state = 50}, + [3496] = {.lex_state = 593, .external_lex_state = 47}, + [3497] = {.lex_state = 593, .external_lex_state = 51}, + [3498] = {.lex_state = 593, .external_lex_state = 48}, + [3499] = {.lex_state = 593, .external_lex_state = 48}, + [3500] = {.lex_state = 593, .external_lex_state = 47}, + [3501] = {.lex_state = 593, .external_lex_state = 48}, + [3502] = {.lex_state = 593, .external_lex_state = 51}, + [3503] = {.lex_state = 593, .external_lex_state = 52}, + [3504] = {.lex_state = 593, .external_lex_state = 48}, + [3505] = {.lex_state = 593, .external_lex_state = 48}, + [3506] = {.lex_state = 593, .external_lex_state = 48}, + [3507] = {.lex_state = 593, .external_lex_state = 52}, + [3508] = {.lex_state = 593, .external_lex_state = 48}, + [3509] = {.lex_state = 593, .external_lex_state = 51}, + [3510] = {.lex_state = 593, .external_lex_state = 51}, + [3511] = {.lex_state = 593, .external_lex_state = 51}, + [3512] = {.lex_state = 593, .external_lex_state = 51}, + [3513] = {.lex_state = 593, .external_lex_state = 51}, + [3514] = {.lex_state = 593, .external_lex_state = 48}, + [3515] = {.lex_state = 593, .external_lex_state = 48}, + [3516] = {.lex_state = 593, .external_lex_state = 51}, + [3517] = {.lex_state = 593, .external_lex_state = 52}, + [3518] = {.lex_state = 593, .external_lex_state = 51}, + [3519] = {.lex_state = 593, .external_lex_state = 51}, + [3520] = {.lex_state = 593, .external_lex_state = 51}, + [3521] = {.lex_state = 593, .external_lex_state = 51}, + [3522] = {.lex_state = 593, .external_lex_state = 51}, + [3523] = {.lex_state = 593, .external_lex_state = 51}, + [3524] = {.lex_state = 50, .external_lex_state = 14}, + [3525] = {.lex_state = 593, .external_lex_state = 51}, + [3526] = {.lex_state = 50, .external_lex_state = 14}, + [3527] = {.lex_state = 593, .external_lex_state = 51}, + [3528] = {.lex_state = 50, .external_lex_state = 14}, + [3529] = {.lex_state = 593, .external_lex_state = 51}, + [3530] = {.lex_state = 593, .external_lex_state = 51}, + [3531] = {.lex_state = 593, .external_lex_state = 51}, + [3532] = {.lex_state = 66, .external_lex_state = 34}, + [3533] = {.lex_state = 50, .external_lex_state = 14}, + [3534] = {.lex_state = 50, .external_lex_state = 14}, + [3535] = {.lex_state = 593, .external_lex_state = 51}, + [3536] = {.lex_state = 50, .external_lex_state = 14}, + [3537] = {.lex_state = 593, .external_lex_state = 51}, + [3538] = {.lex_state = 50, .external_lex_state = 14}, + [3539] = {.lex_state = 50, .external_lex_state = 14}, + [3540] = {.lex_state = 50, .external_lex_state = 14}, + [3541] = {.lex_state = 593, .external_lex_state = 51}, + [3542] = {.lex_state = 50, .external_lex_state = 14}, + [3543] = {.lex_state = 50, .external_lex_state = 14}, + [3544] = {.lex_state = 50, .external_lex_state = 14}, + [3545] = {.lex_state = 593, .external_lex_state = 51}, + [3546] = {.lex_state = 593, .external_lex_state = 34}, + [3547] = {.lex_state = 593, .external_lex_state = 51}, + [3548] = {.lex_state = 50, .external_lex_state = 14}, + [3549] = {.lex_state = 50, .external_lex_state = 14}, + [3550] = {.lex_state = 50, .external_lex_state = 14}, + [3551] = {.lex_state = 50, .external_lex_state = 14}, + [3552] = {.lex_state = 593, .external_lex_state = 51}, + [3553] = {.lex_state = 593, .external_lex_state = 51}, + [3554] = {.lex_state = 593, .external_lex_state = 51}, + [3555] = {.lex_state = 593, .external_lex_state = 51}, + [3556] = {.lex_state = 593, .external_lex_state = 51}, + [3557] = {.lex_state = 50, .external_lex_state = 14}, + [3558] = {.lex_state = 593, .external_lex_state = 51}, + [3559] = {.lex_state = 593, .external_lex_state = 51}, + [3560] = {.lex_state = 50, .external_lex_state = 14}, + [3561] = {.lex_state = 50, .external_lex_state = 14}, + [3562] = {.lex_state = 593, .external_lex_state = 51}, + [3563] = {.lex_state = 593, .external_lex_state = 51}, + [3564] = {.lex_state = 593, .external_lex_state = 51}, + [3565] = {.lex_state = 593, .external_lex_state = 51}, + [3566] = {.lex_state = 50, .external_lex_state = 14}, + [3567] = {.lex_state = 50, .external_lex_state = 14}, + [3568] = {.lex_state = 593, .external_lex_state = 51}, + [3569] = {.lex_state = 593, .external_lex_state = 51}, + [3570] = {.lex_state = 50, .external_lex_state = 14}, + [3571] = {.lex_state = 593, .external_lex_state = 51}, + [3572] = {.lex_state = 593, .external_lex_state = 51}, + [3573] = {.lex_state = 593, .external_lex_state = 51}, + [3574] = {.lex_state = 50, .external_lex_state = 14}, + [3575] = {.lex_state = 50, .external_lex_state = 14}, + [3576] = {.lex_state = 50, .external_lex_state = 14}, + [3577] = {.lex_state = 50, .external_lex_state = 14}, + [3578] = {.lex_state = 50, .external_lex_state = 14}, + [3579] = {.lex_state = 50, .external_lex_state = 14}, + [3580] = {.lex_state = 50, .external_lex_state = 14}, + [3581] = {.lex_state = 593, .external_lex_state = 51}, + [3582] = {.lex_state = 593, .external_lex_state = 51}, + [3583] = {.lex_state = 593, .external_lex_state = 51}, + [3584] = {.lex_state = 593, .external_lex_state = 51}, + [3585] = {.lex_state = 593, .external_lex_state = 51}, + [3586] = {.lex_state = 593, .external_lex_state = 51}, + [3587] = {.lex_state = 593, .external_lex_state = 52}, + [3588] = {.lex_state = 593, .external_lex_state = 51}, + [3589] = {.lex_state = 593, .external_lex_state = 53}, + [3590] = {.lex_state = 593, .external_lex_state = 52}, + [3591] = {.lex_state = 593, .external_lex_state = 51}, + [3592] = {.lex_state = 593, .external_lex_state = 51}, + [3593] = {.lex_state = 593, .external_lex_state = 51}, + [3594] = {.lex_state = 593, .external_lex_state = 53}, + [3595] = {.lex_state = 593, .external_lex_state = 51}, + [3596] = {.lex_state = 593, .external_lex_state = 51}, + [3597] = {.lex_state = 593, .external_lex_state = 51}, + [3598] = {.lex_state = 50, .external_lex_state = 14}, + [3599] = {.lex_state = 593, .external_lex_state = 51}, + [3600] = {.lex_state = 593, .external_lex_state = 53}, + [3601] = {.lex_state = 593, .external_lex_state = 53}, + [3602] = {.lex_state = 593, .external_lex_state = 51}, + [3603] = {.lex_state = 593, .external_lex_state = 52}, + [3604] = {.lex_state = 593, .external_lex_state = 52}, + [3605] = {.lex_state = 593, .external_lex_state = 52}, + [3606] = {.lex_state = 593, .external_lex_state = 51}, + [3607] = {.lex_state = 593, .external_lex_state = 52}, + [3608] = {.lex_state = 593, .external_lex_state = 51}, + [3609] = {.lex_state = 593, .external_lex_state = 51}, + [3610] = {.lex_state = 593, .external_lex_state = 51}, + [3611] = {.lex_state = 593, .external_lex_state = 51}, + [3612] = {.lex_state = 593, .external_lex_state = 51}, + [3613] = {.lex_state = 593, .external_lex_state = 51}, + [3614] = {.lex_state = 593, .external_lex_state = 51}, + [3615] = {.lex_state = 593, .external_lex_state = 51}, + [3616] = {.lex_state = 593, .external_lex_state = 51}, + [3617] = {.lex_state = 593, .external_lex_state = 51}, + [3618] = {.lex_state = 593, .external_lex_state = 51}, + [3619] = {.lex_state = 593, .external_lex_state = 51}, + [3620] = {.lex_state = 593, .external_lex_state = 51}, + [3621] = {.lex_state = 593, .external_lex_state = 51}, + [3622] = {.lex_state = 593, .external_lex_state = 51}, + [3623] = {.lex_state = 593, .external_lex_state = 51}, + [3624] = {.lex_state = 593, .external_lex_state = 51}, + [3625] = {.lex_state = 593, .external_lex_state = 51}, + [3626] = {.lex_state = 593, .external_lex_state = 51}, + [3627] = {.lex_state = 593, .external_lex_state = 51}, + [3628] = {.lex_state = 593, .external_lex_state = 51}, + [3629] = {.lex_state = 593, .external_lex_state = 51}, + [3630] = {.lex_state = 593, .external_lex_state = 51}, + [3631] = {.lex_state = 593, .external_lex_state = 51}, + [3632] = {.lex_state = 593, .external_lex_state = 51}, + [3633] = {.lex_state = 593, .external_lex_state = 51}, + [3634] = {.lex_state = 593, .external_lex_state = 51}, + [3635] = {.lex_state = 593, .external_lex_state = 51}, + [3636] = {.lex_state = 593, .external_lex_state = 51}, + [3637] = {.lex_state = 593, .external_lex_state = 51}, + [3638] = {.lex_state = 593, .external_lex_state = 51}, + [3639] = {.lex_state = 593, .external_lex_state = 51}, + [3640] = {.lex_state = 593, .external_lex_state = 51}, + [3641] = {.lex_state = 593, .external_lex_state = 51}, + [3642] = {.lex_state = 593, .external_lex_state = 51}, + [3643] = {.lex_state = 593, .external_lex_state = 51}, + [3644] = {.lex_state = 593, .external_lex_state = 51}, + [3645] = {.lex_state = 593, .external_lex_state = 51}, + [3646] = {.lex_state = 593, .external_lex_state = 51}, + [3647] = {.lex_state = 593, .external_lex_state = 51}, + [3648] = {.lex_state = 593, .external_lex_state = 51}, + [3649] = {.lex_state = 593, .external_lex_state = 51}, + [3650] = {.lex_state = 593, .external_lex_state = 51}, + [3651] = {.lex_state = 593, .external_lex_state = 51}, + [3652] = {.lex_state = 593, .external_lex_state = 51}, + [3653] = {.lex_state = 593, .external_lex_state = 51}, + [3654] = {.lex_state = 593, .external_lex_state = 51}, + [3655] = {.lex_state = 593, .external_lex_state = 51}, + [3656] = {.lex_state = 593, .external_lex_state = 51}, + [3657] = {.lex_state = 593, .external_lex_state = 51}, + [3658] = {.lex_state = 593, .external_lex_state = 51}, + [3659] = {.lex_state = 593, .external_lex_state = 51}, + [3660] = {.lex_state = 593, .external_lex_state = 51}, + [3661] = {.lex_state = 593, .external_lex_state = 51}, + [3662] = {.lex_state = 593, .external_lex_state = 51}, + [3663] = {.lex_state = 593, .external_lex_state = 51}, + [3664] = {.lex_state = 593, .external_lex_state = 51}, + [3665] = {.lex_state = 593, .external_lex_state = 51}, + [3666] = {.lex_state = 593, .external_lex_state = 51}, + [3667] = {.lex_state = 593, .external_lex_state = 51}, + [3668] = {.lex_state = 593, .external_lex_state = 51}, + [3669] = {.lex_state = 593, .external_lex_state = 51}, + [3670] = {.lex_state = 593, .external_lex_state = 51}, + [3671] = {.lex_state = 593, .external_lex_state = 51}, + [3672] = {.lex_state = 593, .external_lex_state = 51}, + [3673] = {.lex_state = 593, .external_lex_state = 51}, + [3674] = {.lex_state = 593, .external_lex_state = 51}, + [3675] = {.lex_state = 593, .external_lex_state = 51}, + [3676] = {.lex_state = 593, .external_lex_state = 51}, + [3677] = {.lex_state = 593, .external_lex_state = 51}, + [3678] = {.lex_state = 593, .external_lex_state = 51}, + [3679] = {.lex_state = 593, .external_lex_state = 51}, + [3680] = {.lex_state = 593, .external_lex_state = 51}, + [3681] = {.lex_state = 593, .external_lex_state = 51}, + [3682] = {.lex_state = 593, .external_lex_state = 51}, + [3683] = {.lex_state = 593, .external_lex_state = 51}, + [3684] = {.lex_state = 593, .external_lex_state = 51}, + [3685] = {.lex_state = 593, .external_lex_state = 51}, + [3686] = {.lex_state = 593, .external_lex_state = 51}, + [3687] = {.lex_state = 593, .external_lex_state = 51}, + [3688] = {.lex_state = 593, .external_lex_state = 51}, + [3689] = {.lex_state = 593, .external_lex_state = 51}, + [3690] = {.lex_state = 593, .external_lex_state = 51}, + [3691] = {.lex_state = 593, .external_lex_state = 51}, + [3692] = {.lex_state = 593, .external_lex_state = 51}, + [3693] = {.lex_state = 593, .external_lex_state = 51}, + [3694] = {.lex_state = 593, .external_lex_state = 51}, + [3695] = {.lex_state = 593, .external_lex_state = 51}, + [3696] = {.lex_state = 593, .external_lex_state = 51}, + [3697] = {.lex_state = 593, .external_lex_state = 51}, + [3698] = {.lex_state = 593, .external_lex_state = 51}, + [3699] = {.lex_state = 593, .external_lex_state = 51}, + [3700] = {.lex_state = 593, .external_lex_state = 51}, + [3701] = {.lex_state = 593, .external_lex_state = 51}, + [3702] = {.lex_state = 593, .external_lex_state = 51}, + [3703] = {.lex_state = 593, .external_lex_state = 51}, + [3704] = {.lex_state = 593, .external_lex_state = 51}, + [3705] = {.lex_state = 593, .external_lex_state = 51}, + [3706] = {.lex_state = 593, .external_lex_state = 51}, + [3707] = {.lex_state = 593, .external_lex_state = 51}, + [3708] = {.lex_state = 593, .external_lex_state = 51}, + [3709] = {.lex_state = 593, .external_lex_state = 51}, + [3710] = {.lex_state = 593, .external_lex_state = 51}, + [3711] = {.lex_state = 593, .external_lex_state = 51}, + [3712] = {.lex_state = 593, .external_lex_state = 51}, + [3713] = {.lex_state = 593, .external_lex_state = 51}, + [3714] = {.lex_state = 593, .external_lex_state = 51}, + [3715] = {.lex_state = 593, .external_lex_state = 51}, + [3716] = {.lex_state = 593, .external_lex_state = 51}, + [3717] = {.lex_state = 593, .external_lex_state = 51}, + [3718] = {.lex_state = 593, .external_lex_state = 51}, + [3719] = {.lex_state = 593, .external_lex_state = 51}, + [3720] = {.lex_state = 593, .external_lex_state = 51}, + [3721] = {.lex_state = 593, .external_lex_state = 51}, + [3722] = {.lex_state = 593, .external_lex_state = 51}, + [3723] = {.lex_state = 593, .external_lex_state = 51}, + [3724] = {.lex_state = 593, .external_lex_state = 51}, + [3725] = {.lex_state = 593, .external_lex_state = 51}, + [3726] = {.lex_state = 593, .external_lex_state = 51}, + [3727] = {.lex_state = 593, .external_lex_state = 51}, + [3728] = {.lex_state = 593, .external_lex_state = 51}, + [3729] = {.lex_state = 593, .external_lex_state = 51}, + [3730] = {.lex_state = 593, .external_lex_state = 51}, + [3731] = {.lex_state = 593, .external_lex_state = 51}, + [3732] = {.lex_state = 593, .external_lex_state = 51}, + [3733] = {.lex_state = 593, .external_lex_state = 51}, + [3734] = {.lex_state = 593, .external_lex_state = 51}, + [3735] = {.lex_state = 593, .external_lex_state = 51}, + [3736] = {.lex_state = 593, .external_lex_state = 51}, + [3737] = {.lex_state = 593, .external_lex_state = 51}, + [3738] = {.lex_state = 593, .external_lex_state = 51}, + [3739] = {.lex_state = 593, .external_lex_state = 51}, + [3740] = {.lex_state = 593, .external_lex_state = 51}, + [3741] = {.lex_state = 593, .external_lex_state = 51}, + [3742] = {.lex_state = 593, .external_lex_state = 51}, + [3743] = {.lex_state = 593, .external_lex_state = 51}, + [3744] = {.lex_state = 593, .external_lex_state = 51}, + [3745] = {.lex_state = 593, .external_lex_state = 51}, + [3746] = {.lex_state = 593, .external_lex_state = 51}, + [3747] = {.lex_state = 593, .external_lex_state = 51}, + [3748] = {.lex_state = 593, .external_lex_state = 51}, + [3749] = {.lex_state = 593, .external_lex_state = 51}, + [3750] = {.lex_state = 593, .external_lex_state = 51}, + [3751] = {.lex_state = 593, .external_lex_state = 51}, + [3752] = {.lex_state = 593, .external_lex_state = 51}, + [3753] = {.lex_state = 593, .external_lex_state = 51}, + [3754] = {.lex_state = 593, .external_lex_state = 51}, + [3755] = {.lex_state = 593, .external_lex_state = 51}, + [3756] = {.lex_state = 593, .external_lex_state = 51}, + [3757] = {.lex_state = 593, .external_lex_state = 51}, + [3758] = {.lex_state = 593, .external_lex_state = 51}, + [3759] = {.lex_state = 593, .external_lex_state = 51}, + [3760] = {.lex_state = 593, .external_lex_state = 51}, + [3761] = {.lex_state = 593, .external_lex_state = 51}, + [3762] = {.lex_state = 593, .external_lex_state = 51}, + [3763] = {.lex_state = 593, .external_lex_state = 51}, + [3764] = {.lex_state = 593, .external_lex_state = 51}, + [3765] = {.lex_state = 593, .external_lex_state = 51}, + [3766] = {.lex_state = 593, .external_lex_state = 51}, + [3767] = {.lex_state = 593, .external_lex_state = 51}, + [3768] = {.lex_state = 593, .external_lex_state = 51}, + [3769] = {.lex_state = 593, .external_lex_state = 51}, + [3770] = {.lex_state = 593, .external_lex_state = 51}, + [3771] = {.lex_state = 593, .external_lex_state = 51}, + [3772] = {.lex_state = 593, .external_lex_state = 51}, + [3773] = {.lex_state = 593, .external_lex_state = 51}, + [3774] = {.lex_state = 593, .external_lex_state = 51}, + [3775] = {.lex_state = 593, .external_lex_state = 51}, + [3776] = {.lex_state = 593, .external_lex_state = 51}, + [3777] = {.lex_state = 593, .external_lex_state = 51}, + [3778] = {.lex_state = 593, .external_lex_state = 51}, + [3779] = {.lex_state = 593, .external_lex_state = 51}, + [3780] = {.lex_state = 593, .external_lex_state = 51}, + [3781] = {.lex_state = 593, .external_lex_state = 51}, + [3782] = {.lex_state = 593, .external_lex_state = 51}, + [3783] = {.lex_state = 593, .external_lex_state = 51}, + [3784] = {.lex_state = 593, .external_lex_state = 51}, + [3785] = {.lex_state = 593, .external_lex_state = 51}, + [3786] = {.lex_state = 593, .external_lex_state = 51}, + [3787] = {.lex_state = 593, .external_lex_state = 51}, + [3788] = {.lex_state = 593, .external_lex_state = 51}, + [3789] = {.lex_state = 593, .external_lex_state = 51}, + [3790] = {.lex_state = 593, .external_lex_state = 51}, + [3791] = {.lex_state = 593, .external_lex_state = 51}, + [3792] = {.lex_state = 593, .external_lex_state = 51}, + [3793] = {.lex_state = 593, .external_lex_state = 51}, + [3794] = {.lex_state = 593, .external_lex_state = 51}, + [3795] = {.lex_state = 593, .external_lex_state = 51}, + [3796] = {.lex_state = 593, .external_lex_state = 51}, + [3797] = {.lex_state = 593, .external_lex_state = 51}, + [3798] = {.lex_state = 593, .external_lex_state = 51}, + [3799] = {.lex_state = 593, .external_lex_state = 51}, + [3800] = {.lex_state = 593, .external_lex_state = 51}, + [3801] = {.lex_state = 593, .external_lex_state = 51}, + [3802] = {.lex_state = 593, .external_lex_state = 51}, + [3803] = {.lex_state = 593, .external_lex_state = 51}, + [3804] = {.lex_state = 593, .external_lex_state = 51}, + [3805] = {.lex_state = 593, .external_lex_state = 51}, + [3806] = {.lex_state = 593, .external_lex_state = 51}, + [3807] = {.lex_state = 593, .external_lex_state = 51}, + [3808] = {.lex_state = 593, .external_lex_state = 51}, + [3809] = {.lex_state = 593, .external_lex_state = 51}, + [3810] = {.lex_state = 593, .external_lex_state = 51}, + [3811] = {.lex_state = 593, .external_lex_state = 51}, + [3812] = {.lex_state = 593, .external_lex_state = 51}, + [3813] = {.lex_state = 593, .external_lex_state = 51}, + [3814] = {.lex_state = 593, .external_lex_state = 51}, + [3815] = {.lex_state = 593, .external_lex_state = 51}, + [3816] = {.lex_state = 593, .external_lex_state = 51}, + [3817] = {.lex_state = 593, .external_lex_state = 51}, + [3818] = {.lex_state = 593, .external_lex_state = 51}, + [3819] = {.lex_state = 593, .external_lex_state = 51}, + [3820] = {.lex_state = 593, .external_lex_state = 51}, + [3821] = {.lex_state = 593, .external_lex_state = 51}, + [3822] = {.lex_state = 593, .external_lex_state = 51}, + [3823] = {.lex_state = 593, .external_lex_state = 51}, + [3824] = {.lex_state = 593, .external_lex_state = 51}, + [3825] = {.lex_state = 593, .external_lex_state = 51}, + [3826] = {.lex_state = 593, .external_lex_state = 51}, + [3827] = {.lex_state = 593, .external_lex_state = 51}, + [3828] = {.lex_state = 593, .external_lex_state = 51}, + [3829] = {.lex_state = 593, .external_lex_state = 51}, + [3830] = {.lex_state = 593, .external_lex_state = 51}, + [3831] = {.lex_state = 593, .external_lex_state = 51}, + [3832] = {.lex_state = 593, .external_lex_state = 51}, + [3833] = {.lex_state = 593, .external_lex_state = 51}, + [3834] = {.lex_state = 593, .external_lex_state = 51}, + [3835] = {.lex_state = 593, .external_lex_state = 51}, + [3836] = {.lex_state = 593, .external_lex_state = 51}, + [3837] = {.lex_state = 593, .external_lex_state = 51}, + [3838] = {.lex_state = 593, .external_lex_state = 51}, + [3839] = {.lex_state = 593, .external_lex_state = 51}, + [3840] = {.lex_state = 593, .external_lex_state = 51}, + [3841] = {.lex_state = 593, .external_lex_state = 51}, + [3842] = {.lex_state = 593, .external_lex_state = 51}, + [3843] = {.lex_state = 593, .external_lex_state = 51}, + [3844] = {.lex_state = 593, .external_lex_state = 51}, + [3845] = {.lex_state = 593, .external_lex_state = 51}, + [3846] = {.lex_state = 593, .external_lex_state = 51}, + [3847] = {.lex_state = 593, .external_lex_state = 51}, + [3848] = {.lex_state = 593, .external_lex_state = 51}, + [3849] = {.lex_state = 593, .external_lex_state = 51}, + [3850] = {.lex_state = 593, .external_lex_state = 51}, + [3851] = {.lex_state = 593, .external_lex_state = 51}, + [3852] = {.lex_state = 593, .external_lex_state = 51}, + [3853] = {.lex_state = 593, .external_lex_state = 51}, + [3854] = {.lex_state = 593, .external_lex_state = 51}, + [3855] = {.lex_state = 593, .external_lex_state = 51}, + [3856] = {.lex_state = 593, .external_lex_state = 51}, + [3857] = {.lex_state = 593, .external_lex_state = 51}, + [3858] = {.lex_state = 593, .external_lex_state = 51}, + [3859] = {.lex_state = 593, .external_lex_state = 51}, + [3860] = {.lex_state = 593, .external_lex_state = 51}, + [3861] = {.lex_state = 593, .external_lex_state = 51}, + [3862] = {.lex_state = 593, .external_lex_state = 51}, + [3863] = {.lex_state = 593, .external_lex_state = 51}, + [3864] = {.lex_state = 593, .external_lex_state = 51}, + [3865] = {.lex_state = 593, .external_lex_state = 51}, + [3866] = {.lex_state = 593, .external_lex_state = 51}, + [3867] = {.lex_state = 593, .external_lex_state = 51}, + [3868] = {.lex_state = 593, .external_lex_state = 51}, + [3869] = {.lex_state = 593, .external_lex_state = 51}, + [3870] = {.lex_state = 593, .external_lex_state = 51}, + [3871] = {.lex_state = 593, .external_lex_state = 51}, + [3872] = {.lex_state = 593, .external_lex_state = 51}, + [3873] = {.lex_state = 593, .external_lex_state = 51}, + [3874] = {.lex_state = 593, .external_lex_state = 51}, + [3875] = {.lex_state = 593, .external_lex_state = 51}, + [3876] = {.lex_state = 593, .external_lex_state = 51}, + [3877] = {.lex_state = 593, .external_lex_state = 51}, + [3878] = {.lex_state = 593, .external_lex_state = 51}, + [3879] = {.lex_state = 593, .external_lex_state = 51}, + [3880] = {.lex_state = 593, .external_lex_state = 51}, + [3881] = {.lex_state = 593, .external_lex_state = 51}, + [3882] = {.lex_state = 593, .external_lex_state = 51}, + [3883] = {.lex_state = 593, .external_lex_state = 51}, + [3884] = {.lex_state = 593, .external_lex_state = 51}, + [3885] = {.lex_state = 593, .external_lex_state = 51}, + [3886] = {.lex_state = 593, .external_lex_state = 51}, + [3887] = {.lex_state = 593, .external_lex_state = 51}, + [3888] = {.lex_state = 593, .external_lex_state = 51}, + [3889] = {.lex_state = 593, .external_lex_state = 51}, + [3890] = {.lex_state = 593, .external_lex_state = 51}, + [3891] = {.lex_state = 593, .external_lex_state = 51}, + [3892] = {.lex_state = 593, .external_lex_state = 51}, + [3893] = {.lex_state = 593, .external_lex_state = 51}, + [3894] = {.lex_state = 593, .external_lex_state = 51}, + [3895] = {.lex_state = 593, .external_lex_state = 51}, + [3896] = {.lex_state = 593, .external_lex_state = 51}, + [3897] = {.lex_state = 593, .external_lex_state = 51}, + [3898] = {.lex_state = 593, .external_lex_state = 51}, + [3899] = {.lex_state = 593, .external_lex_state = 51}, + [3900] = {.lex_state = 593, .external_lex_state = 51}, + [3901] = {.lex_state = 593, .external_lex_state = 51}, + [3902] = {.lex_state = 593, .external_lex_state = 51}, + [3903] = {.lex_state = 593, .external_lex_state = 51}, + [3904] = {.lex_state = 593, .external_lex_state = 51}, + [3905] = {.lex_state = 593, .external_lex_state = 51}, + [3906] = {.lex_state = 593, .external_lex_state = 51}, + [3907] = {.lex_state = 593, .external_lex_state = 51}, + [3908] = {.lex_state = 593, .external_lex_state = 51}, + [3909] = {.lex_state = 593, .external_lex_state = 51}, + [3910] = {.lex_state = 593, .external_lex_state = 51}, + [3911] = {.lex_state = 593, .external_lex_state = 51}, + [3912] = {.lex_state = 593, .external_lex_state = 51}, + [3913] = {.lex_state = 593, .external_lex_state = 51}, + [3914] = {.lex_state = 593, .external_lex_state = 51}, + [3915] = {.lex_state = 593, .external_lex_state = 51}, + [3916] = {.lex_state = 593, .external_lex_state = 51}, + [3917] = {.lex_state = 593, .external_lex_state = 51}, + [3918] = {.lex_state = 593, .external_lex_state = 51}, + [3919] = {.lex_state = 593, .external_lex_state = 51}, + [3920] = {.lex_state = 593, .external_lex_state = 51}, + [3921] = {.lex_state = 593, .external_lex_state = 51}, + [3922] = {.lex_state = 593, .external_lex_state = 51}, + [3923] = {.lex_state = 593, .external_lex_state = 51}, + [3924] = {.lex_state = 593, .external_lex_state = 51}, + [3925] = {.lex_state = 593, .external_lex_state = 51}, + [3926] = {.lex_state = 593, .external_lex_state = 51}, + [3927] = {.lex_state = 593, .external_lex_state = 51}, + [3928] = {.lex_state = 593, .external_lex_state = 51}, + [3929] = {.lex_state = 593, .external_lex_state = 51}, + [3930] = {.lex_state = 593, .external_lex_state = 51}, + [3931] = {.lex_state = 593, .external_lex_state = 51}, + [3932] = {.lex_state = 593, .external_lex_state = 51}, + [3933] = {.lex_state = 593, .external_lex_state = 51}, + [3934] = {.lex_state = 593, .external_lex_state = 51}, + [3935] = {.lex_state = 593, .external_lex_state = 51}, + [3936] = {.lex_state = 593, .external_lex_state = 51}, + [3937] = {.lex_state = 593, .external_lex_state = 51}, + [3938] = {.lex_state = 593, .external_lex_state = 51}, + [3939] = {.lex_state = 593, .external_lex_state = 51}, + [3940] = {.lex_state = 593, .external_lex_state = 51}, + [3941] = {.lex_state = 593, .external_lex_state = 51}, + [3942] = {.lex_state = 593, .external_lex_state = 51}, + [3943] = {.lex_state = 593, .external_lex_state = 51}, + [3944] = {.lex_state = 593, .external_lex_state = 51}, + [3945] = {.lex_state = 593, .external_lex_state = 51}, + [3946] = {.lex_state = 593, .external_lex_state = 51}, + [3947] = {.lex_state = 593, .external_lex_state = 51}, + [3948] = {.lex_state = 593, .external_lex_state = 51}, + [3949] = {.lex_state = 593, .external_lex_state = 51}, + [3950] = {.lex_state = 593, .external_lex_state = 51}, + [3951] = {.lex_state = 593, .external_lex_state = 51}, + [3952] = {.lex_state = 593, .external_lex_state = 51}, + [3953] = {.lex_state = 593, .external_lex_state = 51}, + [3954] = {.lex_state = 593, .external_lex_state = 51}, + [3955] = {.lex_state = 593, .external_lex_state = 51}, + [3956] = {.lex_state = 593, .external_lex_state = 51}, + [3957] = {.lex_state = 593, .external_lex_state = 51}, + [3958] = {.lex_state = 593, .external_lex_state = 51}, + [3959] = {.lex_state = 593, .external_lex_state = 51}, + [3960] = {.lex_state = 593, .external_lex_state = 51}, + [3961] = {.lex_state = 593, .external_lex_state = 51}, + [3962] = {.lex_state = 593, .external_lex_state = 51}, + [3963] = {.lex_state = 593, .external_lex_state = 51}, + [3964] = {.lex_state = 593, .external_lex_state = 51}, + [3965] = {.lex_state = 593, .external_lex_state = 51}, + [3966] = {.lex_state = 593, .external_lex_state = 51}, + [3967] = {.lex_state = 593, .external_lex_state = 51}, + [3968] = {.lex_state = 593, .external_lex_state = 51}, + [3969] = {.lex_state = 593, .external_lex_state = 51}, + [3970] = {.lex_state = 593, .external_lex_state = 51}, + [3971] = {.lex_state = 593, .external_lex_state = 51}, + [3972] = {.lex_state = 593, .external_lex_state = 51}, + [3973] = {.lex_state = 593, .external_lex_state = 51}, + [3974] = {.lex_state = 593, .external_lex_state = 51}, + [3975] = {.lex_state = 593, .external_lex_state = 51}, + [3976] = {.lex_state = 593, .external_lex_state = 51}, + [3977] = {.lex_state = 593, .external_lex_state = 51}, + [3978] = {.lex_state = 593, .external_lex_state = 51}, + [3979] = {.lex_state = 593, .external_lex_state = 51}, + [3980] = {.lex_state = 593, .external_lex_state = 51}, + [3981] = {.lex_state = 593, .external_lex_state = 51}, + [3982] = {.lex_state = 593, .external_lex_state = 51}, + [3983] = {.lex_state = 593, .external_lex_state = 51}, + [3984] = {.lex_state = 593, .external_lex_state = 51}, + [3985] = {.lex_state = 593, .external_lex_state = 51}, + [3986] = {.lex_state = 593, .external_lex_state = 51}, + [3987] = {.lex_state = 593, .external_lex_state = 51}, + [3988] = {.lex_state = 593, .external_lex_state = 51}, + [3989] = {.lex_state = 593, .external_lex_state = 51}, + [3990] = {.lex_state = 593, .external_lex_state = 51}, + [3991] = {.lex_state = 593, .external_lex_state = 51}, + [3992] = {.lex_state = 593, .external_lex_state = 51}, + [3993] = {.lex_state = 593, .external_lex_state = 51}, + [3994] = {.lex_state = 593, .external_lex_state = 51}, + [3995] = {.lex_state = 593, .external_lex_state = 51}, + [3996] = {.lex_state = 593, .external_lex_state = 51}, + [3997] = {.lex_state = 593, .external_lex_state = 51}, + [3998] = {.lex_state = 593, .external_lex_state = 51}, + [3999] = {.lex_state = 593, .external_lex_state = 51}, + [4000] = {.lex_state = 593, .external_lex_state = 51}, + [4001] = {.lex_state = 593, .external_lex_state = 51}, + [4002] = {.lex_state = 593, .external_lex_state = 51}, + [4003] = {.lex_state = 593, .external_lex_state = 51}, + [4004] = {.lex_state = 593, .external_lex_state = 51}, + [4005] = {.lex_state = 593, .external_lex_state = 51}, + [4006] = {.lex_state = 593, .external_lex_state = 51}, + [4007] = {.lex_state = 593, .external_lex_state = 51}, + [4008] = {.lex_state = 593, .external_lex_state = 51}, + [4009] = {.lex_state = 593, .external_lex_state = 51}, + [4010] = {.lex_state = 593, .external_lex_state = 51}, + [4011] = {.lex_state = 593, .external_lex_state = 51}, + [4012] = {.lex_state = 593, .external_lex_state = 51}, + [4013] = {.lex_state = 593, .external_lex_state = 51}, + [4014] = {.lex_state = 593, .external_lex_state = 51}, + [4015] = {.lex_state = 593, .external_lex_state = 51}, + [4016] = {.lex_state = 593, .external_lex_state = 51}, + [4017] = {.lex_state = 593, .external_lex_state = 51}, + [4018] = {.lex_state = 593, .external_lex_state = 51}, + [4019] = {.lex_state = 593, .external_lex_state = 51}, + [4020] = {.lex_state = 593, .external_lex_state = 51}, + [4021] = {.lex_state = 593, .external_lex_state = 51}, + [4022] = {.lex_state = 593, .external_lex_state = 51}, + [4023] = {.lex_state = 593, .external_lex_state = 51}, + [4024] = {.lex_state = 593, .external_lex_state = 51}, + [4025] = {.lex_state = 593, .external_lex_state = 51}, + [4026] = {.lex_state = 593, .external_lex_state = 51}, + [4027] = {.lex_state = 593, .external_lex_state = 51}, + [4028] = {.lex_state = 593, .external_lex_state = 51}, + [4029] = {.lex_state = 593, .external_lex_state = 51}, + [4030] = {.lex_state = 593, .external_lex_state = 51}, + [4031] = {.lex_state = 593, .external_lex_state = 51}, + [4032] = {.lex_state = 593, .external_lex_state = 51}, + [4033] = {.lex_state = 593, .external_lex_state = 51}, + [4034] = {.lex_state = 593, .external_lex_state = 51}, + [4035] = {.lex_state = 593, .external_lex_state = 51}, + [4036] = {.lex_state = 593, .external_lex_state = 51}, + [4037] = {.lex_state = 593, .external_lex_state = 51}, + [4038] = {.lex_state = 593, .external_lex_state = 51}, + [4039] = {.lex_state = 593, .external_lex_state = 51}, + [4040] = {.lex_state = 593, .external_lex_state = 51}, + [4041] = {.lex_state = 593, .external_lex_state = 51}, + [4042] = {.lex_state = 593, .external_lex_state = 51}, + [4043] = {.lex_state = 593, .external_lex_state = 51}, + [4044] = {.lex_state = 593, .external_lex_state = 51}, + [4045] = {.lex_state = 593, .external_lex_state = 51}, + [4046] = {.lex_state = 593, .external_lex_state = 51}, + [4047] = {.lex_state = 593, .external_lex_state = 51}, + [4048] = {.lex_state = 593, .external_lex_state = 51}, + [4049] = {.lex_state = 593, .external_lex_state = 51}, + [4050] = {.lex_state = 593, .external_lex_state = 51}, + [4051] = {.lex_state = 593, .external_lex_state = 51}, + [4052] = {.lex_state = 593, .external_lex_state = 51}, + [4053] = {.lex_state = 593, .external_lex_state = 51}, + [4054] = {.lex_state = 593, .external_lex_state = 51}, + [4055] = {.lex_state = 593, .external_lex_state = 51}, + [4056] = {.lex_state = 593, .external_lex_state = 51}, + [4057] = {.lex_state = 593, .external_lex_state = 51}, + [4058] = {.lex_state = 593, .external_lex_state = 51}, + [4059] = {.lex_state = 593, .external_lex_state = 51}, + [4060] = {.lex_state = 593, .external_lex_state = 51}, + [4061] = {.lex_state = 593, .external_lex_state = 51}, + [4062] = {.lex_state = 593, .external_lex_state = 51}, + [4063] = {.lex_state = 593, .external_lex_state = 51}, + [4064] = {.lex_state = 593, .external_lex_state = 51}, + [4065] = {.lex_state = 593, .external_lex_state = 51}, + [4066] = {.lex_state = 593, .external_lex_state = 51}, + [4067] = {.lex_state = 593, .external_lex_state = 51}, + [4068] = {.lex_state = 593, .external_lex_state = 51}, + [4069] = {.lex_state = 593, .external_lex_state = 51}, + [4070] = {.lex_state = 593, .external_lex_state = 51}, + [4071] = {.lex_state = 593, .external_lex_state = 51}, + [4072] = {.lex_state = 593, .external_lex_state = 51}, + [4073] = {.lex_state = 593, .external_lex_state = 51}, + [4074] = {.lex_state = 593, .external_lex_state = 51}, + [4075] = {.lex_state = 593, .external_lex_state = 51}, + [4076] = {.lex_state = 593, .external_lex_state = 51}, + [4077] = {.lex_state = 593, .external_lex_state = 51}, + [4078] = {.lex_state = 593, .external_lex_state = 51}, + [4079] = {.lex_state = 593, .external_lex_state = 51}, + [4080] = {.lex_state = 593, .external_lex_state = 51}, + [4081] = {.lex_state = 593, .external_lex_state = 51}, + [4082] = {.lex_state = 593, .external_lex_state = 51}, + [4083] = {.lex_state = 593, .external_lex_state = 51}, + [4084] = {.lex_state = 593, .external_lex_state = 51}, + [4085] = {.lex_state = 593, .external_lex_state = 51}, + [4086] = {.lex_state = 593, .external_lex_state = 51}, + [4087] = {.lex_state = 593, .external_lex_state = 51}, + [4088] = {.lex_state = 593, .external_lex_state = 51}, + [4089] = {.lex_state = 593, .external_lex_state = 51}, + [4090] = {.lex_state = 593, .external_lex_state = 51}, + [4091] = {.lex_state = 593, .external_lex_state = 51}, + [4092] = {.lex_state = 593, .external_lex_state = 51}, + [4093] = {.lex_state = 593, .external_lex_state = 51}, + [4094] = {.lex_state = 593, .external_lex_state = 51}, + [4095] = {.lex_state = 593, .external_lex_state = 51}, + [4096] = {.lex_state = 593, .external_lex_state = 51}, + [4097] = {.lex_state = 593, .external_lex_state = 51}, + [4098] = {.lex_state = 593, .external_lex_state = 51}, + [4099] = {.lex_state = 593, .external_lex_state = 51}, + [4100] = {.lex_state = 593, .external_lex_state = 51}, + [4101] = {.lex_state = 593, .external_lex_state = 51}, + [4102] = {.lex_state = 593, .external_lex_state = 51}, + [4103] = {.lex_state = 593, .external_lex_state = 51}, + [4104] = {.lex_state = 593, .external_lex_state = 51}, + [4105] = {.lex_state = 593, .external_lex_state = 51}, + [4106] = {.lex_state = 593, .external_lex_state = 51}, + [4107] = {.lex_state = 593, .external_lex_state = 51}, + [4108] = {.lex_state = 593, .external_lex_state = 51}, + [4109] = {.lex_state = 593, .external_lex_state = 51}, + [4110] = {.lex_state = 593, .external_lex_state = 51}, + [4111] = {.lex_state = 593, .external_lex_state = 51}, + [4112] = {.lex_state = 593, .external_lex_state = 51}, + [4113] = {.lex_state = 593, .external_lex_state = 51}, + [4114] = {.lex_state = 593, .external_lex_state = 51}, + [4115] = {.lex_state = 593, .external_lex_state = 51}, + [4116] = {.lex_state = 593, .external_lex_state = 51}, + [4117] = {.lex_state = 593, .external_lex_state = 51}, + [4118] = {.lex_state = 593, .external_lex_state = 51}, + [4119] = {.lex_state = 593, .external_lex_state = 51}, + [4120] = {.lex_state = 593, .external_lex_state = 51}, + [4121] = {.lex_state = 593, .external_lex_state = 51}, + [4122] = {.lex_state = 593, .external_lex_state = 51}, + [4123] = {.lex_state = 593, .external_lex_state = 51}, + [4124] = {.lex_state = 593, .external_lex_state = 51}, + [4125] = {.lex_state = 593, .external_lex_state = 51}, + [4126] = {.lex_state = 593, .external_lex_state = 51}, + [4127] = {.lex_state = 593, .external_lex_state = 51}, + [4128] = {.lex_state = 593, .external_lex_state = 51}, + [4129] = {.lex_state = 593, .external_lex_state = 51}, + [4130] = {.lex_state = 593, .external_lex_state = 51}, + [4131] = {.lex_state = 593, .external_lex_state = 51}, + [4132] = {.lex_state = 593, .external_lex_state = 51}, + [4133] = {.lex_state = 593, .external_lex_state = 51}, + [4134] = {.lex_state = 593, .external_lex_state = 51}, + [4135] = {.lex_state = 593, .external_lex_state = 51}, + [4136] = {.lex_state = 593, .external_lex_state = 51}, + [4137] = {.lex_state = 593, .external_lex_state = 51}, + [4138] = {.lex_state = 593, .external_lex_state = 51}, + [4139] = {.lex_state = 593, .external_lex_state = 51}, + [4140] = {.lex_state = 593, .external_lex_state = 51}, + [4141] = {.lex_state = 593, .external_lex_state = 51}, + [4142] = {.lex_state = 593, .external_lex_state = 51}, + [4143] = {.lex_state = 593, .external_lex_state = 51}, + [4144] = {.lex_state = 593, .external_lex_state = 51}, + [4145] = {.lex_state = 593, .external_lex_state = 51}, + [4146] = {.lex_state = 593, .external_lex_state = 51}, + [4147] = {.lex_state = 593, .external_lex_state = 51}, + [4148] = {.lex_state = 593, .external_lex_state = 51}, + [4149] = {.lex_state = 593, .external_lex_state = 51}, + [4150] = {.lex_state = 593, .external_lex_state = 51}, + [4151] = {.lex_state = 593, .external_lex_state = 51}, + [4152] = {.lex_state = 593, .external_lex_state = 51}, + [4153] = {.lex_state = 593, .external_lex_state = 51}, + [4154] = {.lex_state = 593, .external_lex_state = 51}, + [4155] = {.lex_state = 593, .external_lex_state = 51}, + [4156] = {.lex_state = 593, .external_lex_state = 51}, + [4157] = {.lex_state = 593, .external_lex_state = 51}, + [4158] = {.lex_state = 593, .external_lex_state = 51}, + [4159] = {.lex_state = 593, .external_lex_state = 51}, + [4160] = {.lex_state = 593, .external_lex_state = 51}, + [4161] = {.lex_state = 593, .external_lex_state = 51}, + [4162] = {.lex_state = 593, .external_lex_state = 51}, + [4163] = {.lex_state = 593, .external_lex_state = 51}, + [4164] = {.lex_state = 593, .external_lex_state = 51}, + [4165] = {.lex_state = 593, .external_lex_state = 51}, + [4166] = {.lex_state = 593, .external_lex_state = 51}, + [4167] = {.lex_state = 593, .external_lex_state = 51}, + [4168] = {.lex_state = 593, .external_lex_state = 51}, + [4169] = {.lex_state = 593, .external_lex_state = 51}, + [4170] = {.lex_state = 593, .external_lex_state = 51}, + [4171] = {.lex_state = 593, .external_lex_state = 51}, + [4172] = {.lex_state = 593, .external_lex_state = 51}, + [4173] = {.lex_state = 593, .external_lex_state = 51}, + [4174] = {.lex_state = 593, .external_lex_state = 51}, + [4175] = {.lex_state = 593, .external_lex_state = 51}, + [4176] = {.lex_state = 593, .external_lex_state = 51}, + [4177] = {.lex_state = 593, .external_lex_state = 51}, + [4178] = {.lex_state = 593, .external_lex_state = 51}, + [4179] = {.lex_state = 593, .external_lex_state = 51}, + [4180] = {.lex_state = 593, .external_lex_state = 51}, + [4181] = {.lex_state = 593, .external_lex_state = 51}, + [4182] = {.lex_state = 593, .external_lex_state = 51}, + [4183] = {.lex_state = 593, .external_lex_state = 51}, + [4184] = {.lex_state = 593, .external_lex_state = 51}, + [4185] = {.lex_state = 593, .external_lex_state = 51}, + [4186] = {.lex_state = 593, .external_lex_state = 51}, + [4187] = {.lex_state = 593, .external_lex_state = 51}, + [4188] = {.lex_state = 593, .external_lex_state = 51}, + [4189] = {.lex_state = 593, .external_lex_state = 51}, + [4190] = {.lex_state = 593, .external_lex_state = 51}, + [4191] = {.lex_state = 593, .external_lex_state = 51}, + [4192] = {.lex_state = 593, .external_lex_state = 51}, + [4193] = {.lex_state = 593, .external_lex_state = 51}, + [4194] = {.lex_state = 593, .external_lex_state = 51}, + [4195] = {.lex_state = 593, .external_lex_state = 51}, + [4196] = {.lex_state = 593, .external_lex_state = 51}, + [4197] = {.lex_state = 593, .external_lex_state = 51}, + [4198] = {.lex_state = 593, .external_lex_state = 51}, + [4199] = {.lex_state = 593, .external_lex_state = 51}, + [4200] = {.lex_state = 593, .external_lex_state = 51}, + [4201] = {.lex_state = 593, .external_lex_state = 51}, + [4202] = {.lex_state = 593, .external_lex_state = 51}, + [4203] = {.lex_state = 593, .external_lex_state = 51}, + [4204] = {.lex_state = 593, .external_lex_state = 51}, + [4205] = {.lex_state = 593, .external_lex_state = 51}, + [4206] = {.lex_state = 593, .external_lex_state = 51}, + [4207] = {.lex_state = 593, .external_lex_state = 51}, + [4208] = {.lex_state = 593, .external_lex_state = 51}, + [4209] = {.lex_state = 56, .external_lex_state = 14}, + [4210] = {.lex_state = 593, .external_lex_state = 34}, + [4211] = {.lex_state = 56, .external_lex_state = 14}, + [4212] = {.lex_state = 56, .external_lex_state = 14}, + [4213] = {.lex_state = 75, .external_lex_state = 14}, + [4214] = {.lex_state = 56, .external_lex_state = 14}, + [4215] = {.lex_state = 56, .external_lex_state = 14}, + [4216] = {.lex_state = 593, .external_lex_state = 34}, + [4217] = {.lex_state = 56, .external_lex_state = 14}, + [4218] = {.lex_state = 56, .external_lex_state = 14}, + [4219] = {.lex_state = 593, .external_lex_state = 34}, + [4220] = {.lex_state = 56, .external_lex_state = 14}, + [4221] = {.lex_state = 56, .external_lex_state = 14}, + [4222] = {.lex_state = 56, .external_lex_state = 14}, + [4223] = {.lex_state = 593, .external_lex_state = 34}, + [4224] = {.lex_state = 75, .external_lex_state = 14}, + [4225] = {.lex_state = 593, .external_lex_state = 34}, + [4226] = {.lex_state = 593, .external_lex_state = 34}, + [4227] = {.lex_state = 593, .external_lex_state = 34}, + [4228] = {.lex_state = 593, .external_lex_state = 34}, + [4229] = {.lex_state = 593, .external_lex_state = 34}, + [4230] = {.lex_state = 593, .external_lex_state = 34}, + [4231] = {.lex_state = 56, .external_lex_state = 14}, + [4232] = {.lex_state = 593, .external_lex_state = 34}, + [4233] = {.lex_state = 593, .external_lex_state = 34}, + [4234] = {.lex_state = 593, .external_lex_state = 34}, + [4235] = {.lex_state = 593, .external_lex_state = 34}, + [4236] = {.lex_state = 593, .external_lex_state = 34}, + [4237] = {.lex_state = 593, .external_lex_state = 34}, + [4238] = {.lex_state = 593, .external_lex_state = 34}, + [4239] = {.lex_state = 593, .external_lex_state = 34}, + [4240] = {.lex_state = 593, .external_lex_state = 34}, + [4241] = {.lex_state = 54, .external_lex_state = 25}, + [4242] = {.lex_state = 54, .external_lex_state = 25}, + [4243] = {.lex_state = 54, .external_lex_state = 25}, + [4244] = {.lex_state = 54, .external_lex_state = 25}, + [4245] = {.lex_state = 75, .external_lex_state = 25}, + [4246] = {.lex_state = 75, .external_lex_state = 25}, + [4247] = {.lex_state = 75, .external_lex_state = 25}, + [4248] = {.lex_state = 75, .external_lex_state = 25}, + [4249] = {.lex_state = 54, .external_lex_state = 25}, + [4250] = {.lex_state = 51, .external_lex_state = 14}, + [4251] = {.lex_state = 54, .external_lex_state = 25}, + [4252] = {.lex_state = 54, .external_lex_state = 25}, + [4253] = {.lex_state = 54, .external_lex_state = 14}, + [4254] = {.lex_state = 54, .external_lex_state = 25}, + [4255] = {.lex_state = 54, .external_lex_state = 25}, + [4256] = {.lex_state = 75, .external_lex_state = 25}, + [4257] = {.lex_state = 55, .external_lex_state = 14}, + [4258] = {.lex_state = 55, .external_lex_state = 14}, + [4259] = {.lex_state = 55, .external_lex_state = 14}, + [4260] = {.lex_state = 55, .external_lex_state = 14}, + [4261] = {.lex_state = 55, .external_lex_state = 14}, + [4262] = {.lex_state = 55, .external_lex_state = 14}, + [4263] = {.lex_state = 54, .external_lex_state = 14}, + [4264] = {.lex_state = 55, .external_lex_state = 14}, + [4265] = {.lex_state = 54, .external_lex_state = 14}, + [4266] = {.lex_state = 55, .external_lex_state = 14}, + [4267] = {.lex_state = 55, .external_lex_state = 14}, + [4268] = {.lex_state = 55, .external_lex_state = 14}, + [4269] = {.lex_state = 55, .external_lex_state = 14}, + [4270] = {.lex_state = 55, .external_lex_state = 14}, + [4271] = {.lex_state = 55, .external_lex_state = 14}, + [4272] = {.lex_state = 55, .external_lex_state = 14}, + [4273] = {.lex_state = 55, .external_lex_state = 14}, + [4274] = {.lex_state = 55, .external_lex_state = 14}, + [4275] = {.lex_state = 55, .external_lex_state = 14}, + [4276] = {.lex_state = 55, .external_lex_state = 14}, + [4277] = {.lex_state = 55, .external_lex_state = 14}, + [4278] = {.lex_state = 55, .external_lex_state = 14}, + [4279] = {.lex_state = 55, .external_lex_state = 14}, + [4280] = {.lex_state = 55, .external_lex_state = 14}, + [4281] = {.lex_state = 55, .external_lex_state = 14}, + [4282] = {.lex_state = 55, .external_lex_state = 14}, + [4283] = {.lex_state = 55, .external_lex_state = 14}, + [4284] = {.lex_state = 55, .external_lex_state = 14}, + [4285] = {.lex_state = 55, .external_lex_state = 14}, + [4286] = {.lex_state = 55, .external_lex_state = 14}, + [4287] = {.lex_state = 55, .external_lex_state = 14}, + [4288] = {.lex_state = 55, .external_lex_state = 14}, + [4289] = {.lex_state = 55, .external_lex_state = 14}, + [4290] = {.lex_state = 55, .external_lex_state = 14}, + [4291] = {.lex_state = 55, .external_lex_state = 14}, + [4292] = {.lex_state = 55, .external_lex_state = 14}, + [4293] = {.lex_state = 55, .external_lex_state = 14}, + [4294] = {.lex_state = 55, .external_lex_state = 14}, + [4295] = {.lex_state = 55, .external_lex_state = 14}, + [4296] = {.lex_state = 55, .external_lex_state = 14}, + [4297] = {.lex_state = 55, .external_lex_state = 14}, + [4298] = {.lex_state = 55, .external_lex_state = 14}, + [4299] = {.lex_state = 55, .external_lex_state = 14}, + [4300] = {.lex_state = 55, .external_lex_state = 14}, + [4301] = {.lex_state = 55, .external_lex_state = 14}, + [4302] = {.lex_state = 55, .external_lex_state = 14}, + [4303] = {.lex_state = 55, .external_lex_state = 14}, + [4304] = {.lex_state = 55, .external_lex_state = 14}, + [4305] = {.lex_state = 55, .external_lex_state = 14}, + [4306] = {.lex_state = 55, .external_lex_state = 14}, + [4307] = {.lex_state = 55, .external_lex_state = 14}, + [4308] = {.lex_state = 55, .external_lex_state = 14}, + [4309] = {.lex_state = 55, .external_lex_state = 14}, + [4310] = {.lex_state = 55, .external_lex_state = 14}, + [4311] = {.lex_state = 55, .external_lex_state = 14}, + [4312] = {.lex_state = 55, .external_lex_state = 14}, + [4313] = {.lex_state = 55, .external_lex_state = 14}, + [4314] = {.lex_state = 55, .external_lex_state = 14}, + [4315] = {.lex_state = 55, .external_lex_state = 14}, + [4316] = {.lex_state = 55, .external_lex_state = 14}, + [4317] = {.lex_state = 55, .external_lex_state = 14}, + [4318] = {.lex_state = 55, .external_lex_state = 14}, + [4319] = {.lex_state = 55, .external_lex_state = 14}, + [4320] = {.lex_state = 55, .external_lex_state = 14}, + [4321] = {.lex_state = 55, .external_lex_state = 14}, + [4322] = {.lex_state = 55, .external_lex_state = 14}, + [4323] = {.lex_state = 55, .external_lex_state = 14}, + [4324] = {.lex_state = 55, .external_lex_state = 14}, + [4325] = {.lex_state = 55, .external_lex_state = 14}, + [4326] = {.lex_state = 55, .external_lex_state = 14}, + [4327] = {.lex_state = 55, .external_lex_state = 14}, + [4328] = {.lex_state = 75, .external_lex_state = 25}, + [4329] = {.lex_state = 51, .external_lex_state = 14}, + [4330] = {.lex_state = 75, .external_lex_state = 25}, + [4331] = {.lex_state = 55, .external_lex_state = 14}, + [4332] = {.lex_state = 55, .external_lex_state = 14}, + [4333] = {.lex_state = 75, .external_lex_state = 25}, + [4334] = {.lex_state = 75, .external_lex_state = 25}, + [4335] = {.lex_state = 55, .external_lex_state = 14}, + [4336] = {.lex_state = 55, .external_lex_state = 14}, + [4337] = {.lex_state = 55, .external_lex_state = 14}, + [4338] = {.lex_state = 55, .external_lex_state = 14}, + [4339] = {.lex_state = 55, .external_lex_state = 14}, + [4340] = {.lex_state = 55, .external_lex_state = 14}, + [4341] = {.lex_state = 55, .external_lex_state = 14}, + [4342] = {.lex_state = 55, .external_lex_state = 14}, + [4343] = {.lex_state = 55, .external_lex_state = 14}, + [4344] = {.lex_state = 55, .external_lex_state = 14}, + [4345] = {.lex_state = 55, .external_lex_state = 14}, + [4346] = {.lex_state = 55, .external_lex_state = 14}, + [4347] = {.lex_state = 55, .external_lex_state = 14}, + [4348] = {.lex_state = 55, .external_lex_state = 14}, + [4349] = {.lex_state = 55, .external_lex_state = 14}, + [4350] = {.lex_state = 55, .external_lex_state = 14}, + [4351] = {.lex_state = 55, .external_lex_state = 14}, + [4352] = {.lex_state = 54, .external_lex_state = 14}, + [4353] = {.lex_state = 55, .external_lex_state = 14}, + [4354] = {.lex_state = 55, .external_lex_state = 14}, + [4355] = {.lex_state = 55, .external_lex_state = 14}, + [4356] = {.lex_state = 55, .external_lex_state = 14}, + [4357] = {.lex_state = 55, .external_lex_state = 14}, + [4358] = {.lex_state = 55, .external_lex_state = 14}, + [4359] = {.lex_state = 55, .external_lex_state = 14}, + [4360] = {.lex_state = 55, .external_lex_state = 14}, + [4361] = {.lex_state = 55, .external_lex_state = 14}, + [4362] = {.lex_state = 55, .external_lex_state = 14}, + [4363] = {.lex_state = 55, .external_lex_state = 14}, + [4364] = {.lex_state = 55, .external_lex_state = 14}, + [4365] = {.lex_state = 55, .external_lex_state = 14}, + [4366] = {.lex_state = 55, .external_lex_state = 14}, + [4367] = {.lex_state = 55, .external_lex_state = 14}, + [4368] = {.lex_state = 55, .external_lex_state = 14}, + [4369] = {.lex_state = 55, .external_lex_state = 14}, + [4370] = {.lex_state = 55, .external_lex_state = 14}, + [4371] = {.lex_state = 55, .external_lex_state = 14}, + [4372] = {.lex_state = 55, .external_lex_state = 14}, + [4373] = {.lex_state = 55, .external_lex_state = 14}, + [4374] = {.lex_state = 55, .external_lex_state = 14}, + [4375] = {.lex_state = 55, .external_lex_state = 14}, + [4376] = {.lex_state = 55, .external_lex_state = 14}, + [4377] = {.lex_state = 55, .external_lex_state = 14}, + [4378] = {.lex_state = 55, .external_lex_state = 14}, + [4379] = {.lex_state = 55, .external_lex_state = 14}, + [4380] = {.lex_state = 55, .external_lex_state = 14}, + [4381] = {.lex_state = 55, .external_lex_state = 14}, + [4382] = {.lex_state = 55, .external_lex_state = 14}, + [4383] = {.lex_state = 55, .external_lex_state = 14}, + [4384] = {.lex_state = 55, .external_lex_state = 14}, + [4385] = {.lex_state = 55, .external_lex_state = 14}, + [4386] = {.lex_state = 55, .external_lex_state = 14}, + [4387] = {.lex_state = 55, .external_lex_state = 14}, + [4388] = {.lex_state = 55, .external_lex_state = 14}, + [4389] = {.lex_state = 55, .external_lex_state = 14}, + [4390] = {.lex_state = 55, .external_lex_state = 14}, + [4391] = {.lex_state = 55, .external_lex_state = 14}, + [4392] = {.lex_state = 55, .external_lex_state = 14}, + [4393] = {.lex_state = 55, .external_lex_state = 14}, + [4394] = {.lex_state = 55, .external_lex_state = 14}, + [4395] = {.lex_state = 55, .external_lex_state = 14}, + [4396] = {.lex_state = 55, .external_lex_state = 14}, + [4397] = {.lex_state = 55, .external_lex_state = 14}, + [4398] = {.lex_state = 55, .external_lex_state = 14}, + [4399] = {.lex_state = 55, .external_lex_state = 14}, + [4400] = {.lex_state = 55, .external_lex_state = 14}, + [4401] = {.lex_state = 55, .external_lex_state = 14}, + [4402] = {.lex_state = 55, .external_lex_state = 14}, + [4403] = {.lex_state = 55, .external_lex_state = 14}, + [4404] = {.lex_state = 55, .external_lex_state = 14}, + [4405] = {.lex_state = 55, .external_lex_state = 14}, + [4406] = {.lex_state = 55, .external_lex_state = 14}, + [4407] = {.lex_state = 55, .external_lex_state = 14}, + [4408] = {.lex_state = 55, .external_lex_state = 14}, + [4409] = {.lex_state = 55, .external_lex_state = 14}, + [4410] = {.lex_state = 54, .external_lex_state = 14}, + [4411] = {.lex_state = 55, .external_lex_state = 14}, + [4412] = {.lex_state = 55, .external_lex_state = 14}, + [4413] = {.lex_state = 55, .external_lex_state = 14}, + [4414] = {.lex_state = 55, .external_lex_state = 14}, + [4415] = {.lex_state = 55, .external_lex_state = 14}, + [4416] = {.lex_state = 55, .external_lex_state = 14}, + [4417] = {.lex_state = 55, .external_lex_state = 14}, + [4418] = {.lex_state = 55, .external_lex_state = 14}, + [4419] = {.lex_state = 55, .external_lex_state = 14}, + [4420] = {.lex_state = 55, .external_lex_state = 14}, + [4421] = {.lex_state = 55, .external_lex_state = 14}, + [4422] = {.lex_state = 55, .external_lex_state = 14}, + [4423] = {.lex_state = 55, .external_lex_state = 14}, + [4424] = {.lex_state = 55, .external_lex_state = 14}, + [4425] = {.lex_state = 55, .external_lex_state = 14}, + [4426] = {.lex_state = 55, .external_lex_state = 14}, + [4427] = {.lex_state = 55, .external_lex_state = 14}, + [4428] = {.lex_state = 55, .external_lex_state = 14}, + [4429] = {.lex_state = 55, .external_lex_state = 14}, + [4430] = {.lex_state = 55, .external_lex_state = 14}, + [4431] = {.lex_state = 55, .external_lex_state = 14}, + [4432] = {.lex_state = 55, .external_lex_state = 14}, + [4433] = {.lex_state = 55, .external_lex_state = 14}, + [4434] = {.lex_state = 55, .external_lex_state = 14}, + [4435] = {.lex_state = 55, .external_lex_state = 14}, + [4436] = {.lex_state = 55, .external_lex_state = 14}, + [4437] = {.lex_state = 55, .external_lex_state = 14}, + [4438] = {.lex_state = 55, .external_lex_state = 14}, + [4439] = {.lex_state = 55, .external_lex_state = 14}, + [4440] = {.lex_state = 55, .external_lex_state = 14}, + [4441] = {.lex_state = 55, .external_lex_state = 14}, + [4442] = {.lex_state = 55, .external_lex_state = 14}, + [4443] = {.lex_state = 55, .external_lex_state = 14}, + [4444] = {.lex_state = 55, .external_lex_state = 14}, + [4445] = {.lex_state = 55, .external_lex_state = 14}, + [4446] = {.lex_state = 55, .external_lex_state = 14}, + [4447] = {.lex_state = 55, .external_lex_state = 14}, + [4448] = {.lex_state = 55, .external_lex_state = 14}, + [4449] = {.lex_state = 55, .external_lex_state = 14}, + [4450] = {.lex_state = 55, .external_lex_state = 14}, + [4451] = {.lex_state = 55, .external_lex_state = 14}, + [4452] = {.lex_state = 55, .external_lex_state = 14}, + [4453] = {.lex_state = 55, .external_lex_state = 14}, + [4454] = {.lex_state = 55, .external_lex_state = 14}, + [4455] = {.lex_state = 55, .external_lex_state = 14}, + [4456] = {.lex_state = 55, .external_lex_state = 14}, + [4457] = {.lex_state = 55, .external_lex_state = 14}, + [4458] = {.lex_state = 55, .external_lex_state = 14}, + [4459] = {.lex_state = 55, .external_lex_state = 14}, + [4460] = {.lex_state = 55, .external_lex_state = 14}, + [4461] = {.lex_state = 55, .external_lex_state = 14}, + [4462] = {.lex_state = 55, .external_lex_state = 14}, + [4463] = {.lex_state = 55, .external_lex_state = 14}, + [4464] = {.lex_state = 55, .external_lex_state = 14}, + [4465] = {.lex_state = 55, .external_lex_state = 14}, + [4466] = {.lex_state = 55, .external_lex_state = 14}, + [4467] = {.lex_state = 55, .external_lex_state = 14}, + [4468] = {.lex_state = 55, .external_lex_state = 14}, + [4469] = {.lex_state = 55, .external_lex_state = 14}, + [4470] = {.lex_state = 55, .external_lex_state = 14}, + [4471] = {.lex_state = 55, .external_lex_state = 14}, + [4472] = {.lex_state = 55, .external_lex_state = 14}, + [4473] = {.lex_state = 55, .external_lex_state = 14}, + [4474] = {.lex_state = 55, .external_lex_state = 14}, + [4475] = {.lex_state = 55, .external_lex_state = 14}, + [4476] = {.lex_state = 55, .external_lex_state = 14}, + [4477] = {.lex_state = 55, .external_lex_state = 14}, + [4478] = {.lex_state = 55, .external_lex_state = 14}, + [4479] = {.lex_state = 55, .external_lex_state = 14}, + [4480] = {.lex_state = 55, .external_lex_state = 14}, + [4481] = {.lex_state = 55, .external_lex_state = 14}, + [4482] = {.lex_state = 55, .external_lex_state = 14}, + [4483] = {.lex_state = 55, .external_lex_state = 14}, + [4484] = {.lex_state = 75, .external_lex_state = 14}, + [4485] = {.lex_state = 55, .external_lex_state = 14}, + [4486] = {.lex_state = 55, .external_lex_state = 14}, + [4487] = {.lex_state = 55, .external_lex_state = 14}, + [4488] = {.lex_state = 54, .external_lex_state = 14}, + [4489] = {.lex_state = 55, .external_lex_state = 14}, + [4490] = {.lex_state = 55, .external_lex_state = 14}, + [4491] = {.lex_state = 55, .external_lex_state = 14}, + [4492] = {.lex_state = 55, .external_lex_state = 14}, + [4493] = {.lex_state = 55, .external_lex_state = 14}, + [4494] = {.lex_state = 55, .external_lex_state = 14}, + [4495] = {.lex_state = 55, .external_lex_state = 14}, + [4496] = {.lex_state = 55, .external_lex_state = 14}, + [4497] = {.lex_state = 55, .external_lex_state = 14}, + [4498] = {.lex_state = 55, .external_lex_state = 14}, + [4499] = {.lex_state = 55, .external_lex_state = 14}, + [4500] = {.lex_state = 55, .external_lex_state = 14}, + [4501] = {.lex_state = 55, .external_lex_state = 14}, + [4502] = {.lex_state = 55, .external_lex_state = 14}, + [4503] = {.lex_state = 55, .external_lex_state = 14}, + [4504] = {.lex_state = 55, .external_lex_state = 14}, + [4505] = {.lex_state = 55, .external_lex_state = 14}, + [4506] = {.lex_state = 55, .external_lex_state = 14}, + [4507] = {.lex_state = 55, .external_lex_state = 14}, + [4508] = {.lex_state = 55, .external_lex_state = 14}, + [4509] = {.lex_state = 55, .external_lex_state = 14}, + [4510] = {.lex_state = 55, .external_lex_state = 14}, + [4511] = {.lex_state = 55, .external_lex_state = 14}, + [4512] = {.lex_state = 55, .external_lex_state = 14}, + [4513] = {.lex_state = 55, .external_lex_state = 14}, + [4514] = {.lex_state = 55, .external_lex_state = 14}, + [4515] = {.lex_state = 55, .external_lex_state = 14}, + [4516] = {.lex_state = 55, .external_lex_state = 14}, + [4517] = {.lex_state = 55, .external_lex_state = 14}, + [4518] = {.lex_state = 55, .external_lex_state = 14}, + [4519] = {.lex_state = 55, .external_lex_state = 14}, + [4520] = {.lex_state = 55, .external_lex_state = 14}, + [4521] = {.lex_state = 55, .external_lex_state = 14}, + [4522] = {.lex_state = 55, .external_lex_state = 14}, + [4523] = {.lex_state = 55, .external_lex_state = 14}, + [4524] = {.lex_state = 55, .external_lex_state = 14}, + [4525] = {.lex_state = 55, .external_lex_state = 14}, + [4526] = {.lex_state = 55, .external_lex_state = 14}, + [4527] = {.lex_state = 55, .external_lex_state = 14}, + [4528] = {.lex_state = 55, .external_lex_state = 14}, + [4529] = {.lex_state = 55, .external_lex_state = 14}, + [4530] = {.lex_state = 55, .external_lex_state = 14}, + [4531] = {.lex_state = 55, .external_lex_state = 14}, + [4532] = {.lex_state = 55, .external_lex_state = 14}, + [4533] = {.lex_state = 55, .external_lex_state = 14}, + [4534] = {.lex_state = 55, .external_lex_state = 14}, + [4535] = {.lex_state = 55, .external_lex_state = 14}, + [4536] = {.lex_state = 55, .external_lex_state = 14}, + [4537] = {.lex_state = 55, .external_lex_state = 14}, + [4538] = {.lex_state = 55, .external_lex_state = 14}, + [4539] = {.lex_state = 55, .external_lex_state = 14}, + [4540] = {.lex_state = 55, .external_lex_state = 14}, + [4541] = {.lex_state = 55, .external_lex_state = 14}, + [4542] = {.lex_state = 55, .external_lex_state = 14}, + [4543] = {.lex_state = 55, .external_lex_state = 14}, + [4544] = {.lex_state = 55, .external_lex_state = 14}, + [4545] = {.lex_state = 55, .external_lex_state = 14}, + [4546] = {.lex_state = 55, .external_lex_state = 14}, + [4547] = {.lex_state = 55, .external_lex_state = 14}, + [4548] = {.lex_state = 55, .external_lex_state = 14}, + [4549] = {.lex_state = 55, .external_lex_state = 14}, + [4550] = {.lex_state = 55, .external_lex_state = 14}, + [4551] = {.lex_state = 55, .external_lex_state = 14}, + [4552] = {.lex_state = 55, .external_lex_state = 14}, + [4553] = {.lex_state = 55, .external_lex_state = 14}, + [4554] = {.lex_state = 55, .external_lex_state = 14}, + [4555] = {.lex_state = 55, .external_lex_state = 14}, + [4556] = {.lex_state = 55, .external_lex_state = 14}, + [4557] = {.lex_state = 55, .external_lex_state = 14}, + [4558] = {.lex_state = 55, .external_lex_state = 14}, + [4559] = {.lex_state = 55, .external_lex_state = 14}, + [4560] = {.lex_state = 55, .external_lex_state = 14}, + [4561] = {.lex_state = 55, .external_lex_state = 14}, + [4562] = {.lex_state = 55, .external_lex_state = 14}, + [4563] = {.lex_state = 55, .external_lex_state = 14}, + [4564] = {.lex_state = 55, .external_lex_state = 14}, + [4565] = {.lex_state = 55, .external_lex_state = 14}, + [4566] = {.lex_state = 55, .external_lex_state = 14}, + [4567] = {.lex_state = 55, .external_lex_state = 14}, + [4568] = {.lex_state = 55, .external_lex_state = 14}, + [4569] = {.lex_state = 55, .external_lex_state = 14}, + [4570] = {.lex_state = 55, .external_lex_state = 14}, + [4571] = {.lex_state = 55, .external_lex_state = 14}, + [4572] = {.lex_state = 55, .external_lex_state = 14}, + [4573] = {.lex_state = 55, .external_lex_state = 14}, + [4574] = {.lex_state = 55, .external_lex_state = 14}, + [4575] = {.lex_state = 55, .external_lex_state = 14}, + [4576] = {.lex_state = 55, .external_lex_state = 14}, + [4577] = {.lex_state = 55, .external_lex_state = 14}, + [4578] = {.lex_state = 55, .external_lex_state = 14}, + [4579] = {.lex_state = 55, .external_lex_state = 14}, + [4580] = {.lex_state = 55, .external_lex_state = 14}, + [4581] = {.lex_state = 55, .external_lex_state = 14}, + [4582] = {.lex_state = 55, .external_lex_state = 14}, + [4583] = {.lex_state = 55, .external_lex_state = 14}, + [4584] = {.lex_state = 55, .external_lex_state = 14}, + [4585] = {.lex_state = 55, .external_lex_state = 14}, + [4586] = {.lex_state = 55, .external_lex_state = 14}, + [4587] = {.lex_state = 55, .external_lex_state = 14}, + [4588] = {.lex_state = 55, .external_lex_state = 14}, + [4589] = {.lex_state = 55, .external_lex_state = 14}, + [4590] = {.lex_state = 55, .external_lex_state = 14}, + [4591] = {.lex_state = 55, .external_lex_state = 14}, + [4592] = {.lex_state = 55, .external_lex_state = 14}, + [4593] = {.lex_state = 55, .external_lex_state = 14}, + [4594] = {.lex_state = 55, .external_lex_state = 14}, + [4595] = {.lex_state = 55, .external_lex_state = 14}, + [4596] = {.lex_state = 55, .external_lex_state = 14}, + [4597] = {.lex_state = 55, .external_lex_state = 14}, + [4598] = {.lex_state = 55, .external_lex_state = 14}, + [4599] = {.lex_state = 55, .external_lex_state = 14}, + [4600] = {.lex_state = 55, .external_lex_state = 14}, + [4601] = {.lex_state = 55, .external_lex_state = 14}, + [4602] = {.lex_state = 55, .external_lex_state = 14}, + [4603] = {.lex_state = 55, .external_lex_state = 14}, + [4604] = {.lex_state = 55, .external_lex_state = 14}, + [4605] = {.lex_state = 55, .external_lex_state = 14}, + [4606] = {.lex_state = 55, .external_lex_state = 14}, + [4607] = {.lex_state = 55, .external_lex_state = 14}, + [4608] = {.lex_state = 55, .external_lex_state = 14}, + [4609] = {.lex_state = 55, .external_lex_state = 14}, + [4610] = {.lex_state = 54, .external_lex_state = 14}, + [4611] = {.lex_state = 55, .external_lex_state = 14}, + [4612] = {.lex_state = 55, .external_lex_state = 14}, + [4613] = {.lex_state = 55, .external_lex_state = 14}, + [4614] = {.lex_state = 55, .external_lex_state = 14}, + [4615] = {.lex_state = 55, .external_lex_state = 14}, + [4616] = {.lex_state = 55, .external_lex_state = 14}, + [4617] = {.lex_state = 55, .external_lex_state = 14}, + [4618] = {.lex_state = 55, .external_lex_state = 14}, + [4619] = {.lex_state = 55, .external_lex_state = 14}, + [4620] = {.lex_state = 55, .external_lex_state = 14}, + [4621] = {.lex_state = 55, .external_lex_state = 14}, + [4622] = {.lex_state = 55, .external_lex_state = 14}, + [4623] = {.lex_state = 55, .external_lex_state = 14}, + [4624] = {.lex_state = 55, .external_lex_state = 14}, + [4625] = {.lex_state = 55, .external_lex_state = 14}, + [4626] = {.lex_state = 55, .external_lex_state = 14}, + [4627] = {.lex_state = 55, .external_lex_state = 14}, + [4628] = {.lex_state = 55, .external_lex_state = 14}, + [4629] = {.lex_state = 55, .external_lex_state = 14}, + [4630] = {.lex_state = 55, .external_lex_state = 14}, + [4631] = {.lex_state = 55, .external_lex_state = 14}, + [4632] = {.lex_state = 55, .external_lex_state = 14}, + [4633] = {.lex_state = 55, .external_lex_state = 14}, + [4634] = {.lex_state = 55, .external_lex_state = 14}, + [4635] = {.lex_state = 55, .external_lex_state = 14}, + [4636] = {.lex_state = 55, .external_lex_state = 14}, + [4637] = {.lex_state = 55, .external_lex_state = 14}, + [4638] = {.lex_state = 55, .external_lex_state = 14}, + [4639] = {.lex_state = 55, .external_lex_state = 14}, + [4640] = {.lex_state = 55, .external_lex_state = 14}, + [4641] = {.lex_state = 55, .external_lex_state = 14}, + [4642] = {.lex_state = 55, .external_lex_state = 14}, + [4643] = {.lex_state = 55, .external_lex_state = 14}, + [4644] = {.lex_state = 55, .external_lex_state = 14}, + [4645] = {.lex_state = 593, .external_lex_state = 14}, + [4646] = {.lex_state = 55, .external_lex_state = 14}, + [4647] = {.lex_state = 55, .external_lex_state = 14}, + [4648] = {.lex_state = 55, .external_lex_state = 14}, + [4649] = {.lex_state = 55, .external_lex_state = 14}, + [4650] = {.lex_state = 55, .external_lex_state = 14}, + [4651] = {.lex_state = 55, .external_lex_state = 14}, + [4652] = {.lex_state = 55, .external_lex_state = 14}, + [4653] = {.lex_state = 55, .external_lex_state = 14}, + [4654] = {.lex_state = 55, .external_lex_state = 14}, + [4655] = {.lex_state = 55, .external_lex_state = 14}, + [4656] = {.lex_state = 55, .external_lex_state = 14}, + [4657] = {.lex_state = 55, .external_lex_state = 14}, + [4658] = {.lex_state = 55, .external_lex_state = 14}, + [4659] = {.lex_state = 55, .external_lex_state = 14}, + [4660] = {.lex_state = 55, .external_lex_state = 14}, + [4661] = {.lex_state = 55, .external_lex_state = 14}, + [4662] = {.lex_state = 593, .external_lex_state = 14}, + [4663] = {.lex_state = 75, .external_lex_state = 14}, + [4664] = {.lex_state = 75, .external_lex_state = 14}, + [4665] = {.lex_state = 75, .external_lex_state = 14}, + [4666] = {.lex_state = 75, .external_lex_state = 14}, + [4667] = {.lex_state = 75, .external_lex_state = 14}, + [4668] = {.lex_state = 75, .external_lex_state = 14}, + [4669] = {.lex_state = 57, .external_lex_state = 25}, + [4670] = {.lex_state = 57, .external_lex_state = 25}, + [4671] = {.lex_state = 593, .external_lex_state = 54}, + [4672] = {.lex_state = 593, .external_lex_state = 54}, + [4673] = {.lex_state = 593, .external_lex_state = 14}, + [4674] = {.lex_state = 60, .external_lex_state = 55}, + [4675] = {.lex_state = 60, .external_lex_state = 55}, + [4676] = {.lex_state = 55, .external_lex_state = 14}, + [4677] = {.lex_state = 55, .external_lex_state = 14}, + [4678] = {.lex_state = 55, .external_lex_state = 14}, + [4679] = {.lex_state = 55, .external_lex_state = 14}, + [4680] = {.lex_state = 55, .external_lex_state = 14}, + [4681] = {.lex_state = 55, .external_lex_state = 14}, + [4682] = {.lex_state = 55, .external_lex_state = 14}, + [4683] = {.lex_state = 55, .external_lex_state = 14}, + [4684] = {.lex_state = 55, .external_lex_state = 14}, + [4685] = {.lex_state = 55, .external_lex_state = 14}, + [4686] = {.lex_state = 55, .external_lex_state = 14}, + [4687] = {.lex_state = 55, .external_lex_state = 14}, + [4688] = {.lex_state = 55, .external_lex_state = 14}, + [4689] = {.lex_state = 55, .external_lex_state = 14}, + [4690] = {.lex_state = 55, .external_lex_state = 14}, + [4691] = {.lex_state = 55, .external_lex_state = 14}, + [4692] = {.lex_state = 55, .external_lex_state = 14}, + [4693] = {.lex_state = 55, .external_lex_state = 14}, + [4694] = {.lex_state = 55, .external_lex_state = 14}, + [4695] = {.lex_state = 55, .external_lex_state = 14}, + [4696] = {.lex_state = 55, .external_lex_state = 14}, + [4697] = {.lex_state = 55, .external_lex_state = 14}, + [4698] = {.lex_state = 55, .external_lex_state = 14}, + [4699] = {.lex_state = 55, .external_lex_state = 14}, + [4700] = {.lex_state = 55, .external_lex_state = 14}, + [4701] = {.lex_state = 55, .external_lex_state = 14}, + [4702] = {.lex_state = 55, .external_lex_state = 14}, + [4703] = {.lex_state = 55, .external_lex_state = 14}, + [4704] = {.lex_state = 55, .external_lex_state = 14}, + [4705] = {.lex_state = 55, .external_lex_state = 14}, + [4706] = {.lex_state = 55, .external_lex_state = 14}, + [4707] = {.lex_state = 55, .external_lex_state = 14}, + [4708] = {.lex_state = 55, .external_lex_state = 14}, + [4709] = {.lex_state = 55, .external_lex_state = 14}, + [4710] = {.lex_state = 593, .external_lex_state = 56}, + [4711] = {.lex_state = 55, .external_lex_state = 14}, + [4712] = {.lex_state = 593, .external_lex_state = 56}, + [4713] = {.lex_state = 55, .external_lex_state = 14}, + [4714] = {.lex_state = 55, .external_lex_state = 14}, + [4715] = {.lex_state = 55, .external_lex_state = 14}, + [4716] = {.lex_state = 55, .external_lex_state = 14}, + [4717] = {.lex_state = 55, .external_lex_state = 14}, + [4718] = {.lex_state = 55, .external_lex_state = 14}, + [4719] = {.lex_state = 55, .external_lex_state = 14}, + [4720] = {.lex_state = 55, .external_lex_state = 14}, + [4721] = {.lex_state = 55, .external_lex_state = 14}, + [4722] = {.lex_state = 55, .external_lex_state = 14}, + [4723] = {.lex_state = 55, .external_lex_state = 14}, + [4724] = {.lex_state = 55, .external_lex_state = 14}, + [4725] = {.lex_state = 55, .external_lex_state = 14}, + [4726] = {.lex_state = 55, .external_lex_state = 14}, + [4727] = {.lex_state = 55, .external_lex_state = 14}, + [4728] = {.lex_state = 55, .external_lex_state = 14}, + [4729] = {.lex_state = 55, .external_lex_state = 14}, + [4730] = {.lex_state = 55, .external_lex_state = 14}, + [4731] = {.lex_state = 55, .external_lex_state = 14}, + [4732] = {.lex_state = 55, .external_lex_state = 14}, + [4733] = {.lex_state = 55, .external_lex_state = 14}, + [4734] = {.lex_state = 55, .external_lex_state = 14}, + [4735] = {.lex_state = 593, .external_lex_state = 27}, + [4736] = {.lex_state = 55, .external_lex_state = 14}, + [4737] = {.lex_state = 55, .external_lex_state = 14}, + [4738] = {.lex_state = 55, .external_lex_state = 14}, + [4739] = {.lex_state = 55, .external_lex_state = 14}, + [4740] = {.lex_state = 55, .external_lex_state = 14}, + [4741] = {.lex_state = 75, .external_lex_state = 14}, + [4742] = {.lex_state = 593, .external_lex_state = 57}, + [4743] = {.lex_state = 75, .external_lex_state = 14}, + [4744] = {.lex_state = 58, .external_lex_state = 25}, + [4745] = {.lex_state = 45, .external_lex_state = 58}, + [4746] = {.lex_state = 58, .external_lex_state = 25}, + [4747] = {.lex_state = 593, .external_lex_state = 59}, + [4748] = {.lex_state = 593, .external_lex_state = 59}, + [4749] = {.lex_state = 75, .external_lex_state = 14}, + [4750] = {.lex_state = 75, .external_lex_state = 14}, + [4751] = {.lex_state = 59, .external_lex_state = 25}, + [4752] = {.lex_state = 59, .external_lex_state = 25}, + [4753] = {.lex_state = 59, .external_lex_state = 25}, + [4754] = {.lex_state = 75, .external_lex_state = 14}, + [4755] = {.lex_state = 593, .external_lex_state = 60}, + [4756] = {.lex_state = 75, .external_lex_state = 14}, + [4757] = {.lex_state = 593, .external_lex_state = 61}, + [4758] = {.lex_state = 59, .external_lex_state = 25}, + [4759] = {.lex_state = 75, .external_lex_state = 14}, + [4760] = {.lex_state = 593, .external_lex_state = 62}, + [4761] = {.lex_state = 60, .external_lex_state = 25}, + [4762] = {.lex_state = 49, .external_lex_state = 14}, + [4763] = {.lex_state = 49, .external_lex_state = 14}, + [4764] = {.lex_state = 49, .external_lex_state = 14}, + [4765] = {.lex_state = 593, .external_lex_state = 54}, + [4766] = {.lex_state = 49, .external_lex_state = 14}, + [4767] = {.lex_state = 49, .external_lex_state = 14}, + [4768] = {.lex_state = 60, .external_lex_state = 25}, + [4769] = {.lex_state = 593, .external_lex_state = 63}, + [4770] = {.lex_state = 49, .external_lex_state = 14}, + [4771] = {.lex_state = 593, .external_lex_state = 14}, + [4772] = {.lex_state = 60, .external_lex_state = 25}, + [4773] = {.lex_state = 49, .external_lex_state = 14}, + [4774] = {.lex_state = 49, .external_lex_state = 14}, + [4775] = {.lex_state = 49, .external_lex_state = 14}, + [4776] = {.lex_state = 60, .external_lex_state = 25}, + [4777] = {.lex_state = 49, .external_lex_state = 14}, + [4778] = {.lex_state = 593, .external_lex_state = 54}, + [4779] = {.lex_state = 49, .external_lex_state = 14}, + [4780] = {.lex_state = 49, .external_lex_state = 14}, + [4781] = {.lex_state = 49, .external_lex_state = 14}, + [4782] = {.lex_state = 49, .external_lex_state = 14}, + [4783] = {.lex_state = 49, .external_lex_state = 14}, + [4784] = {.lex_state = 60, .external_lex_state = 25}, + [4785] = {.lex_state = 60, .external_lex_state = 25}, + [4786] = {.lex_state = 60, .external_lex_state = 25}, + [4787] = {.lex_state = 49, .external_lex_state = 14}, + [4788] = {.lex_state = 49, .external_lex_state = 14}, + [4789] = {.lex_state = 49, .external_lex_state = 14}, + [4790] = {.lex_state = 49, .external_lex_state = 14}, + [4791] = {.lex_state = 593, .external_lex_state = 54}, + [4792] = {.lex_state = 49, .external_lex_state = 14}, + [4793] = {.lex_state = 49, .external_lex_state = 14}, + [4794] = {.lex_state = 49, .external_lex_state = 14}, + [4795] = {.lex_state = 49, .external_lex_state = 14}, + [4796] = {.lex_state = 60, .external_lex_state = 25}, + [4797] = {.lex_state = 49, .external_lex_state = 14}, + [4798] = {.lex_state = 593, .external_lex_state = 54}, + [4799] = {.lex_state = 49, .external_lex_state = 14}, + [4800] = {.lex_state = 60, .external_lex_state = 25}, + [4801] = {.lex_state = 49, .external_lex_state = 14}, + [4802] = {.lex_state = 49, .external_lex_state = 14}, + [4803] = {.lex_state = 49, .external_lex_state = 14}, + [4804] = {.lex_state = 593, .external_lex_state = 64}, + [4805] = {.lex_state = 49, .external_lex_state = 14}, + [4806] = {.lex_state = 60, .external_lex_state = 25}, + [4807] = {.lex_state = 49, .external_lex_state = 14}, + [4808] = {.lex_state = 60, .external_lex_state = 25}, + [4809] = {.lex_state = 49, .external_lex_state = 14}, + [4810] = {.lex_state = 60, .external_lex_state = 25}, + [4811] = {.lex_state = 60, .external_lex_state = 25}, + [4812] = {.lex_state = 60, .external_lex_state = 25}, + [4813] = {.lex_state = 60, .external_lex_state = 25}, + [4814] = {.lex_state = 49, .external_lex_state = 14}, + [4815] = {.lex_state = 49, .external_lex_state = 14}, + [4816] = {.lex_state = 49, .external_lex_state = 14}, + [4817] = {.lex_state = 49, .external_lex_state = 14}, + [4818] = {.lex_state = 593, .external_lex_state = 54}, + [4819] = {.lex_state = 49, .external_lex_state = 14}, + [4820] = {.lex_state = 60, .external_lex_state = 25}, + [4821] = {.lex_state = 60, .external_lex_state = 25}, + [4822] = {.lex_state = 593, .external_lex_state = 54}, + [4823] = {.lex_state = 60, .external_lex_state = 25}, + [4824] = {.lex_state = 49, .external_lex_state = 14}, + [4825] = {.lex_state = 49, .external_lex_state = 14}, + [4826] = {.lex_state = 49, .external_lex_state = 14}, + [4827] = {.lex_state = 60, .external_lex_state = 25}, + [4828] = {.lex_state = 49, .external_lex_state = 14}, + [4829] = {.lex_state = 60, .external_lex_state = 25}, + [4830] = {.lex_state = 49, .external_lex_state = 14}, + [4831] = {.lex_state = 49, .external_lex_state = 14}, + [4832] = {.lex_state = 60, .external_lex_state = 25}, + [4833] = {.lex_state = 49, .external_lex_state = 14}, + [4834] = {.lex_state = 49, .external_lex_state = 14}, + [4835] = {.lex_state = 75, .external_lex_state = 65}, + [4836] = {.lex_state = 75, .external_lex_state = 65}, + [4837] = {.lex_state = 593, .external_lex_state = 66}, + [4838] = {.lex_state = 593, .external_lex_state = 66}, + [4839] = {.lex_state = 593, .external_lex_state = 66}, + [4840] = {.lex_state = 67, .external_lex_state = 14}, + [4841] = {.lex_state = 45, .external_lex_state = 27}, + [4842] = {.lex_state = 67, .external_lex_state = 14}, + [4843] = {.lex_state = 593, .external_lex_state = 66}, + [4844] = {.lex_state = 49, .external_lex_state = 14}, + [4845] = {.lex_state = 593, .external_lex_state = 25}, + [4846] = {.lex_state = 67, .external_lex_state = 14}, + [4847] = {.lex_state = 593, .external_lex_state = 66}, + [4848] = {.lex_state = 593, .external_lex_state = 66}, + [4849] = {.lex_state = 45, .external_lex_state = 27}, + [4850] = {.lex_state = 67, .external_lex_state = 14}, + [4851] = {.lex_state = 67, .external_lex_state = 14}, + [4852] = {.lex_state = 75, .external_lex_state = 65}, + [4853] = {.lex_state = 593, .external_lex_state = 66}, + [4854] = {.lex_state = 75, .external_lex_state = 65}, + [4855] = {.lex_state = 45, .external_lex_state = 27}, + [4856] = {.lex_state = 45, .external_lex_state = 27}, + [4857] = {.lex_state = 593, .external_lex_state = 66}, + [4858] = {.lex_state = 75, .external_lex_state = 65}, + [4859] = {.lex_state = 67, .external_lex_state = 14}, + [4860] = {.lex_state = 72, .external_lex_state = 66}, + [4861] = {.lex_state = 593, .external_lex_state = 56}, + [4862] = {.lex_state = 61, .external_lex_state = 25}, + [4863] = {.lex_state = 61, .external_lex_state = 25}, + [4864] = {.lex_state = 593, .external_lex_state = 14}, + [4865] = {.lex_state = 593, .external_lex_state = 56}, + [4866] = {.lex_state = 72, .external_lex_state = 66}, + [4867] = {.lex_state = 593, .external_lex_state = 56}, + [4868] = {.lex_state = 61, .external_lex_state = 25}, + [4869] = {.lex_state = 593, .external_lex_state = 56}, + [4870] = {.lex_state = 61, .external_lex_state = 25}, + [4871] = {.lex_state = 61, .external_lex_state = 25}, + [4872] = {.lex_state = 72, .external_lex_state = 66}, + [4873] = {.lex_state = 593, .external_lex_state = 66}, + [4874] = {.lex_state = 61, .external_lex_state = 25}, + [4875] = {.lex_state = 72, .external_lex_state = 66}, + [4876] = {.lex_state = 61, .external_lex_state = 25}, + [4877] = {.lex_state = 593, .external_lex_state = 56}, + [4878] = {.lex_state = 72, .external_lex_state = 66}, + [4879] = {.lex_state = 593, .external_lex_state = 60}, + [4880] = {.lex_state = 72, .external_lex_state = 66}, + [4881] = {.lex_state = 61, .external_lex_state = 25}, + [4882] = {.lex_state = 45, .external_lex_state = 27}, + [4883] = {.lex_state = 61, .external_lex_state = 25}, + [4884] = {.lex_state = 61, .external_lex_state = 25}, + [4885] = {.lex_state = 61, .external_lex_state = 25}, + [4886] = {.lex_state = 593, .external_lex_state = 66}, + [4887] = {.lex_state = 49, .external_lex_state = 14}, + [4888] = {.lex_state = 72, .external_lex_state = 66}, + [4889] = {.lex_state = 61, .external_lex_state = 25}, + [4890] = {.lex_state = 72, .external_lex_state = 66}, + [4891] = {.lex_state = 593, .external_lex_state = 56}, + [4892] = {.lex_state = 593, .external_lex_state = 14}, + [4893] = {.lex_state = 61, .external_lex_state = 25}, + [4894] = {.lex_state = 61, .external_lex_state = 25}, + [4895] = {.lex_state = 49, .external_lex_state = 14}, + [4896] = {.lex_state = 61, .external_lex_state = 25}, + [4897] = {.lex_state = 61, .external_lex_state = 25}, + [4898] = {.lex_state = 61, .external_lex_state = 25}, + [4899] = {.lex_state = 72, .external_lex_state = 66}, + [4900] = {.lex_state = 593, .external_lex_state = 57}, + [4901] = {.lex_state = 72, .external_lex_state = 66}, + [4902] = {.lex_state = 593, .external_lex_state = 57}, + [4903] = {.lex_state = 61, .external_lex_state = 25}, + [4904] = {.lex_state = 593, .external_lex_state = 57}, + [4905] = {.lex_state = 61, .external_lex_state = 25}, + [4906] = {.lex_state = 45, .external_lex_state = 67}, + [4907] = {.lex_state = 45, .external_lex_state = 67}, + [4908] = {.lex_state = 45, .external_lex_state = 67}, + [4909] = {.lex_state = 61, .external_lex_state = 25}, + [4910] = {.lex_state = 56, .external_lex_state = 14}, + [4911] = {.lex_state = 61, .external_lex_state = 25}, + [4912] = {.lex_state = 71, .external_lex_state = 14}, + [4913] = {.lex_state = 61, .external_lex_state = 25}, + [4914] = {.lex_state = 61, .external_lex_state = 25}, + [4915] = {.lex_state = 593, .external_lex_state = 62}, + [4916] = {.lex_state = 593, .external_lex_state = 62}, + [4917] = {.lex_state = 61, .external_lex_state = 25}, + [4918] = {.lex_state = 61, .external_lex_state = 25}, + [4919] = {.lex_state = 45, .external_lex_state = 58}, + [4920] = {.lex_state = 61, .external_lex_state = 25}, + [4921] = {.lex_state = 61, .external_lex_state = 25}, + [4922] = {.lex_state = 45, .external_lex_state = 67}, + [4923] = {.lex_state = 61, .external_lex_state = 25}, + [4924] = {.lex_state = 61, .external_lex_state = 25}, + [4925] = {.lex_state = 61, .external_lex_state = 25}, + [4926] = {.lex_state = 61, .external_lex_state = 25}, + [4927] = {.lex_state = 61, .external_lex_state = 25}, + [4928] = {.lex_state = 61, .external_lex_state = 25}, + [4929] = {.lex_state = 593, .external_lex_state = 66}, + [4930] = {.lex_state = 593, .external_lex_state = 68}, + [4931] = {.lex_state = 61, .external_lex_state = 25}, + [4932] = {.lex_state = 61, .external_lex_state = 25}, + [4933] = {.lex_state = 593, .external_lex_state = 66}, + [4934] = {.lex_state = 593, .external_lex_state = 66}, + [4935] = {.lex_state = 61, .external_lex_state = 25}, + [4936] = {.lex_state = 61, .external_lex_state = 25}, + [4937] = {.lex_state = 593, .external_lex_state = 69}, + [4938] = {.lex_state = 61, .external_lex_state = 25}, + [4939] = {.lex_state = 593, .external_lex_state = 62}, + [4940] = {.lex_state = 593, .external_lex_state = 62}, + [4941] = {.lex_state = 61, .external_lex_state = 25}, + [4942] = {.lex_state = 593, .external_lex_state = 25}, + [4943] = {.lex_state = 61, .external_lex_state = 25}, + [4944] = {.lex_state = 593, .external_lex_state = 68}, + [4945] = {.lex_state = 61, .external_lex_state = 25}, + [4946] = {.lex_state = 593, .external_lex_state = 68}, + [4947] = {.lex_state = 56, .external_lex_state = 14}, + [4948] = {.lex_state = 593, .external_lex_state = 66}, + [4949] = {.lex_state = 61, .external_lex_state = 25}, + [4950] = {.lex_state = 61, .external_lex_state = 25}, + [4951] = {.lex_state = 45, .external_lex_state = 58}, + [4952] = {.lex_state = 61, .external_lex_state = 25}, + [4953] = {.lex_state = 593, .external_lex_state = 68}, + [4954] = {.lex_state = 593, .external_lex_state = 59}, + [4955] = {.lex_state = 593, .external_lex_state = 25}, + [4956] = {.lex_state = 593, .external_lex_state = 59}, + [4957] = {.lex_state = 593, .external_lex_state = 59}, + [4958] = {.lex_state = 61, .external_lex_state = 25}, + [4959] = {.lex_state = 61, .external_lex_state = 25}, + [4960] = {.lex_state = 593, .external_lex_state = 69}, + [4961] = {.lex_state = 45, .external_lex_state = 58}, + [4962] = {.lex_state = 593, .external_lex_state = 69}, + [4963] = {.lex_state = 593, .external_lex_state = 69}, + [4964] = {.lex_state = 61, .external_lex_state = 25}, + [4965] = {.lex_state = 71, .external_lex_state = 14}, + [4966] = {.lex_state = 61, .external_lex_state = 25}, + [4967] = {.lex_state = 61, .external_lex_state = 25}, + [4968] = {.lex_state = 61, .external_lex_state = 25}, + [4969] = {.lex_state = 72, .external_lex_state = 66}, + [4970] = {.lex_state = 72, .external_lex_state = 66}, + [4971] = {.lex_state = 593, .external_lex_state = 66}, + [4972] = {.lex_state = 593, .external_lex_state = 66}, + [4973] = {.lex_state = 593, .external_lex_state = 66}, + [4974] = {.lex_state = 593, .external_lex_state = 68}, + [4975] = {.lex_state = 593, .external_lex_state = 69}, + [4976] = {.lex_state = 593, .external_lex_state = 66}, + [4977] = {.lex_state = 593, .external_lex_state = 69}, + [4978] = {.lex_state = 593, .external_lex_state = 68}, + [4979] = {.lex_state = 593, .external_lex_state = 69}, + [4980] = {.lex_state = 61, .external_lex_state = 25}, + [4981] = {.lex_state = 61, .external_lex_state = 25}, + [4982] = {.lex_state = 61, .external_lex_state = 25}, + [4983] = {.lex_state = 61, .external_lex_state = 25}, + [4984] = {.lex_state = 61, .external_lex_state = 25}, + [4985] = {.lex_state = 593, .external_lex_state = 69}, + [4986] = {.lex_state = 593, .external_lex_state = 59}, + [4987] = {.lex_state = 593, .external_lex_state = 59}, + [4988] = {.lex_state = 593, .external_lex_state = 59}, + [4989] = {.lex_state = 72, .external_lex_state = 68}, + [4990] = {.lex_state = 72, .external_lex_state = 68}, + [4991] = {.lex_state = 72, .external_lex_state = 66}, + [4992] = {.lex_state = 75, .external_lex_state = 14}, + [4993] = {.lex_state = 72, .external_lex_state = 66}, + [4994] = {.lex_state = 72, .external_lex_state = 66}, + [4995] = {.lex_state = 593, .external_lex_state = 70}, + [4996] = {.lex_state = 593, .external_lex_state = 71}, + [4997] = {.lex_state = 45, .external_lex_state = 67}, + [4998] = {.lex_state = 593, .external_lex_state = 70}, + [4999] = {.lex_state = 49, .external_lex_state = 14}, + [5000] = {.lex_state = 593, .external_lex_state = 70}, + [5001] = {.lex_state = 593, .external_lex_state = 70}, + [5002] = {.lex_state = 593, .external_lex_state = 71}, + [5003] = {.lex_state = 49, .external_lex_state = 14}, + [5004] = {.lex_state = 70, .external_lex_state = 25}, + [5005] = {.lex_state = 593, .external_lex_state = 71}, + [5006] = {.lex_state = 593, .external_lex_state = 70}, + [5007] = {.lex_state = 593, .external_lex_state = 69}, + [5008] = {.lex_state = 593, .external_lex_state = 70}, + [5009] = {.lex_state = 593, .external_lex_state = 70}, + [5010] = {.lex_state = 593, .external_lex_state = 70}, + [5011] = {.lex_state = 72, .external_lex_state = 68}, + [5012] = {.lex_state = 593, .external_lex_state = 69}, + [5013] = {.lex_state = 46, .external_lex_state = 14}, + [5014] = {.lex_state = 52, .external_lex_state = 72}, + [5015] = {.lex_state = 46, .external_lex_state = 14}, + [5016] = {.lex_state = 46, .external_lex_state = 14}, + [5017] = {.lex_state = 52, .external_lex_state = 72}, + [5018] = {.lex_state = 45, .external_lex_state = 73}, + [5019] = {.lex_state = 72, .external_lex_state = 68}, + [5020] = {.lex_state = 62, .external_lex_state = 27}, + [5021] = {.lex_state = 72, .external_lex_state = 68}, + [5022] = {.lex_state = 593, .external_lex_state = 62}, + [5023] = {.lex_state = 49, .external_lex_state = 14}, + [5024] = {.lex_state = 45, .external_lex_state = 73}, + [5025] = {.lex_state = 593, .external_lex_state = 62}, + [5026] = {.lex_state = 593, .external_lex_state = 62}, + [5027] = {.lex_state = 46, .external_lex_state = 14}, + [5028] = {.lex_state = 593, .external_lex_state = 71}, + [5029] = {.lex_state = 593, .external_lex_state = 68}, + [5030] = {.lex_state = 593, .external_lex_state = 68}, + [5031] = {.lex_state = 72, .external_lex_state = 68}, + [5032] = {.lex_state = 45, .external_lex_state = 73}, + [5033] = {.lex_state = 45, .external_lex_state = 14}, + [5034] = {.lex_state = 72, .external_lex_state = 68}, + [5035] = {.lex_state = 52, .external_lex_state = 72}, + [5036] = {.lex_state = 49, .external_lex_state = 14}, + [5037] = {.lex_state = 72, .external_lex_state = 68}, + [5038] = {.lex_state = 72, .external_lex_state = 66}, + [5039] = {.lex_state = 593, .external_lex_state = 74}, + [5040] = {.lex_state = 593, .external_lex_state = 68}, + [5041] = {.lex_state = 593, .external_lex_state = 74}, + [5042] = {.lex_state = 49, .external_lex_state = 14}, + [5043] = {.lex_state = 49, .external_lex_state = 14}, + [5044] = {.lex_state = 46, .external_lex_state = 14}, + [5045] = {.lex_state = 46, .external_lex_state = 14}, + [5046] = {.lex_state = 72, .external_lex_state = 68}, + [5047] = {.lex_state = 72, .external_lex_state = 68}, + [5048] = {.lex_state = 52, .external_lex_state = 72}, + [5049] = {.lex_state = 49, .external_lex_state = 14}, + [5050] = {.lex_state = 593, .external_lex_state = 68}, + [5051] = {.lex_state = 46, .external_lex_state = 14}, + [5052] = {.lex_state = 72, .external_lex_state = 66}, + [5053] = {.lex_state = 593, .external_lex_state = 55}, + [5054] = {.lex_state = 72, .external_lex_state = 66}, + [5055] = {.lex_state = 49, .external_lex_state = 14}, + [5056] = {.lex_state = 45, .external_lex_state = 73}, + [5057] = {.lex_state = 70, .external_lex_state = 25}, + [5058] = {.lex_state = 46, .external_lex_state = 14}, + [5059] = {.lex_state = 52, .external_lex_state = 72}, + [5060] = {.lex_state = 72, .external_lex_state = 66}, + [5061] = {.lex_state = 72, .external_lex_state = 66}, + [5062] = {.lex_state = 46, .external_lex_state = 14}, + [5063] = {.lex_state = 46, .external_lex_state = 14}, + [5064] = {.lex_state = 593, .external_lex_state = 61}, + [5065] = {.lex_state = 70, .external_lex_state = 25}, + [5066] = {.lex_state = 70, .external_lex_state = 25}, + [5067] = {.lex_state = 593, .external_lex_state = 61}, + [5068] = {.lex_state = 62, .external_lex_state = 27}, + [5069] = {.lex_state = 593, .external_lex_state = 55}, + [5070] = {.lex_state = 49, .external_lex_state = 14}, + [5071] = {.lex_state = 70, .external_lex_state = 25}, + [5072] = {.lex_state = 45, .external_lex_state = 14}, + [5073] = {.lex_state = 593, .external_lex_state = 61}, + [5074] = {.lex_state = 46, .external_lex_state = 14}, + [5075] = {.lex_state = 49, .external_lex_state = 14}, + [5076] = {.lex_state = 593, .external_lex_state = 74}, + [5077] = {.lex_state = 45, .external_lex_state = 14}, + [5078] = {.lex_state = 49, .external_lex_state = 14}, + [5079] = {.lex_state = 70, .external_lex_state = 25}, + [5080] = {.lex_state = 593, .external_lex_state = 60}, + [5081] = {.lex_state = 49, .external_lex_state = 14}, + [5082] = {.lex_state = 46, .external_lex_state = 14}, + [5083] = {.lex_state = 593, .external_lex_state = 60}, + [5084] = {.lex_state = 46, .external_lex_state = 14}, + [5085] = {.lex_state = 593, .external_lex_state = 60}, + [5086] = {.lex_state = 593, .external_lex_state = 55}, + [5087] = {.lex_state = 593, .external_lex_state = 74}, + [5088] = {.lex_state = 52, .external_lex_state = 72}, + [5089] = {.lex_state = 593, .external_lex_state = 69}, + [5090] = {.lex_state = 72, .external_lex_state = 68}, + [5091] = {.lex_state = 593, .external_lex_state = 63}, + [5092] = {.lex_state = 593, .external_lex_state = 74}, + [5093] = {.lex_state = 48, .external_lex_state = 14}, + [5094] = {.lex_state = 48, .external_lex_state = 14}, + [5095] = {.lex_state = 593, .external_lex_state = 63}, + [5096] = {.lex_state = 48, .external_lex_state = 14}, + [5097] = {.lex_state = 593, .external_lex_state = 74}, + [5098] = {.lex_state = 593, .external_lex_state = 70}, + [5099] = {.lex_state = 593, .external_lex_state = 70}, + [5100] = {.lex_state = 593, .external_lex_state = 63}, + [5101] = {.lex_state = 593, .external_lex_state = 74}, + [5102] = {.lex_state = 48, .external_lex_state = 14}, + [5103] = {.lex_state = 593, .external_lex_state = 71}, + [5104] = {.lex_state = 55, .external_lex_state = 25}, + [5105] = {.lex_state = 72, .external_lex_state = 68}, + [5106] = {.lex_state = 55, .external_lex_state = 25}, + [5107] = {.lex_state = 56, .external_lex_state = 14}, + [5108] = {.lex_state = 593, .external_lex_state = 74}, + [5109] = {.lex_state = 48, .external_lex_state = 14}, + [5110] = {.lex_state = 48, .external_lex_state = 14}, + [5111] = {.lex_state = 593, .external_lex_state = 75}, + [5112] = {.lex_state = 45, .external_lex_state = 67}, + [5113] = {.lex_state = 593, .external_lex_state = 75}, + [5114] = {.lex_state = 45, .external_lex_state = 67}, + [5115] = {.lex_state = 48, .external_lex_state = 14}, + [5116] = {.lex_state = 73, .external_lex_state = 73}, + [5117] = {.lex_state = 593, .external_lex_state = 55}, + [5118] = {.lex_state = 593, .external_lex_state = 75}, + [5119] = {.lex_state = 593, .external_lex_state = 75}, + [5120] = {.lex_state = 45, .external_lex_state = 67}, + [5121] = {.lex_state = 593, .external_lex_state = 69}, + [5122] = {.lex_state = 593, .external_lex_state = 69}, + [5123] = {.lex_state = 593, .external_lex_state = 76}, + [5124] = {.lex_state = 48, .external_lex_state = 14}, + [5125] = {.lex_state = 593, .external_lex_state = 69}, + [5126] = {.lex_state = 45, .external_lex_state = 14}, + [5127] = {.lex_state = 72, .external_lex_state = 68}, + [5128] = {.lex_state = 593, .external_lex_state = 69}, + [5129] = {.lex_state = 72, .external_lex_state = 71}, + [5130] = {.lex_state = 72, .external_lex_state = 71}, + [5131] = {.lex_state = 72, .external_lex_state = 71}, + [5132] = {.lex_state = 593, .external_lex_state = 77}, + [5133] = {.lex_state = 593, .external_lex_state = 77}, + [5134] = {.lex_state = 45, .external_lex_state = 67}, + [5135] = {.lex_state = 593, .external_lex_state = 77}, + [5136] = {.lex_state = 72, .external_lex_state = 68}, + [5137] = {.lex_state = 48, .external_lex_state = 14}, + [5138] = {.lex_state = 72, .external_lex_state = 68}, + [5139] = {.lex_state = 593, .external_lex_state = 63}, + [5140] = {.lex_state = 45, .external_lex_state = 14}, + [5141] = {.lex_state = 75, .external_lex_state = 65}, + [5142] = {.lex_state = 593, .external_lex_state = 63}, + [5143] = {.lex_state = 45, .external_lex_state = 73}, + [5144] = {.lex_state = 75, .external_lex_state = 65}, + [5145] = {.lex_state = 72, .external_lex_state = 71}, + [5146] = {.lex_state = 593, .external_lex_state = 25}, + [5147] = {.lex_state = 45, .external_lex_state = 27}, + [5148] = {.lex_state = 593, .external_lex_state = 74}, + [5149] = {.lex_state = 593, .external_lex_state = 64}, + [5150] = {.lex_state = 45, .external_lex_state = 27}, + [5151] = {.lex_state = 72, .external_lex_state = 68}, + [5152] = {.lex_state = 55, .external_lex_state = 25}, + [5153] = {.lex_state = 593, .external_lex_state = 74}, + [5154] = {.lex_state = 593, .external_lex_state = 63}, + [5155] = {.lex_state = 593, .external_lex_state = 63}, + [5156] = {.lex_state = 593, .external_lex_state = 74}, + [5157] = {.lex_state = 62, .external_lex_state = 27}, + [5158] = {.lex_state = 56, .external_lex_state = 14}, + [5159] = {.lex_state = 56, .external_lex_state = 14}, + [5160] = {.lex_state = 593, .external_lex_state = 77}, + [5161] = {.lex_state = 593, .external_lex_state = 76}, + [5162] = {.lex_state = 593, .external_lex_state = 64}, + [5163] = {.lex_state = 45, .external_lex_state = 27}, + [5164] = {.lex_state = 593, .external_lex_state = 76}, + [5165] = {.lex_state = 593, .external_lex_state = 64}, + [5166] = {.lex_state = 593, .external_lex_state = 74}, + [5167] = {.lex_state = 73, .external_lex_state = 73}, + [5168] = {.lex_state = 593, .external_lex_state = 76}, + [5169] = {.lex_state = 73, .external_lex_state = 73}, + [5170] = {.lex_state = 48, .external_lex_state = 14}, + [5171] = {.lex_state = 73, .external_lex_state = 73}, + [5172] = {.lex_state = 72, .external_lex_state = 68}, + [5173] = {.lex_state = 72, .external_lex_state = 68}, + [5174] = {.lex_state = 48, .external_lex_state = 14}, + [5175] = {.lex_state = 72, .external_lex_state = 68}, + [5176] = {.lex_state = 48, .external_lex_state = 14}, + [5177] = {.lex_state = 593, .external_lex_state = 69}, + [5178] = {.lex_state = 72, .external_lex_state = 68}, + [5179] = {.lex_state = 593, .external_lex_state = 69}, + [5180] = {.lex_state = 593, .external_lex_state = 25}, + [5181] = {.lex_state = 593, .external_lex_state = 69}, + [5182] = {.lex_state = 72, .external_lex_state = 68}, + [5183] = {.lex_state = 55, .external_lex_state = 25}, + [5184] = {.lex_state = 72, .external_lex_state = 68}, + [5185] = {.lex_state = 72, .external_lex_state = 68}, + [5186] = {.lex_state = 48, .external_lex_state = 14}, + [5187] = {.lex_state = 72, .external_lex_state = 68}, + [5188] = {.lex_state = 72, .external_lex_state = 68}, + [5189] = {.lex_state = 593, .external_lex_state = 55}, + [5190] = {.lex_state = 72, .external_lex_state = 68}, + [5191] = {.lex_state = 72, .external_lex_state = 68}, + [5192] = {.lex_state = 72, .external_lex_state = 68}, + [5193] = {.lex_state = 45, .external_lex_state = 14}, + [5194] = {.lex_state = 72, .external_lex_state = 68}, + [5195] = {.lex_state = 593, .external_lex_state = 14}, + [5196] = {.lex_state = 72, .external_lex_state = 68}, + [5197] = {.lex_state = 72, .external_lex_state = 68}, + [5198] = {.lex_state = 72, .external_lex_state = 68}, + [5199] = {.lex_state = 593, .external_lex_state = 14}, + [5200] = {.lex_state = 55, .external_lex_state = 14}, + [5201] = {.lex_state = 593, .external_lex_state = 78}, + [5202] = {.lex_state = 593, .external_lex_state = 78}, + [5203] = {.lex_state = 72, .external_lex_state = 68}, + [5204] = {.lex_state = 72, .external_lex_state = 68}, + [5205] = {.lex_state = 593, .external_lex_state = 78}, + [5206] = {.lex_state = 72, .external_lex_state = 68}, + [5207] = {.lex_state = 72, .external_lex_state = 68}, + [5208] = {.lex_state = 52, .external_lex_state = 14}, + [5209] = {.lex_state = 72, .external_lex_state = 68}, + [5210] = {.lex_state = 45, .external_lex_state = 14}, + [5211] = {.lex_state = 593, .external_lex_state = 79}, + [5212] = {.lex_state = 49, .external_lex_state = 14}, + [5213] = {.lex_state = 72, .external_lex_state = 68}, + [5214] = {.lex_state = 593, .external_lex_state = 79}, + [5215] = {.lex_state = 55, .external_lex_state = 25}, + [5216] = {.lex_state = 72, .external_lex_state = 68}, + [5217] = {.lex_state = 45, .external_lex_state = 73}, + [5218] = {.lex_state = 593, .external_lex_state = 74}, + [5219] = {.lex_state = 45, .external_lex_state = 80}, + [5220] = {.lex_state = 593, .external_lex_state = 76}, + [5221] = {.lex_state = 72, .external_lex_state = 68}, + [5222] = {.lex_state = 72, .external_lex_state = 68}, + [5223] = {.lex_state = 72, .external_lex_state = 68}, + [5224] = {.lex_state = 72, .external_lex_state = 68}, + [5225] = {.lex_state = 72, .external_lex_state = 68}, + [5226] = {.lex_state = 72, .external_lex_state = 68}, + [5227] = {.lex_state = 593, .external_lex_state = 71}, + [5228] = {.lex_state = 45, .external_lex_state = 73}, + [5229] = {.lex_state = 72, .external_lex_state = 68}, + [5230] = {.lex_state = 55, .external_lex_state = 14}, + [5231] = {.lex_state = 72, .external_lex_state = 68}, + [5232] = {.lex_state = 593, .external_lex_state = 14}, + [5233] = {.lex_state = 593, .external_lex_state = 81}, + [5234] = {.lex_state = 593, .external_lex_state = 81}, + [5235] = {.lex_state = 593, .external_lex_state = 71}, + [5236] = {.lex_state = 593, .external_lex_state = 74}, + [5237] = {.lex_state = 45, .external_lex_state = 73}, + [5238] = {.lex_state = 593, .external_lex_state = 81}, + [5239] = {.lex_state = 593, .external_lex_state = 71}, + [5240] = {.lex_state = 593, .external_lex_state = 71}, + [5241] = {.lex_state = 593, .external_lex_state = 79}, + [5242] = {.lex_state = 72, .external_lex_state = 68}, + [5243] = {.lex_state = 72, .external_lex_state = 68}, + [5244] = {.lex_state = 45, .external_lex_state = 27}, + [5245] = {.lex_state = 45, .external_lex_state = 27}, + [5246] = {.lex_state = 72, .external_lex_state = 68}, + [5247] = {.lex_state = 72, .external_lex_state = 68}, + [5248] = {.lex_state = 593, .external_lex_state = 79}, + [5249] = {.lex_state = 72, .external_lex_state = 68}, + [5250] = {.lex_state = 72, .external_lex_state = 68}, + [5251] = {.lex_state = 593, .external_lex_state = 74}, + [5252] = {.lex_state = 72, .external_lex_state = 68}, + [5253] = {.lex_state = 49, .external_lex_state = 14}, + [5254] = {.lex_state = 593, .external_lex_state = 74}, + [5255] = {.lex_state = 72, .external_lex_state = 68}, + [5256] = {.lex_state = 68, .external_lex_state = 14}, + [5257] = {.lex_state = 593, .external_lex_state = 74}, + [5258] = {.lex_state = 72, .external_lex_state = 68}, + [5259] = {.lex_state = 593, .external_lex_state = 74}, + [5260] = {.lex_state = 45, .external_lex_state = 27}, + [5261] = {.lex_state = 593, .external_lex_state = 74}, + [5262] = {.lex_state = 49, .external_lex_state = 14}, + [5263] = {.lex_state = 49, .external_lex_state = 14}, + [5264] = {.lex_state = 72, .external_lex_state = 68}, + [5265] = {.lex_state = 45, .external_lex_state = 27}, + [5266] = {.lex_state = 72, .external_lex_state = 68}, + [5267] = {.lex_state = 593, .external_lex_state = 74}, + [5268] = {.lex_state = 593, .external_lex_state = 74}, + [5269] = {.lex_state = 72, .external_lex_state = 68}, + [5270] = {.lex_state = 72, .external_lex_state = 68}, + [5271] = {.lex_state = 72, .external_lex_state = 68}, + [5272] = {.lex_state = 72, .external_lex_state = 68}, + [5273] = {.lex_state = 72, .external_lex_state = 68}, + [5274] = {.lex_state = 45, .external_lex_state = 14}, + [5275] = {.lex_state = 72, .external_lex_state = 68}, + [5276] = {.lex_state = 593, .external_lex_state = 55}, + [5277] = {.lex_state = 45, .external_lex_state = 73}, + [5278] = {.lex_state = 45, .external_lex_state = 27}, + [5279] = {.lex_state = 593, .external_lex_state = 74}, + [5280] = {.lex_state = 72, .external_lex_state = 68}, + [5281] = {.lex_state = 72, .external_lex_state = 68}, + [5282] = {.lex_state = 72, .external_lex_state = 68}, + [5283] = {.lex_state = 593, .external_lex_state = 74}, + [5284] = {.lex_state = 73, .external_lex_state = 73}, + [5285] = {.lex_state = 72, .external_lex_state = 68}, + [5286] = {.lex_state = 72, .external_lex_state = 68}, + [5287] = {.lex_state = 72, .external_lex_state = 68}, + [5288] = {.lex_state = 72, .external_lex_state = 68}, + [5289] = {.lex_state = 72, .external_lex_state = 68}, + [5290] = {.lex_state = 72, .external_lex_state = 68}, + [5291] = {.lex_state = 593, .external_lex_state = 70}, + [5292] = {.lex_state = 72, .external_lex_state = 68}, + [5293] = {.lex_state = 593, .external_lex_state = 70}, + [5294] = {.lex_state = 593, .external_lex_state = 70}, + [5295] = {.lex_state = 593, .external_lex_state = 70}, + [5296] = {.lex_state = 72, .external_lex_state = 68}, + [5297] = {.lex_state = 593, .external_lex_state = 74}, + [5298] = {.lex_state = 593, .external_lex_state = 30}, + [5299] = {.lex_state = 45, .external_lex_state = 27}, + [5300] = {.lex_state = 49, .external_lex_state = 14}, + [5301] = {.lex_state = 72, .external_lex_state = 68}, + [5302] = {.lex_state = 72, .external_lex_state = 68}, + [5303] = {.lex_state = 593, .external_lex_state = 81}, + [5304] = {.lex_state = 45, .external_lex_state = 80}, + [5305] = {.lex_state = 45, .external_lex_state = 27}, + [5306] = {.lex_state = 72, .external_lex_state = 68}, + [5307] = {.lex_state = 45, .external_lex_state = 80}, + [5308] = {.lex_state = 593, .external_lex_state = 81}, + [5309] = {.lex_state = 72, .external_lex_state = 68}, + [5310] = {.lex_state = 68, .external_lex_state = 14}, + [5311] = {.lex_state = 593, .external_lex_state = 30}, + [5312] = {.lex_state = 593, .external_lex_state = 81}, + [5313] = {.lex_state = 49, .external_lex_state = 14}, + [5314] = {.lex_state = 72, .external_lex_state = 68}, + [5315] = {.lex_state = 72, .external_lex_state = 68}, + [5316] = {.lex_state = 72, .external_lex_state = 68}, + [5317] = {.lex_state = 593, .external_lex_state = 82}, + [5318] = {.lex_state = 72, .external_lex_state = 68}, + [5319] = {.lex_state = 593, .external_lex_state = 82}, + [5320] = {.lex_state = 49, .external_lex_state = 14}, + [5321] = {.lex_state = 72, .external_lex_state = 68}, + [5322] = {.lex_state = 72, .external_lex_state = 68}, + [5323] = {.lex_state = 593, .external_lex_state = 82}, + [5324] = {.lex_state = 72, .external_lex_state = 68}, + [5325] = {.lex_state = 72, .external_lex_state = 71}, + [5326] = {.lex_state = 45, .external_lex_state = 14}, + [5327] = {.lex_state = 593, .external_lex_state = 14}, + [5328] = {.lex_state = 593, .external_lex_state = 14}, + [5329] = {.lex_state = 593, .external_lex_state = 70}, + [5330] = {.lex_state = 593, .external_lex_state = 74}, + [5331] = {.lex_state = 72, .external_lex_state = 71}, + [5332] = {.lex_state = 45, .external_lex_state = 14}, + [5333] = {.lex_state = 593, .external_lex_state = 78}, + [5334] = {.lex_state = 593, .external_lex_state = 70}, + [5335] = {.lex_state = 593, .external_lex_state = 74}, + [5336] = {.lex_state = 593, .external_lex_state = 70}, + [5337] = {.lex_state = 593, .external_lex_state = 70}, + [5338] = {.lex_state = 72, .external_lex_state = 68}, + [5339] = {.lex_state = 72, .external_lex_state = 68}, + [5340] = {.lex_state = 72, .external_lex_state = 68}, + [5341] = {.lex_state = 72, .external_lex_state = 68}, + [5342] = {.lex_state = 593, .external_lex_state = 55}, + [5343] = {.lex_state = 75, .external_lex_state = 14}, + [5344] = {.lex_state = 593, .external_lex_state = 55}, + [5345] = {.lex_state = 75, .external_lex_state = 14}, + [5346] = {.lex_state = 593, .external_lex_state = 55}, + [5347] = {.lex_state = 593, .external_lex_state = 77}, + [5348] = {.lex_state = 72, .external_lex_state = 68}, + [5349] = {.lex_state = 593, .external_lex_state = 74}, + [5350] = {.lex_state = 73, .external_lex_state = 73}, + [5351] = {.lex_state = 593, .external_lex_state = 75}, + [5352] = {.lex_state = 593, .external_lex_state = 74}, + [5353] = {.lex_state = 72, .external_lex_state = 68}, + [5354] = {.lex_state = 72, .external_lex_state = 68}, + [5355] = {.lex_state = 72, .external_lex_state = 68}, + [5356] = {.lex_state = 72, .external_lex_state = 68}, + [5357] = {.lex_state = 593, .external_lex_state = 74}, + [5358] = {.lex_state = 68, .external_lex_state = 14}, + [5359] = {.lex_state = 52, .external_lex_state = 14}, + [5360] = {.lex_state = 72, .external_lex_state = 68}, + [5361] = {.lex_state = 72, .external_lex_state = 68}, + [5362] = {.lex_state = 593, .external_lex_state = 74}, + [5363] = {.lex_state = 72, .external_lex_state = 68}, + [5364] = {.lex_state = 72, .external_lex_state = 73}, + [5365] = {.lex_state = 49, .external_lex_state = 14}, + [5366] = {.lex_state = 72, .external_lex_state = 73}, + [5367] = {.lex_state = 73, .external_lex_state = 73}, + [5368] = {.lex_state = 593, .external_lex_state = 74}, + [5369] = {.lex_state = 593, .external_lex_state = 74}, + [5370] = {.lex_state = 52, .external_lex_state = 25}, + [5371] = {.lex_state = 49, .external_lex_state = 14}, + [5372] = {.lex_state = 75, .external_lex_state = 14}, + [5373] = {.lex_state = 52, .external_lex_state = 25}, + [5374] = {.lex_state = 52, .external_lex_state = 25}, + [5375] = {.lex_state = 75, .external_lex_state = 14}, + [5376] = {.lex_state = 75, .external_lex_state = 14}, + [5377] = {.lex_state = 593, .external_lex_state = 83}, + [5378] = {.lex_state = 593, .external_lex_state = 83}, + [5379] = {.lex_state = 72, .external_lex_state = 73}, + [5380] = {.lex_state = 593, .external_lex_state = 83}, + [5381] = {.lex_state = 593, .external_lex_state = 68}, + [5382] = {.lex_state = 73, .external_lex_state = 73}, + [5383] = {.lex_state = 72, .external_lex_state = 73}, + [5384] = {.lex_state = 73, .external_lex_state = 73}, + [5385] = {.lex_state = 593, .external_lex_state = 74}, + [5386] = {.lex_state = 73, .external_lex_state = 80}, + [5387] = {.lex_state = 73, .external_lex_state = 73}, + [5388] = {.lex_state = 593, .external_lex_state = 74}, + [5389] = {.lex_state = 73, .external_lex_state = 73}, + [5390] = {.lex_state = 593, .external_lex_state = 74}, + [5391] = {.lex_state = 72, .external_lex_state = 82}, + [5392] = {.lex_state = 75, .external_lex_state = 14}, + [5393] = {.lex_state = 593, .external_lex_state = 76}, + [5394] = {.lex_state = 593, .external_lex_state = 68}, + [5395] = {.lex_state = 72, .external_lex_state = 82}, + [5396] = {.lex_state = 72, .external_lex_state = 82}, + [5397] = {.lex_state = 593, .external_lex_state = 76}, + [5398] = {.lex_state = 45, .external_lex_state = 27}, + [5399] = {.lex_state = 72, .external_lex_state = 82}, + [5400] = {.lex_state = 72, .external_lex_state = 82}, + [5401] = {.lex_state = 593, .external_lex_state = 76}, + [5402] = {.lex_state = 593, .external_lex_state = 76}, + [5403] = {.lex_state = 73, .external_lex_state = 80}, + [5404] = {.lex_state = 49, .external_lex_state = 14}, + [5405] = {.lex_state = 73, .external_lex_state = 80}, + [5406] = {.lex_state = 49, .external_lex_state = 14}, + [5407] = {.lex_state = 593, .external_lex_state = 84}, + [5408] = {.lex_state = 593, .external_lex_state = 82}, + [5409] = {.lex_state = 593, .external_lex_state = 84}, + [5410] = {.lex_state = 72, .external_lex_state = 71}, + [5411] = {.lex_state = 593, .external_lex_state = 84}, + [5412] = {.lex_state = 593, .external_lex_state = 82}, + [5413] = {.lex_state = 49, .external_lex_state = 14}, + [5414] = {.lex_state = 49, .external_lex_state = 14}, + [5415] = {.lex_state = 49, .external_lex_state = 14}, + [5416] = {.lex_state = 45, .external_lex_state = 27}, + [5417] = {.lex_state = 49, .external_lex_state = 14}, + [5418] = {.lex_state = 593, .external_lex_state = 14}, + [5419] = {.lex_state = 75, .external_lex_state = 14}, + [5420] = {.lex_state = 49, .external_lex_state = 14}, + [5421] = {.lex_state = 45, .external_lex_state = 27}, + [5422] = {.lex_state = 73, .external_lex_state = 73}, + [5423] = {.lex_state = 49, .external_lex_state = 14}, + [5424] = {.lex_state = 72, .external_lex_state = 78}, + [5425] = {.lex_state = 73, .external_lex_state = 80}, + [5426] = {.lex_state = 73, .external_lex_state = 80}, + [5427] = {.lex_state = 72, .external_lex_state = 73}, + [5428] = {.lex_state = 72, .external_lex_state = 73}, + [5429] = {.lex_state = 72, .external_lex_state = 73}, + [5430] = {.lex_state = 72, .external_lex_state = 73}, + [5431] = {.lex_state = 75, .external_lex_state = 14}, + [5432] = {.lex_state = 49, .external_lex_state = 14}, + [5433] = {.lex_state = 45, .external_lex_state = 27}, + [5434] = {.lex_state = 49, .external_lex_state = 25}, + [5435] = {.lex_state = 593, .external_lex_state = 81}, + [5436] = {.lex_state = 73, .external_lex_state = 73}, + [5437] = {.lex_state = 49, .external_lex_state = 14}, + [5438] = {.lex_state = 593, .external_lex_state = 60}, + [5439] = {.lex_state = 593, .external_lex_state = 81}, + [5440] = {.lex_state = 593, .external_lex_state = 81}, + [5441] = {.lex_state = 45, .external_lex_state = 27}, + [5442] = {.lex_state = 45, .external_lex_state = 80}, + [5443] = {.lex_state = 593, .external_lex_state = 60}, + [5444] = {.lex_state = 593, .external_lex_state = 81}, + [5445] = {.lex_state = 593, .external_lex_state = 81}, + [5446] = {.lex_state = 593, .external_lex_state = 60}, + [5447] = {.lex_state = 45, .external_lex_state = 27}, + [5448] = {.lex_state = 45, .external_lex_state = 27}, + [5449] = {.lex_state = 593, .external_lex_state = 81}, + [5450] = {.lex_state = 593, .external_lex_state = 77}, + [5451] = {.lex_state = 593, .external_lex_state = 81}, + [5452] = {.lex_state = 72, .external_lex_state = 73}, + [5453] = {.lex_state = 593, .external_lex_state = 77}, + [5454] = {.lex_state = 593, .external_lex_state = 74}, + [5455] = {.lex_state = 45, .external_lex_state = 80}, + [5456] = {.lex_state = 45, .external_lex_state = 27}, + [5457] = {.lex_state = 49, .external_lex_state = 14}, + [5458] = {.lex_state = 75, .external_lex_state = 14}, + [5459] = {.lex_state = 593, .external_lex_state = 74}, + [5460] = {.lex_state = 52, .external_lex_state = 25}, + [5461] = {.lex_state = 49, .external_lex_state = 14}, + [5462] = {.lex_state = 593, .external_lex_state = 74}, + [5463] = {.lex_state = 593, .external_lex_state = 77}, + [5464] = {.lex_state = 49, .external_lex_state = 14}, + [5465] = {.lex_state = 593, .external_lex_state = 74}, + [5466] = {.lex_state = 593, .external_lex_state = 77}, + [5467] = {.lex_state = 593, .external_lex_state = 74}, + [5468] = {.lex_state = 49, .external_lex_state = 25}, + [5469] = {.lex_state = 55, .external_lex_state = 25}, + [5470] = {.lex_state = 55, .external_lex_state = 25}, + [5471] = {.lex_state = 72, .external_lex_state = 73}, + [5472] = {.lex_state = 593, .external_lex_state = 74}, + [5473] = {.lex_state = 72, .external_lex_state = 73}, + [5474] = {.lex_state = 49, .external_lex_state = 14}, + [5475] = {.lex_state = 55, .external_lex_state = 25}, + [5476] = {.lex_state = 72, .external_lex_state = 73}, + [5477] = {.lex_state = 72, .external_lex_state = 71}, + [5478] = {.lex_state = 49, .external_lex_state = 14}, + [5479] = {.lex_state = 55, .external_lex_state = 25}, + [5480] = {.lex_state = 49, .external_lex_state = 25}, + [5481] = {.lex_state = 72, .external_lex_state = 78}, + [5482] = {.lex_state = 593, .external_lex_state = 74}, + [5483] = {.lex_state = 72, .external_lex_state = 71}, + [5484] = {.lex_state = 49, .external_lex_state = 14}, + [5485] = {.lex_state = 49, .external_lex_state = 25}, + [5486] = {.lex_state = 593, .external_lex_state = 14}, + [5487] = {.lex_state = 593, .external_lex_state = 85}, + [5488] = {.lex_state = 73, .external_lex_state = 73}, + [5489] = {.lex_state = 72, .external_lex_state = 71}, + [5490] = {.lex_state = 73, .external_lex_state = 73}, + [5491] = {.lex_state = 72, .external_lex_state = 71}, + [5492] = {.lex_state = 72, .external_lex_state = 78}, + [5493] = {.lex_state = 72, .external_lex_state = 78}, + [5494] = {.lex_state = 593, .external_lex_state = 85}, + [5495] = {.lex_state = 593, .external_lex_state = 85}, + [5496] = {.lex_state = 72, .external_lex_state = 73}, + [5497] = {.lex_state = 72, .external_lex_state = 73}, + [5498] = {.lex_state = 73, .external_lex_state = 73}, + [5499] = {.lex_state = 49, .external_lex_state = 14}, + [5500] = {.lex_state = 49, .external_lex_state = 14}, + [5501] = {.lex_state = 72, .external_lex_state = 73}, + [5502] = {.lex_state = 593, .external_lex_state = 81}, + [5503] = {.lex_state = 72, .external_lex_state = 73}, + [5504] = {.lex_state = 593, .external_lex_state = 81}, + [5505] = {.lex_state = 49, .external_lex_state = 14}, + [5506] = {.lex_state = 593, .external_lex_state = 81}, + [5507] = {.lex_state = 593, .external_lex_state = 81}, + [5508] = {.lex_state = 593, .external_lex_state = 81}, + [5509] = {.lex_state = 72, .external_lex_state = 73}, + [5510] = {.lex_state = 593, .external_lex_state = 75}, + [5511] = {.lex_state = 593, .external_lex_state = 75}, + [5512] = {.lex_state = 593, .external_lex_state = 81}, + [5513] = {.lex_state = 593, .external_lex_state = 75}, + [5514] = {.lex_state = 72, .external_lex_state = 73}, + [5515] = {.lex_state = 72, .external_lex_state = 73}, + [5516] = {.lex_state = 593, .external_lex_state = 78}, + [5517] = {.lex_state = 72, .external_lex_state = 73}, + [5518] = {.lex_state = 75, .external_lex_state = 14}, + [5519] = {.lex_state = 72, .external_lex_state = 73}, + [5520] = {.lex_state = 593, .external_lex_state = 81}, + [5521] = {.lex_state = 593, .external_lex_state = 14}, + [5522] = {.lex_state = 593, .external_lex_state = 75}, + [5523] = {.lex_state = 593, .external_lex_state = 25}, + [5524] = {.lex_state = 49, .external_lex_state = 14}, + [5525] = {.lex_state = 593, .external_lex_state = 81}, + [5526] = {.lex_state = 73, .external_lex_state = 80}, + [5527] = {.lex_state = 593, .external_lex_state = 83}, + [5528] = {.lex_state = 75, .external_lex_state = 14}, + [5529] = {.lex_state = 593, .external_lex_state = 78}, + [5530] = {.lex_state = 593, .external_lex_state = 78}, + [5531] = {.lex_state = 593, .external_lex_state = 83}, + [5532] = {.lex_state = 593, .external_lex_state = 83}, + [5533] = {.lex_state = 593, .external_lex_state = 81}, + [5534] = {.lex_state = 55, .external_lex_state = 14}, + [5535] = {.lex_state = 593, .external_lex_state = 83}, + [5536] = {.lex_state = 593, .external_lex_state = 83}, + [5537] = {.lex_state = 593, .external_lex_state = 78}, + [5538] = {.lex_state = 593, .external_lex_state = 81}, + [5539] = {.lex_state = 49, .external_lex_state = 14}, + [5540] = {.lex_state = 593, .external_lex_state = 83}, + [5541] = {.lex_state = 593, .external_lex_state = 86}, + [5542] = {.lex_state = 593, .external_lex_state = 68}, + [5543] = {.lex_state = 593, .external_lex_state = 86}, + [5544] = {.lex_state = 73, .external_lex_state = 80}, + [5545] = {.lex_state = 593, .external_lex_state = 62}, + [5546] = {.lex_state = 593, .external_lex_state = 86}, + [5547] = {.lex_state = 593, .external_lex_state = 78}, + [5548] = {.lex_state = 55, .external_lex_state = 14}, + [5549] = {.lex_state = 72, .external_lex_state = 73}, + [5550] = {.lex_state = 72, .external_lex_state = 78}, + [5551] = {.lex_state = 593, .external_lex_state = 68}, + [5552] = {.lex_state = 593, .external_lex_state = 68}, + [5553] = {.lex_state = 593, .external_lex_state = 68}, + [5554] = {.lex_state = 55, .external_lex_state = 14}, + [5555] = {.lex_state = 593, .external_lex_state = 68}, + [5556] = {.lex_state = 593, .external_lex_state = 81}, + [5557] = {.lex_state = 49, .external_lex_state = 14}, + [5558] = {.lex_state = 72, .external_lex_state = 82}, + [5559] = {.lex_state = 593, .external_lex_state = 68}, + [5560] = {.lex_state = 593, .external_lex_state = 68}, + [5561] = {.lex_state = 61, .external_lex_state = 25}, + [5562] = {.lex_state = 49, .external_lex_state = 14}, + [5563] = {.lex_state = 72, .external_lex_state = 82}, + [5564] = {.lex_state = 72, .external_lex_state = 82}, + [5565] = {.lex_state = 49, .external_lex_state = 14}, + [5566] = {.lex_state = 49, .external_lex_state = 14}, + [5567] = {.lex_state = 72, .external_lex_state = 82}, + [5568] = {.lex_state = 593, .external_lex_state = 68}, + [5569] = {.lex_state = 72, .external_lex_state = 82}, + [5570] = {.lex_state = 593, .external_lex_state = 68}, + [5571] = {.lex_state = 73, .external_lex_state = 80}, + [5572] = {.lex_state = 45, .external_lex_state = 25}, + [5573] = {.lex_state = 45, .external_lex_state = 25}, + [5574] = {.lex_state = 593, .external_lex_state = 84}, + [5575] = {.lex_state = 45, .external_lex_state = 25}, + [5576] = {.lex_state = 49, .external_lex_state = 14}, + [5577] = {.lex_state = 593, .external_lex_state = 84}, + [5578] = {.lex_state = 72, .external_lex_state = 71}, + [5579] = {.lex_state = 593, .external_lex_state = 84}, + [5580] = {.lex_state = 593, .external_lex_state = 84}, + [5581] = {.lex_state = 52, .external_lex_state = 25}, + [5582] = {.lex_state = 593, .external_lex_state = 81}, + [5583] = {.lex_state = 593, .external_lex_state = 84}, + [5584] = {.lex_state = 593, .external_lex_state = 81}, + [5585] = {.lex_state = 593, .external_lex_state = 81}, + [5586] = {.lex_state = 55, .external_lex_state = 14}, + [5587] = {.lex_state = 593, .external_lex_state = 81}, + [5588] = {.lex_state = 593, .external_lex_state = 68}, + [5589] = {.lex_state = 593, .external_lex_state = 68}, + [5590] = {.lex_state = 72, .external_lex_state = 78}, + [5591] = {.lex_state = 593, .external_lex_state = 76}, + [5592] = {.lex_state = 593, .external_lex_state = 81}, + [5593] = {.lex_state = 593, .external_lex_state = 68}, + [5594] = {.lex_state = 593, .external_lex_state = 68}, + [5595] = {.lex_state = 593, .external_lex_state = 62}, + [5596] = {.lex_state = 593, .external_lex_state = 87}, + [5597] = {.lex_state = 593, .external_lex_state = 76}, + [5598] = {.lex_state = 72, .external_lex_state = 78}, + [5599] = {.lex_state = 593, .external_lex_state = 76}, + [5600] = {.lex_state = 49, .external_lex_state = 14}, + [5601] = {.lex_state = 593, .external_lex_state = 87}, + [5602] = {.lex_state = 593, .external_lex_state = 83}, + [5603] = {.lex_state = 593, .external_lex_state = 87}, + [5604] = {.lex_state = 593, .external_lex_state = 88}, + [5605] = {.lex_state = 593, .external_lex_state = 84}, + [5606] = {.lex_state = 593, .external_lex_state = 88}, + [5607] = {.lex_state = 49, .external_lex_state = 14}, + [5608] = {.lex_state = 73, .external_lex_state = 80}, + [5609] = {.lex_state = 73, .external_lex_state = 80}, + [5610] = {.lex_state = 593, .external_lex_state = 81}, + [5611] = {.lex_state = 593, .external_lex_state = 84}, + [5612] = {.lex_state = 73, .external_lex_state = 80}, + [5613] = {.lex_state = 49, .external_lex_state = 14}, + [5614] = {.lex_state = 593, .external_lex_state = 76}, + [5615] = {.lex_state = 75, .external_lex_state = 14}, + [5616] = {.lex_state = 593, .external_lex_state = 81}, + [5617] = {.lex_state = 593, .external_lex_state = 81}, + [5618] = {.lex_state = 45, .external_lex_state = 25}, + [5619] = {.lex_state = 593, .external_lex_state = 81}, + [5620] = {.lex_state = 593, .external_lex_state = 68}, + [5621] = {.lex_state = 593, .external_lex_state = 68}, + [5622] = {.lex_state = 72, .external_lex_state = 82}, + [5623] = {.lex_state = 593, .external_lex_state = 81}, + [5624] = {.lex_state = 593, .external_lex_state = 81}, + [5625] = {.lex_state = 49, .external_lex_state = 14}, + [5626] = {.lex_state = 593, .external_lex_state = 81}, + [5627] = {.lex_state = 593, .external_lex_state = 68}, + [5628] = {.lex_state = 593, .external_lex_state = 81}, + [5629] = {.lex_state = 593, .external_lex_state = 68}, + [5630] = {.lex_state = 49, .external_lex_state = 14}, + [5631] = {.lex_state = 593, .external_lex_state = 68}, + [5632] = {.lex_state = 593, .external_lex_state = 27}, + [5633] = {.lex_state = 49, .external_lex_state = 14}, + [5634] = {.lex_state = 72, .external_lex_state = 82}, + [5635] = {.lex_state = 593, .external_lex_state = 68}, + [5636] = {.lex_state = 593, .external_lex_state = 81}, + [5637] = {.lex_state = 69, .external_lex_state = 14}, + [5638] = {.lex_state = 73, .external_lex_state = 80}, + [5639] = {.lex_state = 593, .external_lex_state = 68}, + [5640] = {.lex_state = 593, .external_lex_state = 68}, + [5641] = {.lex_state = 593, .external_lex_state = 68}, + [5642] = {.lex_state = 75, .external_lex_state = 14}, + [5643] = {.lex_state = 55, .external_lex_state = 14}, + [5644] = {.lex_state = 593, .external_lex_state = 85}, + [5645] = {.lex_state = 72, .external_lex_state = 78}, + [5646] = {.lex_state = 72, .external_lex_state = 73}, + [5647] = {.lex_state = 593, .external_lex_state = 62}, + [5648] = {.lex_state = 593, .external_lex_state = 68}, + [5649] = {.lex_state = 49, .external_lex_state = 25}, + [5650] = {.lex_state = 593, .external_lex_state = 85}, + [5651] = {.lex_state = 593, .external_lex_state = 85}, + [5652] = {.lex_state = 593, .external_lex_state = 85}, + [5653] = {.lex_state = 593, .external_lex_state = 68}, + [5654] = {.lex_state = 593, .external_lex_state = 85}, + [5655] = {.lex_state = 593, .external_lex_state = 85}, + [5656] = {.lex_state = 593, .external_lex_state = 85}, + [5657] = {.lex_state = 55, .external_lex_state = 14}, + [5658] = {.lex_state = 593, .external_lex_state = 68}, + [5659] = {.lex_state = 593, .external_lex_state = 88}, + [5660] = {.lex_state = 593, .external_lex_state = 68}, + [5661] = {.lex_state = 593, .external_lex_state = 88}, + [5662] = {.lex_state = 593, .external_lex_state = 68}, + [5663] = {.lex_state = 593, .external_lex_state = 68}, + [5664] = {.lex_state = 593, .external_lex_state = 68}, + [5665] = {.lex_state = 593, .external_lex_state = 68}, + [5666] = {.lex_state = 593, .external_lex_state = 68}, + [5667] = {.lex_state = 593, .external_lex_state = 68}, + [5668] = {.lex_state = 593, .external_lex_state = 68}, + [5669] = {.lex_state = 593, .external_lex_state = 68}, + [5670] = {.lex_state = 72, .external_lex_state = 78}, + [5671] = {.lex_state = 49, .external_lex_state = 14}, + [5672] = {.lex_state = 49, .external_lex_state = 14}, + [5673] = {.lex_state = 73, .external_lex_state = 80}, + [5674] = {.lex_state = 49, .external_lex_state = 14}, + [5675] = {.lex_state = 49, .external_lex_state = 14}, + [5676] = {.lex_state = 593, .external_lex_state = 86}, + [5677] = {.lex_state = 49, .external_lex_state = 14}, + [5678] = {.lex_state = 593, .external_lex_state = 86}, + [5679] = {.lex_state = 593, .external_lex_state = 86}, + [5680] = {.lex_state = 593, .external_lex_state = 86}, + [5681] = {.lex_state = 73, .external_lex_state = 80}, + [5682] = {.lex_state = 49, .external_lex_state = 14}, + [5683] = {.lex_state = 73, .external_lex_state = 80}, + [5684] = {.lex_state = 73, .external_lex_state = 80}, + [5685] = {.lex_state = 73, .external_lex_state = 80}, + [5686] = {.lex_state = 593, .external_lex_state = 86}, + [5687] = {.lex_state = 593, .external_lex_state = 85}, + [5688] = {.lex_state = 49, .external_lex_state = 14}, + [5689] = {.lex_state = 73, .external_lex_state = 80}, + [5690] = {.lex_state = 593, .external_lex_state = 85}, + [5691] = {.lex_state = 593, .external_lex_state = 74}, + [5692] = {.lex_state = 593, .external_lex_state = 25}, + [5693] = {.lex_state = 73, .external_lex_state = 80}, + [5694] = {.lex_state = 49, .external_lex_state = 14}, + [5695] = {.lex_state = 593, .external_lex_state = 85}, + [5696] = {.lex_state = 73, .external_lex_state = 80}, + [5697] = {.lex_state = 593, .external_lex_state = 25}, + [5698] = {.lex_state = 49, .external_lex_state = 14}, + [5699] = {.lex_state = 45, .external_lex_state = 27}, + [5700] = {.lex_state = 593, .external_lex_state = 85}, + [5701] = {.lex_state = 73, .external_lex_state = 80}, + [5702] = {.lex_state = 49, .external_lex_state = 14}, + [5703] = {.lex_state = 49, .external_lex_state = 14}, + [5704] = {.lex_state = 72, .external_lex_state = 82}, + [5705] = {.lex_state = 593, .external_lex_state = 85}, + [5706] = {.lex_state = 593, .external_lex_state = 83}, + [5707] = {.lex_state = 49, .external_lex_state = 14}, + [5708] = {.lex_state = 49, .external_lex_state = 14}, + [5709] = {.lex_state = 593, .external_lex_state = 83}, + [5710] = {.lex_state = 49, .external_lex_state = 14}, + [5711] = {.lex_state = 73, .external_lex_state = 80}, + [5712] = {.lex_state = 49, .external_lex_state = 14}, + [5713] = {.lex_state = 593, .external_lex_state = 83}, + [5714] = {.lex_state = 593, .external_lex_state = 81}, + [5715] = {.lex_state = 593, .external_lex_state = 83}, + [5716] = {.lex_state = 49, .external_lex_state = 14}, + [5717] = {.lex_state = 73, .external_lex_state = 80}, + [5718] = {.lex_state = 72, .external_lex_state = 82}, + [5719] = {.lex_state = 593, .external_lex_state = 86}, + [5720] = {.lex_state = 49, .external_lex_state = 14}, + [5721] = {.lex_state = 75, .external_lex_state = 14}, + [5722] = {.lex_state = 45, .external_lex_state = 25}, + [5723] = {.lex_state = 49, .external_lex_state = 14}, + [5724] = {.lex_state = 49, .external_lex_state = 14}, + [5725] = {.lex_state = 593, .external_lex_state = 83}, + [5726] = {.lex_state = 73, .external_lex_state = 80}, + [5727] = {.lex_state = 593, .external_lex_state = 86}, + [5728] = {.lex_state = 49, .external_lex_state = 14}, + [5729] = {.lex_state = 593, .external_lex_state = 14}, + [5730] = {.lex_state = 73, .external_lex_state = 80}, + [5731] = {.lex_state = 73, .external_lex_state = 80}, + [5732] = {.lex_state = 49, .external_lex_state = 14}, + [5733] = {.lex_state = 593, .external_lex_state = 86}, + [5734] = {.lex_state = 52, .external_lex_state = 14}, + [5735] = {.lex_state = 73, .external_lex_state = 80}, + [5736] = {.lex_state = 49, .external_lex_state = 14}, + [5737] = {.lex_state = 593, .external_lex_state = 86}, + [5738] = {.lex_state = 593, .external_lex_state = 81}, + [5739] = {.lex_state = 593, .external_lex_state = 74}, + [5740] = {.lex_state = 593, .external_lex_state = 14}, + [5741] = {.lex_state = 593, .external_lex_state = 86}, + [5742] = {.lex_state = 49, .external_lex_state = 14}, + [5743] = {.lex_state = 593, .external_lex_state = 86}, + [5744] = {.lex_state = 72, .external_lex_state = 82}, + [5745] = {.lex_state = 52, .external_lex_state = 25}, + [5746] = {.lex_state = 593, .external_lex_state = 87}, + [5747] = {.lex_state = 73, .external_lex_state = 80}, + [5748] = {.lex_state = 73, .external_lex_state = 80}, + [5749] = {.lex_state = 75, .external_lex_state = 14}, + [5750] = {.lex_state = 52, .external_lex_state = 25}, + [5751] = {.lex_state = 593, .external_lex_state = 86}, + [5752] = {.lex_state = 73, .external_lex_state = 80}, + [5753] = {.lex_state = 75, .external_lex_state = 14}, + [5754] = {.lex_state = 49, .external_lex_state = 14}, + [5755] = {.lex_state = 49, .external_lex_state = 14}, + [5756] = {.lex_state = 75, .external_lex_state = 14}, + [5757] = {.lex_state = 52, .external_lex_state = 25}, + [5758] = {.lex_state = 72, .external_lex_state = 82}, + [5759] = {.lex_state = 49, .external_lex_state = 14}, + [5760] = {.lex_state = 593, .external_lex_state = 86}, + [5761] = {.lex_state = 593, .external_lex_state = 86}, + [5762] = {.lex_state = 593, .external_lex_state = 86}, + [5763] = {.lex_state = 593, .external_lex_state = 86}, + [5764] = {.lex_state = 73, .external_lex_state = 80}, + [5765] = {.lex_state = 45, .external_lex_state = 27}, + [5766] = {.lex_state = 593, .external_lex_state = 14}, + [5767] = {.lex_state = 49, .external_lex_state = 14}, + [5768] = {.lex_state = 73, .external_lex_state = 80}, + [5769] = {.lex_state = 593, .external_lex_state = 86}, + [5770] = {.lex_state = 72, .external_lex_state = 82}, + [5771] = {.lex_state = 75, .external_lex_state = 14}, + [5772] = {.lex_state = 72, .external_lex_state = 82}, + [5773] = {.lex_state = 72, .external_lex_state = 82}, + [5774] = {.lex_state = 73, .external_lex_state = 80}, + [5775] = {.lex_state = 49, .external_lex_state = 14}, + [5776] = {.lex_state = 73, .external_lex_state = 80}, + [5777] = {.lex_state = 593, .external_lex_state = 87}, + [5778] = {.lex_state = 52, .external_lex_state = 25}, + [5779] = {.lex_state = 73, .external_lex_state = 80}, + [5780] = {.lex_state = 49, .external_lex_state = 14}, + [5781] = {.lex_state = 49, .external_lex_state = 14}, + [5782] = {.lex_state = 593, .external_lex_state = 86}, + [5783] = {.lex_state = 593, .external_lex_state = 76}, + [5784] = {.lex_state = 73, .external_lex_state = 80}, + [5785] = {.lex_state = 75, .external_lex_state = 14}, + [5786] = {.lex_state = 593, .external_lex_state = 86}, + [5787] = {.lex_state = 593, .external_lex_state = 74}, + [5788] = {.lex_state = 73, .external_lex_state = 80}, + [5789] = {.lex_state = 49, .external_lex_state = 14}, + [5790] = {.lex_state = 49, .external_lex_state = 14}, + [5791] = {.lex_state = 49, .external_lex_state = 14}, + [5792] = {.lex_state = 593, .external_lex_state = 89}, + [5793] = {.lex_state = 593, .external_lex_state = 86}, + [5794] = {.lex_state = 593, .external_lex_state = 86}, + [5795] = {.lex_state = 49, .external_lex_state = 14}, + [5796] = {.lex_state = 593, .external_lex_state = 86}, + [5797] = {.lex_state = 593, .external_lex_state = 89}, + [5798] = {.lex_state = 49, .external_lex_state = 14}, + [5799] = {.lex_state = 49, .external_lex_state = 14}, + [5800] = {.lex_state = 73, .external_lex_state = 80}, + [5801] = {.lex_state = 73, .external_lex_state = 80}, + [5802] = {.lex_state = 72, .external_lex_state = 80}, + [5803] = {.lex_state = 593, .external_lex_state = 74}, + [5804] = {.lex_state = 73, .external_lex_state = 80}, + [5805] = {.lex_state = 593, .external_lex_state = 81}, + [5806] = {.lex_state = 49, .external_lex_state = 14}, + [5807] = {.lex_state = 593, .external_lex_state = 89}, + [5808] = {.lex_state = 49, .external_lex_state = 14}, + [5809] = {.lex_state = 73, .external_lex_state = 80}, + [5810] = {.lex_state = 593, .external_lex_state = 89}, + [5811] = {.lex_state = 73, .external_lex_state = 80}, + [5812] = {.lex_state = 593, .external_lex_state = 86}, + [5813] = {.lex_state = 49, .external_lex_state = 14}, + [5814] = {.lex_state = 73, .external_lex_state = 80}, + [5815] = {.lex_state = 593, .external_lex_state = 86}, + [5816] = {.lex_state = 49, .external_lex_state = 14}, + [5817] = {.lex_state = 75, .external_lex_state = 14}, + [5818] = {.lex_state = 593, .external_lex_state = 74}, + [5819] = {.lex_state = 75, .external_lex_state = 14}, + [5820] = {.lex_state = 49, .external_lex_state = 14}, + [5821] = {.lex_state = 72, .external_lex_state = 82}, + [5822] = {.lex_state = 73, .external_lex_state = 80}, + [5823] = {.lex_state = 593, .external_lex_state = 14}, + [5824] = {.lex_state = 72, .external_lex_state = 82}, + [5825] = {.lex_state = 72, .external_lex_state = 82}, + [5826] = {.lex_state = 72, .external_lex_state = 82}, + [5827] = {.lex_state = 75, .external_lex_state = 14}, + [5828] = {.lex_state = 49, .external_lex_state = 14}, + [5829] = {.lex_state = 593, .external_lex_state = 86}, + [5830] = {.lex_state = 75, .external_lex_state = 14}, + [5831] = {.lex_state = 49, .external_lex_state = 14}, + [5832] = {.lex_state = 73, .external_lex_state = 80}, + [5833] = {.lex_state = 593, .external_lex_state = 84}, + [5834] = {.lex_state = 49, .external_lex_state = 14}, + [5835] = {.lex_state = 73, .external_lex_state = 80}, + [5836] = {.lex_state = 593, .external_lex_state = 14}, + [5837] = {.lex_state = 49, .external_lex_state = 14}, + [5838] = {.lex_state = 593, .external_lex_state = 81}, + [5839] = {.lex_state = 49, .external_lex_state = 14}, + [5840] = {.lex_state = 593, .external_lex_state = 84}, + [5841] = {.lex_state = 593, .external_lex_state = 84}, + [5842] = {.lex_state = 73, .external_lex_state = 80}, + [5843] = {.lex_state = 49, .external_lex_state = 14}, + [5844] = {.lex_state = 593, .external_lex_state = 84}, + [5845] = {.lex_state = 593, .external_lex_state = 89}, + [5846] = {.lex_state = 72, .external_lex_state = 82}, + [5847] = {.lex_state = 72, .external_lex_state = 82}, + [5848] = {.lex_state = 73, .external_lex_state = 80}, + [5849] = {.lex_state = 73, .external_lex_state = 80}, + [5850] = {.lex_state = 593, .external_lex_state = 89}, + [5851] = {.lex_state = 593, .external_lex_state = 14}, + [5852] = {.lex_state = 49, .external_lex_state = 14}, + [5853] = {.lex_state = 49, .external_lex_state = 25}, + [5854] = {.lex_state = 593, .external_lex_state = 79}, + [5855] = {.lex_state = 49, .external_lex_state = 14}, + [5856] = {.lex_state = 73, .external_lex_state = 80}, + [5857] = {.lex_state = 73, .external_lex_state = 80}, + [5858] = {.lex_state = 49, .external_lex_state = 14}, + [5859] = {.lex_state = 49, .external_lex_state = 25}, + [5860] = {.lex_state = 73, .external_lex_state = 80}, + [5861] = {.lex_state = 593, .external_lex_state = 84}, + [5862] = {.lex_state = 72, .external_lex_state = 80}, + [5863] = {.lex_state = 72, .external_lex_state = 80}, + [5864] = {.lex_state = 73, .external_lex_state = 80}, + [5865] = {.lex_state = 49, .external_lex_state = 25}, + [5866] = {.lex_state = 72, .external_lex_state = 82}, + [5867] = {.lex_state = 73, .external_lex_state = 80}, + [5868] = {.lex_state = 72, .external_lex_state = 82}, + [5869] = {.lex_state = 72, .external_lex_state = 82}, + [5870] = {.lex_state = 49, .external_lex_state = 14}, + [5871] = {.lex_state = 52, .external_lex_state = 14}, + [5872] = {.lex_state = 73, .external_lex_state = 80}, + [5873] = {.lex_state = 45, .external_lex_state = 27}, + [5874] = {.lex_state = 72, .external_lex_state = 82}, + [5875] = {.lex_state = 72, .external_lex_state = 82}, + [5876] = {.lex_state = 73, .external_lex_state = 80}, + [5877] = {.lex_state = 72, .external_lex_state = 82}, + [5878] = {.lex_state = 72, .external_lex_state = 82}, + [5879] = {.lex_state = 72, .external_lex_state = 82}, + [5880] = {.lex_state = 73, .external_lex_state = 80}, + [5881] = {.lex_state = 593, .external_lex_state = 86}, + [5882] = {.lex_state = 72, .external_lex_state = 82}, + [5883] = {.lex_state = 72, .external_lex_state = 82}, + [5884] = {.lex_state = 72, .external_lex_state = 82}, + [5885] = {.lex_state = 72, .external_lex_state = 82}, + [5886] = {.lex_state = 72, .external_lex_state = 82}, + [5887] = {.lex_state = 72, .external_lex_state = 82}, + [5888] = {.lex_state = 49, .external_lex_state = 14}, + [5889] = {.lex_state = 72, .external_lex_state = 87}, + [5890] = {.lex_state = 72, .external_lex_state = 82}, + [5891] = {.lex_state = 72, .external_lex_state = 82}, + [5892] = {.lex_state = 72, .external_lex_state = 82}, + [5893] = {.lex_state = 72, .external_lex_state = 82}, + [5894] = {.lex_state = 72, .external_lex_state = 82}, + [5895] = {.lex_state = 72, .external_lex_state = 87}, + [5896] = {.lex_state = 72, .external_lex_state = 82}, + [5897] = {.lex_state = 72, .external_lex_state = 82}, + [5898] = {.lex_state = 72, .external_lex_state = 82}, + [5899] = {.lex_state = 49, .external_lex_state = 14}, + [5900] = {.lex_state = 72, .external_lex_state = 82}, + [5901] = {.lex_state = 72, .external_lex_state = 82}, + [5902] = {.lex_state = 72, .external_lex_state = 82}, + [5903] = {.lex_state = 49, .external_lex_state = 14}, + [5904] = {.lex_state = 72, .external_lex_state = 82}, + [5905] = {.lex_state = 72, .external_lex_state = 82}, + [5906] = {.lex_state = 593, .external_lex_state = 86}, + [5907] = {.lex_state = 49, .external_lex_state = 14}, + [5908] = {.lex_state = 72, .external_lex_state = 82}, + [5909] = {.lex_state = 593, .external_lex_state = 89}, + [5910] = {.lex_state = 72, .external_lex_state = 82}, + [5911] = {.lex_state = 73, .external_lex_state = 80}, + [5912] = {.lex_state = 593, .external_lex_state = 89}, + [5913] = {.lex_state = 72, .external_lex_state = 78}, + [5914] = {.lex_state = 49, .external_lex_state = 25}, + [5915] = {.lex_state = 72, .external_lex_state = 87}, + [5916] = {.lex_state = 72, .external_lex_state = 87}, + [5917] = {.lex_state = 73, .external_lex_state = 80}, + [5918] = {.lex_state = 49, .external_lex_state = 14}, + [5919] = {.lex_state = 73, .external_lex_state = 80}, + [5920] = {.lex_state = 49, .external_lex_state = 14}, + [5921] = {.lex_state = 49, .external_lex_state = 14}, + [5922] = {.lex_state = 72, .external_lex_state = 78}, + [5923] = {.lex_state = 73, .external_lex_state = 80}, + [5924] = {.lex_state = 45, .external_lex_state = 27}, + [5925] = {.lex_state = 593, .external_lex_state = 25}, + [5926] = {.lex_state = 593, .external_lex_state = 74}, + [5927] = {.lex_state = 593, .external_lex_state = 86}, + [5928] = {.lex_state = 49, .external_lex_state = 14}, + [5929] = {.lex_state = 72, .external_lex_state = 87}, + [5930] = {.lex_state = 72, .external_lex_state = 78}, + [5931] = {.lex_state = 593, .external_lex_state = 14}, + [5932] = {.lex_state = 49, .external_lex_state = 14}, + [5933] = {.lex_state = 593, .external_lex_state = 86}, + [5934] = {.lex_state = 72, .external_lex_state = 80}, + [5935] = {.lex_state = 72, .external_lex_state = 82}, + [5936] = {.lex_state = 49, .external_lex_state = 14}, + [5937] = {.lex_state = 45, .external_lex_state = 27}, + [5938] = {.lex_state = 46, .external_lex_state = 14}, + [5939] = {.lex_state = 49, .external_lex_state = 14}, + [5940] = {.lex_state = 73, .external_lex_state = 80}, + [5941] = {.lex_state = 72, .external_lex_state = 82}, + [5942] = {.lex_state = 593, .external_lex_state = 25}, + [5943] = {.lex_state = 593, .external_lex_state = 25}, + [5944] = {.lex_state = 72, .external_lex_state = 82}, + [5945] = {.lex_state = 45, .external_lex_state = 27}, + [5946] = {.lex_state = 72, .external_lex_state = 80}, + [5947] = {.lex_state = 72, .external_lex_state = 82}, + [5948] = {.lex_state = 49, .external_lex_state = 14}, + [5949] = {.lex_state = 49, .external_lex_state = 14}, + [5950] = {.lex_state = 72, .external_lex_state = 82}, + [5951] = {.lex_state = 72, .external_lex_state = 82}, + [5952] = {.lex_state = 73, .external_lex_state = 80}, + [5953] = {.lex_state = 593, .external_lex_state = 90}, + [5954] = {.lex_state = 49, .external_lex_state = 14}, + [5955] = {.lex_state = 593, .external_lex_state = 76}, + [5956] = {.lex_state = 72, .external_lex_state = 87}, + [5957] = {.lex_state = 72, .external_lex_state = 80}, + [5958] = {.lex_state = 593, .external_lex_state = 74}, + [5959] = {.lex_state = 73, .external_lex_state = 80}, + [5960] = {.lex_state = 72, .external_lex_state = 82}, + [5961] = {.lex_state = 73, .external_lex_state = 80}, + [5962] = {.lex_state = 593, .external_lex_state = 90}, + [5963] = {.lex_state = 49, .external_lex_state = 14}, + [5964] = {.lex_state = 72, .external_lex_state = 82}, + [5965] = {.lex_state = 593, .external_lex_state = 90}, + [5966] = {.lex_state = 72, .external_lex_state = 82}, + [5967] = {.lex_state = 49, .external_lex_state = 14}, + [5968] = {.lex_state = 72, .external_lex_state = 82}, + [5969] = {.lex_state = 73, .external_lex_state = 80}, + [5970] = {.lex_state = 593, .external_lex_state = 76}, + [5971] = {.lex_state = 73, .external_lex_state = 80}, + [5972] = {.lex_state = 593, .external_lex_state = 25}, + [5973] = {.lex_state = 593, .external_lex_state = 63}, + [5974] = {.lex_state = 49, .external_lex_state = 14}, + [5975] = {.lex_state = 72, .external_lex_state = 87}, + [5976] = {.lex_state = 72, .external_lex_state = 82}, + [5977] = {.lex_state = 73, .external_lex_state = 80}, + [5978] = {.lex_state = 49, .external_lex_state = 14}, + [5979] = {.lex_state = 72, .external_lex_state = 87}, + [5980] = {.lex_state = 73, .external_lex_state = 14}, + [5981] = {.lex_state = 593, .external_lex_state = 81}, + [5982] = {.lex_state = 49, .external_lex_state = 14}, + [5983] = {.lex_state = 73, .external_lex_state = 80}, + [5984] = {.lex_state = 45, .external_lex_state = 27}, + [5985] = {.lex_state = 73, .external_lex_state = 80}, + [5986] = {.lex_state = 45, .external_lex_state = 27}, + [5987] = {.lex_state = 73, .external_lex_state = 80}, + [5988] = {.lex_state = 72, .external_lex_state = 80}, + [5989] = {.lex_state = 46, .external_lex_state = 14}, + [5990] = {.lex_state = 45, .external_lex_state = 91}, + [5991] = {.lex_state = 72, .external_lex_state = 80}, + [5992] = {.lex_state = 45, .external_lex_state = 91}, + [5993] = {.lex_state = 73, .external_lex_state = 80}, + [5994] = {.lex_state = 72, .external_lex_state = 82}, + [5995] = {.lex_state = 593, .external_lex_state = 81}, + [5996] = {.lex_state = 72, .external_lex_state = 87}, + [5997] = {.lex_state = 73, .external_lex_state = 80}, + [5998] = {.lex_state = 73, .external_lex_state = 80}, + [5999] = {.lex_state = 73, .external_lex_state = 14}, + [6000] = {.lex_state = 72, .external_lex_state = 80}, + [6001] = {.lex_state = 72, .external_lex_state = 80}, + [6002] = {.lex_state = 593, .external_lex_state = 90}, + [6003] = {.lex_state = 72, .external_lex_state = 87}, + [6004] = {.lex_state = 72, .external_lex_state = 80}, + [6005] = {.lex_state = 49, .external_lex_state = 14}, + [6006] = {.lex_state = 72, .external_lex_state = 80}, + [6007] = {.lex_state = 49, .external_lex_state = 14}, + [6008] = {.lex_state = 72, .external_lex_state = 82}, + [6009] = {.lex_state = 72, .external_lex_state = 87}, + [6010] = {.lex_state = 72, .external_lex_state = 80}, + [6011] = {.lex_state = 593, .external_lex_state = 63}, + [6012] = {.lex_state = 72, .external_lex_state = 82}, + [6013] = {.lex_state = 73, .external_lex_state = 80}, + [6014] = {.lex_state = 73, .external_lex_state = 80}, + [6015] = {.lex_state = 49, .external_lex_state = 14}, + [6016] = {.lex_state = 593, .external_lex_state = 81}, + [6017] = {.lex_state = 49, .external_lex_state = 14}, + [6018] = {.lex_state = 72, .external_lex_state = 87}, + [6019] = {.lex_state = 73, .external_lex_state = 80}, + [6020] = {.lex_state = 593, .external_lex_state = 90}, + [6021] = {.lex_state = 73, .external_lex_state = 80}, + [6022] = {.lex_state = 49, .external_lex_state = 14}, + [6023] = {.lex_state = 73, .external_lex_state = 80}, + [6024] = {.lex_state = 72, .external_lex_state = 80}, + [6025] = {.lex_state = 72, .external_lex_state = 80}, + [6026] = {.lex_state = 72, .external_lex_state = 87}, + [6027] = {.lex_state = 72, .external_lex_state = 82}, + [6028] = {.lex_state = 72, .external_lex_state = 80}, + [6029] = {.lex_state = 72, .external_lex_state = 80}, + [6030] = {.lex_state = 49, .external_lex_state = 14}, + [6031] = {.lex_state = 72, .external_lex_state = 80}, + [6032] = {.lex_state = 72, .external_lex_state = 80}, + [6033] = {.lex_state = 72, .external_lex_state = 80}, + [6034] = {.lex_state = 72, .external_lex_state = 80}, + [6035] = {.lex_state = 72, .external_lex_state = 80}, + [6036] = {.lex_state = 49, .external_lex_state = 14}, + [6037] = {.lex_state = 593, .external_lex_state = 74}, + [6038] = {.lex_state = 72, .external_lex_state = 80}, + [6039] = {.lex_state = 49, .external_lex_state = 14}, + [6040] = {.lex_state = 72, .external_lex_state = 80}, + [6041] = {.lex_state = 72, .external_lex_state = 82}, + [6042] = {.lex_state = 72, .external_lex_state = 80}, + [6043] = {.lex_state = 593, .external_lex_state = 90}, + [6044] = {.lex_state = 72, .external_lex_state = 82}, + [6045] = {.lex_state = 73, .external_lex_state = 80}, + [6046] = {.lex_state = 72, .external_lex_state = 80}, + [6047] = {.lex_state = 72, .external_lex_state = 80}, + [6048] = {.lex_state = 72, .external_lex_state = 82}, + [6049] = {.lex_state = 72, .external_lex_state = 87}, + [6050] = {.lex_state = 49, .external_lex_state = 14}, + [6051] = {.lex_state = 49, .external_lex_state = 14}, + [6052] = {.lex_state = 72, .external_lex_state = 82}, + [6053] = {.lex_state = 73, .external_lex_state = 80}, + [6054] = {.lex_state = 72, .external_lex_state = 82}, + [6055] = {.lex_state = 49, .external_lex_state = 14}, + [6056] = {.lex_state = 593, .external_lex_state = 76}, + [6057] = {.lex_state = 49, .external_lex_state = 14}, + [6058] = {.lex_state = 45, .external_lex_state = 25}, + [6059] = {.lex_state = 45, .external_lex_state = 27}, + [6060] = {.lex_state = 49, .external_lex_state = 14}, + [6061] = {.lex_state = 72, .external_lex_state = 82}, + [6062] = {.lex_state = 593, .external_lex_state = 76}, + [6063] = {.lex_state = 73, .external_lex_state = 80}, + [6064] = {.lex_state = 45, .external_lex_state = 25}, + [6065] = {.lex_state = 73, .external_lex_state = 80}, + [6066] = {.lex_state = 72, .external_lex_state = 87}, + [6067] = {.lex_state = 593, .external_lex_state = 25}, + [6068] = {.lex_state = 72, .external_lex_state = 80}, + [6069] = {.lex_state = 593, .external_lex_state = 90}, + [6070] = {.lex_state = 72, .external_lex_state = 82}, + [6071] = {.lex_state = 73, .external_lex_state = 80}, + [6072] = {.lex_state = 73, .external_lex_state = 80}, + [6073] = {.lex_state = 72, .external_lex_state = 82}, + [6074] = {.lex_state = 72, .external_lex_state = 82}, + [6075] = {.lex_state = 49, .external_lex_state = 14}, + [6076] = {.lex_state = 593, .external_lex_state = 92}, + [6077] = {.lex_state = 45, .external_lex_state = 25}, + [6078] = {.lex_state = 593, .external_lex_state = 92}, + [6079] = {.lex_state = 593, .external_lex_state = 74}, + [6080] = {.lex_state = 72, .external_lex_state = 80}, + [6081] = {.lex_state = 45, .external_lex_state = 25}, + [6082] = {.lex_state = 72, .external_lex_state = 82}, + [6083] = {.lex_state = 73, .external_lex_state = 80}, + [6084] = {.lex_state = 72, .external_lex_state = 82}, + [6085] = {.lex_state = 593, .external_lex_state = 81}, + [6086] = {.lex_state = 73, .external_lex_state = 80}, + [6087] = {.lex_state = 73, .external_lex_state = 80}, + [6088] = {.lex_state = 73, .external_lex_state = 80}, + [6089] = {.lex_state = 49, .external_lex_state = 14}, + [6090] = {.lex_state = 73, .external_lex_state = 14}, + [6091] = {.lex_state = 73, .external_lex_state = 80}, + [6092] = {.lex_state = 49, .external_lex_state = 14}, + [6093] = {.lex_state = 72, .external_lex_state = 82}, + [6094] = {.lex_state = 73, .external_lex_state = 80}, + [6095] = {.lex_state = 73, .external_lex_state = 80}, + [6096] = {.lex_state = 593, .external_lex_state = 86}, + [6097] = {.lex_state = 49, .external_lex_state = 14}, + [6098] = {.lex_state = 49, .external_lex_state = 14}, + [6099] = {.lex_state = 73, .external_lex_state = 80}, + [6100] = {.lex_state = 593, .external_lex_state = 74}, + [6101] = {.lex_state = 73, .external_lex_state = 80}, + [6102] = {.lex_state = 72, .external_lex_state = 82}, + [6103] = {.lex_state = 49, .external_lex_state = 14}, + [6104] = {.lex_state = 593, .external_lex_state = 74}, + [6105] = {.lex_state = 72, .external_lex_state = 80}, + [6106] = {.lex_state = 49, .external_lex_state = 14}, + [6107] = {.lex_state = 72, .external_lex_state = 80}, + [6108] = {.lex_state = 46, .external_lex_state = 14}, + [6109] = {.lex_state = 72, .external_lex_state = 80}, + [6110] = {.lex_state = 46, .external_lex_state = 14}, + [6111] = {.lex_state = 73, .external_lex_state = 14}, + [6112] = {.lex_state = 73, .external_lex_state = 80}, + [6113] = {.lex_state = 73, .external_lex_state = 80}, + [6114] = {.lex_state = 73, .external_lex_state = 80}, + [6115] = {.lex_state = 593, .external_lex_state = 92}, + [6116] = {.lex_state = 72, .external_lex_state = 82}, + [6117] = {.lex_state = 49, .external_lex_state = 14}, + [6118] = {.lex_state = 73, .external_lex_state = 80}, + [6119] = {.lex_state = 73, .external_lex_state = 80}, + [6120] = {.lex_state = 73, .external_lex_state = 14}, + [6121] = {.lex_state = 593, .external_lex_state = 81}, + [6122] = {.lex_state = 593, .external_lex_state = 81}, + [6123] = {.lex_state = 49, .external_lex_state = 14}, + [6124] = {.lex_state = 72, .external_lex_state = 87}, + [6125] = {.lex_state = 73, .external_lex_state = 80}, + [6126] = {.lex_state = 49, .external_lex_state = 14}, + [6127] = {.lex_state = 72, .external_lex_state = 82}, + [6128] = {.lex_state = 49, .external_lex_state = 14}, + [6129] = {.lex_state = 73, .external_lex_state = 80}, + [6130] = {.lex_state = 49, .external_lex_state = 14}, + [6131] = {.lex_state = 49, .external_lex_state = 14}, + [6132] = {.lex_state = 593, .external_lex_state = 83}, + [6133] = {.lex_state = 72, .external_lex_state = 82}, + [6134] = {.lex_state = 73, .external_lex_state = 80}, + [6135] = {.lex_state = 593, .external_lex_state = 83}, + [6136] = {.lex_state = 72, .external_lex_state = 82}, + [6137] = {.lex_state = 72, .external_lex_state = 82}, + [6138] = {.lex_state = 49, .external_lex_state = 14}, + [6139] = {.lex_state = 73, .external_lex_state = 80}, + [6140] = {.lex_state = 73, .external_lex_state = 80}, + [6141] = {.lex_state = 73, .external_lex_state = 80}, + [6142] = {.lex_state = 72, .external_lex_state = 82}, + [6143] = {.lex_state = 72, .external_lex_state = 80}, + [6144] = {.lex_state = 593, .external_lex_state = 83}, + [6145] = {.lex_state = 72, .external_lex_state = 82}, + [6146] = {.lex_state = 73, .external_lex_state = 80}, + [6147] = {.lex_state = 593, .external_lex_state = 90}, + [6148] = {.lex_state = 72, .external_lex_state = 87}, + [6149] = {.lex_state = 73, .external_lex_state = 14}, + [6150] = {.lex_state = 49, .external_lex_state = 14}, + [6151] = {.lex_state = 72, .external_lex_state = 82}, + [6152] = {.lex_state = 72, .external_lex_state = 80}, + [6153] = {.lex_state = 593, .external_lex_state = 90}, + [6154] = {.lex_state = 73, .external_lex_state = 80}, + [6155] = {.lex_state = 72, .external_lex_state = 82}, + [6156] = {.lex_state = 73, .external_lex_state = 80}, + [6157] = {.lex_state = 49, .external_lex_state = 14}, + [6158] = {.lex_state = 49, .external_lex_state = 14}, + [6159] = {.lex_state = 72, .external_lex_state = 82}, + [6160] = {.lex_state = 49, .external_lex_state = 14}, + [6161] = {.lex_state = 72, .external_lex_state = 82}, + [6162] = {.lex_state = 73, .external_lex_state = 14}, + [6163] = {.lex_state = 49, .external_lex_state = 14}, + [6164] = {.lex_state = 49, .external_lex_state = 14}, + [6165] = {.lex_state = 49, .external_lex_state = 14}, + [6166] = {.lex_state = 593, .external_lex_state = 74}, + [6167] = {.lex_state = 73, .external_lex_state = 80}, + [6168] = {.lex_state = 593, .external_lex_state = 81}, + [6169] = {.lex_state = 72, .external_lex_state = 82}, + [6170] = {.lex_state = 72, .external_lex_state = 82}, + [6171] = {.lex_state = 72, .external_lex_state = 80}, + [6172] = {.lex_state = 72, .external_lex_state = 82}, + [6173] = {.lex_state = 49, .external_lex_state = 14}, + [6174] = {.lex_state = 593, .external_lex_state = 90}, + [6175] = {.lex_state = 73, .external_lex_state = 80}, + [6176] = {.lex_state = 45, .external_lex_state = 27}, + [6177] = {.lex_state = 49, .external_lex_state = 14}, + [6178] = {.lex_state = 72, .external_lex_state = 82}, + [6179] = {.lex_state = 73, .external_lex_state = 80}, + [6180] = {.lex_state = 593, .external_lex_state = 86}, + [6181] = {.lex_state = 73, .external_lex_state = 80}, + [6182] = {.lex_state = 73, .external_lex_state = 80}, + [6183] = {.lex_state = 73, .external_lex_state = 80}, + [6184] = {.lex_state = 46, .external_lex_state = 14}, + [6185] = {.lex_state = 72, .external_lex_state = 82}, + [6186] = {.lex_state = 73, .external_lex_state = 80}, + [6187] = {.lex_state = 72, .external_lex_state = 82}, + [6188] = {.lex_state = 72, .external_lex_state = 82}, + [6189] = {.lex_state = 45, .external_lex_state = 27}, + [6190] = {.lex_state = 593, .external_lex_state = 63}, + [6191] = {.lex_state = 73, .external_lex_state = 14}, + [6192] = {.lex_state = 73, .external_lex_state = 80}, + [6193] = {.lex_state = 49, .external_lex_state = 14}, + [6194] = {.lex_state = 72, .external_lex_state = 80}, + [6195] = {.lex_state = 72, .external_lex_state = 80}, + [6196] = {.lex_state = 73, .external_lex_state = 14}, + [6197] = {.lex_state = 72, .external_lex_state = 82}, + [6198] = {.lex_state = 72, .external_lex_state = 82}, + [6199] = {.lex_state = 72, .external_lex_state = 80}, + [6200] = {.lex_state = 49, .external_lex_state = 14}, + [6201] = {.lex_state = 593, .external_lex_state = 86}, + [6202] = {.lex_state = 73, .external_lex_state = 80}, + [6203] = {.lex_state = 72, .external_lex_state = 82}, + [6204] = {.lex_state = 72, .external_lex_state = 82}, + [6205] = {.lex_state = 72, .external_lex_state = 82}, + [6206] = {.lex_state = 49, .external_lex_state = 14}, + [6207] = {.lex_state = 72, .external_lex_state = 82}, + [6208] = {.lex_state = 72, .external_lex_state = 82}, + [6209] = {.lex_state = 72, .external_lex_state = 82}, + [6210] = {.lex_state = 72, .external_lex_state = 82}, + [6211] = {.lex_state = 72, .external_lex_state = 82}, + [6212] = {.lex_state = 45, .external_lex_state = 27}, + [6213] = {.lex_state = 72, .external_lex_state = 82}, + [6214] = {.lex_state = 72, .external_lex_state = 82}, + [6215] = {.lex_state = 72, .external_lex_state = 82}, + [6216] = {.lex_state = 72, .external_lex_state = 82}, + [6217] = {.lex_state = 72, .external_lex_state = 82}, + [6218] = {.lex_state = 72, .external_lex_state = 82}, + [6219] = {.lex_state = 73, .external_lex_state = 80}, + [6220] = {.lex_state = 72, .external_lex_state = 82}, + [6221] = {.lex_state = 72, .external_lex_state = 82}, + [6222] = {.lex_state = 72, .external_lex_state = 82}, + [6223] = {.lex_state = 72, .external_lex_state = 82}, + [6224] = {.lex_state = 72, .external_lex_state = 82}, + [6225] = {.lex_state = 72, .external_lex_state = 82}, + [6226] = {.lex_state = 72, .external_lex_state = 82}, + [6227] = {.lex_state = 72, .external_lex_state = 82}, + [6228] = {.lex_state = 72, .external_lex_state = 82}, + [6229] = {.lex_state = 72, .external_lex_state = 82}, + [6230] = {.lex_state = 72, .external_lex_state = 82}, + [6231] = {.lex_state = 72, .external_lex_state = 82}, + [6232] = {.lex_state = 72, .external_lex_state = 82}, + [6233] = {.lex_state = 72, .external_lex_state = 82}, + [6234] = {.lex_state = 72, .external_lex_state = 82}, + [6235] = {.lex_state = 45, .external_lex_state = 91}, + [6236] = {.lex_state = 72, .external_lex_state = 82}, + [6237] = {.lex_state = 593, .external_lex_state = 82}, + [6238] = {.lex_state = 593, .external_lex_state = 25}, + [6239] = {.lex_state = 73, .external_lex_state = 80}, + [6240] = {.lex_state = 45, .external_lex_state = 27}, + [6241] = {.lex_state = 593, .external_lex_state = 81}, + [6242] = {.lex_state = 45, .external_lex_state = 27}, + [6243] = {.lex_state = 72, .external_lex_state = 82}, + [6244] = {.lex_state = 49, .external_lex_state = 14}, + [6245] = {.lex_state = 49, .external_lex_state = 14}, + [6246] = {.lex_state = 72, .external_lex_state = 80}, + [6247] = {.lex_state = 73, .external_lex_state = 80}, + [6248] = {.lex_state = 73, .external_lex_state = 80}, + [6249] = {.lex_state = 45, .external_lex_state = 27}, + [6250] = {.lex_state = 73, .external_lex_state = 80}, + [6251] = {.lex_state = 593, .external_lex_state = 86}, + [6252] = {.lex_state = 49, .external_lex_state = 14}, + [6253] = {.lex_state = 73, .external_lex_state = 80}, + [6254] = {.lex_state = 593, .external_lex_state = 86}, + [6255] = {.lex_state = 72, .external_lex_state = 82}, + [6256] = {.lex_state = 593, .external_lex_state = 86}, + [6257] = {.lex_state = 73, .external_lex_state = 80}, + [6258] = {.lex_state = 49, .external_lex_state = 14}, + [6259] = {.lex_state = 73, .external_lex_state = 80}, + [6260] = {.lex_state = 593, .external_lex_state = 74}, + [6261] = {.lex_state = 73, .external_lex_state = 14}, + [6262] = {.lex_state = 73, .external_lex_state = 80}, + [6263] = {.lex_state = 593, .external_lex_state = 90}, + [6264] = {.lex_state = 73, .external_lex_state = 80}, + [6265] = {.lex_state = 49, .external_lex_state = 14}, + [6266] = {.lex_state = 73, .external_lex_state = 80}, + [6267] = {.lex_state = 73, .external_lex_state = 80}, + [6268] = {.lex_state = 73, .external_lex_state = 80}, + [6269] = {.lex_state = 73, .external_lex_state = 80}, + [6270] = {.lex_state = 49, .external_lex_state = 14}, + [6271] = {.lex_state = 593, .external_lex_state = 74}, + [6272] = {.lex_state = 49, .external_lex_state = 14}, + [6273] = {.lex_state = 593, .external_lex_state = 25}, + [6274] = {.lex_state = 46, .external_lex_state = 14}, + [6275] = {.lex_state = 73, .external_lex_state = 14}, + [6276] = {.lex_state = 49, .external_lex_state = 14}, + [6277] = {.lex_state = 73, .external_lex_state = 80}, + [6278] = {.lex_state = 72, .external_lex_state = 82}, + [6279] = {.lex_state = 49, .external_lex_state = 14}, + [6280] = {.lex_state = 73, .external_lex_state = 80}, + [6281] = {.lex_state = 73, .external_lex_state = 80}, + [6282] = {.lex_state = 73, .external_lex_state = 80}, + [6283] = {.lex_state = 73, .external_lex_state = 80}, + [6284] = {.lex_state = 49, .external_lex_state = 14}, + [6285] = {.lex_state = 73, .external_lex_state = 80}, + [6286] = {.lex_state = 72, .external_lex_state = 82}, + [6287] = {.lex_state = 45, .external_lex_state = 27}, + [6288] = {.lex_state = 593, .external_lex_state = 90}, + [6289] = {.lex_state = 73, .external_lex_state = 80}, + [6290] = {.lex_state = 73, .external_lex_state = 80}, + [6291] = {.lex_state = 52, .external_lex_state = 14}, + [6292] = {.lex_state = 45, .external_lex_state = 27}, + [6293] = {.lex_state = 72, .external_lex_state = 82}, + [6294] = {.lex_state = 49, .external_lex_state = 14}, + [6295] = {.lex_state = 49, .external_lex_state = 14}, + [6296] = {.lex_state = 72, .external_lex_state = 82}, + [6297] = {.lex_state = 593, .external_lex_state = 82}, + [6298] = {.lex_state = 73, .external_lex_state = 80}, + [6299] = {.lex_state = 73, .external_lex_state = 80}, + [6300] = {.lex_state = 49, .external_lex_state = 14}, + [6301] = {.lex_state = 73, .external_lex_state = 80}, + [6302] = {.lex_state = 73, .external_lex_state = 14}, + [6303] = {.lex_state = 72, .external_lex_state = 82}, + [6304] = {.lex_state = 49, .external_lex_state = 14}, + [6305] = {.lex_state = 49, .external_lex_state = 14}, + [6306] = {.lex_state = 73, .external_lex_state = 80}, + [6307] = {.lex_state = 593, .external_lex_state = 86}, + [6308] = {.lex_state = 73, .external_lex_state = 80}, + [6309] = {.lex_state = 49, .external_lex_state = 14}, + [6310] = {.lex_state = 49, .external_lex_state = 14}, + [6311] = {.lex_state = 72, .external_lex_state = 87}, + [6312] = {.lex_state = 73, .external_lex_state = 14}, + [6313] = {.lex_state = 593, .external_lex_state = 91}, + [6314] = {.lex_state = 48, .external_lex_state = 14}, + [6315] = {.lex_state = 48, .external_lex_state = 14}, + [6316] = {.lex_state = 49, .external_lex_state = 14}, + [6317] = {.lex_state = 72, .external_lex_state = 80}, + [6318] = {.lex_state = 593, .external_lex_state = 85}, + [6319] = {.lex_state = 72, .external_lex_state = 80}, + [6320] = {.lex_state = 72, .external_lex_state = 80}, + [6321] = {.lex_state = 72, .external_lex_state = 80}, + [6322] = {.lex_state = 72, .external_lex_state = 80}, + [6323] = {.lex_state = 593, .external_lex_state = 14}, + [6324] = {.lex_state = 73, .external_lex_state = 14}, + [6325] = {.lex_state = 73, .external_lex_state = 14}, + [6326] = {.lex_state = 72, .external_lex_state = 80}, + [6327] = {.lex_state = 49, .external_lex_state = 14}, + [6328] = {.lex_state = 593, .external_lex_state = 80}, + [6329] = {.lex_state = 72, .external_lex_state = 87}, + [6330] = {.lex_state = 72, .external_lex_state = 86}, + [6331] = {.lex_state = 72, .external_lex_state = 80}, + [6332] = {.lex_state = 72, .external_lex_state = 80}, + [6333] = {.lex_state = 73, .external_lex_state = 14}, + [6334] = {.lex_state = 593, .external_lex_state = 80}, + [6335] = {.lex_state = 72, .external_lex_state = 80}, + [6336] = {.lex_state = 73, .external_lex_state = 14}, + [6337] = {.lex_state = 73, .external_lex_state = 14}, + [6338] = {.lex_state = 593, .external_lex_state = 14}, + [6339] = {.lex_state = 593, .external_lex_state = 85}, + [6340] = {.lex_state = 593, .external_lex_state = 14}, + [6341] = {.lex_state = 49, .external_lex_state = 14}, + [6342] = {.lex_state = 593, .external_lex_state = 91}, + [6343] = {.lex_state = 72, .external_lex_state = 80}, + [6344] = {.lex_state = 593, .external_lex_state = 80}, + [6345] = {.lex_state = 593, .external_lex_state = 85}, + [6346] = {.lex_state = 73, .external_lex_state = 14}, + [6347] = {.lex_state = 593, .external_lex_state = 80}, + [6348] = {.lex_state = 593, .external_lex_state = 93}, + [6349] = {.lex_state = 73, .external_lex_state = 14}, + [6350] = {.lex_state = 73, .external_lex_state = 14}, + [6351] = {.lex_state = 73, .external_lex_state = 14}, + [6352] = {.lex_state = 72, .external_lex_state = 82}, + [6353] = {.lex_state = 73, .external_lex_state = 14}, + [6354] = {.lex_state = 593, .external_lex_state = 80}, + [6355] = {.lex_state = 73, .external_lex_state = 14}, + [6356] = {.lex_state = 72, .external_lex_state = 82}, + [6357] = {.lex_state = 593, .external_lex_state = 32}, + [6358] = {.lex_state = 72, .external_lex_state = 87}, + [6359] = {.lex_state = 73, .external_lex_state = 14}, + [6360] = {.lex_state = 49, .external_lex_state = 14}, + [6361] = {.lex_state = 73, .external_lex_state = 14}, + [6362] = {.lex_state = 49, .external_lex_state = 14}, + [6363] = {.lex_state = 593, .external_lex_state = 14}, + [6364] = {.lex_state = 49, .external_lex_state = 14}, + [6365] = {.lex_state = 73, .external_lex_state = 14}, + [6366] = {.lex_state = 49, .external_lex_state = 14}, + [6367] = {.lex_state = 73, .external_lex_state = 14}, + [6368] = {.lex_state = 72, .external_lex_state = 80}, + [6369] = {.lex_state = 49, .external_lex_state = 14}, + [6370] = {.lex_state = 593, .external_lex_state = 86}, + [6371] = {.lex_state = 593, .external_lex_state = 81}, + [6372] = {.lex_state = 72, .external_lex_state = 80}, + [6373] = {.lex_state = 72, .external_lex_state = 82}, + [6374] = {.lex_state = 73, .external_lex_state = 14}, + [6375] = {.lex_state = 49, .external_lex_state = 14}, + [6376] = {.lex_state = 593, .external_lex_state = 86}, + [6377] = {.lex_state = 72, .external_lex_state = 87}, + [6378] = {.lex_state = 72, .external_lex_state = 87}, + [6379] = {.lex_state = 593, .external_lex_state = 86}, + [6380] = {.lex_state = 49, .external_lex_state = 14}, + [6381] = {.lex_state = 72, .external_lex_state = 80}, + [6382] = {.lex_state = 593, .external_lex_state = 86}, + [6383] = {.lex_state = 72, .external_lex_state = 87}, + [6384] = {.lex_state = 72, .external_lex_state = 87}, + [6385] = {.lex_state = 593, .external_lex_state = 91}, + [6386] = {.lex_state = 72, .external_lex_state = 87}, + [6387] = {.lex_state = 72, .external_lex_state = 82}, + [6388] = {.lex_state = 593, .external_lex_state = 81}, + [6389] = {.lex_state = 49, .external_lex_state = 14}, + [6390] = {.lex_state = 73, .external_lex_state = 14}, + [6391] = {.lex_state = 72, .external_lex_state = 82}, + [6392] = {.lex_state = 593, .external_lex_state = 14}, + [6393] = {.lex_state = 593, .external_lex_state = 81}, + [6394] = {.lex_state = 72, .external_lex_state = 14}, + [6395] = {.lex_state = 72, .external_lex_state = 14}, + [6396] = {.lex_state = 73, .external_lex_state = 14}, + [6397] = {.lex_state = 593, .external_lex_state = 80}, + [6398] = {.lex_state = 593, .external_lex_state = 76}, + [6399] = {.lex_state = 73, .external_lex_state = 14}, + [6400] = {.lex_state = 593, .external_lex_state = 74}, + [6401] = {.lex_state = 73, .external_lex_state = 14}, + [6402] = {.lex_state = 49, .external_lex_state = 14}, + [6403] = {.lex_state = 593, .external_lex_state = 14}, + [6404] = {.lex_state = 73, .external_lex_state = 14}, + [6405] = {.lex_state = 593, .external_lex_state = 83}, + [6406] = {.lex_state = 72, .external_lex_state = 87}, + [6407] = {.lex_state = 72, .external_lex_state = 80}, + [6408] = {.lex_state = 72, .external_lex_state = 80}, + [6409] = {.lex_state = 593, .external_lex_state = 90}, + [6410] = {.lex_state = 73, .external_lex_state = 14}, + [6411] = {.lex_state = 73, .external_lex_state = 14}, + [6412] = {.lex_state = 73, .external_lex_state = 14}, + [6413] = {.lex_state = 73, .external_lex_state = 14}, + [6414] = {.lex_state = 593, .external_lex_state = 84}, + [6415] = {.lex_state = 593, .external_lex_state = 84}, + [6416] = {.lex_state = 72, .external_lex_state = 82}, + [6417] = {.lex_state = 72, .external_lex_state = 80}, + [6418] = {.lex_state = 593, .external_lex_state = 80}, + [6419] = {.lex_state = 593, .external_lex_state = 86}, + [6420] = {.lex_state = 49, .external_lex_state = 14}, + [6421] = {.lex_state = 73, .external_lex_state = 14}, + [6422] = {.lex_state = 593, .external_lex_state = 86}, + [6423] = {.lex_state = 72, .external_lex_state = 80}, + [6424] = {.lex_state = 593, .external_lex_state = 90}, + [6425] = {.lex_state = 49, .external_lex_state = 14}, + [6426] = {.lex_state = 593, .external_lex_state = 83}, + [6427] = {.lex_state = 593, .external_lex_state = 80}, + [6428] = {.lex_state = 593, .external_lex_state = 80}, + [6429] = {.lex_state = 72, .external_lex_state = 80}, + [6430] = {.lex_state = 593, .external_lex_state = 86}, + [6431] = {.lex_state = 72, .external_lex_state = 80}, + [6432] = {.lex_state = 49, .external_lex_state = 14}, + [6433] = {.lex_state = 73, .external_lex_state = 14}, + [6434] = {.lex_state = 73, .external_lex_state = 14}, + [6435] = {.lex_state = 593, .external_lex_state = 86}, + [6436] = {.lex_state = 49, .external_lex_state = 14}, + [6437] = {.lex_state = 72, .external_lex_state = 80}, + [6438] = {.lex_state = 593, .external_lex_state = 86}, + [6439] = {.lex_state = 73, .external_lex_state = 14}, + [6440] = {.lex_state = 593, .external_lex_state = 80}, + [6441] = {.lex_state = 73, .external_lex_state = 14}, + [6442] = {.lex_state = 49, .external_lex_state = 14}, + [6443] = {.lex_state = 49, .external_lex_state = 14}, + [6444] = {.lex_state = 49, .external_lex_state = 14}, + [6445] = {.lex_state = 593, .external_lex_state = 88}, + [6446] = {.lex_state = 73, .external_lex_state = 14}, + [6447] = {.lex_state = 49, .external_lex_state = 14}, + [6448] = {.lex_state = 49, .external_lex_state = 14}, + [6449] = {.lex_state = 72, .external_lex_state = 87}, + [6450] = {.lex_state = 73, .external_lex_state = 14}, + [6451] = {.lex_state = 72, .external_lex_state = 87}, + [6452] = {.lex_state = 72, .external_lex_state = 80}, + [6453] = {.lex_state = 593, .external_lex_state = 82}, + [6454] = {.lex_state = 73, .external_lex_state = 14}, + [6455] = {.lex_state = 72, .external_lex_state = 82}, + [6456] = {.lex_state = 49, .external_lex_state = 14}, + [6457] = {.lex_state = 72, .external_lex_state = 82}, + [6458] = {.lex_state = 593, .external_lex_state = 81}, + [6459] = {.lex_state = 72, .external_lex_state = 87}, + [6460] = {.lex_state = 593, .external_lex_state = 14}, + [6461] = {.lex_state = 72, .external_lex_state = 87}, + [6462] = {.lex_state = 72, .external_lex_state = 72}, + [6463] = {.lex_state = 72, .external_lex_state = 87}, + [6464] = {.lex_state = 593, .external_lex_state = 81}, + [6465] = {.lex_state = 593, .external_lex_state = 91}, + [6466] = {.lex_state = 593, .external_lex_state = 90}, + [6467] = {.lex_state = 593, .external_lex_state = 81}, + [6468] = {.lex_state = 72, .external_lex_state = 87}, + [6469] = {.lex_state = 72, .external_lex_state = 80}, + [6470] = {.lex_state = 49, .external_lex_state = 14}, + [6471] = {.lex_state = 73, .external_lex_state = 14}, + [6472] = {.lex_state = 73, .external_lex_state = 14}, + [6473] = {.lex_state = 72, .external_lex_state = 80}, + [6474] = {.lex_state = 593, .external_lex_state = 80}, + [6475] = {.lex_state = 593, .external_lex_state = 14}, + [6476] = {.lex_state = 49, .external_lex_state = 14}, + [6477] = {.lex_state = 73, .external_lex_state = 14}, + [6478] = {.lex_state = 49, .external_lex_state = 14}, + [6479] = {.lex_state = 593, .external_lex_state = 81}, + [6480] = {.lex_state = 73, .external_lex_state = 14}, + [6481] = {.lex_state = 49, .external_lex_state = 14}, + [6482] = {.lex_state = 73, .external_lex_state = 14}, + [6483] = {.lex_state = 73, .external_lex_state = 14}, + [6484] = {.lex_state = 49, .external_lex_state = 14}, + [6485] = {.lex_state = 593, .external_lex_state = 86}, + [6486] = {.lex_state = 593, .external_lex_state = 80}, + [6487] = {.lex_state = 73, .external_lex_state = 14}, + [6488] = {.lex_state = 49, .external_lex_state = 14}, + [6489] = {.lex_state = 73, .external_lex_state = 14}, + [6490] = {.lex_state = 49, .external_lex_state = 14}, + [6491] = {.lex_state = 73, .external_lex_state = 14}, + [6492] = {.lex_state = 593, .external_lex_state = 93}, + [6493] = {.lex_state = 73, .external_lex_state = 14}, + [6494] = {.lex_state = 49, .external_lex_state = 14}, + [6495] = {.lex_state = 73, .external_lex_state = 14}, + [6496] = {.lex_state = 73, .external_lex_state = 14}, + [6497] = {.lex_state = 49, .external_lex_state = 14}, + [6498] = {.lex_state = 73, .external_lex_state = 14}, + [6499] = {.lex_state = 73, .external_lex_state = 14}, + [6500] = {.lex_state = 73, .external_lex_state = 14}, + [6501] = {.lex_state = 72, .external_lex_state = 82}, + [6502] = {.lex_state = 72, .external_lex_state = 87}, + [6503] = {.lex_state = 73, .external_lex_state = 14}, + [6504] = {.lex_state = 72, .external_lex_state = 82}, + [6505] = {.lex_state = 593, .external_lex_state = 90}, + [6506] = {.lex_state = 593, .external_lex_state = 80}, + [6507] = {.lex_state = 49, .external_lex_state = 14}, + [6508] = {.lex_state = 73, .external_lex_state = 14}, + [6509] = {.lex_state = 72, .external_lex_state = 87}, + [6510] = {.lex_state = 593, .external_lex_state = 90}, + [6511] = {.lex_state = 73, .external_lex_state = 14}, + [6512] = {.lex_state = 73, .external_lex_state = 14}, + [6513] = {.lex_state = 72, .external_lex_state = 87}, + [6514] = {.lex_state = 49, .external_lex_state = 14}, + [6515] = {.lex_state = 72, .external_lex_state = 82}, + [6516] = {.lex_state = 73, .external_lex_state = 14}, + [6517] = {.lex_state = 49, .external_lex_state = 14}, + [6518] = {.lex_state = 593, .external_lex_state = 90}, + [6519] = {.lex_state = 73, .external_lex_state = 14}, + [6520] = {.lex_state = 72, .external_lex_state = 82}, + [6521] = {.lex_state = 593, .external_lex_state = 81}, + [6522] = {.lex_state = 72, .external_lex_state = 87}, + [6523] = {.lex_state = 593, .external_lex_state = 81}, + [6524] = {.lex_state = 593, .external_lex_state = 86}, + [6525] = {.lex_state = 49, .external_lex_state = 14}, + [6526] = {.lex_state = 49, .external_lex_state = 14}, + [6527] = {.lex_state = 45, .external_lex_state = 14}, + [6528] = {.lex_state = 73, .external_lex_state = 14}, + [6529] = {.lex_state = 593, .external_lex_state = 80}, + [6530] = {.lex_state = 593, .external_lex_state = 14}, + [6531] = {.lex_state = 72, .external_lex_state = 87}, + [6532] = {.lex_state = 72, .external_lex_state = 87}, + [6533] = {.lex_state = 49, .external_lex_state = 14}, + [6534] = {.lex_state = 72, .external_lex_state = 87}, + [6535] = {.lex_state = 49, .external_lex_state = 14}, + [6536] = {.lex_state = 72, .external_lex_state = 87}, + [6537] = {.lex_state = 48, .external_lex_state = 14}, + [6538] = {.lex_state = 73, .external_lex_state = 14}, + [6539] = {.lex_state = 72, .external_lex_state = 80}, + [6540] = {.lex_state = 48, .external_lex_state = 14}, + [6541] = {.lex_state = 48, .external_lex_state = 14}, + [6542] = {.lex_state = 48, .external_lex_state = 14}, + [6543] = {.lex_state = 593, .external_lex_state = 82}, + [6544] = {.lex_state = 73, .external_lex_state = 14}, + [6545] = {.lex_state = 72, .external_lex_state = 80}, + [6546] = {.lex_state = 72, .external_lex_state = 87}, + [6547] = {.lex_state = 72, .external_lex_state = 80}, + [6548] = {.lex_state = 72, .external_lex_state = 80}, + [6549] = {.lex_state = 593, .external_lex_state = 86}, + [6550] = {.lex_state = 73, .external_lex_state = 14}, + [6551] = {.lex_state = 72, .external_lex_state = 87}, + [6552] = {.lex_state = 73, .external_lex_state = 14}, + [6553] = {.lex_state = 72, .external_lex_state = 80}, + [6554] = {.lex_state = 593, .external_lex_state = 90}, + [6555] = {.lex_state = 593, .external_lex_state = 81}, + [6556] = {.lex_state = 49, .external_lex_state = 14}, + [6557] = {.lex_state = 593, .external_lex_state = 91}, + [6558] = {.lex_state = 593, .external_lex_state = 14}, + [6559] = {.lex_state = 593, .external_lex_state = 80}, + [6560] = {.lex_state = 72, .external_lex_state = 87}, + [6561] = {.lex_state = 593, .external_lex_state = 14}, + [6562] = {.lex_state = 593, .external_lex_state = 80}, + [6563] = {.lex_state = 593, .external_lex_state = 93}, + [6564] = {.lex_state = 73, .external_lex_state = 14}, + [6565] = {.lex_state = 72, .external_lex_state = 14}, + [6566] = {.lex_state = 72, .external_lex_state = 87}, + [6567] = {.lex_state = 72, .external_lex_state = 80}, + [6568] = {.lex_state = 49, .external_lex_state = 14}, + [6569] = {.lex_state = 72, .external_lex_state = 80}, + [6570] = {.lex_state = 45, .external_lex_state = 14}, + [6571] = {.lex_state = 72, .external_lex_state = 87}, + [6572] = {.lex_state = 72, .external_lex_state = 87}, + [6573] = {.lex_state = 45, .external_lex_state = 14}, + [6574] = {.lex_state = 73, .external_lex_state = 14}, + [6575] = {.lex_state = 73, .external_lex_state = 14}, + [6576] = {.lex_state = 73, .external_lex_state = 14}, + [6577] = {.lex_state = 73, .external_lex_state = 14}, + [6578] = {.lex_state = 593, .external_lex_state = 86}, + [6579] = {.lex_state = 72, .external_lex_state = 80}, + [6580] = {.lex_state = 72, .external_lex_state = 80}, + [6581] = {.lex_state = 593, .external_lex_state = 84}, + [6582] = {.lex_state = 593, .external_lex_state = 86}, + [6583] = {.lex_state = 72, .external_lex_state = 80}, + [6584] = {.lex_state = 593, .external_lex_state = 85}, + [6585] = {.lex_state = 593, .external_lex_state = 83}, + [6586] = {.lex_state = 72, .external_lex_state = 80}, + [6587] = {.lex_state = 72, .external_lex_state = 82}, + [6588] = {.lex_state = 72, .external_lex_state = 80}, + [6589] = {.lex_state = 49, .external_lex_state = 14}, + [6590] = {.lex_state = 72, .external_lex_state = 80}, + [6591] = {.lex_state = 72, .external_lex_state = 80}, + [6592] = {.lex_state = 593, .external_lex_state = 85}, + [6593] = {.lex_state = 593, .external_lex_state = 83}, + [6594] = {.lex_state = 72, .external_lex_state = 82}, + [6595] = {.lex_state = 593, .external_lex_state = 83}, + [6596] = {.lex_state = 73, .external_lex_state = 14}, + [6597] = {.lex_state = 72, .external_lex_state = 87}, + [6598] = {.lex_state = 72, .external_lex_state = 82}, + [6599] = {.lex_state = 72, .external_lex_state = 86}, + [6600] = {.lex_state = 593, .external_lex_state = 83}, + [6601] = {.lex_state = 593, .external_lex_state = 83}, + [6602] = {.lex_state = 72, .external_lex_state = 80}, + [6603] = {.lex_state = 49, .external_lex_state = 14}, + [6604] = {.lex_state = 73, .external_lex_state = 14}, + [6605] = {.lex_state = 593, .external_lex_state = 86}, + [6606] = {.lex_state = 593, .external_lex_state = 80}, + [6607] = {.lex_state = 73, .external_lex_state = 14}, + [6608] = {.lex_state = 73, .external_lex_state = 14}, + [6609] = {.lex_state = 72, .external_lex_state = 86}, + [6610] = {.lex_state = 72, .external_lex_state = 80}, + [6611] = {.lex_state = 593, .external_lex_state = 86}, + [6612] = {.lex_state = 593, .external_lex_state = 86}, + [6613] = {.lex_state = 72, .external_lex_state = 86}, + [6614] = {.lex_state = 49, .external_lex_state = 14}, + [6615] = {.lex_state = 72, .external_lex_state = 82}, + [6616] = {.lex_state = 593, .external_lex_state = 80}, + [6617] = {.lex_state = 49, .external_lex_state = 14}, + [6618] = {.lex_state = 72, .external_lex_state = 82}, + [6619] = {.lex_state = 72, .external_lex_state = 82}, + [6620] = {.lex_state = 593, .external_lex_state = 80}, + [6621] = {.lex_state = 593, .external_lex_state = 86}, + [6622] = {.lex_state = 49, .external_lex_state = 14}, + [6623] = {.lex_state = 72, .external_lex_state = 80}, + [6624] = {.lex_state = 72, .external_lex_state = 14}, + [6625] = {.lex_state = 73, .external_lex_state = 14}, + [6626] = {.lex_state = 49, .external_lex_state = 14}, + [6627] = {.lex_state = 49, .external_lex_state = 14}, + [6628] = {.lex_state = 593, .external_lex_state = 86}, + [6629] = {.lex_state = 593, .external_lex_state = 86}, + [6630] = {.lex_state = 72, .external_lex_state = 14}, + [6631] = {.lex_state = 593, .external_lex_state = 86}, + [6632] = {.lex_state = 49, .external_lex_state = 14}, + [6633] = {.lex_state = 72, .external_lex_state = 82}, + [6634] = {.lex_state = 72, .external_lex_state = 82}, + [6635] = {.lex_state = 593, .external_lex_state = 14}, + [6636] = {.lex_state = 72, .external_lex_state = 80}, + [6637] = {.lex_state = 49, .external_lex_state = 14}, + [6638] = {.lex_state = 72, .external_lex_state = 86}, + [6639] = {.lex_state = 73, .external_lex_state = 14}, + [6640] = {.lex_state = 73, .external_lex_state = 14}, + [6641] = {.lex_state = 73, .external_lex_state = 14}, + [6642] = {.lex_state = 72, .external_lex_state = 87}, + [6643] = {.lex_state = 72, .external_lex_state = 87}, + [6644] = {.lex_state = 73, .external_lex_state = 14}, + [6645] = {.lex_state = 593, .external_lex_state = 93}, + [6646] = {.lex_state = 49, .external_lex_state = 14}, + [6647] = {.lex_state = 73, .external_lex_state = 14}, + [6648] = {.lex_state = 593, .external_lex_state = 83}, + [6649] = {.lex_state = 73, .external_lex_state = 14}, + [6650] = {.lex_state = 73, .external_lex_state = 14}, + [6651] = {.lex_state = 73, .external_lex_state = 14}, + [6652] = {.lex_state = 73, .external_lex_state = 14}, + [6653] = {.lex_state = 593, .external_lex_state = 14}, + [6654] = {.lex_state = 593, .external_lex_state = 80}, + [6655] = {.lex_state = 593, .external_lex_state = 91}, + [6656] = {.lex_state = 73, .external_lex_state = 14}, + [6657] = {.lex_state = 49, .external_lex_state = 14}, + [6658] = {.lex_state = 593, .external_lex_state = 85}, + [6659] = {.lex_state = 73, .external_lex_state = 14}, + [6660] = {.lex_state = 593, .external_lex_state = 85}, + [6661] = {.lex_state = 593, .external_lex_state = 80}, + [6662] = {.lex_state = 593, .external_lex_state = 83}, + [6663] = {.lex_state = 593, .external_lex_state = 86}, + [6664] = {.lex_state = 49, .external_lex_state = 14}, + [6665] = {.lex_state = 49, .external_lex_state = 14}, + [6666] = {.lex_state = 593, .external_lex_state = 86}, + [6667] = {.lex_state = 593, .external_lex_state = 14}, + [6668] = {.lex_state = 72, .external_lex_state = 87}, + [6669] = {.lex_state = 72, .external_lex_state = 80}, + [6670] = {.lex_state = 593, .external_lex_state = 94}, + [6671] = {.lex_state = 49, .external_lex_state = 14}, + [6672] = {.lex_state = 593, .external_lex_state = 91}, + [6673] = {.lex_state = 593, .external_lex_state = 85}, + [6674] = {.lex_state = 73, .external_lex_state = 14}, + [6675] = {.lex_state = 72, .external_lex_state = 87}, + [6676] = {.lex_state = 593, .external_lex_state = 94}, + [6677] = {.lex_state = 593, .external_lex_state = 85}, + [6678] = {.lex_state = 593, .external_lex_state = 91}, + [6679] = {.lex_state = 73, .external_lex_state = 14}, + [6680] = {.lex_state = 49, .external_lex_state = 14}, + [6681] = {.lex_state = 72, .external_lex_state = 80}, + [6682] = {.lex_state = 49, .external_lex_state = 14}, + [6683] = {.lex_state = 73, .external_lex_state = 14}, + [6684] = {.lex_state = 72, .external_lex_state = 82}, + [6685] = {.lex_state = 593, .external_lex_state = 80}, + [6686] = {.lex_state = 593, .external_lex_state = 80}, + [6687] = {.lex_state = 593, .external_lex_state = 85}, + [6688] = {.lex_state = 73, .external_lex_state = 14}, + [6689] = {.lex_state = 73, .external_lex_state = 14}, + [6690] = {.lex_state = 72, .external_lex_state = 82}, + [6691] = {.lex_state = 72, .external_lex_state = 82}, + [6692] = {.lex_state = 45, .external_lex_state = 14}, + [6693] = {.lex_state = 49, .external_lex_state = 14}, + [6694] = {.lex_state = 72, .external_lex_state = 82}, + [6695] = {.lex_state = 73, .external_lex_state = 14}, + [6696] = {.lex_state = 593, .external_lex_state = 81}, + [6697] = {.lex_state = 72, .external_lex_state = 87}, + [6698] = {.lex_state = 593, .external_lex_state = 86}, + [6699] = {.lex_state = 72, .external_lex_state = 87}, + [6700] = {.lex_state = 72, .external_lex_state = 87}, + [6701] = {.lex_state = 593, .external_lex_state = 80}, + [6702] = {.lex_state = 72, .external_lex_state = 87}, + [6703] = {.lex_state = 72, .external_lex_state = 82}, + [6704] = {.lex_state = 593, .external_lex_state = 85}, + [6705] = {.lex_state = 72, .external_lex_state = 87}, + [6706] = {.lex_state = 72, .external_lex_state = 87}, + [6707] = {.lex_state = 72, .external_lex_state = 87}, + [6708] = {.lex_state = 72, .external_lex_state = 87}, + [6709] = {.lex_state = 72, .external_lex_state = 87}, + [6710] = {.lex_state = 49, .external_lex_state = 14}, + [6711] = {.lex_state = 593, .external_lex_state = 14}, + [6712] = {.lex_state = 72, .external_lex_state = 82}, + [6713] = {.lex_state = 72, .external_lex_state = 87}, + [6714] = {.lex_state = 72, .external_lex_state = 87}, + [6715] = {.lex_state = 72, .external_lex_state = 87}, + [6716] = {.lex_state = 73, .external_lex_state = 14}, + [6717] = {.lex_state = 49, .external_lex_state = 14}, + [6718] = {.lex_state = 45, .external_lex_state = 14}, + [6719] = {.lex_state = 73, .external_lex_state = 14}, + [6720] = {.lex_state = 72, .external_lex_state = 87}, + [6721] = {.lex_state = 72, .external_lex_state = 87}, + [6722] = {.lex_state = 72, .external_lex_state = 87}, + [6723] = {.lex_state = 52, .external_lex_state = 14}, + [6724] = {.lex_state = 72, .external_lex_state = 87}, + [6725] = {.lex_state = 72, .external_lex_state = 87}, + [6726] = {.lex_state = 593, .external_lex_state = 93}, + [6727] = {.lex_state = 49, .external_lex_state = 14}, + [6728] = {.lex_state = 72, .external_lex_state = 80}, + [6729] = {.lex_state = 72, .external_lex_state = 87}, + [6730] = {.lex_state = 72, .external_lex_state = 82}, + [6731] = {.lex_state = 72, .external_lex_state = 80}, + [6732] = {.lex_state = 72, .external_lex_state = 87}, + [6733] = {.lex_state = 593, .external_lex_state = 14}, + [6734] = {.lex_state = 72, .external_lex_state = 87}, + [6735] = {.lex_state = 72, .external_lex_state = 87}, + [6736] = {.lex_state = 72, .external_lex_state = 87}, + [6737] = {.lex_state = 52, .external_lex_state = 14}, + [6738] = {.lex_state = 72, .external_lex_state = 87}, + [6739] = {.lex_state = 72, .external_lex_state = 87}, + [6740] = {.lex_state = 72, .external_lex_state = 87}, + [6741] = {.lex_state = 49, .external_lex_state = 14}, + [6742] = {.lex_state = 593, .external_lex_state = 14}, + [6743] = {.lex_state = 72, .external_lex_state = 87}, + [6744] = {.lex_state = 72, .external_lex_state = 87}, + [6745] = {.lex_state = 72, .external_lex_state = 82}, + [6746] = {.lex_state = 72, .external_lex_state = 87}, + [6747] = {.lex_state = 72, .external_lex_state = 87}, + [6748] = {.lex_state = 49, .external_lex_state = 14}, + [6749] = {.lex_state = 49, .external_lex_state = 14}, + [6750] = {.lex_state = 49, .external_lex_state = 14}, + [6751] = {.lex_state = 52, .external_lex_state = 14}, + [6752] = {.lex_state = 72, .external_lex_state = 82}, + [6753] = {.lex_state = 72, .external_lex_state = 87}, + [6754] = {.lex_state = 72, .external_lex_state = 87}, + [6755] = {.lex_state = 72, .external_lex_state = 87}, + [6756] = {.lex_state = 593, .external_lex_state = 83}, + [6757] = {.lex_state = 73, .external_lex_state = 14}, + [6758] = {.lex_state = 72, .external_lex_state = 82}, + [6759] = {.lex_state = 72, .external_lex_state = 82}, + [6760] = {.lex_state = 49, .external_lex_state = 14}, + [6761] = {.lex_state = 593, .external_lex_state = 80}, + [6762] = {.lex_state = 72, .external_lex_state = 80}, + [6763] = {.lex_state = 72, .external_lex_state = 82}, + [6764] = {.lex_state = 593, .external_lex_state = 85}, + [6765] = {.lex_state = 72, .external_lex_state = 87}, + [6766] = {.lex_state = 72, .external_lex_state = 80}, + [6767] = {.lex_state = 72, .external_lex_state = 80}, + [6768] = {.lex_state = 49, .external_lex_state = 14}, + [6769] = {.lex_state = 593, .external_lex_state = 80}, + [6770] = {.lex_state = 49, .external_lex_state = 14}, + [6771] = {.lex_state = 49, .external_lex_state = 14}, + [6772] = {.lex_state = 593, .external_lex_state = 80}, + [6773] = {.lex_state = 72, .external_lex_state = 82}, + [6774] = {.lex_state = 72, .external_lex_state = 82}, + [6775] = {.lex_state = 72, .external_lex_state = 82}, + [6776] = {.lex_state = 72, .external_lex_state = 87}, + [6777] = {.lex_state = 72, .external_lex_state = 87}, + [6778] = {.lex_state = 72, .external_lex_state = 87}, + [6779] = {.lex_state = 72, .external_lex_state = 82}, + [6780] = {.lex_state = 49, .external_lex_state = 14}, + [6781] = {.lex_state = 593, .external_lex_state = 91}, + [6782] = {.lex_state = 72, .external_lex_state = 80}, + [6783] = {.lex_state = 72, .external_lex_state = 80}, + [6784] = {.lex_state = 52, .external_lex_state = 14}, + [6785] = {.lex_state = 72, .external_lex_state = 87}, + [6786] = {.lex_state = 72, .external_lex_state = 87}, + [6787] = {.lex_state = 72, .external_lex_state = 87}, + [6788] = {.lex_state = 73, .external_lex_state = 14}, + [6789] = {.lex_state = 72, .external_lex_state = 80}, + [6790] = {.lex_state = 73, .external_lex_state = 14}, + [6791] = {.lex_state = 49, .external_lex_state = 14}, + [6792] = {.lex_state = 593, .external_lex_state = 83}, + [6793] = {.lex_state = 49, .external_lex_state = 14}, + [6794] = {.lex_state = 72, .external_lex_state = 80}, + [6795] = {.lex_state = 73, .external_lex_state = 14}, + [6796] = {.lex_state = 72, .external_lex_state = 80}, + [6797] = {.lex_state = 73, .external_lex_state = 14}, + [6798] = {.lex_state = 593, .external_lex_state = 90}, + [6799] = {.lex_state = 72, .external_lex_state = 86}, + [6800] = {.lex_state = 593, .external_lex_state = 14}, + [6801] = {.lex_state = 73, .external_lex_state = 14}, + [6802] = {.lex_state = 49, .external_lex_state = 14}, + [6803] = {.lex_state = 73, .external_lex_state = 14}, + [6804] = {.lex_state = 73, .external_lex_state = 14}, + [6805] = {.lex_state = 593, .external_lex_state = 85}, + [6806] = {.lex_state = 73, .external_lex_state = 14}, + [6807] = {.lex_state = 72, .external_lex_state = 80}, + [6808] = {.lex_state = 72, .external_lex_state = 80}, + [6809] = {.lex_state = 72, .external_lex_state = 87}, + [6810] = {.lex_state = 49, .external_lex_state = 14}, + [6811] = {.lex_state = 593, .external_lex_state = 85}, + [6812] = {.lex_state = 72, .external_lex_state = 80}, + [6813] = {.lex_state = 72, .external_lex_state = 87}, + [6814] = {.lex_state = 49, .external_lex_state = 14}, + [6815] = {.lex_state = 73, .external_lex_state = 14}, + [6816] = {.lex_state = 49, .external_lex_state = 14}, + [6817] = {.lex_state = 73, .external_lex_state = 14}, + [6818] = {.lex_state = 593, .external_lex_state = 85}, + [6819] = {.lex_state = 593, .external_lex_state = 80}, + [6820] = {.lex_state = 72, .external_lex_state = 87}, + [6821] = {.lex_state = 72, .external_lex_state = 87}, + [6822] = {.lex_state = 72, .external_lex_state = 87}, + [6823] = {.lex_state = 72, .external_lex_state = 87}, + [6824] = {.lex_state = 73, .external_lex_state = 14}, + [6825] = {.lex_state = 593, .external_lex_state = 83}, + [6826] = {.lex_state = 593, .external_lex_state = 80}, + [6827] = {.lex_state = 72, .external_lex_state = 87}, + [6828] = {.lex_state = 593, .external_lex_state = 80}, + [6829] = {.lex_state = 593, .external_lex_state = 80}, + [6830] = {.lex_state = 49, .external_lex_state = 14}, + [6831] = {.lex_state = 72, .external_lex_state = 87}, + [6832] = {.lex_state = 593, .external_lex_state = 85}, + [6833] = {.lex_state = 72, .external_lex_state = 80}, + [6834] = {.lex_state = 73, .external_lex_state = 14}, + [6835] = {.lex_state = 593, .external_lex_state = 80}, + [6836] = {.lex_state = 593, .external_lex_state = 76}, + [6837] = {.lex_state = 593, .external_lex_state = 32}, + [6838] = {.lex_state = 49, .external_lex_state = 14}, + [6839] = {.lex_state = 593, .external_lex_state = 93}, + [6840] = {.lex_state = 72, .external_lex_state = 80}, + [6841] = {.lex_state = 72, .external_lex_state = 87}, + [6842] = {.lex_state = 49, .external_lex_state = 14}, + [6843] = {.lex_state = 72, .external_lex_state = 80}, + [6844] = {.lex_state = 72, .external_lex_state = 80}, + [6845] = {.lex_state = 73, .external_lex_state = 14}, + [6846] = {.lex_state = 49, .external_lex_state = 14}, + [6847] = {.lex_state = 72, .external_lex_state = 87}, + [6848] = {.lex_state = 49, .external_lex_state = 14}, + [6849] = {.lex_state = 593, .external_lex_state = 81}, + [6850] = {.lex_state = 73, .external_lex_state = 14}, + [6851] = {.lex_state = 73, .external_lex_state = 14}, + [6852] = {.lex_state = 593, .external_lex_state = 32}, + [6853] = {.lex_state = 593, .external_lex_state = 93}, + [6854] = {.lex_state = 593, .external_lex_state = 80}, + [6855] = {.lex_state = 73, .external_lex_state = 14}, + [6856] = {.lex_state = 73, .external_lex_state = 14}, + [6857] = {.lex_state = 73, .external_lex_state = 14}, + [6858] = {.lex_state = 73, .external_lex_state = 14}, + [6859] = {.lex_state = 73, .external_lex_state = 14}, + [6860] = {.lex_state = 72, .external_lex_state = 87}, + [6861] = {.lex_state = 73, .external_lex_state = 14}, + [6862] = {.lex_state = 73, .external_lex_state = 14}, + [6863] = {.lex_state = 72, .external_lex_state = 87}, + [6864] = {.lex_state = 49, .external_lex_state = 14}, + [6865] = {.lex_state = 73, .external_lex_state = 14}, + [6866] = {.lex_state = 593, .external_lex_state = 81}, + [6867] = {.lex_state = 73, .external_lex_state = 14}, + [6868] = {.lex_state = 72, .external_lex_state = 80}, + [6869] = {.lex_state = 73, .external_lex_state = 14}, + [6870] = {.lex_state = 49, .external_lex_state = 14}, + [6871] = {.lex_state = 49, .external_lex_state = 14}, + [6872] = {.lex_state = 593, .external_lex_state = 91}, + [6873] = {.lex_state = 49, .external_lex_state = 14}, + [6874] = {.lex_state = 72, .external_lex_state = 80}, + [6875] = {.lex_state = 45, .external_lex_state = 14}, + [6876] = {.lex_state = 593, .external_lex_state = 91}, + [6877] = {.lex_state = 593, .external_lex_state = 80}, + [6878] = {.lex_state = 73, .external_lex_state = 14}, + [6879] = {.lex_state = 49, .external_lex_state = 14}, + [6880] = {.lex_state = 593, .external_lex_state = 85}, + [6881] = {.lex_state = 72, .external_lex_state = 80}, + [6882] = {.lex_state = 49, .external_lex_state = 14}, + [6883] = {.lex_state = 49, .external_lex_state = 14}, + [6884] = {.lex_state = 72, .external_lex_state = 87}, + [6885] = {.lex_state = 72, .external_lex_state = 87}, + [6886] = {.lex_state = 49, .external_lex_state = 14}, + [6887] = {.lex_state = 593, .external_lex_state = 76}, + [6888] = {.lex_state = 73, .external_lex_state = 14}, + [6889] = {.lex_state = 49, .external_lex_state = 14}, + [6890] = {.lex_state = 73, .external_lex_state = 14}, + [6891] = {.lex_state = 49, .external_lex_state = 14}, + [6892] = {.lex_state = 49, .external_lex_state = 14}, + [6893] = {.lex_state = 72, .external_lex_state = 87}, + [6894] = {.lex_state = 72, .external_lex_state = 87}, + [6895] = {.lex_state = 593, .external_lex_state = 81}, + [6896] = {.lex_state = 49, .external_lex_state = 14}, + [6897] = {.lex_state = 593, .external_lex_state = 91}, + [6898] = {.lex_state = 72, .external_lex_state = 80}, + [6899] = {.lex_state = 593, .external_lex_state = 91}, + [6900] = {.lex_state = 593, .external_lex_state = 91}, + [6901] = {.lex_state = 593, .external_lex_state = 91}, + [6902] = {.lex_state = 72, .external_lex_state = 87}, + [6903] = {.lex_state = 593, .external_lex_state = 80}, + [6904] = {.lex_state = 72, .external_lex_state = 80}, + [6905] = {.lex_state = 72, .external_lex_state = 87}, + [6906] = {.lex_state = 72, .external_lex_state = 87}, + [6907] = {.lex_state = 73, .external_lex_state = 14}, + [6908] = {.lex_state = 593, .external_lex_state = 84}, + [6909] = {.lex_state = 49, .external_lex_state = 14}, + [6910] = {.lex_state = 72, .external_lex_state = 14}, + [6911] = {.lex_state = 593, .external_lex_state = 80}, + [6912] = {.lex_state = 72, .external_lex_state = 80}, + [6913] = {.lex_state = 73, .external_lex_state = 14}, + [6914] = {.lex_state = 72, .external_lex_state = 80}, + [6915] = {.lex_state = 72, .external_lex_state = 80}, + [6916] = {.lex_state = 73, .external_lex_state = 14}, + [6917] = {.lex_state = 73, .external_lex_state = 14}, + [6918] = {.lex_state = 72, .external_lex_state = 80}, + [6919] = {.lex_state = 73, .external_lex_state = 14}, + [6920] = {.lex_state = 72, .external_lex_state = 80}, + [6921] = {.lex_state = 593, .external_lex_state = 91}, + [6922] = {.lex_state = 72, .external_lex_state = 80}, + [6923] = {.lex_state = 593, .external_lex_state = 14}, + [6924] = {.lex_state = 593, .external_lex_state = 94}, + [6925] = {.lex_state = 593, .external_lex_state = 93}, + [6926] = {.lex_state = 49, .external_lex_state = 14}, + [6927] = {.lex_state = 73, .external_lex_state = 14}, + [6928] = {.lex_state = 73, .external_lex_state = 14}, + [6929] = {.lex_state = 593, .external_lex_state = 86}, + [6930] = {.lex_state = 593, .external_lex_state = 91}, + [6931] = {.lex_state = 593, .external_lex_state = 80}, + [6932] = {.lex_state = 72, .external_lex_state = 80}, + [6933] = {.lex_state = 73, .external_lex_state = 14}, + [6934] = {.lex_state = 72, .external_lex_state = 87}, + [6935] = {.lex_state = 73, .external_lex_state = 14}, + [6936] = {.lex_state = 73, .external_lex_state = 14}, + [6937] = {.lex_state = 593, .external_lex_state = 93}, + [6938] = {.lex_state = 593, .external_lex_state = 91}, + [6939] = {.lex_state = 73, .external_lex_state = 14}, + [6940] = {.lex_state = 73, .external_lex_state = 14}, + [6941] = {.lex_state = 72, .external_lex_state = 80}, + [6942] = {.lex_state = 72, .external_lex_state = 87}, + [6943] = {.lex_state = 73, .external_lex_state = 14}, + [6944] = {.lex_state = 72, .external_lex_state = 80}, + [6945] = {.lex_state = 593, .external_lex_state = 91}, + [6946] = {.lex_state = 593, .external_lex_state = 93}, + [6947] = {.lex_state = 593, .external_lex_state = 84}, + [6948] = {.lex_state = 593, .external_lex_state = 91}, + [6949] = {.lex_state = 593, .external_lex_state = 91}, + [6950] = {.lex_state = 73, .external_lex_state = 14}, + [6951] = {.lex_state = 73, .external_lex_state = 14}, + [6952] = {.lex_state = 73, .external_lex_state = 14}, + [6953] = {.lex_state = 593, .external_lex_state = 91}, + [6954] = {.lex_state = 49, .external_lex_state = 14}, + [6955] = {.lex_state = 593, .external_lex_state = 91}, + [6956] = {.lex_state = 73, .external_lex_state = 14}, + [6957] = {.lex_state = 72, .external_lex_state = 80}, + [6958] = {.lex_state = 73, .external_lex_state = 14}, + [6959] = {.lex_state = 593, .external_lex_state = 91}, + [6960] = {.lex_state = 72, .external_lex_state = 87}, + [6961] = {.lex_state = 72, .external_lex_state = 87}, + [6962] = {.lex_state = 593, .external_lex_state = 14}, + [6963] = {.lex_state = 593, .external_lex_state = 80}, + [6964] = {.lex_state = 49, .external_lex_state = 14}, + [6965] = {.lex_state = 72, .external_lex_state = 86}, + [6966] = {.lex_state = 72, .external_lex_state = 86}, + [6967] = {.lex_state = 73, .external_lex_state = 14}, + [6968] = {.lex_state = 593, .external_lex_state = 93}, + [6969] = {.lex_state = 593, .external_lex_state = 14}, + [6970] = {.lex_state = 72, .external_lex_state = 80}, + [6971] = {.lex_state = 73, .external_lex_state = 14}, + [6972] = {.lex_state = 72, .external_lex_state = 87}, + [6973] = {.lex_state = 593, .external_lex_state = 80}, + [6974] = {.lex_state = 72, .external_lex_state = 87}, + [6975] = {.lex_state = 73, .external_lex_state = 14}, + [6976] = {.lex_state = 49, .external_lex_state = 14}, + [6977] = {.lex_state = 72, .external_lex_state = 80}, + [6978] = {.lex_state = 73, .external_lex_state = 14}, + [6979] = {.lex_state = 593, .external_lex_state = 80}, + [6980] = {.lex_state = 73, .external_lex_state = 14}, + [6981] = {.lex_state = 73, .external_lex_state = 14}, + [6982] = {.lex_state = 72, .external_lex_state = 87}, + [6983] = {.lex_state = 72, .external_lex_state = 87}, + [6984] = {.lex_state = 73, .external_lex_state = 14}, + [6985] = {.lex_state = 593, .external_lex_state = 91}, + [6986] = {.lex_state = 72, .external_lex_state = 87}, + [6987] = {.lex_state = 593, .external_lex_state = 89}, + [6988] = {.lex_state = 73, .external_lex_state = 14}, + [6989] = {.lex_state = 593, .external_lex_state = 91}, + [6990] = {.lex_state = 73, .external_lex_state = 14}, + [6991] = {.lex_state = 73, .external_lex_state = 14}, + [6992] = {.lex_state = 72, .external_lex_state = 80}, + [6993] = {.lex_state = 72, .external_lex_state = 80}, + [6994] = {.lex_state = 593, .external_lex_state = 14}, + [6995] = {.lex_state = 593, .external_lex_state = 80}, + [6996] = {.lex_state = 72, .external_lex_state = 80}, + [6997] = {.lex_state = 72, .external_lex_state = 80}, + [6998] = {.lex_state = 593, .external_lex_state = 14}, + [6999] = {.lex_state = 73, .external_lex_state = 14}, + [7000] = {.lex_state = 72, .external_lex_state = 80}, + [7001] = {.lex_state = 593, .external_lex_state = 80}, + [7002] = {.lex_state = 73, .external_lex_state = 14}, + [7003] = {.lex_state = 72, .external_lex_state = 80}, + [7004] = {.lex_state = 72, .external_lex_state = 87}, + [7005] = {.lex_state = 72, .external_lex_state = 87}, + [7006] = {.lex_state = 73, .external_lex_state = 14}, + [7007] = {.lex_state = 72, .external_lex_state = 87}, + [7008] = {.lex_state = 593, .external_lex_state = 87}, + [7009] = {.lex_state = 73, .external_lex_state = 14}, + [7010] = {.lex_state = 72, .external_lex_state = 87}, + [7011] = {.lex_state = 593, .external_lex_state = 91}, + [7012] = {.lex_state = 593, .external_lex_state = 74}, + [7013] = {.lex_state = 593, .external_lex_state = 91}, + [7014] = {.lex_state = 73, .external_lex_state = 14}, + [7015] = {.lex_state = 73, .external_lex_state = 14}, + [7016] = {.lex_state = 593, .external_lex_state = 91}, + [7017] = {.lex_state = 72, .external_lex_state = 87}, + [7018] = {.lex_state = 72, .external_lex_state = 14}, + [7019] = {.lex_state = 73, .external_lex_state = 14}, + [7020] = {.lex_state = 72, .external_lex_state = 87}, + [7021] = {.lex_state = 49, .external_lex_state = 14}, + [7022] = {.lex_state = 72, .external_lex_state = 80}, + [7023] = {.lex_state = 73, .external_lex_state = 14}, + [7024] = {.lex_state = 72, .external_lex_state = 87}, + [7025] = {.lex_state = 72, .external_lex_state = 87}, + [7026] = {.lex_state = 73, .external_lex_state = 14}, + [7027] = {.lex_state = 73, .external_lex_state = 14}, + [7028] = {.lex_state = 49, .external_lex_state = 14}, + [7029] = {.lex_state = 593, .external_lex_state = 91}, + [7030] = {.lex_state = 593, .external_lex_state = 91}, + [7031] = {.lex_state = 593, .external_lex_state = 93}, + [7032] = {.lex_state = 72, .external_lex_state = 80}, + [7033] = {.lex_state = 72, .external_lex_state = 80}, + [7034] = {.lex_state = 72, .external_lex_state = 80}, + [7035] = {.lex_state = 72, .external_lex_state = 80}, + [7036] = {.lex_state = 72, .external_lex_state = 80}, + [7037] = {.lex_state = 72, .external_lex_state = 80}, + [7038] = {.lex_state = 72, .external_lex_state = 80}, + [7039] = {.lex_state = 72, .external_lex_state = 80}, + [7040] = {.lex_state = 72, .external_lex_state = 80}, + [7041] = {.lex_state = 72, .external_lex_state = 80}, + [7042] = {.lex_state = 72, .external_lex_state = 80}, + [7043] = {.lex_state = 72, .external_lex_state = 80}, + [7044] = {.lex_state = 72, .external_lex_state = 80}, + [7045] = {.lex_state = 72, .external_lex_state = 80}, + [7046] = {.lex_state = 72, .external_lex_state = 14}, + [7047] = {.lex_state = 72, .external_lex_state = 80}, + [7048] = {.lex_state = 72, .external_lex_state = 80}, + [7049] = {.lex_state = 72, .external_lex_state = 80}, + [7050] = {.lex_state = 593, .external_lex_state = 83}, + [7051] = {.lex_state = 593, .external_lex_state = 81}, + [7052] = {.lex_state = 45, .external_lex_state = 80}, + [7053] = {.lex_state = 593, .external_lex_state = 80}, + [7054] = {.lex_state = 593, .external_lex_state = 86}, + [7055] = {.lex_state = 45, .external_lex_state = 80}, + [7056] = {.lex_state = 72, .external_lex_state = 87}, + [7057] = {.lex_state = 593, .external_lex_state = 82}, + [7058] = {.lex_state = 593, .external_lex_state = 82}, + [7059] = {.lex_state = 593, .external_lex_state = 86}, + [7060] = {.lex_state = 45, .external_lex_state = 80}, + [7061] = {.lex_state = 593, .external_lex_state = 82}, + [7062] = {.lex_state = 593, .external_lex_state = 86}, + [7063] = {.lex_state = 593, .external_lex_state = 82}, + [7064] = {.lex_state = 593, .external_lex_state = 92}, + [7065] = {.lex_state = 593, .external_lex_state = 14}, + [7066] = {.lex_state = 593, .external_lex_state = 83}, + [7067] = {.lex_state = 593, .external_lex_state = 83}, + [7068] = {.lex_state = 45, .external_lex_state = 80}, + [7069] = {.lex_state = 593, .external_lex_state = 80}, + [7070] = {.lex_state = 72, .external_lex_state = 87}, + [7071] = {.lex_state = 593, .external_lex_state = 86}, + [7072] = {.lex_state = 593, .external_lex_state = 14}, + [7073] = {.lex_state = 593, .external_lex_state = 14}, + [7074] = {.lex_state = 72, .external_lex_state = 87}, + [7075] = {.lex_state = 593, .external_lex_state = 14}, + [7076] = {.lex_state = 593, .external_lex_state = 14}, + [7077] = {.lex_state = 593, .external_lex_state = 83}, + [7078] = {.lex_state = 593, .external_lex_state = 86}, + [7079] = {.lex_state = 73, .external_lex_state = 14}, + [7080] = {.lex_state = 45, .external_lex_state = 80}, + [7081] = {.lex_state = 593, .external_lex_state = 83}, + [7082] = {.lex_state = 45, .external_lex_state = 80}, + [7083] = {.lex_state = 72, .external_lex_state = 14}, + [7084] = {.lex_state = 593, .external_lex_state = 83}, + [7085] = {.lex_state = 593, .external_lex_state = 83}, + [7086] = {.lex_state = 593, .external_lex_state = 86}, + [7087] = {.lex_state = 75, .external_lex_state = 14}, + [7088] = {.lex_state = 593, .external_lex_state = 86}, + [7089] = {.lex_state = 45, .external_lex_state = 80}, + [7090] = {.lex_state = 593, .external_lex_state = 83}, + [7091] = {.lex_state = 593, .external_lex_state = 83}, + [7092] = {.lex_state = 593, .external_lex_state = 87}, + [7093] = {.lex_state = 45, .external_lex_state = 80}, + [7094] = {.lex_state = 593, .external_lex_state = 32}, + [7095] = {.lex_state = 593, .external_lex_state = 14}, + [7096] = {.lex_state = 593, .external_lex_state = 14}, + [7097] = {.lex_state = 593, .external_lex_state = 83}, + [7098] = {.lex_state = 593, .external_lex_state = 83}, + [7099] = {.lex_state = 593, .external_lex_state = 80}, + [7100] = {.lex_state = 45, .external_lex_state = 80}, + [7101] = {.lex_state = 45, .external_lex_state = 80}, + [7102] = {.lex_state = 45, .external_lex_state = 91}, + [7103] = {.lex_state = 45, .external_lex_state = 80}, + [7104] = {.lex_state = 45, .external_lex_state = 80}, + [7105] = {.lex_state = 593, .external_lex_state = 80}, + [7106] = {.lex_state = 45, .external_lex_state = 80}, + [7107] = {.lex_state = 72, .external_lex_state = 87}, + [7108] = {.lex_state = 72, .external_lex_state = 87}, + [7109] = {.lex_state = 45, .external_lex_state = 80}, + [7110] = {.lex_state = 593, .external_lex_state = 83}, + [7111] = {.lex_state = 593, .external_lex_state = 80}, + [7112] = {.lex_state = 72, .external_lex_state = 14}, + [7113] = {.lex_state = 72, .external_lex_state = 14}, + [7114] = {.lex_state = 593, .external_lex_state = 86}, + [7115] = {.lex_state = 593, .external_lex_state = 83}, + [7116] = {.lex_state = 593, .external_lex_state = 86}, + [7117] = {.lex_state = 593, .external_lex_state = 14}, + [7118] = {.lex_state = 593, .external_lex_state = 83}, + [7119] = {.lex_state = 45, .external_lex_state = 80}, + [7120] = {.lex_state = 72, .external_lex_state = 87}, + [7121] = {.lex_state = 72, .external_lex_state = 87}, + [7122] = {.lex_state = 45, .external_lex_state = 80}, + [7123] = {.lex_state = 593, .external_lex_state = 80}, + [7124] = {.lex_state = 593, .external_lex_state = 83}, + [7125] = {.lex_state = 593, .external_lex_state = 83}, + [7126] = {.lex_state = 593, .external_lex_state = 83}, + [7127] = {.lex_state = 593, .external_lex_state = 83}, + [7128] = {.lex_state = 45, .external_lex_state = 80}, + [7129] = {.lex_state = 593, .external_lex_state = 82}, + [7130] = {.lex_state = 593, .external_lex_state = 80}, + [7131] = {.lex_state = 593, .external_lex_state = 14}, + [7132] = {.lex_state = 593, .external_lex_state = 32}, + [7133] = {.lex_state = 593, .external_lex_state = 32}, + [7134] = {.lex_state = 45, .external_lex_state = 80}, + [7135] = {.lex_state = 593, .external_lex_state = 83}, + [7136] = {.lex_state = 72, .external_lex_state = 14}, + [7137] = {.lex_state = 593, .external_lex_state = 83}, + [7138] = {.lex_state = 72, .external_lex_state = 87}, + [7139] = {.lex_state = 593, .external_lex_state = 76}, + [7140] = {.lex_state = 593, .external_lex_state = 83}, + [7141] = {.lex_state = 593, .external_lex_state = 83}, + [7142] = {.lex_state = 72, .external_lex_state = 14}, + [7143] = {.lex_state = 45, .external_lex_state = 80}, + [7144] = {.lex_state = 45, .external_lex_state = 80}, + [7145] = {.lex_state = 593, .external_lex_state = 83}, + [7146] = {.lex_state = 593, .external_lex_state = 32}, + [7147] = {.lex_state = 45, .external_lex_state = 80}, + [7148] = {.lex_state = 593, .external_lex_state = 86}, + [7149] = {.lex_state = 593, .external_lex_state = 76}, + [7150] = {.lex_state = 45, .external_lex_state = 80}, + [7151] = {.lex_state = 593, .external_lex_state = 86}, + [7152] = {.lex_state = 593, .external_lex_state = 86}, + [7153] = {.lex_state = 593, .external_lex_state = 76}, + [7154] = {.lex_state = 593, .external_lex_state = 86}, + [7155] = {.lex_state = 593, .external_lex_state = 86}, + [7156] = {.lex_state = 45, .external_lex_state = 80}, + [7157] = {.lex_state = 593, .external_lex_state = 81}, + [7158] = {.lex_state = 72, .external_lex_state = 87}, + [7159] = {.lex_state = 72, .external_lex_state = 87}, + [7160] = {.lex_state = 593, .external_lex_state = 83}, + [7161] = {.lex_state = 593, .external_lex_state = 83}, + [7162] = {.lex_state = 593, .external_lex_state = 83}, + [7163] = {.lex_state = 593, .external_lex_state = 83}, + [7164] = {.lex_state = 72, .external_lex_state = 87}, + [7165] = {.lex_state = 593, .external_lex_state = 14}, + [7166] = {.lex_state = 45, .external_lex_state = 80}, + [7167] = {.lex_state = 593, .external_lex_state = 86}, + [7168] = {.lex_state = 593, .external_lex_state = 14}, + [7169] = {.lex_state = 593, .external_lex_state = 14}, + [7170] = {.lex_state = 593, .external_lex_state = 83}, + [7171] = {.lex_state = 593, .external_lex_state = 80}, + [7172] = {.lex_state = 45, .external_lex_state = 80}, + [7173] = {.lex_state = 593, .external_lex_state = 80}, + [7174] = {.lex_state = 75, .external_lex_state = 14}, + [7175] = {.lex_state = 593, .external_lex_state = 86}, + [7176] = {.lex_state = 593, .external_lex_state = 86}, + [7177] = {.lex_state = 593, .external_lex_state = 80}, + [7178] = {.lex_state = 593, .external_lex_state = 14}, + [7179] = {.lex_state = 593, .external_lex_state = 82}, + [7180] = {.lex_state = 593, .external_lex_state = 81}, + [7181] = {.lex_state = 593, .external_lex_state = 83}, + [7182] = {.lex_state = 593, .external_lex_state = 83}, + [7183] = {.lex_state = 45, .external_lex_state = 80}, + [7184] = {.lex_state = 45, .external_lex_state = 80}, + [7185] = {.lex_state = 72, .external_lex_state = 87}, + [7186] = {.lex_state = 593, .external_lex_state = 82}, + [7187] = {.lex_state = 45, .external_lex_state = 14}, + [7188] = {.lex_state = 593, .external_lex_state = 14}, + [7189] = {.lex_state = 593, .external_lex_state = 81}, + [7190] = {.lex_state = 593, .external_lex_state = 86}, + [7191] = {.lex_state = 593, .external_lex_state = 86}, + [7192] = {.lex_state = 593, .external_lex_state = 86}, + [7193] = {.lex_state = 593, .external_lex_state = 32}, + [7194] = {.lex_state = 593, .external_lex_state = 83}, + [7195] = {.lex_state = 45, .external_lex_state = 80}, + [7196] = {.lex_state = 593, .external_lex_state = 83}, + [7197] = {.lex_state = 45, .external_lex_state = 80}, + [7198] = {.lex_state = 593, .external_lex_state = 83}, + [7199] = {.lex_state = 593, .external_lex_state = 83}, + [7200] = {.lex_state = 45, .external_lex_state = 80}, + [7201] = {.lex_state = 593, .external_lex_state = 87}, + [7202] = {.lex_state = 593, .external_lex_state = 82}, + [7203] = {.lex_state = 45, .external_lex_state = 80}, + [7204] = {.lex_state = 593, .external_lex_state = 83}, + [7205] = {.lex_state = 593, .external_lex_state = 83}, + [7206] = {.lex_state = 593, .external_lex_state = 83}, + [7207] = {.lex_state = 593, .external_lex_state = 83}, + [7208] = {.lex_state = 593, .external_lex_state = 80}, + [7209] = {.lex_state = 593, .external_lex_state = 80}, + [7210] = {.lex_state = 593, .external_lex_state = 83}, + [7211] = {.lex_state = 593, .external_lex_state = 83}, + [7212] = {.lex_state = 593, .external_lex_state = 81}, + [7213] = {.lex_state = 593, .external_lex_state = 83}, + [7214] = {.lex_state = 593, .external_lex_state = 81}, + [7215] = {.lex_state = 593, .external_lex_state = 83}, + [7216] = {.lex_state = 593, .external_lex_state = 80}, + [7217] = {.lex_state = 593, .external_lex_state = 81}, + [7218] = {.lex_state = 593, .external_lex_state = 83}, + [7219] = {.lex_state = 593, .external_lex_state = 86}, + [7220] = {.lex_state = 593, .external_lex_state = 83}, + [7221] = {.lex_state = 593, .external_lex_state = 83}, + [7222] = {.lex_state = 593, .external_lex_state = 83}, + [7223] = {.lex_state = 593, .external_lex_state = 86}, + [7224] = {.lex_state = 45, .external_lex_state = 80}, + [7225] = {.lex_state = 593, .external_lex_state = 84}, + [7226] = {.lex_state = 593, .external_lex_state = 83}, + [7227] = {.lex_state = 72, .external_lex_state = 87}, + [7228] = {.lex_state = 45, .external_lex_state = 80}, + [7229] = {.lex_state = 593, .external_lex_state = 86}, + [7230] = {.lex_state = 593, .external_lex_state = 80}, + [7231] = {.lex_state = 72, .external_lex_state = 14}, + [7232] = {.lex_state = 49, .external_lex_state = 14}, + [7233] = {.lex_state = 593, .external_lex_state = 32}, + [7234] = {.lex_state = 45, .external_lex_state = 80}, + [7235] = {.lex_state = 593, .external_lex_state = 14}, + [7236] = {.lex_state = 593, .external_lex_state = 83}, + [7237] = {.lex_state = 72, .external_lex_state = 14}, + [7238] = {.lex_state = 593, .external_lex_state = 86}, + [7239] = {.lex_state = 45, .external_lex_state = 80}, + [7240] = {.lex_state = 45, .external_lex_state = 80}, + [7241] = {.lex_state = 593, .external_lex_state = 83}, + [7242] = {.lex_state = 593, .external_lex_state = 32}, + [7243] = {.lex_state = 593, .external_lex_state = 86}, + [7244] = {.lex_state = 593, .external_lex_state = 14}, + [7245] = {.lex_state = 593, .external_lex_state = 14}, + [7246] = {.lex_state = 593, .external_lex_state = 83}, + [7247] = {.lex_state = 593, .external_lex_state = 86}, + [7248] = {.lex_state = 593, .external_lex_state = 83}, + [7249] = {.lex_state = 593, .external_lex_state = 14}, + [7250] = {.lex_state = 593, .external_lex_state = 86}, + [7251] = {.lex_state = 593, .external_lex_state = 86}, + [7252] = {.lex_state = 593, .external_lex_state = 86}, + [7253] = {.lex_state = 593, .external_lex_state = 32}, + [7254] = {.lex_state = 593, .external_lex_state = 82}, + [7255] = {.lex_state = 45, .external_lex_state = 80}, + [7256] = {.lex_state = 593, .external_lex_state = 86}, + [7257] = {.lex_state = 593, .external_lex_state = 80}, + [7258] = {.lex_state = 45, .external_lex_state = 80}, + [7259] = {.lex_state = 45, .external_lex_state = 80}, + [7260] = {.lex_state = 593, .external_lex_state = 86}, + [7261] = {.lex_state = 45, .external_lex_state = 80}, + [7262] = {.lex_state = 593, .external_lex_state = 81}, + [7263] = {.lex_state = 593, .external_lex_state = 83}, + [7264] = {.lex_state = 593, .external_lex_state = 32}, + [7265] = {.lex_state = 72, .external_lex_state = 87}, + [7266] = {.lex_state = 593, .external_lex_state = 86}, + [7267] = {.lex_state = 72, .external_lex_state = 87}, + [7268] = {.lex_state = 72, .external_lex_state = 14}, + [7269] = {.lex_state = 45, .external_lex_state = 80}, + [7270] = {.lex_state = 593, .external_lex_state = 80}, + [7271] = {.lex_state = 593, .external_lex_state = 80}, + [7272] = {.lex_state = 593, .external_lex_state = 14}, + [7273] = {.lex_state = 593, .external_lex_state = 86}, + [7274] = {.lex_state = 593, .external_lex_state = 83}, + [7275] = {.lex_state = 593, .external_lex_state = 83}, + [7276] = {.lex_state = 593, .external_lex_state = 83}, + [7277] = {.lex_state = 45, .external_lex_state = 80}, + [7278] = {.lex_state = 45, .external_lex_state = 80}, + [7279] = {.lex_state = 593, .external_lex_state = 86}, + [7280] = {.lex_state = 593, .external_lex_state = 83}, + [7281] = {.lex_state = 45, .external_lex_state = 80}, + [7282] = {.lex_state = 593, .external_lex_state = 83}, + [7283] = {.lex_state = 72, .external_lex_state = 87}, + [7284] = {.lex_state = 593, .external_lex_state = 86}, + [7285] = {.lex_state = 593, .external_lex_state = 83}, + [7286] = {.lex_state = 593, .external_lex_state = 83}, + [7287] = {.lex_state = 593, .external_lex_state = 83}, + [7288] = {.lex_state = 593, .external_lex_state = 83}, + [7289] = {.lex_state = 593, .external_lex_state = 82}, + [7290] = {.lex_state = 45, .external_lex_state = 80}, + [7291] = {.lex_state = 593, .external_lex_state = 86}, + [7292] = {.lex_state = 593, .external_lex_state = 86}, + [7293] = {.lex_state = 593, .external_lex_state = 86}, + [7294] = {.lex_state = 593, .external_lex_state = 83}, + [7295] = {.lex_state = 593, .external_lex_state = 83}, + [7296] = {.lex_state = 72, .external_lex_state = 87}, + [7297] = {.lex_state = 593, .external_lex_state = 83}, + [7298] = {.lex_state = 593, .external_lex_state = 83}, + [7299] = {.lex_state = 593, .external_lex_state = 86}, + [7300] = {.lex_state = 593, .external_lex_state = 83}, + [7301] = {.lex_state = 45, .external_lex_state = 80}, + [7302] = {.lex_state = 593, .external_lex_state = 32}, + [7303] = {.lex_state = 45, .external_lex_state = 80}, + [7304] = {.lex_state = 593, .external_lex_state = 86}, + [7305] = {.lex_state = 45, .external_lex_state = 80}, + [7306] = {.lex_state = 593, .external_lex_state = 86}, + [7307] = {.lex_state = 593, .external_lex_state = 83}, + [7308] = {.lex_state = 593, .external_lex_state = 86}, + [7309] = {.lex_state = 593, .external_lex_state = 92}, + [7310] = {.lex_state = 593, .external_lex_state = 83}, + [7311] = {.lex_state = 593, .external_lex_state = 83}, + [7312] = {.lex_state = 45, .external_lex_state = 80}, + [7313] = {.lex_state = 593, .external_lex_state = 83}, + [7314] = {.lex_state = 45, .external_lex_state = 80}, + [7315] = {.lex_state = 593, .external_lex_state = 86}, + [7316] = {.lex_state = 593, .external_lex_state = 86}, + [7317] = {.lex_state = 593, .external_lex_state = 86}, + [7318] = {.lex_state = 593, .external_lex_state = 86}, + [7319] = {.lex_state = 593, .external_lex_state = 86}, + [7320] = {.lex_state = 593, .external_lex_state = 86}, + [7321] = {.lex_state = 593, .external_lex_state = 86}, + [7322] = {.lex_state = 593, .external_lex_state = 83}, + [7323] = {.lex_state = 593, .external_lex_state = 86}, + [7324] = {.lex_state = 593, .external_lex_state = 86}, + [7325] = {.lex_state = 593, .external_lex_state = 86}, + [7326] = {.lex_state = 593, .external_lex_state = 86}, + [7327] = {.lex_state = 45, .external_lex_state = 80}, + [7328] = {.lex_state = 593, .external_lex_state = 83}, + [7329] = {.lex_state = 593, .external_lex_state = 86}, + [7330] = {.lex_state = 593, .external_lex_state = 82}, + [7331] = {.lex_state = 593, .external_lex_state = 86}, + [7332] = {.lex_state = 593, .external_lex_state = 83}, + [7333] = {.lex_state = 593, .external_lex_state = 82}, + [7334] = {.lex_state = 593, .external_lex_state = 82}, + [7335] = {.lex_state = 45, .external_lex_state = 80}, + [7336] = {.lex_state = 593, .external_lex_state = 86}, + [7337] = {.lex_state = 593, .external_lex_state = 85}, + [7338] = {.lex_state = 45, .external_lex_state = 80}, + [7339] = {.lex_state = 593, .external_lex_state = 14}, + [7340] = {.lex_state = 593, .external_lex_state = 86}, + [7341] = {.lex_state = 593, .external_lex_state = 86}, + [7342] = {.lex_state = 593, .external_lex_state = 83}, + [7343] = {.lex_state = 593, .external_lex_state = 86}, + [7344] = {.lex_state = 593, .external_lex_state = 32}, + [7345] = {.lex_state = 593, .external_lex_state = 82}, + [7346] = {.lex_state = 593, .external_lex_state = 86}, + [7347] = {.lex_state = 593, .external_lex_state = 83}, + [7348] = {.lex_state = 593, .external_lex_state = 86}, + [7349] = {.lex_state = 593, .external_lex_state = 86}, + [7350] = {.lex_state = 593, .external_lex_state = 86}, + [7351] = {.lex_state = 593, .external_lex_state = 86}, + [7352] = {.lex_state = 45, .external_lex_state = 80}, + [7353] = {.lex_state = 593, .external_lex_state = 80}, + [7354] = {.lex_state = 593, .external_lex_state = 14}, + [7355] = {.lex_state = 593, .external_lex_state = 14}, + [7356] = {.lex_state = 593, .external_lex_state = 14}, + [7357] = {.lex_state = 593, .external_lex_state = 14}, + [7358] = {.lex_state = 45, .external_lex_state = 14}, + [7359] = {.lex_state = 593, .external_lex_state = 14}, + [7360] = {.lex_state = 593, .external_lex_state = 83}, + [7361] = {.lex_state = 593, .external_lex_state = 80}, + [7362] = {.lex_state = 593, .external_lex_state = 83}, + [7363] = {.lex_state = 593, .external_lex_state = 14}, + [7364] = {.lex_state = 593, .external_lex_state = 80}, + [7365] = {.lex_state = 593, .external_lex_state = 83}, + [7366] = {.lex_state = 593, .external_lex_state = 14}, + [7367] = {.lex_state = 593, .external_lex_state = 14}, + [7368] = {.lex_state = 593, .external_lex_state = 14}, + [7369] = {.lex_state = 593, .external_lex_state = 14}, + [7370] = {.lex_state = 593, .external_lex_state = 80}, + [7371] = {.lex_state = 593, .external_lex_state = 83}, + [7372] = {.lex_state = 593, .external_lex_state = 83}, + [7373] = {.lex_state = 45, .external_lex_state = 14}, + [7374] = {.lex_state = 593, .external_lex_state = 14}, + [7375] = {.lex_state = 593, .external_lex_state = 83}, + [7376] = {.lex_state = 593, .external_lex_state = 14}, + [7377] = {.lex_state = 593, .external_lex_state = 14}, + [7378] = {.lex_state = 593, .external_lex_state = 14}, + [7379] = {.lex_state = 593, .external_lex_state = 14}, + [7380] = {.lex_state = 593, .external_lex_state = 14}, + [7381] = {.lex_state = 593, .external_lex_state = 14}, + [7382] = {.lex_state = 593, .external_lex_state = 14}, + [7383] = {.lex_state = 593, .external_lex_state = 14}, + [7384] = {.lex_state = 45, .external_lex_state = 14}, + [7385] = {.lex_state = 593, .external_lex_state = 14}, + [7386] = {.lex_state = 593, .external_lex_state = 14}, + [7387] = {.lex_state = 593, .external_lex_state = 14}, + [7388] = {.lex_state = 593, .external_lex_state = 14}, + [7389] = {.lex_state = 593, .external_lex_state = 14}, + [7390] = {.lex_state = 45, .external_lex_state = 14}, + [7391] = {.lex_state = 593, .external_lex_state = 14}, + [7392] = {.lex_state = 593, .external_lex_state = 14}, + [7393] = {.lex_state = 593, .external_lex_state = 14}, + [7394] = {.lex_state = 593, .external_lex_state = 14}, + [7395] = {.lex_state = 593, .external_lex_state = 80}, + [7396] = {.lex_state = 593, .external_lex_state = 83}, + [7397] = {.lex_state = 593, .external_lex_state = 14}, + [7398] = {.lex_state = 45, .external_lex_state = 14}, + [7399] = {.lex_state = 593, .external_lex_state = 14}, + [7400] = {.lex_state = 593, .external_lex_state = 14}, + [7401] = {.lex_state = 593, .external_lex_state = 14}, + [7402] = {.lex_state = 593, .external_lex_state = 14}, + [7403] = {.lex_state = 593, .external_lex_state = 14}, + [7404] = {.lex_state = 593, .external_lex_state = 14}, + [7405] = {.lex_state = 593, .external_lex_state = 14}, + [7406] = {.lex_state = 593, .external_lex_state = 76}, + [7407] = {.lex_state = 593, .external_lex_state = 14}, + [7408] = {.lex_state = 593, .external_lex_state = 14}, + [7409] = {.lex_state = 593, .external_lex_state = 80}, + [7410] = {.lex_state = 593, .external_lex_state = 14}, + [7411] = {.lex_state = 593, .external_lex_state = 14}, + [7412] = {.lex_state = 593, .external_lex_state = 14}, + [7413] = {.lex_state = 593, .external_lex_state = 14}, + [7414] = {.lex_state = 593, .external_lex_state = 14}, + [7415] = {.lex_state = 593, .external_lex_state = 14}, + [7416] = {.lex_state = 593, .external_lex_state = 14}, + [7417] = {.lex_state = 593, .external_lex_state = 14}, + [7418] = {.lex_state = 593, .external_lex_state = 14}, + [7419] = {.lex_state = 593, .external_lex_state = 14}, + [7420] = {.lex_state = 593, .external_lex_state = 14}, + [7421] = {.lex_state = 593, .external_lex_state = 14}, + [7422] = {.lex_state = 593, .external_lex_state = 14}, + [7423] = {.lex_state = 593, .external_lex_state = 95}, + [7424] = {.lex_state = 593, .external_lex_state = 14}, + [7425] = {.lex_state = 593, .external_lex_state = 14}, + [7426] = {.lex_state = 593, .external_lex_state = 14}, + [7427] = {.lex_state = 593, .external_lex_state = 14}, + [7428] = {.lex_state = 593, .external_lex_state = 14}, + [7429] = {.lex_state = 593, .external_lex_state = 14}, + [7430] = {.lex_state = 593, .external_lex_state = 14}, + [7431] = {.lex_state = 593, .external_lex_state = 14}, + [7432] = {.lex_state = 593, .external_lex_state = 14}, + [7433] = {.lex_state = 593, .external_lex_state = 14}, + [7434] = {.lex_state = 593, .external_lex_state = 14}, + [7435] = {.lex_state = 593, .external_lex_state = 14}, + [7436] = {.lex_state = 593, .external_lex_state = 14}, + [7437] = {.lex_state = 593, .external_lex_state = 14}, + [7438] = {.lex_state = 593, .external_lex_state = 14}, + [7439] = {.lex_state = 593, .external_lex_state = 14}, + [7440] = {.lex_state = 593, .external_lex_state = 14}, + [7441] = {.lex_state = 593, .external_lex_state = 14}, + [7442] = {.lex_state = 593, .external_lex_state = 14}, + [7443] = {.lex_state = 593, .external_lex_state = 14}, + [7444] = {.lex_state = 593, .external_lex_state = 14}, + [7445] = {.lex_state = 593, .external_lex_state = 14}, + [7446] = {.lex_state = 593, .external_lex_state = 14}, + [7447] = {.lex_state = 593, .external_lex_state = 14}, + [7448] = {.lex_state = 593, .external_lex_state = 14}, + [7449] = {.lex_state = 593, .external_lex_state = 14}, + [7450] = {.lex_state = 593, .external_lex_state = 14}, + [7451] = {.lex_state = 593, .external_lex_state = 14}, + [7452] = {.lex_state = 593, .external_lex_state = 14}, + [7453] = {.lex_state = 593, .external_lex_state = 14}, + [7454] = {.lex_state = 593, .external_lex_state = 14}, + [7455] = {.lex_state = 45, .external_lex_state = 14}, + [7456] = {.lex_state = 593, .external_lex_state = 14}, + [7457] = {.lex_state = 593, .external_lex_state = 14}, + [7458] = {.lex_state = 593, .external_lex_state = 14}, + [7459] = {.lex_state = 593, .external_lex_state = 14}, + [7460] = {.lex_state = 593, .external_lex_state = 14}, + [7461] = {.lex_state = 593, .external_lex_state = 14}, + [7462] = {.lex_state = 593, .external_lex_state = 14}, + [7463] = {.lex_state = 593, .external_lex_state = 14}, + [7464] = {.lex_state = 593, .external_lex_state = 14}, + [7465] = {.lex_state = 593, .external_lex_state = 83}, + [7466] = {.lex_state = 593, .external_lex_state = 14}, + [7467] = {.lex_state = 593, .external_lex_state = 14}, + [7468] = {.lex_state = 593, .external_lex_state = 14}, + [7469] = {.lex_state = 593, .external_lex_state = 14}, + [7470] = {.lex_state = 45, .external_lex_state = 14}, + [7471] = {.lex_state = 45, .external_lex_state = 96}, + [7472] = {.lex_state = 593, .external_lex_state = 14}, + [7473] = {.lex_state = 593, .external_lex_state = 14}, + [7474] = {.lex_state = 593, .external_lex_state = 14}, + [7475] = {.lex_state = 593, .external_lex_state = 14}, + [7476] = {.lex_state = 593, .external_lex_state = 14}, + [7477] = {.lex_state = 593, .external_lex_state = 14}, + [7478] = {.lex_state = 593, .external_lex_state = 14}, + [7479] = {.lex_state = 593, .external_lex_state = 14}, + [7480] = {.lex_state = 593, .external_lex_state = 14}, + [7481] = {.lex_state = 593, .external_lex_state = 80}, + [7482] = {.lex_state = 593, .external_lex_state = 83}, + [7483] = {.lex_state = 593, .external_lex_state = 14}, + [7484] = {.lex_state = 593, .external_lex_state = 14}, + [7485] = {.lex_state = 45, .external_lex_state = 14}, + [7486] = {.lex_state = 593, .external_lex_state = 14}, + [7487] = {.lex_state = 593, .external_lex_state = 14}, + [7488] = {.lex_state = 593, .external_lex_state = 14}, + [7489] = {.lex_state = 593, .external_lex_state = 14}, + [7490] = {.lex_state = 593, .external_lex_state = 14}, + [7491] = {.lex_state = 593, .external_lex_state = 14}, + [7492] = {.lex_state = 593, .external_lex_state = 80}, + [7493] = {.lex_state = 593, .external_lex_state = 14}, + [7494] = {.lex_state = 593, .external_lex_state = 14}, + [7495] = {.lex_state = 593, .external_lex_state = 87}, + [7496] = {.lex_state = 593, .external_lex_state = 14}, + [7497] = {.lex_state = 593, .external_lex_state = 14}, + [7498] = {.lex_state = 593, .external_lex_state = 14}, + [7499] = {.lex_state = 593, .external_lex_state = 14}, + [7500] = {.lex_state = 593, .external_lex_state = 14}, + [7501] = {.lex_state = 593, .external_lex_state = 14}, + [7502] = {.lex_state = 593, .external_lex_state = 14}, + [7503] = {.lex_state = 593, .external_lex_state = 14}, + [7504] = {.lex_state = 593, .external_lex_state = 14}, + [7505] = {.lex_state = 593, .external_lex_state = 14}, + [7506] = {.lex_state = 593, .external_lex_state = 14}, + [7507] = {.lex_state = 593, .external_lex_state = 14}, + [7508] = {.lex_state = 593, .external_lex_state = 14}, + [7509] = {.lex_state = 593, .external_lex_state = 14}, + [7510] = {.lex_state = 593, .external_lex_state = 86}, + [7511] = {.lex_state = 593, .external_lex_state = 86}, + [7512] = {.lex_state = 45, .external_lex_state = 14}, + [7513] = {.lex_state = 593, .external_lex_state = 14}, + [7514] = {.lex_state = 593, .external_lex_state = 14}, + [7515] = {.lex_state = 593, .external_lex_state = 14}, + [7516] = {.lex_state = 593, .external_lex_state = 14}, + [7517] = {.lex_state = 593, .external_lex_state = 87}, + [7518] = {.lex_state = 593, .external_lex_state = 14}, + [7519] = {.lex_state = 593, .external_lex_state = 83}, + [7520] = {.lex_state = 593, .external_lex_state = 83}, + [7521] = {.lex_state = 593, .external_lex_state = 32}, + [7522] = {.lex_state = 593, .external_lex_state = 83}, + [7523] = {.lex_state = 593, .external_lex_state = 14}, + [7524] = {.lex_state = 593, .external_lex_state = 83}, + [7525] = {.lex_state = 593, .external_lex_state = 83}, + [7526] = {.lex_state = 593, .external_lex_state = 14}, + [7527] = {.lex_state = 593, .external_lex_state = 14}, + [7528] = {.lex_state = 593, .external_lex_state = 14}, + [7529] = {.lex_state = 593, .external_lex_state = 14}, + [7530] = {.lex_state = 593, .external_lex_state = 83}, + [7531] = {.lex_state = 593, .external_lex_state = 14}, + [7532] = {.lex_state = 593, .external_lex_state = 14}, + [7533] = {.lex_state = 593, .external_lex_state = 14}, + [7534] = {.lex_state = 593, .external_lex_state = 14}, + [7535] = {.lex_state = 593, .external_lex_state = 80}, + [7536] = {.lex_state = 593, .external_lex_state = 14}, + [7537] = {.lex_state = 593, .external_lex_state = 83}, + [7538] = {.lex_state = 593, .external_lex_state = 14}, + [7539] = {.lex_state = 593, .external_lex_state = 14}, + [7540] = {.lex_state = 593, .external_lex_state = 14}, + [7541] = {.lex_state = 593, .external_lex_state = 87}, + [7542] = {.lex_state = 593, .external_lex_state = 14}, + [7543] = {.lex_state = 593, .external_lex_state = 83}, + [7544] = {.lex_state = 593, .external_lex_state = 14}, + [7545] = {.lex_state = 593, .external_lex_state = 14}, + [7546] = {.lex_state = 593, .external_lex_state = 14}, + [7547] = {.lex_state = 593, .external_lex_state = 14}, + [7548] = {.lex_state = 593, .external_lex_state = 14}, + [7549] = {.lex_state = 593, .external_lex_state = 14}, + [7550] = {.lex_state = 593, .external_lex_state = 14}, + [7551] = {.lex_state = 593, .external_lex_state = 14}, + [7552] = {.lex_state = 45, .external_lex_state = 14}, + [7553] = {.lex_state = 593, .external_lex_state = 83}, + [7554] = {.lex_state = 45, .external_lex_state = 14}, + [7555] = {.lex_state = 593, .external_lex_state = 14}, + [7556] = {.lex_state = 593, .external_lex_state = 14}, + [7557] = {.lex_state = 593, .external_lex_state = 14}, + [7558] = {.lex_state = 593, .external_lex_state = 87}, + [7559] = {.lex_state = 593, .external_lex_state = 87}, + [7560] = {.lex_state = 593, .external_lex_state = 14}, + [7561] = {.lex_state = 593, .external_lex_state = 97}, + [7562] = {.lex_state = 593, .external_lex_state = 14}, + [7563] = {.lex_state = 593, .external_lex_state = 83}, + [7564] = {.lex_state = 593, .external_lex_state = 25}, + [7565] = {.lex_state = 593, .external_lex_state = 87}, + [7566] = {.lex_state = 593, .external_lex_state = 14}, + [7567] = {.lex_state = 593, .external_lex_state = 14}, + [7568] = {.lex_state = 593, .external_lex_state = 14}, + [7569] = {.lex_state = 593, .external_lex_state = 87}, + [7570] = {.lex_state = 593, .external_lex_state = 14}, + [7571] = {.lex_state = 593, .external_lex_state = 14}, + [7572] = {.lex_state = 45, .external_lex_state = 14}, + [7573] = {.lex_state = 593, .external_lex_state = 98}, + [7574] = {.lex_state = 593, .external_lex_state = 80}, + [7575] = {.lex_state = 593, .external_lex_state = 14}, + [7576] = {.lex_state = 593, .external_lex_state = 14}, + [7577] = {.lex_state = 593, .external_lex_state = 14}, + [7578] = {.lex_state = 593, .external_lex_state = 14}, + [7579] = {.lex_state = 593, .external_lex_state = 14}, + [7580] = {.lex_state = 593, .external_lex_state = 14}, + [7581] = {.lex_state = 593, .external_lex_state = 14}, + [7582] = {.lex_state = 593, .external_lex_state = 14}, + [7583] = {.lex_state = 593, .external_lex_state = 97}, + [7584] = {.lex_state = 593, .external_lex_state = 94}, + [7585] = {.lex_state = 593, .external_lex_state = 99}, + [7586] = {.lex_state = 593, .external_lex_state = 14}, + [7587] = {.lex_state = 45, .external_lex_state = 14}, + [7588] = {.lex_state = 593, .external_lex_state = 25}, + [7589] = {.lex_state = 593, .external_lex_state = 80}, + [7590] = {.lex_state = 593, .external_lex_state = 14}, + [7591] = {.lex_state = 593, .external_lex_state = 87}, + [7592] = {.lex_state = 593, .external_lex_state = 80}, + [7593] = {.lex_state = 593, .external_lex_state = 83}, + [7594] = {.lex_state = 593, .external_lex_state = 14}, + [7595] = {.lex_state = 593, .external_lex_state = 98}, + [7596] = {.lex_state = 45, .external_lex_state = 14}, + [7597] = {.lex_state = 593, .external_lex_state = 14}, + [7598] = {.lex_state = 593, .external_lex_state = 87}, + [7599] = {.lex_state = 593, .external_lex_state = 14}, + [7600] = {.lex_state = 45, .external_lex_state = 14}, + [7601] = {.lex_state = 593, .external_lex_state = 14}, + [7602] = {.lex_state = 593, .external_lex_state = 83}, + [7603] = {.lex_state = 593, .external_lex_state = 14}, + [7604] = {.lex_state = 593, .external_lex_state = 14}, + [7605] = {.lex_state = 593, .external_lex_state = 80}, + [7606] = {.lex_state = 593, .external_lex_state = 80}, + [7607] = {.lex_state = 593, .external_lex_state = 14}, + [7608] = {.lex_state = 593, .external_lex_state = 83}, + [7609] = {.lex_state = 593, .external_lex_state = 83}, + [7610] = {.lex_state = 593, .external_lex_state = 14}, + [7611] = {.lex_state = 593, .external_lex_state = 14}, + [7612] = {.lex_state = 45, .external_lex_state = 14}, + [7613] = {.lex_state = 45, .external_lex_state = 14}, + [7614] = {.lex_state = 593, .external_lex_state = 14}, + [7615] = {.lex_state = 593, .external_lex_state = 14}, + [7616] = {.lex_state = 593, .external_lex_state = 14}, + [7617] = {.lex_state = 593, .external_lex_state = 14}, + [7618] = {.lex_state = 45, .external_lex_state = 14}, + [7619] = {.lex_state = 593, .external_lex_state = 14}, + [7620] = {.lex_state = 593, .external_lex_state = 14}, + [7621] = {.lex_state = 593, .external_lex_state = 14}, + [7622] = {.lex_state = 593, .external_lex_state = 83}, + [7623] = {.lex_state = 593, .external_lex_state = 14}, + [7624] = {.lex_state = 593, .external_lex_state = 14}, + [7625] = {.lex_state = 593, .external_lex_state = 14}, + [7626] = {.lex_state = 45, .external_lex_state = 96}, + [7627] = {.lex_state = 45, .external_lex_state = 14}, + [7628] = {.lex_state = 593, .external_lex_state = 86}, + [7629] = {.lex_state = 593, .external_lex_state = 86}, + [7630] = {.lex_state = 593, .external_lex_state = 32}, + [7631] = {.lex_state = 593, .external_lex_state = 14}, + [7632] = {.lex_state = 593, .external_lex_state = 14}, + [7633] = {.lex_state = 593, .external_lex_state = 32}, + [7634] = {.lex_state = 593, .external_lex_state = 94}, + [7635] = {.lex_state = 593, .external_lex_state = 14}, + [7636] = {.lex_state = 593, .external_lex_state = 14}, + [7637] = {.lex_state = 593, .external_lex_state = 14}, + [7638] = {.lex_state = 593, .external_lex_state = 94}, + [7639] = {.lex_state = 45, .external_lex_state = 14}, + [7640] = {.lex_state = 45, .external_lex_state = 14}, + [7641] = {.lex_state = 593, .external_lex_state = 14}, + [7642] = {.lex_state = 593, .external_lex_state = 14}, + [7643] = {.lex_state = 593, .external_lex_state = 14}, + [7644] = {.lex_state = 45, .external_lex_state = 14}, + [7645] = {.lex_state = 593, .external_lex_state = 14}, + [7646] = {.lex_state = 593, .external_lex_state = 14}, + [7647] = {.lex_state = 593, .external_lex_state = 14}, + [7648] = {.lex_state = 593, .external_lex_state = 14}, + [7649] = {.lex_state = 593, .external_lex_state = 14}, + [7650] = {.lex_state = 593, .external_lex_state = 14}, + [7651] = {.lex_state = 593, .external_lex_state = 14}, + [7652] = {.lex_state = 593, .external_lex_state = 14}, + [7653] = {.lex_state = 593, .external_lex_state = 14}, + [7654] = {.lex_state = 593, .external_lex_state = 80}, + [7655] = {.lex_state = 593, .external_lex_state = 80}, + [7656] = {.lex_state = 593, .external_lex_state = 14}, + [7657] = {.lex_state = 593, .external_lex_state = 80}, + [7658] = {.lex_state = 593, .external_lex_state = 14}, + [7659] = {.lex_state = 593, .external_lex_state = 99}, + [7660] = {.lex_state = 593, .external_lex_state = 14}, + [7661] = {.lex_state = 593, .external_lex_state = 14}, + [7662] = {.lex_state = 593, .external_lex_state = 14}, + [7663] = {.lex_state = 593, .external_lex_state = 83}, + [7664] = {.lex_state = 593, .external_lex_state = 14}, + [7665] = {.lex_state = 593, .external_lex_state = 14}, + [7666] = {.lex_state = 593, .external_lex_state = 14}, + [7667] = {.lex_state = 593, .external_lex_state = 14}, + [7668] = {.lex_state = 593, .external_lex_state = 14}, + [7669] = {.lex_state = 593, .external_lex_state = 14}, + [7670] = {.lex_state = 593, .external_lex_state = 99}, + [7671] = {.lex_state = 45, .external_lex_state = 14}, + [7672] = {.lex_state = 593, .external_lex_state = 14}, + [7673] = {.lex_state = 593, .external_lex_state = 14}, + [7674] = {.lex_state = 593, .external_lex_state = 14}, + [7675] = {.lex_state = 593, .external_lex_state = 14}, + [7676] = {.lex_state = 593, .external_lex_state = 94}, + [7677] = {.lex_state = 593, .external_lex_state = 87}, + [7678] = {.lex_state = 593, .external_lex_state = 87}, + [7679] = {.lex_state = 593, .external_lex_state = 14}, + [7680] = {.lex_state = 593, .external_lex_state = 14}, + [7681] = {.lex_state = 593, .external_lex_state = 14}, + [7682] = {.lex_state = 593, .external_lex_state = 14}, + [7683] = {.lex_state = 593, .external_lex_state = 14}, + [7684] = {.lex_state = 45, .external_lex_state = 14}, + [7685] = {.lex_state = 593, .external_lex_state = 14}, + [7686] = {.lex_state = 593, .external_lex_state = 14}, + [7687] = {.lex_state = 45, .external_lex_state = 14}, + [7688] = {.lex_state = 593, .external_lex_state = 14}, + [7689] = {.lex_state = 593, .external_lex_state = 14}, + [7690] = {.lex_state = 593, .external_lex_state = 14}, + [7691] = {.lex_state = 593, .external_lex_state = 14}, + [7692] = {.lex_state = 45, .external_lex_state = 14}, + [7693] = {.lex_state = 593, .external_lex_state = 14}, + [7694] = {.lex_state = 593, .external_lex_state = 14}, + [7695] = {.lex_state = 593, .external_lex_state = 14}, + [7696] = {.lex_state = 593, .external_lex_state = 14}, + [7697] = {.lex_state = 593, .external_lex_state = 14}, + [7698] = {.lex_state = 593, .external_lex_state = 14}, + [7699] = {.lex_state = 593, .external_lex_state = 80}, + [7700] = {.lex_state = 593, .external_lex_state = 14}, + [7701] = {.lex_state = 593, .external_lex_state = 14}, + [7702] = {.lex_state = 45, .external_lex_state = 14}, + [7703] = {.lex_state = 593, .external_lex_state = 14}, + [7704] = {.lex_state = 593, .external_lex_state = 14}, + [7705] = {.lex_state = 593, .external_lex_state = 14}, + [7706] = {.lex_state = 593, .external_lex_state = 83}, + [7707] = {.lex_state = 593, .external_lex_state = 14}, + [7708] = {.lex_state = 593, .external_lex_state = 14}, + [7709] = {.lex_state = 593, .external_lex_state = 14}, + [7710] = {.lex_state = 593, .external_lex_state = 14}, + [7711] = {.lex_state = 593, .external_lex_state = 14}, + [7712] = {.lex_state = 593, .external_lex_state = 14}, + [7713] = {.lex_state = 45, .external_lex_state = 14}, + [7714] = {.lex_state = 593, .external_lex_state = 94}, + [7715] = {.lex_state = 593, .external_lex_state = 86}, + [7716] = {.lex_state = 593, .external_lex_state = 14}, + [7717] = {.lex_state = 593, .external_lex_state = 83}, + [7718] = {.lex_state = 593, .external_lex_state = 83}, + [7719] = {.lex_state = 593, .external_lex_state = 14}, + [7720] = {.lex_state = 593, .external_lex_state = 14}, + [7721] = {.lex_state = 593, .external_lex_state = 14}, + [7722] = {.lex_state = 593, .external_lex_state = 14}, + [7723] = {.lex_state = 593, .external_lex_state = 14}, + [7724] = {.lex_state = 593, .external_lex_state = 14}, + [7725] = {.lex_state = 593, .external_lex_state = 14}, + [7726] = {.lex_state = 593, .external_lex_state = 14}, + [7727] = {.lex_state = 593, .external_lex_state = 14}, + [7728] = {.lex_state = 593, .external_lex_state = 83}, + [7729] = {.lex_state = 593, .external_lex_state = 87}, + [7730] = {.lex_state = 593, .external_lex_state = 14}, + [7731] = {.lex_state = 593, .external_lex_state = 97}, + [7732] = {.lex_state = 593, .external_lex_state = 14}, + [7733] = {.lex_state = 593, .external_lex_state = 14}, + [7734] = {.lex_state = 593, .external_lex_state = 86}, + [7735] = {.lex_state = 593, .external_lex_state = 14}, + [7736] = {.lex_state = 593, .external_lex_state = 14}, + [7737] = {.lex_state = 593, .external_lex_state = 14}, + [7738] = {.lex_state = 593, .external_lex_state = 14}, + [7739] = {.lex_state = 593, .external_lex_state = 14}, + [7740] = {.lex_state = 593, .external_lex_state = 14}, + [7741] = {.lex_state = 593, .external_lex_state = 14}, + [7742] = {.lex_state = 593, .external_lex_state = 14}, + [7743] = {.lex_state = 593, .external_lex_state = 14}, + [7744] = {.lex_state = 45, .external_lex_state = 14}, + [7745] = {.lex_state = 593, .external_lex_state = 86}, + [7746] = {.lex_state = 593, .external_lex_state = 83}, + [7747] = {.lex_state = 593, .external_lex_state = 14}, + [7748] = {.lex_state = 593, .external_lex_state = 87}, + [7749] = {.lex_state = 593, .external_lex_state = 14}, + [7750] = {.lex_state = 593, .external_lex_state = 86}, + [7751] = {.lex_state = 593, .external_lex_state = 14}, + [7752] = {.lex_state = 593, .external_lex_state = 14}, + [7753] = {.lex_state = 593, .external_lex_state = 14}, + [7754] = {.lex_state = 593, .external_lex_state = 14}, + [7755] = {.lex_state = 593, .external_lex_state = 14}, + [7756] = {.lex_state = 593, .external_lex_state = 82}, + [7757] = {.lex_state = 593, .external_lex_state = 14}, + [7758] = {.lex_state = 593, .external_lex_state = 14}, + [7759] = {.lex_state = 593, .external_lex_state = 14}, + [7760] = {.lex_state = 593, .external_lex_state = 14}, + [7761] = {.lex_state = 593, .external_lex_state = 14}, + [7762] = {.lex_state = 45, .external_lex_state = 14}, + [7763] = {.lex_state = 593, .external_lex_state = 14}, + [7764] = {.lex_state = 593, .external_lex_state = 83}, + [7765] = {.lex_state = 593, .external_lex_state = 14}, + [7766] = {.lex_state = 593, .external_lex_state = 83}, + [7767] = {.lex_state = 593, .external_lex_state = 86}, + [7768] = {.lex_state = 593, .external_lex_state = 14}, + [7769] = {.lex_state = 593, .external_lex_state = 80}, + [7770] = {.lex_state = 593, .external_lex_state = 80}, + [7771] = {.lex_state = 45, .external_lex_state = 14}, + [7772] = {.lex_state = 593, .external_lex_state = 82}, + [7773] = {.lex_state = 593, .external_lex_state = 14}, + [7774] = {.lex_state = 593, .external_lex_state = 14}, + [7775] = {.lex_state = 593, .external_lex_state = 14}, + [7776] = {.lex_state = 593, .external_lex_state = 82}, + [7777] = {.lex_state = 593, .external_lex_state = 14}, + [7778] = {.lex_state = 593, .external_lex_state = 82}, + [7779] = {.lex_state = 45, .external_lex_state = 14}, + [7780] = {.lex_state = 593, .external_lex_state = 87}, + [7781] = {.lex_state = 593, .external_lex_state = 82}, + [7782] = {.lex_state = 593, .external_lex_state = 82}, + [7783] = {.lex_state = 593, .external_lex_state = 14}, + [7784] = {.lex_state = 593, .external_lex_state = 14}, + [7785] = {.lex_state = 593, .external_lex_state = 14}, + [7786] = {.lex_state = 593, .external_lex_state = 14}, + [7787] = {.lex_state = 593, .external_lex_state = 97}, + [7788] = {.lex_state = 593, .external_lex_state = 87}, + [7789] = {.lex_state = 593, .external_lex_state = 14}, + [7790] = {.lex_state = 593, .external_lex_state = 14}, + [7791] = {.lex_state = 593, .external_lex_state = 25}, + [7792] = {.lex_state = 593, .external_lex_state = 14}, + [7793] = {.lex_state = 593, .external_lex_state = 82}, + [7794] = {.lex_state = 593, .external_lex_state = 14}, + [7795] = {.lex_state = 593, .external_lex_state = 14}, + [7796] = {.lex_state = 593, .external_lex_state = 14}, + [7797] = {.lex_state = 593, .external_lex_state = 14}, + [7798] = {.lex_state = 593, .external_lex_state = 14}, + [7799] = {.lex_state = 593, .external_lex_state = 14}, + [7800] = {.lex_state = 593, .external_lex_state = 14}, + [7801] = {.lex_state = 593, .external_lex_state = 82}, + [7802] = {.lex_state = 593, .external_lex_state = 14}, + [7803] = {.lex_state = 593, .external_lex_state = 14}, + [7804] = {.lex_state = 593, .external_lex_state = 14}, + [7805] = {.lex_state = 593, .external_lex_state = 14}, + [7806] = {.lex_state = 593, .external_lex_state = 14}, + [7807] = {.lex_state = 593, .external_lex_state = 14}, + [7808] = {.lex_state = 593, .external_lex_state = 14}, + [7809] = {.lex_state = 593, .external_lex_state = 14}, + [7810] = {.lex_state = 593, .external_lex_state = 82}, + [7811] = {.lex_state = 593, .external_lex_state = 14}, + [7812] = {.lex_state = 593, .external_lex_state = 14}, + [7813] = {.lex_state = 593, .external_lex_state = 14}, + [7814] = {.lex_state = 45, .external_lex_state = 14}, + [7815] = {.lex_state = 593, .external_lex_state = 14}, + [7816] = {.lex_state = 593, .external_lex_state = 14}, + [7817] = {.lex_state = 593, .external_lex_state = 14}, + [7818] = {.lex_state = 593, .external_lex_state = 14}, + [7819] = {.lex_state = 593, .external_lex_state = 14}, + [7820] = {.lex_state = 593, .external_lex_state = 14}, + [7821] = {.lex_state = 593, .external_lex_state = 14}, + [7822] = {.lex_state = 593, .external_lex_state = 14}, + [7823] = {.lex_state = 593, .external_lex_state = 14}, + [7824] = {.lex_state = 593, .external_lex_state = 14}, + [7825] = {.lex_state = 593, .external_lex_state = 82}, + [7826] = {.lex_state = 593, .external_lex_state = 14}, + [7827] = {.lex_state = 593, .external_lex_state = 14}, + [7828] = {.lex_state = 593, .external_lex_state = 14}, + [7829] = {.lex_state = 593, .external_lex_state = 14}, + [7830] = {.lex_state = 45, .external_lex_state = 14}, + [7831] = {.lex_state = 593, .external_lex_state = 14}, + [7832] = {.lex_state = 593, .external_lex_state = 14}, + [7833] = {.lex_state = 593, .external_lex_state = 14}, + [7834] = {.lex_state = 593, .external_lex_state = 14}, + [7835] = {.lex_state = 593, .external_lex_state = 14}, + [7836] = {.lex_state = 593, .external_lex_state = 14}, + [7837] = {.lex_state = 593, .external_lex_state = 14}, + [7838] = {.lex_state = 593, .external_lex_state = 14}, + [7839] = {.lex_state = 593, .external_lex_state = 14}, + [7840] = {.lex_state = 593, .external_lex_state = 14}, + [7841] = {.lex_state = 593, .external_lex_state = 14}, + [7842] = {.lex_state = 593, .external_lex_state = 14}, + [7843] = {.lex_state = 593, .external_lex_state = 14}, + [7844] = {.lex_state = 593, .external_lex_state = 14}, + [7845] = {.lex_state = 593, .external_lex_state = 14}, + [7846] = {.lex_state = 593, .external_lex_state = 90}, + [7847] = {.lex_state = 593, .external_lex_state = 32}, + [7848] = {.lex_state = 593, .external_lex_state = 14}, + [7849] = {.lex_state = 593, .external_lex_state = 83}, + [7850] = {.lex_state = 593, .external_lex_state = 14}, + [7851] = {.lex_state = 593, .external_lex_state = 14}, + [7852] = {.lex_state = 593, .external_lex_state = 14}, + [7853] = {.lex_state = 593, .external_lex_state = 14}, + [7854] = {.lex_state = 593, .external_lex_state = 14}, + [7855] = {.lex_state = 593, .external_lex_state = 82}, + [7856] = {.lex_state = 593, .external_lex_state = 14}, + [7857] = {.lex_state = 593, .external_lex_state = 14}, + [7858] = {.lex_state = 593, .external_lex_state = 14}, + [7859] = {.lex_state = 593, .external_lex_state = 14}, + [7860] = {.lex_state = 593, .external_lex_state = 14}, + [7861] = {.lex_state = 593, .external_lex_state = 14}, + [7862] = {.lex_state = 593, .external_lex_state = 14}, + [7863] = {.lex_state = 593, .external_lex_state = 14}, + [7864] = {.lex_state = 593, .external_lex_state = 80}, + [7865] = {.lex_state = 593, .external_lex_state = 83}, + [7866] = {.lex_state = 593, .external_lex_state = 14}, + [7867] = {.lex_state = 593, .external_lex_state = 99}, + [7868] = {.lex_state = 593, .external_lex_state = 32}, + [7869] = {.lex_state = 593, .external_lex_state = 83}, + [7870] = {.lex_state = 593, .external_lex_state = 82}, + [7871] = {.lex_state = 593, .external_lex_state = 14}, + [7872] = {.lex_state = 45, .external_lex_state = 14}, + [7873] = {.lex_state = 593, .external_lex_state = 14}, + [7874] = {.lex_state = 593, .external_lex_state = 14}, + [7875] = {.lex_state = 593, .external_lex_state = 14}, + [7876] = {.lex_state = 45, .external_lex_state = 14}, + [7877] = {.lex_state = 593, .external_lex_state = 14}, + [7878] = {.lex_state = 593, .external_lex_state = 14}, + [7879] = {.lex_state = 593, .external_lex_state = 14}, + [7880] = {.lex_state = 593, .external_lex_state = 14}, + [7881] = {.lex_state = 593, .external_lex_state = 14}, + [7882] = {.lex_state = 593, .external_lex_state = 14}, + [7883] = {.lex_state = 593, .external_lex_state = 14}, + [7884] = {.lex_state = 593, .external_lex_state = 14}, + [7885] = {.lex_state = 593, .external_lex_state = 80}, + [7886] = {.lex_state = 593, .external_lex_state = 14}, + [7887] = {.lex_state = 45, .external_lex_state = 96}, + [7888] = {.lex_state = 593, .external_lex_state = 14}, + [7889] = {.lex_state = 593, .external_lex_state = 87}, + [7890] = {.lex_state = 593, .external_lex_state = 14}, + [7891] = {.lex_state = 593, .external_lex_state = 86}, + [7892] = {.lex_state = 593, .external_lex_state = 14}, + [7893] = {.lex_state = 593, .external_lex_state = 14}, + [7894] = {.lex_state = 593, .external_lex_state = 86}, + [7895] = {.lex_state = 593, .external_lex_state = 14}, + [7896] = {.lex_state = 593, .external_lex_state = 14}, + [7897] = {.lex_state = 593, .external_lex_state = 80}, + [7898] = {.lex_state = 593, .external_lex_state = 14}, + [7899] = {.lex_state = 593, .external_lex_state = 83}, + [7900] = {.lex_state = 593, .external_lex_state = 14}, + [7901] = {.lex_state = 593, .external_lex_state = 14}, + [7902] = {.lex_state = 593, .external_lex_state = 14}, + [7903] = {.lex_state = 593, .external_lex_state = 14}, + [7904] = {.lex_state = 593, .external_lex_state = 14}, + [7905] = {.lex_state = 593, .external_lex_state = 14}, + [7906] = {.lex_state = 593, .external_lex_state = 80}, + [7907] = {.lex_state = 593, .external_lex_state = 14}, + [7908] = {.lex_state = 593, .external_lex_state = 80}, + [7909] = {.lex_state = 593, .external_lex_state = 14}, + [7910] = {.lex_state = 45, .external_lex_state = 14}, + [7911] = {.lex_state = 593, .external_lex_state = 14}, + [7912] = {.lex_state = 593, .external_lex_state = 14}, + [7913] = {.lex_state = 593, .external_lex_state = 14}, + [7914] = {.lex_state = 45, .external_lex_state = 14}, + [7915] = {.lex_state = 593, .external_lex_state = 14}, + [7916] = {.lex_state = 593, .external_lex_state = 14}, + [7917] = {.lex_state = 593, .external_lex_state = 14}, + [7918] = {.lex_state = 45, .external_lex_state = 14}, + [7919] = {.lex_state = 593, .external_lex_state = 14}, + [7920] = {.lex_state = 593, .external_lex_state = 14}, + [7921] = {.lex_state = 593, .external_lex_state = 14}, + [7922] = {.lex_state = 593, .external_lex_state = 14}, + [7923] = {.lex_state = 593, .external_lex_state = 83}, + [7924] = {.lex_state = 593, .external_lex_state = 14}, + [7925] = {.lex_state = 593, .external_lex_state = 83}, + [7926] = {.lex_state = 593, .external_lex_state = 14}, + [7927] = {.lex_state = 593, .external_lex_state = 83}, + [7928] = {.lex_state = 593, .external_lex_state = 83}, + [7929] = {.lex_state = 593, .external_lex_state = 14}, + [7930] = {.lex_state = 593, .external_lex_state = 14}, + [7931] = {.lex_state = 593, .external_lex_state = 83}, + [7932] = {.lex_state = 593, .external_lex_state = 83}, + [7933] = {.lex_state = 593, .external_lex_state = 14}, + [7934] = {.lex_state = 593, .external_lex_state = 14}, + [7935] = {.lex_state = 593, .external_lex_state = 90}, + [7936] = {.lex_state = 593, .external_lex_state = 87}, + [7937] = {.lex_state = 45, .external_lex_state = 14}, + [7938] = {.lex_state = 593, .external_lex_state = 14}, + [7939] = {.lex_state = 45, .external_lex_state = 14}, + [7940] = {.lex_state = 45, .external_lex_state = 14}, + [7941] = {.lex_state = 593, .external_lex_state = 83}, + [7942] = {.lex_state = 593, .external_lex_state = 80}, + [7943] = {.lex_state = 593, .external_lex_state = 14}, + [7944] = {.lex_state = 593, .external_lex_state = 14}, + [7945] = {.lex_state = 593, .external_lex_state = 14}, + [7946] = {.lex_state = 593, .external_lex_state = 80}, + [7947] = {.lex_state = 45, .external_lex_state = 14}, + [7948] = {.lex_state = 593, .external_lex_state = 14}, + [7949] = {.lex_state = 593, .external_lex_state = 14}, + [7950] = {.lex_state = 593, .external_lex_state = 14}, + [7951] = {.lex_state = 45, .external_lex_state = 14}, + [7952] = {.lex_state = 593, .external_lex_state = 14}, + [7953] = {.lex_state = 593, .external_lex_state = 14}, + [7954] = {.lex_state = 593, .external_lex_state = 14}, + [7955] = {.lex_state = 45, .external_lex_state = 14}, + [7956] = {.lex_state = 593, .external_lex_state = 99}, + [7957] = {.lex_state = 593, .external_lex_state = 80}, + [7958] = {.lex_state = 593, .external_lex_state = 14}, + [7959] = {.lex_state = 593, .external_lex_state = 80}, + [7960] = {.lex_state = 593, .external_lex_state = 95}, + [7961] = {.lex_state = 593, .external_lex_state = 97}, + [7962] = {.lex_state = 45, .external_lex_state = 14}, + [7963] = {.lex_state = 593, .external_lex_state = 14}, + [7964] = {.lex_state = 593, .external_lex_state = 14}, + [7965] = {.lex_state = 593, .external_lex_state = 14}, + [7966] = {.lex_state = 593, .external_lex_state = 14}, + [7967] = {.lex_state = 593, .external_lex_state = 14}, + [7968] = {.lex_state = 593, .external_lex_state = 14}, + [7969] = {.lex_state = 593, .external_lex_state = 25}, + [7970] = {.lex_state = 593, .external_lex_state = 14}, + [7971] = {.lex_state = 593, .external_lex_state = 14}, + [7972] = {.lex_state = 45, .external_lex_state = 14}, + [7973] = {.lex_state = 593, .external_lex_state = 14}, + [7974] = {.lex_state = 593, .external_lex_state = 14}, + [7975] = {.lex_state = 593, .external_lex_state = 86}, + [7976] = {.lex_state = 593, .external_lex_state = 14}, + [7977] = {.lex_state = 45, .external_lex_state = 14}, + [7978] = {.lex_state = 593, .external_lex_state = 83}, + [7979] = {.lex_state = 593, .external_lex_state = 86}, + [7980] = {.lex_state = 75, .external_lex_state = 14}, + [7981] = {.lex_state = 593, .external_lex_state = 25}, + [7982] = {.lex_state = 593, .external_lex_state = 14}, + [7983] = {.lex_state = 593, .external_lex_state = 14}, + [7984] = {.lex_state = 593, .external_lex_state = 14}, + [7985] = {.lex_state = 593, .external_lex_state = 97}, + [7986] = {.lex_state = 593, .external_lex_state = 94}, + [7987] = {.lex_state = 593, .external_lex_state = 14}, + [7988] = {.lex_state = 45, .external_lex_state = 14}, + [7989] = {.lex_state = 593, .external_lex_state = 14}, + [7990] = {.lex_state = 45, .external_lex_state = 14}, + [7991] = {.lex_state = 593, .external_lex_state = 14}, + [7992] = {.lex_state = 593, .external_lex_state = 14}, + [7993] = {.lex_state = 45, .external_lex_state = 14}, + [7994] = {.lex_state = 593, .external_lex_state = 83}, + [7995] = {.lex_state = 593, .external_lex_state = 14}, + [7996] = {.lex_state = 593, .external_lex_state = 14}, + [7997] = {.lex_state = 593, .external_lex_state = 14}, + [7998] = {.lex_state = 593, .external_lex_state = 14}, + [7999] = {.lex_state = 45, .external_lex_state = 14}, + [8000] = {.lex_state = 593, .external_lex_state = 14}, + [8001] = {.lex_state = 593, .external_lex_state = 14}, + [8002] = {.lex_state = 593, .external_lex_state = 14}, + [8003] = {.lex_state = 593, .external_lex_state = 14}, + [8004] = {.lex_state = 593, .external_lex_state = 14}, + [8005] = {.lex_state = 593, .external_lex_state = 86}, + [8006] = {.lex_state = 593, .external_lex_state = 83}, + [8007] = {.lex_state = 593, .external_lex_state = 14}, + [8008] = {.lex_state = 593, .external_lex_state = 90}, + [8009] = {.lex_state = 593, .external_lex_state = 83}, + [8010] = {.lex_state = 593, .external_lex_state = 14}, + [8011] = {.lex_state = 593, .external_lex_state = 14}, + [8012] = {.lex_state = 593, .external_lex_state = 14}, + [8013] = {.lex_state = 593, .external_lex_state = 14}, + [8014] = {.lex_state = 45, .external_lex_state = 14}, + [8015] = {.lex_state = 593, .external_lex_state = 14}, + [8016] = {.lex_state = 593, .external_lex_state = 80}, + [8017] = {.lex_state = 593, .external_lex_state = 14}, + [8018] = {.lex_state = 593, .external_lex_state = 14}, + [8019] = {.lex_state = 45, .external_lex_state = 14}, + [8020] = {.lex_state = 593, .external_lex_state = 14}, + [8021] = {.lex_state = 593, .external_lex_state = 14}, + [8022] = {.lex_state = 593, .external_lex_state = 83}, + [8023] = {.lex_state = 593, .external_lex_state = 14}, + [8024] = {.lex_state = 593, .external_lex_state = 14}, + [8025] = {.lex_state = 593, .external_lex_state = 14}, + [8026] = {.lex_state = 593, .external_lex_state = 83}, + [8027] = {.lex_state = 593, .external_lex_state = 80}, + [8028] = {.lex_state = 593, .external_lex_state = 14}, + [8029] = {.lex_state = 593, .external_lex_state = 14}, + [8030] = {.lex_state = 593, .external_lex_state = 14}, + [8031] = {.lex_state = 593, .external_lex_state = 14}, + [8032] = {.lex_state = 593, .external_lex_state = 14}, + [8033] = {.lex_state = 593, .external_lex_state = 14}, + [8034] = {.lex_state = 593, .external_lex_state = 82}, + [8035] = {.lex_state = 593, .external_lex_state = 83}, + [8036] = {.lex_state = 593, .external_lex_state = 82}, + [8037] = {.lex_state = 593, .external_lex_state = 14}, + [8038] = {.lex_state = 593, .external_lex_state = 14}, + [8039] = {.lex_state = 593, .external_lex_state = 14}, + [8040] = {.lex_state = 593, .external_lex_state = 83}, + [8041] = {.lex_state = 593, .external_lex_state = 14}, + [8042] = {.lex_state = 593, .external_lex_state = 14}, + [8043] = {.lex_state = 593, .external_lex_state = 14}, + [8044] = {.lex_state = 593, .external_lex_state = 14}, + [8045] = {.lex_state = 593, .external_lex_state = 83}, + [8046] = {.lex_state = 593, .external_lex_state = 90}, + [8047] = {.lex_state = 593, .external_lex_state = 87}, + [8048] = {.lex_state = 593, .external_lex_state = 14}, + [8049] = {.lex_state = 593, .external_lex_state = 14}, + [8050] = {.lex_state = 593, .external_lex_state = 14}, + [8051] = {.lex_state = 593, .external_lex_state = 83}, + [8052] = {.lex_state = 593, .external_lex_state = 80}, + [8053] = {.lex_state = 593, .external_lex_state = 14}, + [8054] = {.lex_state = 45, .external_lex_state = 14}, + [8055] = {.lex_state = 593, .external_lex_state = 14}, + [8056] = {.lex_state = 593, .external_lex_state = 14}, + [8057] = {.lex_state = 593, .external_lex_state = 14}, + [8058] = {.lex_state = 593, .external_lex_state = 14}, + [8059] = {.lex_state = 593, .external_lex_state = 14}, + [8060] = {.lex_state = 593, .external_lex_state = 14}, + [8061] = {.lex_state = 45, .external_lex_state = 14}, + [8062] = {.lex_state = 593, .external_lex_state = 14}, + [8063] = {.lex_state = 593, .external_lex_state = 86}, + [8064] = {.lex_state = 593, .external_lex_state = 86}, + [8065] = {.lex_state = 593, .external_lex_state = 14}, + [8066] = {.lex_state = 593, .external_lex_state = 86}, + [8067] = {.lex_state = 593, .external_lex_state = 14}, + [8068] = {.lex_state = 593, .external_lex_state = 14}, + [8069] = {.lex_state = 593, .external_lex_state = 14}, + [8070] = {.lex_state = 593, .external_lex_state = 14}, + [8071] = {.lex_state = 593, .external_lex_state = 32}, + [8072] = {.lex_state = 593, .external_lex_state = 14}, + [8073] = {.lex_state = 593, .external_lex_state = 14}, + [8074] = {.lex_state = 593, .external_lex_state = 98}, + [8075] = {.lex_state = 593, .external_lex_state = 14}, + [8076] = {.lex_state = 593, .external_lex_state = 14}, + [8077] = {.lex_state = 593, .external_lex_state = 14}, + [8078] = {.lex_state = 593, .external_lex_state = 14}, + [8079] = {.lex_state = 593, .external_lex_state = 14}, + [8080] = {.lex_state = 593, .external_lex_state = 86}, + [8081] = {.lex_state = 593, .external_lex_state = 86}, + [8082] = {.lex_state = 593, .external_lex_state = 83}, + [8083] = {.lex_state = 593, .external_lex_state = 14}, + [8084] = {.lex_state = 593, .external_lex_state = 14}, + [8085] = {.lex_state = 593, .external_lex_state = 83}, + [8086] = {.lex_state = 593, .external_lex_state = 86}, + [8087] = {.lex_state = 593, .external_lex_state = 14}, + [8088] = {.lex_state = 45, .external_lex_state = 14}, + [8089] = {.lex_state = 593, .external_lex_state = 14}, + [8090] = {.lex_state = 593, .external_lex_state = 86}, + [8091] = {.lex_state = 593, .external_lex_state = 14}, + [8092] = {.lex_state = 593, .external_lex_state = 14}, + [8093] = {.lex_state = 593, .external_lex_state = 82}, + [8094] = {.lex_state = 593, .external_lex_state = 97}, + [8095] = {.lex_state = 593, .external_lex_state = 14}, + [8096] = {.lex_state = 593, .external_lex_state = 86}, + [8097] = {.lex_state = 593, .external_lex_state = 83}, + [8098] = {.lex_state = 593, .external_lex_state = 86}, + [8099] = {.lex_state = 593, .external_lex_state = 25}, + [8100] = {.lex_state = 593, .external_lex_state = 82}, + [8101] = {.lex_state = 593, .external_lex_state = 14}, + [8102] = {.lex_state = 593, .external_lex_state = 14}, + [8103] = {.lex_state = 593, .external_lex_state = 14}, + [8104] = {.lex_state = 593, .external_lex_state = 14}, + [8105] = {.lex_state = 45, .external_lex_state = 14}, + [8106] = {.lex_state = 45, .external_lex_state = 14}, + [8107] = {.lex_state = 593, .external_lex_state = 82}, + [8108] = {.lex_state = 593, .external_lex_state = 14}, + [8109] = {.lex_state = 45, .external_lex_state = 14}, + [8110] = {.lex_state = 593, .external_lex_state = 14}, + [8111] = {.lex_state = 45, .external_lex_state = 14}, + [8112] = {.lex_state = 45, .external_lex_state = 96}, + [8113] = {.lex_state = 593, .external_lex_state = 14}, + [8114] = {.lex_state = 593, .external_lex_state = 14}, + [8115] = {.lex_state = 593, .external_lex_state = 14}, + [8116] = {.lex_state = 593, .external_lex_state = 14}, + [8117] = {.lex_state = 593, .external_lex_state = 83}, + [8118] = {.lex_state = 593, .external_lex_state = 14}, + [8119] = {.lex_state = 593, .external_lex_state = 14}, + [8120] = {.lex_state = 593, .external_lex_state = 14}, + [8121] = {.lex_state = 593, .external_lex_state = 82}, + [8122] = {.lex_state = 593, .external_lex_state = 14}, + [8123] = {.lex_state = 45, .external_lex_state = 14}, + [8124] = {.lex_state = 593, .external_lex_state = 14}, + [8125] = {.lex_state = 593, .external_lex_state = 14}, + [8126] = {.lex_state = 45, .external_lex_state = 14}, + [8127] = {.lex_state = 593, .external_lex_state = 14}, + [8128] = {.lex_state = 593, .external_lex_state = 14}, + [8129] = {.lex_state = 593, .external_lex_state = 14}, + [8130] = {.lex_state = 593, .external_lex_state = 14}, + [8131] = {.lex_state = 593, .external_lex_state = 14}, + [8132] = {.lex_state = 593, .external_lex_state = 14}, + [8133] = {.lex_state = 593, .external_lex_state = 14}, + [8134] = {.lex_state = 593, .external_lex_state = 14}, + [8135] = {.lex_state = 593, .external_lex_state = 83}, + [8136] = {.lex_state = 593, .external_lex_state = 14}, + [8137] = {.lex_state = 593, .external_lex_state = 14}, + [8138] = {.lex_state = 593, .external_lex_state = 14}, + [8139] = {.lex_state = 593, .external_lex_state = 14}, + [8140] = {.lex_state = 593, .external_lex_state = 14}, + [8141] = {.lex_state = 593, .external_lex_state = 14}, + [8142] = {.lex_state = 593, .external_lex_state = 14}, + [8143] = {.lex_state = 593, .external_lex_state = 14}, + [8144] = {.lex_state = 45, .external_lex_state = 14}, + [8145] = {.lex_state = 593, .external_lex_state = 14}, + [8146] = {.lex_state = 593, .external_lex_state = 14}, + [8147] = {.lex_state = 593, .external_lex_state = 14}, + [8148] = {.lex_state = 593, .external_lex_state = 14}, + [8149] = {.lex_state = 593, .external_lex_state = 14}, + [8150] = {.lex_state = 593, .external_lex_state = 14}, + [8151] = {.lex_state = 593, .external_lex_state = 14}, + [8152] = {.lex_state = 593, .external_lex_state = 14}, + [8153] = {.lex_state = 593, .external_lex_state = 14}, + [8154] = {.lex_state = 593, .external_lex_state = 14}, + [8155] = {.lex_state = 45, .external_lex_state = 14}, + [8156] = {.lex_state = 593, .external_lex_state = 98}, + [8157] = {.lex_state = 593, .external_lex_state = 14}, + [8158] = {.lex_state = 593, .external_lex_state = 14}, + [8159] = {.lex_state = 593, .external_lex_state = 14}, + [8160] = {.lex_state = 593, .external_lex_state = 14}, + [8161] = {.lex_state = 593, .external_lex_state = 14}, + [8162] = {.lex_state = 593, .external_lex_state = 14}, + [8163] = {.lex_state = 593, .external_lex_state = 14}, + [8164] = {.lex_state = 593, .external_lex_state = 14}, + [8165] = {.lex_state = 593, .external_lex_state = 14}, + [8166] = {.lex_state = 593, .external_lex_state = 14}, + [8167] = {.lex_state = 593, .external_lex_state = 14}, + [8168] = {.lex_state = 593, .external_lex_state = 14}, + [8169] = {.lex_state = 593, .external_lex_state = 14}, + [8170] = {.lex_state = 593, .external_lex_state = 14}, + [8171] = {.lex_state = 593, .external_lex_state = 14}, + [8172] = {.lex_state = 593, .external_lex_state = 86}, + [8173] = {.lex_state = 593, .external_lex_state = 14}, + [8174] = {.lex_state = 593, .external_lex_state = 14}, + [8175] = {.lex_state = 593, .external_lex_state = 14}, + [8176] = {.lex_state = 593, .external_lex_state = 14}, + [8177] = {.lex_state = 593, .external_lex_state = 14}, + [8178] = {.lex_state = 593, .external_lex_state = 14}, + [8179] = {.lex_state = 45, .external_lex_state = 14}, + [8180] = {.lex_state = 593, .external_lex_state = 14}, + [8181] = {.lex_state = 593, .external_lex_state = 14}, + [8182] = {.lex_state = 593, .external_lex_state = 14}, + [8183] = {.lex_state = 593, .external_lex_state = 14}, + [8184] = {.lex_state = 593, .external_lex_state = 14}, + [8185] = {.lex_state = 593, .external_lex_state = 14}, + [8186] = {.lex_state = 593, .external_lex_state = 14}, + [8187] = {.lex_state = 593, .external_lex_state = 14}, + [8188] = {.lex_state = 593, .external_lex_state = 14}, + [8189] = {.lex_state = 593, .external_lex_state = 14}, + [8190] = {.lex_state = 593, .external_lex_state = 14}, + [8191] = {.lex_state = 593, .external_lex_state = 14}, + [8192] = {.lex_state = 593, .external_lex_state = 14}, + [8193] = {.lex_state = 593, .external_lex_state = 14}, + [8194] = {.lex_state = 593, .external_lex_state = 14}, + [8195] = {.lex_state = 593, .external_lex_state = 14}, + [8196] = {.lex_state = 593, .external_lex_state = 14}, + [8197] = {.lex_state = 593, .external_lex_state = 14}, + [8198] = {.lex_state = 593, .external_lex_state = 14}, + [8199] = {.lex_state = 593, .external_lex_state = 14}, + [8200] = {.lex_state = 593, .external_lex_state = 14}, + [8201] = {.lex_state = 593, .external_lex_state = 14}, + [8202] = {.lex_state = 593, .external_lex_state = 14}, + [8203] = {.lex_state = 593, .external_lex_state = 14}, + [8204] = {.lex_state = 593, .external_lex_state = 14}, + [8205] = {.lex_state = 593, .external_lex_state = 14}, + [8206] = {.lex_state = 593, .external_lex_state = 14}, + [8207] = {.lex_state = 593, .external_lex_state = 14}, + [8208] = {.lex_state = 593, .external_lex_state = 14}, + [8209] = {.lex_state = 593, .external_lex_state = 14}, + [8210] = {.lex_state = 593, .external_lex_state = 14}, + [8211] = {.lex_state = 593, .external_lex_state = 14}, + [8212] = {.lex_state = 593, .external_lex_state = 14}, + [8213] = {.lex_state = 593, .external_lex_state = 14}, + [8214] = {.lex_state = 593, .external_lex_state = 83}, + [8215] = {.lex_state = 593, .external_lex_state = 14}, + [8216] = {.lex_state = 593, .external_lex_state = 14}, + [8217] = {.lex_state = 593, .external_lex_state = 14}, + [8218] = {.lex_state = 593, .external_lex_state = 14}, + [8219] = {.lex_state = 593, .external_lex_state = 83}, + [8220] = {.lex_state = 593, .external_lex_state = 14}, + [8221] = {.lex_state = 593, .external_lex_state = 14}, + [8222] = {.lex_state = 593, .external_lex_state = 25}, + [8223] = {.lex_state = 593, .external_lex_state = 83}, + [8224] = {.lex_state = 593, .external_lex_state = 83}, + [8225] = {.lex_state = 593, .external_lex_state = 80}, + [8226] = {.lex_state = 593, .external_lex_state = 14}, + [8227] = {.lex_state = 593, .external_lex_state = 14}, + [8228] = {.lex_state = 593, .external_lex_state = 14}, + [8229] = {.lex_state = 593, .external_lex_state = 14}, + [8230] = {.lex_state = 593, .external_lex_state = 14}, + [8231] = {.lex_state = 593, .external_lex_state = 14}, + [8232] = {.lex_state = 593, .external_lex_state = 14}, + [8233] = {.lex_state = 593, .external_lex_state = 83}, + [8234] = {.lex_state = 593, .external_lex_state = 83}, + [8235] = {.lex_state = 593, .external_lex_state = 32}, + [8236] = {.lex_state = 593, .external_lex_state = 25}, + [8237] = {.lex_state = 593, .external_lex_state = 83}, + [8238] = {.lex_state = 593, .external_lex_state = 14}, + [8239] = {.lex_state = 593, .external_lex_state = 25}, + [8240] = {.lex_state = 76, .external_lex_state = 14}, + [8241] = {.lex_state = 593, .external_lex_state = 32}, + [8242] = {.lex_state = 593, .external_lex_state = 80}, + [8243] = {.lex_state = 593, .external_lex_state = 14}, + [8244] = {.lex_state = 593, .external_lex_state = 14}, + [8245] = {.lex_state = 593, .external_lex_state = 83}, + [8246] = {.lex_state = 593, .external_lex_state = 83}, + [8247] = {.lex_state = 593, .external_lex_state = 14}, + [8248] = {.lex_state = 593, .external_lex_state = 14}, + [8249] = {.lex_state = 593, .external_lex_state = 14}, + [8250] = {.lex_state = 593, .external_lex_state = 14}, + [8251] = {.lex_state = 593, .external_lex_state = 80}, + [8252] = {.lex_state = 593, .external_lex_state = 14}, + [8253] = {.lex_state = 593, .external_lex_state = 14}, + [8254] = {.lex_state = 593, .external_lex_state = 14}, + [8255] = {.lex_state = 593, .external_lex_state = 14}, + [8256] = {.lex_state = 593, .external_lex_state = 14}, + [8257] = {.lex_state = 593, .external_lex_state = 14}, + [8258] = {.lex_state = 593, .external_lex_state = 14}, + [8259] = {.lex_state = 593, .external_lex_state = 14}, + [8260] = {.lex_state = 593, .external_lex_state = 14}, + [8261] = {.lex_state = 593, .external_lex_state = 83}, + [8262] = {.lex_state = 593, .external_lex_state = 14}, + [8263] = {.lex_state = 593, .external_lex_state = 32}, + [8264] = {.lex_state = 593, .external_lex_state = 14}, + [8265] = {.lex_state = 593, .external_lex_state = 14}, + [8266] = {.lex_state = 593, .external_lex_state = 83}, + [8267] = {.lex_state = 593, .external_lex_state = 14}, + [8268] = {.lex_state = 593, .external_lex_state = 14}, + [8269] = {.lex_state = 593, .external_lex_state = 14}, + [8270] = {.lex_state = 593, .external_lex_state = 14}, + [8271] = {.lex_state = 593, .external_lex_state = 14}, + [8272] = {.lex_state = 593, .external_lex_state = 14}, + [8273] = {.lex_state = 593, .external_lex_state = 14}, + [8274] = {.lex_state = 593, .external_lex_state = 14}, + [8275] = {.lex_state = 593, .external_lex_state = 14}, + [8276] = {.lex_state = 593, .external_lex_state = 14}, + [8277] = {.lex_state = 593, .external_lex_state = 14}, + [8278] = {.lex_state = 593, .external_lex_state = 14}, + [8279] = {.lex_state = 593, .external_lex_state = 14}, + [8280] = {.lex_state = 593, .external_lex_state = 14}, + [8281] = {.lex_state = 593, .external_lex_state = 14}, + [8282] = {.lex_state = 593, .external_lex_state = 14}, + [8283] = {.lex_state = 593, .external_lex_state = 14}, + [8284] = {.lex_state = 593, .external_lex_state = 14}, + [8285] = {.lex_state = 593, .external_lex_state = 14}, + [8286] = {.lex_state = 593, .external_lex_state = 14}, + [8287] = {.lex_state = 593, .external_lex_state = 14}, + [8288] = {.lex_state = 593, .external_lex_state = 14}, + [8289] = {.lex_state = 593, .external_lex_state = 14}, + [8290] = {.lex_state = 593, .external_lex_state = 14}, + [8291] = {.lex_state = 593, .external_lex_state = 14}, + [8292] = {.lex_state = 593, .external_lex_state = 25}, + [8293] = {.lex_state = 593, .external_lex_state = 14}, + [8294] = {.lex_state = 593, .external_lex_state = 14}, + [8295] = {.lex_state = 593, .external_lex_state = 14}, + [8296] = {.lex_state = 593, .external_lex_state = 14}, + [8297] = {.lex_state = 593, .external_lex_state = 80}, + [8298] = {.lex_state = 593, .external_lex_state = 14}, + [8299] = {.lex_state = 593, .external_lex_state = 25}, + [8300] = {.lex_state = 593, .external_lex_state = 14}, + [8301] = {.lex_state = 593, .external_lex_state = 14}, + [8302] = {.lex_state = 593, .external_lex_state = 14}, + [8303] = {.lex_state = 593, .external_lex_state = 14}, + [8304] = {.lex_state = 593, .external_lex_state = 14}, + [8305] = {.lex_state = 593, .external_lex_state = 14}, + [8306] = {.lex_state = 593, .external_lex_state = 14}, + [8307] = {.lex_state = 593, .external_lex_state = 14}, + [8308] = {.lex_state = 593, .external_lex_state = 14}, + [8309] = {.lex_state = 593, .external_lex_state = 14}, + [8310] = {.lex_state = 593, .external_lex_state = 14}, + [8311] = {.lex_state = 593, .external_lex_state = 14}, + [8312] = {.lex_state = 593, .external_lex_state = 14}, + [8313] = {.lex_state = 593, .external_lex_state = 14}, + [8314] = {.lex_state = 593, .external_lex_state = 14}, + [8315] = {.lex_state = 593, .external_lex_state = 14}, + [8316] = {.lex_state = 593, .external_lex_state = 14}, + [8317] = {.lex_state = 593, .external_lex_state = 14}, + [8318] = {.lex_state = 593, .external_lex_state = 14}, + [8319] = {.lex_state = 593, .external_lex_state = 14}, + [8320] = {.lex_state = 593, .external_lex_state = 14}, + [8321] = {.lex_state = 593, .external_lex_state = 14}, + [8322] = {.lex_state = 593, .external_lex_state = 14}, + [8323] = {.lex_state = 593, .external_lex_state = 14}, + [8324] = {.lex_state = 593, .external_lex_state = 14}, + [8325] = {.lex_state = 593, .external_lex_state = 14}, + [8326] = {.lex_state = 76, .external_lex_state = 14}, + [8327] = {.lex_state = 593, .external_lex_state = 14}, + [8328] = {.lex_state = 593, .external_lex_state = 14}, + [8329] = {.lex_state = 593, .external_lex_state = 14}, + [8330] = {.lex_state = 593, .external_lex_state = 14}, + [8331] = {.lex_state = 593, .external_lex_state = 14}, + [8332] = {.lex_state = 593, .external_lex_state = 14}, + [8333] = {.lex_state = 593, .external_lex_state = 14}, + [8334] = {.lex_state = 593, .external_lex_state = 14}, + [8335] = {.lex_state = 593, .external_lex_state = 14}, + [8336] = {.lex_state = 593, .external_lex_state = 14}, + [8337] = {.lex_state = 593, .external_lex_state = 14}, + [8338] = {.lex_state = 593, .external_lex_state = 14}, + [8339] = {.lex_state = 593, .external_lex_state = 14}, + [8340] = {.lex_state = 593, .external_lex_state = 14}, + [8341] = {.lex_state = 593, .external_lex_state = 14}, + [8342] = {.lex_state = 593, .external_lex_state = 14}, + [8343] = {.lex_state = 593, .external_lex_state = 14}, + [8344] = {.lex_state = 593, .external_lex_state = 14}, + [8345] = {.lex_state = 593, .external_lex_state = 14}, + [8346] = {.lex_state = 593, .external_lex_state = 14}, + [8347] = {.lex_state = 593, .external_lex_state = 14}, + [8348] = {.lex_state = 593, .external_lex_state = 14}, + [8349] = {.lex_state = 593, .external_lex_state = 14}, + [8350] = {.lex_state = 593, .external_lex_state = 14}, + [8351] = {.lex_state = 593, .external_lex_state = 14}, + [8352] = {.lex_state = 593, .external_lex_state = 14}, + [8353] = {.lex_state = 593, .external_lex_state = 14}, + [8354] = {.lex_state = 593, .external_lex_state = 14}, + [8355] = {.lex_state = 593, .external_lex_state = 14}, + [8356] = {.lex_state = 593, .external_lex_state = 14}, + [8357] = {.lex_state = 593, .external_lex_state = 14}, + [8358] = {.lex_state = 593, .external_lex_state = 14}, + [8359] = {.lex_state = 593, .external_lex_state = 14}, + [8360] = {.lex_state = 593, .external_lex_state = 14}, + [8361] = {.lex_state = 593, .external_lex_state = 14}, + [8362] = {.lex_state = 593, .external_lex_state = 14}, + [8363] = {.lex_state = 593, .external_lex_state = 14}, + [8364] = {.lex_state = 593, .external_lex_state = 14}, + [8365] = {.lex_state = 593, .external_lex_state = 14}, + [8366] = {.lex_state = 593, .external_lex_state = 14}, + [8367] = {.lex_state = 593, .external_lex_state = 14}, + [8368] = {.lex_state = 593, .external_lex_state = 14}, + [8369] = {.lex_state = 593, .external_lex_state = 14}, + [8370] = {.lex_state = 593, .external_lex_state = 14}, + [8371] = {.lex_state = 593, .external_lex_state = 14}, + [8372] = {.lex_state = 593, .external_lex_state = 14}, + [8373] = {.lex_state = 593, .external_lex_state = 14}, + [8374] = {.lex_state = 593, .external_lex_state = 14}, + [8375] = {.lex_state = 593, .external_lex_state = 14}, + [8376] = {.lex_state = 593, .external_lex_state = 14}, + [8377] = {.lex_state = 593, .external_lex_state = 14}, + [8378] = {.lex_state = 593, .external_lex_state = 83}, + [8379] = {.lex_state = 593, .external_lex_state = 14}, + [8380] = {.lex_state = 593, .external_lex_state = 14}, + [8381] = {.lex_state = 593, .external_lex_state = 14}, + [8382] = {.lex_state = 593, .external_lex_state = 14}, + [8383] = {.lex_state = 593, .external_lex_state = 14}, + [8384] = {.lex_state = 593, .external_lex_state = 14}, + [8385] = {.lex_state = 593, .external_lex_state = 14}, + [8386] = {.lex_state = 593, .external_lex_state = 14}, + [8387] = {.lex_state = 593, .external_lex_state = 14}, + [8388] = {.lex_state = 593, .external_lex_state = 14}, + [8389] = {.lex_state = 593, .external_lex_state = 14}, + [8390] = {.lex_state = 593, .external_lex_state = 14}, + [8391] = {.lex_state = 593, .external_lex_state = 14}, + [8392] = {.lex_state = 593, .external_lex_state = 14}, + [8393] = {.lex_state = 593, .external_lex_state = 14}, + [8394] = {.lex_state = 593, .external_lex_state = 14}, + [8395] = {.lex_state = 593, .external_lex_state = 14}, + [8396] = {.lex_state = 593, .external_lex_state = 14}, + [8397] = {.lex_state = 593, .external_lex_state = 14}, + [8398] = {.lex_state = 593, .external_lex_state = 14}, + [8399] = {.lex_state = 593, .external_lex_state = 14}, + [8400] = {.lex_state = 593, .external_lex_state = 14}, + [8401] = {.lex_state = 593, .external_lex_state = 14}, + [8402] = {.lex_state = 593, .external_lex_state = 14}, + [8403] = {.lex_state = 593, .external_lex_state = 14}, + [8404] = {.lex_state = 593, .external_lex_state = 14}, + [8405] = {.lex_state = 593, .external_lex_state = 14}, + [8406] = {.lex_state = 593, .external_lex_state = 14}, + [8407] = {.lex_state = 593, .external_lex_state = 14}, + [8408] = {.lex_state = 593, .external_lex_state = 14}, + [8409] = {.lex_state = 593, .external_lex_state = 14}, + [8410] = {.lex_state = 593, .external_lex_state = 83}, + [8411] = {.lex_state = 593, .external_lex_state = 14}, + [8412] = {.lex_state = 593, .external_lex_state = 97}, + [8413] = {.lex_state = 593, .external_lex_state = 14}, + [8414] = {.lex_state = 593, .external_lex_state = 14}, + [8415] = {.lex_state = 593, .external_lex_state = 14}, + [8416] = {.lex_state = 593, .external_lex_state = 14}, + [8417] = {.lex_state = 593, .external_lex_state = 14}, + [8418] = {.lex_state = 593, .external_lex_state = 14}, + [8419] = {.lex_state = 593, .external_lex_state = 14}, + [8420] = {.lex_state = 593, .external_lex_state = 14}, + [8421] = {.lex_state = 593, .external_lex_state = 14}, + [8422] = {.lex_state = 593, .external_lex_state = 14}, + [8423] = {.lex_state = 593, .external_lex_state = 14}, + [8424] = {.lex_state = 593, .external_lex_state = 14}, + [8425] = {.lex_state = 593, .external_lex_state = 14}, + [8426] = {.lex_state = 593, .external_lex_state = 14}, + [8427] = {.lex_state = 593, .external_lex_state = 14}, + [8428] = {.lex_state = 593, .external_lex_state = 14}, + [8429] = {.lex_state = 593, .external_lex_state = 14}, + [8430] = {.lex_state = 593, .external_lex_state = 14}, + [8431] = {.lex_state = 593, .external_lex_state = 14}, + [8432] = {.lex_state = 593, .external_lex_state = 14}, + [8433] = {.lex_state = 593, .external_lex_state = 14}, + [8434] = {.lex_state = 45, .external_lex_state = 96}, + [8435] = {.lex_state = 593, .external_lex_state = 14}, + [8436] = {.lex_state = 593, .external_lex_state = 96}, + [8437] = {.lex_state = 593, .external_lex_state = 14}, + [8438] = {.lex_state = 593, .external_lex_state = 14}, + [8439] = {.lex_state = 593, .external_lex_state = 14}, + [8440] = {.lex_state = 593, .external_lex_state = 14}, + [8441] = {.lex_state = 593, .external_lex_state = 14}, + [8442] = {.lex_state = 593, .external_lex_state = 14}, + [8443] = {.lex_state = 593, .external_lex_state = 14}, + [8444] = {.lex_state = 593, .external_lex_state = 14}, + [8445] = {.lex_state = 593, .external_lex_state = 14}, + [8446] = {.lex_state = 593, .external_lex_state = 14}, + [8447] = {.lex_state = 593, .external_lex_state = 14}, + [8448] = {.lex_state = 593, .external_lex_state = 14}, + [8449] = {.lex_state = 593, .external_lex_state = 83}, + [8450] = {.lex_state = 593, .external_lex_state = 14}, + [8451] = {.lex_state = 593, .external_lex_state = 14}, + [8452] = {.lex_state = 593, .external_lex_state = 14}, + [8453] = {.lex_state = 593, .external_lex_state = 14}, + [8454] = {.lex_state = 593, .external_lex_state = 14}, + [8455] = {.lex_state = 593, .external_lex_state = 14}, + [8456] = {.lex_state = 593, .external_lex_state = 14}, + [8457] = {.lex_state = 593, .external_lex_state = 14}, + [8458] = {.lex_state = 593, .external_lex_state = 14}, + [8459] = {.lex_state = 593, .external_lex_state = 14}, + [8460] = {.lex_state = 593, .external_lex_state = 14}, + [8461] = {.lex_state = 593, .external_lex_state = 14}, + [8462] = {.lex_state = 593, .external_lex_state = 14}, + [8463] = {.lex_state = 593, .external_lex_state = 14}, + [8464] = {.lex_state = 593, .external_lex_state = 14}, + [8465] = {.lex_state = 593, .external_lex_state = 14}, + [8466] = {.lex_state = 593, .external_lex_state = 14}, + [8467] = {.lex_state = 593, .external_lex_state = 14}, + [8468] = {.lex_state = 593, .external_lex_state = 14}, + [8469] = {.lex_state = 593, .external_lex_state = 14}, + [8470] = {.lex_state = 593, .external_lex_state = 14}, + [8471] = {.lex_state = 593, .external_lex_state = 14}, + [8472] = {.lex_state = 593, .external_lex_state = 14}, + [8473] = {.lex_state = 593, .external_lex_state = 14}, + [8474] = {.lex_state = 593, .external_lex_state = 14}, + [8475] = {.lex_state = 593, .external_lex_state = 14}, + [8476] = {.lex_state = 593, .external_lex_state = 14}, + [8477] = {.lex_state = 593, .external_lex_state = 14}, + [8478] = {.lex_state = 593, .external_lex_state = 14}, + [8479] = {.lex_state = 593, .external_lex_state = 14}, + [8480] = {.lex_state = 593, .external_lex_state = 14}, + [8481] = {.lex_state = 593, .external_lex_state = 14}, + [8482] = {.lex_state = 593, .external_lex_state = 14}, + [8483] = {.lex_state = 593, .external_lex_state = 14}, + [8484] = {.lex_state = 593, .external_lex_state = 14}, + [8485] = {.lex_state = 593, .external_lex_state = 14}, + [8486] = {.lex_state = 593, .external_lex_state = 83}, + [8487] = {.lex_state = 593, .external_lex_state = 14}, + [8488] = {.lex_state = 593, .external_lex_state = 14}, + [8489] = {.lex_state = 593, .external_lex_state = 14}, + [8490] = {.lex_state = 593, .external_lex_state = 14}, + [8491] = {.lex_state = 593, .external_lex_state = 14}, + [8492] = {.lex_state = 593, .external_lex_state = 14}, + [8493] = {.lex_state = 593, .external_lex_state = 14}, + [8494] = {.lex_state = 593, .external_lex_state = 14}, + [8495] = {.lex_state = 593, .external_lex_state = 83}, + [8496] = {.lex_state = 593, .external_lex_state = 14}, + [8497] = {.lex_state = 593, .external_lex_state = 14}, + [8498] = {.lex_state = 593, .external_lex_state = 14}, + [8499] = {.lex_state = 593, .external_lex_state = 14}, + [8500] = {.lex_state = 593, .external_lex_state = 14}, + [8501] = {.lex_state = 593, .external_lex_state = 14}, + [8502] = {.lex_state = 593, .external_lex_state = 14}, + [8503] = {.lex_state = 593, .external_lex_state = 14}, + [8504] = {.lex_state = 593, .external_lex_state = 14}, + [8505] = {.lex_state = 593, .external_lex_state = 14}, + [8506] = {.lex_state = 593, .external_lex_state = 14}, + [8507] = {.lex_state = 593, .external_lex_state = 14}, + [8508] = {.lex_state = 593, .external_lex_state = 83}, + [8509] = {.lex_state = 593, .external_lex_state = 14}, + [8510] = {.lex_state = 593, .external_lex_state = 14}, + [8511] = {.lex_state = 593, .external_lex_state = 14}, + [8512] = {.lex_state = 593, .external_lex_state = 14}, + [8513] = {.lex_state = 593, .external_lex_state = 14}, + [8514] = {.lex_state = 593, .external_lex_state = 14}, + [8515] = {.lex_state = 593, .external_lex_state = 14}, + [8516] = {.lex_state = 593, .external_lex_state = 14}, + [8517] = {.lex_state = 593, .external_lex_state = 14}, + [8518] = {.lex_state = 593, .external_lex_state = 83}, + [8519] = {.lex_state = 593, .external_lex_state = 14}, + [8520] = {.lex_state = 593, .external_lex_state = 14}, + [8521] = {.lex_state = 593, .external_lex_state = 14}, + [8522] = {.lex_state = 593, .external_lex_state = 14}, + [8523] = {.lex_state = 593, .external_lex_state = 25}, + [8524] = {.lex_state = 593, .external_lex_state = 14}, + [8525] = {.lex_state = 593, .external_lex_state = 14}, + [8526] = {.lex_state = 593, .external_lex_state = 14}, + [8527] = {.lex_state = 593, .external_lex_state = 14}, + [8528] = {.lex_state = 593, .external_lex_state = 14}, + [8529] = {.lex_state = 593, .external_lex_state = 14}, + [8530] = {.lex_state = 593, .external_lex_state = 14}, + [8531] = {.lex_state = 593, .external_lex_state = 14}, + [8532] = {.lex_state = 593, .external_lex_state = 14}, + [8533] = {.lex_state = 593, .external_lex_state = 14}, + [8534] = {.lex_state = 593, .external_lex_state = 14}, + [8535] = {.lex_state = 593, .external_lex_state = 14}, + [8536] = {.lex_state = 593, .external_lex_state = 14}, + [8537] = {.lex_state = 593, .external_lex_state = 32}, + [8538] = {.lex_state = 593, .external_lex_state = 14}, + [8539] = {.lex_state = 593, .external_lex_state = 14}, + [8540] = {.lex_state = 593, .external_lex_state = 14}, + [8541] = {.lex_state = 593, .external_lex_state = 14}, + [8542] = {.lex_state = 593, .external_lex_state = 83}, + [8543] = {.lex_state = 593, .external_lex_state = 14}, + [8544] = {.lex_state = 593, .external_lex_state = 14}, + [8545] = {.lex_state = 593, .external_lex_state = 14}, + [8546] = {.lex_state = 593, .external_lex_state = 14}, + [8547] = {.lex_state = 593, .external_lex_state = 14}, + [8548] = {.lex_state = 593, .external_lex_state = 14}, + [8549] = {.lex_state = 593, .external_lex_state = 14}, + [8550] = {.lex_state = 593, .external_lex_state = 14}, + [8551] = {.lex_state = 593, .external_lex_state = 14}, + [8552] = {.lex_state = 593, .external_lex_state = 14}, + [8553] = {.lex_state = 593, .external_lex_state = 14}, + [8554] = {.lex_state = 593, .external_lex_state = 14}, + [8555] = {.lex_state = 593, .external_lex_state = 14}, + [8556] = {.lex_state = 593, .external_lex_state = 14}, + [8557] = {.lex_state = 593, .external_lex_state = 14}, + [8558] = {.lex_state = 593, .external_lex_state = 14}, + [8559] = {.lex_state = 593, .external_lex_state = 14}, + [8560] = {.lex_state = 593, .external_lex_state = 14}, + [8561] = {.lex_state = 593, .external_lex_state = 14}, + [8562] = {.lex_state = 593, .external_lex_state = 14}, + [8563] = {.lex_state = 593, .external_lex_state = 14}, + [8564] = {.lex_state = 593, .external_lex_state = 14}, + [8565] = {.lex_state = 593, .external_lex_state = 14}, + [8566] = {.lex_state = 593, .external_lex_state = 14}, + [8567] = {.lex_state = 593, .external_lex_state = 14}, + [8568] = {.lex_state = 593, .external_lex_state = 14}, + [8569] = {.lex_state = 593, .external_lex_state = 14}, + [8570] = {.lex_state = 593, .external_lex_state = 14}, + [8571] = {.lex_state = 593, .external_lex_state = 14}, + [8572] = {.lex_state = 593, .external_lex_state = 14}, + [8573] = {.lex_state = 593, .external_lex_state = 14}, + [8574] = {.lex_state = 593, .external_lex_state = 14}, + [8575] = {.lex_state = 593, .external_lex_state = 14}, + [8576] = {.lex_state = 593, .external_lex_state = 14}, + [8577] = {.lex_state = 593, .external_lex_state = 14}, + [8578] = {.lex_state = 593, .external_lex_state = 14}, + [8579] = {.lex_state = 593, .external_lex_state = 14}, + [8580] = {.lex_state = 593, .external_lex_state = 14}, + [8581] = {.lex_state = 593, .external_lex_state = 14}, + [8582] = {.lex_state = 593, .external_lex_state = 14}, + [8583] = {.lex_state = 593, .external_lex_state = 14}, + [8584] = {.lex_state = 593, .external_lex_state = 14}, + [8585] = {.lex_state = 593, .external_lex_state = 14}, + [8586] = {.lex_state = 593, .external_lex_state = 14}, + [8587] = {.lex_state = 593, .external_lex_state = 14}, + [8588] = {.lex_state = 593, .external_lex_state = 14}, + [8589] = {.lex_state = 593, .external_lex_state = 14}, + [8590] = {.lex_state = 593, .external_lex_state = 14}, + [8591] = {.lex_state = 593, .external_lex_state = 14}, + [8592] = {.lex_state = 593, .external_lex_state = 83}, + [8593] = {.lex_state = 593, .external_lex_state = 14}, + [8594] = {.lex_state = 593, .external_lex_state = 14}, + [8595] = {.lex_state = 593, .external_lex_state = 14}, + [8596] = {.lex_state = 593, .external_lex_state = 14}, + [8597] = {.lex_state = 593, .external_lex_state = 14}, + [8598] = {.lex_state = 593, .external_lex_state = 14}, + [8599] = {.lex_state = 593, .external_lex_state = 14}, + [8600] = {.lex_state = 593, .external_lex_state = 83}, + [8601] = {.lex_state = 593, .external_lex_state = 14}, + [8602] = {.lex_state = 593, .external_lex_state = 14}, + [8603] = {.lex_state = 593, .external_lex_state = 80}, + [8604] = {.lex_state = 593, .external_lex_state = 14}, + [8605] = {.lex_state = 593, .external_lex_state = 14}, + [8606] = {.lex_state = 593, .external_lex_state = 14}, + [8607] = {.lex_state = 593, .external_lex_state = 14}, + [8608] = {.lex_state = 593, .external_lex_state = 14}, + [8609] = {.lex_state = 593, .external_lex_state = 14}, + [8610] = {.lex_state = 593, .external_lex_state = 14}, + [8611] = {.lex_state = 593, .external_lex_state = 96}, + [8612] = {.lex_state = 593, .external_lex_state = 14}, + [8613] = {.lex_state = 593, .external_lex_state = 14}, + [8614] = {.lex_state = 593, .external_lex_state = 83}, + [8615] = {.lex_state = 593, .external_lex_state = 14}, + [8616] = {.lex_state = 593, .external_lex_state = 14}, + [8617] = {.lex_state = 593, .external_lex_state = 14}, + [8618] = {.lex_state = 593, .external_lex_state = 14}, + [8619] = {.lex_state = 593, .external_lex_state = 14}, + [8620] = {.lex_state = 593, .external_lex_state = 14}, + [8621] = {.lex_state = 593, .external_lex_state = 83}, + [8622] = {.lex_state = 593, .external_lex_state = 14}, + [8623] = {.lex_state = 593, .external_lex_state = 34}, + [8624] = {.lex_state = 593, .external_lex_state = 14}, + [8625] = {.lex_state = 593, .external_lex_state = 14}, + [8626] = {.lex_state = 593, .external_lex_state = 14}, + [8627] = {.lex_state = 593, .external_lex_state = 25}, + [8628] = {.lex_state = 593, .external_lex_state = 14}, + [8629] = {.lex_state = 593, .external_lex_state = 14}, + [8630] = {.lex_state = 593, .external_lex_state = 14}, + [8631] = {.lex_state = 593, .external_lex_state = 80}, + [8632] = {.lex_state = 593, .external_lex_state = 83}, + [8633] = {.lex_state = 593, .external_lex_state = 76}, + [8634] = {.lex_state = 593, .external_lex_state = 83}, + [8635] = {.lex_state = 593, .external_lex_state = 14}, + [8636] = {.lex_state = 593, .external_lex_state = 14}, + [8637] = {.lex_state = 593, .external_lex_state = 14}, + [8638] = {.lex_state = 593, .external_lex_state = 14}, + [8639] = {.lex_state = 593, .external_lex_state = 14}, + [8640] = {.lex_state = 593, .external_lex_state = 83}, + [8641] = {.lex_state = 593, .external_lex_state = 14}, + [8642] = {.lex_state = 593, .external_lex_state = 83}, + [8643] = {.lex_state = 593, .external_lex_state = 14}, + [8644] = {.lex_state = 593, .external_lex_state = 83}, + [8645] = {.lex_state = 593, .external_lex_state = 14}, + [8646] = {.lex_state = 593, .external_lex_state = 14}, + [8647] = {.lex_state = 593, .external_lex_state = 14}, + [8648] = {.lex_state = 593, .external_lex_state = 14}, + [8649] = {.lex_state = 593, .external_lex_state = 83}, + [8650] = {.lex_state = 593, .external_lex_state = 14}, + [8651] = {.lex_state = 593, .external_lex_state = 14}, + [8652] = {.lex_state = 593, .external_lex_state = 14}, + [8653] = {.lex_state = 76, .external_lex_state = 14}, + [8654] = {.lex_state = 593, .external_lex_state = 32}, + [8655] = {.lex_state = 593, .external_lex_state = 14}, + [8656] = {.lex_state = 593, .external_lex_state = 14}, + [8657] = {.lex_state = 593, .external_lex_state = 83}, + [8658] = {.lex_state = 593, .external_lex_state = 14}, + [8659] = {.lex_state = 593, .external_lex_state = 14}, + [8660] = {.lex_state = 593, .external_lex_state = 14}, + [8661] = {.lex_state = 593, .external_lex_state = 14}, + [8662] = {.lex_state = 593, .external_lex_state = 14}, + [8663] = {.lex_state = 593, .external_lex_state = 14}, + [8664] = {.lex_state = 593, .external_lex_state = 83}, + [8665] = {.lex_state = 593, .external_lex_state = 14}, + [8666] = {.lex_state = 593, .external_lex_state = 83}, + [8667] = {.lex_state = 593, .external_lex_state = 14}, + [8668] = {.lex_state = 593, .external_lex_state = 86}, + [8669] = {.lex_state = 593, .external_lex_state = 14}, + [8670] = {.lex_state = 593, .external_lex_state = 86}, + [8671] = {.lex_state = 593, .external_lex_state = 83}, + [8672] = {.lex_state = 593, .external_lex_state = 83}, + [8673] = {.lex_state = 593, .external_lex_state = 83}, + [8674] = {.lex_state = 593, .external_lex_state = 14}, + [8675] = {.lex_state = 593, .external_lex_state = 14}, + [8676] = {.lex_state = 593, .external_lex_state = 83}, + [8677] = {.lex_state = 593, .external_lex_state = 83}, + [8678] = {.lex_state = 593, .external_lex_state = 83}, + [8679] = {.lex_state = 593, .external_lex_state = 83}, + [8680] = {.lex_state = 593, .external_lex_state = 83}, + [8681] = {.lex_state = 593, .external_lex_state = 83}, + [8682] = {.lex_state = 593, .external_lex_state = 83}, + [8683] = {.lex_state = 593, .external_lex_state = 83}, + [8684] = {.lex_state = 593, .external_lex_state = 83}, + [8685] = {.lex_state = 593, .external_lex_state = 83}, + [8686] = {.lex_state = 593, .external_lex_state = 83}, + [8687] = {.lex_state = 593, .external_lex_state = 83}, + [8688] = {.lex_state = 593, .external_lex_state = 83}, + [8689] = {.lex_state = 593, .external_lex_state = 83}, + [8690] = {.lex_state = 593, .external_lex_state = 83}, + [8691] = {.lex_state = 593, .external_lex_state = 83}, + [8692] = {.lex_state = 593, .external_lex_state = 83}, + [8693] = {.lex_state = 593, .external_lex_state = 83}, + [8694] = {.lex_state = 593, .external_lex_state = 83}, + [8695] = {.lex_state = 593, .external_lex_state = 14}, + [8696] = {.lex_state = 593, .external_lex_state = 83}, + [8697] = {.lex_state = 593, .external_lex_state = 83}, + [8698] = {.lex_state = 593, .external_lex_state = 83}, + [8699] = {.lex_state = 593, .external_lex_state = 83}, + [8700] = {.lex_state = 593, .external_lex_state = 83}, + [8701] = {.lex_state = 593, .external_lex_state = 83}, + [8702] = {.lex_state = 593, .external_lex_state = 83}, + [8703] = {.lex_state = 593, .external_lex_state = 83}, + [8704] = {.lex_state = 593, .external_lex_state = 83}, + [8705] = {.lex_state = 593, .external_lex_state = 83}, + [8706] = {.lex_state = 593, .external_lex_state = 14}, + [8707] = {.lex_state = 593, .external_lex_state = 14}, + [8708] = {.lex_state = 593, .external_lex_state = 83}, + [8709] = {.lex_state = 593, .external_lex_state = 83}, + [8710] = {.lex_state = 593, .external_lex_state = 83}, + [8711] = {.lex_state = 593, .external_lex_state = 83}, + [8712] = {.lex_state = 593, .external_lex_state = 83}, + [8713] = {.lex_state = 593, .external_lex_state = 83}, + [8714] = {.lex_state = 593, .external_lex_state = 83}, + [8715] = {.lex_state = 593, .external_lex_state = 83}, + [8716] = {.lex_state = 593, .external_lex_state = 83}, + [8717] = {.lex_state = 593, .external_lex_state = 83}, + [8718] = {.lex_state = 593, .external_lex_state = 99}, + [8719] = {.lex_state = 593, .external_lex_state = 80}, + [8720] = {.lex_state = 593, .external_lex_state = 14}, + [8721] = {.lex_state = 593, .external_lex_state = 14}, + [8722] = {.lex_state = 593, .external_lex_state = 14}, + [8723] = {.lex_state = 593, .external_lex_state = 83}, + [8724] = {.lex_state = 593, .external_lex_state = 14}, + [8725] = {.lex_state = 593, .external_lex_state = 83}, + [8726] = {.lex_state = 593, .external_lex_state = 83}, + [8727] = {.lex_state = 593, .external_lex_state = 14}, + [8728] = {.lex_state = 593, .external_lex_state = 83}, + [8729] = {.lex_state = 593, .external_lex_state = 83}, + [8730] = {.lex_state = 593, .external_lex_state = 83}, + [8731] = {.lex_state = 593, .external_lex_state = 83}, + [8732] = {.lex_state = 593, .external_lex_state = 83}, + [8733] = {.lex_state = 593, .external_lex_state = 83}, + [8734] = {.lex_state = 593, .external_lex_state = 83}, + [8735] = {.lex_state = 593, .external_lex_state = 83}, + [8736] = {.lex_state = 593, .external_lex_state = 83}, + [8737] = {.lex_state = 593, .external_lex_state = 83}, + [8738] = {.lex_state = 593, .external_lex_state = 83}, + [8739] = {.lex_state = 593, .external_lex_state = 83}, + [8740] = {.lex_state = 593, .external_lex_state = 14}, + [8741] = {.lex_state = 593, .external_lex_state = 99}, + [8742] = {.lex_state = 593, .external_lex_state = 14}, + [8743] = {.lex_state = 593, .external_lex_state = 14}, + [8744] = {.lex_state = 593, .external_lex_state = 14}, + [8745] = {.lex_state = 593, .external_lex_state = 83}, + [8746] = {.lex_state = 593, .external_lex_state = 83}, + [8747] = {.lex_state = 593, .external_lex_state = 25}, + [8748] = {.lex_state = 593, .external_lex_state = 83}, + [8749] = {.lex_state = 593, .external_lex_state = 14}, + [8750] = {.lex_state = 593, .external_lex_state = 83}, + [8751] = {.lex_state = 593, .external_lex_state = 83}, + [8752] = {.lex_state = 593, .external_lex_state = 83}, + [8753] = {.lex_state = 593, .external_lex_state = 83}, + [8754] = {.lex_state = 593, .external_lex_state = 83}, + [8755] = {.lex_state = 593, .external_lex_state = 83}, + [8756] = {.lex_state = 593, .external_lex_state = 83}, + [8757] = {.lex_state = 593, .external_lex_state = 83}, + [8758] = {.lex_state = 593, .external_lex_state = 83}, + [8759] = {.lex_state = 593, .external_lex_state = 14}, + [8760] = {.lex_state = 593, .external_lex_state = 14}, + [8761] = {.lex_state = 593, .external_lex_state = 83}, + [8762] = {.lex_state = 593, .external_lex_state = 83}, + [8763] = {.lex_state = 593, .external_lex_state = 83}, + [8764] = {.lex_state = 593, .external_lex_state = 83}, + [8765] = {.lex_state = 593, .external_lex_state = 99}, + [8766] = {.lex_state = 593, .external_lex_state = 14}, + [8767] = {.lex_state = 593, .external_lex_state = 14}, + [8768] = {.lex_state = 593, .external_lex_state = 14}, + [8769] = {.lex_state = 593, .external_lex_state = 83}, + [8770] = {.lex_state = 593, .external_lex_state = 83}, + [8771] = {.lex_state = 593, .external_lex_state = 14}, + [8772] = {.lex_state = 593, .external_lex_state = 83}, + [8773] = {.lex_state = 593, .external_lex_state = 83}, + [8774] = {.lex_state = 593, .external_lex_state = 83}, + [8775] = {.lex_state = 593, .external_lex_state = 14}, + [8776] = {.lex_state = 593, .external_lex_state = 83}, + [8777] = {.lex_state = 593, .external_lex_state = 83}, + [8778] = {.lex_state = 593, .external_lex_state = 83}, + [8779] = {.lex_state = 593, .external_lex_state = 83}, + [8780] = {.lex_state = 593, .external_lex_state = 83}, + [8781] = {.lex_state = 593, .external_lex_state = 83}, + [8782] = {.lex_state = 593, .external_lex_state = 83}, + [8783] = {.lex_state = 593, .external_lex_state = 83}, + [8784] = {.lex_state = 593, .external_lex_state = 83}, + [8785] = {.lex_state = 593, .external_lex_state = 83}, + [8786] = {.lex_state = 593, .external_lex_state = 83}, + [8787] = {.lex_state = 593, .external_lex_state = 83}, + [8788] = {.lex_state = 593, .external_lex_state = 83}, + [8789] = {.lex_state = 593, .external_lex_state = 83}, + [8790] = {.lex_state = 593, .external_lex_state = 83}, + [8791] = {.lex_state = 593, .external_lex_state = 14}, + [8792] = {.lex_state = 593, .external_lex_state = 83}, + [8793] = {.lex_state = 593, .external_lex_state = 14}, + [8794] = {.lex_state = 593, .external_lex_state = 83}, + [8795] = {.lex_state = 593, .external_lex_state = 83}, + [8796] = {.lex_state = 593, .external_lex_state = 83}, + [8797] = {.lex_state = 593, .external_lex_state = 14}, + [8798] = {.lex_state = 593, .external_lex_state = 83}, + [8799] = {.lex_state = 593, .external_lex_state = 14}, + [8800] = {.lex_state = 593, .external_lex_state = 83}, + [8801] = {.lex_state = 593, .external_lex_state = 14}, + [8802] = {.lex_state = 593, .external_lex_state = 83}, + [8803] = {.lex_state = 593, .external_lex_state = 83}, + [8804] = {.lex_state = 593, .external_lex_state = 14}, + [8805] = {.lex_state = 593, .external_lex_state = 83}, + [8806] = {.lex_state = 593, .external_lex_state = 83}, + [8807] = {.lex_state = 593, .external_lex_state = 83}, + [8808] = {.lex_state = 593, .external_lex_state = 14}, + [8809] = {.lex_state = 593, .external_lex_state = 83}, + [8810] = {.lex_state = 593, .external_lex_state = 14}, + [8811] = {.lex_state = 593, .external_lex_state = 14}, + [8812] = {.lex_state = 593, .external_lex_state = 83}, + [8813] = {.lex_state = 593, .external_lex_state = 83}, + [8814] = {.lex_state = 593, .external_lex_state = 83}, + [8815] = {.lex_state = 593, .external_lex_state = 83}, + [8816] = {.lex_state = 593, .external_lex_state = 83}, + [8817] = {.lex_state = 593, .external_lex_state = 14}, + [8818] = {.lex_state = 593, .external_lex_state = 14}, + [8819] = {.lex_state = 593, .external_lex_state = 83}, + [8820] = {.lex_state = 593, .external_lex_state = 14}, + [8821] = {.lex_state = 593, .external_lex_state = 83}, + [8822] = {.lex_state = 593, .external_lex_state = 83}, + [8823] = {.lex_state = 593, .external_lex_state = 83}, + [8824] = {.lex_state = 593, .external_lex_state = 80}, + [8825] = {.lex_state = 593, .external_lex_state = 83}, + [8826] = {.lex_state = 593, .external_lex_state = 14}, + [8827] = {.lex_state = 593, .external_lex_state = 83}, + [8828] = {.lex_state = 593, .external_lex_state = 14}, + [8829] = {.lex_state = 593, .external_lex_state = 83}, + [8830] = {.lex_state = 593, .external_lex_state = 83}, + [8831] = {.lex_state = 593, .external_lex_state = 83}, + [8832] = {.lex_state = 593, .external_lex_state = 83}, + [8833] = {.lex_state = 593, .external_lex_state = 14}, + [8834] = {.lex_state = 593, .external_lex_state = 83}, + [8835] = {.lex_state = 593, .external_lex_state = 14}, + [8836] = {.lex_state = 593, .external_lex_state = 83}, + [8837] = {.lex_state = 593, .external_lex_state = 14}, + [8838] = {.lex_state = 593, .external_lex_state = 14}, + [8839] = {.lex_state = 593, .external_lex_state = 83}, + [8840] = {.lex_state = 593, .external_lex_state = 83}, + [8841] = {.lex_state = 593, .external_lex_state = 83}, + [8842] = {.lex_state = 593, .external_lex_state = 83}, + [8843] = {.lex_state = 593, .external_lex_state = 83}, + [8844] = {.lex_state = 593, .external_lex_state = 14}, + [8845] = {.lex_state = 593, .external_lex_state = 14}, + [8846] = {.lex_state = 593, .external_lex_state = 83}, + [8847] = {.lex_state = 593, .external_lex_state = 14}, + [8848] = {.lex_state = 593, .external_lex_state = 83}, + [8849] = {.lex_state = 593, .external_lex_state = 83}, + [8850] = {.lex_state = 593, .external_lex_state = 14}, + [8851] = {.lex_state = 593, .external_lex_state = 14}, + [8852] = {.lex_state = 593, .external_lex_state = 83}, + [8853] = {.lex_state = 593, .external_lex_state = 83}, + [8854] = {.lex_state = 593, .external_lex_state = 83}, + [8855] = {.lex_state = 593, .external_lex_state = 14}, + [8856] = {.lex_state = 593, .external_lex_state = 83}, + [8857] = {.lex_state = 593, .external_lex_state = 14}, + [8858] = {.lex_state = 593, .external_lex_state = 14}, + [8859] = {.lex_state = 593, .external_lex_state = 83}, + [8860] = {.lex_state = 593, .external_lex_state = 14}, + [8861] = {.lex_state = 593, .external_lex_state = 14}, + [8862] = {.lex_state = 593, .external_lex_state = 83}, + [8863] = {.lex_state = 593, .external_lex_state = 83}, + [8864] = {.lex_state = 593, .external_lex_state = 14}, + [8865] = {.lex_state = 593, .external_lex_state = 83}, + [8866] = {.lex_state = 593, .external_lex_state = 83}, + [8867] = {.lex_state = 593, .external_lex_state = 14}, + [8868] = {.lex_state = 593, .external_lex_state = 14}, + [8869] = {.lex_state = 593, .external_lex_state = 83}, + [8870] = {.lex_state = 593, .external_lex_state = 14}, + [8871] = {.lex_state = 593, .external_lex_state = 14}, + [8872] = {.lex_state = 593, .external_lex_state = 83}, + [8873] = {.lex_state = 593, .external_lex_state = 14}, + [8874] = {.lex_state = 593, .external_lex_state = 83}, + [8875] = {.lex_state = 593, .external_lex_state = 83}, + [8876] = {.lex_state = 593, .external_lex_state = 83}, + [8877] = {.lex_state = 593, .external_lex_state = 14}, + [8878] = {.lex_state = 593, .external_lex_state = 14}, + [8879] = {.lex_state = 593, .external_lex_state = 83}, + [8880] = {.lex_state = 593, .external_lex_state = 83}, + [8881] = {.lex_state = 593, .external_lex_state = 83}, + [8882] = {.lex_state = 593, .external_lex_state = 83}, + [8883] = {.lex_state = 593, .external_lex_state = 14}, + [8884] = {.lex_state = 593, .external_lex_state = 14}, + [8885] = {.lex_state = 593, .external_lex_state = 83}, + [8886] = {.lex_state = 593, .external_lex_state = 83}, + [8887] = {.lex_state = 593, .external_lex_state = 83}, + [8888] = {.lex_state = 593, .external_lex_state = 14}, + [8889] = {.lex_state = 593, .external_lex_state = 83}, + [8890] = {.lex_state = 593, .external_lex_state = 83}, + [8891] = {.lex_state = 593, .external_lex_state = 14}, + [8892] = {.lex_state = 593, .external_lex_state = 83}, + [8893] = {.lex_state = 593, .external_lex_state = 14}, + [8894] = {.lex_state = 593, .external_lex_state = 14}, + [8895] = {.lex_state = 593, .external_lex_state = 83}, + [8896] = {.lex_state = 593, .external_lex_state = 83}, + [8897] = {.lex_state = 593, .external_lex_state = 83}, + [8898] = {.lex_state = 593, .external_lex_state = 83}, + [8899] = {.lex_state = 593, .external_lex_state = 14}, + [8900] = {.lex_state = 593, .external_lex_state = 83}, + [8901] = {.lex_state = 593, .external_lex_state = 83}, + [8902] = {.lex_state = 593, .external_lex_state = 83}, + [8903] = {.lex_state = 593, .external_lex_state = 14}, + [8904] = {.lex_state = 593, .external_lex_state = 14}, + [8905] = {.lex_state = 593, .external_lex_state = 14}, + [8906] = {.lex_state = 593, .external_lex_state = 83}, + [8907] = {.lex_state = 593, .external_lex_state = 83}, + [8908] = {.lex_state = 593, .external_lex_state = 14}, + [8909] = {.lex_state = 593, .external_lex_state = 83}, + [8910] = {.lex_state = 593, .external_lex_state = 14}, + [8911] = {.lex_state = 593, .external_lex_state = 83}, + [8912] = {.lex_state = 593, .external_lex_state = 14}, + [8913] = {.lex_state = 593, .external_lex_state = 83}, + [8914] = {.lex_state = 593, .external_lex_state = 83}, + [8915] = {.lex_state = 593, .external_lex_state = 83}, + [8916] = {.lex_state = 593, .external_lex_state = 83}, + [8917] = {.lex_state = 593, .external_lex_state = 14}, + [8918] = {.lex_state = 593, .external_lex_state = 14}, + [8919] = {.lex_state = 593, .external_lex_state = 83}, + [8920] = {.lex_state = 593, .external_lex_state = 14}, + [8921] = {.lex_state = 593, .external_lex_state = 83}, + [8922] = {.lex_state = 593, .external_lex_state = 83}, + [8923] = {.lex_state = 593, .external_lex_state = 14}, + [8924] = {.lex_state = 593, .external_lex_state = 83}, + [8925] = {.lex_state = 593, .external_lex_state = 14}, + [8926] = {.lex_state = 593, .external_lex_state = 83}, + [8927] = {.lex_state = 593, .external_lex_state = 14}, + [8928] = {.lex_state = 593, .external_lex_state = 14}, + [8929] = {.lex_state = 593, .external_lex_state = 83}, + [8930] = {.lex_state = 593, .external_lex_state = 83}, + [8931] = {.lex_state = 593, .external_lex_state = 83}, + [8932] = {.lex_state = 593, .external_lex_state = 14}, + [8933] = {.lex_state = 593, .external_lex_state = 14}, + [8934] = {.lex_state = 593, .external_lex_state = 83}, + [8935] = {.lex_state = 593, .external_lex_state = 83}, + [8936] = {.lex_state = 593, .external_lex_state = 83}, + [8937] = {.lex_state = 593, .external_lex_state = 83}, + [8938] = {.lex_state = 593, .external_lex_state = 14}, + [8939] = {.lex_state = 593, .external_lex_state = 14}, + [8940] = {.lex_state = 593, .external_lex_state = 83}, + [8941] = {.lex_state = 593, .external_lex_state = 14}, + [8942] = {.lex_state = 593, .external_lex_state = 83}, + [8943] = {.lex_state = 593, .external_lex_state = 83}, + [8944] = {.lex_state = 593, .external_lex_state = 83}, + [8945] = {.lex_state = 593, .external_lex_state = 14}, + [8946] = {.lex_state = 593, .external_lex_state = 83}, + [8947] = {.lex_state = 593, .external_lex_state = 14}, + [8948] = {.lex_state = 593, .external_lex_state = 14}, + [8949] = {.lex_state = 593, .external_lex_state = 83}, + [8950] = {.lex_state = 593, .external_lex_state = 83}, + [8951] = {.lex_state = 593, .external_lex_state = 83}, + [8952] = {.lex_state = 593, .external_lex_state = 14}, + [8953] = {.lex_state = 593, .external_lex_state = 14}, + [8954] = {.lex_state = 593, .external_lex_state = 83}, + [8955] = {.lex_state = 593, .external_lex_state = 83}, + [8956] = {.lex_state = 593, .external_lex_state = 83}, + [8957] = {.lex_state = 593, .external_lex_state = 83}, + [8958] = {.lex_state = 593, .external_lex_state = 14}, + [8959] = {.lex_state = 593, .external_lex_state = 83}, + [8960] = {.lex_state = 593, .external_lex_state = 14}, + [8961] = {.lex_state = 593, .external_lex_state = 83}, + [8962] = {.lex_state = 593, .external_lex_state = 14}, + [8963] = {.lex_state = 593, .external_lex_state = 14}, + [8964] = {.lex_state = 593, .external_lex_state = 83}, + [8965] = {.lex_state = 593, .external_lex_state = 83}, + [8966] = {.lex_state = 593, .external_lex_state = 83}, + [8967] = {.lex_state = 593, .external_lex_state = 14}, + [8968] = {.lex_state = 593, .external_lex_state = 14}, + [8969] = {.lex_state = 593, .external_lex_state = 83}, + [8970] = {.lex_state = 593, .external_lex_state = 83}, + [8971] = {.lex_state = 593, .external_lex_state = 83}, + [8972] = {.lex_state = 593, .external_lex_state = 83}, + [8973] = {.lex_state = 593, .external_lex_state = 83}, + [8974] = {.lex_state = 593, .external_lex_state = 14}, + [8975] = {.lex_state = 593, .external_lex_state = 83}, + [8976] = {.lex_state = 593, .external_lex_state = 14}, + [8977] = {.lex_state = 593, .external_lex_state = 83}, + [8978] = {.lex_state = 593, .external_lex_state = 14}, + [8979] = {.lex_state = 593, .external_lex_state = 83}, + [8980] = {.lex_state = 593, .external_lex_state = 83}, + [8981] = {.lex_state = 593, .external_lex_state = 14}, + [8982] = {.lex_state = 593, .external_lex_state = 83}, + [8983] = {.lex_state = 593, .external_lex_state = 14}, + [8984] = {.lex_state = 593, .external_lex_state = 83}, + [8985] = {.lex_state = 593, .external_lex_state = 83}, + [8986] = {.lex_state = 593, .external_lex_state = 14}, + [8987] = {.lex_state = 593, .external_lex_state = 83}, + [8988] = {.lex_state = 593, .external_lex_state = 83}, + [8989] = {.lex_state = 593, .external_lex_state = 83}, + [8990] = {.lex_state = 593, .external_lex_state = 83}, + [8991] = {.lex_state = 593, .external_lex_state = 83}, + [8992] = {.lex_state = 593, .external_lex_state = 14}, + [8993] = {.lex_state = 593, .external_lex_state = 14}, + [8994] = {.lex_state = 593, .external_lex_state = 83}, + [8995] = {.lex_state = 593, .external_lex_state = 14}, + [8996] = {.lex_state = 593, .external_lex_state = 83}, + [8997] = {.lex_state = 593, .external_lex_state = 83}, + [8998] = {.lex_state = 593, .external_lex_state = 14}, + [8999] = {.lex_state = 593, .external_lex_state = 83}, + [9000] = {.lex_state = 593, .external_lex_state = 14}, + [9001] = {.lex_state = 593, .external_lex_state = 83}, + [9002] = {.lex_state = 593, .external_lex_state = 14}, + [9003] = {.lex_state = 593, .external_lex_state = 14}, + [9004] = {.lex_state = 593, .external_lex_state = 83}, + [9005] = {.lex_state = 593, .external_lex_state = 83}, + [9006] = {.lex_state = 593, .external_lex_state = 83}, + [9007] = {.lex_state = 593, .external_lex_state = 14}, + [9008] = {.lex_state = 593, .external_lex_state = 14}, + [9009] = {.lex_state = 593, .external_lex_state = 83}, + [9010] = {.lex_state = 593, .external_lex_state = 14}, + [9011] = {.lex_state = 593, .external_lex_state = 83}, + [9012] = {.lex_state = 593, .external_lex_state = 83}, + [9013] = {.lex_state = 593, .external_lex_state = 14}, + [9014] = {.lex_state = 593, .external_lex_state = 83}, + [9015] = {.lex_state = 593, .external_lex_state = 14}, + [9016] = {.lex_state = 593, .external_lex_state = 83}, + [9017] = {.lex_state = 593, .external_lex_state = 83}, + [9018] = {.lex_state = 593, .external_lex_state = 83}, + [9019] = {.lex_state = 593, .external_lex_state = 83}, + [9020] = {.lex_state = 593, .external_lex_state = 83}, + [9021] = {.lex_state = 593, .external_lex_state = 14}, + [9022] = {.lex_state = 593, .external_lex_state = 83}, + [9023] = {.lex_state = 593, .external_lex_state = 14}, + [9024] = {.lex_state = 593, .external_lex_state = 14}, + [9025] = {.lex_state = 593, .external_lex_state = 83}, + [9026] = {.lex_state = 593, .external_lex_state = 83}, + [9027] = {.lex_state = 593, .external_lex_state = 14}, + [9028] = {.lex_state = 593, .external_lex_state = 14}, + [9029] = {.lex_state = 593, .external_lex_state = 83}, + [9030] = {.lex_state = 593, .external_lex_state = 14}, + [9031] = {.lex_state = 593, .external_lex_state = 83}, + [9032] = {.lex_state = 593, .external_lex_state = 83}, + [9033] = {.lex_state = 593, .external_lex_state = 83}, + [9034] = {.lex_state = 593, .external_lex_state = 14}, + [9035] = {.lex_state = 593, .external_lex_state = 14}, + [9036] = {.lex_state = 593, .external_lex_state = 83}, + [9037] = {.lex_state = 593, .external_lex_state = 14}, + [9038] = {.lex_state = 593, .external_lex_state = 14}, + [9039] = {.lex_state = 593, .external_lex_state = 83}, + [9040] = {.lex_state = 593, .external_lex_state = 83}, + [9041] = {.lex_state = 593, .external_lex_state = 83}, + [9042] = {.lex_state = 593, .external_lex_state = 14}, + [9043] = {.lex_state = 593, .external_lex_state = 14}, + [9044] = {.lex_state = 593, .external_lex_state = 83}, + [9045] = {.lex_state = 593, .external_lex_state = 14}, + [9046] = {.lex_state = 593, .external_lex_state = 83}, + [9047] = {.lex_state = 593, .external_lex_state = 83}, + [9048] = {.lex_state = 593, .external_lex_state = 83}, + [9049] = {.lex_state = 593, .external_lex_state = 14}, + [9050] = {.lex_state = 593, .external_lex_state = 83}, + [9051] = {.lex_state = 593, .external_lex_state = 14}, + [9052] = {.lex_state = 593, .external_lex_state = 83}, + [9053] = {.lex_state = 593, .external_lex_state = 14}, + [9054] = {.lex_state = 593, .external_lex_state = 83}, + [9055] = {.lex_state = 593, .external_lex_state = 14}, + [9056] = {.lex_state = 593, .external_lex_state = 83}, + [9057] = {.lex_state = 593, .external_lex_state = 14}, + [9058] = {.lex_state = 593, .external_lex_state = 14}, + [9059] = {.lex_state = 593, .external_lex_state = 83}, + [9060] = {.lex_state = 593, .external_lex_state = 83}, + [9061] = {.lex_state = 593, .external_lex_state = 83}, + [9062] = {.lex_state = 593, .external_lex_state = 83}, + [9063] = {.lex_state = 593, .external_lex_state = 83}, + [9064] = {.lex_state = 593, .external_lex_state = 14}, + [9065] = {.lex_state = 593, .external_lex_state = 83}, + [9066] = {.lex_state = 593, .external_lex_state = 14}, + [9067] = {.lex_state = 593, .external_lex_state = 83}, + [9068] = {.lex_state = 593, .external_lex_state = 14}, + [9069] = {.lex_state = 593, .external_lex_state = 83}, + [9070] = {.lex_state = 593, .external_lex_state = 83}, + [9071] = {.lex_state = 593, .external_lex_state = 14}, + [9072] = {.lex_state = 593, .external_lex_state = 83}, + [9073] = {.lex_state = 593, .external_lex_state = 14}, + [9074] = {.lex_state = 593, .external_lex_state = 83}, + [9075] = {.lex_state = 593, .external_lex_state = 83}, + [9076] = {.lex_state = 593, .external_lex_state = 14}, + [9077] = {.lex_state = 593, .external_lex_state = 83}, + [9078] = {.lex_state = 593, .external_lex_state = 14}, + [9079] = {.lex_state = 593, .external_lex_state = 83}, + [9080] = {.lex_state = 593, .external_lex_state = 83}, + [9081] = {.lex_state = 593, .external_lex_state = 83}, + [9082] = {.lex_state = 593, .external_lex_state = 14}, + [9083] = {.lex_state = 593, .external_lex_state = 14}, + [9084] = {.lex_state = 593, .external_lex_state = 83}, + [9085] = {.lex_state = 593, .external_lex_state = 14}, + [9086] = {.lex_state = 593, .external_lex_state = 83}, + [9087] = {.lex_state = 593, .external_lex_state = 83}, + [9088] = {.lex_state = 593, .external_lex_state = 14}, + [9089] = {.lex_state = 593, .external_lex_state = 83}, + [9090] = {.lex_state = 593, .external_lex_state = 14}, + [9091] = {.lex_state = 593, .external_lex_state = 83}, + [9092] = {.lex_state = 593, .external_lex_state = 14}, + [9093] = {.lex_state = 593, .external_lex_state = 83}, + [9094] = {.lex_state = 593, .external_lex_state = 83}, + [9095] = {.lex_state = 593, .external_lex_state = 83}, + [9096] = {.lex_state = 593, .external_lex_state = 83}, + [9097] = {.lex_state = 593, .external_lex_state = 14}, + [9098] = {.lex_state = 593, .external_lex_state = 14}, + [9099] = {.lex_state = 593, .external_lex_state = 83}, + [9100] = {.lex_state = 593, .external_lex_state = 83}, + [9101] = {.lex_state = 593, .external_lex_state = 83}, + [9102] = {.lex_state = 593, .external_lex_state = 83}, + [9103] = {.lex_state = 593, .external_lex_state = 14}, + [9104] = {.lex_state = 593, .external_lex_state = 14}, + [9105] = {.lex_state = 593, .external_lex_state = 83}, + [9106] = {.lex_state = 593, .external_lex_state = 14}, + [9107] = {.lex_state = 593, .external_lex_state = 83}, + [9108] = {.lex_state = 593, .external_lex_state = 14}, + [9109] = {.lex_state = 593, .external_lex_state = 83}, + [9110] = {.lex_state = 593, .external_lex_state = 83}, + [9111] = {.lex_state = 593, .external_lex_state = 14}, + [9112] = {.lex_state = 593, .external_lex_state = 83}, + [9113] = {.lex_state = 593, .external_lex_state = 14}, + [9114] = {.lex_state = 593, .external_lex_state = 14}, + [9115] = {.lex_state = 593, .external_lex_state = 83}, + [9116] = {.lex_state = 593, .external_lex_state = 14}, + [9117] = {.lex_state = 593, .external_lex_state = 83}, + [9118] = {.lex_state = 593, .external_lex_state = 83}, + [9119] = {.lex_state = 593, .external_lex_state = 14}, + [9120] = {.lex_state = 593, .external_lex_state = 14}, + [9121] = {.lex_state = 593, .external_lex_state = 83}, + [9122] = {.lex_state = 593, .external_lex_state = 14}, + [9123] = {.lex_state = 593, .external_lex_state = 83}, + [9124] = {.lex_state = 593, .external_lex_state = 83}, + [9125] = {.lex_state = 593, .external_lex_state = 14}, + [9126] = {.lex_state = 593, .external_lex_state = 83}, + [9127] = {.lex_state = 593, .external_lex_state = 14}, + [9128] = {.lex_state = 593, .external_lex_state = 83}, + [9129] = {.lex_state = 593, .external_lex_state = 83}, + [9130] = {.lex_state = 593, .external_lex_state = 14}, + [9131] = {.lex_state = 593, .external_lex_state = 83}, + [9132] = {.lex_state = 593, .external_lex_state = 83}, + [9133] = {.lex_state = 593, .external_lex_state = 14}, + [9134] = {.lex_state = 593, .external_lex_state = 83}, + [9135] = {.lex_state = 593, .external_lex_state = 14}, + [9136] = {.lex_state = 593, .external_lex_state = 83}, + [9137] = {.lex_state = 593, .external_lex_state = 83}, + [9138] = {.lex_state = 593, .external_lex_state = 14}, + [9139] = {.lex_state = 593, .external_lex_state = 83}, + [9140] = {.lex_state = 593, .external_lex_state = 14}, + [9141] = {.lex_state = 593, .external_lex_state = 83}, + [9142] = {.lex_state = 593, .external_lex_state = 83}, + [9143] = {.lex_state = 593, .external_lex_state = 83}, + [9144] = {.lex_state = 593, .external_lex_state = 14}, + [9145] = {.lex_state = 593, .external_lex_state = 83}, + [9146] = {.lex_state = 593, .external_lex_state = 14}, + [9147] = {.lex_state = 593, .external_lex_state = 83}, + [9148] = {.lex_state = 593, .external_lex_state = 83}, + [9149] = {.lex_state = 593, .external_lex_state = 83}, + [9150] = {.lex_state = 593, .external_lex_state = 14}, + [9151] = {.lex_state = 593, .external_lex_state = 83}, + [9152] = {.lex_state = 593, .external_lex_state = 14}, + [9153] = {.lex_state = 593, .external_lex_state = 83}, + [9154] = {.lex_state = 593, .external_lex_state = 83}, + [9155] = {.lex_state = 593, .external_lex_state = 14}, + [9156] = {.lex_state = 593, .external_lex_state = 83}, + [9157] = {.lex_state = 593, .external_lex_state = 14}, + [9158] = {.lex_state = 593, .external_lex_state = 83}, + [9159] = {.lex_state = 593, .external_lex_state = 83}, + [9160] = {.lex_state = 593, .external_lex_state = 14}, + [9161] = {.lex_state = 593, .external_lex_state = 83}, + [9162] = {.lex_state = 593, .external_lex_state = 14}, + [9163] = {.lex_state = 593, .external_lex_state = 83}, + [9164] = {.lex_state = 593, .external_lex_state = 83}, + [9165] = {.lex_state = 593, .external_lex_state = 83}, + [9166] = {.lex_state = 593, .external_lex_state = 14}, + [9167] = {.lex_state = 593, .external_lex_state = 83}, + [9168] = {.lex_state = 593, .external_lex_state = 14}, + [9169] = {.lex_state = 593, .external_lex_state = 83}, + [9170] = {.lex_state = 593, .external_lex_state = 83}, + [9171] = {.lex_state = 593, .external_lex_state = 14}, + [9172] = {.lex_state = 593, .external_lex_state = 83}, + [9173] = {.lex_state = 593, .external_lex_state = 14}, + [9174] = {.lex_state = 593, .external_lex_state = 83}, + [9175] = {.lex_state = 593, .external_lex_state = 83}, + [9176] = {.lex_state = 593, .external_lex_state = 83}, + [9177] = {.lex_state = 593, .external_lex_state = 14}, + [9178] = {.lex_state = 593, .external_lex_state = 83}, + [9179] = {.lex_state = 593, .external_lex_state = 14}, + [9180] = {.lex_state = 593, .external_lex_state = 83}, + [9181] = {.lex_state = 593, .external_lex_state = 14}, + [9182] = {.lex_state = 593, .external_lex_state = 83}, + [9183] = {.lex_state = 593, .external_lex_state = 83}, + [9184] = {.lex_state = 593, .external_lex_state = 14}, + [9185] = {.lex_state = 593, .external_lex_state = 83}, + [9186] = {.lex_state = 593, .external_lex_state = 14}, + [9187] = {.lex_state = 593, .external_lex_state = 83}, + [9188] = {.lex_state = 593, .external_lex_state = 83}, + [9189] = {.lex_state = 593, .external_lex_state = 83}, + [9190] = {.lex_state = 593, .external_lex_state = 14}, + [9191] = {.lex_state = 593, .external_lex_state = 83}, + [9192] = {.lex_state = 593, .external_lex_state = 83}, + [9193] = {.lex_state = 593, .external_lex_state = 14}, + [9194] = {.lex_state = 593, .external_lex_state = 83}, + [9195] = {.lex_state = 593, .external_lex_state = 25}, + [9196] = {.lex_state = 593, .external_lex_state = 14}, + [9197] = {.lex_state = 593, .external_lex_state = 83}, + [9198] = {.lex_state = 593, .external_lex_state = 83}, + [9199] = {.lex_state = 593, .external_lex_state = 83}, + [9200] = {.lex_state = 593, .external_lex_state = 25}, + [9201] = {.lex_state = 593, .external_lex_state = 14}, + [9202] = {.lex_state = 593, .external_lex_state = 83}, + [9203] = {.lex_state = 593, .external_lex_state = 14}, + [9204] = {.lex_state = 593, .external_lex_state = 83}, + [9205] = {.lex_state = 593, .external_lex_state = 14}, + [9206] = {.lex_state = 593, .external_lex_state = 83}, + [9207] = {.lex_state = 593, .external_lex_state = 83}, + [9208] = {.lex_state = 593, .external_lex_state = 83}, + [9209] = {.lex_state = 593, .external_lex_state = 14}, + [9210] = {.lex_state = 593, .external_lex_state = 83}, + [9211] = {.lex_state = 593, .external_lex_state = 96}, + [9212] = {.lex_state = 593, .external_lex_state = 14}, + [9213] = {.lex_state = 593, .external_lex_state = 83}, + [9214] = {.lex_state = 593, .external_lex_state = 83}, + [9215] = {.lex_state = 593, .external_lex_state = 14}, + [9216] = {.lex_state = 593, .external_lex_state = 83}, + [9217] = {.lex_state = 593, .external_lex_state = 83}, + [9218] = {.lex_state = 593, .external_lex_state = 14}, + [9219] = {.lex_state = 593, .external_lex_state = 83}, + [9220] = {.lex_state = 593, .external_lex_state = 83}, + [9221] = {.lex_state = 593, .external_lex_state = 83}, + [9222] = {.lex_state = 593, .external_lex_state = 14}, + [9223] = {.lex_state = 593, .external_lex_state = 32}, + [9224] = {.lex_state = 593, .external_lex_state = 83}, + [9225] = {.lex_state = 593, .external_lex_state = 14}, + [9226] = {.lex_state = 593, .external_lex_state = 83}, + [9227] = {.lex_state = 593, .external_lex_state = 14}, + [9228] = {.lex_state = 593, .external_lex_state = 83}, + [9229] = {.lex_state = 593, .external_lex_state = 14}, + [9230] = {.lex_state = 593, .external_lex_state = 96}, + [9231] = {.lex_state = 593, .external_lex_state = 83}, + [9232] = {.lex_state = 593, .external_lex_state = 83}, + [9233] = {.lex_state = 593, .external_lex_state = 14}, + [9234] = {.lex_state = 593, .external_lex_state = 83}, + [9235] = {.lex_state = 593, .external_lex_state = 14}, + [9236] = {.lex_state = 593, .external_lex_state = 83}, + [9237] = {.lex_state = 593, .external_lex_state = 83}, + [9238] = {.lex_state = 593, .external_lex_state = 83}, + [9239] = {.lex_state = 593, .external_lex_state = 14}, + [9240] = {.lex_state = 593, .external_lex_state = 83}, + [9241] = {.lex_state = 593, .external_lex_state = 14}, + [9242] = {.lex_state = 593, .external_lex_state = 83}, + [9243] = {.lex_state = 593, .external_lex_state = 83}, + [9244] = {.lex_state = 593, .external_lex_state = 83}, + [9245] = {.lex_state = 593, .external_lex_state = 14}, + [9246] = {.lex_state = 593, .external_lex_state = 83}, + [9247] = {.lex_state = 593, .external_lex_state = 83}, + [9248] = {.lex_state = 593, .external_lex_state = 14}, + [9249] = {.lex_state = 593, .external_lex_state = 83}, + [9250] = {.lex_state = 593, .external_lex_state = 14}, + [9251] = {.lex_state = 593, .external_lex_state = 83}, + [9252] = {.lex_state = 593, .external_lex_state = 14}, + [9253] = {.lex_state = 593, .external_lex_state = 83}, + [9254] = {.lex_state = 593, .external_lex_state = 80}, + [9255] = {.lex_state = 593, .external_lex_state = 83}, + [9256] = {.lex_state = 593, .external_lex_state = 14}, + [9257] = {.lex_state = 593, .external_lex_state = 83}, + [9258] = {.lex_state = 593, .external_lex_state = 14}, + [9259] = {.lex_state = 593, .external_lex_state = 83}, + [9260] = {.lex_state = 593, .external_lex_state = 83}, + [9261] = {.lex_state = 593, .external_lex_state = 83}, + [9262] = {.lex_state = 593, .external_lex_state = 14}, + [9263] = {.lex_state = 593, .external_lex_state = 83}, + [9264] = {.lex_state = 593, .external_lex_state = 14}, + [9265] = {.lex_state = 593, .external_lex_state = 83}, + [9266] = {.lex_state = 593, .external_lex_state = 83}, + [9267] = {.lex_state = 593, .external_lex_state = 83}, + [9268] = {.lex_state = 593, .external_lex_state = 14}, + [9269] = {.lex_state = 593, .external_lex_state = 83}, + [9270] = {.lex_state = 593, .external_lex_state = 14}, + [9271] = {.lex_state = 593, .external_lex_state = 14}, + [9272] = {.lex_state = 593, .external_lex_state = 83}, + [9273] = {.lex_state = 593, .external_lex_state = 83}, + [9274] = {.lex_state = 593, .external_lex_state = 14}, + [9275] = {.lex_state = 593, .external_lex_state = 83}, + [9276] = {.lex_state = 593, .external_lex_state = 14}, + [9277] = {.lex_state = 593, .external_lex_state = 83}, + [9278] = {.lex_state = 593, .external_lex_state = 83}, + [9279] = {.lex_state = 593, .external_lex_state = 14}, + [9280] = {.lex_state = 593, .external_lex_state = 83}, + [9281] = {.lex_state = 593, .external_lex_state = 14}, + [9282] = {.lex_state = 593, .external_lex_state = 83}, + [9283] = {.lex_state = 593, .external_lex_state = 83}, + [9284] = {.lex_state = 593, .external_lex_state = 83}, + [9285] = {.lex_state = 593, .external_lex_state = 83}, + [9286] = {.lex_state = 593, .external_lex_state = 14}, + [9287] = {.lex_state = 593, .external_lex_state = 83}, + [9288] = {.lex_state = 593, .external_lex_state = 14}, + [9289] = {.lex_state = 593, .external_lex_state = 83}, + [9290] = {.lex_state = 593, .external_lex_state = 83}, + [9291] = {.lex_state = 593, .external_lex_state = 14}, + [9292] = {.lex_state = 593, .external_lex_state = 83}, + [9293] = {.lex_state = 593, .external_lex_state = 14}, + [9294] = {.lex_state = 593, .external_lex_state = 83}, + [9295] = {.lex_state = 593, .external_lex_state = 14}, + [9296] = {.lex_state = 593, .external_lex_state = 83}, + [9297] = {.lex_state = 593, .external_lex_state = 14}, + [9298] = {.lex_state = 593, .external_lex_state = 83}, + [9299] = {.lex_state = 593, .external_lex_state = 83}, + [9300] = {.lex_state = 593, .external_lex_state = 14}, + [9301] = {.lex_state = 593, .external_lex_state = 14}, + [9302] = {.lex_state = 593, .external_lex_state = 83}, + [9303] = {.lex_state = 593, .external_lex_state = 14}, + [9304] = {.lex_state = 593, .external_lex_state = 14}, + [9305] = {.lex_state = 593, .external_lex_state = 83}, + [9306] = {.lex_state = 593, .external_lex_state = 14}, + [9307] = {.lex_state = 593, .external_lex_state = 83}, + [9308] = {.lex_state = 593, .external_lex_state = 14}, + [9309] = {.lex_state = 593, .external_lex_state = 83}, + [9310] = {.lex_state = 593, .external_lex_state = 83}, + [9311] = {.lex_state = 593, .external_lex_state = 14}, + [9312] = {.lex_state = 593, .external_lex_state = 83}, + [9313] = {.lex_state = 593, .external_lex_state = 14}, + [9314] = {.lex_state = 593, .external_lex_state = 83}, + [9315] = {.lex_state = 593, .external_lex_state = 14}, + [9316] = {.lex_state = 593, .external_lex_state = 83}, + [9317] = {.lex_state = 593, .external_lex_state = 83}, + [9318] = {.lex_state = 593, .external_lex_state = 83}, + [9319] = {.lex_state = 593, .external_lex_state = 14}, + [9320] = {.lex_state = 593, .external_lex_state = 83}, + [9321] = {.lex_state = 593, .external_lex_state = 14}, + [9322] = {.lex_state = 593, .external_lex_state = 83}, + [9323] = {.lex_state = 593, .external_lex_state = 83}, + [9324] = {.lex_state = 593, .external_lex_state = 83}, + [9325] = {.lex_state = 593, .external_lex_state = 14}, + [9326] = {.lex_state = 593, .external_lex_state = 83}, + [9327] = {.lex_state = 593, .external_lex_state = 83}, + [9328] = {.lex_state = 593, .external_lex_state = 83}, + [9329] = {.lex_state = 593, .external_lex_state = 83}, + [9330] = {.lex_state = 593, .external_lex_state = 14}, + [9331] = {.lex_state = 593, .external_lex_state = 83}, + [9332] = {.lex_state = 593, .external_lex_state = 14}, + [9333] = {.lex_state = 593, .external_lex_state = 83}, + [9334] = {.lex_state = 593, .external_lex_state = 83}, + [9335] = {.lex_state = 593, .external_lex_state = 14}, + [9336] = {.lex_state = 593, .external_lex_state = 83}, + [9337] = {.lex_state = 593, .external_lex_state = 14}, + [9338] = {.lex_state = 593, .external_lex_state = 83}, + [9339] = {.lex_state = 593, .external_lex_state = 83}, + [9340] = {.lex_state = 593, .external_lex_state = 83}, + [9341] = {.lex_state = 593, .external_lex_state = 14}, + [9342] = {.lex_state = 593, .external_lex_state = 83}, + [9343] = {.lex_state = 593, .external_lex_state = 14}, + [9344] = {.lex_state = 593, .external_lex_state = 83}, + [9345] = {.lex_state = 593, .external_lex_state = 83}, + [9346] = {.lex_state = 593, .external_lex_state = 83}, + [9347] = {.lex_state = 593, .external_lex_state = 14}, + [9348] = {.lex_state = 593, .external_lex_state = 83}, + [9349] = {.lex_state = 593, .external_lex_state = 14}, + [9350] = {.lex_state = 593, .external_lex_state = 83}, + [9351] = {.lex_state = 593, .external_lex_state = 83}, + [9352] = {.lex_state = 593, .external_lex_state = 14}, + [9353] = {.lex_state = 593, .external_lex_state = 83}, + [9354] = {.lex_state = 593, .external_lex_state = 14}, + [9355] = {.lex_state = 593, .external_lex_state = 83}, + [9356] = {.lex_state = 593, .external_lex_state = 83}, + [9357] = {.lex_state = 593, .external_lex_state = 14}, + [9358] = {.lex_state = 593, .external_lex_state = 83}, + [9359] = {.lex_state = 593, .external_lex_state = 14}, + [9360] = {.lex_state = 593, .external_lex_state = 83}, + [9361] = {.lex_state = 593, .external_lex_state = 83}, + [9362] = {.lex_state = 593, .external_lex_state = 14}, + [9363] = {.lex_state = 593, .external_lex_state = 83}, + [9364] = {.lex_state = 593, .external_lex_state = 14}, + [9365] = {.lex_state = 593, .external_lex_state = 83}, + [9366] = {.lex_state = 593, .external_lex_state = 83}, + [9367] = {.lex_state = 593, .external_lex_state = 83}, + [9368] = {.lex_state = 593, .external_lex_state = 14}, + [9369] = {.lex_state = 593, .external_lex_state = 83}, + [9370] = {.lex_state = 593, .external_lex_state = 14}, + [9371] = {.lex_state = 593, .external_lex_state = 83}, + [9372] = {.lex_state = 593, .external_lex_state = 83}, + [9373] = {.lex_state = 593, .external_lex_state = 14}, + [9374] = {.lex_state = 593, .external_lex_state = 83}, + [9375] = {.lex_state = 593, .external_lex_state = 14}, + [9376] = {.lex_state = 593, .external_lex_state = 83}, + [9377] = {.lex_state = 593, .external_lex_state = 83}, + [9378] = {.lex_state = 593, .external_lex_state = 14}, + [9379] = {.lex_state = 593, .external_lex_state = 83}, + [9380] = {.lex_state = 593, .external_lex_state = 14}, + [9381] = {.lex_state = 593, .external_lex_state = 83}, + [9382] = {.lex_state = 593, .external_lex_state = 83}, + [9383] = {.lex_state = 593, .external_lex_state = 83}, + [9384] = {.lex_state = 593, .external_lex_state = 14}, + [9385] = {.lex_state = 593, .external_lex_state = 83}, + [9386] = {.lex_state = 593, .external_lex_state = 14}, + [9387] = {.lex_state = 593, .external_lex_state = 83}, + [9388] = {.lex_state = 593, .external_lex_state = 83}, + [9389] = {.lex_state = 593, .external_lex_state = 14}, + [9390] = {.lex_state = 593, .external_lex_state = 83}, + [9391] = {.lex_state = 593, .external_lex_state = 14}, + [9392] = {.lex_state = 593, .external_lex_state = 83}, + [9393] = {.lex_state = 593, .external_lex_state = 83}, + [9394] = {.lex_state = 593, .external_lex_state = 14}, + [9395] = {.lex_state = 593, .external_lex_state = 83}, + [9396] = {.lex_state = 593, .external_lex_state = 83}, + [9397] = {.lex_state = 593, .external_lex_state = 14}, + [9398] = {.lex_state = 593, .external_lex_state = 83}, + [9399] = {.lex_state = 593, .external_lex_state = 14}, + [9400] = {.lex_state = 593, .external_lex_state = 83}, + [9401] = {.lex_state = 593, .external_lex_state = 83}, + [9402] = {.lex_state = 593, .external_lex_state = 83}, + [9403] = {.lex_state = 593, .external_lex_state = 14}, + [9404] = {.lex_state = 593, .external_lex_state = 83}, + [9405] = {.lex_state = 593, .external_lex_state = 14}, + [9406] = {.lex_state = 593, .external_lex_state = 14}, + [9407] = {.lex_state = 593, .external_lex_state = 83}, + [9408] = {.lex_state = 593, .external_lex_state = 14}, + [9409] = {.lex_state = 593, .external_lex_state = 83}, + [9410] = {.lex_state = 593, .external_lex_state = 14}, + [9411] = {.lex_state = 593, .external_lex_state = 83}, + [9412] = {.lex_state = 593, .external_lex_state = 83}, + [9413] = {.lex_state = 593, .external_lex_state = 83}, + [9414] = {.lex_state = 593, .external_lex_state = 14}, + [9415] = {.lex_state = 593, .external_lex_state = 83}, + [9416] = {.lex_state = 593, .external_lex_state = 83}, + [9417] = {.lex_state = 593, .external_lex_state = 83}, + [9418] = {.lex_state = 593, .external_lex_state = 14}, + [9419] = {.lex_state = 593, .external_lex_state = 83}, + [9420] = {.lex_state = 593, .external_lex_state = 14}, + [9421] = {.lex_state = 593, .external_lex_state = 83}, + [9422] = {.lex_state = 593, .external_lex_state = 14}, + [9423] = {.lex_state = 593, .external_lex_state = 83}, + [9424] = {.lex_state = 593, .external_lex_state = 83}, + [9425] = {.lex_state = 593, .external_lex_state = 83}, + [9426] = {.lex_state = 593, .external_lex_state = 14}, + [9427] = {.lex_state = 593, .external_lex_state = 83}, + [9428] = {.lex_state = 593, .external_lex_state = 14}, + [9429] = {.lex_state = 593, .external_lex_state = 83}, + [9430] = {.lex_state = 593, .external_lex_state = 83}, + [9431] = {.lex_state = 593, .external_lex_state = 83}, + [9432] = {.lex_state = 593, .external_lex_state = 14}, + [9433] = {.lex_state = 593, .external_lex_state = 83}, + [9434] = {.lex_state = 593, .external_lex_state = 14}, + [9435] = {.lex_state = 593, .external_lex_state = 83}, + [9436] = {.lex_state = 593, .external_lex_state = 83}, + [9437] = {.lex_state = 593, .external_lex_state = 83}, + [9438] = {.lex_state = 593, .external_lex_state = 83}, + [9439] = {.lex_state = 593, .external_lex_state = 14}, + [9440] = {.lex_state = 593, .external_lex_state = 83}, + [9441] = {.lex_state = 593, .external_lex_state = 83}, + [9442] = {.lex_state = 593, .external_lex_state = 83}, + [9443] = {.lex_state = 593, .external_lex_state = 14}, + [9444] = {.lex_state = 593, .external_lex_state = 83}, + [9445] = {.lex_state = 593, .external_lex_state = 83}, + [9446] = {.lex_state = 593, .external_lex_state = 83}, + [9447] = {.lex_state = 593, .external_lex_state = 14}, + [9448] = {.lex_state = 593, .external_lex_state = 83}, + [9449] = {.lex_state = 593, .external_lex_state = 14}, + [9450] = {.lex_state = 593, .external_lex_state = 83}, + [9451] = {.lex_state = 593, .external_lex_state = 83}, + [9452] = {.lex_state = 593, .external_lex_state = 14}, + [9453] = {.lex_state = 593, .external_lex_state = 83}, + [9454] = {.lex_state = 593, .external_lex_state = 14}, + [9455] = {.lex_state = 593, .external_lex_state = 83}, + [9456] = {.lex_state = 593, .external_lex_state = 83}, + [9457] = {.lex_state = 593, .external_lex_state = 14}, + [9458] = {.lex_state = 593, .external_lex_state = 83}, + [9459] = {.lex_state = 593, .external_lex_state = 83}, + [9460] = {.lex_state = 593, .external_lex_state = 14}, + [9461] = {.lex_state = 593, .external_lex_state = 83}, + [9462] = {.lex_state = 593, .external_lex_state = 83}, + [9463] = {.lex_state = 593, .external_lex_state = 14}, + [9464] = {.lex_state = 593, .external_lex_state = 83}, + [9465] = {.lex_state = 593, .external_lex_state = 14}, + [9466] = {.lex_state = 593, .external_lex_state = 83}, + [9467] = {.lex_state = 593, .external_lex_state = 83}, + [9468] = {.lex_state = 593, .external_lex_state = 14}, + [9469] = {.lex_state = 593, .external_lex_state = 83}, + [9470] = {.lex_state = 593, .external_lex_state = 14}, + [9471] = {.lex_state = 593, .external_lex_state = 83}, + [9472] = {.lex_state = 593, .external_lex_state = 83}, + [9473] = {.lex_state = 593, .external_lex_state = 14}, + [9474] = {.lex_state = 593, .external_lex_state = 83}, + [9475] = {.lex_state = 593, .external_lex_state = 83}, + [9476] = {.lex_state = 593, .external_lex_state = 14}, + [9477] = {.lex_state = 593, .external_lex_state = 14}, + [9478] = {.lex_state = 593, .external_lex_state = 83}, + [9479] = {.lex_state = 593, .external_lex_state = 14}, + [9480] = {.lex_state = 593, .external_lex_state = 83}, + [9481] = {.lex_state = 593, .external_lex_state = 83}, + [9482] = {.lex_state = 593, .external_lex_state = 14}, + [9483] = {.lex_state = 593, .external_lex_state = 83}, + [9484] = {.lex_state = 593, .external_lex_state = 14}, + [9485] = {.lex_state = 593, .external_lex_state = 83}, + [9486] = {.lex_state = 593, .external_lex_state = 14}, + [9487] = {.lex_state = 593, .external_lex_state = 83}, + [9488] = {.lex_state = 593, .external_lex_state = 83}, + [9489] = {.lex_state = 593, .external_lex_state = 14}, + [9490] = {.lex_state = 593, .external_lex_state = 83}, + [9491] = {.lex_state = 593, .external_lex_state = 14}, + [9492] = {.lex_state = 593, .external_lex_state = 83}, + [9493] = {.lex_state = 593, .external_lex_state = 83}, + [9494] = {.lex_state = 593, .external_lex_state = 83}, + [9495] = {.lex_state = 593, .external_lex_state = 14}, + [9496] = {.lex_state = 593, .external_lex_state = 83}, + [9497] = {.lex_state = 593, .external_lex_state = 83}, + [9498] = {.lex_state = 593, .external_lex_state = 14}, + [9499] = {.lex_state = 593, .external_lex_state = 83}, + [9500] = {.lex_state = 593, .external_lex_state = 14}, + [9501] = {.lex_state = 593, .external_lex_state = 14}, + [9502] = {.lex_state = 593, .external_lex_state = 83}, + [9503] = {.lex_state = 593, .external_lex_state = 14}, + [9504] = {.lex_state = 593, .external_lex_state = 83}, + [9505] = {.lex_state = 593, .external_lex_state = 14}, + [9506] = {.lex_state = 593, .external_lex_state = 14}, + [9507] = {.lex_state = 593, .external_lex_state = 83}, + [9508] = {.lex_state = 593, .external_lex_state = 14}, + [9509] = {.lex_state = 593, .external_lex_state = 83}, + [9510] = {.lex_state = 593, .external_lex_state = 14}, + [9511] = {.lex_state = 593, .external_lex_state = 83}, + [9512] = {.lex_state = 593, .external_lex_state = 14}, + [9513] = {.lex_state = 593, .external_lex_state = 83}, + [9514] = {.lex_state = 593, .external_lex_state = 83}, + [9515] = {.lex_state = 593, .external_lex_state = 83}, + [9516] = {.lex_state = 593, .external_lex_state = 14}, + [9517] = {.lex_state = 593, .external_lex_state = 83}, + [9518] = {.lex_state = 593, .external_lex_state = 14}, + [9519] = {.lex_state = 593, .external_lex_state = 83}, + [9520] = {.lex_state = 593, .external_lex_state = 83}, + [9521] = {.lex_state = 593, .external_lex_state = 14}, + [9522] = {.lex_state = 593, .external_lex_state = 83}, + [9523] = {.lex_state = 593, .external_lex_state = 14}, + [9524] = {.lex_state = 593, .external_lex_state = 83}, + [9525] = {.lex_state = 593, .external_lex_state = 83}, + [9526] = {.lex_state = 593, .external_lex_state = 83}, + [9527] = {.lex_state = 593, .external_lex_state = 83}, + [9528] = {.lex_state = 593, .external_lex_state = 83}, + [9529] = {.lex_state = 593, .external_lex_state = 14}, + [9530] = {.lex_state = 593, .external_lex_state = 14}, + [9531] = {.lex_state = 593, .external_lex_state = 83}, + [9532] = {.lex_state = 593, .external_lex_state = 14}, + [9533] = {.lex_state = 593, .external_lex_state = 83}, + [9534] = {.lex_state = 593, .external_lex_state = 83}, + [9535] = {.lex_state = 593, .external_lex_state = 14}, + [9536] = {.lex_state = 593, .external_lex_state = 83}, + [9537] = {.lex_state = 593, .external_lex_state = 14}, + [9538] = {.lex_state = 593, .external_lex_state = 83}, + [9539] = {.lex_state = 593, .external_lex_state = 83}, + [9540] = {.lex_state = 593, .external_lex_state = 83}, + [9541] = {.lex_state = 593, .external_lex_state = 83}, + [9542] = {.lex_state = 593, .external_lex_state = 83}, + [9543] = {.lex_state = 593, .external_lex_state = 14}, + [9544] = {.lex_state = 593, .external_lex_state = 83}, + [9545] = {.lex_state = 593, .external_lex_state = 83}, + [9546] = {.lex_state = 593, .external_lex_state = 14}, + [9547] = {.lex_state = 593, .external_lex_state = 83}, + [9548] = {.lex_state = 593, .external_lex_state = 14}, + [9549] = {.lex_state = 593, .external_lex_state = 83}, + [9550] = {.lex_state = 593, .external_lex_state = 14}, + [9551] = {.lex_state = 593, .external_lex_state = 96}, + [9552] = {.lex_state = 593, .external_lex_state = 96}, + [9553] = {.lex_state = 593, .external_lex_state = 14}, + [9554] = {.lex_state = 593, .external_lex_state = 83}, + [9555] = {.lex_state = 593, .external_lex_state = 83}, + [9556] = {.lex_state = 593, .external_lex_state = 14}, + [9557] = {.lex_state = 593, .external_lex_state = 25}, + [9558] = {.lex_state = 593, .external_lex_state = 96}, + [9559] = {.lex_state = 593, .external_lex_state = 83}, + [9560] = {.lex_state = 593, .external_lex_state = 25}, + [9561] = {.lex_state = 593, .external_lex_state = 14}, + [9562] = {.lex_state = 593, .external_lex_state = 96}, + [9563] = {.lex_state = 593, .external_lex_state = 83}, + [9564] = {.lex_state = 593, .external_lex_state = 14}, + [9565] = {.lex_state = 593, .external_lex_state = 83}, + [9566] = {.lex_state = 593, .external_lex_state = 83}, + [9567] = {.lex_state = 593, .external_lex_state = 83}, + [9568] = {.lex_state = 593, .external_lex_state = 14}, + [9569] = {.lex_state = 593, .external_lex_state = 83}, + [9570] = {.lex_state = 593, .external_lex_state = 96}, + [9571] = {.lex_state = 593, .external_lex_state = 14}, + [9572] = {.lex_state = 593, .external_lex_state = 83}, + [9573] = {.lex_state = 593, .external_lex_state = 83}, + [9574] = {.lex_state = 593, .external_lex_state = 14}, + [9575] = {.lex_state = 593, .external_lex_state = 32}, + [9576] = {.lex_state = 593, .external_lex_state = 14}, + [9577] = {.lex_state = 593, .external_lex_state = 83}, + [9578] = {.lex_state = 593, .external_lex_state = 83}, + [9579] = {.lex_state = 593, .external_lex_state = 14}, + [9580] = {.lex_state = 593, .external_lex_state = 83}, + [9581] = {.lex_state = 593, .external_lex_state = 83}, + [9582] = {.lex_state = 593, .external_lex_state = 96}, + [9583] = {.lex_state = 593, .external_lex_state = 83}, + [9584] = {.lex_state = 593, .external_lex_state = 83}, + [9585] = {.lex_state = 593, .external_lex_state = 96}, + [9586] = {.lex_state = 593, .external_lex_state = 96}, + [9587] = {.lex_state = 593, .external_lex_state = 96}, + [9588] = {.lex_state = 593, .external_lex_state = 83}, + [9589] = {.lex_state = 593, .external_lex_state = 14}, + [9590] = {.lex_state = 593, .external_lex_state = 83}, + [9591] = {.lex_state = 593, .external_lex_state = 83}, + [9592] = {.lex_state = 593, .external_lex_state = 96}, + [9593] = {.lex_state = 593, .external_lex_state = 83}, + [9594] = {.lex_state = 593, .external_lex_state = 14}, + [9595] = {.lex_state = 593, .external_lex_state = 14}, + [9596] = {.lex_state = 593, .external_lex_state = 83}, + [9597] = {.lex_state = 593, .external_lex_state = 14}, + [9598] = {.lex_state = 593, .external_lex_state = 83}, + [9599] = {.lex_state = 593, .external_lex_state = 14}, + [9600] = {.lex_state = 593, .external_lex_state = 83}, + [9601] = {.lex_state = 593, .external_lex_state = 14}, + [9602] = {.lex_state = 593, .external_lex_state = 83}, + [9603] = {.lex_state = 593, .external_lex_state = 14}, + [9604] = {.lex_state = 593, .external_lex_state = 83}, + [9605] = {.lex_state = 593, .external_lex_state = 96}, + [9606] = {.lex_state = 593, .external_lex_state = 96}, + [9607] = {.lex_state = 593, .external_lex_state = 14}, + [9608] = {.lex_state = 593, .external_lex_state = 14}, + [9609] = {.lex_state = 593, .external_lex_state = 83}, + [9610] = {.lex_state = 593, .external_lex_state = 83}, + [9611] = {.lex_state = 593, .external_lex_state = 14}, + [9612] = {.lex_state = 593, .external_lex_state = 14}, + [9613] = {.lex_state = 593, .external_lex_state = 83}, + [9614] = {.lex_state = 593, .external_lex_state = 96}, + [9615] = {.lex_state = 593, .external_lex_state = 96}, + [9616] = {.lex_state = 593, .external_lex_state = 83}, + [9617] = {.lex_state = 593, .external_lex_state = 14}, + [9618] = {.lex_state = 593, .external_lex_state = 83}, + [9619] = {.lex_state = 593, .external_lex_state = 14}, + [9620] = {.lex_state = 593, .external_lex_state = 83}, + [9621] = {.lex_state = 593, .external_lex_state = 96}, + [9622] = {.lex_state = 593, .external_lex_state = 83}, + [9623] = {.lex_state = 593, .external_lex_state = 14}, + [9624] = {.lex_state = 593, .external_lex_state = 25}, + [9625] = {.lex_state = 593, .external_lex_state = 83}, + [9626] = {.lex_state = 593, .external_lex_state = 14}, + [9627] = {.lex_state = 593, .external_lex_state = 83}, + [9628] = {.lex_state = 593, .external_lex_state = 14}, + [9629] = {.lex_state = 593, .external_lex_state = 83}, + [9630] = {.lex_state = 593, .external_lex_state = 83}, + [9631] = {.lex_state = 593, .external_lex_state = 96}, + [9632] = {.lex_state = 593, .external_lex_state = 14}, + [9633] = {.lex_state = 593, .external_lex_state = 96}, + [9634] = {.lex_state = 593, .external_lex_state = 83}, + [9635] = {.lex_state = 593, .external_lex_state = 32}, + [9636] = {.lex_state = 593, .external_lex_state = 14}, + [9637] = {.lex_state = 593, .external_lex_state = 83}, + [9638] = {.lex_state = 593, .external_lex_state = 83}, + [9639] = {.lex_state = 593, .external_lex_state = 14}, + [9640] = {.lex_state = 593, .external_lex_state = 14}, + [9641] = {.lex_state = 593, .external_lex_state = 96}, + [9642] = {.lex_state = 593, .external_lex_state = 83}, + [9643] = {.lex_state = 593, .external_lex_state = 83}, + [9644] = {.lex_state = 593, .external_lex_state = 83}, + [9645] = {.lex_state = 593, .external_lex_state = 14}, + [9646] = {.lex_state = 593, .external_lex_state = 83}, + [9647] = {.lex_state = 593, .external_lex_state = 83}, + [9648] = {.lex_state = 593, .external_lex_state = 83}, + [9649] = {.lex_state = 593, .external_lex_state = 14}, + [9650] = {.lex_state = 593, .external_lex_state = 83}, + [9651] = {.lex_state = 593, .external_lex_state = 14}, + [9652] = {.lex_state = 593, .external_lex_state = 83}, + [9653] = {.lex_state = 593, .external_lex_state = 83}, + [9654] = {.lex_state = 593, .external_lex_state = 83}, + [9655] = {.lex_state = 593, .external_lex_state = 83}, + [9656] = {.lex_state = 593, .external_lex_state = 14}, + [9657] = {.lex_state = 593, .external_lex_state = 83}, + [9658] = {.lex_state = 593, .external_lex_state = 83}, + [9659] = {.lex_state = 593, .external_lex_state = 83}, + [9660] = {.lex_state = 593, .external_lex_state = 14}, + [9661] = {.lex_state = 593, .external_lex_state = 83}, + [9662] = {.lex_state = 593, .external_lex_state = 14}, + [9663] = {.lex_state = 593, .external_lex_state = 25}, + [9664] = {.lex_state = 593, .external_lex_state = 83}, + [9665] = {.lex_state = 593, .external_lex_state = 14}, + [9666] = {.lex_state = 593, .external_lex_state = 83}, + [9667] = {.lex_state = 593, .external_lex_state = 96}, + [9668] = {.lex_state = 593, .external_lex_state = 96}, + [9669] = {.lex_state = 593, .external_lex_state = 96}, + [9670] = {.lex_state = 593, .external_lex_state = 83}, + [9671] = {.lex_state = 593, .external_lex_state = 14}, + [9672] = {.lex_state = 593, .external_lex_state = 83}, + [9673] = {.lex_state = 593, .external_lex_state = 83}, + [9674] = {.lex_state = 593, .external_lex_state = 96}, + [9675] = {.lex_state = 593, .external_lex_state = 14}, + [9676] = {.lex_state = 593, .external_lex_state = 83}, + [9677] = {.lex_state = 593, .external_lex_state = 96}, + [9678] = {.lex_state = 593, .external_lex_state = 96}, + [9679] = {.lex_state = 593, .external_lex_state = 83}, + [9680] = {.lex_state = 593, .external_lex_state = 83}, + [9681] = {.lex_state = 593, .external_lex_state = 83}, + [9682] = {.lex_state = 593, .external_lex_state = 83}, + [9683] = {.lex_state = 593, .external_lex_state = 83}, + [9684] = {.lex_state = 593, .external_lex_state = 83}, + [9685] = {.lex_state = 593, .external_lex_state = 14}, + [9686] = {.lex_state = 593, .external_lex_state = 83}, + [9687] = {.lex_state = 593, .external_lex_state = 83}, + [9688] = {.lex_state = 593, .external_lex_state = 83}, + [9689] = {.lex_state = 593, .external_lex_state = 14}, + [9690] = {.lex_state = 593, .external_lex_state = 83}, + [9691] = {.lex_state = 593, .external_lex_state = 25}, + [9692] = {.lex_state = 593, .external_lex_state = 83}, + [9693] = {.lex_state = 593, .external_lex_state = 96}, + [9694] = {.lex_state = 593, .external_lex_state = 83}, + [9695] = {.lex_state = 593, .external_lex_state = 14}, + [9696] = {.lex_state = 593, .external_lex_state = 83}, + [9697] = {.lex_state = 593, .external_lex_state = 96}, + [9698] = {.lex_state = 593, .external_lex_state = 96}, + [9699] = {.lex_state = 593, .external_lex_state = 83}, + [9700] = {.lex_state = 593, .external_lex_state = 83}, + [9701] = {.lex_state = 593, .external_lex_state = 14}, + [9702] = {.lex_state = 593, .external_lex_state = 96}, + [9703] = {.lex_state = 593, .external_lex_state = 14}, + [9704] = {.lex_state = 593, .external_lex_state = 83}, + [9705] = {.lex_state = 593, .external_lex_state = 14}, + [9706] = {.lex_state = 593, .external_lex_state = 83}, + [9707] = {.lex_state = 593, .external_lex_state = 14}, + [9708] = {.lex_state = 593, .external_lex_state = 14}, + [9709] = {.lex_state = 593, .external_lex_state = 83}, + [9710] = {.lex_state = 593, .external_lex_state = 14}, + [9711] = {.lex_state = 593, .external_lex_state = 83}, + [9712] = {.lex_state = 593, .external_lex_state = 83}, + [9713] = {.lex_state = 593, .external_lex_state = 83}, + [9714] = {.lex_state = 593, .external_lex_state = 83}, + [9715] = {.lex_state = 593, .external_lex_state = 14}, + [9716] = {.lex_state = 593, .external_lex_state = 25}, + [9717] = {.lex_state = 593, .external_lex_state = 83}, + [9718] = {.lex_state = 593, .external_lex_state = 14}, + [9719] = {.lex_state = 593, .external_lex_state = 83}, + [9720] = {.lex_state = 593, .external_lex_state = 83}, + [9721] = {.lex_state = 593, .external_lex_state = 96}, + [9722] = {.lex_state = 593, .external_lex_state = 14}, + [9723] = {.lex_state = 593, .external_lex_state = 14}, + [9724] = {.lex_state = 593, .external_lex_state = 96}, + [9725] = {.lex_state = 593, .external_lex_state = 96}, + [9726] = {.lex_state = 593, .external_lex_state = 83}, + [9727] = {.lex_state = 593, .external_lex_state = 14}, + [9728] = {.lex_state = 593, .external_lex_state = 83}, + [9729] = {.lex_state = 593, .external_lex_state = 14}, + [9730] = {.lex_state = 593, .external_lex_state = 83}, + [9731] = {.lex_state = 593, .external_lex_state = 83}, + [9732] = {.lex_state = 593, .external_lex_state = 83}, + [9733] = {.lex_state = 593, .external_lex_state = 14}, + [9734] = {.lex_state = 593, .external_lex_state = 96}, + [9735] = {.lex_state = 593, .external_lex_state = 83}, + [9736] = {.lex_state = 593, .external_lex_state = 25}, + [9737] = {.lex_state = 593, .external_lex_state = 83}, + [9738] = {.lex_state = 593, .external_lex_state = 83}, + [9739] = {.lex_state = 593, .external_lex_state = 14}, + [9740] = {.lex_state = 593, .external_lex_state = 96}, + [9741] = {.lex_state = 593, .external_lex_state = 83}, + [9742] = {.lex_state = 593, .external_lex_state = 83}, + [9743] = {.lex_state = 593, .external_lex_state = 96}, + [9744] = {.lex_state = 593, .external_lex_state = 14}, + [9745] = {.lex_state = 593, .external_lex_state = 83}, + [9746] = {.lex_state = 593, .external_lex_state = 83}, + [9747] = {.lex_state = 593, .external_lex_state = 14}, + [9748] = {.lex_state = 593, .external_lex_state = 83}, + [9749] = {.lex_state = 593, .external_lex_state = 83}, + [9750] = {.lex_state = 593, .external_lex_state = 83}, + [9751] = {.lex_state = 593, .external_lex_state = 96}, + [9752] = {.lex_state = 593, .external_lex_state = 96}, + [9753] = {.lex_state = 593, .external_lex_state = 14}, + [9754] = {.lex_state = 593, .external_lex_state = 25}, + [9755] = {.lex_state = 593, .external_lex_state = 83}, + [9756] = {.lex_state = 593, .external_lex_state = 14}, + [9757] = {.lex_state = 593, .external_lex_state = 83}, + [9758] = {.lex_state = 593, .external_lex_state = 96}, + [9759] = {.lex_state = 593, .external_lex_state = 83}, + [9760] = {.lex_state = 593, .external_lex_state = 14}, + [9761] = {.lex_state = 593, .external_lex_state = 96}, + [9762] = {.lex_state = 593, .external_lex_state = 83}, + [9763] = {.lex_state = 593, .external_lex_state = 83}, + [9764] = {.lex_state = 593, .external_lex_state = 83}, + [9765] = {.lex_state = 593, .external_lex_state = 83}, + [9766] = {.lex_state = 593, .external_lex_state = 14}, + [9767] = {.lex_state = 593, .external_lex_state = 83}, + [9768] = {.lex_state = 593, .external_lex_state = 83}, + [9769] = {.lex_state = 593, .external_lex_state = 83}, + [9770] = {.lex_state = 593, .external_lex_state = 83}, + [9771] = {.lex_state = 593, .external_lex_state = 83}, + [9772] = {.lex_state = 593, .external_lex_state = 25}, + [9773] = {.lex_state = 593, .external_lex_state = 14}, + [9774] = {.lex_state = 593, .external_lex_state = 83}, + [9775] = {.lex_state = 593, .external_lex_state = 14}, + [9776] = {.lex_state = 593, .external_lex_state = 96}, + [9777] = {.lex_state = 593, .external_lex_state = 96}, + [9778] = {.lex_state = 593, .external_lex_state = 96}, + [9779] = {.lex_state = 593, .external_lex_state = 83}, + [9780] = {.lex_state = 593, .external_lex_state = 96}, + [9781] = {.lex_state = 593, .external_lex_state = 83}, + [9782] = {.lex_state = 593, .external_lex_state = 14}, + [9783] = {.lex_state = 593, .external_lex_state = 83}, + [9784] = {.lex_state = 593, .external_lex_state = 83}, + [9785] = {.lex_state = 593, .external_lex_state = 14}, + [9786] = {.lex_state = 593, .external_lex_state = 83}, + [9787] = {.lex_state = 593, .external_lex_state = 83}, + [9788] = {.lex_state = 593, .external_lex_state = 14}, + [9789] = {.lex_state = 593, .external_lex_state = 96}, + [9790] = {.lex_state = 593, .external_lex_state = 83}, + [9791] = {.lex_state = 593, .external_lex_state = 96}, + [9792] = {.lex_state = 593, .external_lex_state = 83}, + [9793] = {.lex_state = 593, .external_lex_state = 96}, + [9794] = {.lex_state = 593, .external_lex_state = 96}, + [9795] = {.lex_state = 593, .external_lex_state = 14}, + [9796] = {.lex_state = 593, .external_lex_state = 83}, + [9797] = {.lex_state = 593, .external_lex_state = 96}, + [9798] = {.lex_state = 593, .external_lex_state = 14}, + [9799] = {.lex_state = 593, .external_lex_state = 96}, + [9800] = {.lex_state = 593, .external_lex_state = 83}, + [9801] = {.lex_state = 593, .external_lex_state = 83}, + [9802] = {.lex_state = 593, .external_lex_state = 96}, + [9803] = {.lex_state = 593, .external_lex_state = 96}, + [9804] = {.lex_state = 593, .external_lex_state = 83}, + [9805] = {.lex_state = 593, .external_lex_state = 96}, + [9806] = {.lex_state = 593, .external_lex_state = 83}, + [9807] = {.lex_state = 593, .external_lex_state = 96}, + [9808] = {.lex_state = 593, .external_lex_state = 83}, + [9809] = {.lex_state = 593, .external_lex_state = 14}, + [9810] = {.lex_state = 593, .external_lex_state = 83}, + [9811] = {.lex_state = 593, .external_lex_state = 14}, + [9812] = {.lex_state = 593, .external_lex_state = 96}, + [9813] = {.lex_state = 593, .external_lex_state = 96}, + [9814] = {.lex_state = 593, .external_lex_state = 83}, + [9815] = {.lex_state = 593, .external_lex_state = 83}, + [9816] = {.lex_state = 593, .external_lex_state = 14}, + [9817] = {.lex_state = 593, .external_lex_state = 83}, + [9818] = {.lex_state = 593, .external_lex_state = 96}, + [9819] = {.lex_state = 593, .external_lex_state = 96}, + [9820] = {.lex_state = 593, .external_lex_state = 14}, + [9821] = {.lex_state = 593, .external_lex_state = 83}, + [9822] = {.lex_state = 593, .external_lex_state = 14}, + [9823] = {.lex_state = 593, .external_lex_state = 83}, + [9824] = {.lex_state = 593, .external_lex_state = 96}, + [9825] = {.lex_state = 593, .external_lex_state = 96}, + [9826] = {.lex_state = 593, .external_lex_state = 14}, + [9827] = {.lex_state = 593, .external_lex_state = 83}, + [9828] = {.lex_state = 45, .external_lex_state = 14}, + [9829] = {.lex_state = 45, .external_lex_state = 14}, + [9830] = {.lex_state = 593, .external_lex_state = 14}, + [9831] = {.lex_state = 45, .external_lex_state = 14}, + [9832] = {.lex_state = 45, .external_lex_state = 14}, + [9833] = {.lex_state = 45, .external_lex_state = 14}, + [9834] = {.lex_state = 593, .external_lex_state = 14}, + [9835] = {.lex_state = 593, .external_lex_state = 14}, + [9836] = {.lex_state = 593, .external_lex_state = 83}, + [9837] = {.lex_state = 45, .external_lex_state = 14}, + [9838] = {.lex_state = 45, .external_lex_state = 14}, + [9839] = {.lex_state = 45, .external_lex_state = 14}, + [9840] = {.lex_state = 45, .external_lex_state = 14}, + [9841] = {.lex_state = 45, .external_lex_state = 14}, + [9842] = {.lex_state = 45, .external_lex_state = 14}, + [9843] = {.lex_state = 45, .external_lex_state = 14}, + [9844] = {.lex_state = 45, .external_lex_state = 14}, + [9845] = {.lex_state = 45, .external_lex_state = 14}, + [9846] = {.lex_state = 45, .external_lex_state = 14}, + [9847] = {.lex_state = 45, .external_lex_state = 14}, + [9848] = {.lex_state = 45, .external_lex_state = 14}, + [9849] = {.lex_state = 45, .external_lex_state = 14}, + [9850] = {.lex_state = 45, .external_lex_state = 14}, + [9851] = {.lex_state = 45, .external_lex_state = 14}, + [9852] = {.lex_state = 45, .external_lex_state = 14}, + [9853] = {.lex_state = 45, .external_lex_state = 14}, + [9854] = {.lex_state = 45, .external_lex_state = 14}, + [9855] = {.lex_state = 593, .external_lex_state = 14}, + [9856] = {.lex_state = 45, .external_lex_state = 14}, + [9857] = {.lex_state = 45, .external_lex_state = 14}, + [9858] = {.lex_state = 593, .external_lex_state = 14}, + [9859] = {.lex_state = 45, .external_lex_state = 14}, + [9860] = {.lex_state = 45, .external_lex_state = 14}, + [9861] = {.lex_state = 45, .external_lex_state = 14}, + [9862] = {.lex_state = 45, .external_lex_state = 14}, + [9863] = {.lex_state = 45, .external_lex_state = 14}, + [9864] = {.lex_state = 45, .external_lex_state = 14}, + [9865] = {.lex_state = 45, .external_lex_state = 14}, + [9866] = {.lex_state = 45, .external_lex_state = 14}, + [9867] = {.lex_state = 45, .external_lex_state = 14}, + [9868] = {.lex_state = 45, .external_lex_state = 14}, + [9869] = {.lex_state = 593, .external_lex_state = 14}, + [9870] = {.lex_state = 45, .external_lex_state = 14}, + [9871] = {.lex_state = 45, .external_lex_state = 14}, + [9872] = {.lex_state = 45, .external_lex_state = 14}, + [9873] = {.lex_state = 45, .external_lex_state = 14}, + [9874] = {.lex_state = 45, .external_lex_state = 14}, + [9875] = {.lex_state = 45, .external_lex_state = 14}, + [9876] = {.lex_state = 593, .external_lex_state = 14}, + [9877] = {.lex_state = 593, .external_lex_state = 14}, + [9878] = {.lex_state = 45, .external_lex_state = 14}, + [9879] = {.lex_state = 45, .external_lex_state = 14}, + [9880] = {.lex_state = 45, .external_lex_state = 14}, + [9881] = {.lex_state = 45, .external_lex_state = 14}, + [9882] = {.lex_state = 45, .external_lex_state = 14}, + [9883] = {.lex_state = 45, .external_lex_state = 14}, + [9884] = {.lex_state = 45, .external_lex_state = 14}, + [9885] = {.lex_state = 45, .external_lex_state = 14}, + [9886] = {.lex_state = 45, .external_lex_state = 14}, + [9887] = {.lex_state = 45, .external_lex_state = 14}, + [9888] = {.lex_state = 45, .external_lex_state = 14}, + [9889] = {.lex_state = 45, .external_lex_state = 14}, + [9890] = {.lex_state = 45, .external_lex_state = 14}, + [9891] = {.lex_state = 45, .external_lex_state = 14}, + [9892] = {.lex_state = 45, .external_lex_state = 14}, + [9893] = {.lex_state = 45, .external_lex_state = 14}, + [9894] = {.lex_state = 593, .external_lex_state = 83}, + [9895] = {.lex_state = 593, .external_lex_state = 14}, + [9896] = {.lex_state = 45, .external_lex_state = 14}, + [9897] = {.lex_state = 45, .external_lex_state = 14}, + [9898] = {.lex_state = 593, .external_lex_state = 14}, + [9899] = {.lex_state = 593, .external_lex_state = 14}, + [9900] = {.lex_state = 593, .external_lex_state = 14}, + [9901] = {.lex_state = 593, .external_lex_state = 14}, + [9902] = {.lex_state = 45, .external_lex_state = 14}, + [9903] = {.lex_state = 45, .external_lex_state = 14}, + [9904] = {.lex_state = 593, .external_lex_state = 14}, + [9905] = {.lex_state = 593, .external_lex_state = 14}, + [9906] = {.lex_state = 45, .external_lex_state = 14}, + [9907] = {.lex_state = 45, .external_lex_state = 14}, + [9908] = {.lex_state = 593, .external_lex_state = 14}, + [9909] = {.lex_state = 45, .external_lex_state = 14}, + [9910] = {.lex_state = 45, .external_lex_state = 14}, + [9911] = {.lex_state = 45, .external_lex_state = 14}, + [9912] = {.lex_state = 593, .external_lex_state = 14}, + [9913] = {.lex_state = 45, .external_lex_state = 14}, + [9914] = {.lex_state = 45, .external_lex_state = 14}, + [9915] = {.lex_state = 593, .external_lex_state = 83}, + [9916] = {.lex_state = 45, .external_lex_state = 14}, + [9917] = {.lex_state = 45, .external_lex_state = 14}, + [9918] = {.lex_state = 45, .external_lex_state = 14}, + [9919] = {.lex_state = 45, .external_lex_state = 14}, + [9920] = {.lex_state = 45, .external_lex_state = 14}, + [9921] = {.lex_state = 45, .external_lex_state = 14}, + [9922] = {.lex_state = 45, .external_lex_state = 14}, + [9923] = {.lex_state = 45, .external_lex_state = 14}, + [9924] = {.lex_state = 45, .external_lex_state = 14}, + [9925] = {.lex_state = 45, .external_lex_state = 14}, + [9926] = {.lex_state = 45, .external_lex_state = 14}, + [9927] = {.lex_state = 45, .external_lex_state = 14}, + [9928] = {.lex_state = 45, .external_lex_state = 14}, + [9929] = {.lex_state = 593, .external_lex_state = 14}, + [9930] = {.lex_state = 45, .external_lex_state = 14}, + [9931] = {.lex_state = 45, .external_lex_state = 14}, + [9932] = {.lex_state = 593, .external_lex_state = 14}, + [9933] = {.lex_state = 45, .external_lex_state = 14}, + [9934] = {.lex_state = 593, .external_lex_state = 14}, + [9935] = {.lex_state = 45, .external_lex_state = 14}, + [9936] = {.lex_state = 593, .external_lex_state = 14}, + [9937] = {.lex_state = 45, .external_lex_state = 14}, + [9938] = {.lex_state = 45, .external_lex_state = 14}, + [9939] = {.lex_state = 593, .external_lex_state = 14}, + [9940] = {.lex_state = 45, .external_lex_state = 14}, + [9941] = {.lex_state = 45, .external_lex_state = 14}, + [9942] = {.lex_state = 593, .external_lex_state = 14}, + [9943] = {.lex_state = 45, .external_lex_state = 14}, + [9944] = {.lex_state = 45, .external_lex_state = 14}, + [9945] = {.lex_state = 45, .external_lex_state = 14}, + [9946] = {.lex_state = 45, .external_lex_state = 14}, + [9947] = {.lex_state = 45, .external_lex_state = 14}, + [9948] = {.lex_state = 45, .external_lex_state = 14}, + [9949] = {.lex_state = 45, .external_lex_state = 14}, + [9950] = {.lex_state = 45, .external_lex_state = 14}, + [9951] = {.lex_state = 45, .external_lex_state = 14}, + [9952] = {.lex_state = 45, .external_lex_state = 14}, + [9953] = {.lex_state = 45, .external_lex_state = 14}, + [9954] = {.lex_state = 45, .external_lex_state = 14}, + [9955] = {.lex_state = 45, .external_lex_state = 14}, + [9956] = {.lex_state = 45, .external_lex_state = 14}, + [9957] = {.lex_state = 45, .external_lex_state = 14}, + [9958] = {.lex_state = 45, .external_lex_state = 14}, + [9959] = {.lex_state = 45, .external_lex_state = 14}, + [9960] = {.lex_state = 45, .external_lex_state = 14}, + [9961] = {.lex_state = 45, .external_lex_state = 14}, + [9962] = {.lex_state = 45, .external_lex_state = 14}, + [9963] = {.lex_state = 45, .external_lex_state = 14}, + [9964] = {.lex_state = 45, .external_lex_state = 14}, + [9965] = {.lex_state = 45, .external_lex_state = 14}, + [9966] = {.lex_state = 45, .external_lex_state = 14}, + [9967] = {.lex_state = 45, .external_lex_state = 14}, + [9968] = {.lex_state = 45, .external_lex_state = 14}, + [9969] = {.lex_state = 45, .external_lex_state = 14}, + [9970] = {.lex_state = 45, .external_lex_state = 14}, + [9971] = {.lex_state = 45, .external_lex_state = 14}, + [9972] = {.lex_state = 45, .external_lex_state = 14}, + [9973] = {.lex_state = 45, .external_lex_state = 14}, + [9974] = {.lex_state = 45, .external_lex_state = 14}, + [9975] = {.lex_state = 45, .external_lex_state = 14}, + [9976] = {.lex_state = 45, .external_lex_state = 14}, + [9977] = {.lex_state = 45, .external_lex_state = 14}, + [9978] = {.lex_state = 45, .external_lex_state = 14}, + [9979] = {.lex_state = 45, .external_lex_state = 14}, + [9980] = {.lex_state = 45, .external_lex_state = 14}, + [9981] = {.lex_state = 45, .external_lex_state = 14}, + [9982] = {.lex_state = 45, .external_lex_state = 14}, + [9983] = {.lex_state = 45, .external_lex_state = 14}, + [9984] = {.lex_state = 45, .external_lex_state = 14}, + [9985] = {.lex_state = 45, .external_lex_state = 14}, + [9986] = {.lex_state = 45, .external_lex_state = 14}, + [9987] = {.lex_state = 45, .external_lex_state = 14}, + [9988] = {.lex_state = 593, .external_lex_state = 14}, + [9989] = {.lex_state = 45, .external_lex_state = 14}, + [9990] = {.lex_state = 45, .external_lex_state = 14}, + [9991] = {.lex_state = 45, .external_lex_state = 14}, + [9992] = {.lex_state = 593, .external_lex_state = 83}, + [9993] = {.lex_state = 45, .external_lex_state = 14}, + [9994] = {.lex_state = 593, .external_lex_state = 14}, + [9995] = {.lex_state = 45, .external_lex_state = 14}, + [9996] = {.lex_state = 593, .external_lex_state = 14}, + [9997] = {.lex_state = 593, .external_lex_state = 14}, + [9998] = {.lex_state = 593, .external_lex_state = 14}, + [9999] = {.lex_state = 593, .external_lex_state = 14}, + [10000] = {.lex_state = 45, .external_lex_state = 14}, + [10001] = {.lex_state = 593, .external_lex_state = 14}, + [10002] = {.lex_state = 593, .external_lex_state = 14}, + [10003] = {.lex_state = 45, .external_lex_state = 14}, + [10004] = {.lex_state = 593, .external_lex_state = 14}, + [10005] = {.lex_state = 45, .external_lex_state = 14}, + [10006] = {.lex_state = 45, .external_lex_state = 14}, + [10007] = {.lex_state = 45, .external_lex_state = 14}, + [10008] = {.lex_state = 45, .external_lex_state = 14}, + [10009] = {.lex_state = 45, .external_lex_state = 14}, + [10010] = {.lex_state = 45, .external_lex_state = 14}, + [10011] = {.lex_state = 45, .external_lex_state = 14}, + [10012] = {.lex_state = 593, .external_lex_state = 14}, + [10013] = {.lex_state = 593, .external_lex_state = 14}, + [10014] = {.lex_state = 593, .external_lex_state = 14}, + [10015] = {.lex_state = 593, .external_lex_state = 14}, + [10016] = {.lex_state = 45, .external_lex_state = 14}, + [10017] = {.lex_state = 45, .external_lex_state = 14}, + [10018] = {.lex_state = 45, .external_lex_state = 14}, + [10019] = {.lex_state = 593, .external_lex_state = 14}, + [10020] = {.lex_state = 45, .external_lex_state = 14}, + [10021] = {.lex_state = 45, .external_lex_state = 14}, + [10022] = {.lex_state = 593, .external_lex_state = 14}, + [10023] = {.lex_state = 593, .external_lex_state = 14}, + [10024] = {.lex_state = 45, .external_lex_state = 14}, + [10025] = {.lex_state = 593, .external_lex_state = 14}, + [10026] = {.lex_state = 45, .external_lex_state = 14}, + [10027] = {.lex_state = 593, .external_lex_state = 83}, + [10028] = {.lex_state = 45, .external_lex_state = 14}, + [10029] = {.lex_state = 45, .external_lex_state = 14}, + [10030] = {.lex_state = 45, .external_lex_state = 14}, + [10031] = {.lex_state = 45, .external_lex_state = 14}, + [10032] = {.lex_state = 45, .external_lex_state = 14}, + [10033] = {.lex_state = 45, .external_lex_state = 14}, + [10034] = {.lex_state = 45, .external_lex_state = 14}, + [10035] = {.lex_state = 45, .external_lex_state = 14}, + [10036] = {.lex_state = 45, .external_lex_state = 14}, + [10037] = {.lex_state = 593, .external_lex_state = 14}, + [10038] = {.lex_state = 45, .external_lex_state = 14}, + [10039] = {.lex_state = 45, .external_lex_state = 14}, + [10040] = {.lex_state = 593, .external_lex_state = 14}, + [10041] = {.lex_state = 593, .external_lex_state = 14}, + [10042] = {.lex_state = 593, .external_lex_state = 14}, + [10043] = {.lex_state = 593, .external_lex_state = 14}, + [10044] = {.lex_state = 45, .external_lex_state = 14}, + [10045] = {.lex_state = 45, .external_lex_state = 14}, + [10046] = {.lex_state = 45, .external_lex_state = 14}, + [10047] = {.lex_state = 45, .external_lex_state = 14}, + [10048] = {.lex_state = 45, .external_lex_state = 14}, + [10049] = {.lex_state = 45, .external_lex_state = 14}, + [10050] = {.lex_state = 593, .external_lex_state = 14}, + [10051] = {.lex_state = 45, .external_lex_state = 14}, + [10052] = {.lex_state = 45, .external_lex_state = 14}, + [10053] = {.lex_state = 593, .external_lex_state = 14}, + [10054] = {.lex_state = 45, .external_lex_state = 14}, + [10055] = {.lex_state = 593, .external_lex_state = 14}, + [10056] = {.lex_state = 45, .external_lex_state = 14}, + [10057] = {.lex_state = 45, .external_lex_state = 14}, + [10058] = {.lex_state = 593, .external_lex_state = 14}, + [10059] = {.lex_state = 45, .external_lex_state = 14}, + [10060] = {.lex_state = 593, .external_lex_state = 14}, + [10061] = {.lex_state = 593, .external_lex_state = 14}, + [10062] = {.lex_state = 593, .external_lex_state = 14}, + [10063] = {.lex_state = 45, .external_lex_state = 14}, + [10064] = {.lex_state = 593, .external_lex_state = 14}, + [10065] = {.lex_state = 593, .external_lex_state = 14}, + [10066] = {.lex_state = 45, .external_lex_state = 14}, + [10067] = {.lex_state = 593, .external_lex_state = 14}, + [10068] = {.lex_state = 45, .external_lex_state = 14}, + [10069] = {.lex_state = 593, .external_lex_state = 14}, + [10070] = {.lex_state = 45, .external_lex_state = 14}, + [10071] = {.lex_state = 593, .external_lex_state = 14}, + [10072] = {.lex_state = 45, .external_lex_state = 14}, + [10073] = {.lex_state = 45, .external_lex_state = 14}, + [10074] = {.lex_state = 45, .external_lex_state = 14}, + [10075] = {.lex_state = 45, .external_lex_state = 14}, + [10076] = {.lex_state = 45, .external_lex_state = 14}, + [10077] = {.lex_state = 45, .external_lex_state = 14}, + [10078] = {.lex_state = 593, .external_lex_state = 14}, + [10079] = {.lex_state = 45, .external_lex_state = 14}, + [10080] = {.lex_state = 593, .external_lex_state = 14}, + [10081] = {.lex_state = 593, .external_lex_state = 14}, + [10082] = {.lex_state = 593, .external_lex_state = 14}, + [10083] = {.lex_state = 45, .external_lex_state = 14}, + [10084] = {.lex_state = 593, .external_lex_state = 14}, + [10085] = {.lex_state = 45, .external_lex_state = 14}, + [10086] = {.lex_state = 593, .external_lex_state = 14}, + [10087] = {.lex_state = 45, .external_lex_state = 14}, + [10088] = {.lex_state = 593, .external_lex_state = 83}, + [10089] = {.lex_state = 593, .external_lex_state = 14}, + [10090] = {.lex_state = 593, .external_lex_state = 14}, + [10091] = {.lex_state = 593, .external_lex_state = 14}, + [10092] = {.lex_state = 593, .external_lex_state = 14}, + [10093] = {.lex_state = 45, .external_lex_state = 14}, + [10094] = {.lex_state = 45, .external_lex_state = 14}, + [10095] = {.lex_state = 593, .external_lex_state = 14}, + [10096] = {.lex_state = 45, .external_lex_state = 14}, + [10097] = {.lex_state = 593, .external_lex_state = 14}, + [10098] = {.lex_state = 593, .external_lex_state = 14}, + [10099] = {.lex_state = 593, .external_lex_state = 14}, + [10100] = {.lex_state = 45, .external_lex_state = 14}, + [10101] = {.lex_state = 593, .external_lex_state = 14}, + [10102] = {.lex_state = 45, .external_lex_state = 14}, + [10103] = {.lex_state = 593, .external_lex_state = 14}, + [10104] = {.lex_state = 593, .external_lex_state = 14}, + [10105] = {.lex_state = 45, .external_lex_state = 14}, + [10106] = {.lex_state = 593, .external_lex_state = 14}, + [10107] = {.lex_state = 45, .external_lex_state = 14}, + [10108] = {.lex_state = 593, .external_lex_state = 14}, + [10109] = {.lex_state = 45, .external_lex_state = 14}, + [10110] = {.lex_state = 593, .external_lex_state = 14}, + [10111] = {.lex_state = 593, .external_lex_state = 14}, + [10112] = {.lex_state = 45, .external_lex_state = 14}, + [10113] = {.lex_state = 593, .external_lex_state = 14}, + [10114] = {.lex_state = 45, .external_lex_state = 14}, + [10115] = {.lex_state = 593, .external_lex_state = 83}, + [10116] = {.lex_state = 45, .external_lex_state = 14}, + [10117] = {.lex_state = 593, .external_lex_state = 83}, + [10118] = {.lex_state = 593, .external_lex_state = 14}, + [10119] = {.lex_state = 593, .external_lex_state = 14}, + [10120] = {.lex_state = 45, .external_lex_state = 14}, + [10121] = {.lex_state = 593, .external_lex_state = 14}, + [10122] = {.lex_state = 593, .external_lex_state = 14}, + [10123] = {.lex_state = 45, .external_lex_state = 14}, + [10124] = {.lex_state = 593, .external_lex_state = 14}, + [10125] = {.lex_state = 45, .external_lex_state = 14}, + [10126] = {.lex_state = 593, .external_lex_state = 14}, + [10127] = {.lex_state = 45, .external_lex_state = 14}, + [10128] = {.lex_state = 593, .external_lex_state = 14}, + [10129] = {.lex_state = 45, .external_lex_state = 14}, + [10130] = {.lex_state = 593, .external_lex_state = 83}, + [10131] = {.lex_state = 593, .external_lex_state = 14}, + [10132] = {.lex_state = 45, .external_lex_state = 14}, + [10133] = {.lex_state = 593, .external_lex_state = 83}, + [10134] = {.lex_state = 45, .external_lex_state = 14}, + [10135] = {.lex_state = 593, .external_lex_state = 14}, + [10136] = {.lex_state = 45, .external_lex_state = 14}, + [10137] = {.lex_state = 593, .external_lex_state = 14}, + [10138] = {.lex_state = 593, .external_lex_state = 14}, + [10139] = {.lex_state = 45, .external_lex_state = 14}, + [10140] = {.lex_state = 593, .external_lex_state = 14}, + [10141] = {.lex_state = 45, .external_lex_state = 14}, + [10142] = {.lex_state = 593, .external_lex_state = 14}, + [10143] = {.lex_state = 45, .external_lex_state = 14}, + [10144] = {.lex_state = 593, .external_lex_state = 14}, + [10145] = {.lex_state = 45, .external_lex_state = 14}, + [10146] = {.lex_state = 593, .external_lex_state = 14}, + [10147] = {.lex_state = 45, .external_lex_state = 14}, + [10148] = {.lex_state = 45, .external_lex_state = 14}, + [10149] = {.lex_state = 593, .external_lex_state = 14}, + [10150] = {.lex_state = 45, .external_lex_state = 14}, + [10151] = {.lex_state = 593, .external_lex_state = 14}, + [10152] = {.lex_state = 45, .external_lex_state = 14}, + [10153] = {.lex_state = 45, .external_lex_state = 14}, + [10154] = {.lex_state = 593, .external_lex_state = 14}, + [10155] = {.lex_state = 593, .external_lex_state = 14}, + [10156] = {.lex_state = 45, .external_lex_state = 14}, + [10157] = {.lex_state = 593, .external_lex_state = 14}, + [10158] = {.lex_state = 45, .external_lex_state = 14}, + [10159] = {.lex_state = 45, .external_lex_state = 14}, + [10160] = {.lex_state = 45, .external_lex_state = 14}, + [10161] = {.lex_state = 45, .external_lex_state = 14}, + [10162] = {.lex_state = 45, .external_lex_state = 14}, + [10163] = {.lex_state = 45, .external_lex_state = 14}, + [10164] = {.lex_state = 593, .external_lex_state = 32}, + [10165] = {.lex_state = 45, .external_lex_state = 14}, + [10166] = {.lex_state = 593, .external_lex_state = 14}, + [10167] = {.lex_state = 45, .external_lex_state = 14}, + [10168] = {.lex_state = 593, .external_lex_state = 32}, + [10169] = {.lex_state = 45, .external_lex_state = 14}, + [10170] = {.lex_state = 593, .external_lex_state = 14}, + [10171] = {.lex_state = 45, .external_lex_state = 14}, + [10172] = {.lex_state = 45, .external_lex_state = 14}, + [10173] = {.lex_state = 593, .external_lex_state = 14}, + [10174] = {.lex_state = 45, .external_lex_state = 14}, + [10175] = {.lex_state = 45, .external_lex_state = 14}, + [10176] = {.lex_state = 45, .external_lex_state = 14}, + [10177] = {.lex_state = 45, .external_lex_state = 14}, + [10178] = {.lex_state = 45, .external_lex_state = 14}, + [10179] = {.lex_state = 45, .external_lex_state = 14}, + [10180] = {.lex_state = 45, .external_lex_state = 14}, + [10181] = {.lex_state = 45, .external_lex_state = 14}, + [10182] = {.lex_state = 45, .external_lex_state = 14}, + [10183] = {.lex_state = 45, .external_lex_state = 14}, + [10184] = {.lex_state = 45, .external_lex_state = 14}, + [10185] = {.lex_state = 45, .external_lex_state = 14}, + [10186] = {.lex_state = 45, .external_lex_state = 14}, + [10187] = {.lex_state = 593, .external_lex_state = 14}, + [10188] = {.lex_state = 45, .external_lex_state = 14}, + [10189] = {.lex_state = 593, .external_lex_state = 14}, + [10190] = {.lex_state = 45, .external_lex_state = 14}, + [10191] = {.lex_state = 593, .external_lex_state = 14}, + [10192] = {.lex_state = 45, .external_lex_state = 14}, + [10193] = {.lex_state = 593, .external_lex_state = 14}, + [10194] = {.lex_state = 593, .external_lex_state = 14}, + [10195] = {.lex_state = 45, .external_lex_state = 14}, + [10196] = {.lex_state = 593, .external_lex_state = 14}, + [10197] = {.lex_state = 45, .external_lex_state = 14}, + [10198] = {.lex_state = 593, .external_lex_state = 14}, + [10199] = {.lex_state = 45, .external_lex_state = 14}, + [10200] = {.lex_state = 593, .external_lex_state = 14}, + [10201] = {.lex_state = 45, .external_lex_state = 14}, + [10202] = {.lex_state = 593, .external_lex_state = 14}, + [10203] = {.lex_state = 45, .external_lex_state = 14}, + [10204] = {.lex_state = 45, .external_lex_state = 14}, + [10205] = {.lex_state = 45, .external_lex_state = 14}, + [10206] = {.lex_state = 45, .external_lex_state = 14}, + [10207] = {.lex_state = 593, .external_lex_state = 14}, + [10208] = {.lex_state = 45, .external_lex_state = 14}, + [10209] = {.lex_state = 593, .external_lex_state = 14}, + [10210] = {.lex_state = 45, .external_lex_state = 14}, + [10211] = {.lex_state = 45, .external_lex_state = 14}, + [10212] = {.lex_state = 593, .external_lex_state = 14}, + [10213] = {.lex_state = 45, .external_lex_state = 14}, + [10214] = {.lex_state = 593, .external_lex_state = 83}, + [10215] = {.lex_state = 45, .external_lex_state = 14}, + [10216] = {.lex_state = 45, .external_lex_state = 14}, + [10217] = {.lex_state = 45, .external_lex_state = 14}, + [10218] = {.lex_state = 593, .external_lex_state = 14}, + [10219] = {.lex_state = 45, .external_lex_state = 14}, + [10220] = {.lex_state = 593, .external_lex_state = 83}, + [10221] = {.lex_state = 593, .external_lex_state = 14}, + [10222] = {.lex_state = 45, .external_lex_state = 14}, + [10223] = {.lex_state = 593, .external_lex_state = 14}, + [10224] = {.lex_state = 45, .external_lex_state = 14}, + [10225] = {.lex_state = 593, .external_lex_state = 14}, + [10226] = {.lex_state = 45, .external_lex_state = 14}, + [10227] = {.lex_state = 593, .external_lex_state = 14}, + [10228] = {.lex_state = 45, .external_lex_state = 14}, + [10229] = {.lex_state = 593, .external_lex_state = 14}, + [10230] = {.lex_state = 45, .external_lex_state = 14}, + [10231] = {.lex_state = 45, .external_lex_state = 14}, + [10232] = {.lex_state = 593, .external_lex_state = 14}, + [10233] = {.lex_state = 45, .external_lex_state = 14}, + [10234] = {.lex_state = 593, .external_lex_state = 14}, + [10235] = {.lex_state = 45, .external_lex_state = 14}, + [10236] = {.lex_state = 593, .external_lex_state = 14}, + [10237] = {.lex_state = 45, .external_lex_state = 14}, + [10238] = {.lex_state = 45, .external_lex_state = 14}, + [10239] = {.lex_state = 45, .external_lex_state = 14}, + [10240] = {.lex_state = 593, .external_lex_state = 14}, + [10241] = {.lex_state = 45, .external_lex_state = 14}, + [10242] = {.lex_state = 45, .external_lex_state = 14}, + [10243] = {.lex_state = 45, .external_lex_state = 14}, + [10244] = {.lex_state = 45, .external_lex_state = 14}, + [10245] = {.lex_state = 45, .external_lex_state = 14}, + [10246] = {.lex_state = 593, .external_lex_state = 14}, + [10247] = {.lex_state = 45, .external_lex_state = 14}, + [10248] = {.lex_state = 593, .external_lex_state = 14}, + [10249] = {.lex_state = 45, .external_lex_state = 14}, + [10250] = {.lex_state = 45, .external_lex_state = 14}, + [10251] = {.lex_state = 593, .external_lex_state = 83}, + [10252] = {.lex_state = 45, .external_lex_state = 14}, + [10253] = {.lex_state = 593, .external_lex_state = 14}, + [10254] = {.lex_state = 45, .external_lex_state = 14}, + [10255] = {.lex_state = 593, .external_lex_state = 14}, + [10256] = {.lex_state = 45, .external_lex_state = 14}, + [10257] = {.lex_state = 45, .external_lex_state = 14}, + [10258] = {.lex_state = 45, .external_lex_state = 14}, + [10259] = {.lex_state = 593, .external_lex_state = 14}, + [10260] = {.lex_state = 45, .external_lex_state = 14}, + [10261] = {.lex_state = 45, .external_lex_state = 14}, + [10262] = {.lex_state = 45, .external_lex_state = 14}, + [10263] = {.lex_state = 593, .external_lex_state = 83}, + [10264] = {.lex_state = 45, .external_lex_state = 14}, + [10265] = {.lex_state = 593, .external_lex_state = 14}, + [10266] = {.lex_state = 45, .external_lex_state = 14}, + [10267] = {.lex_state = 45, .external_lex_state = 14}, + [10268] = {.lex_state = 45, .external_lex_state = 14}, + [10269] = {.lex_state = 593, .external_lex_state = 83}, + [10270] = {.lex_state = 45, .external_lex_state = 14}, + [10271] = {.lex_state = 45, .external_lex_state = 14}, + [10272] = {.lex_state = 45, .external_lex_state = 14}, + [10273] = {.lex_state = 593, .external_lex_state = 14}, + [10274] = {.lex_state = 45, .external_lex_state = 14}, + [10275] = {.lex_state = 45, .external_lex_state = 14}, + [10276] = {.lex_state = 593, .external_lex_state = 14}, + [10277] = {.lex_state = 593, .external_lex_state = 14}, + [10278] = {.lex_state = 593, .external_lex_state = 14}, + [10279] = {.lex_state = 593, .external_lex_state = 83}, + [10280] = {.lex_state = 593, .external_lex_state = 14}, + [10281] = {.lex_state = 593, .external_lex_state = 14}, + [10282] = {.lex_state = 593, .external_lex_state = 14}, + [10283] = {.lex_state = 593, .external_lex_state = 14}, + [10284] = {.lex_state = 593, .external_lex_state = 14}, + [10285] = {.lex_state = 593, .external_lex_state = 14}, + [10286] = {.lex_state = 593, .external_lex_state = 14}, + [10287] = {.lex_state = 63, .external_lex_state = 14}, + [10288] = {.lex_state = 593, .external_lex_state = 14}, + [10289] = {.lex_state = 593, .external_lex_state = 14}, + [10290] = {.lex_state = 593, .external_lex_state = 14}, + [10291] = {.lex_state = 593, .external_lex_state = 14}, + [10292] = {.lex_state = 593, .external_lex_state = 14}, + [10293] = {.lex_state = 593, .external_lex_state = 14}, + [10294] = {.lex_state = 593, .external_lex_state = 14}, + [10295] = {.lex_state = 593, .external_lex_state = 14}, + [10296] = {.lex_state = 593, .external_lex_state = 14}, + [10297] = {.lex_state = 593, .external_lex_state = 14}, + [10298] = {.lex_state = 593, .external_lex_state = 14}, + [10299] = {.lex_state = 593, .external_lex_state = 14}, + [10300] = {.lex_state = 593, .external_lex_state = 14}, + [10301] = {.lex_state = 45, .external_lex_state = 14}, + [10302] = {.lex_state = 45, .external_lex_state = 14}, + [10303] = {.lex_state = 45, .external_lex_state = 14}, + [10304] = {.lex_state = 593, .external_lex_state = 14}, + [10305] = {.lex_state = 593, .external_lex_state = 14}, + [10306] = {.lex_state = 45, .external_lex_state = 14}, + [10307] = {.lex_state = 593, .external_lex_state = 14}, + [10308] = {.lex_state = 593, .external_lex_state = 14}, + [10309] = {.lex_state = 593, .external_lex_state = 14}, + [10310] = {.lex_state = 593, .external_lex_state = 14}, + [10311] = {.lex_state = 593, .external_lex_state = 14}, + [10312] = {.lex_state = 593, .external_lex_state = 14}, + [10313] = {.lex_state = 593, .external_lex_state = 14}, + [10314] = {.lex_state = 593, .external_lex_state = 14}, + [10315] = {.lex_state = 593, .external_lex_state = 14}, + [10316] = {.lex_state = 593, .external_lex_state = 14}, + [10317] = {.lex_state = 593, .external_lex_state = 14}, + [10318] = {.lex_state = 593, .external_lex_state = 32}, + [10319] = {.lex_state = 593, .external_lex_state = 14}, + [10320] = {.lex_state = 593, .external_lex_state = 14}, + [10321] = {.lex_state = 593, .external_lex_state = 32}, + [10322] = {.lex_state = 593, .external_lex_state = 14}, + [10323] = {.lex_state = 593, .external_lex_state = 14}, + [10324] = {.lex_state = 593, .external_lex_state = 14}, + [10325] = {.lex_state = 45, .external_lex_state = 14}, + [10326] = {.lex_state = 593, .external_lex_state = 14}, + [10327] = {.lex_state = 593, .external_lex_state = 14}, + [10328] = {.lex_state = 593, .external_lex_state = 14}, + [10329] = {.lex_state = 593, .external_lex_state = 14}, + [10330] = {.lex_state = 593, .external_lex_state = 14}, + [10331] = {.lex_state = 593, .external_lex_state = 14}, + [10332] = {.lex_state = 593, .external_lex_state = 14}, + [10333] = {.lex_state = 593, .external_lex_state = 14}, + [10334] = {.lex_state = 593, .external_lex_state = 14}, + [10335] = {.lex_state = 593, .external_lex_state = 14}, + [10336] = {.lex_state = 593, .external_lex_state = 14}, + [10337] = {.lex_state = 593, .external_lex_state = 14}, + [10338] = {.lex_state = 593, .external_lex_state = 14}, + [10339] = {.lex_state = 593, .external_lex_state = 14}, + [10340] = {.lex_state = 593, .external_lex_state = 14}, + [10341] = {.lex_state = 593, .external_lex_state = 14}, + [10342] = {.lex_state = 593, .external_lex_state = 14}, + [10343] = {.lex_state = 593, .external_lex_state = 83}, + [10344] = {.lex_state = 593, .external_lex_state = 14}, + [10345] = {.lex_state = 593, .external_lex_state = 14}, + [10346] = {.lex_state = 593, .external_lex_state = 14}, + [10347] = {.lex_state = 593, .external_lex_state = 14}, + [10348] = {.lex_state = 593, .external_lex_state = 14}, + [10349] = {.lex_state = 593, .external_lex_state = 83}, + [10350] = {.lex_state = 593, .external_lex_state = 14}, + [10351] = {.lex_state = 593, .external_lex_state = 14}, + [10352] = {.lex_state = 45, .external_lex_state = 14}, + [10353] = {.lex_state = 45, .external_lex_state = 14}, + [10354] = {.lex_state = 593, .external_lex_state = 14}, + [10355] = {.lex_state = 593, .external_lex_state = 83}, + [10356] = {.lex_state = 593, .external_lex_state = 14}, + [10357] = {.lex_state = 593, .external_lex_state = 14}, + [10358] = {.lex_state = 593, .external_lex_state = 32}, + [10359] = {.lex_state = 593, .external_lex_state = 14}, + [10360] = {.lex_state = 593, .external_lex_state = 14}, + [10361] = {.lex_state = 593, .external_lex_state = 14}, + [10362] = {.lex_state = 593, .external_lex_state = 14}, + [10363] = {.lex_state = 593, .external_lex_state = 14}, + [10364] = {.lex_state = 593, .external_lex_state = 14}, + [10365] = {.lex_state = 45, .external_lex_state = 14}, + [10366] = {.lex_state = 593, .external_lex_state = 14}, + [10367] = {.lex_state = 593, .external_lex_state = 14}, + [10368] = {.lex_state = 593, .external_lex_state = 14}, + [10369] = {.lex_state = 593, .external_lex_state = 14}, + [10370] = {.lex_state = 593, .external_lex_state = 14}, + [10371] = {.lex_state = 593, .external_lex_state = 14}, + [10372] = {.lex_state = 593, .external_lex_state = 14}, + [10373] = {.lex_state = 593, .external_lex_state = 14}, + [10374] = {.lex_state = 593, .external_lex_state = 14}, + [10375] = {.lex_state = 593, .external_lex_state = 14}, + [10376] = {.lex_state = 63, .external_lex_state = 14}, + [10377] = {.lex_state = 593, .external_lex_state = 14}, + [10378] = {.lex_state = 593, .external_lex_state = 14}, + [10379] = {.lex_state = 593, .external_lex_state = 83}, + [10380] = {.lex_state = 593, .external_lex_state = 14}, + [10381] = {.lex_state = 593, .external_lex_state = 14}, + [10382] = {.lex_state = 45, .external_lex_state = 14}, + [10383] = {.lex_state = 593, .external_lex_state = 14}, + [10384] = {.lex_state = 593, .external_lex_state = 14}, + [10385] = {.lex_state = 593, .external_lex_state = 83}, + [10386] = {.lex_state = 593, .external_lex_state = 14}, + [10387] = {.lex_state = 593, .external_lex_state = 14}, + [10388] = {.lex_state = 593, .external_lex_state = 14}, + [10389] = {.lex_state = 593, .external_lex_state = 14}, + [10390] = {.lex_state = 593, .external_lex_state = 14}, + [10391] = {.lex_state = 593, .external_lex_state = 14}, + [10392] = {.lex_state = 593, .external_lex_state = 14}, + [10393] = {.lex_state = 593, .external_lex_state = 14}, + [10394] = {.lex_state = 593, .external_lex_state = 83}, + [10395] = {.lex_state = 593, .external_lex_state = 14}, + [10396] = {.lex_state = 593, .external_lex_state = 14}, + [10397] = {.lex_state = 593, .external_lex_state = 14}, + [10398] = {.lex_state = 593, .external_lex_state = 14}, + [10399] = {.lex_state = 593, .external_lex_state = 14}, + [10400] = {.lex_state = 593, .external_lex_state = 14}, + [10401] = {.lex_state = 593, .external_lex_state = 14}, + [10402] = {.lex_state = 593, .external_lex_state = 14}, + [10403] = {.lex_state = 593, .external_lex_state = 14}, + [10404] = {.lex_state = 593, .external_lex_state = 14}, + [10405] = {.lex_state = 593, .external_lex_state = 14}, + [10406] = {.lex_state = 593, .external_lex_state = 14}, + [10407] = {.lex_state = 593, .external_lex_state = 14}, + [10408] = {.lex_state = 593, .external_lex_state = 14}, + [10409] = {.lex_state = 593, .external_lex_state = 14}, + [10410] = {.lex_state = 593, .external_lex_state = 14}, + [10411] = {.lex_state = 593, .external_lex_state = 14}, + [10412] = {.lex_state = 593, .external_lex_state = 14}, + [10413] = {.lex_state = 593, .external_lex_state = 14}, + [10414] = {.lex_state = 593, .external_lex_state = 14}, + [10415] = {.lex_state = 593, .external_lex_state = 14}, + [10416] = {.lex_state = 593, .external_lex_state = 14}, + [10417] = {.lex_state = 593, .external_lex_state = 14}, + [10418] = {.lex_state = 593, .external_lex_state = 14}, + [10419] = {.lex_state = 593, .external_lex_state = 14}, + [10420] = {.lex_state = 593, .external_lex_state = 14}, + [10421] = {.lex_state = 593, .external_lex_state = 14}, + [10422] = {.lex_state = 45, .external_lex_state = 14}, + [10423] = {.lex_state = 593, .external_lex_state = 14}, + [10424] = {.lex_state = 593, .external_lex_state = 83}, + [10425] = {.lex_state = 593, .external_lex_state = 14}, + [10426] = {.lex_state = 593, .external_lex_state = 14}, + [10427] = {.lex_state = 593, .external_lex_state = 83}, + [10428] = {.lex_state = 593, .external_lex_state = 14}, + [10429] = {.lex_state = 593, .external_lex_state = 14}, + [10430] = {.lex_state = 593, .external_lex_state = 14}, + [10431] = {.lex_state = 593, .external_lex_state = 14}, + [10432] = {.lex_state = 593, .external_lex_state = 83}, + [10433] = {.lex_state = 593, .external_lex_state = 14}, + [10434] = {.lex_state = 593, .external_lex_state = 14}, + [10435] = {.lex_state = 593, .external_lex_state = 14}, + [10436] = {.lex_state = 593, .external_lex_state = 14}, + [10437] = {.lex_state = 593, .external_lex_state = 14}, + [10438] = {.lex_state = 593, .external_lex_state = 14}, + [10439] = {.lex_state = 593, .external_lex_state = 14}, + [10440] = {.lex_state = 597, .external_lex_state = 14}, +}; + +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__semi = 4, + ts_external_token__arrow_operator_custom = 5, + ts_external_token__dot_custom = 6, + ts_external_token__three_dot_operator_custom = 7, + ts_external_token__open_ended_range_operator_custom = 8, + ts_external_token__conjunction_operator_custom = 9, + ts_external_token__disjunction_operator_custom = 10, + ts_external_token__nil_coalescing_operator_custom = 11, + ts_external_token__eq_custom = 12, + ts_external_token__eq_eq_custom = 13, + ts_external_token__plus_then_ws = 14, + ts_external_token__minus_then_ws = 15, + ts_external_token_bang = 16, + ts_external_token__throws_keyword = 17, + ts_external_token__rethrows_keyword = 18, + ts_external_token_default_keyword = 19, + ts_external_token_where_keyword = 20, + ts_external_token_else = 21, + ts_external_token_catch_keyword = 22, + ts_external_token__as_custom = 23, + ts_external_token__as_quest_custom = 24, + ts_external_token__as_bang_custom = 25, + ts_external_token__async_keyword_custom = 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__semi] = sym__semi, + [ts_external_token__arrow_operator_custom] = sym__arrow_operator_custom, + [ts_external_token__dot_custom] = sym__dot_custom, + [ts_external_token__three_dot_operator_custom] = sym__three_dot_operator_custom, + [ts_external_token__open_ended_range_operator_custom] = sym__open_ended_range_operator_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, +}; + +static const bool ts_external_scanner_states[100][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__semi] = true, + [ts_external_token__arrow_operator_custom] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_operator_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, + }, + [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__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_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, + }, + [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__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_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, + }, + [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__semi] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_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, + }, + [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__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_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, + }, + [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__semi] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_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, + }, + [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__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_operator_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, + }, + [8] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_operator_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, + }, + [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__semi] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_operator_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, + }, + [10] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__arrow_operator_custom] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_operator_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, + }, + [11] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_operator_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, + }, + [12] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token__arrow_operator_custom] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_operator_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, + }, + [13] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_operator_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, + }, + [14] = { + [ts_external_token_multiline_comment] = 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__semi] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_operator_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, + }, + [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__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_operator_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, + }, + [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__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_operator_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, + }, + [18] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_operator_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, + }, + [19] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_operator_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, + }, + [20] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_operator_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, + }, + [21] = { + [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, + }, + [22] = { + [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, + }, + [23] = { + [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, + }, + [24] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token__arrow_operator_custom] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_operator_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, + }, + [25] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__dot_custom] = true, + }, + [26] = { + [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, + }, + [27] = { + [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, + }, + [28] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__eq_custom] = true, + [ts_external_token_where_keyword] = true, + }, + [29] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__eq_custom] = true, + [ts_external_token_where_keyword] = true, + [ts_external_token__as_custom] = true, + }, + [30] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__eq_custom] = true, + }, + [31] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__eq_custom] = true, + [ts_external_token_where_keyword] = true, + }, + [32] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__eq_custom] = true, + }, + [33] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_operator_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, + }, + [34] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token_default_keyword] = true, + }, + [35] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_operator_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__as_custom] = true, + [ts_external_token__as_quest_custom] = true, + [ts_external_token__as_bang_custom] = true, + }, + [36] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__arrow_operator_custom] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_operator_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, + }, + [37] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__arrow_operator_custom] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__open_ended_range_operator_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, + }, + [38] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__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, + }, + [39] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token_default_keyword] = true, + }, + [40] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__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, + }, + [41] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__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, + }, + [42] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__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, + }, + [43] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__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, + }, + [44] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__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, + }, + [45] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__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, + }, + [46] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__eq_custom] = true, + [ts_external_token_default_keyword] = true, + }, + [47] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token__eq_custom] = true, + [ts_external_token_default_keyword] = true, + [ts_external_token_where_keyword] = true, + }, + [48] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token__eq_custom] = true, + [ts_external_token_default_keyword] = true, + }, + [49] = { + [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, + }, + [50] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token_default_keyword] = true, + }, + [51] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token_default_keyword] = true, + }, + [52] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token_default_keyword] = true, + [ts_external_token_catch_keyword] = true, + }, + [53] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token_default_keyword] = true, + [ts_external_token_else] = true, + }, + [54] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__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, + }, + [55] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token_where_keyword] = true, + }, + [56] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__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, + }, + [57] = { + [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, + }, + [58] = { + [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, + }, + [59] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__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, + }, + [60] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__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, + }, + [61] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__arrow_operator_custom] = true, + [ts_external_token__three_dot_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, + }, + [62] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__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, + }, + [63] = { + [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, + }, + [64] = { + [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__as_custom] = true, + [ts_external_token__async_keyword_custom] = true, + }, + [65] = { + [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, + }, + [66] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__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, + }, + [67] = { + [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, + }, + [68] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token__eq_custom] = true, + [ts_external_token_where_keyword] = true, + [ts_external_token__as_custom] = true, + }, + [69] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__eq_custom] = true, + [ts_external_token_where_keyword] = true, + }, + [70] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__eq_custom] = true, + }, + [71] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token_where_keyword] = true, + [ts_external_token__as_custom] = true, + }, + [72] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token_bang] = true, + }, + [73] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__as_custom] = true, + }, + [74] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token__eq_custom] = true, + [ts_external_token_where_keyword] = true, + }, + [75] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token_where_keyword] = true, + }, + [76] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token__dot_custom] = true, + }, + [77] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__eq_custom] = true, + }, + [78] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__dot_custom] = true, + [ts_external_token__eq_custom] = true, + [ts_external_token__as_custom] = true, + }, + [79] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__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, + }, + [80] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__as_custom] = true, + }, + [81] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token__eq_custom] = true, + }, + [82] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token_where_keyword] = true, + [ts_external_token__as_custom] = true, + }, + [83] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + }, + [84] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__three_dot_operator_custom] = true, + [ts_external_token__eq_custom] = true, + }, + [85] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token_where_keyword] = true, + }, + [86] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token_where_keyword] = true, + }, + [87] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__eq_custom] = true, + [ts_external_token__as_custom] = true, + }, + [88] = { + [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, + }, + [89] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token__arrow_operator_custom] = true, + [ts_external_token_where_keyword] = true, + }, + [90] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__arrow_operator_custom] = true, + [ts_external_token_where_keyword] = true, + }, + [91] = { + [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, + }, + [92] = { + [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, + }, + [93] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__eq_custom] = true, + [ts_external_token__eq_eq_custom] = true, + }, + [94] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token_catch_keyword] = true, + }, + [95] = { + [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, + }, + [96] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__arrow_operator_custom] = true, + }, + [97] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token_raw_str_part] = true, + [ts_external_token_raw_str_end_part] = true, + }, + [98] = { + [ts_external_token_multiline_comment] = true, + [ts_external_token__semi] = true, + [ts_external_token_else] = true, + }, + [99] = { + [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_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), + [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_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), + [sym__await_operator] = 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_in] = ACTIONS(1), + [anon_sym_RBRACE] = 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_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_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__semi] = ACTIONS(1), + [sym__arrow_operator_custom] = ACTIONS(1), + [sym__dot_custom] = ACTIONS(1), + [sym__three_dot_operator_custom] = ACTIONS(1), + [sym__open_ended_range_operator_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), + }, + [1] = { + [sym_source_file] = STATE(10433), + [sym_shebang_line] = STATE(4), + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2225), + [sym_boolean_literal] = STATE(2225), + [sym__string_literal] = STATE(2225), + [sym_line_string_literal] = STATE(2225), + [sym_multi_line_string_literal] = STATE(2225), + [sym_raw_string_literal] = STATE(2225), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2225), + [sym__unary_expression] = STATE(2225), + [sym_postfix_expression] = STATE(2225), + [sym_constructor_expression] = STATE(2225), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2225), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2225), + [sym_prefix_expression] = STATE(2225), + [sym_as_expression] = STATE(2225), + [sym_selector_expression] = STATE(2225), + [sym__binary_expression] = STATE(2225), + [sym_multiplicative_expression] = STATE(2225), + [sym_additive_expression] = STATE(2225), + [sym_range_expression] = STATE(2225), + [sym_infix_expression] = STATE(2225), + [sym_nil_coalescing_expression] = STATE(2225), + [sym_check_expression] = STATE(2225), + [sym_comparison_expression] = STATE(2225), + [sym_equality_expression] = STATE(2225), + [sym_conjunction_expression] = STATE(2225), + [sym_disjunction_expression] = STATE(2225), + [sym_bitwise_operation] = STATE(2225), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2225), + [sym_await_expression] = STATE(2225), + [sym_ternary_expression] = STATE(2225), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2225), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2225), + [sym_dictionary_literal] = STATE(2225), + [sym__special_literal] = STATE(2225), + [sym__playground_literal] = STATE(2225), + [sym_lambda_literal] = STATE(2225), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2225), + [sym_if_statement] = STATE(10432), + [sym_guard_statement] = STATE(10432), + [sym_switch_statement] = STATE(10432), + [sym_do_statement] = STATE(10432), + [sym_key_path_expression] = STATE(2225), + [sym_key_path_string_expression] = STATE(2225), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2225), + [sym__comparison_operator] = STATE(2225), + [sym__additive_operator] = STATE(2225), + [sym__multiplicative_operator] = STATE(2225), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym__top_level_statement] = STATE(10432), + [sym__labeled_statement] = STATE(10432), + [sym_for_statement] = STATE(10432), + [sym_while_statement] = STATE(10432), + [sym_repeat_while_statement] = STATE(10432), + [sym__throw_statement] = STATE(10432), + [sym_assignment] = STATE(2225), + [sym__global_declaration] = STATE(10432), + [sym_import_declaration] = STATE(10432), + [sym_property_declaration] = STATE(10432), + [sym__modifierless_property_declaration] = STATE(10427), + [sym_typealias_declaration] = STATE(10432), + [sym__modifierless_typealias_declaration] = STATE(8214), + [sym_function_declaration] = STATE(10432), + [sym__bodyless_function_declaration] = STATE(7966), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(10432), + [sym__modifierless_class_declaration] = STATE(10424), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2225), + [sym__eq_eq] = STATE(2225), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_protocol_declaration] = STATE(10432), + [sym_operator_declaration] = STATE(10432), + [sym_precedence_group_declaration] = STATE(10432), + [sym_associatedtype_declaration] = STATE(10432), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4673), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_modifiers_repeat1] = STATE(2318), + [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_nil] = ACTIONS(15), + [sym_real_literal] = ACTIONS(17), + [sym_integer_literal] = ACTIONS(15), + [sym_hex_literal] = ACTIONS(17), + [sym_oct_literal] = ACTIONS(17), + [sym_bin_literal] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(15), + [anon_sym_POUNDfileID] = ACTIONS(17), + [anon_sym_POUNDfilePath] = ACTIONS(17), + [anon_sym_POUNDline] = ACTIONS(17), + [anon_sym_POUNDcolumn] = ACTIONS(17), + [anon_sym_POUNDfunction] = ACTIONS(17), + [anon_sym_POUNDdsohandle] = ACTIONS(17), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(15), + [anon_sym_BANG_EQ_EQ] = ACTIONS(15), + [anon_sym_EQ_EQ_EQ] = ACTIONS(15), + [anon_sym_LT_EQ] = ACTIONS(15), + [anon_sym_GT_EQ] = ACTIONS(15), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(15), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_import] = ACTIONS(77), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(83), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_protocol] = ACTIONS(87), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_prefix] = ACTIONS(99), + [anon_sym_infix] = ACTIONS(99), + [anon_sym_postfix] = ACTIONS(99), + [anon_sym_precedencegroup] = ACTIONS(101), + [anon_sym_associatedtype] = ACTIONS(103), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(107), + [anon_sym_override] = ACTIONS(109), + [anon_sym_convenience] = ACTIONS(109), + [anon_sym_required] = ACTIONS(109), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_internal] = ACTIONS(111), + [anon_sym_fileprivate] = ACTIONS(111), + [anon_sym_open] = ACTIONS(111), + [anon_sym_mutating] = ACTIONS(113), + [anon_sym_nonmutating] = ACTIONS(113), + [anon_sym_static] = ACTIONS(115), + [anon_sym_dynamic] = ACTIONS(115), + [anon_sym_optional] = ACTIONS(115), + [anon_sym_final] = ACTIONS(117), + [anon_sym_inout] = ACTIONS(119), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(123), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(17), + [sym__plus_then_ws] = ACTIONS(17), + [sym__minus_then_ws] = ACTIONS(17), + [sym_bang] = ACTIONS(137), + }, + [2] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_capture_list] = STATE(33), + [sym_lambda_function_type] = STATE(9874), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_switch_entry] = STATE(2848), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10384), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(2820), + [sym_modifiers] = STATE(8623), + [aux_sym__locally_permitted_modifiers] = STATE(2479), + [sym__non_local_scope_modifier] = STATE(3134), + [sym__locally_permitted_modifier] = STATE(2479), + [sym_member_modifier] = STATE(3134), + [sym_visibility_modifier] = STATE(3134), + [sym_function_modifier] = STATE(3134), + [sym_mutation_modifier] = STATE(3134), + [sym_property_modifier] = STATE(3134), + [sym_inheritance_modifier] = STATE(2479), + [sym_parameter_modifier] = STATE(3134), + [sym_ownership_modifier] = STATE(2479), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(7174), + [aux_sym_switch_statement_repeat1] = STATE(2848), + [aux_sym_modifiers_repeat1] = STATE(3134), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(153), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_case] = ACTIONS(157), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(161), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_prefix] = ACTIONS(163), + [anon_sym_infix] = ACTIONS(163), + [anon_sym_postfix] = ACTIONS(163), + [anon_sym_AT] = ACTIONS(165), + [sym_property_behavior_modifier] = ACTIONS(167), + [anon_sym_override] = ACTIONS(169), + [anon_sym_convenience] = ACTIONS(169), + [anon_sym_required] = ACTIONS(169), + [anon_sym_public] = ACTIONS(171), + [anon_sym_private] = ACTIONS(171), + [anon_sym_internal] = ACTIONS(171), + [anon_sym_fileprivate] = ACTIONS(171), + [anon_sym_open] = ACTIONS(171), + [anon_sym_mutating] = ACTIONS(173), + [anon_sym_nonmutating] = ACTIONS(173), + [anon_sym_static] = ACTIONS(175), + [anon_sym_dynamic] = ACTIONS(175), + [anon_sym_optional] = ACTIONS(175), + [anon_sym_final] = ACTIONS(177), + [anon_sym_inout] = ACTIONS(179), + [anon_sym_ATescaping] = ACTIONS(181), + [anon_sym_ATautoclosure] = ACTIONS(181), + [anon_sym_weak] = ACTIONS(183), + [anon_sym_unowned] = ACTIONS(183), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(185), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(185), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + [sym_default_keyword] = ACTIONS(187), + }, + [3] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_capture_list] = STATE(33), + [sym_lambda_function_type] = STATE(9874), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_switch_entry] = STATE(2841), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10384), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(2820), + [sym_modifiers] = STATE(8623), + [aux_sym__locally_permitted_modifiers] = STATE(2479), + [sym__non_local_scope_modifier] = STATE(3134), + [sym__locally_permitted_modifier] = STATE(2479), + [sym_member_modifier] = STATE(3134), + [sym_visibility_modifier] = STATE(3134), + [sym_function_modifier] = STATE(3134), + [sym_mutation_modifier] = STATE(3134), + [sym_property_modifier] = STATE(3134), + [sym_inheritance_modifier] = STATE(2479), + [sym_parameter_modifier] = STATE(3134), + [sym_ownership_modifier] = STATE(2479), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(7174), + [aux_sym_switch_statement_repeat1] = STATE(2841), + [aux_sym_modifiers_repeat1] = STATE(3134), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_case] = ACTIONS(157), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(161), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_prefix] = ACTIONS(163), + [anon_sym_infix] = ACTIONS(163), + [anon_sym_postfix] = ACTIONS(163), + [anon_sym_AT] = ACTIONS(165), + [sym_property_behavior_modifier] = ACTIONS(167), + [anon_sym_override] = ACTIONS(169), + [anon_sym_convenience] = ACTIONS(169), + [anon_sym_required] = ACTIONS(169), + [anon_sym_public] = ACTIONS(171), + [anon_sym_private] = ACTIONS(171), + [anon_sym_internal] = ACTIONS(171), + [anon_sym_fileprivate] = ACTIONS(171), + [anon_sym_open] = ACTIONS(171), + [anon_sym_mutating] = ACTIONS(173), + [anon_sym_nonmutating] = ACTIONS(173), + [anon_sym_static] = ACTIONS(175), + [anon_sym_dynamic] = ACTIONS(175), + [anon_sym_optional] = ACTIONS(175), + [anon_sym_final] = ACTIONS(177), + [anon_sym_inout] = ACTIONS(179), + [anon_sym_ATescaping] = ACTIONS(181), + [anon_sym_ATautoclosure] = ACTIONS(181), + [anon_sym_weak] = ACTIONS(183), + [anon_sym_unowned] = ACTIONS(183), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(185), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(185), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + [sym_default_keyword] = ACTIONS(187), + }, + [4] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2225), + [sym_boolean_literal] = STATE(2225), + [sym__string_literal] = STATE(2225), + [sym_line_string_literal] = STATE(2225), + [sym_multi_line_string_literal] = STATE(2225), + [sym_raw_string_literal] = STATE(2225), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2225), + [sym__unary_expression] = STATE(2225), + [sym_postfix_expression] = STATE(2225), + [sym_constructor_expression] = STATE(2225), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2225), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2225), + [sym_prefix_expression] = STATE(2225), + [sym_as_expression] = STATE(2225), + [sym_selector_expression] = STATE(2225), + [sym__binary_expression] = STATE(2225), + [sym_multiplicative_expression] = STATE(2225), + [sym_additive_expression] = STATE(2225), + [sym_range_expression] = STATE(2225), + [sym_infix_expression] = STATE(2225), + [sym_nil_coalescing_expression] = STATE(2225), + [sym_check_expression] = STATE(2225), + [sym_comparison_expression] = STATE(2225), + [sym_equality_expression] = STATE(2225), + [sym_conjunction_expression] = STATE(2225), + [sym_disjunction_expression] = STATE(2225), + [sym_bitwise_operation] = STATE(2225), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2225), + [sym_await_expression] = STATE(2225), + [sym_ternary_expression] = STATE(2225), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2225), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2225), + [sym_dictionary_literal] = STATE(2225), + [sym__special_literal] = STATE(2225), + [sym__playground_literal] = STATE(2225), + [sym_lambda_literal] = STATE(2225), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2225), + [sym_if_statement] = STATE(10432), + [sym_guard_statement] = STATE(10432), + [sym_switch_statement] = STATE(10432), + [sym_do_statement] = STATE(10432), + [sym_key_path_expression] = STATE(2225), + [sym_key_path_string_expression] = STATE(2225), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2225), + [sym__comparison_operator] = STATE(2225), + [sym__additive_operator] = STATE(2225), + [sym__multiplicative_operator] = STATE(2225), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym__top_level_statement] = STATE(10432), + [sym__labeled_statement] = STATE(10432), + [sym_for_statement] = STATE(10432), + [sym_while_statement] = STATE(10432), + [sym_repeat_while_statement] = STATE(10432), + [sym__throw_statement] = STATE(10432), + [sym_assignment] = STATE(2225), + [sym__global_declaration] = STATE(10432), + [sym_import_declaration] = STATE(10432), + [sym_property_declaration] = STATE(10432), + [sym__modifierless_property_declaration] = STATE(10427), + [sym_typealias_declaration] = STATE(10432), + [sym__modifierless_typealias_declaration] = STATE(8214), + [sym_function_declaration] = STATE(10432), + [sym__bodyless_function_declaration] = STATE(7966), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(10432), + [sym__modifierless_class_declaration] = STATE(10424), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2225), + [sym__eq_eq] = STATE(2225), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_protocol_declaration] = STATE(10432), + [sym_operator_declaration] = STATE(10432), + [sym_precedence_group_declaration] = STATE(10432), + [sym_associatedtype_declaration] = STATE(10432), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4673), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_modifiers_repeat1] = STATE(2318), + [ts_builtin_sym_end] = ACTIONS(191), + [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_nil] = ACTIONS(15), + [sym_real_literal] = ACTIONS(17), + [sym_integer_literal] = ACTIONS(15), + [sym_hex_literal] = ACTIONS(17), + [sym_oct_literal] = ACTIONS(17), + [sym_bin_literal] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(15), + [anon_sym_POUNDfileID] = ACTIONS(17), + [anon_sym_POUNDfilePath] = ACTIONS(17), + [anon_sym_POUNDline] = ACTIONS(17), + [anon_sym_POUNDcolumn] = ACTIONS(17), + [anon_sym_POUNDfunction] = ACTIONS(17), + [anon_sym_POUNDdsohandle] = ACTIONS(17), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(15), + [anon_sym_BANG_EQ_EQ] = ACTIONS(15), + [anon_sym_EQ_EQ_EQ] = ACTIONS(15), + [anon_sym_LT_EQ] = ACTIONS(15), + [anon_sym_GT_EQ] = ACTIONS(15), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(15), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_import] = ACTIONS(77), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(83), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_protocol] = ACTIONS(87), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_prefix] = ACTIONS(99), + [anon_sym_infix] = ACTIONS(99), + [anon_sym_postfix] = ACTIONS(99), + [anon_sym_precedencegroup] = ACTIONS(101), + [anon_sym_associatedtype] = ACTIONS(103), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(107), + [anon_sym_override] = ACTIONS(109), + [anon_sym_convenience] = ACTIONS(109), + [anon_sym_required] = ACTIONS(109), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_internal] = ACTIONS(111), + [anon_sym_fileprivate] = ACTIONS(111), + [anon_sym_open] = ACTIONS(111), + [anon_sym_mutating] = ACTIONS(113), + [anon_sym_nonmutating] = ACTIONS(113), + [anon_sym_static] = ACTIONS(115), + [anon_sym_dynamic] = ACTIONS(115), + [anon_sym_optional] = ACTIONS(115), + [anon_sym_final] = ACTIONS(117), + [anon_sym_inout] = ACTIONS(119), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(123), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(17), + [sym__plus_then_ws] = ACTIONS(17), + [sym__minus_then_ws] = ACTIONS(17), + [sym_bang] = ACTIONS(137), + }, + [5] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2225), + [sym_boolean_literal] = STATE(2225), + [sym__string_literal] = STATE(2225), + [sym_line_string_literal] = STATE(2225), + [sym_multi_line_string_literal] = STATE(2225), + [sym_raw_string_literal] = STATE(2225), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2225), + [sym__unary_expression] = STATE(2225), + [sym_postfix_expression] = STATE(2225), + [sym_constructor_expression] = STATE(2225), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2225), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2225), + [sym_prefix_expression] = STATE(2225), + [sym_as_expression] = STATE(2225), + [sym_selector_expression] = STATE(2225), + [sym__binary_expression] = STATE(2225), + [sym_multiplicative_expression] = STATE(2225), + [sym_additive_expression] = STATE(2225), + [sym_range_expression] = STATE(2225), + [sym_infix_expression] = STATE(2225), + [sym_nil_coalescing_expression] = STATE(2225), + [sym_check_expression] = STATE(2225), + [sym_comparison_expression] = STATE(2225), + [sym_equality_expression] = STATE(2225), + [sym_conjunction_expression] = STATE(2225), + [sym_disjunction_expression] = STATE(2225), + [sym_bitwise_operation] = STATE(2225), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2225), + [sym_await_expression] = STATE(2225), + [sym_ternary_expression] = STATE(2225), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2225), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2225), + [sym_dictionary_literal] = STATE(2225), + [sym__special_literal] = STATE(2225), + [sym__playground_literal] = STATE(2225), + [sym_lambda_literal] = STATE(2225), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2225), + [sym_if_statement] = STATE(10432), + [sym_guard_statement] = STATE(10432), + [sym_switch_statement] = STATE(10432), + [sym_do_statement] = STATE(10432), + [sym_key_path_expression] = STATE(2225), + [sym_key_path_string_expression] = STATE(2225), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2225), + [sym__comparison_operator] = STATE(2225), + [sym__additive_operator] = STATE(2225), + [sym__multiplicative_operator] = STATE(2225), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym__top_level_statement] = STATE(10432), + [sym__labeled_statement] = STATE(10432), + [sym_for_statement] = STATE(10432), + [sym_while_statement] = STATE(10432), + [sym_repeat_while_statement] = STATE(10432), + [sym__throw_statement] = STATE(10432), + [sym_assignment] = STATE(2225), + [sym__global_declaration] = STATE(10432), + [sym_import_declaration] = STATE(10432), + [sym_property_declaration] = STATE(10432), + [sym__modifierless_property_declaration] = STATE(10427), + [sym_typealias_declaration] = STATE(10432), + [sym__modifierless_typealias_declaration] = STATE(8214), + [sym_function_declaration] = STATE(10432), + [sym__bodyless_function_declaration] = STATE(7966), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(10432), + [sym__modifierless_class_declaration] = STATE(10424), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2225), + [sym__eq_eq] = STATE(2225), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_protocol_declaration] = STATE(10432), + [sym_operator_declaration] = STATE(10432), + [sym_precedence_group_declaration] = STATE(10432), + [sym_associatedtype_declaration] = STATE(10432), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4673), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_modifiers_repeat1] = STATE(2318), + [ts_builtin_sym_end] = ACTIONS(193), + [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_nil] = ACTIONS(15), + [sym_real_literal] = ACTIONS(17), + [sym_integer_literal] = ACTIONS(15), + [sym_hex_literal] = ACTIONS(17), + [sym_oct_literal] = ACTIONS(17), + [sym_bin_literal] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(15), + [anon_sym_POUNDfileID] = ACTIONS(17), + [anon_sym_POUNDfilePath] = ACTIONS(17), + [anon_sym_POUNDline] = ACTIONS(17), + [anon_sym_POUNDcolumn] = ACTIONS(17), + [anon_sym_POUNDfunction] = ACTIONS(17), + [anon_sym_POUNDdsohandle] = ACTIONS(17), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(15), + [anon_sym_BANG_EQ_EQ] = ACTIONS(15), + [anon_sym_EQ_EQ_EQ] = ACTIONS(15), + [anon_sym_LT_EQ] = ACTIONS(15), + [anon_sym_GT_EQ] = ACTIONS(15), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(15), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_import] = ACTIONS(77), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(83), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_protocol] = ACTIONS(87), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_prefix] = ACTIONS(99), + [anon_sym_infix] = ACTIONS(99), + [anon_sym_postfix] = ACTIONS(99), + [anon_sym_precedencegroup] = ACTIONS(101), + [anon_sym_associatedtype] = ACTIONS(103), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(107), + [anon_sym_override] = ACTIONS(109), + [anon_sym_convenience] = ACTIONS(109), + [anon_sym_required] = ACTIONS(109), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_internal] = ACTIONS(111), + [anon_sym_fileprivate] = ACTIONS(111), + [anon_sym_open] = ACTIONS(111), + [anon_sym_mutating] = ACTIONS(113), + [anon_sym_nonmutating] = ACTIONS(113), + [anon_sym_static] = ACTIONS(115), + [anon_sym_dynamic] = ACTIONS(115), + [anon_sym_optional] = ACTIONS(115), + [anon_sym_final] = ACTIONS(117), + [anon_sym_inout] = ACTIONS(119), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(123), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(17), + [sym__plus_then_ws] = ACTIONS(17), + [sym__minus_then_ws] = ACTIONS(17), + [sym_bang] = ACTIONS(137), + }, + [6] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2225), + [sym_boolean_literal] = STATE(2225), + [sym__string_literal] = STATE(2225), + [sym_line_string_literal] = STATE(2225), + [sym_multi_line_string_literal] = STATE(2225), + [sym_raw_string_literal] = STATE(2225), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2225), + [sym__unary_expression] = STATE(2225), + [sym_postfix_expression] = STATE(2225), + [sym_constructor_expression] = STATE(2225), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2225), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2225), + [sym_prefix_expression] = STATE(2225), + [sym_as_expression] = STATE(2225), + [sym_selector_expression] = STATE(2225), + [sym__binary_expression] = STATE(2225), + [sym_multiplicative_expression] = STATE(2225), + [sym_additive_expression] = STATE(2225), + [sym_range_expression] = STATE(2225), + [sym_infix_expression] = STATE(2225), + [sym_nil_coalescing_expression] = STATE(2225), + [sym_check_expression] = STATE(2225), + [sym_comparison_expression] = STATE(2225), + [sym_equality_expression] = STATE(2225), + [sym_conjunction_expression] = STATE(2225), + [sym_disjunction_expression] = STATE(2225), + [sym_bitwise_operation] = STATE(2225), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2225), + [sym_await_expression] = STATE(2225), + [sym_ternary_expression] = STATE(2225), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2225), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2225), + [sym_dictionary_literal] = STATE(2225), + [sym__special_literal] = STATE(2225), + [sym__playground_literal] = STATE(2225), + [sym_lambda_literal] = STATE(2225), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2225), + [sym_if_statement] = STATE(10432), + [sym_guard_statement] = STATE(10432), + [sym_switch_statement] = STATE(10432), + [sym_do_statement] = STATE(10432), + [sym_key_path_expression] = STATE(2225), + [sym_key_path_string_expression] = STATE(2225), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2225), + [sym__comparison_operator] = STATE(2225), + [sym__additive_operator] = STATE(2225), + [sym__multiplicative_operator] = STATE(2225), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym__top_level_statement] = STATE(10432), + [sym__labeled_statement] = STATE(10432), + [sym_for_statement] = STATE(10432), + [sym_while_statement] = STATE(10432), + [sym_repeat_while_statement] = STATE(10432), + [sym__throw_statement] = STATE(10432), + [sym_assignment] = STATE(2225), + [sym__global_declaration] = STATE(10432), + [sym_import_declaration] = STATE(10432), + [sym_property_declaration] = STATE(10432), + [sym__modifierless_property_declaration] = STATE(10427), + [sym_typealias_declaration] = STATE(10432), + [sym__modifierless_typealias_declaration] = STATE(8214), + [sym_function_declaration] = STATE(10432), + [sym__bodyless_function_declaration] = STATE(7966), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(10432), + [sym__modifierless_class_declaration] = STATE(10424), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2225), + [sym__eq_eq] = STATE(2225), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_protocol_declaration] = STATE(10432), + [sym_operator_declaration] = STATE(10432), + [sym_precedence_group_declaration] = STATE(10432), + [sym_associatedtype_declaration] = STATE(10432), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4673), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_modifiers_repeat1] = STATE(2318), + [ts_builtin_sym_end] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(197), + [aux_sym_simple_identifier_token2] = ACTIONS(200), + [aux_sym_simple_identifier_token3] = ACTIONS(200), + [aux_sym_simple_identifier_token4] = ACTIONS(200), + [anon_sym_nil] = ACTIONS(203), + [sym_real_literal] = ACTIONS(206), + [sym_integer_literal] = ACTIONS(203), + [sym_hex_literal] = ACTIONS(206), + [sym_oct_literal] = ACTIONS(206), + [sym_bin_literal] = ACTIONS(206), + [anon_sym_true] = ACTIONS(209), + [anon_sym_false] = ACTIONS(209), + [anon_sym_DQUOTE] = ACTIONS(212), + [anon_sym_BSLASH] = ACTIONS(215), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(218), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACK] = ACTIONS(224), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_async] = ACTIONS(230), + [anon_sym_POUNDselector] = ACTIONS(233), + [aux_sym_custom_operator_token1] = ACTIONS(236), + [anon_sym_LT] = ACTIONS(203), + [anon_sym_GT] = ACTIONS(203), + [sym__await_operator] = ACTIONS(239), + [anon_sym_POUNDfile] = ACTIONS(203), + [anon_sym_POUNDfileID] = ACTIONS(206), + [anon_sym_POUNDfilePath] = ACTIONS(206), + [anon_sym_POUNDline] = ACTIONS(206), + [anon_sym_POUNDcolumn] = ACTIONS(206), + [anon_sym_POUNDfunction] = ACTIONS(206), + [anon_sym_POUNDdsohandle] = ACTIONS(206), + [anon_sym_POUNDcolorLiteral] = ACTIONS(242), + [anon_sym_POUNDfileLiteral] = ACTIONS(242), + [anon_sym_POUNDimageLiteral] = ACTIONS(242), + [anon_sym_LBRACE] = ACTIONS(245), + [anon_sym_self] = ACTIONS(248), + [anon_sym_super] = ACTIONS(251), + [anon_sym_if] = ACTIONS(254), + [anon_sym_guard] = ACTIONS(257), + [anon_sym_switch] = ACTIONS(260), + [anon_sym_do] = ACTIONS(263), + [anon_sym_POUNDkeyPath] = ACTIONS(266), + [anon_sym_try] = ACTIONS(269), + [anon_sym_try_BANG] = ACTIONS(272), + [anon_sym_try_QMARK] = ACTIONS(272), + [anon_sym_BANG_EQ] = ACTIONS(203), + [anon_sym_BANG_EQ_EQ] = ACTIONS(203), + [anon_sym_EQ_EQ_EQ] = ACTIONS(203), + [anon_sym_LT_EQ] = ACTIONS(203), + [anon_sym_GT_EQ] = ACTIONS(203), + [anon_sym_PLUS] = ACTIONS(275), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_STAR] = ACTIONS(203), + [anon_sym_SLASH] = ACTIONS(203), + [anon_sym_PERCENT] = ACTIONS(203), + [anon_sym_PLUS_PLUS] = ACTIONS(278), + [anon_sym_DASH_DASH] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(278), + [sym_statement_label] = ACTIONS(281), + [anon_sym_for] = ACTIONS(284), + [anon_sym_while] = ACTIONS(287), + [anon_sym_repeat] = ACTIONS(290), + [sym_throw_keyword] = ACTIONS(293), + [anon_sym_import] = ACTIONS(296), + [anon_sym_typealias] = ACTIONS(299), + [anon_sym_struct] = ACTIONS(302), + [anon_sym_class] = ACTIONS(305), + [anon_sym_enum] = ACTIONS(308), + [anon_sym_protocol] = ACTIONS(311), + [anon_sym_let] = ACTIONS(314), + [anon_sym_var] = ACTIONS(314), + [anon_sym_func] = ACTIONS(317), + [anon_sym_extension] = ACTIONS(320), + [anon_sym_indirect] = ACTIONS(323), + [anon_sym_init] = ACTIONS(326), + [anon_sym_prefix] = ACTIONS(329), + [anon_sym_infix] = ACTIONS(329), + [anon_sym_postfix] = ACTIONS(329), + [anon_sym_precedencegroup] = ACTIONS(332), + [anon_sym_associatedtype] = ACTIONS(335), + [anon_sym_AT] = ACTIONS(338), + [sym_property_behavior_modifier] = ACTIONS(341), + [anon_sym_override] = ACTIONS(344), + [anon_sym_convenience] = ACTIONS(344), + [anon_sym_required] = ACTIONS(344), + [anon_sym_public] = ACTIONS(347), + [anon_sym_private] = ACTIONS(347), + [anon_sym_internal] = ACTIONS(347), + [anon_sym_fileprivate] = ACTIONS(347), + [anon_sym_open] = ACTIONS(347), + [anon_sym_mutating] = ACTIONS(350), + [anon_sym_nonmutating] = ACTIONS(350), + [anon_sym_static] = ACTIONS(353), + [anon_sym_dynamic] = ACTIONS(353), + [anon_sym_optional] = ACTIONS(353), + [anon_sym_final] = ACTIONS(356), + [anon_sym_inout] = ACTIONS(359), + [anon_sym_ATescaping] = ACTIONS(362), + [anon_sym_ATautoclosure] = ACTIONS(362), + [anon_sym_weak] = ACTIONS(365), + [anon_sym_unowned] = ACTIONS(365), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(368), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(368), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(371), + [sym_raw_str_end_part] = ACTIONS(374), + [sym__dot_custom] = ACTIONS(377), + [sym__three_dot_operator_custom] = ACTIONS(380), + [sym__open_ended_range_operator_custom] = ACTIONS(383), + [sym__eq_eq_custom] = ACTIONS(206), + [sym__plus_then_ws] = ACTIONS(206), + [sym__minus_then_ws] = ACTIONS(206), + [sym_bang] = ACTIONS(386), + }, + [7] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2225), + [sym_boolean_literal] = STATE(2225), + [sym__string_literal] = STATE(2225), + [sym_line_string_literal] = STATE(2225), + [sym_multi_line_string_literal] = STATE(2225), + [sym_raw_string_literal] = STATE(2225), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2225), + [sym__unary_expression] = STATE(2225), + [sym_postfix_expression] = STATE(2225), + [sym_constructor_expression] = STATE(2225), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2225), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2225), + [sym_prefix_expression] = STATE(2225), + [sym_as_expression] = STATE(2225), + [sym_selector_expression] = STATE(2225), + [sym__binary_expression] = STATE(2225), + [sym_multiplicative_expression] = STATE(2225), + [sym_additive_expression] = STATE(2225), + [sym_range_expression] = STATE(2225), + [sym_infix_expression] = STATE(2225), + [sym_nil_coalescing_expression] = STATE(2225), + [sym_check_expression] = STATE(2225), + [sym_comparison_expression] = STATE(2225), + [sym_equality_expression] = STATE(2225), + [sym_conjunction_expression] = STATE(2225), + [sym_disjunction_expression] = STATE(2225), + [sym_bitwise_operation] = STATE(2225), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2225), + [sym_await_expression] = STATE(2225), + [sym_ternary_expression] = STATE(2225), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2225), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2225), + [sym_dictionary_literal] = STATE(2225), + [sym__special_literal] = STATE(2225), + [sym__playground_literal] = STATE(2225), + [sym_lambda_literal] = STATE(2225), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2225), + [sym_if_statement] = STATE(10432), + [sym_guard_statement] = STATE(10432), + [sym_switch_statement] = STATE(10432), + [sym_do_statement] = STATE(10432), + [sym_key_path_expression] = STATE(2225), + [sym_key_path_string_expression] = STATE(2225), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2225), + [sym__comparison_operator] = STATE(2225), + [sym__additive_operator] = STATE(2225), + [sym__multiplicative_operator] = STATE(2225), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym__top_level_statement] = STATE(10432), + [sym__labeled_statement] = STATE(10432), + [sym_for_statement] = STATE(10432), + [sym_while_statement] = STATE(10432), + [sym_repeat_while_statement] = STATE(10432), + [sym__throw_statement] = STATE(10432), + [sym_assignment] = STATE(2225), + [sym__global_declaration] = STATE(10432), + [sym_import_declaration] = STATE(10432), + [sym_property_declaration] = STATE(10432), + [sym__modifierless_property_declaration] = STATE(10427), + [sym_typealias_declaration] = STATE(10432), + [sym__modifierless_typealias_declaration] = STATE(8214), + [sym_function_declaration] = STATE(10432), + [sym__bodyless_function_declaration] = STATE(7966), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(10432), + [sym__modifierless_class_declaration] = STATE(10424), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2225), + [sym__eq_eq] = STATE(2225), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_protocol_declaration] = STATE(10432), + [sym_operator_declaration] = STATE(10432), + [sym_precedence_group_declaration] = STATE(10432), + [sym_associatedtype_declaration] = STATE(10432), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4673), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_modifiers_repeat1] = STATE(2318), + [ts_builtin_sym_end] = ACTIONS(191), + [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_nil] = ACTIONS(15), + [sym_real_literal] = ACTIONS(17), + [sym_integer_literal] = ACTIONS(15), + [sym_hex_literal] = ACTIONS(17), + [sym_oct_literal] = ACTIONS(17), + [sym_bin_literal] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(15), + [anon_sym_POUNDfileID] = ACTIONS(17), + [anon_sym_POUNDfilePath] = ACTIONS(17), + [anon_sym_POUNDline] = ACTIONS(17), + [anon_sym_POUNDcolumn] = ACTIONS(17), + [anon_sym_POUNDfunction] = ACTIONS(17), + [anon_sym_POUNDdsohandle] = ACTIONS(17), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(15), + [anon_sym_BANG_EQ_EQ] = ACTIONS(15), + [anon_sym_EQ_EQ_EQ] = ACTIONS(15), + [anon_sym_LT_EQ] = ACTIONS(15), + [anon_sym_GT_EQ] = ACTIONS(15), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(15), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_import] = ACTIONS(77), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(83), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_protocol] = ACTIONS(87), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_prefix] = ACTIONS(99), + [anon_sym_infix] = ACTIONS(99), + [anon_sym_postfix] = ACTIONS(99), + [anon_sym_precedencegroup] = ACTIONS(101), + [anon_sym_associatedtype] = ACTIONS(103), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(107), + [anon_sym_override] = ACTIONS(109), + [anon_sym_convenience] = ACTIONS(109), + [anon_sym_required] = ACTIONS(109), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_internal] = ACTIONS(111), + [anon_sym_fileprivate] = ACTIONS(111), + [anon_sym_open] = ACTIONS(111), + [anon_sym_mutating] = ACTIONS(113), + [anon_sym_nonmutating] = ACTIONS(113), + [anon_sym_static] = ACTIONS(115), + [anon_sym_dynamic] = ACTIONS(115), + [anon_sym_optional] = ACTIONS(115), + [anon_sym_final] = ACTIONS(117), + [anon_sym_inout] = ACTIONS(119), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(123), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(17), + [sym__plus_then_ws] = ACTIONS(17), + [sym__minus_then_ws] = ACTIONS(17), + [sym_bang] = ACTIONS(137), + }, + [8] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1178), + [sym__unary_expression] = STATE(1178), + [sym_postfix_expression] = STATE(1178), + [sym_constructor_expression] = STATE(1178), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1178), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1178), + [sym_await_expression] = STATE(1178), + [sym_ternary_expression] = STATE(1178), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1178), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1178), + [sym_if_statement] = STATE(3692), + [sym_guard_statement] = STATE(3692), + [sym_switch_statement] = STATE(3692), + [sym_do_statement] = STATE(3692), + [sym_key_path_expression] = STATE(1178), + [sym_key_path_string_expression] = STATE(1178), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1178), + [sym__comparison_operator] = STATE(1178), + [sym__additive_operator] = STATE(1178), + [sym__multiplicative_operator] = STATE(1178), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym__local_statement] = STATE(3692), + [sym__labeled_statement] = STATE(3692), + [sym_for_statement] = STATE(3692), + [sym_while_statement] = STATE(3692), + [sym_repeat_while_statement] = STATE(3692), + [sym_control_transfer_statement] = STATE(3692), + [sym__throw_statement] = STATE(3942), + [sym__optionally_valueful_control_keyword] = STATE(119), + [sym_assignment] = STATE(1178), + [sym__local_declaration] = STATE(3692), + [sym__local_property_declaration] = STATE(3929), + [sym__local_typealias_declaration] = STATE(3928), + [sym__local_function_declaration] = STATE(3926), + [sym__local_class_declaration] = STATE(3925), + [sym__modifierless_property_declaration] = STATE(3922), + [sym__modifierless_typealias_declaration] = STATE(3921), + [sym__modifierless_function_declaration] = STATE(3920), + [sym__modifierless_function_declaration_no_body] = STATE(7555), + [sym__modifierless_class_declaration] = STATE(3919), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(1178), + [sym__eq_eq] = STATE(1178), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [sym__async_modifier] = STATE(10416), + [sym_attribute] = STATE(4213), + [aux_sym__locally_permitted_modifiers] = STATE(4213), + [sym__locally_permitted_modifier] = STATE(4213), + [sym_inheritance_modifier] = STATE(4213), + [sym_ownership_modifier] = STATE(4213), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(393), + [sym_real_literal] = ACTIONS(395), + [sym_integer_literal] = ACTIONS(393), + [sym_hex_literal] = ACTIONS(395), + [sym_oct_literal] = ACTIONS(395), + [sym_bin_literal] = ACTIONS(395), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(393), + [anon_sym_POUNDfileID] = ACTIONS(395), + [anon_sym_POUNDfilePath] = ACTIONS(395), + [anon_sym_POUNDline] = ACTIONS(395), + [anon_sym_POUNDcolumn] = ACTIONS(395), + [anon_sym_POUNDfunction] = ACTIONS(395), + [anon_sym_POUNDdsohandle] = ACTIONS(395), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(423), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_if] = ACTIONS(429), + [anon_sym_guard] = ACTIONS(431), + [anon_sym_switch] = ACTIONS(433), + [anon_sym_case] = ACTIONS(435), + [anon_sym_fallthrough] = ACTIONS(435), + [anon_sym_do] = ACTIONS(437), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_statement_label] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_repeat] = ACTIONS(455), + [sym_throw_keyword] = ACTIONS(457), + [anon_sym_return] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(459), + [anon_sym_break] = ACTIONS(459), + [anon_sym_yield] = ACTIONS(459), + [anon_sym_typealias] = ACTIONS(461), + [anon_sym_struct] = ACTIONS(463), + [anon_sym_class] = ACTIONS(435), + [anon_sym_enum] = ACTIONS(465), + [anon_sym_let] = ACTIONS(467), + [anon_sym_var] = ACTIONS(467), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(469), + [anon_sym_indirect] = ACTIONS(471), + [anon_sym_init] = ACTIONS(97), + [anon_sym_prefix] = ACTIONS(435), + [anon_sym_infix] = ACTIONS(435), + [anon_sym_postfix] = ACTIONS(435), + [anon_sym_AT] = ACTIONS(435), + [sym_property_behavior_modifier] = ACTIONS(435), + [anon_sym_override] = ACTIONS(435), + [anon_sym_convenience] = ACTIONS(435), + [anon_sym_required] = ACTIONS(435), + [anon_sym_public] = ACTIONS(435), + [anon_sym_private] = ACTIONS(435), + [anon_sym_internal] = ACTIONS(435), + [anon_sym_fileprivate] = ACTIONS(435), + [anon_sym_open] = ACTIONS(435), + [anon_sym_mutating] = ACTIONS(435), + [anon_sym_nonmutating] = ACTIONS(435), + [anon_sym_static] = ACTIONS(435), + [anon_sym_dynamic] = ACTIONS(435), + [anon_sym_optional] = ACTIONS(435), + [anon_sym_final] = ACTIONS(435), + [anon_sym_inout] = ACTIONS(435), + [anon_sym_ATescaping] = ACTIONS(423), + [anon_sym_ATautoclosure] = ACTIONS(423), + [anon_sym_weak] = ACTIONS(435), + [anon_sym_unowned] = ACTIONS(435), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(423), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(423), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(395), + [sym__plus_then_ws] = ACTIONS(395), + [sym__minus_then_ws] = ACTIONS(395), + [sym_bang] = ACTIONS(481), + [sym_default_keyword] = ACTIONS(423), + }, + [9] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1178), + [sym__unary_expression] = STATE(1178), + [sym_postfix_expression] = STATE(1178), + [sym_constructor_expression] = STATE(1178), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1178), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1178), + [sym_await_expression] = STATE(1178), + [sym_ternary_expression] = STATE(1178), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1178), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1178), + [sym_if_statement] = STATE(3692), + [sym_guard_statement] = STATE(3692), + [sym_switch_statement] = STATE(3692), + [sym_do_statement] = STATE(3692), + [sym_key_path_expression] = STATE(1178), + [sym_key_path_string_expression] = STATE(1178), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1178), + [sym__comparison_operator] = STATE(1178), + [sym__additive_operator] = STATE(1178), + [sym__multiplicative_operator] = STATE(1178), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym__local_statement] = STATE(3692), + [sym__labeled_statement] = STATE(3692), + [sym_for_statement] = STATE(3692), + [sym_while_statement] = STATE(3692), + [sym_repeat_while_statement] = STATE(3692), + [sym_control_transfer_statement] = STATE(3692), + [sym__throw_statement] = STATE(3942), + [sym__optionally_valueful_control_keyword] = STATE(119), + [sym_assignment] = STATE(1178), + [sym__local_declaration] = STATE(3692), + [sym__local_property_declaration] = STATE(3929), + [sym__local_typealias_declaration] = STATE(3928), + [sym__local_function_declaration] = STATE(3926), + [sym__local_class_declaration] = STATE(3925), + [sym__modifierless_property_declaration] = STATE(3922), + [sym__modifierless_typealias_declaration] = STATE(3921), + [sym__modifierless_function_declaration] = STATE(3920), + [sym__modifierless_function_declaration_no_body] = STATE(7555), + [sym__modifierless_class_declaration] = STATE(3919), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(1178), + [sym__eq_eq] = STATE(1178), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [sym__async_modifier] = STATE(10416), + [sym_attribute] = STATE(4213), + [aux_sym__locally_permitted_modifiers] = STATE(4213), + [sym__locally_permitted_modifier] = STATE(4213), + [sym_inheritance_modifier] = STATE(4213), + [sym_ownership_modifier] = STATE(4213), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(393), + [sym_real_literal] = ACTIONS(395), + [sym_integer_literal] = ACTIONS(393), + [sym_hex_literal] = ACTIONS(395), + [sym_oct_literal] = ACTIONS(395), + [sym_bin_literal] = ACTIONS(395), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(393), + [anon_sym_POUNDfileID] = ACTIONS(395), + [anon_sym_POUNDfilePath] = ACTIONS(395), + [anon_sym_POUNDline] = ACTIONS(395), + [anon_sym_POUNDcolumn] = ACTIONS(395), + [anon_sym_POUNDfunction] = ACTIONS(395), + [anon_sym_POUNDdsohandle] = ACTIONS(395), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(483), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_if] = ACTIONS(429), + [anon_sym_guard] = ACTIONS(431), + [anon_sym_switch] = ACTIONS(433), + [anon_sym_case] = ACTIONS(485), + [anon_sym_fallthrough] = ACTIONS(485), + [anon_sym_do] = ACTIONS(437), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_statement_label] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_repeat] = ACTIONS(455), + [sym_throw_keyword] = ACTIONS(457), + [anon_sym_return] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(459), + [anon_sym_break] = ACTIONS(459), + [anon_sym_yield] = ACTIONS(459), + [anon_sym_typealias] = ACTIONS(461), + [anon_sym_struct] = ACTIONS(463), + [anon_sym_class] = ACTIONS(485), + [anon_sym_enum] = ACTIONS(465), + [anon_sym_let] = ACTIONS(467), + [anon_sym_var] = ACTIONS(467), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(469), + [anon_sym_indirect] = ACTIONS(471), + [anon_sym_init] = ACTIONS(97), + [anon_sym_prefix] = ACTIONS(485), + [anon_sym_infix] = ACTIONS(485), + [anon_sym_postfix] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(485), + [sym_property_behavior_modifier] = ACTIONS(485), + [anon_sym_override] = ACTIONS(485), + [anon_sym_convenience] = ACTIONS(485), + [anon_sym_required] = ACTIONS(485), + [anon_sym_public] = ACTIONS(485), + [anon_sym_private] = ACTIONS(485), + [anon_sym_internal] = ACTIONS(485), + [anon_sym_fileprivate] = ACTIONS(485), + [anon_sym_open] = ACTIONS(485), + [anon_sym_mutating] = ACTIONS(485), + [anon_sym_nonmutating] = ACTIONS(485), + [anon_sym_static] = ACTIONS(485), + [anon_sym_dynamic] = ACTIONS(485), + [anon_sym_optional] = ACTIONS(485), + [anon_sym_final] = ACTIONS(485), + [anon_sym_inout] = ACTIONS(485), + [anon_sym_ATescaping] = ACTIONS(483), + [anon_sym_ATautoclosure] = ACTIONS(483), + [anon_sym_weak] = ACTIONS(485), + [anon_sym_unowned] = ACTIONS(485), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(483), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(483), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(395), + [sym__plus_then_ws] = ACTIONS(395), + [sym__minus_then_ws] = ACTIONS(395), + [sym_bang] = ACTIONS(481), + [sym_default_keyword] = ACTIONS(483), + }, + [10] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10319), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_computed_getter] = STATE(4749), + [sym_computed_modify] = STATE(4749), + [sym_computed_setter] = STATE(4749), + [sym_getter_specifier] = STATE(5375), + [sym_setter_specifier] = STATE(5343), + [sym_modify_specifier] = STATE(5376), + [sym_attribute] = STATE(4668), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_mutation_modifier] = STATE(8139), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(4992), + [aux_sym_computed_property_repeat1] = STATE(4749), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(487), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(491), + [anon_sym__modify] = ACTIONS(493), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_mutating] = ACTIONS(113), + [anon_sym_nonmutating] = ACTIONS(113), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [11] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10419), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_computed_getter] = STATE(4756), + [sym_computed_modify] = STATE(4756), + [sym_computed_setter] = STATE(4756), + [sym_getter_specifier] = STATE(5375), + [sym_setter_specifier] = STATE(5343), + [sym_modify_specifier] = STATE(5376), + [sym_attribute] = STATE(4668), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_mutation_modifier] = STATE(8139), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(4992), + [aux_sym_computed_property_repeat1] = STATE(4756), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(505), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(491), + [anon_sym__modify] = ACTIONS(493), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_mutating] = ACTIONS(113), + [anon_sym_nonmutating] = ACTIONS(113), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [12] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10390), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_computed_getter] = STATE(4750), + [sym_computed_modify] = STATE(4750), + [sym_computed_setter] = STATE(4750), + [sym_getter_specifier] = STATE(5375), + [sym_setter_specifier] = STATE(5343), + [sym_modify_specifier] = STATE(5376), + [sym_attribute] = STATE(4668), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_mutation_modifier] = STATE(8139), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(4992), + [aux_sym_computed_property_repeat1] = STATE(4750), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(507), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(491), + [anon_sym__modify] = ACTIONS(493), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_mutating] = ACTIONS(113), + [anon_sym_nonmutating] = ACTIONS(113), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [13] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10265), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_computed_getter] = STATE(4759), + [sym_computed_modify] = STATE(4759), + [sym_computed_setter] = STATE(4759), + [sym_getter_specifier] = STATE(5375), + [sym_setter_specifier] = STATE(5343), + [sym_modify_specifier] = STATE(5376), + [sym_attribute] = STATE(4668), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_mutation_modifier] = STATE(8139), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(4992), + [aux_sym_computed_property_repeat1] = STATE(4759), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(509), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(491), + [anon_sym__modify] = ACTIONS(493), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_mutating] = ACTIONS(113), + [anon_sym_nonmutating] = ACTIONS(113), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [14] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_capture_list] = STATE(34), + [sym_lambda_function_type] = STATE(9832), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10108), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4253), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(7174), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(511), + [anon_sym_RBRACE] = ACTIONS(513), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [15] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_capture_list] = STATE(30), + [sym_lambda_function_type] = STATE(9862), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10361), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4253), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(7174), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(517), + [anon_sym_RBRACE] = ACTIONS(519), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [16] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_capture_list] = STATE(36), + [sym_lambda_function_type] = STATE(9910), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10406), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4253), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(7174), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(521), + [anon_sym_RBRACE] = ACTIONS(523), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [17] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_capture_list] = STATE(33), + [sym_lambda_function_type] = STATE(9874), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10384), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4253), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(7174), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(151), + [anon_sym_RBRACE] = ACTIONS(525), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [18] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_capture_list] = STATE(32), + [sym_lambda_function_type] = STATE(9854), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10342), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4253), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(7174), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(527), + [anon_sym_RBRACE] = ACTIONS(529), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [19] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_capture_list] = STATE(40), + [sym_lambda_function_type] = STATE(9844), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10157), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4253), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(7174), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(531), + [anon_sym_RBRACE] = ACTIONS(533), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [20] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_capture_list] = STATE(38), + [sym_lambda_function_type] = STATE(10382), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10417), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4253), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(7174), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(535), + [anon_sym_RBRACE] = ACTIONS(537), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [21] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_capture_list] = STATE(39), + [sym_lambda_function_type] = STATE(9848), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10282), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4253), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(7174), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(539), + [anon_sym_RBRACE] = ACTIONS(541), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [22] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_capture_list] = STATE(35), + [sym_lambda_function_type] = STATE(9857), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10344), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4253), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(7174), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(545), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [23] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_capture_list] = STATE(32), + [sym_lambda_function_type] = STATE(9854), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10196), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4253), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(7174), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(527), + [anon_sym_RBRACE] = ACTIONS(547), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [24] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_capture_list] = STATE(29), + [sym_lambda_function_type] = STATE(9837), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10124), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4253), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(7174), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(551), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [25] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_capture_list] = STATE(41), + [sym_lambda_function_type] = STATE(9840), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10140), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4253), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(7174), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(553), + [anon_sym_RBRACE] = ACTIONS(555), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [26] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_capture_list] = STATE(37), + [sym_lambda_function_type] = STATE(9881), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10410), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4253), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(7174), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(557), + [anon_sym_RBRACE] = ACTIONS(559), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [27] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_capture_list] = STATE(32), + [sym_lambda_function_type] = STATE(9854), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10062), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4253), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(7174), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(527), + [anon_sym_RBRACE] = ACTIONS(561), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [28] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_capture_list] = STATE(31), + [sym_lambda_function_type] = STATE(10028), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10255), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4253), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [aux_sym_capture_list_repeat1] = STATE(7174), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(149), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(563), + [anon_sym_RBRACE] = ACTIONS(565), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [29] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_lambda_function_type] = STATE(9833), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10121), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4263), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(569), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [30] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_lambda_function_type] = STATE(9859), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10357), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4263), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(571), + [anon_sym_RBRACE] = ACTIONS(573), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [31] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_lambda_function_type] = STATE(10017), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10286), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4263), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(575), + [anon_sym_RBRACE] = ACTIONS(577), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [32] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_lambda_function_type] = STATE(9853), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10253), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4263), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(581), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [33] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_lambda_function_type] = STATE(9870), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10377), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4263), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(583), + [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [34] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_lambda_function_type] = STATE(9829), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10104), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4263), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(587), + [anon_sym_RBRACE] = ACTIONS(589), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [35] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_lambda_function_type] = STATE(9856), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10340), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4263), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(591), + [anon_sym_RBRACE] = ACTIONS(593), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [36] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_lambda_function_type] = STATE(9907), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10409), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4263), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [37] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_lambda_function_type] = STATE(9878), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10398), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4263), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(601), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [38] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_lambda_function_type] = STATE(10365), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10364), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4263), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(603), + [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [39] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_lambda_function_type] = STATE(9846), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10193), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4263), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(607), + [anon_sym_RBRACE] = ACTIONS(609), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [40] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_lambda_function_type] = STATE(9843), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10151), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4263), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [41] = { + [sym_simple_identifier] = STATE(2274), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_lambda_function_type] = STATE(9838), + [sym_lambda_function_type_parameters] = STATE(5398), + [sym_lambda_parameter] = STATE(5924), + [sym_self_expression] = STATE(2453), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10137), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4263), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(139), + [aux_sym_simple_identifier_token2] = ACTIONS(141), + [aux_sym_simple_identifier_token3] = ACTIONS(141), + [aux_sym_simple_identifier_token4] = ACTIONS(141), + [anon_sym_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_in] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_self] = ACTIONS(155), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(515), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [42] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10392), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [43] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10334), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [44] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10126), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(623), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [45] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10128), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(625), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [46] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10402), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(627), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [47] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10371), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [48] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10414), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [49] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10413), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(633), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [50] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10397), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [51] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10131), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(637), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [52] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10138), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(639), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [53] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10370), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(641), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [54] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10350), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(643), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [55] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10411), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(645), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [56] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10408), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(647), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [57] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10142), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(649), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [58] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10144), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(651), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [59] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10146), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(653), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [60] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10363), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(655), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [61] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10327), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(657), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [62] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10155), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(659), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [63] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10367), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(661), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [64] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10326), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [65] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10166), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(665), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [66] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10170), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [67] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10173), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(669), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [68] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10189), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(671), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [69] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10194), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(673), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [70] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10426), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(675), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [71] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10389), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(677), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [72] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10359), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(679), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [73] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10354), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(681), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [74] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10198), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(683), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [75] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10296), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(685), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [76] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10356), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(687), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [77] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10154), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [78] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10347), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(691), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [79] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10346), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(693), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [80] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10122), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [81] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10202), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(697), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [82] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10207), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(699), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [83] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10285), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(701), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [84] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10118), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(703), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [85] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10289), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [86] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10240), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(707), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [87] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10345), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(709), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [88] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10113), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [89] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10259), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [90] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10299), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(715), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [91] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10300), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(717), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [92] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10200), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(719), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [93] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10373), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(721), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [94] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10381), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(723), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [95] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10308), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [96] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10110), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [97] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10081), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(729), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [98] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10329), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(731), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [99] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10332), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(733), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [100] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10317), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [101] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10106), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(737), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [102] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10395), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(739), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [103] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10324), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [104] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10086), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(743), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [105] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10328), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(745), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [106] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10015), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [107] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10084), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(749), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [108] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(7899), + [sym_guard_statement] = STATE(7899), + [sym_switch_statement] = STATE(7899), + [sym_do_statement] = STATE(7899), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_statements] = STATE(10341), + [sym__local_statement] = STATE(7899), + [sym__labeled_statement] = STATE(7899), + [sym_for_statement] = STATE(7899), + [sym_while_statement] = STATE(7899), + [sym_repeat_while_statement] = STATE(7899), + [sym_control_transfer_statement] = STATE(7899), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(7899), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(751), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [109] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(8614), + [sym_guard_statement] = STATE(8614), + [sym_switch_statement] = STATE(8614), + [sym_do_statement] = STATE(8614), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym__local_statement] = STATE(8614), + [sym__labeled_statement] = STATE(8614), + [sym_for_statement] = STATE(8614), + [sym_while_statement] = STATE(8614), + [sym_repeat_while_statement] = STATE(8614), + [sym_control_transfer_statement] = STATE(8614), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(8614), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(483), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [110] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1178), + [sym__unary_expression] = STATE(1178), + [sym_postfix_expression] = STATE(1178), + [sym_constructor_expression] = STATE(1178), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1178), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1178), + [sym_await_expression] = STATE(1178), + [sym_ternary_expression] = STATE(1178), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1178), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1178), + [sym_if_statement] = STATE(3596), + [sym_guard_statement] = STATE(3596), + [sym_switch_statement] = STATE(3596), + [sym_do_statement] = STATE(3596), + [sym_key_path_expression] = STATE(1178), + [sym_key_path_string_expression] = STATE(1178), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1178), + [sym__comparison_operator] = STATE(1178), + [sym__additive_operator] = STATE(1178), + [sym__multiplicative_operator] = STATE(1178), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_statements] = STATE(4216), + [sym__local_statement] = STATE(3596), + [sym__labeled_statement] = STATE(3596), + [sym_for_statement] = STATE(3596), + [sym_while_statement] = STATE(3596), + [sym_repeat_while_statement] = STATE(3596), + [sym_control_transfer_statement] = STATE(3596), + [sym__throw_statement] = STATE(3942), + [sym__optionally_valueful_control_keyword] = STATE(119), + [sym_assignment] = STATE(1178), + [sym__local_declaration] = STATE(3596), + [sym__local_property_declaration] = STATE(3929), + [sym__local_typealias_declaration] = STATE(3928), + [sym__local_function_declaration] = STATE(3926), + [sym__local_class_declaration] = STATE(3925), + [sym__modifierless_property_declaration] = STATE(3922), + [sym__modifierless_typealias_declaration] = STATE(3921), + [sym__modifierless_function_declaration] = STATE(3920), + [sym__modifierless_function_declaration_no_body] = STATE(7555), + [sym__modifierless_class_declaration] = STATE(3919), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(1178), + [sym__eq_eq] = STATE(1178), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [sym__async_modifier] = STATE(10416), + [sym_attribute] = STATE(4213), + [aux_sym__locally_permitted_modifiers] = STATE(4213), + [sym__locally_permitted_modifier] = STATE(4213), + [sym_inheritance_modifier] = STATE(4213), + [sym_ownership_modifier] = STATE(4213), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(393), + [sym_real_literal] = ACTIONS(395), + [sym_integer_literal] = ACTIONS(393), + [sym_hex_literal] = ACTIONS(395), + [sym_oct_literal] = ACTIONS(395), + [sym_bin_literal] = ACTIONS(395), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(393), + [anon_sym_POUNDfileID] = ACTIONS(395), + [anon_sym_POUNDfilePath] = ACTIONS(395), + [anon_sym_POUNDline] = ACTIONS(395), + [anon_sym_POUNDcolumn] = ACTIONS(395), + [anon_sym_POUNDfunction] = ACTIONS(395), + [anon_sym_POUNDdsohandle] = ACTIONS(395), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_if] = ACTIONS(429), + [anon_sym_guard] = ACTIONS(431), + [anon_sym_switch] = ACTIONS(433), + [anon_sym_do] = ACTIONS(437), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_statement_label] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_repeat] = ACTIONS(455), + [sym_throw_keyword] = ACTIONS(457), + [anon_sym_return] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(459), + [anon_sym_break] = ACTIONS(459), + [anon_sym_yield] = ACTIONS(459), + [anon_sym_typealias] = ACTIONS(461), + [anon_sym_struct] = ACTIONS(463), + [anon_sym_class] = ACTIONS(463), + [anon_sym_enum] = ACTIONS(465), + [anon_sym_let] = ACTIONS(467), + [anon_sym_var] = ACTIONS(467), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(469), + [anon_sym_indirect] = ACTIONS(471), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(753), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(395), + [sym__plus_then_ws] = ACTIONS(395), + [sym__minus_then_ws] = ACTIONS(395), + [sym_bang] = ACTIONS(481), + }, + [111] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1178), + [sym__unary_expression] = STATE(1178), + [sym_postfix_expression] = STATE(1178), + [sym_constructor_expression] = STATE(1178), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1178), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1178), + [sym_await_expression] = STATE(1178), + [sym_ternary_expression] = STATE(1178), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1178), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1178), + [sym_if_statement] = STATE(3596), + [sym_guard_statement] = STATE(3596), + [sym_switch_statement] = STATE(3596), + [sym_do_statement] = STATE(3596), + [sym_key_path_expression] = STATE(1178), + [sym_key_path_string_expression] = STATE(1178), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1178), + [sym__comparison_operator] = STATE(1178), + [sym__additive_operator] = STATE(1178), + [sym__multiplicative_operator] = STATE(1178), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_statements] = STATE(4219), + [sym__local_statement] = STATE(3596), + [sym__labeled_statement] = STATE(3596), + [sym_for_statement] = STATE(3596), + [sym_while_statement] = STATE(3596), + [sym_repeat_while_statement] = STATE(3596), + [sym_control_transfer_statement] = STATE(3596), + [sym__throw_statement] = STATE(3942), + [sym__optionally_valueful_control_keyword] = STATE(119), + [sym_assignment] = STATE(1178), + [sym__local_declaration] = STATE(3596), + [sym__local_property_declaration] = STATE(3929), + [sym__local_typealias_declaration] = STATE(3928), + [sym__local_function_declaration] = STATE(3926), + [sym__local_class_declaration] = STATE(3925), + [sym__modifierless_property_declaration] = STATE(3922), + [sym__modifierless_typealias_declaration] = STATE(3921), + [sym__modifierless_function_declaration] = STATE(3920), + [sym__modifierless_function_declaration_no_body] = STATE(7555), + [sym__modifierless_class_declaration] = STATE(3919), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(1178), + [sym__eq_eq] = STATE(1178), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [sym__async_modifier] = STATE(10416), + [sym_attribute] = STATE(4213), + [aux_sym__locally_permitted_modifiers] = STATE(4213), + [sym__locally_permitted_modifier] = STATE(4213), + [sym_inheritance_modifier] = STATE(4213), + [sym_ownership_modifier] = STATE(4213), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(393), + [sym_real_literal] = ACTIONS(395), + [sym_integer_literal] = ACTIONS(393), + [sym_hex_literal] = ACTIONS(395), + [sym_oct_literal] = ACTIONS(395), + [sym_bin_literal] = ACTIONS(395), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(393), + [anon_sym_POUNDfileID] = ACTIONS(395), + [anon_sym_POUNDfilePath] = ACTIONS(395), + [anon_sym_POUNDline] = ACTIONS(395), + [anon_sym_POUNDcolumn] = ACTIONS(395), + [anon_sym_POUNDfunction] = ACTIONS(395), + [anon_sym_POUNDdsohandle] = ACTIONS(395), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_if] = ACTIONS(429), + [anon_sym_guard] = ACTIONS(431), + [anon_sym_switch] = ACTIONS(433), + [anon_sym_do] = ACTIONS(437), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_statement_label] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_repeat] = ACTIONS(455), + [sym_throw_keyword] = ACTIONS(457), + [anon_sym_return] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(459), + [anon_sym_break] = ACTIONS(459), + [anon_sym_yield] = ACTIONS(459), + [anon_sym_typealias] = ACTIONS(461), + [anon_sym_struct] = ACTIONS(463), + [anon_sym_class] = ACTIONS(463), + [anon_sym_enum] = ACTIONS(465), + [anon_sym_let] = ACTIONS(467), + [anon_sym_var] = ACTIONS(467), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(469), + [anon_sym_indirect] = ACTIONS(471), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(753), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(395), + [sym__plus_then_ws] = ACTIONS(395), + [sym__minus_then_ws] = ACTIONS(395), + [sym_bang] = ACTIONS(481), + }, + [112] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1178), + [sym__unary_expression] = STATE(1178), + [sym_postfix_expression] = STATE(1178), + [sym_constructor_expression] = STATE(1178), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1178), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1178), + [sym_await_expression] = STATE(1178), + [sym_ternary_expression] = STATE(1178), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1178), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1178), + [sym_if_statement] = STATE(3596), + [sym_guard_statement] = STATE(3596), + [sym_switch_statement] = STATE(3596), + [sym_do_statement] = STATE(3596), + [sym_key_path_expression] = STATE(1178), + [sym_key_path_string_expression] = STATE(1178), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1178), + [sym__comparison_operator] = STATE(1178), + [sym__additive_operator] = STATE(1178), + [sym__multiplicative_operator] = STATE(1178), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_statements] = STATE(4223), + [sym__local_statement] = STATE(3596), + [sym__labeled_statement] = STATE(3596), + [sym_for_statement] = STATE(3596), + [sym_while_statement] = STATE(3596), + [sym_repeat_while_statement] = STATE(3596), + [sym_control_transfer_statement] = STATE(3596), + [sym__throw_statement] = STATE(3942), + [sym__optionally_valueful_control_keyword] = STATE(119), + [sym_assignment] = STATE(1178), + [sym__local_declaration] = STATE(3596), + [sym__local_property_declaration] = STATE(3929), + [sym__local_typealias_declaration] = STATE(3928), + [sym__local_function_declaration] = STATE(3926), + [sym__local_class_declaration] = STATE(3925), + [sym__modifierless_property_declaration] = STATE(3922), + [sym__modifierless_typealias_declaration] = STATE(3921), + [sym__modifierless_function_declaration] = STATE(3920), + [sym__modifierless_function_declaration_no_body] = STATE(7555), + [sym__modifierless_class_declaration] = STATE(3919), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(1178), + [sym__eq_eq] = STATE(1178), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [sym__async_modifier] = STATE(10416), + [sym_attribute] = STATE(4213), + [aux_sym__locally_permitted_modifiers] = STATE(4213), + [sym__locally_permitted_modifier] = STATE(4213), + [sym_inheritance_modifier] = STATE(4213), + [sym_ownership_modifier] = STATE(4213), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(393), + [sym_real_literal] = ACTIONS(395), + [sym_integer_literal] = ACTIONS(393), + [sym_hex_literal] = ACTIONS(395), + [sym_oct_literal] = ACTIONS(395), + [sym_bin_literal] = ACTIONS(395), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(393), + [anon_sym_POUNDfileID] = ACTIONS(395), + [anon_sym_POUNDfilePath] = ACTIONS(395), + [anon_sym_POUNDline] = ACTIONS(395), + [anon_sym_POUNDcolumn] = ACTIONS(395), + [anon_sym_POUNDfunction] = ACTIONS(395), + [anon_sym_POUNDdsohandle] = ACTIONS(395), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_if] = ACTIONS(429), + [anon_sym_guard] = ACTIONS(431), + [anon_sym_switch] = ACTIONS(433), + [anon_sym_do] = ACTIONS(437), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_statement_label] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_repeat] = ACTIONS(455), + [sym_throw_keyword] = ACTIONS(457), + [anon_sym_return] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(459), + [anon_sym_break] = ACTIONS(459), + [anon_sym_yield] = ACTIONS(459), + [anon_sym_typealias] = ACTIONS(461), + [anon_sym_struct] = ACTIONS(463), + [anon_sym_class] = ACTIONS(463), + [anon_sym_enum] = ACTIONS(465), + [anon_sym_let] = ACTIONS(467), + [anon_sym_var] = ACTIONS(467), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(469), + [anon_sym_indirect] = ACTIONS(471), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(753), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(395), + [sym__plus_then_ws] = ACTIONS(395), + [sym__minus_then_ws] = ACTIONS(395), + [sym_bang] = ACTIONS(481), + }, + [113] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1178), + [sym__unary_expression] = STATE(1178), + [sym_postfix_expression] = STATE(1178), + [sym_constructor_expression] = STATE(1178), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1178), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1178), + [sym_await_expression] = STATE(1178), + [sym_ternary_expression] = STATE(1178), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1178), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1178), + [sym_if_statement] = STATE(3596), + [sym_guard_statement] = STATE(3596), + [sym_switch_statement] = STATE(3596), + [sym_do_statement] = STATE(3596), + [sym_key_path_expression] = STATE(1178), + [sym_key_path_string_expression] = STATE(1178), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1178), + [sym__comparison_operator] = STATE(1178), + [sym__additive_operator] = STATE(1178), + [sym__multiplicative_operator] = STATE(1178), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_statements] = STATE(4225), + [sym__local_statement] = STATE(3596), + [sym__labeled_statement] = STATE(3596), + [sym_for_statement] = STATE(3596), + [sym_while_statement] = STATE(3596), + [sym_repeat_while_statement] = STATE(3596), + [sym_control_transfer_statement] = STATE(3596), + [sym__throw_statement] = STATE(3942), + [sym__optionally_valueful_control_keyword] = STATE(119), + [sym_assignment] = STATE(1178), + [sym__local_declaration] = STATE(3596), + [sym__local_property_declaration] = STATE(3929), + [sym__local_typealias_declaration] = STATE(3928), + [sym__local_function_declaration] = STATE(3926), + [sym__local_class_declaration] = STATE(3925), + [sym__modifierless_property_declaration] = STATE(3922), + [sym__modifierless_typealias_declaration] = STATE(3921), + [sym__modifierless_function_declaration] = STATE(3920), + [sym__modifierless_function_declaration_no_body] = STATE(7555), + [sym__modifierless_class_declaration] = STATE(3919), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(1178), + [sym__eq_eq] = STATE(1178), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [sym__async_modifier] = STATE(10416), + [sym_attribute] = STATE(4213), + [aux_sym__locally_permitted_modifiers] = STATE(4213), + [sym__locally_permitted_modifier] = STATE(4213), + [sym_inheritance_modifier] = STATE(4213), + [sym_ownership_modifier] = STATE(4213), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(393), + [sym_real_literal] = ACTIONS(395), + [sym_integer_literal] = ACTIONS(393), + [sym_hex_literal] = ACTIONS(395), + [sym_oct_literal] = ACTIONS(395), + [sym_bin_literal] = ACTIONS(395), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(393), + [anon_sym_POUNDfileID] = ACTIONS(395), + [anon_sym_POUNDfilePath] = ACTIONS(395), + [anon_sym_POUNDline] = ACTIONS(395), + [anon_sym_POUNDcolumn] = ACTIONS(395), + [anon_sym_POUNDfunction] = ACTIONS(395), + [anon_sym_POUNDdsohandle] = ACTIONS(395), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_if] = ACTIONS(429), + [anon_sym_guard] = ACTIONS(431), + [anon_sym_switch] = ACTIONS(433), + [anon_sym_do] = ACTIONS(437), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_statement_label] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_repeat] = ACTIONS(455), + [sym_throw_keyword] = ACTIONS(457), + [anon_sym_return] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(459), + [anon_sym_break] = ACTIONS(459), + [anon_sym_yield] = ACTIONS(459), + [anon_sym_typealias] = ACTIONS(461), + [anon_sym_struct] = ACTIONS(463), + [anon_sym_class] = ACTIONS(463), + [anon_sym_enum] = ACTIONS(465), + [anon_sym_let] = ACTIONS(467), + [anon_sym_var] = ACTIONS(467), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(469), + [anon_sym_indirect] = ACTIONS(471), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(753), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(395), + [sym__plus_then_ws] = ACTIONS(395), + [sym__minus_then_ws] = ACTIONS(395), + [sym_bang] = ACTIONS(481), + }, + [114] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(8614), + [sym_guard_statement] = STATE(8614), + [sym_switch_statement] = STATE(8614), + [sym_do_statement] = STATE(8614), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym__local_statement] = STATE(8614), + [sym__labeled_statement] = STATE(8614), + [sym_for_statement] = STATE(8614), + [sym_while_statement] = STATE(8614), + [sym_repeat_while_statement] = STATE(8614), + [sym_control_transfer_statement] = STATE(8614), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(8614), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(423), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [115] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1178), + [sym__unary_expression] = STATE(1178), + [sym_postfix_expression] = STATE(1178), + [sym_constructor_expression] = STATE(1178), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1178), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1178), + [sym_await_expression] = STATE(1178), + [sym_ternary_expression] = STATE(1178), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1178), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1178), + [sym_if_statement] = STATE(3596), + [sym_guard_statement] = STATE(3596), + [sym_switch_statement] = STATE(3596), + [sym_do_statement] = STATE(3596), + [sym_key_path_expression] = STATE(1178), + [sym_key_path_string_expression] = STATE(1178), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1178), + [sym__comparison_operator] = STATE(1178), + [sym__additive_operator] = STATE(1178), + [sym__multiplicative_operator] = STATE(1178), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_statements] = STATE(4226), + [sym__local_statement] = STATE(3596), + [sym__labeled_statement] = STATE(3596), + [sym_for_statement] = STATE(3596), + [sym_while_statement] = STATE(3596), + [sym_repeat_while_statement] = STATE(3596), + [sym_control_transfer_statement] = STATE(3596), + [sym__throw_statement] = STATE(3942), + [sym__optionally_valueful_control_keyword] = STATE(119), + [sym_assignment] = STATE(1178), + [sym__local_declaration] = STATE(3596), + [sym__local_property_declaration] = STATE(3929), + [sym__local_typealias_declaration] = STATE(3928), + [sym__local_function_declaration] = STATE(3926), + [sym__local_class_declaration] = STATE(3925), + [sym__modifierless_property_declaration] = STATE(3922), + [sym__modifierless_typealias_declaration] = STATE(3921), + [sym__modifierless_function_declaration] = STATE(3920), + [sym__modifierless_function_declaration_no_body] = STATE(7555), + [sym__modifierless_class_declaration] = STATE(3919), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(1178), + [sym__eq_eq] = STATE(1178), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [sym__async_modifier] = STATE(10416), + [sym_attribute] = STATE(4213), + [aux_sym__locally_permitted_modifiers] = STATE(4213), + [sym__locally_permitted_modifier] = STATE(4213), + [sym_inheritance_modifier] = STATE(4213), + [sym_ownership_modifier] = STATE(4213), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(393), + [sym_real_literal] = ACTIONS(395), + [sym_integer_literal] = ACTIONS(393), + [sym_hex_literal] = ACTIONS(395), + [sym_oct_literal] = ACTIONS(395), + [sym_bin_literal] = ACTIONS(395), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(393), + [anon_sym_POUNDfileID] = ACTIONS(395), + [anon_sym_POUNDfilePath] = ACTIONS(395), + [anon_sym_POUNDline] = ACTIONS(395), + [anon_sym_POUNDcolumn] = ACTIONS(395), + [anon_sym_POUNDfunction] = ACTIONS(395), + [anon_sym_POUNDdsohandle] = ACTIONS(395), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_if] = ACTIONS(429), + [anon_sym_guard] = ACTIONS(431), + [anon_sym_switch] = ACTIONS(433), + [anon_sym_do] = ACTIONS(437), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_statement_label] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_repeat] = ACTIONS(455), + [sym_throw_keyword] = ACTIONS(457), + [anon_sym_return] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(459), + [anon_sym_break] = ACTIONS(459), + [anon_sym_yield] = ACTIONS(459), + [anon_sym_typealias] = ACTIONS(461), + [anon_sym_struct] = ACTIONS(463), + [anon_sym_class] = ACTIONS(463), + [anon_sym_enum] = ACTIONS(465), + [anon_sym_let] = ACTIONS(467), + [anon_sym_var] = ACTIONS(467), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(469), + [anon_sym_indirect] = ACTIONS(471), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(753), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(395), + [sym__plus_then_ws] = ACTIONS(395), + [sym__minus_then_ws] = ACTIONS(395), + [sym_bang] = ACTIONS(481), + }, + [116] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1178), + [sym__unary_expression] = STATE(1178), + [sym_postfix_expression] = STATE(1178), + [sym_constructor_expression] = STATE(1178), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1178), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1178), + [sym_await_expression] = STATE(1178), + [sym_ternary_expression] = STATE(1178), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1178), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1178), + [sym_if_statement] = STATE(3596), + [sym_guard_statement] = STATE(3596), + [sym_switch_statement] = STATE(3596), + [sym_do_statement] = STATE(3596), + [sym_key_path_expression] = STATE(1178), + [sym_key_path_string_expression] = STATE(1178), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1178), + [sym__comparison_operator] = STATE(1178), + [sym__additive_operator] = STATE(1178), + [sym__multiplicative_operator] = STATE(1178), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_statements] = STATE(4210), + [sym__local_statement] = STATE(3596), + [sym__labeled_statement] = STATE(3596), + [sym_for_statement] = STATE(3596), + [sym_while_statement] = STATE(3596), + [sym_repeat_while_statement] = STATE(3596), + [sym_control_transfer_statement] = STATE(3596), + [sym__throw_statement] = STATE(3942), + [sym__optionally_valueful_control_keyword] = STATE(119), + [sym_assignment] = STATE(1178), + [sym__local_declaration] = STATE(3596), + [sym__local_property_declaration] = STATE(3929), + [sym__local_typealias_declaration] = STATE(3928), + [sym__local_function_declaration] = STATE(3926), + [sym__local_class_declaration] = STATE(3925), + [sym__modifierless_property_declaration] = STATE(3922), + [sym__modifierless_typealias_declaration] = STATE(3921), + [sym__modifierless_function_declaration] = STATE(3920), + [sym__modifierless_function_declaration_no_body] = STATE(7555), + [sym__modifierless_class_declaration] = STATE(3919), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(1178), + [sym__eq_eq] = STATE(1178), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [sym__async_modifier] = STATE(10416), + [sym_attribute] = STATE(4213), + [aux_sym__locally_permitted_modifiers] = STATE(4213), + [sym__locally_permitted_modifier] = STATE(4213), + [sym_inheritance_modifier] = STATE(4213), + [sym_ownership_modifier] = STATE(4213), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(393), + [sym_real_literal] = ACTIONS(395), + [sym_integer_literal] = ACTIONS(393), + [sym_hex_literal] = ACTIONS(395), + [sym_oct_literal] = ACTIONS(395), + [sym_bin_literal] = ACTIONS(395), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(393), + [anon_sym_POUNDfileID] = ACTIONS(395), + [anon_sym_POUNDfilePath] = ACTIONS(395), + [anon_sym_POUNDline] = ACTIONS(395), + [anon_sym_POUNDcolumn] = ACTIONS(395), + [anon_sym_POUNDfunction] = ACTIONS(395), + [anon_sym_POUNDdsohandle] = ACTIONS(395), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_if] = ACTIONS(429), + [anon_sym_guard] = ACTIONS(431), + [anon_sym_switch] = ACTIONS(433), + [anon_sym_do] = ACTIONS(437), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_statement_label] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_repeat] = ACTIONS(455), + [sym_throw_keyword] = ACTIONS(457), + [anon_sym_return] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(459), + [anon_sym_break] = ACTIONS(459), + [anon_sym_yield] = ACTIONS(459), + [anon_sym_typealias] = ACTIONS(461), + [anon_sym_struct] = ACTIONS(463), + [anon_sym_class] = ACTIONS(463), + [anon_sym_enum] = ACTIONS(465), + [anon_sym_let] = ACTIONS(467), + [anon_sym_var] = ACTIONS(467), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(469), + [anon_sym_indirect] = ACTIONS(471), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(753), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(395), + [sym__plus_then_ws] = ACTIONS(395), + [sym__minus_then_ws] = ACTIONS(395), + [sym_bang] = ACTIONS(481), + }, + [117] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2214), + [sym_boolean_literal] = STATE(2214), + [sym__string_literal] = STATE(2214), + [sym_line_string_literal] = STATE(2214), + [sym_multi_line_string_literal] = STATE(2214), + [sym_raw_string_literal] = STATE(2214), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2214), + [sym__unary_expression] = STATE(2214), + [sym_postfix_expression] = STATE(2214), + [sym_constructor_expression] = STATE(2214), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2214), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2214), + [sym_prefix_expression] = STATE(2214), + [sym_as_expression] = STATE(2214), + [sym_selector_expression] = STATE(2214), + [sym__binary_expression] = STATE(2214), + [sym_multiplicative_expression] = STATE(2214), + [sym_additive_expression] = STATE(2214), + [sym_range_expression] = STATE(2214), + [sym_infix_expression] = STATE(2214), + [sym_nil_coalescing_expression] = STATE(2214), + [sym_check_expression] = STATE(2214), + [sym_comparison_expression] = STATE(2214), + [sym_equality_expression] = STATE(2214), + [sym_conjunction_expression] = STATE(2214), + [sym_disjunction_expression] = STATE(2214), + [sym_bitwise_operation] = STATE(2214), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2214), + [sym_await_expression] = STATE(2214), + [sym_ternary_expression] = STATE(2214), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2214), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2214), + [sym_dictionary_literal] = STATE(2214), + [sym__special_literal] = STATE(2214), + [sym__playground_literal] = STATE(2214), + [sym_lambda_literal] = STATE(2214), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2214), + [sym_if_statement] = STATE(8614), + [sym_guard_statement] = STATE(8614), + [sym_switch_statement] = STATE(8614), + [sym_do_statement] = STATE(8614), + [sym_key_path_expression] = STATE(2214), + [sym_key_path_string_expression] = STATE(2214), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2214), + [sym__comparison_operator] = STATE(2214), + [sym__additive_operator] = STATE(2214), + [sym__multiplicative_operator] = STATE(2214), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym__local_statement] = STATE(8614), + [sym__labeled_statement] = STATE(8614), + [sym_for_statement] = STATE(8614), + [sym_while_statement] = STATE(8614), + [sym_repeat_while_statement] = STATE(8614), + [sym_control_transfer_statement] = STATE(8614), + [sym__throw_statement] = STATE(8219), + [sym__optionally_valueful_control_keyword] = STATE(281), + [sym_assignment] = STATE(2214), + [sym__local_declaration] = STATE(8614), + [sym__local_property_declaration] = STATE(8223), + [sym__local_typealias_declaration] = STATE(8224), + [sym__local_function_declaration] = STATE(8233), + [sym__local_class_declaration] = STATE(8234), + [sym__modifierless_property_declaration] = STATE(8237), + [sym__modifierless_typealias_declaration] = STATE(8245), + [sym__modifierless_function_declaration] = STATE(8246), + [sym__modifierless_function_declaration_no_body] = STATE(7888), + [sym__modifierless_class_declaration] = STATE(8261), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(2214), + [sym__eq_eq] = STATE(2214), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10423), + [sym_attribute] = STATE(4224), + [aux_sym__locally_permitted_modifiers] = STATE(4224), + [sym__locally_permitted_modifier] = STATE(4224), + [sym_inheritance_modifier] = STATE(4224), + [sym_ownership_modifier] = STATE(4224), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(143), + [sym_real_literal] = ACTIONS(145), + [sym_integer_literal] = ACTIONS(143), + [sym_hex_literal] = ACTIONS(145), + [sym_oct_literal] = ACTIONS(145), + [sym_bin_literal] = ACTIONS(145), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(143), + [anon_sym_POUNDfileID] = ACTIONS(145), + [anon_sym_POUNDfilePath] = ACTIONS(145), + [anon_sym_POUNDline] = ACTIONS(145), + [anon_sym_POUNDcolumn] = ACTIONS(145), + [anon_sym_POUNDfunction] = ACTIONS(145), + [anon_sym_POUNDdsohandle] = ACTIONS(145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_guard] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_do] = ACTIONS(55), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(143), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_GT_EQ] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_PERCENT] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_statement_label] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_while] = ACTIONS(71), + [anon_sym_repeat] = ACTIONS(73), + [sym_throw_keyword] = ACTIONS(75), + [anon_sym_return] = ACTIONS(159), + [anon_sym_continue] = ACTIONS(159), + [anon_sym_break] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(159), + [anon_sym_typealias] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(81), + [anon_sym_class] = ACTIONS(81), + [anon_sym_enum] = ACTIONS(85), + [anon_sym_let] = ACTIONS(89), + [anon_sym_var] = ACTIONS(89), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(93), + [anon_sym_indirect] = ACTIONS(95), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(497), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(145), + [sym__plus_then_ws] = ACTIONS(145), + [sym__minus_then_ws] = ACTIONS(145), + [sym_bang] = ACTIONS(137), + }, + [118] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1178), + [sym__unary_expression] = STATE(1178), + [sym_postfix_expression] = STATE(1178), + [sym_constructor_expression] = STATE(1178), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1178), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1178), + [sym_await_expression] = STATE(1178), + [sym_ternary_expression] = STATE(1178), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1178), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1178), + [sym_if_statement] = STATE(3692), + [sym_guard_statement] = STATE(3692), + [sym_switch_statement] = STATE(3692), + [sym_do_statement] = STATE(3692), + [sym_key_path_expression] = STATE(1178), + [sym_key_path_string_expression] = STATE(1178), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1178), + [sym__comparison_operator] = STATE(1178), + [sym__additive_operator] = STATE(1178), + [sym__multiplicative_operator] = STATE(1178), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym__local_statement] = STATE(3692), + [sym__labeled_statement] = STATE(3692), + [sym_for_statement] = STATE(3692), + [sym_while_statement] = STATE(3692), + [sym_repeat_while_statement] = STATE(3692), + [sym_control_transfer_statement] = STATE(3692), + [sym__throw_statement] = STATE(3942), + [sym__optionally_valueful_control_keyword] = STATE(119), + [sym_assignment] = STATE(1178), + [sym__local_declaration] = STATE(3692), + [sym__local_property_declaration] = STATE(3929), + [sym__local_typealias_declaration] = STATE(3928), + [sym__local_function_declaration] = STATE(3926), + [sym__local_class_declaration] = STATE(3925), + [sym__modifierless_property_declaration] = STATE(3922), + [sym__modifierless_typealias_declaration] = STATE(3921), + [sym__modifierless_function_declaration] = STATE(3920), + [sym__modifierless_function_declaration_no_body] = STATE(7555), + [sym__modifierless_class_declaration] = STATE(3919), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__referenceable_operator] = STATE(1178), + [sym__eq_eq] = STATE(1178), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [sym__async_modifier] = STATE(10416), + [sym_attribute] = STATE(4213), + [aux_sym__locally_permitted_modifiers] = STATE(4213), + [sym__locally_permitted_modifier] = STATE(4213), + [sym_inheritance_modifier] = STATE(4213), + [sym_ownership_modifier] = STATE(4213), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(393), + [sym_real_literal] = ACTIONS(395), + [sym_integer_literal] = ACTIONS(393), + [sym_hex_literal] = ACTIONS(395), + [sym_oct_literal] = ACTIONS(395), + [sym_bin_literal] = ACTIONS(395), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(393), + [anon_sym_POUNDfileID] = ACTIONS(395), + [anon_sym_POUNDfilePath] = ACTIONS(395), + [anon_sym_POUNDline] = ACTIONS(395), + [anon_sym_POUNDcolumn] = ACTIONS(395), + [anon_sym_POUNDfunction] = ACTIONS(395), + [anon_sym_POUNDdsohandle] = ACTIONS(395), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_if] = ACTIONS(429), + [anon_sym_guard] = ACTIONS(431), + [anon_sym_switch] = ACTIONS(433), + [anon_sym_do] = ACTIONS(437), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_statement_label] = ACTIONS(449), + [anon_sym_for] = ACTIONS(451), + [anon_sym_while] = ACTIONS(453), + [anon_sym_repeat] = ACTIONS(455), + [sym_throw_keyword] = ACTIONS(457), + [anon_sym_return] = ACTIONS(459), + [anon_sym_continue] = ACTIONS(459), + [anon_sym_break] = ACTIONS(459), + [anon_sym_yield] = ACTIONS(459), + [anon_sym_typealias] = ACTIONS(461), + [anon_sym_struct] = ACTIONS(463), + [anon_sym_class] = ACTIONS(463), + [anon_sym_enum] = ACTIONS(465), + [anon_sym_let] = ACTIONS(467), + [anon_sym_var] = ACTIONS(467), + [anon_sym_func] = ACTIONS(91), + [anon_sym_extension] = ACTIONS(469), + [anon_sym_indirect] = ACTIONS(471), + [anon_sym_init] = ACTIONS(97), + [anon_sym_AT] = ACTIONS(495), + [sym_property_behavior_modifier] = ACTIONS(753), + [anon_sym_final] = ACTIONS(499), + [anon_sym_weak] = ACTIONS(501), + [anon_sym_unowned] = ACTIONS(501), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(503), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(503), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(395), + [sym__plus_then_ws] = ACTIONS(395), + [sym__minus_then_ws] = ACTIONS(395), + [sym_bang] = ACTIONS(481), + }, + [119] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1176), + [sym__unary_expression] = STATE(1176), + [sym_postfix_expression] = STATE(1176), + [sym_constructor_expression] = STATE(1176), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1176), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1176), + [sym_await_expression] = STATE(1176), + [sym_ternary_expression] = STATE(1176), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1176), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1176), + [sym_key_path_expression] = STATE(1176), + [sym_key_path_string_expression] = STATE(1176), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1176), + [sym__comparison_operator] = STATE(1176), + [sym__additive_operator] = STATE(1176), + [sym__multiplicative_operator] = STATE(1176), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1176), + [sym__referenceable_operator] = STATE(1176), + [sym__eq_eq] = STATE(1176), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(755), + [sym_real_literal] = ACTIONS(757), + [sym_integer_literal] = ACTIONS(755), + [sym_hex_literal] = ACTIONS(757), + [sym_oct_literal] = ACTIONS(757), + [sym_bin_literal] = ACTIONS(757), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(755), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(755), + [anon_sym_POUNDfileID] = ACTIONS(757), + [anon_sym_POUNDfilePath] = ACTIONS(757), + [anon_sym_POUNDline] = ACTIONS(757), + [anon_sym_POUNDcolumn] = ACTIONS(757), + [anon_sym_POUNDfunction] = ACTIONS(757), + [anon_sym_POUNDdsohandle] = ACTIONS(757), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(761), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_case] = ACTIONS(763), + [anon_sym_fallthrough] = ACTIONS(763), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ_EQ] = ACTIONS(755), + [anon_sym_EQ_EQ_EQ] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_SLASH] = ACTIONS(755), + [anon_sym_PERCENT] = ACTIONS(755), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_class] = ACTIONS(763), + [anon_sym_prefix] = ACTIONS(763), + [anon_sym_infix] = ACTIONS(763), + [anon_sym_postfix] = ACTIONS(763), + [anon_sym_AT] = ACTIONS(763), + [sym_property_behavior_modifier] = ACTIONS(763), + [anon_sym_override] = ACTIONS(763), + [anon_sym_convenience] = ACTIONS(763), + [anon_sym_required] = ACTIONS(763), + [anon_sym_public] = ACTIONS(763), + [anon_sym_private] = ACTIONS(763), + [anon_sym_internal] = ACTIONS(763), + [anon_sym_fileprivate] = ACTIONS(763), + [anon_sym_open] = ACTIONS(763), + [anon_sym_mutating] = ACTIONS(763), + [anon_sym_nonmutating] = ACTIONS(763), + [anon_sym_static] = ACTIONS(763), + [anon_sym_dynamic] = ACTIONS(763), + [anon_sym_optional] = ACTIONS(763), + [anon_sym_final] = ACTIONS(763), + [anon_sym_inout] = ACTIONS(763), + [anon_sym_ATescaping] = ACTIONS(761), + [anon_sym_ATautoclosure] = ACTIONS(761), + [anon_sym_weak] = ACTIONS(763), + [anon_sym_unowned] = ACTIONS(763), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(761), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(761), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__semi] = ACTIONS(761), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(757), + [sym__plus_then_ws] = ACTIONS(757), + [sym__minus_then_ws] = ACTIONS(757), + [sym_bang] = ACTIONS(481), + [sym_default_keyword] = ACTIONS(761), + }, + [120] = { + [sym_simple_identifier] = STATE(2596), + [sym__basic_literal] = STATE(1913), + [sym_boolean_literal] = STATE(1913), + [sym__string_literal] = STATE(1913), + [sym_line_string_literal] = STATE(1913), + [sym_multi_line_string_literal] = STATE(1913), + [sym_raw_string_literal] = STATE(1913), + [sym__type] = STATE(8415), + [sym__unannotated_type] = STATE(5232), + [sym_user_type] = STATE(4845), + [sym__simple_user_type] = STATE(4955), + [sym_tuple_type] = STATE(4735), + [sym_tuple_type_item] = STATE(7688), + [sym__tuple_type_item_identifier] = STATE(4231), + [sym_function_type] = STATE(5232), + [sym_array_type] = STATE(4845), + [sym_dictionary_type] = STATE(4845), + [sym_optional_type] = STATE(5232), + [sym_metatype] = STATE(5232), + [sym_opaque_type] = STATE(5232), + [sym_protocol_composition_type] = STATE(5232), + [sym__expression] = STATE(1913), + [sym__unary_expression] = STATE(1913), + [sym_postfix_expression] = STATE(1913), + [sym_constructor_expression] = STATE(1913), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1913), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1913), + [sym_prefix_expression] = STATE(1913), + [sym_as_expression] = STATE(1913), + [sym_selector_expression] = STATE(1913), + [sym__binary_expression] = STATE(1913), + [sym_multiplicative_expression] = STATE(1913), + [sym_additive_expression] = STATE(1913), + [sym_range_expression] = STATE(1913), + [sym_infix_expression] = STATE(1913), + [sym_nil_coalescing_expression] = STATE(1913), + [sym_check_expression] = STATE(1913), + [sym_comparison_expression] = STATE(1913), + [sym_equality_expression] = STATE(1913), + [sym_conjunction_expression] = STATE(1913), + [sym_disjunction_expression] = STATE(1913), + [sym_bitwise_operation] = STATE(1913), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1913), + [sym_await_expression] = STATE(1913), + [sym_ternary_expression] = STATE(1913), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1913), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1913), + [sym_dictionary_literal] = STATE(1913), + [sym__special_literal] = STATE(1913), + [sym__playground_literal] = STATE(1913), + [sym_lambda_literal] = STATE(1913), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1913), + [sym_key_path_expression] = STATE(1913), + [sym_key_path_string_expression] = STATE(1913), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1913), + [sym__comparison_operator] = STATE(1913), + [sym__additive_operator] = STATE(1913), + [sym__multiplicative_operator] = STATE(1913), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1913), + [sym__referenceable_operator] = STATE(1913), + [sym__eq_eq] = STATE(1913), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(5230), + [sym_parameter_modifiers] = STATE(4551), + [sym_type_modifiers] = STATE(4738), + [sym_parameter_modifier] = STATE(4910), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_capture_list_repeat1] = STATE(5230), + [aux_sym_parameter_modifiers_repeat1] = STATE(4910), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(769), + [sym_real_literal] = ACTIONS(771), + [sym_integer_literal] = ACTIONS(769), + [sym_hex_literal] = ACTIONS(771), + [sym_oct_literal] = ACTIONS(771), + [sym_bin_literal] = ACTIONS(771), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_some] = ACTIONS(787), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(769), + [anon_sym_POUNDfileID] = ACTIONS(771), + [anon_sym_POUNDfilePath] = ACTIONS(771), + [anon_sym_POUNDline] = ACTIONS(771), + [anon_sym_POUNDcolumn] = ACTIONS(771), + [anon_sym_POUNDfunction] = ACTIONS(771), + [anon_sym_POUNDdsohandle] = ACTIONS(771), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ_EQ] = ACTIONS(769), + [anon_sym_EQ_EQ_EQ] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_PERCENT] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(817), + [sym_wildcard_pattern] = ACTIONS(819), + [anon_sym_inout] = ACTIONS(821), + [anon_sym_ATescaping] = ACTIONS(823), + [anon_sym_ATautoclosure] = ACTIONS(823), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(771), + [sym__plus_then_ws] = ACTIONS(771), + [sym__minus_then_ws] = ACTIONS(771), + [sym_bang] = ACTIONS(833), + }, + [121] = { + [sym_simple_identifier] = STATE(2486), + [sym__basic_literal] = STATE(1513), + [sym_boolean_literal] = STATE(1513), + [sym__string_literal] = STATE(1513), + [sym_line_string_literal] = STATE(1513), + [sym_multi_line_string_literal] = STATE(1513), + [sym_raw_string_literal] = STATE(1513), + [sym__type] = STATE(8216), + [sym__unannotated_type] = STATE(5232), + [sym_user_type] = STATE(4845), + [sym__simple_user_type] = STATE(4955), + [sym_tuple_type] = STATE(4735), + [sym_function_type] = STATE(5232), + [sym_array_type] = STATE(4845), + [sym_dictionary_type] = STATE(4845), + [sym_optional_type] = STATE(5232), + [sym_metatype] = STATE(5232), + [sym_opaque_type] = STATE(5232), + [sym_protocol_composition_type] = STATE(5232), + [sym__expression] = STATE(1513), + [sym__unary_expression] = STATE(1513), + [sym_postfix_expression] = STATE(1513), + [sym_constructor_expression] = STATE(1513), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1513), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1513), + [sym_prefix_expression] = STATE(1513), + [sym_as_expression] = STATE(1513), + [sym_selector_expression] = STATE(1513), + [sym__binary_expression] = STATE(1513), + [sym_multiplicative_expression] = STATE(1513), + [sym_additive_expression] = STATE(1513), + [sym_range_expression] = STATE(1513), + [sym_infix_expression] = STATE(1513), + [sym_nil_coalescing_expression] = STATE(1513), + [sym_check_expression] = STATE(1513), + [sym_comparison_expression] = STATE(1513), + [sym_equality_expression] = STATE(1513), + [sym_conjunction_expression] = STATE(1513), + [sym_disjunction_expression] = STATE(1513), + [sym_bitwise_operation] = STATE(1513), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1513), + [sym_await_expression] = STATE(1513), + [sym_ternary_expression] = STATE(1513), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1513), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1513), + [sym_dictionary_literal] = STATE(1513), + [sym__dictionary_literal_item] = STATE(7919), + [sym__special_literal] = STATE(1513), + [sym__playground_literal] = STATE(1513), + [sym_lambda_literal] = STATE(1513), + [sym_capture_list_item] = STATE(7646), + [sym_self_expression] = STATE(2682), + [sym_super_expression] = STATE(1513), + [sym_key_path_expression] = STATE(1513), + [sym_key_path_string_expression] = STATE(1513), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1513), + [sym__comparison_operator] = STATE(1513), + [sym__additive_operator] = STATE(1513), + [sym__multiplicative_operator] = STATE(1513), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1513), + [sym__referenceable_operator] = STATE(1513), + [sym__eq_eq] = STATE(1513), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(5230), + [sym_type_modifiers] = STATE(4738), + [sym_ownership_modifier] = STATE(6926), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_capture_list_repeat1] = STATE(5230), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(835), + [aux_sym_simple_identifier_token2] = ACTIONS(837), + [aux_sym_simple_identifier_token3] = ACTIONS(837), + [aux_sym_simple_identifier_token4] = ACTIONS(837), + [anon_sym_nil] = ACTIONS(839), + [sym_real_literal] = ACTIONS(841), + [sym_integer_literal] = ACTIONS(839), + [sym_hex_literal] = ACTIONS(841), + [sym_oct_literal] = ACTIONS(841), + [sym_bin_literal] = ACTIONS(841), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_COMMA] = ACTIONS(843), + [anon_sym_COLON] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(847), + [anon_sym_some] = ACTIONS(787), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(839), + [anon_sym_GT] = ACTIONS(839), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(839), + [anon_sym_POUNDfileID] = ACTIONS(841), + [anon_sym_POUNDfilePath] = ACTIONS(841), + [anon_sym_POUNDline] = ACTIONS(841), + [anon_sym_POUNDcolumn] = ACTIONS(841), + [anon_sym_POUNDfunction] = ACTIONS(841), + [anon_sym_POUNDdsohandle] = ACTIONS(841), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(839), + [anon_sym_BANG_EQ_EQ] = ACTIONS(839), + [anon_sym_EQ_EQ_EQ] = ACTIONS(839), + [anon_sym_LT_EQ] = ACTIONS(839), + [anon_sym_GT_EQ] = ACTIONS(839), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(839), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_PERCENT] = ACTIONS(839), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(849), + [anon_sym_weak] = ACTIONS(851), + [anon_sym_unowned] = ACTIONS(851), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(853), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(853), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(841), + [sym__plus_then_ws] = ACTIONS(841), + [sym__minus_then_ws] = ACTIONS(841), + [sym_bang] = ACTIONS(833), + }, + [122] = { + [sym_simple_identifier] = STATE(2595), + [sym__basic_literal] = STATE(1970), + [sym_boolean_literal] = STATE(1970), + [sym__string_literal] = STATE(1970), + [sym_line_string_literal] = STATE(1970), + [sym_multi_line_string_literal] = STATE(1970), + [sym_raw_string_literal] = STATE(1970), + [sym__possibly_implicitly_unwrapped_type] = STATE(8768), + [sym__type] = STATE(6527), + [sym__unannotated_type] = STATE(5232), + [sym_user_type] = STATE(4845), + [sym__simple_user_type] = STATE(4955), + [sym_tuple_type] = STATE(4735), + [sym_function_type] = STATE(5232), + [sym_array_type] = STATE(4845), + [sym_dictionary_type] = STATE(4845), + [sym_optional_type] = STATE(5232), + [sym_metatype] = STATE(5232), + [sym_opaque_type] = STATE(5232), + [sym_protocol_composition_type] = STATE(5232), + [sym__expression] = STATE(1970), + [sym__unary_expression] = STATE(1970), + [sym_postfix_expression] = STATE(1970), + [sym_constructor_expression] = STATE(1970), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1970), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1970), + [sym_prefix_expression] = STATE(1970), + [sym_as_expression] = STATE(1970), + [sym_selector_expression] = STATE(1970), + [sym__binary_expression] = STATE(1970), + [sym_multiplicative_expression] = STATE(1970), + [sym_additive_expression] = STATE(1970), + [sym_range_expression] = STATE(1970), + [sym_infix_expression] = STATE(1970), + [sym_nil_coalescing_expression] = STATE(1970), + [sym_check_expression] = STATE(1970), + [sym_comparison_expression] = STATE(1970), + [sym_equality_expression] = STATE(1970), + [sym_conjunction_expression] = STATE(1970), + [sym_disjunction_expression] = STATE(1970), + [sym_bitwise_operation] = STATE(1970), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1970), + [sym_await_expression] = STATE(1970), + [sym_ternary_expression] = STATE(1970), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1970), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1970), + [sym_dictionary_literal] = STATE(1970), + [sym__special_literal] = STATE(1970), + [sym__playground_literal] = STATE(1970), + [sym_lambda_literal] = STATE(1970), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1970), + [sym_key_path_expression] = STATE(1970), + [sym_key_path_string_expression] = STATE(1970), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1970), + [sym__comparison_operator] = STATE(1970), + [sym__additive_operator] = STATE(1970), + [sym__multiplicative_operator] = STATE(1970), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1970), + [sym__referenceable_operator] = STATE(1970), + [sym__eq_eq] = STATE(1970), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(5230), + [sym_parameter_modifiers] = STATE(4269), + [sym_type_modifiers] = STATE(4738), + [sym_parameter_modifier] = STATE(4910), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_capture_list_repeat1] = STATE(5230), + [aux_sym_parameter_modifiers_repeat1] = STATE(4910), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(855), + [sym_real_literal] = ACTIONS(857), + [sym_integer_literal] = ACTIONS(855), + [sym_hex_literal] = ACTIONS(857), + [sym_oct_literal] = ACTIONS(857), + [sym_bin_literal] = ACTIONS(857), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_some] = ACTIONS(787), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(855), + [anon_sym_POUNDfileID] = ACTIONS(857), + [anon_sym_POUNDfilePath] = ACTIONS(857), + [anon_sym_POUNDline] = ACTIONS(857), + [anon_sym_POUNDcolumn] = ACTIONS(857), + [anon_sym_POUNDfunction] = ACTIONS(857), + [anon_sym_POUNDdsohandle] = ACTIONS(857), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ_EQ] = ACTIONS(855), + [anon_sym_EQ_EQ_EQ] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(817), + [anon_sym_inout] = ACTIONS(821), + [anon_sym_ATescaping] = ACTIONS(823), + [anon_sym_ATautoclosure] = ACTIONS(823), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(857), + [sym__plus_then_ws] = ACTIONS(857), + [sym__minus_then_ws] = ACTIONS(857), + [sym_bang] = ACTIONS(833), + }, + [123] = { + [sym_simple_identifier] = STATE(2608), + [sym__basic_literal] = STATE(1513), + [sym_boolean_literal] = STATE(1513), + [sym__string_literal] = STATE(1513), + [sym_line_string_literal] = STATE(1513), + [sym_multi_line_string_literal] = STATE(1513), + [sym_raw_string_literal] = STATE(1513), + [sym__type] = STATE(8216), + [sym__unannotated_type] = STATE(5232), + [sym_user_type] = STATE(4845), + [sym__simple_user_type] = STATE(4955), + [sym_tuple_type] = STATE(4735), + [sym_function_type] = STATE(5232), + [sym_array_type] = STATE(4845), + [sym_dictionary_type] = STATE(4845), + [sym_optional_type] = STATE(5232), + [sym_metatype] = STATE(5232), + [sym_opaque_type] = STATE(5232), + [sym_protocol_composition_type] = STATE(5232), + [sym__expression] = STATE(1513), + [sym__unary_expression] = STATE(1513), + [sym_postfix_expression] = STATE(1513), + [sym_constructor_expression] = STATE(1513), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1513), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1513), + [sym_prefix_expression] = STATE(1513), + [sym_as_expression] = STATE(1513), + [sym_selector_expression] = STATE(1513), + [sym__binary_expression] = STATE(1513), + [sym_multiplicative_expression] = STATE(1513), + [sym_additive_expression] = STATE(1513), + [sym_range_expression] = STATE(1513), + [sym_infix_expression] = STATE(1513), + [sym_nil_coalescing_expression] = STATE(1513), + [sym_check_expression] = STATE(1513), + [sym_comparison_expression] = STATE(1513), + [sym_equality_expression] = STATE(1513), + [sym_conjunction_expression] = STATE(1513), + [sym_disjunction_expression] = STATE(1513), + [sym_bitwise_operation] = STATE(1513), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1513), + [sym_await_expression] = STATE(1513), + [sym_ternary_expression] = STATE(1513), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1513), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1513), + [sym_dictionary_literal] = STATE(1513), + [sym__dictionary_literal_item] = STATE(7919), + [sym__special_literal] = STATE(1513), + [sym__playground_literal] = STATE(1513), + [sym_lambda_literal] = STATE(1513), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1513), + [sym_key_path_expression] = STATE(1513), + [sym_key_path_string_expression] = STATE(1513), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1513), + [sym__comparison_operator] = STATE(1513), + [sym__additive_operator] = STATE(1513), + [sym__multiplicative_operator] = STATE(1513), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1513), + [sym__referenceable_operator] = STATE(1513), + [sym__eq_eq] = STATE(1513), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(5230), + [sym_type_modifiers] = STATE(4738), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_capture_list_repeat1] = STATE(5230), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(839), + [sym_real_literal] = ACTIONS(841), + [sym_integer_literal] = ACTIONS(839), + [sym_hex_literal] = ACTIONS(841), + [sym_oct_literal] = ACTIONS(841), + [sym_bin_literal] = ACTIONS(841), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_COMMA] = ACTIONS(843), + [anon_sym_COLON] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(847), + [anon_sym_some] = ACTIONS(787), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(839), + [anon_sym_GT] = ACTIONS(839), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(839), + [anon_sym_POUNDfileID] = ACTIONS(841), + [anon_sym_POUNDfilePath] = ACTIONS(841), + [anon_sym_POUNDline] = ACTIONS(841), + [anon_sym_POUNDcolumn] = ACTIONS(841), + [anon_sym_POUNDfunction] = ACTIONS(841), + [anon_sym_POUNDdsohandle] = ACTIONS(841), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(839), + [anon_sym_BANG_EQ_EQ] = ACTIONS(839), + [anon_sym_EQ_EQ_EQ] = ACTIONS(839), + [anon_sym_LT_EQ] = ACTIONS(839), + [anon_sym_GT_EQ] = ACTIONS(839), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(839), + [anon_sym_SLASH] = ACTIONS(839), + [anon_sym_PERCENT] = ACTIONS(839), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(849), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(841), + [sym__plus_then_ws] = ACTIONS(841), + [sym__minus_then_ws] = ACTIONS(841), + [sym_bang] = ACTIONS(833), + }, + [124] = { + [sym_simple_identifier] = STATE(2608), + [sym__basic_literal] = STATE(1498), + [sym_boolean_literal] = STATE(1498), + [sym__string_literal] = STATE(1498), + [sym_line_string_literal] = STATE(1498), + [sym_multi_line_string_literal] = STATE(1498), + [sym_raw_string_literal] = STATE(1498), + [sym__type] = STATE(8216), + [sym__unannotated_type] = STATE(5232), + [sym_user_type] = STATE(4845), + [sym__simple_user_type] = STATE(4955), + [sym_tuple_type] = STATE(4735), + [sym_function_type] = STATE(5232), + [sym_array_type] = STATE(4845), + [sym_dictionary_type] = STATE(4845), + [sym_optional_type] = STATE(5232), + [sym_metatype] = STATE(5232), + [sym_opaque_type] = STATE(5232), + [sym_protocol_composition_type] = STATE(5232), + [sym__expression] = STATE(1498), + [sym__unary_expression] = STATE(1498), + [sym_postfix_expression] = STATE(1498), + [sym_constructor_expression] = STATE(1498), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1498), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1498), + [sym_prefix_expression] = STATE(1498), + [sym_as_expression] = STATE(1498), + [sym_selector_expression] = STATE(1498), + [sym__binary_expression] = STATE(1498), + [sym_multiplicative_expression] = STATE(1498), + [sym_additive_expression] = STATE(1498), + [sym_range_expression] = STATE(1498), + [sym_infix_expression] = STATE(1498), + [sym_nil_coalescing_expression] = STATE(1498), + [sym_check_expression] = STATE(1498), + [sym_comparison_expression] = STATE(1498), + [sym_equality_expression] = STATE(1498), + [sym_conjunction_expression] = STATE(1498), + [sym_disjunction_expression] = STATE(1498), + [sym_bitwise_operation] = STATE(1498), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1498), + [sym_await_expression] = STATE(1498), + [sym_ternary_expression] = STATE(1498), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1498), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1498), + [sym_dictionary_literal] = STATE(1498), + [sym__dictionary_literal_item] = STATE(7557), + [sym__special_literal] = STATE(1498), + [sym__playground_literal] = STATE(1498), + [sym_lambda_literal] = STATE(1498), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1498), + [sym_key_path_expression] = STATE(1498), + [sym_key_path_string_expression] = STATE(1498), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1498), + [sym__comparison_operator] = STATE(1498), + [sym__additive_operator] = STATE(1498), + [sym__multiplicative_operator] = STATE(1498), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1498), + [sym__referenceable_operator] = STATE(1498), + [sym__eq_eq] = STATE(1498), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(5230), + [sym_type_modifiers] = STATE(4738), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_capture_list_repeat1] = STATE(5230), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_COMMA] = ACTIONS(863), + [anon_sym_COLON] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(867), + [anon_sym_some] = ACTIONS(787), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(859), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(849), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(861), + [sym__plus_then_ws] = ACTIONS(861), + [sym__minus_then_ws] = ACTIONS(861), + [sym_bang] = ACTIONS(833), + }, + [125] = { + [sym_simple_identifier] = STATE(2608), + [sym__basic_literal] = STATE(1518), + [sym_boolean_literal] = STATE(1518), + [sym__string_literal] = STATE(1518), + [sym_line_string_literal] = STATE(1518), + [sym_multi_line_string_literal] = STATE(1518), + [sym_raw_string_literal] = STATE(1518), + [sym__type] = STATE(8216), + [sym__unannotated_type] = STATE(5232), + [sym_user_type] = STATE(4845), + [sym__simple_user_type] = STATE(4955), + [sym_tuple_type] = STATE(4735), + [sym_function_type] = STATE(5232), + [sym_array_type] = STATE(4845), + [sym_dictionary_type] = STATE(4845), + [sym_optional_type] = STATE(5232), + [sym_metatype] = STATE(5232), + [sym_opaque_type] = STATE(5232), + [sym_protocol_composition_type] = STATE(5232), + [sym__expression] = STATE(1518), + [sym__unary_expression] = STATE(1518), + [sym_postfix_expression] = STATE(1518), + [sym_constructor_expression] = STATE(1518), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1518), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1518), + [sym_prefix_expression] = STATE(1518), + [sym_as_expression] = STATE(1518), + [sym_selector_expression] = STATE(1518), + [sym__binary_expression] = STATE(1518), + [sym_multiplicative_expression] = STATE(1518), + [sym_additive_expression] = STATE(1518), + [sym_range_expression] = STATE(1518), + [sym_infix_expression] = STATE(1518), + [sym_nil_coalescing_expression] = STATE(1518), + [sym_check_expression] = STATE(1518), + [sym_comparison_expression] = STATE(1518), + [sym_equality_expression] = STATE(1518), + [sym_conjunction_expression] = STATE(1518), + [sym_disjunction_expression] = STATE(1518), + [sym_bitwise_operation] = STATE(1518), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1518), + [sym_await_expression] = STATE(1518), + [sym_ternary_expression] = STATE(1518), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1518), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1518), + [sym_dictionary_literal] = STATE(1518), + [sym__dictionary_literal_item] = STATE(7567), + [sym__special_literal] = STATE(1518), + [sym__playground_literal] = STATE(1518), + [sym_lambda_literal] = STATE(1518), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1518), + [sym_key_path_expression] = STATE(1518), + [sym_key_path_string_expression] = STATE(1518), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1518), + [sym__comparison_operator] = STATE(1518), + [sym__additive_operator] = STATE(1518), + [sym__multiplicative_operator] = STATE(1518), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1518), + [sym__referenceable_operator] = STATE(1518), + [sym__eq_eq] = STATE(1518), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(5230), + [sym_type_modifiers] = STATE(4738), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_capture_list_repeat1] = STATE(5230), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(869), + [sym_real_literal] = ACTIONS(871), + [sym_integer_literal] = ACTIONS(869), + [sym_hex_literal] = ACTIONS(871), + [sym_oct_literal] = ACTIONS(871), + [sym_bin_literal] = ACTIONS(871), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_COMMA] = ACTIONS(873), + [anon_sym_COLON] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(877), + [anon_sym_some] = ACTIONS(787), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(869), + [anon_sym_GT] = ACTIONS(869), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(869), + [anon_sym_POUNDfileID] = ACTIONS(871), + [anon_sym_POUNDfilePath] = ACTIONS(871), + [anon_sym_POUNDline] = ACTIONS(871), + [anon_sym_POUNDcolumn] = ACTIONS(871), + [anon_sym_POUNDfunction] = ACTIONS(871), + [anon_sym_POUNDdsohandle] = ACTIONS(871), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(869), + [anon_sym_BANG_EQ_EQ] = ACTIONS(869), + [anon_sym_EQ_EQ_EQ] = ACTIONS(869), + [anon_sym_LT_EQ] = ACTIONS(869), + [anon_sym_GT_EQ] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_SLASH] = ACTIONS(869), + [anon_sym_PERCENT] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(849), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(871), + [sym__plus_then_ws] = ACTIONS(871), + [sym__minus_then_ws] = ACTIONS(871), + [sym_bang] = ACTIONS(833), + }, + [126] = { + [sym_simple_identifier] = STATE(2608), + [sym__basic_literal] = STATE(1514), + [sym_boolean_literal] = STATE(1514), + [sym__string_literal] = STATE(1514), + [sym_line_string_literal] = STATE(1514), + [sym_multi_line_string_literal] = STATE(1514), + [sym_raw_string_literal] = STATE(1514), + [sym__type] = STATE(8216), + [sym__unannotated_type] = STATE(5232), + [sym_user_type] = STATE(4845), + [sym__simple_user_type] = STATE(4955), + [sym_tuple_type] = STATE(4735), + [sym_function_type] = STATE(5232), + [sym_array_type] = STATE(4845), + [sym_dictionary_type] = STATE(4845), + [sym_optional_type] = STATE(5232), + [sym_metatype] = STATE(5232), + [sym_opaque_type] = STATE(5232), + [sym_protocol_composition_type] = STATE(5232), + [sym__expression] = STATE(1514), + [sym__unary_expression] = STATE(1514), + [sym_postfix_expression] = STATE(1514), + [sym_constructor_expression] = STATE(1514), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1514), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1514), + [sym_prefix_expression] = STATE(1514), + [sym_as_expression] = STATE(1514), + [sym_selector_expression] = STATE(1514), + [sym__binary_expression] = STATE(1514), + [sym_multiplicative_expression] = STATE(1514), + [sym_additive_expression] = STATE(1514), + [sym_range_expression] = STATE(1514), + [sym_infix_expression] = STATE(1514), + [sym_nil_coalescing_expression] = STATE(1514), + [sym_check_expression] = STATE(1514), + [sym_comparison_expression] = STATE(1514), + [sym_equality_expression] = STATE(1514), + [sym_conjunction_expression] = STATE(1514), + [sym_disjunction_expression] = STATE(1514), + [sym_bitwise_operation] = STATE(1514), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1514), + [sym_await_expression] = STATE(1514), + [sym_ternary_expression] = STATE(1514), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1514), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1514), + [sym_dictionary_literal] = STATE(1514), + [sym__dictionary_literal_item] = STATE(7995), + [sym__special_literal] = STATE(1514), + [sym__playground_literal] = STATE(1514), + [sym_lambda_literal] = STATE(1514), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1514), + [sym_key_path_expression] = STATE(1514), + [sym_key_path_string_expression] = STATE(1514), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1514), + [sym__comparison_operator] = STATE(1514), + [sym__additive_operator] = STATE(1514), + [sym__multiplicative_operator] = STATE(1514), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1514), + [sym__referenceable_operator] = STATE(1514), + [sym__eq_eq] = STATE(1514), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(5230), + [sym_type_modifiers] = STATE(4738), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_capture_list_repeat1] = STATE(5230), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(879), + [sym_real_literal] = ACTIONS(881), + [sym_integer_literal] = ACTIONS(879), + [sym_hex_literal] = ACTIONS(881), + [sym_oct_literal] = ACTIONS(881), + [sym_bin_literal] = ACTIONS(881), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_COMMA] = ACTIONS(883), + [anon_sym_COLON] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(887), + [anon_sym_some] = ACTIONS(787), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(879), + [anon_sym_GT] = ACTIONS(879), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(879), + [anon_sym_POUNDfileID] = ACTIONS(881), + [anon_sym_POUNDfilePath] = ACTIONS(881), + [anon_sym_POUNDline] = ACTIONS(881), + [anon_sym_POUNDcolumn] = ACTIONS(881), + [anon_sym_POUNDfunction] = ACTIONS(881), + [anon_sym_POUNDdsohandle] = ACTIONS(881), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(879), + [anon_sym_BANG_EQ_EQ] = ACTIONS(879), + [anon_sym_EQ_EQ_EQ] = ACTIONS(879), + [anon_sym_LT_EQ] = ACTIONS(879), + [anon_sym_GT_EQ] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(879), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_PERCENT] = ACTIONS(879), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(849), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(881), + [sym__plus_then_ws] = ACTIONS(881), + [sym__minus_then_ws] = ACTIONS(881), + [sym_bang] = ACTIONS(833), + }, + [127] = { + [sym_simple_identifier] = STATE(2608), + [sym__basic_literal] = STATE(1495), + [sym_boolean_literal] = STATE(1495), + [sym__string_literal] = STATE(1495), + [sym_line_string_literal] = STATE(1495), + [sym_multi_line_string_literal] = STATE(1495), + [sym_raw_string_literal] = STATE(1495), + [sym__type] = STATE(8216), + [sym__unannotated_type] = STATE(5232), + [sym_user_type] = STATE(4845), + [sym__simple_user_type] = STATE(4955), + [sym_tuple_type] = STATE(4735), + [sym_function_type] = STATE(5232), + [sym_array_type] = STATE(4845), + [sym_dictionary_type] = STATE(4845), + [sym_optional_type] = STATE(5232), + [sym_metatype] = STATE(5232), + [sym_opaque_type] = STATE(5232), + [sym_protocol_composition_type] = STATE(5232), + [sym__expression] = STATE(1495), + [sym__unary_expression] = STATE(1495), + [sym_postfix_expression] = STATE(1495), + [sym_constructor_expression] = STATE(1495), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1495), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1495), + [sym_prefix_expression] = STATE(1495), + [sym_as_expression] = STATE(1495), + [sym_selector_expression] = STATE(1495), + [sym__binary_expression] = STATE(1495), + [sym_multiplicative_expression] = STATE(1495), + [sym_additive_expression] = STATE(1495), + [sym_range_expression] = STATE(1495), + [sym_infix_expression] = STATE(1495), + [sym_nil_coalescing_expression] = STATE(1495), + [sym_check_expression] = STATE(1495), + [sym_comparison_expression] = STATE(1495), + [sym_equality_expression] = STATE(1495), + [sym_conjunction_expression] = STATE(1495), + [sym_disjunction_expression] = STATE(1495), + [sym_bitwise_operation] = STATE(1495), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1495), + [sym_await_expression] = STATE(1495), + [sym_ternary_expression] = STATE(1495), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1495), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1495), + [sym_dictionary_literal] = STATE(1495), + [sym__dictionary_literal_item] = STATE(8053), + [sym__special_literal] = STATE(1495), + [sym__playground_literal] = STATE(1495), + [sym_lambda_literal] = STATE(1495), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1495), + [sym_key_path_expression] = STATE(1495), + [sym_key_path_string_expression] = STATE(1495), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1495), + [sym__comparison_operator] = STATE(1495), + [sym__additive_operator] = STATE(1495), + [sym__multiplicative_operator] = STATE(1495), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1495), + [sym__referenceable_operator] = STATE(1495), + [sym__eq_eq] = STATE(1495), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(5230), + [sym_type_modifiers] = STATE(4738), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_capture_list_repeat1] = STATE(5230), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(889), + [sym_real_literal] = ACTIONS(891), + [sym_integer_literal] = ACTIONS(889), + [sym_hex_literal] = ACTIONS(891), + [sym_oct_literal] = ACTIONS(891), + [sym_bin_literal] = ACTIONS(891), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_COLON] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(897), + [anon_sym_some] = ACTIONS(787), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(889), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(889), + [anon_sym_POUNDfileID] = ACTIONS(891), + [anon_sym_POUNDfilePath] = ACTIONS(891), + [anon_sym_POUNDline] = ACTIONS(891), + [anon_sym_POUNDcolumn] = ACTIONS(891), + [anon_sym_POUNDfunction] = ACTIONS(891), + [anon_sym_POUNDdsohandle] = ACTIONS(891), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(889), + [anon_sym_BANG_EQ_EQ] = ACTIONS(889), + [anon_sym_EQ_EQ_EQ] = ACTIONS(889), + [anon_sym_LT_EQ] = ACTIONS(889), + [anon_sym_GT_EQ] = ACTIONS(889), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(889), + [anon_sym_PERCENT] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(849), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(891), + [sym__plus_then_ws] = ACTIONS(891), + [sym__minus_then_ws] = ACTIONS(891), + [sym_bang] = ACTIONS(833), + }, + [128] = { + [sym_simple_identifier] = STATE(2608), + [sym__basic_literal] = STATE(1485), + [sym_boolean_literal] = STATE(1485), + [sym__string_literal] = STATE(1485), + [sym_line_string_literal] = STATE(1485), + [sym_multi_line_string_literal] = STATE(1485), + [sym_raw_string_literal] = STATE(1485), + [sym__type] = STATE(8216), + [sym__unannotated_type] = STATE(5232), + [sym_user_type] = STATE(4845), + [sym__simple_user_type] = STATE(4955), + [sym_tuple_type] = STATE(4735), + [sym_function_type] = STATE(5232), + [sym_array_type] = STATE(4845), + [sym_dictionary_type] = STATE(4845), + [sym_optional_type] = STATE(5232), + [sym_metatype] = STATE(5232), + [sym_opaque_type] = STATE(5232), + [sym_protocol_composition_type] = STATE(5232), + [sym__expression] = STATE(1485), + [sym__unary_expression] = STATE(1485), + [sym_postfix_expression] = STATE(1485), + [sym_constructor_expression] = STATE(1485), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1485), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1485), + [sym_prefix_expression] = STATE(1485), + [sym_as_expression] = STATE(1485), + [sym_selector_expression] = STATE(1485), + [sym__binary_expression] = STATE(1485), + [sym_multiplicative_expression] = STATE(1485), + [sym_additive_expression] = STATE(1485), + [sym_range_expression] = STATE(1485), + [sym_infix_expression] = STATE(1485), + [sym_nil_coalescing_expression] = STATE(1485), + [sym_check_expression] = STATE(1485), + [sym_comparison_expression] = STATE(1485), + [sym_equality_expression] = STATE(1485), + [sym_conjunction_expression] = STATE(1485), + [sym_disjunction_expression] = STATE(1485), + [sym_bitwise_operation] = STATE(1485), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1485), + [sym_await_expression] = STATE(1485), + [sym_ternary_expression] = STATE(1485), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1485), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1485), + [sym_dictionary_literal] = STATE(1485), + [sym__dictionary_literal_item] = STATE(7775), + [sym__special_literal] = STATE(1485), + [sym__playground_literal] = STATE(1485), + [sym_lambda_literal] = STATE(1485), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1485), + [sym_key_path_expression] = STATE(1485), + [sym_key_path_string_expression] = STATE(1485), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1485), + [sym__comparison_operator] = STATE(1485), + [sym__additive_operator] = STATE(1485), + [sym__multiplicative_operator] = STATE(1485), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1485), + [sym__referenceable_operator] = STATE(1485), + [sym__eq_eq] = STATE(1485), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(5230), + [sym_type_modifiers] = STATE(4738), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_capture_list_repeat1] = STATE(5230), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(899), + [sym_real_literal] = ACTIONS(901), + [sym_integer_literal] = ACTIONS(899), + [sym_hex_literal] = ACTIONS(901), + [sym_oct_literal] = ACTIONS(901), + [sym_bin_literal] = ACTIONS(901), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_COLON] = ACTIONS(905), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(907), + [anon_sym_some] = ACTIONS(787), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(899), + [anon_sym_GT] = ACTIONS(899), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(899), + [anon_sym_POUNDfileID] = ACTIONS(901), + [anon_sym_POUNDfilePath] = ACTIONS(901), + [anon_sym_POUNDline] = ACTIONS(901), + [anon_sym_POUNDcolumn] = ACTIONS(901), + [anon_sym_POUNDfunction] = ACTIONS(901), + [anon_sym_POUNDdsohandle] = ACTIONS(901), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(899), + [anon_sym_BANG_EQ_EQ] = ACTIONS(899), + [anon_sym_EQ_EQ_EQ] = ACTIONS(899), + [anon_sym_LT_EQ] = ACTIONS(899), + [anon_sym_GT_EQ] = ACTIONS(899), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(899), + [anon_sym_SLASH] = ACTIONS(899), + [anon_sym_PERCENT] = ACTIONS(899), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(849), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(901), + [sym__plus_then_ws] = ACTIONS(901), + [sym__minus_then_ws] = ACTIONS(901), + [sym_bang] = ACTIONS(833), + }, + [129] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(2213), + [sym_boolean_literal] = STATE(2213), + [sym__string_literal] = STATE(2213), + [sym_line_string_literal] = STATE(2213), + [sym_multi_line_string_literal] = STATE(2213), + [sym_raw_string_literal] = STATE(2213), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(2213), + [sym__unary_expression] = STATE(2213), + [sym_postfix_expression] = STATE(2213), + [sym_constructor_expression] = STATE(2213), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(2213), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(2213), + [sym_prefix_expression] = STATE(2213), + [sym_as_expression] = STATE(2213), + [sym_selector_expression] = STATE(2213), + [sym__binary_expression] = STATE(2213), + [sym_multiplicative_expression] = STATE(2213), + [sym_additive_expression] = STATE(2213), + [sym_range_expression] = STATE(2213), + [sym_infix_expression] = STATE(2213), + [sym_nil_coalescing_expression] = STATE(2213), + [sym_check_expression] = STATE(2213), + [sym_comparison_expression] = STATE(2213), + [sym_equality_expression] = STATE(2213), + [sym_conjunction_expression] = STATE(2213), + [sym_disjunction_expression] = STATE(2213), + [sym_bitwise_operation] = STATE(2213), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(2213), + [sym_await_expression] = STATE(2213), + [sym_ternary_expression] = STATE(2213), + [sym_call_expression] = STATE(2760), + [sym__primary_expression] = STATE(2213), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(2213), + [sym_dictionary_literal] = STATE(2213), + [sym__special_literal] = STATE(2213), + [sym__playground_literal] = STATE(2213), + [sym_lambda_literal] = STATE(2213), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(2213), + [sym__if_condition_sequence_item] = STATE(8765), + [sym__if_let_binding] = STATE(8765), + [sym_key_path_expression] = STATE(2213), + [sym_key_path_string_expression] = STATE(2213), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(2213), + [sym__comparison_operator] = STATE(2213), + [sym__additive_operator] = STATE(2213), + [sym__multiplicative_operator] = STATE(2213), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(2213), + [sym_availability_condition] = STATE(8765), + [sym__referenceable_operator] = STATE(2213), + [sym__eq_eq] = STATE(2213), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [sym__async_modifier] = STATE(10399), + [sym__direct_or_indirect_binding] = STATE(8654), + [sym_value_binding_pattern] = STATE(7868), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [anon_sym_nil] = ACTIONS(913), + [sym_real_literal] = ACTIONS(915), + [sym_integer_literal] = ACTIONS(913), + [sym_hex_literal] = ACTIONS(915), + [sym_oct_literal] = ACTIONS(915), + [sym_bin_literal] = ACTIONS(915), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(931), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(913), + [sym__await_operator] = ACTIONS(937), + [anon_sym_POUNDfile] = ACTIONS(913), + [anon_sym_POUNDfileID] = ACTIONS(915), + [anon_sym_POUNDfilePath] = ACTIONS(915), + [anon_sym_POUNDline] = ACTIONS(915), + [anon_sym_POUNDcolumn] = ACTIONS(915), + [anon_sym_POUNDfunction] = ACTIONS(915), + [anon_sym_POUNDdsohandle] = ACTIONS(915), + [anon_sym_POUNDcolorLiteral] = ACTIONS(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_case] = ACTIONS(947), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ_EQ] = ACTIONS(913), + [anon_sym_EQ_EQ_EQ] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_PERCENT] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_POUNDavailable] = ACTIONS(959), + [anon_sym_let] = ACTIONS(961), + [anon_sym_var] = ACTIONS(961), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(915), + [sym__plus_then_ws] = ACTIONS(915), + [sym__minus_then_ws] = ACTIONS(915), + [sym_bang] = ACTIONS(971), + }, + [130] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2223), + [sym_boolean_literal] = STATE(2223), + [sym__string_literal] = STATE(2223), + [sym_line_string_literal] = STATE(2223), + [sym_multi_line_string_literal] = STATE(2223), + [sym_raw_string_literal] = STATE(2223), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2223), + [sym__unary_expression] = STATE(2223), + [sym_postfix_expression] = STATE(2223), + [sym_constructor_expression] = STATE(2223), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2223), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2223), + [sym_prefix_expression] = STATE(2223), + [sym_as_expression] = STATE(2223), + [sym_selector_expression] = STATE(2223), + [sym__binary_expression] = STATE(2223), + [sym_multiplicative_expression] = STATE(2223), + [sym_additive_expression] = STATE(2223), + [sym_range_expression] = STATE(2223), + [sym_infix_expression] = STATE(2223), + [sym_nil_coalescing_expression] = STATE(2223), + [sym_check_expression] = STATE(2223), + [sym_comparison_expression] = STATE(2223), + [sym_equality_expression] = STATE(2223), + [sym_conjunction_expression] = STATE(2223), + [sym_disjunction_expression] = STATE(2223), + [sym_bitwise_operation] = STATE(2223), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2223), + [sym_await_expression] = STATE(2223), + [sym_ternary_expression] = STATE(2223), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2223), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2223), + [sym_dictionary_literal] = STATE(2223), + [sym__special_literal] = STATE(2223), + [sym__playground_literal] = STATE(2223), + [sym_lambda_literal] = STATE(2223), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2223), + [sym__if_condition_sequence_item] = STATE(7169), + [sym__if_let_binding] = STATE(7169), + [sym_key_path_expression] = STATE(2223), + [sym_key_path_string_expression] = STATE(2223), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2223), + [sym__comparison_operator] = STATE(2223), + [sym__additive_operator] = STATE(2223), + [sym__multiplicative_operator] = STATE(2223), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2223), + [sym_availability_condition] = STATE(7169), + [sym__referenceable_operator] = STATE(2223), + [sym__eq_eq] = STATE(2223), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym__async_modifier] = STATE(10399), + [sym__direct_or_indirect_binding] = STATE(8263), + [sym_value_binding_pattern] = STATE(7868), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(973), + [sym_real_literal] = ACTIONS(975), + [sym_integer_literal] = ACTIONS(973), + [sym_hex_literal] = ACTIONS(975), + [sym_oct_literal] = ACTIONS(975), + [sym_bin_literal] = ACTIONS(975), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(979), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(973), + [anon_sym_POUNDfileID] = ACTIONS(975), + [anon_sym_POUNDfilePath] = ACTIONS(975), + [anon_sym_POUNDline] = ACTIONS(975), + [anon_sym_POUNDcolumn] = ACTIONS(975), + [anon_sym_POUNDfunction] = ACTIONS(975), + [anon_sym_POUNDdsohandle] = ACTIONS(975), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_case] = ACTIONS(947), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ_EQ] = ACTIONS(973), + [anon_sym_EQ_EQ_EQ] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_PERCENT] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_POUNDavailable] = ACTIONS(981), + [anon_sym_let] = ACTIONS(961), + [anon_sym_var] = ACTIONS(961), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(975), + [sym__plus_then_ws] = ACTIONS(975), + [sym__minus_then_ws] = ACTIONS(975), + [sym_bang] = ACTIONS(833), + }, + [131] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2223), + [sym_boolean_literal] = STATE(2223), + [sym__string_literal] = STATE(2223), + [sym_line_string_literal] = STATE(2223), + [sym_multi_line_string_literal] = STATE(2223), + [sym_raw_string_literal] = STATE(2223), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2223), + [sym__unary_expression] = STATE(2223), + [sym_postfix_expression] = STATE(2223), + [sym_constructor_expression] = STATE(2223), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2223), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2223), + [sym_prefix_expression] = STATE(2223), + [sym_as_expression] = STATE(2223), + [sym_selector_expression] = STATE(2223), + [sym__binary_expression] = STATE(2223), + [sym_multiplicative_expression] = STATE(2223), + [sym_additive_expression] = STATE(2223), + [sym_range_expression] = STATE(2223), + [sym_infix_expression] = STATE(2223), + [sym_nil_coalescing_expression] = STATE(2223), + [sym_check_expression] = STATE(2223), + [sym_comparison_expression] = STATE(2223), + [sym_equality_expression] = STATE(2223), + [sym_conjunction_expression] = STATE(2223), + [sym_disjunction_expression] = STATE(2223), + [sym_bitwise_operation] = STATE(2223), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2223), + [sym_await_expression] = STATE(2223), + [sym_ternary_expression] = STATE(2223), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2223), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2223), + [sym_dictionary_literal] = STATE(2223), + [sym__special_literal] = STATE(2223), + [sym__playground_literal] = STATE(2223), + [sym_lambda_literal] = STATE(2223), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2223), + [sym__if_condition_sequence_item] = STATE(7796), + [sym__if_let_binding] = STATE(7796), + [sym_key_path_expression] = STATE(2223), + [sym_key_path_string_expression] = STATE(2223), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2223), + [sym__comparison_operator] = STATE(2223), + [sym__additive_operator] = STATE(2223), + [sym__multiplicative_operator] = STATE(2223), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2223), + [sym_availability_condition] = STATE(7796), + [sym__referenceable_operator] = STATE(2223), + [sym__eq_eq] = STATE(2223), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym__async_modifier] = STATE(10399), + [sym__direct_or_indirect_binding] = STATE(8263), + [sym_value_binding_pattern] = STATE(7868), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(973), + [sym_real_literal] = ACTIONS(975), + [sym_integer_literal] = ACTIONS(973), + [sym_hex_literal] = ACTIONS(975), + [sym_oct_literal] = ACTIONS(975), + [sym_bin_literal] = ACTIONS(975), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(979), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(973), + [anon_sym_POUNDfileID] = ACTIONS(975), + [anon_sym_POUNDfilePath] = ACTIONS(975), + [anon_sym_POUNDline] = ACTIONS(975), + [anon_sym_POUNDcolumn] = ACTIONS(975), + [anon_sym_POUNDfunction] = ACTIONS(975), + [anon_sym_POUNDdsohandle] = ACTIONS(975), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_case] = ACTIONS(947), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ_EQ] = ACTIONS(973), + [anon_sym_EQ_EQ_EQ] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_PERCENT] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_POUNDavailable] = ACTIONS(981), + [anon_sym_let] = ACTIONS(961), + [anon_sym_var] = ACTIONS(961), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(975), + [sym__plus_then_ws] = ACTIONS(975), + [sym__minus_then_ws] = ACTIONS(975), + [sym_bang] = ACTIONS(833), + }, + [132] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2223), + [sym_boolean_literal] = STATE(2223), + [sym__string_literal] = STATE(2223), + [sym_line_string_literal] = STATE(2223), + [sym_multi_line_string_literal] = STATE(2223), + [sym_raw_string_literal] = STATE(2223), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2223), + [sym__unary_expression] = STATE(2223), + [sym_postfix_expression] = STATE(2223), + [sym_constructor_expression] = STATE(2223), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2223), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2223), + [sym_prefix_expression] = STATE(2223), + [sym_as_expression] = STATE(2223), + [sym_selector_expression] = STATE(2223), + [sym__binary_expression] = STATE(2223), + [sym_multiplicative_expression] = STATE(2223), + [sym_additive_expression] = STATE(2223), + [sym_range_expression] = STATE(2223), + [sym_infix_expression] = STATE(2223), + [sym_nil_coalescing_expression] = STATE(2223), + [sym_check_expression] = STATE(2223), + [sym_comparison_expression] = STATE(2223), + [sym_equality_expression] = STATE(2223), + [sym_conjunction_expression] = STATE(2223), + [sym_disjunction_expression] = STATE(2223), + [sym_bitwise_operation] = STATE(2223), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2223), + [sym_await_expression] = STATE(2223), + [sym_ternary_expression] = STATE(2223), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2223), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2223), + [sym_dictionary_literal] = STATE(2223), + [sym__special_literal] = STATE(2223), + [sym__playground_literal] = STATE(2223), + [sym_lambda_literal] = STATE(2223), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2223), + [sym__if_condition_sequence_item] = STATE(8620), + [sym__if_let_binding] = STATE(8620), + [sym_key_path_expression] = STATE(2223), + [sym_key_path_string_expression] = STATE(2223), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2223), + [sym__comparison_operator] = STATE(2223), + [sym__additive_operator] = STATE(2223), + [sym__multiplicative_operator] = STATE(2223), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2223), + [sym_availability_condition] = STATE(8620), + [sym__referenceable_operator] = STATE(2223), + [sym__eq_eq] = STATE(2223), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym__async_modifier] = STATE(10399), + [sym__direct_or_indirect_binding] = STATE(8263), + [sym_value_binding_pattern] = STATE(7868), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(973), + [sym_real_literal] = ACTIONS(975), + [sym_integer_literal] = ACTIONS(973), + [sym_hex_literal] = ACTIONS(975), + [sym_oct_literal] = ACTIONS(975), + [sym_bin_literal] = ACTIONS(975), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(979), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(973), + [anon_sym_POUNDfileID] = ACTIONS(975), + [anon_sym_POUNDfilePath] = ACTIONS(975), + [anon_sym_POUNDline] = ACTIONS(975), + [anon_sym_POUNDcolumn] = ACTIONS(975), + [anon_sym_POUNDfunction] = ACTIONS(975), + [anon_sym_POUNDdsohandle] = ACTIONS(975), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_case] = ACTIONS(947), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ_EQ] = ACTIONS(973), + [anon_sym_EQ_EQ_EQ] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_PERCENT] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_POUNDavailable] = ACTIONS(981), + [anon_sym_let] = ACTIONS(961), + [anon_sym_var] = ACTIONS(961), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(975), + [sym__plus_then_ws] = ACTIONS(975), + [sym__minus_then_ws] = ACTIONS(975), + [sym_bang] = ACTIONS(833), + }, + [133] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2223), + [sym_boolean_literal] = STATE(2223), + [sym__string_literal] = STATE(2223), + [sym_line_string_literal] = STATE(2223), + [sym_multi_line_string_literal] = STATE(2223), + [sym_raw_string_literal] = STATE(2223), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2223), + [sym__unary_expression] = STATE(2223), + [sym_postfix_expression] = STATE(2223), + [sym_constructor_expression] = STATE(2223), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2223), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2223), + [sym_prefix_expression] = STATE(2223), + [sym_as_expression] = STATE(2223), + [sym_selector_expression] = STATE(2223), + [sym__binary_expression] = STATE(2223), + [sym_multiplicative_expression] = STATE(2223), + [sym_additive_expression] = STATE(2223), + [sym_range_expression] = STATE(2223), + [sym_infix_expression] = STATE(2223), + [sym_nil_coalescing_expression] = STATE(2223), + [sym_check_expression] = STATE(2223), + [sym_comparison_expression] = STATE(2223), + [sym_equality_expression] = STATE(2223), + [sym_conjunction_expression] = STATE(2223), + [sym_disjunction_expression] = STATE(2223), + [sym_bitwise_operation] = STATE(2223), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2223), + [sym_await_expression] = STATE(2223), + [sym_ternary_expression] = STATE(2223), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2223), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2223), + [sym_dictionary_literal] = STATE(2223), + [sym__special_literal] = STATE(2223), + [sym__playground_literal] = STATE(2223), + [sym_lambda_literal] = STATE(2223), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2223), + [sym__if_condition_sequence_item] = STATE(7117), + [sym__if_let_binding] = STATE(7117), + [sym_key_path_expression] = STATE(2223), + [sym_key_path_string_expression] = STATE(2223), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2223), + [sym__comparison_operator] = STATE(2223), + [sym__additive_operator] = STATE(2223), + [sym__multiplicative_operator] = STATE(2223), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2223), + [sym_availability_condition] = STATE(7117), + [sym__referenceable_operator] = STATE(2223), + [sym__eq_eq] = STATE(2223), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym__async_modifier] = STATE(10399), + [sym__direct_or_indirect_binding] = STATE(8263), + [sym_value_binding_pattern] = STATE(7868), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(973), + [sym_real_literal] = ACTIONS(975), + [sym_integer_literal] = ACTIONS(973), + [sym_hex_literal] = ACTIONS(975), + [sym_oct_literal] = ACTIONS(975), + [sym_bin_literal] = ACTIONS(975), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(979), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(973), + [anon_sym_POUNDfileID] = ACTIONS(975), + [anon_sym_POUNDfilePath] = ACTIONS(975), + [anon_sym_POUNDline] = ACTIONS(975), + [anon_sym_POUNDcolumn] = ACTIONS(975), + [anon_sym_POUNDfunction] = ACTIONS(975), + [anon_sym_POUNDdsohandle] = ACTIONS(975), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_case] = ACTIONS(947), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ_EQ] = ACTIONS(973), + [anon_sym_EQ_EQ_EQ] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_PERCENT] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_POUNDavailable] = ACTIONS(981), + [anon_sym_let] = ACTIONS(961), + [anon_sym_var] = ACTIONS(961), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(975), + [sym__plus_then_ws] = ACTIONS(975), + [sym__minus_then_ws] = ACTIONS(975), + [sym_bang] = ACTIONS(833), + }, + [134] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(2213), + [sym_boolean_literal] = STATE(2213), + [sym__string_literal] = STATE(2213), + [sym_line_string_literal] = STATE(2213), + [sym_multi_line_string_literal] = STATE(2213), + [sym_raw_string_literal] = STATE(2213), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(2213), + [sym__unary_expression] = STATE(2213), + [sym_postfix_expression] = STATE(2213), + [sym_constructor_expression] = STATE(2213), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(2213), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(2213), + [sym_prefix_expression] = STATE(2213), + [sym_as_expression] = STATE(2213), + [sym_selector_expression] = STATE(2213), + [sym__binary_expression] = STATE(2213), + [sym_multiplicative_expression] = STATE(2213), + [sym_additive_expression] = STATE(2213), + [sym_range_expression] = STATE(2213), + [sym_infix_expression] = STATE(2213), + [sym_nil_coalescing_expression] = STATE(2213), + [sym_check_expression] = STATE(2213), + [sym_comparison_expression] = STATE(2213), + [sym_equality_expression] = STATE(2213), + [sym_conjunction_expression] = STATE(2213), + [sym_disjunction_expression] = STATE(2213), + [sym_bitwise_operation] = STATE(2213), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(2213), + [sym_await_expression] = STATE(2213), + [sym_ternary_expression] = STATE(2213), + [sym_call_expression] = STATE(2760), + [sym__primary_expression] = STATE(2213), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(2213), + [sym_dictionary_literal] = STATE(2213), + [sym__special_literal] = STATE(2213), + [sym__playground_literal] = STATE(2213), + [sym_lambda_literal] = STATE(2213), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(2213), + [sym__if_condition_sequence_item] = STATE(7670), + [sym__if_let_binding] = STATE(7670), + [sym_key_path_expression] = STATE(2213), + [sym_key_path_string_expression] = STATE(2213), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(2213), + [sym__comparison_operator] = STATE(2213), + [sym__additive_operator] = STATE(2213), + [sym__multiplicative_operator] = STATE(2213), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(2213), + [sym_availability_condition] = STATE(7670), + [sym__referenceable_operator] = STATE(2213), + [sym__eq_eq] = STATE(2213), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [sym__async_modifier] = STATE(10399), + [sym__direct_or_indirect_binding] = STATE(8654), + [sym_value_binding_pattern] = STATE(7868), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [anon_sym_nil] = ACTIONS(913), + [sym_real_literal] = ACTIONS(915), + [sym_integer_literal] = ACTIONS(913), + [sym_hex_literal] = ACTIONS(915), + [sym_oct_literal] = ACTIONS(915), + [sym_bin_literal] = ACTIONS(915), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(931), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(913), + [sym__await_operator] = ACTIONS(937), + [anon_sym_POUNDfile] = ACTIONS(913), + [anon_sym_POUNDfileID] = ACTIONS(915), + [anon_sym_POUNDfilePath] = ACTIONS(915), + [anon_sym_POUNDline] = ACTIONS(915), + [anon_sym_POUNDcolumn] = ACTIONS(915), + [anon_sym_POUNDfunction] = ACTIONS(915), + [anon_sym_POUNDdsohandle] = ACTIONS(915), + [anon_sym_POUNDcolorLiteral] = ACTIONS(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_case] = ACTIONS(947), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ_EQ] = ACTIONS(913), + [anon_sym_EQ_EQ_EQ] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_PERCENT] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_POUNDavailable] = ACTIONS(959), + [anon_sym_let] = ACTIONS(961), + [anon_sym_var] = ACTIONS(961), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(915), + [sym__plus_then_ws] = ACTIONS(915), + [sym__minus_then_ws] = ACTIONS(915), + [sym_bang] = ACTIONS(971), + }, + [135] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1156), + [sym__unary_expression] = STATE(1156), + [sym_postfix_expression] = STATE(1156), + [sym_constructor_expression] = STATE(1156), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1156), + [sym__range_operator] = STATE(1037), + [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(1156), + [sym_multiplicative_expression] = STATE(1156), + [sym_additive_expression] = STATE(1156), + [sym_range_expression] = STATE(1156), + [sym_infix_expression] = STATE(1156), + [sym_nil_coalescing_expression] = STATE(1156), + [sym_check_expression] = STATE(1156), + [sym_comparison_expression] = STATE(1156), + [sym_equality_expression] = STATE(1156), + [sym_conjunction_expression] = STATE(1156), + [sym_disjunction_expression] = STATE(1156), + [sym_bitwise_operation] = STATE(1156), + [sym_custom_operator] = STATE(1134), + [sym_try_expression] = STATE(1156), + [sym_await_expression] = STATE(1156), + [sym_ternary_expression] = STATE(1156), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1156), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1156), + [sym__if_condition_sequence_item] = STATE(3593), + [sym__if_let_binding] = STATE(3593), + [sym_key_path_expression] = STATE(1156), + [sym_key_path_string_expression] = STATE(1156), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1156), + [sym__comparison_operator] = STATE(1156), + [sym__additive_operator] = STATE(1156), + [sym__multiplicative_operator] = STATE(1156), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1156), + [sym_availability_condition] = STATE(3593), + [sym__referenceable_operator] = STATE(1156), + [sym__eq_eq] = STATE(1156), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [sym__async_modifier] = STATE(10399), + [sym__direct_or_indirect_binding] = STATE(8235), + [sym_value_binding_pattern] = STATE(7868), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(983), + [sym_real_literal] = ACTIONS(985), + [sym_integer_literal] = ACTIONS(983), + [sym_hex_literal] = ACTIONS(985), + [sym_oct_literal] = ACTIONS(985), + [sym_bin_literal] = ACTIONS(985), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(983), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(983), + [anon_sym_POUNDfileID] = ACTIONS(985), + [anon_sym_POUNDfilePath] = ACTIONS(985), + [anon_sym_POUNDline] = ACTIONS(985), + [anon_sym_POUNDcolumn] = ACTIONS(985), + [anon_sym_POUNDfunction] = ACTIONS(985), + [anon_sym_POUNDdsohandle] = ACTIONS(985), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_case] = ACTIONS(947), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ_EQ] = ACTIONS(983), + [anon_sym_EQ_EQ_EQ] = ACTIONS(983), + [anon_sym_LT_EQ] = ACTIONS(983), + [anon_sym_GT_EQ] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(983), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_POUNDavailable] = ACTIONS(987), + [anon_sym_let] = ACTIONS(961), + [anon_sym_var] = ACTIONS(961), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(985), + [sym__plus_then_ws] = ACTIONS(985), + [sym__minus_then_ws] = ACTIONS(985), + [sym_bang] = ACTIONS(481), + }, + [136] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(2213), + [sym_boolean_literal] = STATE(2213), + [sym__string_literal] = STATE(2213), + [sym_line_string_literal] = STATE(2213), + [sym_multi_line_string_literal] = STATE(2213), + [sym_raw_string_literal] = STATE(2213), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(2213), + [sym__unary_expression] = STATE(2213), + [sym_postfix_expression] = STATE(2213), + [sym_constructor_expression] = STATE(2213), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(2213), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(2213), + [sym_prefix_expression] = STATE(2213), + [sym_as_expression] = STATE(2213), + [sym_selector_expression] = STATE(2213), + [sym__binary_expression] = STATE(2213), + [sym_multiplicative_expression] = STATE(2213), + [sym_additive_expression] = STATE(2213), + [sym_range_expression] = STATE(2213), + [sym_infix_expression] = STATE(2213), + [sym_nil_coalescing_expression] = STATE(2213), + [sym_check_expression] = STATE(2213), + [sym_comparison_expression] = STATE(2213), + [sym_equality_expression] = STATE(2213), + [sym_conjunction_expression] = STATE(2213), + [sym_disjunction_expression] = STATE(2213), + [sym_bitwise_operation] = STATE(2213), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(2213), + [sym_await_expression] = STATE(2213), + [sym_ternary_expression] = STATE(2213), + [sym_call_expression] = STATE(2760), + [sym__primary_expression] = STATE(2213), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(2213), + [sym_dictionary_literal] = STATE(2213), + [sym__special_literal] = STATE(2213), + [sym__playground_literal] = STATE(2213), + [sym_lambda_literal] = STATE(2213), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(2213), + [sym__if_condition_sequence_item] = STATE(7867), + [sym__if_let_binding] = STATE(7867), + [sym_key_path_expression] = STATE(2213), + [sym_key_path_string_expression] = STATE(2213), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(2213), + [sym__comparison_operator] = STATE(2213), + [sym__additive_operator] = STATE(2213), + [sym__multiplicative_operator] = STATE(2213), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(2213), + [sym_availability_condition] = STATE(7867), + [sym__referenceable_operator] = STATE(2213), + [sym__eq_eq] = STATE(2213), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [sym__async_modifier] = STATE(10399), + [sym__direct_or_indirect_binding] = STATE(8654), + [sym_value_binding_pattern] = STATE(7868), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [anon_sym_nil] = ACTIONS(913), + [sym_real_literal] = ACTIONS(915), + [sym_integer_literal] = ACTIONS(913), + [sym_hex_literal] = ACTIONS(915), + [sym_oct_literal] = ACTIONS(915), + [sym_bin_literal] = ACTIONS(915), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(931), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(913), + [sym__await_operator] = ACTIONS(937), + [anon_sym_POUNDfile] = ACTIONS(913), + [anon_sym_POUNDfileID] = ACTIONS(915), + [anon_sym_POUNDfilePath] = ACTIONS(915), + [anon_sym_POUNDline] = ACTIONS(915), + [anon_sym_POUNDcolumn] = ACTIONS(915), + [anon_sym_POUNDfunction] = ACTIONS(915), + [anon_sym_POUNDdsohandle] = ACTIONS(915), + [anon_sym_POUNDcolorLiteral] = ACTIONS(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_case] = ACTIONS(947), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ_EQ] = ACTIONS(913), + [anon_sym_EQ_EQ_EQ] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_PERCENT] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [anon_sym_POUNDavailable] = ACTIONS(959), + [anon_sym_let] = ACTIONS(961), + [anon_sym_var] = ACTIONS(961), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(915), + [sym__plus_then_ws] = ACTIONS(915), + [sym__minus_then_ws] = ACTIONS(915), + [sym_bang] = ACTIONS(971), + }, + [137] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2223), + [sym_boolean_literal] = STATE(2223), + [sym__string_literal] = STATE(2223), + [sym_line_string_literal] = STATE(2223), + [sym_multi_line_string_literal] = STATE(2223), + [sym_raw_string_literal] = STATE(2223), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2223), + [sym__unary_expression] = STATE(2223), + [sym_postfix_expression] = STATE(2223), + [sym_constructor_expression] = STATE(2223), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2223), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2223), + [sym_prefix_expression] = STATE(2223), + [sym_as_expression] = STATE(2223), + [sym_selector_expression] = STATE(2223), + [sym__binary_expression] = STATE(2223), + [sym_multiplicative_expression] = STATE(2223), + [sym_additive_expression] = STATE(2223), + [sym_range_expression] = STATE(2223), + [sym_infix_expression] = STATE(2223), + [sym_nil_coalescing_expression] = STATE(2223), + [sym_check_expression] = STATE(2223), + [sym_comparison_expression] = STATE(2223), + [sym_equality_expression] = STATE(2223), + [sym_conjunction_expression] = STATE(2223), + [sym_disjunction_expression] = STATE(2223), + [sym_bitwise_operation] = STATE(2223), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2223), + [sym_await_expression] = STATE(2223), + [sym_ternary_expression] = STATE(2223), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2223), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2223), + [sym_dictionary_literal] = STATE(2223), + [sym__special_literal] = STATE(2223), + [sym__playground_literal] = STATE(2223), + [sym_lambda_literal] = STATE(2223), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2223), + [sym__if_condition_sequence_item] = STATE(7832), + [sym__if_let_binding] = STATE(7832), + [sym_key_path_expression] = STATE(2223), + [sym_key_path_string_expression] = STATE(2223), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2223), + [sym__comparison_operator] = STATE(2223), + [sym__additive_operator] = STATE(2223), + [sym__multiplicative_operator] = STATE(2223), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2223), + [sym_availability_condition] = STATE(7832), + [sym__referenceable_operator] = STATE(2223), + [sym__eq_eq] = STATE(2223), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym__async_modifier] = STATE(10399), + [sym__direct_or_indirect_binding] = STATE(8263), + [sym_value_binding_pattern] = STATE(7868), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(973), + [sym_real_literal] = ACTIONS(975), + [sym_integer_literal] = ACTIONS(973), + [sym_hex_literal] = ACTIONS(975), + [sym_oct_literal] = ACTIONS(975), + [sym_bin_literal] = ACTIONS(975), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(979), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(973), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(973), + [anon_sym_POUNDfileID] = ACTIONS(975), + [anon_sym_POUNDfilePath] = ACTIONS(975), + [anon_sym_POUNDline] = ACTIONS(975), + [anon_sym_POUNDcolumn] = ACTIONS(975), + [anon_sym_POUNDfunction] = ACTIONS(975), + [anon_sym_POUNDdsohandle] = ACTIONS(975), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_case] = ACTIONS(947), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ_EQ] = ACTIONS(973), + [anon_sym_EQ_EQ_EQ] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_PERCENT] = ACTIONS(973), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_POUNDavailable] = ACTIONS(981), + [anon_sym_let] = ACTIONS(961), + [anon_sym_var] = ACTIONS(961), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(975), + [sym__plus_then_ws] = ACTIONS(975), + [sym__minus_then_ws] = ACTIONS(975), + [sym_bang] = ACTIONS(833), + }, + [138] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(1667), + [sym_boolean_literal] = STATE(1667), + [sym__string_literal] = STATE(1667), + [sym_line_string_literal] = STATE(1667), + [sym_multi_line_string_literal] = STATE(1667), + [sym_raw_string_literal] = STATE(1667), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(1667), + [sym__unary_expression] = STATE(1667), + [sym_postfix_expression] = STATE(1667), + [sym_constructor_expression] = STATE(1667), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(1667), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(1667), + [sym_prefix_expression] = STATE(1667), + [sym_as_expression] = STATE(1667), + [sym_selector_expression] = STATE(1667), + [sym__binary_expression] = STATE(1667), + [sym_multiplicative_expression] = STATE(1667), + [sym_additive_expression] = STATE(1667), + [sym_range_expression] = STATE(1667), + [sym_infix_expression] = STATE(1667), + [sym_nil_coalescing_expression] = STATE(1667), + [sym_check_expression] = STATE(1667), + [sym_comparison_expression] = STATE(1667), + [sym_equality_expression] = STATE(1667), + [sym_conjunction_expression] = STATE(1667), + [sym_disjunction_expression] = STATE(1667), + [sym_bitwise_operation] = STATE(1667), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(1667), + [sym_await_expression] = STATE(1667), + [sym_ternary_expression] = STATE(1667), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(1667), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(1667), + [sym_dictionary_literal] = STATE(1667), + [sym__special_literal] = STATE(1667), + [sym__playground_literal] = STATE(1667), + [sym_lambda_literal] = STATE(1667), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(1667), + [sym__if_condition_sequence_item] = STATE(7081), + [sym__if_let_binding] = STATE(7081), + [sym_key_path_expression] = STATE(1667), + [sym_key_path_string_expression] = STATE(1667), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1667), + [sym__additive_operator] = STATE(1667), + [sym__multiplicative_operator] = STATE(1667), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(1667), + [sym_availability_condition] = STATE(7081), + [sym__referenceable_operator] = STATE(1667), + [sym__eq_eq] = STATE(1667), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10399), + [sym__direct_or_indirect_binding] = STATE(8241), + [sym_value_binding_pattern] = STATE(7868), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(989), + [sym_real_literal] = ACTIONS(991), + [sym_integer_literal] = ACTIONS(989), + [sym_hex_literal] = ACTIONS(991), + [sym_oct_literal] = ACTIONS(991), + [sym_bin_literal] = ACTIONS(991), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_GT] = ACTIONS(989), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(989), + [anon_sym_POUNDfileID] = ACTIONS(991), + [anon_sym_POUNDfilePath] = ACTIONS(991), + [anon_sym_POUNDline] = ACTIONS(991), + [anon_sym_POUNDcolumn] = ACTIONS(991), + [anon_sym_POUNDfunction] = ACTIONS(991), + [anon_sym_POUNDdsohandle] = ACTIONS(991), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_case] = ACTIONS(947), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(989), + [anon_sym_BANG_EQ_EQ] = ACTIONS(989), + [anon_sym_EQ_EQ_EQ] = ACTIONS(989), + [anon_sym_LT_EQ] = ACTIONS(989), + [anon_sym_GT_EQ] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_SLASH] = ACTIONS(989), + [anon_sym_PERCENT] = ACTIONS(989), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_POUNDavailable] = ACTIONS(993), + [anon_sym_let] = ACTIONS(961), + [anon_sym_var] = ACTIONS(961), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(991), + [sym__plus_then_ws] = ACTIONS(991), + [sym__minus_then_ws] = ACTIONS(991), + [sym_bang] = ACTIONS(137), + }, + [139] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(1667), + [sym_boolean_literal] = STATE(1667), + [sym__string_literal] = STATE(1667), + [sym_line_string_literal] = STATE(1667), + [sym_multi_line_string_literal] = STATE(1667), + [sym_raw_string_literal] = STATE(1667), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(1667), + [sym__unary_expression] = STATE(1667), + [sym_postfix_expression] = STATE(1667), + [sym_constructor_expression] = STATE(1667), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(1667), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(1667), + [sym_prefix_expression] = STATE(1667), + [sym_as_expression] = STATE(1667), + [sym_selector_expression] = STATE(1667), + [sym__binary_expression] = STATE(1667), + [sym_multiplicative_expression] = STATE(1667), + [sym_additive_expression] = STATE(1667), + [sym_range_expression] = STATE(1667), + [sym_infix_expression] = STATE(1667), + [sym_nil_coalescing_expression] = STATE(1667), + [sym_check_expression] = STATE(1667), + [sym_comparison_expression] = STATE(1667), + [sym_equality_expression] = STATE(1667), + [sym_conjunction_expression] = STATE(1667), + [sym_disjunction_expression] = STATE(1667), + [sym_bitwise_operation] = STATE(1667), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(1667), + [sym_await_expression] = STATE(1667), + [sym_ternary_expression] = STATE(1667), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(1667), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(1667), + [sym_dictionary_literal] = STATE(1667), + [sym__special_literal] = STATE(1667), + [sym__playground_literal] = STATE(1667), + [sym_lambda_literal] = STATE(1667), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(1667), + [sym__if_condition_sequence_item] = STATE(7215), + [sym__if_let_binding] = STATE(7215), + [sym_key_path_expression] = STATE(1667), + [sym_key_path_string_expression] = STATE(1667), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1667), + [sym__additive_operator] = STATE(1667), + [sym__multiplicative_operator] = STATE(1667), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(1667), + [sym_availability_condition] = STATE(7215), + [sym__referenceable_operator] = STATE(1667), + [sym__eq_eq] = STATE(1667), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10399), + [sym__direct_or_indirect_binding] = STATE(8241), + [sym_value_binding_pattern] = STATE(7868), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(989), + [sym_real_literal] = ACTIONS(991), + [sym_integer_literal] = ACTIONS(989), + [sym_hex_literal] = ACTIONS(991), + [sym_oct_literal] = ACTIONS(991), + [sym_bin_literal] = ACTIONS(991), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_GT] = ACTIONS(989), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(989), + [anon_sym_POUNDfileID] = ACTIONS(991), + [anon_sym_POUNDfilePath] = ACTIONS(991), + [anon_sym_POUNDline] = ACTIONS(991), + [anon_sym_POUNDcolumn] = ACTIONS(991), + [anon_sym_POUNDfunction] = ACTIONS(991), + [anon_sym_POUNDdsohandle] = ACTIONS(991), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_case] = ACTIONS(947), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(989), + [anon_sym_BANG_EQ_EQ] = ACTIONS(989), + [anon_sym_EQ_EQ_EQ] = ACTIONS(989), + [anon_sym_LT_EQ] = ACTIONS(989), + [anon_sym_GT_EQ] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_SLASH] = ACTIONS(989), + [anon_sym_PERCENT] = ACTIONS(989), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_POUNDavailable] = ACTIONS(993), + [anon_sym_let] = ACTIONS(961), + [anon_sym_var] = ACTIONS(961), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(991), + [sym__plus_then_ws] = ACTIONS(991), + [sym__minus_then_ws] = ACTIONS(991), + [sym_bang] = ACTIONS(137), + }, + [140] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1156), + [sym__unary_expression] = STATE(1156), + [sym_postfix_expression] = STATE(1156), + [sym_constructor_expression] = STATE(1156), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1156), + [sym__range_operator] = STATE(1037), + [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(1156), + [sym_multiplicative_expression] = STATE(1156), + [sym_additive_expression] = STATE(1156), + [sym_range_expression] = STATE(1156), + [sym_infix_expression] = STATE(1156), + [sym_nil_coalescing_expression] = STATE(1156), + [sym_check_expression] = STATE(1156), + [sym_comparison_expression] = STATE(1156), + [sym_equality_expression] = STATE(1156), + [sym_conjunction_expression] = STATE(1156), + [sym_disjunction_expression] = STATE(1156), + [sym_bitwise_operation] = STATE(1156), + [sym_custom_operator] = STATE(1134), + [sym_try_expression] = STATE(1156), + [sym_await_expression] = STATE(1156), + [sym_ternary_expression] = STATE(1156), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1156), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1156), + [sym__if_condition_sequence_item] = STATE(3523), + [sym__if_let_binding] = STATE(3523), + [sym_key_path_expression] = STATE(1156), + [sym_key_path_string_expression] = STATE(1156), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1156), + [sym__comparison_operator] = STATE(1156), + [sym__additive_operator] = STATE(1156), + [sym__multiplicative_operator] = STATE(1156), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1156), + [sym_availability_condition] = STATE(3523), + [sym__referenceable_operator] = STATE(1156), + [sym__eq_eq] = STATE(1156), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [sym__async_modifier] = STATE(10399), + [sym__direct_or_indirect_binding] = STATE(8235), + [sym_value_binding_pattern] = STATE(7868), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(983), + [sym_real_literal] = ACTIONS(985), + [sym_integer_literal] = ACTIONS(983), + [sym_hex_literal] = ACTIONS(985), + [sym_oct_literal] = ACTIONS(985), + [sym_bin_literal] = ACTIONS(985), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(983), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(983), + [anon_sym_POUNDfileID] = ACTIONS(985), + [anon_sym_POUNDfilePath] = ACTIONS(985), + [anon_sym_POUNDline] = ACTIONS(985), + [anon_sym_POUNDcolumn] = ACTIONS(985), + [anon_sym_POUNDfunction] = ACTIONS(985), + [anon_sym_POUNDdsohandle] = ACTIONS(985), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_case] = ACTIONS(947), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ_EQ] = ACTIONS(983), + [anon_sym_EQ_EQ_EQ] = ACTIONS(983), + [anon_sym_LT_EQ] = ACTIONS(983), + [anon_sym_GT_EQ] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(983), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_POUNDavailable] = ACTIONS(987), + [anon_sym_let] = ACTIONS(961), + [anon_sym_var] = ACTIONS(961), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(985), + [sym__plus_then_ws] = ACTIONS(985), + [sym__minus_then_ws] = ACTIONS(985), + [sym_bang] = ACTIONS(481), + }, + [141] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1156), + [sym__unary_expression] = STATE(1156), + [sym_postfix_expression] = STATE(1156), + [sym_constructor_expression] = STATE(1156), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1156), + [sym__range_operator] = STATE(1037), + [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(1156), + [sym_multiplicative_expression] = STATE(1156), + [sym_additive_expression] = STATE(1156), + [sym_range_expression] = STATE(1156), + [sym_infix_expression] = STATE(1156), + [sym_nil_coalescing_expression] = STATE(1156), + [sym_check_expression] = STATE(1156), + [sym_comparison_expression] = STATE(1156), + [sym_equality_expression] = STATE(1156), + [sym_conjunction_expression] = STATE(1156), + [sym_disjunction_expression] = STATE(1156), + [sym_bitwise_operation] = STATE(1156), + [sym_custom_operator] = STATE(1134), + [sym_try_expression] = STATE(1156), + [sym_await_expression] = STATE(1156), + [sym_ternary_expression] = STATE(1156), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1156), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1156), + [sym__if_condition_sequence_item] = STATE(3537), + [sym__if_let_binding] = STATE(3537), + [sym_key_path_expression] = STATE(1156), + [sym_key_path_string_expression] = STATE(1156), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1156), + [sym__comparison_operator] = STATE(1156), + [sym__additive_operator] = STATE(1156), + [sym__multiplicative_operator] = STATE(1156), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1156), + [sym_availability_condition] = STATE(3537), + [sym__referenceable_operator] = STATE(1156), + [sym__eq_eq] = STATE(1156), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [sym__async_modifier] = STATE(10399), + [sym__direct_or_indirect_binding] = STATE(8235), + [sym_value_binding_pattern] = STATE(7868), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(983), + [sym_real_literal] = ACTIONS(985), + [sym_integer_literal] = ACTIONS(983), + [sym_hex_literal] = ACTIONS(985), + [sym_oct_literal] = ACTIONS(985), + [sym_bin_literal] = ACTIONS(985), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(411), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(983), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(983), + [anon_sym_POUNDfileID] = ACTIONS(985), + [anon_sym_POUNDfilePath] = ACTIONS(985), + [anon_sym_POUNDline] = ACTIONS(985), + [anon_sym_POUNDcolumn] = ACTIONS(985), + [anon_sym_POUNDfunction] = ACTIONS(985), + [anon_sym_POUNDdsohandle] = ACTIONS(985), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_case] = ACTIONS(947), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ_EQ] = ACTIONS(983), + [anon_sym_EQ_EQ_EQ] = ACTIONS(983), + [anon_sym_LT_EQ] = ACTIONS(983), + [anon_sym_GT_EQ] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(983), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [anon_sym_POUNDavailable] = ACTIONS(987), + [anon_sym_let] = ACTIONS(961), + [anon_sym_var] = ACTIONS(961), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(985), + [sym__plus_then_ws] = ACTIONS(985), + [sym__minus_then_ws] = ACTIONS(985), + [sym_bang] = ACTIONS(481), + }, + [142] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(1667), + [sym_boolean_literal] = STATE(1667), + [sym__string_literal] = STATE(1667), + [sym_line_string_literal] = STATE(1667), + [sym_multi_line_string_literal] = STATE(1667), + [sym_raw_string_literal] = STATE(1667), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(1667), + [sym__unary_expression] = STATE(1667), + [sym_postfix_expression] = STATE(1667), + [sym_constructor_expression] = STATE(1667), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(1667), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(1667), + [sym_prefix_expression] = STATE(1667), + [sym_as_expression] = STATE(1667), + [sym_selector_expression] = STATE(1667), + [sym__binary_expression] = STATE(1667), + [sym_multiplicative_expression] = STATE(1667), + [sym_additive_expression] = STATE(1667), + [sym_range_expression] = STATE(1667), + [sym_infix_expression] = STATE(1667), + [sym_nil_coalescing_expression] = STATE(1667), + [sym_check_expression] = STATE(1667), + [sym_comparison_expression] = STATE(1667), + [sym_equality_expression] = STATE(1667), + [sym_conjunction_expression] = STATE(1667), + [sym_disjunction_expression] = STATE(1667), + [sym_bitwise_operation] = STATE(1667), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(1667), + [sym_await_expression] = STATE(1667), + [sym_ternary_expression] = STATE(1667), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(1667), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(1667), + [sym_dictionary_literal] = STATE(1667), + [sym__special_literal] = STATE(1667), + [sym__playground_literal] = STATE(1667), + [sym_lambda_literal] = STATE(1667), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(1667), + [sym__if_condition_sequence_item] = STATE(8051), + [sym__if_let_binding] = STATE(8051), + [sym_key_path_expression] = STATE(1667), + [sym_key_path_string_expression] = STATE(1667), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(1667), + [sym__comparison_operator] = STATE(1667), + [sym__additive_operator] = STATE(1667), + [sym__multiplicative_operator] = STATE(1667), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(1667), + [sym_availability_condition] = STATE(8051), + [sym__referenceable_operator] = STATE(1667), + [sym__eq_eq] = STATE(1667), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [sym__async_modifier] = STATE(10399), + [sym__direct_or_indirect_binding] = STATE(8241), + [sym_value_binding_pattern] = STATE(7868), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(989), + [sym_real_literal] = ACTIONS(991), + [sym_integer_literal] = ACTIONS(989), + [sym_hex_literal] = ACTIONS(991), + [sym_oct_literal] = ACTIONS(991), + [sym_bin_literal] = ACTIONS(991), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(33), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_GT] = ACTIONS(989), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(989), + [anon_sym_POUNDfileID] = ACTIONS(991), + [anon_sym_POUNDfilePath] = ACTIONS(991), + [anon_sym_POUNDline] = ACTIONS(991), + [anon_sym_POUNDcolumn] = ACTIONS(991), + [anon_sym_POUNDfunction] = ACTIONS(991), + [anon_sym_POUNDdsohandle] = ACTIONS(991), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_case] = ACTIONS(947), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(989), + [anon_sym_BANG_EQ_EQ] = ACTIONS(989), + [anon_sym_EQ_EQ_EQ] = ACTIONS(989), + [anon_sym_LT_EQ] = ACTIONS(989), + [anon_sym_GT_EQ] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_SLASH] = ACTIONS(989), + [anon_sym_PERCENT] = ACTIONS(989), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_POUNDavailable] = ACTIONS(993), + [anon_sym_let] = ACTIONS(961), + [anon_sym_var] = ACTIONS(961), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(991), + [sym__plus_then_ws] = ACTIONS(991), + [sym__minus_then_ws] = ACTIONS(991), + [sym_bang] = ACTIONS(137), + }, + [143] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_switch_pattern] = STATE(9301), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(8740), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [144] = { + [sym_simple_identifier] = STATE(2568), + [sym__basic_literal] = STATE(1764), + [sym_boolean_literal] = STATE(1764), + [sym__string_literal] = STATE(1764), + [sym_line_string_literal] = STATE(1764), + [sym_multi_line_string_literal] = STATE(1764), + [sym_raw_string_literal] = STATE(1764), + [sym_user_type] = STATE(5925), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1764), + [sym__unary_expression] = STATE(1764), + [sym_postfix_expression] = STATE(1764), + [sym_constructor_expression] = STATE(1764), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1764), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1764), + [sym_prefix_expression] = STATE(1764), + [sym_as_expression] = STATE(1764), + [sym_selector_expression] = STATE(1764), + [sym__binary_expression] = STATE(1764), + [sym_multiplicative_expression] = STATE(1764), + [sym_additive_expression] = STATE(1764), + [sym_range_expression] = STATE(1764), + [sym_infix_expression] = STATE(1764), + [sym_nil_coalescing_expression] = STATE(1764), + [sym_check_expression] = STATE(1764), + [sym_comparison_expression] = STATE(1764), + [sym_equality_expression] = STATE(1764), + [sym_conjunction_expression] = STATE(1764), + [sym_disjunction_expression] = STATE(1764), + [sym_bitwise_operation] = STATE(1764), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1764), + [sym_await_expression] = STATE(1764), + [sym_ternary_expression] = STATE(1764), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1764), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1764), + [sym_dictionary_literal] = STATE(1764), + [sym__special_literal] = STATE(1764), + [sym__playground_literal] = STATE(1764), + [sym_lambda_literal] = STATE(1764), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1764), + [sym_switch_pattern] = STATE(7116), + [sym_key_path_expression] = STATE(1764), + [sym_key_path_string_expression] = STATE(1764), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1764), + [sym__comparison_operator] = STATE(1764), + [sym__additive_operator] = STATE(1764), + [sym__multiplicative_operator] = STATE(1764), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1764), + [sym__referenceable_operator] = STATE(1764), + [sym__eq_eq] = STATE(1764), + [sym__dot] = STATE(2251), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [sym_binding_pattern] = STATE(8719), + [sym__binding_pattern_with_expr] = STATE(7734), + [sym_binding_pattern_kind] = STATE(4894), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1025), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_GT] = ACTIONS(1013), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1013), + [anon_sym_LT_EQ] = ACTIONS(1013), + [anon_sym_GT_EQ] = ACTIONS(1013), + [anon_sym_is] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1013), + [anon_sym_SLASH] = ACTIONS(1013), + [anon_sym_PERCENT] = ACTIONS(1013), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1059), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1063), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1015), + [sym__plus_then_ws] = ACTIONS(1015), + [sym__minus_then_ws] = ACTIONS(1015), + [sym_bang] = ACTIONS(1069), + }, + [145] = { + [sym_simple_identifier] = STATE(2568), + [sym__basic_literal] = STATE(1764), + [sym_boolean_literal] = STATE(1764), + [sym__string_literal] = STATE(1764), + [sym_line_string_literal] = STATE(1764), + [sym_multi_line_string_literal] = STATE(1764), + [sym_raw_string_literal] = STATE(1764), + [sym_user_type] = STATE(5925), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1764), + [sym__unary_expression] = STATE(1764), + [sym_postfix_expression] = STATE(1764), + [sym_constructor_expression] = STATE(1764), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1764), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1764), + [sym_prefix_expression] = STATE(1764), + [sym_as_expression] = STATE(1764), + [sym_selector_expression] = STATE(1764), + [sym__binary_expression] = STATE(1764), + [sym_multiplicative_expression] = STATE(1764), + [sym_additive_expression] = STATE(1764), + [sym_range_expression] = STATE(1764), + [sym_infix_expression] = STATE(1764), + [sym_nil_coalescing_expression] = STATE(1764), + [sym_check_expression] = STATE(1764), + [sym_comparison_expression] = STATE(1764), + [sym_equality_expression] = STATE(1764), + [sym_conjunction_expression] = STATE(1764), + [sym_disjunction_expression] = STATE(1764), + [sym_bitwise_operation] = STATE(1764), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1764), + [sym_await_expression] = STATE(1764), + [sym_ternary_expression] = STATE(1764), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1764), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1764), + [sym_dictionary_literal] = STATE(1764), + [sym__special_literal] = STATE(1764), + [sym__playground_literal] = STATE(1764), + [sym_lambda_literal] = STATE(1764), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1764), + [sym_switch_pattern] = STATE(7252), + [sym_key_path_expression] = STATE(1764), + [sym_key_path_string_expression] = STATE(1764), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1764), + [sym__comparison_operator] = STATE(1764), + [sym__additive_operator] = STATE(1764), + [sym__multiplicative_operator] = STATE(1764), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1764), + [sym__referenceable_operator] = STATE(1764), + [sym__eq_eq] = STATE(1764), + [sym__dot] = STATE(2251), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [sym_binding_pattern] = STATE(8719), + [sym__binding_pattern_with_expr] = STATE(7734), + [sym_binding_pattern_kind] = STATE(4894), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1025), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1013), + [anon_sym_GT] = ACTIONS(1013), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1013), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1013), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1013), + [anon_sym_LT_EQ] = ACTIONS(1013), + [anon_sym_GT_EQ] = ACTIONS(1013), + [anon_sym_is] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1013), + [anon_sym_SLASH] = ACTIONS(1013), + [anon_sym_PERCENT] = ACTIONS(1013), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1059), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1063), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1015), + [sym__plus_then_ws] = ACTIONS(1015), + [sym__minus_then_ws] = ACTIONS(1015), + [sym_bang] = ACTIONS(1069), + }, + [146] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7798), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [147] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(8076), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [148] = { + [sym_simple_identifier] = STATE(2572), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7578), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [149] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7683), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [150] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7582), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [151] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7597), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [152] = { + [sym_simple_identifier] = STATE(2604), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(8152), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [153] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7508), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [154] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym__interpolation_contents] = STATE(10273), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7725), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [155] = { + [sym_simple_identifier] = STATE(2567), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7601), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [156] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7736), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [157] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7898), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [158] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym__interpolation_contents] = STATE(10375), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7725), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [159] = { + [sym_simple_identifier] = STATE(2564), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7740), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [160] = { + [sym_simple_identifier] = STATE(2586), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7614), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [161] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7417), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1083), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [162] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7498), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [163] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7491), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [164] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7976), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [165] = { + [sym_simple_identifier] = STATE(2646), + [sym__basic_literal] = STATE(1648), + [sym_boolean_literal] = STATE(1648), + [sym__string_literal] = STATE(1648), + [sym_line_string_literal] = STATE(1648), + [sym_multi_line_string_literal] = STATE(1648), + [sym_raw_string_literal] = STATE(1648), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1648), + [sym__unary_expression] = STATE(1648), + [sym_postfix_expression] = STATE(1648), + [sym_constructor_expression] = STATE(1648), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1648), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1648), + [sym_prefix_expression] = STATE(1648), + [sym_as_expression] = STATE(1648), + [sym_selector_expression] = STATE(1648), + [sym__binary_expression] = STATE(1648), + [sym_multiplicative_expression] = STATE(1648), + [sym_additive_expression] = STATE(1648), + [sym_range_expression] = STATE(1648), + [sym_infix_expression] = STATE(1648), + [sym_nil_coalescing_expression] = STATE(1648), + [sym_check_expression] = STATE(1648), + [sym_comparison_expression] = STATE(1648), + [sym_equality_expression] = STATE(1648), + [sym_conjunction_expression] = STATE(1648), + [sym_disjunction_expression] = STATE(1648), + [sym_bitwise_operation] = STATE(1648), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1648), + [sym_await_expression] = STATE(1648), + [sym_ternary_expression] = STATE(1648), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1648), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1648), + [sym_dictionary_literal] = STATE(1648), + [sym__special_literal] = STATE(1648), + [sym__playground_literal] = STATE(1648), + [sym_lambda_literal] = STATE(1648), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1648), + [sym_key_path_expression] = STATE(1648), + [sym_key_path_string_expression] = STATE(1648), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1648), + [sym__comparison_operator] = STATE(1648), + [sym__additive_operator] = STATE(1648), + [sym__multiplicative_operator] = STATE(1648), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1648), + [sym__referenceable_operator] = STATE(1648), + [sym__eq_eq] = STATE(1648), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(6963), + [sym__binding_pattern_with_expr] = STATE(7624), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1089), + [sym_real_literal] = ACTIONS(1091), + [sym_integer_literal] = ACTIONS(1089), + [sym_hex_literal] = ACTIONS(1091), + [sym_oct_literal] = ACTIONS(1091), + [sym_bin_literal] = ACTIONS(1091), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1089), + [anon_sym_GT] = ACTIONS(1089), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1089), + [anon_sym_POUNDfileID] = ACTIONS(1091), + [anon_sym_POUNDfilePath] = ACTIONS(1091), + [anon_sym_POUNDline] = ACTIONS(1091), + [anon_sym_POUNDcolumn] = ACTIONS(1091), + [anon_sym_POUNDfunction] = ACTIONS(1091), + [anon_sym_POUNDdsohandle] = ACTIONS(1091), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1089), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1089), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1089), + [anon_sym_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_EQ] = ACTIONS(1089), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_SLASH] = ACTIONS(1089), + [anon_sym_PERCENT] = ACTIONS(1089), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1091), + [sym__plus_then_ws] = ACTIONS(1091), + [sym__minus_then_ws] = ACTIONS(1091), + [sym_bang] = ACTIONS(833), + }, + [166] = { + [sym_simple_identifier] = STATE(2558), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7363), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [167] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(8069), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [168] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7487), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [169] = { + [sym_simple_identifier] = STATE(2573), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7387), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [170] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7499), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [171] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7486), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [172] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7500), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [173] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym__interpolation_contents] = STATE(10378), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7725), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [174] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7483), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1099), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [175] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(8068), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1101), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [176] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7904), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [177] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7902), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1105), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [178] = { + [sym_simple_identifier] = STATE(2585), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7963), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [179] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7901), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1105), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [180] = { + [sym_simple_identifier] = STATE(2603), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7689), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [181] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(8070), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1093), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [182] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7355), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [183] = { + [sym_simple_identifier] = STATE(2579), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(9501), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [184] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7533), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [185] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7701), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [186] = { + [sym_simple_identifier] = STATE(2612), + [sym__basic_literal] = STATE(1661), + [sym_boolean_literal] = STATE(1661), + [sym__string_literal] = STATE(1661), + [sym_line_string_literal] = STATE(1661), + [sym_multi_line_string_literal] = STATE(1661), + [sym_raw_string_literal] = STATE(1661), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1661), + [sym__unary_expression] = STATE(1661), + [sym_postfix_expression] = STATE(1661), + [sym_constructor_expression] = STATE(1661), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1661), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1661), + [sym_prefix_expression] = STATE(1661), + [sym_as_expression] = STATE(1661), + [sym_selector_expression] = STATE(1661), + [sym__binary_expression] = STATE(1661), + [sym_multiplicative_expression] = STATE(1661), + [sym_additive_expression] = STATE(1661), + [sym_range_expression] = STATE(1661), + [sym_infix_expression] = STATE(1661), + [sym_nil_coalescing_expression] = STATE(1661), + [sym_check_expression] = STATE(1661), + [sym_comparison_expression] = STATE(1661), + [sym_equality_expression] = STATE(1661), + [sym_conjunction_expression] = STATE(1661), + [sym_disjunction_expression] = STATE(1661), + [sym_bitwise_operation] = STATE(1661), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1661), + [sym_await_expression] = STATE(1661), + [sym_ternary_expression] = STATE(1661), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1661), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1661), + [sym_dictionary_literal] = STATE(1661), + [sym__special_literal] = STATE(1661), + [sym__playground_literal] = STATE(1661), + [sym_lambda_literal] = STATE(1661), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1661), + [sym_key_path_expression] = STATE(1661), + [sym_key_path_string_expression] = STATE(1661), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1661), + [sym__comparison_operator] = STATE(1661), + [sym__additive_operator] = STATE(1661), + [sym__multiplicative_operator] = STATE(1661), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1661), + [sym__referenceable_operator] = STATE(1661), + [sym__eq_eq] = STATE(1661), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(6486), + [sym__binding_pattern_with_expr] = STATE(7356), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1111), + [sym_real_literal] = ACTIONS(1113), + [sym_integer_literal] = ACTIONS(1111), + [sym_hex_literal] = ACTIONS(1113), + [sym_oct_literal] = ACTIONS(1113), + [sym_bin_literal] = ACTIONS(1113), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1111), + [anon_sym_POUNDfileID] = ACTIONS(1113), + [anon_sym_POUNDfilePath] = ACTIONS(1113), + [anon_sym_POUNDline] = ACTIONS(1113), + [anon_sym_POUNDcolumn] = ACTIONS(1113), + [anon_sym_POUNDfunction] = ACTIONS(1113), + [anon_sym_POUNDdsohandle] = ACTIONS(1113), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1111), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1111), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1111), + [anon_sym_LT_EQ] = ACTIONS(1111), + [anon_sym_GT_EQ] = ACTIONS(1111), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1111), + [anon_sym_SLASH] = ACTIONS(1111), + [anon_sym_PERCENT] = ACTIONS(1111), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1113), + [sym__plus_then_ws] = ACTIONS(1113), + [sym__minus_then_ws] = ACTIONS(1113), + [sym_bang] = ACTIONS(833), + }, + [187] = { + [sym_simple_identifier] = STATE(2615), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7575), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [188] = { + [sym_simple_identifier] = STATE(2607), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7721), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [189] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7546), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [190] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7828), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [191] = { + [sym_simple_identifier] = STATE(2562), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(8108), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [192] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7807), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [193] = { + [sym_simple_identifier] = STATE(2559), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7661), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [194] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7704), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1115), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [195] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7751), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [196] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7444), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [197] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7420), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [198] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7760), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [199] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7790), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [200] = { + [sym_simple_identifier] = STATE(2565), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(8131), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [201] = { + [sym_simple_identifier] = STATE(2646), + [sym__basic_literal] = STATE(1755), + [sym_boolean_literal] = STATE(1755), + [sym__string_literal] = STATE(1755), + [sym_line_string_literal] = STATE(1755), + [sym_multi_line_string_literal] = STATE(1755), + [sym_raw_string_literal] = STATE(1755), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1755), + [sym__unary_expression] = STATE(1755), + [sym_postfix_expression] = STATE(1755), + [sym_constructor_expression] = STATE(1755), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1755), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1755), + [sym_prefix_expression] = STATE(1755), + [sym_as_expression] = STATE(1755), + [sym_selector_expression] = STATE(1755), + [sym__binary_expression] = STATE(1755), + [sym_multiplicative_expression] = STATE(1755), + [sym_additive_expression] = STATE(1755), + [sym_range_expression] = STATE(1755), + [sym_infix_expression] = STATE(1755), + [sym_nil_coalescing_expression] = STATE(1755), + [sym_check_expression] = STATE(1755), + [sym_comparison_expression] = STATE(1755), + [sym_equality_expression] = STATE(1755), + [sym_conjunction_expression] = STATE(1755), + [sym_disjunction_expression] = STATE(1755), + [sym_bitwise_operation] = STATE(1755), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1755), + [sym_await_expression] = STATE(1755), + [sym_ternary_expression] = STATE(1755), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1755), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1755), + [sym_dictionary_literal] = STATE(1755), + [sym__special_literal] = STATE(1755), + [sym__playground_literal] = STATE(1755), + [sym_lambda_literal] = STATE(1755), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1755), + [sym_key_path_expression] = STATE(1755), + [sym_key_path_string_expression] = STATE(1755), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1755), + [sym__comparison_operator] = STATE(1755), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1755), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1755), + [sym__referenceable_operator] = STATE(1755), + [sym__eq_eq] = STATE(1755), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(6963), + [sym__binding_pattern_with_expr] = STATE(7434), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1117), + [sym_real_literal] = ACTIONS(1119), + [sym_integer_literal] = ACTIONS(1117), + [sym_hex_literal] = ACTIONS(1119), + [sym_oct_literal] = ACTIONS(1119), + [sym_bin_literal] = ACTIONS(1119), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1117), + [anon_sym_GT] = ACTIONS(1117), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1117), + [anon_sym_POUNDfileID] = ACTIONS(1119), + [anon_sym_POUNDfilePath] = ACTIONS(1119), + [anon_sym_POUNDline] = ACTIONS(1119), + [anon_sym_POUNDcolumn] = ACTIONS(1119), + [anon_sym_POUNDfunction] = ACTIONS(1119), + [anon_sym_POUNDdsohandle] = ACTIONS(1119), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1117), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1117), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1117), + [anon_sym_LT_EQ] = ACTIONS(1117), + [anon_sym_GT_EQ] = ACTIONS(1117), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1117), + [anon_sym_SLASH] = ACTIONS(1117), + [anon_sym_PERCENT] = ACTIONS(1117), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1119), + [sym__plus_then_ws] = ACTIONS(1119), + [sym__minus_then_ws] = ACTIONS(1119), + [sym_bang] = ACTIONS(833), + }, + [202] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7369), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [203] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7705), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1115), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [204] = { + [sym_simple_identifier] = STATE(2588), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7435), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [205] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7708), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1121), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [206] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7526), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [207] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(9723), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [208] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7452), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [209] = { + [sym_simple_identifier] = STATE(2594), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7386), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [210] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(8170), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [211] = { + [sym_simple_identifier] = STATE(2610), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7503), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [212] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7466), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1123), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [213] = { + [sym_simple_identifier] = STATE(2609), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7759), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [214] = { + [sym_simple_identifier] = STATE(2590), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7850), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [215] = { + [sym_simple_identifier] = STATE(2598), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7475), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [216] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7463), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1125), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [217] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7462), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1125), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [218] = { + [sym_simple_identifier] = STATE(2592), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7544), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [219] = { + [sym_simple_identifier] = STATE(2560), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7680), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [220] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(8177), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [221] = { + [sym_simple_identifier] = STATE(2602), + [sym__basic_literal] = STATE(1672), + [sym_boolean_literal] = STATE(1672), + [sym__string_literal] = STATE(1672), + [sym_line_string_literal] = STATE(1672), + [sym_multi_line_string_literal] = STATE(1672), + [sym_raw_string_literal] = STATE(1672), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1672), + [sym__unary_expression] = STATE(1672), + [sym_postfix_expression] = STATE(1672), + [sym_constructor_expression] = STATE(1672), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1672), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1672), + [sym_prefix_expression] = STATE(1672), + [sym_as_expression] = STATE(1672), + [sym_selector_expression] = STATE(1672), + [sym__binary_expression] = STATE(1672), + [sym_multiplicative_expression] = STATE(1672), + [sym_additive_expression] = STATE(1672), + [sym_range_expression] = STATE(1672), + [sym_infix_expression] = STATE(1672), + [sym_nil_coalescing_expression] = STATE(1672), + [sym_check_expression] = STATE(1672), + [sym_comparison_expression] = STATE(1672), + [sym_equality_expression] = STATE(1672), + [sym_conjunction_expression] = STATE(1672), + [sym_disjunction_expression] = STATE(1672), + [sym_bitwise_operation] = STATE(1672), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1672), + [sym_await_expression] = STATE(1672), + [sym_ternary_expression] = STATE(1672), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1672), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1672), + [sym_dictionary_literal] = STATE(1672), + [sym__special_literal] = STATE(1672), + [sym__playground_literal] = STATE(1672), + [sym_lambda_literal] = STATE(1672), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1672), + [sym_key_path_expression] = STATE(1672), + [sym_key_path_string_expression] = STATE(1672), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1672), + [sym__comparison_operator] = STATE(1672), + [sym__additive_operator] = STATE(1672), + [sym__multiplicative_operator] = STATE(1672), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1672), + [sym__referenceable_operator] = STATE(1672), + [sym__eq_eq] = STATE(1672), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(6486), + [sym__binding_pattern_with_expr] = STATE(8003), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1127), + [sym_real_literal] = ACTIONS(1129), + [sym_integer_literal] = ACTIONS(1127), + [sym_hex_literal] = ACTIONS(1129), + [sym_oct_literal] = ACTIONS(1129), + [sym_bin_literal] = ACTIONS(1129), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1127), + [anon_sym_GT] = ACTIONS(1127), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1127), + [anon_sym_POUNDfileID] = ACTIONS(1129), + [anon_sym_POUNDfilePath] = ACTIONS(1129), + [anon_sym_POUNDline] = ACTIONS(1129), + [anon_sym_POUNDcolumn] = ACTIONS(1129), + [anon_sym_POUNDfunction] = ACTIONS(1129), + [anon_sym_POUNDdsohandle] = ACTIONS(1129), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1127), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1127), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1127), + [anon_sym_LT_EQ] = ACTIONS(1127), + [anon_sym_GT_EQ] = ACTIONS(1127), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1127), + [anon_sym_SLASH] = ACTIONS(1127), + [anon_sym_PERCENT] = ACTIONS(1127), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1129), + [sym__plus_then_ws] = ACTIONS(1129), + [sym__minus_then_ws] = ACTIONS(1129), + [sym_bang] = ACTIONS(833), + }, + [222] = { + [sym_simple_identifier] = STATE(2611), + [sym__basic_literal] = STATE(1922), + [sym_boolean_literal] = STATE(1922), + [sym__string_literal] = STATE(1922), + [sym_line_string_literal] = STATE(1922), + [sym_multi_line_string_literal] = STATE(1922), + [sym_raw_string_literal] = STATE(1922), + [sym_user_type] = STATE(5692), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1922), + [sym__unary_expression] = STATE(1922), + [sym_postfix_expression] = STATE(1922), + [sym_constructor_expression] = STATE(1922), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1922), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1922), + [sym_prefix_expression] = STATE(1922), + [sym_as_expression] = STATE(1922), + [sym_selector_expression] = STATE(1922), + [sym__binary_expression] = STATE(1922), + [sym_multiplicative_expression] = STATE(1922), + [sym_additive_expression] = STATE(1922), + [sym_range_expression] = STATE(1922), + [sym_infix_expression] = STATE(1922), + [sym_nil_coalescing_expression] = STATE(1922), + [sym_check_expression] = STATE(1922), + [sym_comparison_expression] = STATE(1922), + [sym_equality_expression] = STATE(1922), + [sym_conjunction_expression] = STATE(1922), + [sym_disjunction_expression] = STATE(1922), + [sym_bitwise_operation] = STATE(1922), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1922), + [sym_await_expression] = STATE(1922), + [sym_ternary_expression] = STATE(1922), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1922), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1922), + [sym_dictionary_literal] = STATE(1922), + [sym__special_literal] = STATE(1922), + [sym__playground_literal] = STATE(1922), + [sym_lambda_literal] = STATE(1922), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1922), + [sym_key_path_expression] = STATE(1922), + [sym_key_path_string_expression] = STATE(1922), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1922), + [sym__comparison_operator] = STATE(1922), + [sym__additive_operator] = STATE(1922), + [sym__multiplicative_operator] = STATE(1922), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1922), + [sym__referenceable_operator] = STATE(1922), + [sym__eq_eq] = STATE(1922), + [sym__dot] = STATE(2267), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_binding_pattern] = STATE(9254), + [sym__binding_pattern_with_expr] = STATE(7754), + [sym_binding_pattern_kind] = STATE(4949), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(995), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_is] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_var] = ACTIONS(1003), + [sym_wildcard_pattern] = ACTIONS(1005), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1007), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(997), + [sym__plus_then_ws] = ACTIONS(997), + [sym__minus_then_ws] = ACTIONS(997), + [sym_bang] = ACTIONS(833), + }, + [223] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(7625), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [224] = { + [sym_simple_identifier] = STATE(2580), + [sym__basic_literal] = STATE(2127), + [sym_boolean_literal] = STATE(2127), + [sym__string_literal] = STATE(2127), + [sym_line_string_literal] = STATE(2127), + [sym_multi_line_string_literal] = STATE(2127), + [sym_raw_string_literal] = STATE(2127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2127), + [sym__unary_expression] = STATE(2127), + [sym_postfix_expression] = STATE(2127), + [sym_constructor_expression] = STATE(2127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2127), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2127), + [sym_prefix_expression] = STATE(2127), + [sym_as_expression] = STATE(2127), + [sym_selector_expression] = STATE(2127), + [sym__binary_expression] = STATE(2127), + [sym_multiplicative_expression] = STATE(2127), + [sym_additive_expression] = STATE(2127), + [sym_range_expression] = STATE(2127), + [sym_infix_expression] = STATE(2127), + [sym_nil_coalescing_expression] = STATE(2127), + [sym_check_expression] = STATE(2127), + [sym_comparison_expression] = STATE(2127), + [sym_equality_expression] = STATE(2127), + [sym_conjunction_expression] = STATE(2127), + [sym_disjunction_expression] = STATE(2127), + [sym_bitwise_operation] = STATE(2127), + [sym_custom_operator] = STATE(1327), + [sym_value_argument] = STATE(8662), + [sym_try_expression] = STATE(2127), + [sym_await_expression] = STATE(2127), + [sym_ternary_expression] = STATE(2127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2127), + [sym_dictionary_literal] = STATE(2127), + [sym__special_literal] = STATE(2127), + [sym__playground_literal] = STATE(2127), + [sym_lambda_literal] = STATE(2127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2127), + [sym_key_path_expression] = STATE(2127), + [sym_key_path_string_expression] = STATE(2127), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2127), + [sym__comparison_operator] = STATE(2127), + [sym__additive_operator] = STATE(2127), + [sym__multiplicative_operator] = STATE(2127), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2127), + [sym__referenceable_operator] = STATE(2127), + [sym__eq_eq] = STATE(2127), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(2211), + [sym_type_modifiers] = STATE(343), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5413), + [aux_sym_capture_list_repeat1] = STATE(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1071), + [sym_real_literal] = ACTIONS(1073), + [sym_integer_literal] = ACTIONS(1071), + [sym_hex_literal] = ACTIONS(1073), + [sym_oct_literal] = ACTIONS(1073), + [sym_bin_literal] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1077), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1071), + [anon_sym_POUNDfileID] = ACTIONS(1073), + [anon_sym_POUNDfilePath] = ACTIONS(1073), + [anon_sym_POUNDline] = ACTIONS(1073), + [anon_sym_POUNDcolumn] = ACTIONS(1073), + [anon_sym_POUNDfunction] = ACTIONS(1073), + [anon_sym_POUNDdsohandle] = ACTIONS(1073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1071), + [anon_sym_LT_EQ] = ACTIONS(1071), + [anon_sym_GT_EQ] = ACTIONS(1071), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_SLASH] = ACTIONS(1071), + [anon_sym_PERCENT] = ACTIONS(1071), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1073), + [sym__plus_then_ws] = ACTIONS(1073), + [sym__minus_then_ws] = ACTIONS(1073), + [sym_bang] = ACTIONS(833), + }, + [225] = { + [sym_simple_identifier] = STATE(2380), + [sym__basic_literal] = STATE(1961), + [sym_boolean_literal] = STATE(1961), + [sym__string_literal] = STATE(1961), + [sym_line_string_literal] = STATE(1961), + [sym_multi_line_string_literal] = STATE(1961), + [sym_raw_string_literal] = STATE(1961), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1961), + [sym__unary_expression] = STATE(1961), + [sym_postfix_expression] = STATE(1961), + [sym_constructor_expression] = STATE(1961), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1961), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1961), + [sym_prefix_expression] = STATE(1961), + [sym_as_expression] = STATE(1961), + [sym_selector_expression] = STATE(1961), + [sym__binary_expression] = STATE(1961), + [sym_multiplicative_expression] = STATE(1961), + [sym_additive_expression] = STATE(1961), + [sym_range_expression] = STATE(1961), + [sym_infix_expression] = STATE(1961), + [sym_nil_coalescing_expression] = STATE(1961), + [sym_check_expression] = STATE(1961), + [sym_comparison_expression] = STATE(1961), + [sym_equality_expression] = STATE(1961), + [sym_conjunction_expression] = STATE(1961), + [sym_disjunction_expression] = STATE(1961), + [sym_bitwise_operation] = STATE(1961), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1961), + [sym_await_expression] = STATE(1961), + [sym_ternary_expression] = STATE(1961), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1961), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1961), + [sym_dictionary_literal] = STATE(1961), + [sym__special_literal] = STATE(1961), + [sym__playground_literal] = STATE(1961), + [sym_lambda_literal] = STATE(1961), + [sym_lambda_function_type_parameters] = STATE(10368), + [sym_lambda_parameter] = STATE(8087), + [sym_self_expression] = STATE(2787), + [sym_super_expression] = STATE(1961), + [sym_key_path_expression] = STATE(1961), + [sym_key_path_string_expression] = STATE(1961), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1961), + [sym__comparison_operator] = STATE(1961), + [sym__additive_operator] = STATE(1961), + [sym__multiplicative_operator] = STATE(1961), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1961), + [sym__referenceable_operator] = STATE(1961), + [sym__eq_eq] = STATE(1961), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_attribute] = STATE(5871), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1131), + [aux_sym_simple_identifier_token2] = ACTIONS(1133), + [aux_sym_simple_identifier_token3] = ACTIONS(1133), + [aux_sym_simple_identifier_token4] = ACTIONS(1133), + [anon_sym_nil] = ACTIONS(1135), + [sym_real_literal] = ACTIONS(1137), + [sym_integer_literal] = ACTIONS(1135), + [sym_hex_literal] = ACTIONS(1137), + [sym_oct_literal] = ACTIONS(1137), + [sym_bin_literal] = ACTIONS(1137), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1135), + [anon_sym_POUNDfileID] = ACTIONS(1137), + [anon_sym_POUNDfilePath] = ACTIONS(1137), + [anon_sym_POUNDline] = ACTIONS(1137), + [anon_sym_POUNDcolumn] = ACTIONS(1137), + [anon_sym_POUNDfunction] = ACTIONS(1137), + [anon_sym_POUNDdsohandle] = ACTIONS(1137), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1135), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1135), + [anon_sym_LT_EQ] = ACTIONS(1135), + [anon_sym_GT_EQ] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(1135), + [anon_sym_PERCENT] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1141), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1137), + [sym__plus_then_ws] = ACTIONS(1137), + [sym__minus_then_ws] = ACTIONS(1137), + [sym_bang] = ACTIONS(833), + }, + [226] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1929), + [sym_boolean_literal] = STATE(1929), + [sym__string_literal] = STATE(1929), + [sym_line_string_literal] = STATE(1929), + [sym_multi_line_string_literal] = STATE(1929), + [sym_raw_string_literal] = STATE(1929), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1929), + [sym__unary_expression] = STATE(1929), + [sym_postfix_expression] = STATE(1929), + [sym_constructor_expression] = STATE(1929), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1929), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1929), + [sym_prefix_expression] = STATE(1929), + [sym_as_expression] = STATE(1929), + [sym_selector_expression] = STATE(1929), + [sym__binary_expression] = STATE(1929), + [sym_multiplicative_expression] = STATE(1929), + [sym_additive_expression] = STATE(1929), + [sym_range_expression] = STATE(1929), + [sym_infix_expression] = STATE(1929), + [sym_nil_coalescing_expression] = STATE(1929), + [sym_check_expression] = STATE(1929), + [sym_comparison_expression] = STATE(1929), + [sym_equality_expression] = STATE(1929), + [sym_conjunction_expression] = STATE(1929), + [sym_disjunction_expression] = STATE(1929), + [sym_bitwise_operation] = STATE(1929), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1929), + [sym_await_expression] = STATE(1929), + [sym_ternary_expression] = STATE(1929), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1929), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1929), + [sym_dictionary_literal] = STATE(1929), + [sym__special_literal] = STATE(1929), + [sym__playground_literal] = STATE(1929), + [sym_lambda_literal] = STATE(1929), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1929), + [sym_key_path_expression] = STATE(1929), + [sym_key_path_string_expression] = STATE(1929), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1929), + [sym__comparison_operator] = STATE(1929), + [sym__additive_operator] = STATE(1929), + [sym__multiplicative_operator] = STATE(1929), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1929), + [sym__referenceable_operator] = STATE(1929), + [sym__eq_eq] = STATE(1929), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1143), + [aux_sym_simple_identifier_token2] = ACTIONS(1146), + [aux_sym_simple_identifier_token3] = ACTIONS(1146), + [aux_sym_simple_identifier_token4] = ACTIONS(1146), + [anon_sym_nil] = ACTIONS(1149), + [sym_real_literal] = ACTIONS(1151), + [sym_integer_literal] = ACTIONS(1149), + [sym_hex_literal] = ACTIONS(1151), + [sym_oct_literal] = ACTIONS(1151), + [sym_bin_literal] = ACTIONS(1151), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_some] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_GT] = ACTIONS(1149), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1149), + [anon_sym_POUNDfileID] = ACTIONS(1151), + [anon_sym_POUNDfilePath] = ACTIONS(1151), + [anon_sym_POUNDline] = ACTIONS(1151), + [anon_sym_POUNDcolumn] = ACTIONS(1151), + [anon_sym_POUNDfunction] = ACTIONS(1151), + [anon_sym_POUNDdsohandle] = ACTIONS(1151), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1149), + [anon_sym_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_EQ] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_SLASH] = ACTIONS(1149), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(1159), + [anon_sym_inout] = ACTIONS(1159), + [anon_sym_ATescaping] = ACTIONS(1161), + [anon_sym_ATautoclosure] = ACTIONS(1161), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1151), + [sym__plus_then_ws] = ACTIONS(1151), + [sym__minus_then_ws] = ACTIONS(1151), + [sym_bang] = ACTIONS(833), + }, + [227] = { + [sym_simple_identifier] = STATE(2556), + [sym__basic_literal] = STATE(1623), + [sym_boolean_literal] = STATE(1623), + [sym__string_literal] = STATE(1623), + [sym_line_string_literal] = STATE(1623), + [sym_multi_line_string_literal] = STATE(1623), + [sym_raw_string_literal] = STATE(1623), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1623), + [sym__unary_expression] = STATE(1623), + [sym_postfix_expression] = STATE(1623), + [sym_constructor_expression] = STATE(1623), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1623), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1623), + [sym_prefix_expression] = STATE(1623), + [sym_as_expression] = STATE(1623), + [sym_selector_expression] = STATE(1623), + [sym__binary_expression] = STATE(1623), + [sym_multiplicative_expression] = STATE(1623), + [sym_additive_expression] = STATE(1623), + [sym_range_expression] = STATE(1623), + [sym_infix_expression] = STATE(1623), + [sym_nil_coalescing_expression] = STATE(1623), + [sym_check_expression] = STATE(1623), + [sym_comparison_expression] = STATE(1623), + [sym_equality_expression] = STATE(1623), + [sym_conjunction_expression] = STATE(1623), + [sym_disjunction_expression] = STATE(1623), + [sym_bitwise_operation] = STATE(1623), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1623), + [sym_await_expression] = STATE(1623), + [sym_ternary_expression] = STATE(1623), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1623), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1623), + [sym_dictionary_literal] = STATE(1623), + [sym__special_literal] = STATE(1623), + [sym__playground_literal] = STATE(1623), + [sym_lambda_literal] = STATE(1623), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1623), + [sym_key_path_expression] = STATE(1623), + [sym_key_path_string_expression] = STATE(1623), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1623), + [sym__comparison_operator] = STATE(1623), + [sym__additive_operator] = STATE(1623), + [sym__multiplicative_operator] = STATE(1623), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1623), + [sym__referenceable_operator] = STATE(1623), + [sym__eq_eq] = STATE(1623), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(6440), + [sym__non_binding_pattern_with_expr] = STATE(8050), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1163), + [sym_real_literal] = ACTIONS(1165), + [sym_integer_literal] = ACTIONS(1163), + [sym_hex_literal] = ACTIONS(1165), + [sym_oct_literal] = ACTIONS(1165), + [sym_bin_literal] = ACTIONS(1165), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1163), + [anon_sym_GT] = ACTIONS(1163), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1163), + [anon_sym_POUNDfileID] = ACTIONS(1165), + [anon_sym_POUNDfilePath] = ACTIONS(1165), + [anon_sym_POUNDline] = ACTIONS(1165), + [anon_sym_POUNDcolumn] = ACTIONS(1165), + [anon_sym_POUNDfunction] = ACTIONS(1165), + [anon_sym_POUNDdsohandle] = ACTIONS(1165), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1163), + [anon_sym_LT_EQ] = ACTIONS(1163), + [anon_sym_GT_EQ] = ACTIONS(1163), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1163), + [anon_sym_SLASH] = ACTIONS(1163), + [anon_sym_PERCENT] = ACTIONS(1163), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1165), + [sym__plus_then_ws] = ACTIONS(1165), + [sym__minus_then_ws] = ACTIONS(1165), + [sym_bang] = ACTIONS(833), + }, + [228] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7912), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [229] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7502), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [230] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(8174), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [231] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7472), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [232] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7400), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [233] = { + [sym_simple_identifier] = STATE(2576), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7410), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [234] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7393), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [235] = { + [sym_simple_identifier] = STATE(2581), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7438), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [236] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(8048), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [237] = { + [sym_simple_identifier] = STATE(2597), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7467), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [238] = { + [sym_simple_identifier] = STATE(2584), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7579), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [239] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(9707), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [240] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7505), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [241] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7738), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [242] = { + [sym_simple_identifier] = STATE(2599), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7453), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [243] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(8057), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [244] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(8122), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [245] = { + [sym_simple_identifier] = STATE(2591), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(8084), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [246] = { + [sym_simple_identifier] = STATE(2589), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(8058), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [247] = { + [sym_simple_identifier] = STATE(2601), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7430), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [248] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(8181), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [249] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7429), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [250] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7615), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [251] = { + [sym_simple_identifier] = STATE(2614), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(8159), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [252] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7617), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [253] = { + [sym_simple_identifier] = STATE(2613), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(8028), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [254] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7909), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [255] = { + [sym_simple_identifier] = STATE(2578), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7377), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [256] = { + [sym_simple_identifier] = STATE(2555), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7878), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [257] = { + [sym_simple_identifier] = STATE(2574), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7854), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [258] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7968), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [259] = { + [sym_simple_identifier] = STATE(2557), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7826), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [260] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7953), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [261] = { + [sym_simple_identifier] = STATE(2582), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7632), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [262] = { + [sym_simple_identifier] = STATE(2563), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7818), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [263] = { + [sym_simple_identifier] = STATE(2593), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(8142), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [264] = { + [sym_simple_identifier] = STATE(2583), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7648), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [265] = { + [sym_simple_identifier] = STATE(2569), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7379), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [266] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7653), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [267] = { + [sym_simple_identifier] = STATE(2554), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(9553), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [268] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7808), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [269] = { + [sym_simple_identifier] = STATE(2571), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7536), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [270] = { + [sym_simple_identifier] = STATE(2626), + [sym__basic_literal] = STATE(1805), + [sym_boolean_literal] = STATE(1805), + [sym__string_literal] = STATE(1805), + [sym_line_string_literal] = STATE(1805), + [sym_multi_line_string_literal] = STATE(1805), + [sym_raw_string_literal] = STATE(1805), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1805), + [sym__unary_expression] = STATE(1805), + [sym_postfix_expression] = STATE(1805), + [sym_constructor_expression] = STATE(1805), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1805), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1805), + [sym_prefix_expression] = STATE(1805), + [sym_as_expression] = STATE(1805), + [sym_selector_expression] = STATE(1805), + [sym__binary_expression] = STATE(1805), + [sym_multiplicative_expression] = STATE(1805), + [sym_additive_expression] = STATE(1805), + [sym_range_expression] = STATE(1805), + [sym_infix_expression] = STATE(1805), + [sym_nil_coalescing_expression] = STATE(1805), + [sym_check_expression] = STATE(1805), + [sym_comparison_expression] = STATE(1805), + [sym_equality_expression] = STATE(1805), + [sym_conjunction_expression] = STATE(1805), + [sym_disjunction_expression] = STATE(1805), + [sym_bitwise_operation] = STATE(1805), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1805), + [sym_await_expression] = STATE(1805), + [sym_ternary_expression] = STATE(1805), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1805), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1805), + [sym_dictionary_literal] = STATE(1805), + [sym__special_literal] = STATE(1805), + [sym__playground_literal] = STATE(1805), + [sym_lambda_literal] = STATE(1805), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1805), + [sym_key_path_expression] = STATE(1805), + [sym_key_path_string_expression] = STATE(1805), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1805), + [sym__comparison_operator] = STATE(1805), + [sym__additive_operator] = STATE(1805), + [sym__multiplicative_operator] = STATE(1805), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1805), + [sym__referenceable_operator] = STATE(1805), + [sym__eq_eq] = STATE(1805), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(6772), + [sym__non_binding_pattern_with_expr] = STATE(7549), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1179), + [sym_real_literal] = ACTIONS(1181), + [sym_integer_literal] = ACTIONS(1179), + [sym_hex_literal] = ACTIONS(1181), + [sym_oct_literal] = ACTIONS(1181), + [sym_bin_literal] = ACTIONS(1181), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1179), + [anon_sym_GT] = ACTIONS(1179), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1179), + [anon_sym_POUNDfileID] = ACTIONS(1181), + [anon_sym_POUNDfilePath] = ACTIONS(1181), + [anon_sym_POUNDline] = ACTIONS(1181), + [anon_sym_POUNDcolumn] = ACTIONS(1181), + [anon_sym_POUNDfunction] = ACTIONS(1181), + [anon_sym_POUNDdsohandle] = ACTIONS(1181), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1179), + [anon_sym_LT_EQ] = ACTIONS(1179), + [anon_sym_GT_EQ] = ACTIONS(1179), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1179), + [anon_sym_SLASH] = ACTIONS(1179), + [anon_sym_PERCENT] = ACTIONS(1179), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1181), + [sym__plus_then_ws] = ACTIONS(1181), + [sym__minus_then_ws] = ACTIONS(1181), + [sym_bang] = ACTIONS(833), + }, + [271] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7556), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [272] = { + [sym_simple_identifier] = STATE(2570), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7789), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [273] = { + [sym_simple_identifier] = STATE(2629), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7812), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [274] = { + [sym_simple_identifier] = STATE(2575), + [sym__basic_literal] = STATE(2185), + [sym_boolean_literal] = STATE(2185), + [sym__string_literal] = STATE(2185), + [sym_line_string_literal] = STATE(2185), + [sym_multi_line_string_literal] = STATE(2185), + [sym_raw_string_literal] = STATE(2185), + [sym_user_type] = STATE(5697), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2185), + [sym__unary_expression] = STATE(2185), + [sym_postfix_expression] = STATE(2185), + [sym_constructor_expression] = STATE(2185), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2185), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2185), + [sym_prefix_expression] = STATE(2185), + [sym_as_expression] = STATE(2185), + [sym_selector_expression] = STATE(2185), + [sym__binary_expression] = STATE(2185), + [sym_multiplicative_expression] = STATE(2185), + [sym_additive_expression] = STATE(2185), + [sym_range_expression] = STATE(2185), + [sym_infix_expression] = STATE(2185), + [sym_nil_coalescing_expression] = STATE(2185), + [sym_check_expression] = STATE(2185), + [sym_comparison_expression] = STATE(2185), + [sym_equality_expression] = STATE(2185), + [sym_conjunction_expression] = STATE(2185), + [sym_disjunction_expression] = STATE(2185), + [sym_bitwise_operation] = STATE(2185), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2185), + [sym_await_expression] = STATE(2185), + [sym_ternary_expression] = STATE(2185), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2185), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2185), + [sym_dictionary_literal] = STATE(2185), + [sym__special_literal] = STATE(2185), + [sym__playground_literal] = STATE(2185), + [sym_lambda_literal] = STATE(2185), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2185), + [sym_key_path_expression] = STATE(2185), + [sym_key_path_string_expression] = STATE(2185), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2185), + [sym__comparison_operator] = STATE(2185), + [sym__additive_operator] = STATE(2185), + [sym__multiplicative_operator] = STATE(2185), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2185), + [sym__referenceable_operator] = STATE(2185), + [sym__eq_eq] = STATE(2185), + [sym__dot] = STATE(2260), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [sym_non_binding_pattern] = STATE(8824), + [sym__non_binding_pattern_with_expr] = STATE(7842), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1175), + [sym_real_literal] = ACTIONS(1177), + [sym_integer_literal] = ACTIONS(1175), + [sym_hex_literal] = ACTIONS(1177), + [sym_oct_literal] = ACTIONS(1177), + [sym_bin_literal] = ACTIONS(1177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1175), + [anon_sym_POUNDfileID] = ACTIONS(1177), + [anon_sym_POUNDfilePath] = ACTIONS(1177), + [anon_sym_POUNDline] = ACTIONS(1177), + [anon_sym_POUNDcolumn] = ACTIONS(1177), + [anon_sym_POUNDfunction] = ACTIONS(1177), + [anon_sym_POUNDdsohandle] = ACTIONS(1177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1175), + [anon_sym_LT_EQ] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1175), + [anon_sym_is] = ACTIONS(1169), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1175), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_wildcard_pattern] = ACTIONS(1171), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1173), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1177), + [sym__plus_then_ws] = ACTIONS(1177), + [sym__minus_then_ws] = ACTIONS(1177), + [sym_bang] = ACTIONS(833), + }, + [275] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2238), + [sym_boolean_literal] = STATE(2238), + [sym__string_literal] = STATE(2238), + [sym_line_string_literal] = STATE(2238), + [sym_multi_line_string_literal] = STATE(2238), + [sym_raw_string_literal] = STATE(2238), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2238), + [sym__unary_expression] = STATE(2238), + [sym_postfix_expression] = STATE(2238), + [sym_constructor_expression] = STATE(2238), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2238), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2238), + [sym_prefix_expression] = STATE(2238), + [sym_as_expression] = STATE(2238), + [sym_selector_expression] = STATE(2238), + [sym__binary_expression] = STATE(2238), + [sym_multiplicative_expression] = STATE(2238), + [sym_additive_expression] = STATE(2238), + [sym_range_expression] = STATE(2238), + [sym_infix_expression] = STATE(2238), + [sym_nil_coalescing_expression] = STATE(2238), + [sym_check_expression] = STATE(2238), + [sym_comparison_expression] = STATE(2238), + [sym_equality_expression] = STATE(2238), + [sym_conjunction_expression] = STATE(2238), + [sym_disjunction_expression] = STATE(2238), + [sym_bitwise_operation] = STATE(2238), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2238), + [sym_await_expression] = STATE(2238), + [sym_ternary_expression] = STATE(2238), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2238), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2238), + [sym_dictionary_literal] = STATE(2238), + [sym__special_literal] = STATE(2238), + [sym__playground_literal] = STATE(2238), + [sym_lambda_literal] = STATE(2238), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2238), + [sym_key_path_expression] = STATE(2238), + [sym_key_path_string_expression] = STATE(2238), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2238), + [sym__comparison_operator] = STATE(2238), + [sym__additive_operator] = STATE(2238), + [sym__multiplicative_operator] = STATE(2238), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2238), + [sym__referenceable_operator] = STATE(2238), + [sym__eq_eq] = STATE(2238), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1183), + [sym_real_literal] = ACTIONS(1185), + [sym_integer_literal] = ACTIONS(1183), + [sym_hex_literal] = ACTIONS(1185), + [sym_oct_literal] = ACTIONS(1185), + [sym_bin_literal] = ACTIONS(1185), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(1187), + [anon_sym_COLON] = ACTIONS(1187), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1183), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1183), + [anon_sym_POUNDfileID] = ACTIONS(1185), + [anon_sym_POUNDfilePath] = ACTIONS(1185), + [anon_sym_POUNDline] = ACTIONS(1185), + [anon_sym_POUNDcolumn] = ACTIONS(1185), + [anon_sym_POUNDfunction] = ACTIONS(1185), + [anon_sym_POUNDdsohandle] = ACTIONS(1185), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1183), + [anon_sym_PERCENT] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1185), + [sym__plus_then_ws] = ACTIONS(1185), + [sym__minus_then_ws] = ACTIONS(1185), + [sym_bang] = ACTIONS(833), + }, + [276] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2228), + [sym_boolean_literal] = STATE(2228), + [sym__string_literal] = STATE(2228), + [sym_line_string_literal] = STATE(2228), + [sym_multi_line_string_literal] = STATE(2228), + [sym_raw_string_literal] = STATE(2228), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2228), + [sym__unary_expression] = STATE(2228), + [sym_postfix_expression] = STATE(2228), + [sym_constructor_expression] = STATE(2228), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2228), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2228), + [sym_prefix_expression] = STATE(2228), + [sym_as_expression] = STATE(2228), + [sym_selector_expression] = STATE(2228), + [sym__binary_expression] = STATE(2228), + [sym_multiplicative_expression] = STATE(2228), + [sym_additive_expression] = STATE(2228), + [sym_range_expression] = STATE(2228), + [sym_infix_expression] = STATE(2228), + [sym_nil_coalescing_expression] = STATE(2228), + [sym_check_expression] = STATE(2228), + [sym_comparison_expression] = STATE(2228), + [sym_equality_expression] = STATE(2228), + [sym_conjunction_expression] = STATE(2228), + [sym_disjunction_expression] = STATE(2228), + [sym_bitwise_operation] = STATE(2228), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2228), + [sym_await_expression] = STATE(2228), + [sym_ternary_expression] = STATE(2228), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2228), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2228), + [sym_dictionary_literal] = STATE(2228), + [sym__special_literal] = STATE(2228), + [sym__playground_literal] = STATE(2228), + [sym_lambda_literal] = STATE(2228), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2228), + [sym_key_path_expression] = STATE(2228), + [sym_key_path_string_expression] = STATE(2228), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2228), + [sym__comparison_operator] = STATE(2228), + [sym__additive_operator] = STATE(2228), + [sym__multiplicative_operator] = STATE(2228), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2228), + [sym__referenceable_operator] = STATE(2228), + [sym__eq_eq] = STATE(2228), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), + [sym_integer_literal] = ACTIONS(1189), + [sym_hex_literal] = ACTIONS(1191), + [sym_oct_literal] = ACTIONS(1191), + [sym_bin_literal] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_COMMA] = ACTIONS(1187), + [anon_sym_COLON] = ACTIONS(1187), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1189), + [anon_sym_GT] = ACTIONS(1189), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1189), + [anon_sym_POUNDfileID] = ACTIONS(1191), + [anon_sym_POUNDfilePath] = ACTIONS(1191), + [anon_sym_POUNDline] = ACTIONS(1191), + [anon_sym_POUNDcolumn] = ACTIONS(1191), + [anon_sym_POUNDfunction] = ACTIONS(1191), + [anon_sym_POUNDdsohandle] = ACTIONS(1191), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1189), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1189), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), + [anon_sym_LT_EQ] = ACTIONS(1189), + [anon_sym_GT_EQ] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1189), + [anon_sym_PERCENT] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1191), + [sym__plus_then_ws] = ACTIONS(1191), + [sym__minus_then_ws] = ACTIONS(1191), + [sym_bang] = ACTIONS(833), + [sym_where_keyword] = ACTIONS(1187), + }, + [277] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1788), + [sym_boolean_literal] = STATE(1788), + [sym__string_literal] = STATE(1788), + [sym_line_string_literal] = STATE(1788), + [sym_multi_line_string_literal] = STATE(1788), + [sym_raw_string_literal] = STATE(1788), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1788), + [sym__unary_expression] = STATE(1788), + [sym_postfix_expression] = STATE(1788), + [sym_constructor_expression] = STATE(1788), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1788), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1788), + [sym_prefix_expression] = STATE(1788), + [sym_as_expression] = STATE(1788), + [sym_selector_expression] = STATE(1788), + [sym__binary_expression] = STATE(1788), + [sym_multiplicative_expression] = STATE(1788), + [sym_additive_expression] = STATE(1788), + [sym_range_expression] = STATE(1788), + [sym_infix_expression] = STATE(1788), + [sym_nil_coalescing_expression] = STATE(1788), + [sym_check_expression] = STATE(1788), + [sym_comparison_expression] = STATE(1788), + [sym_equality_expression] = STATE(1788), + [sym_conjunction_expression] = STATE(1788), + [sym_disjunction_expression] = STATE(1788), + [sym_bitwise_operation] = STATE(1788), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1788), + [sym_await_expression] = STATE(1788), + [sym_ternary_expression] = STATE(1788), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1788), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1788), + [sym_dictionary_literal] = STATE(1788), + [sym__special_literal] = STATE(1788), + [sym__playground_literal] = STATE(1788), + [sym_lambda_literal] = STATE(1788), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1788), + [sym_key_path_expression] = STATE(1788), + [sym_key_path_string_expression] = STATE(1788), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1788), + [sym__comparison_operator] = STATE(1788), + [sym__additive_operator] = STATE(1788), + [sym__multiplicative_operator] = STATE(1788), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1788), + [sym__referenceable_operator] = STATE(1788), + [sym__eq_eq] = STATE(1788), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1193), + [aux_sym_simple_identifier_token2] = ACTIONS(1196), + [aux_sym_simple_identifier_token3] = ACTIONS(1196), + [aux_sym_simple_identifier_token4] = ACTIONS(1196), + [anon_sym_nil] = ACTIONS(1199), + [sym_real_literal] = ACTIONS(1201), + [sym_integer_literal] = ACTIONS(1199), + [sym_hex_literal] = ACTIONS(1201), + [sym_oct_literal] = ACTIONS(1201), + [sym_bin_literal] = ACTIONS(1201), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1199), + [anon_sym_GT] = ACTIONS(1199), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1199), + [anon_sym_POUNDfileID] = ACTIONS(1201), + [anon_sym_POUNDfilePath] = ACTIONS(1201), + [anon_sym_POUNDline] = ACTIONS(1201), + [anon_sym_POUNDcolumn] = ACTIONS(1201), + [anon_sym_POUNDfunction] = ACTIONS(1201), + [anon_sym_POUNDdsohandle] = ACTIONS(1201), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), + [anon_sym_LT_EQ] = ACTIONS(1199), + [anon_sym_GT_EQ] = ACTIONS(1199), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_SLASH] = ACTIONS(1199), + [anon_sym_PERCENT] = ACTIONS(1199), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1201), + [sym__plus_then_ws] = ACTIONS(1201), + [sym__minus_then_ws] = ACTIONS(1201), + [sym_bang] = ACTIONS(833), + }, + [278] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1696), + [sym_boolean_literal] = STATE(1696), + [sym__string_literal] = STATE(1696), + [sym_line_string_literal] = STATE(1696), + [sym_multi_line_string_literal] = STATE(1696), + [sym_raw_string_literal] = STATE(1696), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1696), + [sym__unary_expression] = STATE(1696), + [sym_postfix_expression] = STATE(1696), + [sym_constructor_expression] = STATE(1696), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1696), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1696), + [sym_prefix_expression] = STATE(1696), + [sym_as_expression] = STATE(1696), + [sym_selector_expression] = STATE(1696), + [sym__binary_expression] = STATE(1696), + [sym_multiplicative_expression] = STATE(1696), + [sym_additive_expression] = STATE(1696), + [sym_range_expression] = STATE(1696), + [sym_infix_expression] = STATE(1696), + [sym_nil_coalescing_expression] = STATE(1696), + [sym_check_expression] = STATE(1696), + [sym_comparison_expression] = STATE(1696), + [sym_equality_expression] = STATE(1696), + [sym_conjunction_expression] = STATE(1696), + [sym_disjunction_expression] = STATE(1696), + [sym_bitwise_operation] = STATE(1696), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1696), + [sym_await_expression] = STATE(1696), + [sym_ternary_expression] = STATE(1696), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1696), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1696), + [sym_dictionary_literal] = STATE(1696), + [sym__special_literal] = STATE(1696), + [sym__playground_literal] = STATE(1696), + [sym_lambda_literal] = STATE(1696), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1696), + [sym_key_path_expression] = STATE(1696), + [sym_key_path_string_expression] = STATE(1696), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1696), + [sym__comparison_operator] = STATE(1696), + [sym__additive_operator] = STATE(1696), + [sym__multiplicative_operator] = STATE(1696), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1696), + [sym__referenceable_operator] = STATE(1696), + [sym__eq_eq] = STATE(1696), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1193), + [aux_sym_simple_identifier_token2] = ACTIONS(1196), + [aux_sym_simple_identifier_token3] = ACTIONS(1196), + [aux_sym_simple_identifier_token4] = ACTIONS(1196), + [anon_sym_nil] = ACTIONS(1205), + [sym_real_literal] = ACTIONS(1207), + [sym_integer_literal] = ACTIONS(1205), + [sym_hex_literal] = ACTIONS(1207), + [sym_oct_literal] = ACTIONS(1207), + [sym_bin_literal] = ACTIONS(1207), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1203), + [anon_sym_COMMA] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1205), + [anon_sym_GT] = ACTIONS(1205), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1205), + [anon_sym_POUNDfileID] = ACTIONS(1207), + [anon_sym_POUNDfilePath] = ACTIONS(1207), + [anon_sym_POUNDline] = ACTIONS(1207), + [anon_sym_POUNDcolumn] = ACTIONS(1207), + [anon_sym_POUNDfunction] = ACTIONS(1207), + [anon_sym_POUNDdsohandle] = ACTIONS(1207), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1205), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym_PERCENT] = ACTIONS(1205), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1207), + [sym__plus_then_ws] = ACTIONS(1207), + [sym__minus_then_ws] = ACTIONS(1207), + [sym_bang] = ACTIONS(833), + }, + [279] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1988), + [sym_boolean_literal] = STATE(1988), + [sym__string_literal] = STATE(1988), + [sym_line_string_literal] = STATE(1988), + [sym_multi_line_string_literal] = STATE(1988), + [sym_raw_string_literal] = STATE(1988), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1988), + [sym__unary_expression] = STATE(1988), + [sym_postfix_expression] = STATE(1988), + [sym_constructor_expression] = STATE(1988), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1988), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1988), + [sym_prefix_expression] = STATE(1988), + [sym_as_expression] = STATE(1988), + [sym_selector_expression] = STATE(1988), + [sym__binary_expression] = STATE(1988), + [sym_multiplicative_expression] = STATE(1988), + [sym_additive_expression] = STATE(1988), + [sym_range_expression] = STATE(1988), + [sym_infix_expression] = STATE(1988), + [sym_nil_coalescing_expression] = STATE(1988), + [sym_check_expression] = STATE(1988), + [sym_comparison_expression] = STATE(1988), + [sym_equality_expression] = STATE(1988), + [sym_conjunction_expression] = STATE(1988), + [sym_disjunction_expression] = STATE(1988), + [sym_bitwise_operation] = STATE(1988), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1988), + [sym_await_expression] = STATE(1988), + [sym_ternary_expression] = STATE(1988), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1988), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1988), + [sym_dictionary_literal] = STATE(1988), + [sym__special_literal] = STATE(1988), + [sym__playground_literal] = STATE(1988), + [sym_lambda_literal] = STATE(1988), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1988), + [sym_key_path_expression] = STATE(1988), + [sym_key_path_string_expression] = STATE(1988), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1988), + [sym__comparison_operator] = STATE(1988), + [sym__additive_operator] = STATE(1988), + [sym__multiplicative_operator] = STATE(1988), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1988), + [sym__referenceable_operator] = STATE(1988), + [sym__eq_eq] = STATE(1988), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1209), + [aux_sym_simple_identifier_token2] = ACTIONS(1212), + [aux_sym_simple_identifier_token3] = ACTIONS(1212), + [aux_sym_simple_identifier_token4] = ACTIONS(1212), + [anon_sym_nil] = ACTIONS(1215), + [sym_real_literal] = ACTIONS(1217), + [sym_integer_literal] = ACTIONS(1215), + [sym_hex_literal] = ACTIONS(1217), + [sym_oct_literal] = ACTIONS(1217), + [sym_bin_literal] = ACTIONS(1217), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1215), + [anon_sym_GT] = ACTIONS(1215), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1215), + [anon_sym_POUNDfileID] = ACTIONS(1217), + [anon_sym_POUNDfilePath] = ACTIONS(1217), + [anon_sym_POUNDline] = ACTIONS(1217), + [anon_sym_POUNDcolumn] = ACTIONS(1217), + [anon_sym_POUNDfunction] = ACTIONS(1217), + [anon_sym_POUNDdsohandle] = ACTIONS(1217), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1215), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1215), + [anon_sym_SLASH] = ACTIONS(1215), + [anon_sym_PERCENT] = ACTIONS(1215), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1217), + [sym__plus_then_ws] = ACTIONS(1217), + [sym__minus_then_ws] = ACTIONS(1217), + [sym_bang] = ACTIONS(833), + }, + [280] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2244), + [sym_boolean_literal] = STATE(2244), + [sym__string_literal] = STATE(2244), + [sym_line_string_literal] = STATE(2244), + [sym_multi_line_string_literal] = STATE(2244), + [sym_raw_string_literal] = STATE(2244), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2244), + [sym__unary_expression] = STATE(2244), + [sym_postfix_expression] = STATE(2244), + [sym_constructor_expression] = STATE(2244), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2244), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2244), + [sym_prefix_expression] = STATE(2244), + [sym_as_expression] = STATE(2244), + [sym_selector_expression] = STATE(2244), + [sym__binary_expression] = STATE(2244), + [sym_multiplicative_expression] = STATE(2244), + [sym_additive_expression] = STATE(2244), + [sym_range_expression] = STATE(2244), + [sym_infix_expression] = STATE(2244), + [sym_nil_coalescing_expression] = STATE(2244), + [sym_check_expression] = STATE(2244), + [sym_comparison_expression] = STATE(2244), + [sym_equality_expression] = STATE(2244), + [sym_conjunction_expression] = STATE(2244), + [sym_disjunction_expression] = STATE(2244), + [sym_bitwise_operation] = STATE(2244), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2244), + [sym_await_expression] = STATE(2244), + [sym_ternary_expression] = STATE(2244), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2244), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2244), + [sym_dictionary_literal] = STATE(2244), + [sym__dictionary_literal_item] = STATE(8612), + [sym__special_literal] = STATE(2244), + [sym__playground_literal] = STATE(2244), + [sym_lambda_literal] = STATE(2244), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2244), + [sym_key_path_expression] = STATE(2244), + [sym_key_path_string_expression] = STATE(2244), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2244), + [sym__comparison_operator] = STATE(2244), + [sym__additive_operator] = STATE(2244), + [sym__multiplicative_operator] = STATE(2244), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2244), + [sym__referenceable_operator] = STATE(2244), + [sym__eq_eq] = STATE(2244), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1221), + [sym_real_literal] = ACTIONS(1223), + [sym_integer_literal] = ACTIONS(1221), + [sym_hex_literal] = ACTIONS(1223), + [sym_oct_literal] = ACTIONS(1223), + [sym_bin_literal] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1221), + [anon_sym_POUNDfileID] = ACTIONS(1223), + [anon_sym_POUNDfilePath] = ACTIONS(1223), + [anon_sym_POUNDline] = ACTIONS(1223), + [anon_sym_POUNDcolumn] = ACTIONS(1223), + [anon_sym_POUNDfunction] = ACTIONS(1223), + [anon_sym_POUNDdsohandle] = ACTIONS(1223), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1221), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1223), + [sym__plus_then_ws] = ACTIONS(1223), + [sym__minus_then_ws] = ACTIONS(1223), + [sym_bang] = ACTIONS(833), + }, + [281] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2186), + [sym_boolean_literal] = STATE(2186), + [sym__string_literal] = STATE(2186), + [sym_line_string_literal] = STATE(2186), + [sym_multi_line_string_literal] = STATE(2186), + [sym_raw_string_literal] = STATE(2186), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2186), + [sym__unary_expression] = STATE(2186), + [sym_postfix_expression] = STATE(2186), + [sym_constructor_expression] = STATE(2186), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2186), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2186), + [sym_prefix_expression] = STATE(2186), + [sym_as_expression] = STATE(2186), + [sym_selector_expression] = STATE(2186), + [sym__binary_expression] = STATE(2186), + [sym_multiplicative_expression] = STATE(2186), + [sym_additive_expression] = STATE(2186), + [sym_range_expression] = STATE(2186), + [sym_infix_expression] = STATE(2186), + [sym_nil_coalescing_expression] = STATE(2186), + [sym_check_expression] = STATE(2186), + [sym_comparison_expression] = STATE(2186), + [sym_equality_expression] = STATE(2186), + [sym_conjunction_expression] = STATE(2186), + [sym_disjunction_expression] = STATE(2186), + [sym_bitwise_operation] = STATE(2186), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2186), + [sym_await_expression] = STATE(2186), + [sym_ternary_expression] = STATE(2186), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2186), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2186), + [sym_dictionary_literal] = STATE(2186), + [sym__special_literal] = STATE(2186), + [sym__playground_literal] = STATE(2186), + [sym_lambda_literal] = STATE(2186), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2186), + [sym_key_path_expression] = STATE(2186), + [sym_key_path_string_expression] = STATE(2186), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2186), + [sym__comparison_operator] = STATE(2186), + [sym__additive_operator] = STATE(2186), + [sym__multiplicative_operator] = STATE(2186), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(2186), + [sym__referenceable_operator] = STATE(2186), + [sym__eq_eq] = STATE(2186), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(1227), + [sym_real_literal] = ACTIONS(1229), + [sym_integer_literal] = ACTIONS(1227), + [sym_hex_literal] = ACTIONS(1229), + [sym_oct_literal] = ACTIONS(1229), + [sym_bin_literal] = ACTIONS(1229), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1227), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(1227), + [anon_sym_POUNDfileID] = ACTIONS(1229), + [anon_sym_POUNDfilePath] = ACTIONS(1229), + [anon_sym_POUNDline] = ACTIONS(1229), + [anon_sym_POUNDcolumn] = ACTIONS(1229), + [anon_sym_POUNDfunction] = ACTIONS(1229), + [anon_sym_POUNDdsohandle] = ACTIONS(1229), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(761), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1227), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(1227), + [anon_sym_SLASH] = ACTIONS(1227), + [anon_sym_PERCENT] = ACTIONS(1227), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__semi] = ACTIONS(761), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(1229), + [sym__plus_then_ws] = ACTIONS(1229), + [sym__minus_then_ws] = ACTIONS(1229), + [sym_bang] = ACTIONS(137), + }, + [282] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2249), + [sym_boolean_literal] = STATE(2249), + [sym__string_literal] = STATE(2249), + [sym_line_string_literal] = STATE(2249), + [sym_multi_line_string_literal] = STATE(2249), + [sym_raw_string_literal] = STATE(2249), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2249), + [sym__unary_expression] = STATE(2249), + [sym_postfix_expression] = STATE(2249), + [sym_constructor_expression] = STATE(2249), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2249), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2249), + [sym_prefix_expression] = STATE(2249), + [sym_as_expression] = STATE(2249), + [sym_selector_expression] = STATE(2249), + [sym__binary_expression] = STATE(2249), + [sym_multiplicative_expression] = STATE(2249), + [sym_additive_expression] = STATE(2249), + [sym_range_expression] = STATE(2249), + [sym_infix_expression] = STATE(2249), + [sym_nil_coalescing_expression] = STATE(2249), + [sym_check_expression] = STATE(2249), + [sym_comparison_expression] = STATE(2249), + [sym_equality_expression] = STATE(2249), + [sym_conjunction_expression] = STATE(2249), + [sym_disjunction_expression] = STATE(2249), + [sym_bitwise_operation] = STATE(2249), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2249), + [sym_await_expression] = STATE(2249), + [sym_ternary_expression] = STATE(2249), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2249), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2249), + [sym_dictionary_literal] = STATE(2249), + [sym__special_literal] = STATE(2249), + [sym__playground_literal] = STATE(2249), + [sym_lambda_literal] = STATE(2249), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2249), + [sym_key_path_expression] = STATE(2249), + [sym_key_path_string_expression] = STATE(2249), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2249), + [sym__comparison_operator] = STATE(2249), + [sym__additive_operator] = STATE(2249), + [sym__multiplicative_operator] = STATE(2249), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2249), + [sym__referenceable_operator] = STATE(2249), + [sym__eq_eq] = STATE(2249), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1233), + [sym_real_literal] = ACTIONS(1235), + [sym_integer_literal] = ACTIONS(1233), + [sym_hex_literal] = ACTIONS(1235), + [sym_oct_literal] = ACTIONS(1235), + [sym_bin_literal] = ACTIONS(1235), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [anon_sym_getter_COLON] = ACTIONS(1237), + [anon_sym_setter_COLON] = ACTIONS(1237), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1233), + [anon_sym_GT] = ACTIONS(1233), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1233), + [anon_sym_POUNDfileID] = ACTIONS(1235), + [anon_sym_POUNDfilePath] = ACTIONS(1235), + [anon_sym_POUNDline] = ACTIONS(1235), + [anon_sym_POUNDcolumn] = ACTIONS(1235), + [anon_sym_POUNDfunction] = ACTIONS(1235), + [anon_sym_POUNDdsohandle] = ACTIONS(1235), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1233), + [anon_sym_LT_EQ] = ACTIONS(1233), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(1233), + [anon_sym_PERCENT] = ACTIONS(1233), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1235), + [sym__plus_then_ws] = ACTIONS(1235), + [sym__minus_then_ws] = ACTIONS(1235), + [sym_bang] = ACTIONS(833), + }, + [283] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1704), + [sym_boolean_literal] = STATE(1704), + [sym__string_literal] = STATE(1704), + [sym_line_string_literal] = STATE(1704), + [sym_multi_line_string_literal] = STATE(1704), + [sym_raw_string_literal] = STATE(1704), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1704), + [sym__unary_expression] = STATE(1704), + [sym_postfix_expression] = STATE(1704), + [sym_constructor_expression] = STATE(1704), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1704), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1704), + [sym_prefix_expression] = STATE(1704), + [sym_as_expression] = STATE(1704), + [sym_selector_expression] = STATE(1704), + [sym__binary_expression] = STATE(1704), + [sym_multiplicative_expression] = STATE(1704), + [sym_additive_expression] = STATE(1704), + [sym_range_expression] = STATE(1704), + [sym_infix_expression] = STATE(1704), + [sym_nil_coalescing_expression] = STATE(1704), + [sym_check_expression] = STATE(1704), + [sym_comparison_expression] = STATE(1704), + [sym_equality_expression] = STATE(1704), + [sym_conjunction_expression] = STATE(1704), + [sym_disjunction_expression] = STATE(1704), + [sym_bitwise_operation] = STATE(1704), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1704), + [sym_await_expression] = STATE(1704), + [sym_ternary_expression] = STATE(1704), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1704), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1704), + [sym_dictionary_literal] = STATE(1704), + [sym__special_literal] = STATE(1704), + [sym__playground_literal] = STATE(1704), + [sym_lambda_literal] = STATE(1704), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1704), + [sym_key_path_expression] = STATE(1704), + [sym_key_path_string_expression] = STATE(1704), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1704), + [sym__comparison_operator] = STATE(1704), + [sym__additive_operator] = STATE(1704), + [sym__multiplicative_operator] = STATE(1704), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1704), + [sym__referenceable_operator] = STATE(1704), + [sym__eq_eq] = STATE(1704), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1209), + [aux_sym_simple_identifier_token2] = ACTIONS(1212), + [aux_sym_simple_identifier_token3] = ACTIONS(1212), + [aux_sym_simple_identifier_token4] = ACTIONS(1212), + [anon_sym_nil] = ACTIONS(1239), + [sym_real_literal] = ACTIONS(1241), + [sym_integer_literal] = ACTIONS(1239), + [sym_hex_literal] = ACTIONS(1241), + [sym_oct_literal] = ACTIONS(1241), + [sym_bin_literal] = ACTIONS(1241), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1239), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1239), + [anon_sym_POUNDfileID] = ACTIONS(1241), + [anon_sym_POUNDfilePath] = ACTIONS(1241), + [anon_sym_POUNDline] = ACTIONS(1241), + [anon_sym_POUNDcolumn] = ACTIONS(1241), + [anon_sym_POUNDfunction] = ACTIONS(1241), + [anon_sym_POUNDdsohandle] = ACTIONS(1241), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1239), + [anon_sym_GT_EQ] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_SLASH] = ACTIONS(1239), + [anon_sym_PERCENT] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1241), + [sym__plus_then_ws] = ACTIONS(1241), + [sym__minus_then_ws] = ACTIONS(1241), + [sym_bang] = ACTIONS(833), + }, + [284] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2244), + [sym_boolean_literal] = STATE(2244), + [sym__string_literal] = STATE(2244), + [sym_line_string_literal] = STATE(2244), + [sym_multi_line_string_literal] = STATE(2244), + [sym_raw_string_literal] = STATE(2244), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2244), + [sym__unary_expression] = STATE(2244), + [sym_postfix_expression] = STATE(2244), + [sym_constructor_expression] = STATE(2244), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2244), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2244), + [sym_prefix_expression] = STATE(2244), + [sym_as_expression] = STATE(2244), + [sym_selector_expression] = STATE(2244), + [sym__binary_expression] = STATE(2244), + [sym_multiplicative_expression] = STATE(2244), + [sym_additive_expression] = STATE(2244), + [sym_range_expression] = STATE(2244), + [sym_infix_expression] = STATE(2244), + [sym_nil_coalescing_expression] = STATE(2244), + [sym_check_expression] = STATE(2244), + [sym_comparison_expression] = STATE(2244), + [sym_equality_expression] = STATE(2244), + [sym_conjunction_expression] = STATE(2244), + [sym_disjunction_expression] = STATE(2244), + [sym_bitwise_operation] = STATE(2244), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2244), + [sym_await_expression] = STATE(2244), + [sym_ternary_expression] = STATE(2244), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2244), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2244), + [sym_dictionary_literal] = STATE(2244), + [sym__dictionary_literal_item] = STATE(8612), + [sym__special_literal] = STATE(2244), + [sym__playground_literal] = STATE(2244), + [sym_lambda_literal] = STATE(2244), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2244), + [sym_key_path_expression] = STATE(2244), + [sym_key_path_string_expression] = STATE(2244), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2244), + [sym__comparison_operator] = STATE(2244), + [sym__additive_operator] = STATE(2244), + [sym__multiplicative_operator] = STATE(2244), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2244), + [sym__referenceable_operator] = STATE(2244), + [sym__eq_eq] = STATE(2244), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1221), + [sym_real_literal] = ACTIONS(1223), + [sym_integer_literal] = ACTIONS(1221), + [sym_hex_literal] = ACTIONS(1223), + [sym_oct_literal] = ACTIONS(1223), + [sym_bin_literal] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1221), + [anon_sym_POUNDfileID] = ACTIONS(1223), + [anon_sym_POUNDfilePath] = ACTIONS(1223), + [anon_sym_POUNDline] = ACTIONS(1223), + [anon_sym_POUNDcolumn] = ACTIONS(1223), + [anon_sym_POUNDfunction] = ACTIONS(1223), + [anon_sym_POUNDdsohandle] = ACTIONS(1223), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1221), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1223), + [sym__plus_then_ws] = ACTIONS(1223), + [sym__minus_then_ws] = ACTIONS(1223), + [sym_bang] = ACTIONS(833), + }, + [285] = { + [sym_simple_identifier] = STATE(2378), + [sym__basic_literal] = STATE(1735), + [sym_boolean_literal] = STATE(1735), + [sym__string_literal] = STATE(1735), + [sym_line_string_literal] = STATE(1735), + [sym_multi_line_string_literal] = STATE(1735), + [sym_raw_string_literal] = STATE(1735), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1735), + [sym__unary_expression] = STATE(1735), + [sym_postfix_expression] = STATE(1735), + [sym_constructor_expression] = STATE(1735), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1735), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1735), + [sym_prefix_expression] = STATE(1735), + [sym_as_expression] = STATE(1735), + [sym_selector_expression] = STATE(1735), + [sym__binary_expression] = STATE(1735), + [sym_multiplicative_expression] = STATE(1735), + [sym_additive_expression] = STATE(1735), + [sym_range_expression] = STATE(1735), + [sym_infix_expression] = STATE(1735), + [sym_nil_coalescing_expression] = STATE(1735), + [sym_check_expression] = STATE(1735), + [sym_comparison_expression] = STATE(1735), + [sym_equality_expression] = STATE(1735), + [sym_conjunction_expression] = STATE(1735), + [sym_disjunction_expression] = STATE(1735), + [sym_bitwise_operation] = STATE(1735), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1735), + [sym_await_expression] = STATE(1735), + [sym_ternary_expression] = STATE(1735), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1735), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1735), + [sym_dictionary_literal] = STATE(1735), + [sym__special_literal] = STATE(1735), + [sym__playground_literal] = STATE(1735), + [sym_lambda_literal] = STATE(1735), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1735), + [sym_key_path_expression] = STATE(1735), + [sym_key_path_string_expression] = STATE(1735), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1735), + [sym__comparison_operator] = STATE(1735), + [sym__additive_operator] = STATE(1735), + [sym__multiplicative_operator] = STATE(1735), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1735), + [sym__referenceable_operator] = STATE(1735), + [sym__eq_eq] = STATE(1735), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_attribute_repeat1] = STATE(5437), + [aux_sym_attribute_repeat2] = STATE(5707), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1131), + [aux_sym_simple_identifier_token2] = ACTIONS(1133), + [aux_sym_simple_identifier_token3] = ACTIONS(1133), + [aux_sym_simple_identifier_token4] = ACTIONS(1133), + [anon_sym_nil] = ACTIONS(1245), + [sym_real_literal] = ACTIONS(1247), + [sym_integer_literal] = ACTIONS(1245), + [sym_hex_literal] = ACTIONS(1247), + [sym_oct_literal] = ACTIONS(1247), + [sym_bin_literal] = ACTIONS(1247), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1245), + [anon_sym_GT] = ACTIONS(1245), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1245), + [anon_sym_POUNDfileID] = ACTIONS(1247), + [anon_sym_POUNDfilePath] = ACTIONS(1247), + [anon_sym_POUNDline] = ACTIONS(1247), + [anon_sym_POUNDcolumn] = ACTIONS(1247), + [anon_sym_POUNDfunction] = ACTIONS(1247), + [anon_sym_POUNDdsohandle] = ACTIONS(1247), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1245), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1245), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(1245), + [anon_sym_PERCENT] = ACTIONS(1245), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1247), + [sym__plus_then_ws] = ACTIONS(1247), + [sym__minus_then_ws] = ACTIONS(1247), + [sym_bang] = ACTIONS(833), + }, + [286] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2236), + [sym_boolean_literal] = STATE(2236), + [sym__string_literal] = STATE(2236), + [sym_line_string_literal] = STATE(2236), + [sym_multi_line_string_literal] = STATE(2236), + [sym_raw_string_literal] = STATE(2236), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2236), + [sym__unary_expression] = STATE(2236), + [sym_postfix_expression] = STATE(2236), + [sym_constructor_expression] = STATE(2236), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2236), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2236), + [sym_prefix_expression] = STATE(2236), + [sym_as_expression] = STATE(2236), + [sym_selector_expression] = STATE(2236), + [sym__binary_expression] = STATE(2236), + [sym_multiplicative_expression] = STATE(2236), + [sym_additive_expression] = STATE(2236), + [sym_range_expression] = STATE(2236), + [sym_infix_expression] = STATE(2236), + [sym_nil_coalescing_expression] = STATE(2236), + [sym_check_expression] = STATE(2236), + [sym_comparison_expression] = STATE(2236), + [sym_equality_expression] = STATE(2236), + [sym_conjunction_expression] = STATE(2236), + [sym_disjunction_expression] = STATE(2236), + [sym_bitwise_operation] = STATE(2236), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2236), + [sym_await_expression] = STATE(2236), + [sym_ternary_expression] = STATE(2236), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2236), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2236), + [sym_dictionary_literal] = STATE(2236), + [sym__special_literal] = STATE(2236), + [sym__playground_literal] = STATE(2236), + [sym_lambda_literal] = STATE(2236), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2236), + [sym_key_path_expression] = STATE(2236), + [sym_key_path_string_expression] = STATE(2236), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2236), + [sym__comparison_operator] = STATE(2236), + [sym__additive_operator] = STATE(2236), + [sym__multiplicative_operator] = STATE(2236), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2236), + [sym__referenceable_operator] = STATE(2236), + [sym__eq_eq] = STATE(2236), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1249), + [sym_real_literal] = ACTIONS(1251), + [sym_integer_literal] = ACTIONS(1249), + [sym_hex_literal] = ACTIONS(1251), + [sym_oct_literal] = ACTIONS(1251), + [sym_bin_literal] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [anon_sym_getter_COLON] = ACTIONS(1253), + [anon_sym_setter_COLON] = ACTIONS(1253), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT] = ACTIONS(1249), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1249), + [anon_sym_POUNDfileID] = ACTIONS(1251), + [anon_sym_POUNDfilePath] = ACTIONS(1251), + [anon_sym_POUNDline] = ACTIONS(1251), + [anon_sym_POUNDcolumn] = ACTIONS(1251), + [anon_sym_POUNDfunction] = ACTIONS(1251), + [anon_sym_POUNDdsohandle] = ACTIONS(1251), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_PERCENT] = ACTIONS(1249), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1251), + [sym__plus_then_ws] = ACTIONS(1251), + [sym__minus_then_ws] = ACTIONS(1251), + [sym_bang] = ACTIONS(833), + }, + [287] = { + [sym_simple_identifier] = STATE(2379), + [sym__basic_literal] = STATE(1644), + [sym_boolean_literal] = STATE(1644), + [sym__string_literal] = STATE(1644), + [sym_line_string_literal] = STATE(1644), + [sym_multi_line_string_literal] = STATE(1644), + [sym_raw_string_literal] = STATE(1644), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1644), + [sym__unary_expression] = STATE(1644), + [sym_postfix_expression] = STATE(1644), + [sym_constructor_expression] = STATE(1644), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1644), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1644), + [sym_prefix_expression] = STATE(1644), + [sym_as_expression] = STATE(1644), + [sym_selector_expression] = STATE(1644), + [sym__binary_expression] = STATE(1644), + [sym_multiplicative_expression] = STATE(1644), + [sym_additive_expression] = STATE(1644), + [sym_range_expression] = STATE(1644), + [sym_infix_expression] = STATE(1644), + [sym_nil_coalescing_expression] = STATE(1644), + [sym_check_expression] = STATE(1644), + [sym_comparison_expression] = STATE(1644), + [sym_equality_expression] = STATE(1644), + [sym_conjunction_expression] = STATE(1644), + [sym_disjunction_expression] = STATE(1644), + [sym_bitwise_operation] = STATE(1644), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1644), + [sym_await_expression] = STATE(1644), + [sym_ternary_expression] = STATE(1644), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1644), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1644), + [sym_dictionary_literal] = STATE(1644), + [sym__special_literal] = STATE(1644), + [sym__playground_literal] = STATE(1644), + [sym_lambda_literal] = STATE(1644), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1644), + [sym_key_path_expression] = STATE(1644), + [sym_key_path_string_expression] = STATE(1644), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1644), + [sym__comparison_operator] = STATE(1644), + [sym__additive_operator] = STATE(1644), + [sym__multiplicative_operator] = STATE(1644), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1644), + [sym__referenceable_operator] = STATE(1644), + [sym__eq_eq] = STATE(1644), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_attribute_repeat1] = STATE(5500), + [aux_sym_attribute_repeat2] = STATE(5732), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1131), + [aux_sym_simple_identifier_token2] = ACTIONS(1133), + [aux_sym_simple_identifier_token3] = ACTIONS(1133), + [aux_sym_simple_identifier_token4] = ACTIONS(1133), + [anon_sym_nil] = ACTIONS(1255), + [sym_real_literal] = ACTIONS(1257), + [sym_integer_literal] = ACTIONS(1255), + [sym_hex_literal] = ACTIONS(1257), + [sym_oct_literal] = ACTIONS(1257), + [sym_bin_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1255), + [anon_sym_POUNDfileID] = ACTIONS(1257), + [anon_sym_POUNDfilePath] = ACTIONS(1257), + [anon_sym_POUNDline] = ACTIONS(1257), + [anon_sym_POUNDcolumn] = ACTIONS(1257), + [anon_sym_POUNDfunction] = ACTIONS(1257), + [anon_sym_POUNDdsohandle] = ACTIONS(1257), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1257), + [sym__plus_then_ws] = ACTIONS(1257), + [sym__minus_then_ws] = ACTIONS(1257), + [sym_bang] = ACTIONS(833), + }, + [288] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2244), + [sym_boolean_literal] = STATE(2244), + [sym__string_literal] = STATE(2244), + [sym_line_string_literal] = STATE(2244), + [sym_multi_line_string_literal] = STATE(2244), + [sym_raw_string_literal] = STATE(2244), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2244), + [sym__unary_expression] = STATE(2244), + [sym_postfix_expression] = STATE(2244), + [sym_constructor_expression] = STATE(2244), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2244), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2244), + [sym_prefix_expression] = STATE(2244), + [sym_as_expression] = STATE(2244), + [sym_selector_expression] = STATE(2244), + [sym__binary_expression] = STATE(2244), + [sym_multiplicative_expression] = STATE(2244), + [sym_additive_expression] = STATE(2244), + [sym_range_expression] = STATE(2244), + [sym_infix_expression] = STATE(2244), + [sym_nil_coalescing_expression] = STATE(2244), + [sym_check_expression] = STATE(2244), + [sym_comparison_expression] = STATE(2244), + [sym_equality_expression] = STATE(2244), + [sym_conjunction_expression] = STATE(2244), + [sym_disjunction_expression] = STATE(2244), + [sym_bitwise_operation] = STATE(2244), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2244), + [sym_await_expression] = STATE(2244), + [sym_ternary_expression] = STATE(2244), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2244), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2244), + [sym_dictionary_literal] = STATE(2244), + [sym__dictionary_literal_item] = STATE(8612), + [sym__special_literal] = STATE(2244), + [sym__playground_literal] = STATE(2244), + [sym_lambda_literal] = STATE(2244), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2244), + [sym_key_path_expression] = STATE(2244), + [sym_key_path_string_expression] = STATE(2244), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2244), + [sym__comparison_operator] = STATE(2244), + [sym__additive_operator] = STATE(2244), + [sym__multiplicative_operator] = STATE(2244), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2244), + [sym__referenceable_operator] = STATE(2244), + [sym__eq_eq] = STATE(2244), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1221), + [sym_real_literal] = ACTIONS(1223), + [sym_integer_literal] = ACTIONS(1221), + [sym_hex_literal] = ACTIONS(1223), + [sym_oct_literal] = ACTIONS(1223), + [sym_bin_literal] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1221), + [anon_sym_POUNDfileID] = ACTIONS(1223), + [anon_sym_POUNDfilePath] = ACTIONS(1223), + [anon_sym_POUNDline] = ACTIONS(1223), + [anon_sym_POUNDcolumn] = ACTIONS(1223), + [anon_sym_POUNDfunction] = ACTIONS(1223), + [anon_sym_POUNDdsohandle] = ACTIONS(1223), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1221), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1223), + [sym__plus_then_ws] = ACTIONS(1223), + [sym__minus_then_ws] = ACTIONS(1223), + [sym_bang] = ACTIONS(833), + }, + [289] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2008), + [sym_boolean_literal] = STATE(2008), + [sym__string_literal] = STATE(2008), + [sym_line_string_literal] = STATE(2008), + [sym_multi_line_string_literal] = STATE(2008), + [sym_raw_string_literal] = STATE(2008), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2008), + [sym__unary_expression] = STATE(2008), + [sym_postfix_expression] = STATE(2008), + [sym_constructor_expression] = STATE(2008), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2008), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2008), + [sym_prefix_expression] = STATE(2008), + [sym_as_expression] = STATE(2008), + [sym_selector_expression] = STATE(2008), + [sym__binary_expression] = STATE(2008), + [sym_multiplicative_expression] = STATE(2008), + [sym_additive_expression] = STATE(2008), + [sym_range_expression] = STATE(2008), + [sym_infix_expression] = STATE(2008), + [sym_nil_coalescing_expression] = STATE(2008), + [sym_check_expression] = STATE(2008), + [sym_comparison_expression] = STATE(2008), + [sym_equality_expression] = STATE(2008), + [sym_conjunction_expression] = STATE(2008), + [sym_disjunction_expression] = STATE(2008), + [sym_bitwise_operation] = STATE(2008), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2008), + [sym_await_expression] = STATE(2008), + [sym_ternary_expression] = STATE(2008), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2008), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2008), + [sym_dictionary_literal] = STATE(2008), + [sym__special_literal] = STATE(2008), + [sym__playground_literal] = STATE(2008), + [sym_lambda_literal] = STATE(2008), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2008), + [sym_key_path_expression] = STATE(2008), + [sym_key_path_string_expression] = STATE(2008), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2008), + [sym__comparison_operator] = STATE(2008), + [sym__additive_operator] = STATE(2008), + [sym__multiplicative_operator] = STATE(2008), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2008), + [sym__referenceable_operator] = STATE(2008), + [sym__eq_eq] = STATE(2008), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1209), + [aux_sym_simple_identifier_token2] = ACTIONS(1212), + [aux_sym_simple_identifier_token3] = ACTIONS(1212), + [aux_sym_simple_identifier_token4] = ACTIONS(1212), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_GT] = ACTIONS(1261), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1261), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1261), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1261), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1263), + [sym__plus_then_ws] = ACTIONS(1263), + [sym__minus_then_ws] = ACTIONS(1263), + [sym_bang] = ACTIONS(833), + }, + [290] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2244), + [sym_boolean_literal] = STATE(2244), + [sym__string_literal] = STATE(2244), + [sym_line_string_literal] = STATE(2244), + [sym_multi_line_string_literal] = STATE(2244), + [sym_raw_string_literal] = STATE(2244), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2244), + [sym__unary_expression] = STATE(2244), + [sym_postfix_expression] = STATE(2244), + [sym_constructor_expression] = STATE(2244), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2244), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2244), + [sym_prefix_expression] = STATE(2244), + [sym_as_expression] = STATE(2244), + [sym_selector_expression] = STATE(2244), + [sym__binary_expression] = STATE(2244), + [sym_multiplicative_expression] = STATE(2244), + [sym_additive_expression] = STATE(2244), + [sym_range_expression] = STATE(2244), + [sym_infix_expression] = STATE(2244), + [sym_nil_coalescing_expression] = STATE(2244), + [sym_check_expression] = STATE(2244), + [sym_comparison_expression] = STATE(2244), + [sym_equality_expression] = STATE(2244), + [sym_conjunction_expression] = STATE(2244), + [sym_disjunction_expression] = STATE(2244), + [sym_bitwise_operation] = STATE(2244), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2244), + [sym_await_expression] = STATE(2244), + [sym_ternary_expression] = STATE(2244), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2244), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2244), + [sym_dictionary_literal] = STATE(2244), + [sym__dictionary_literal_item] = STATE(8612), + [sym__special_literal] = STATE(2244), + [sym__playground_literal] = STATE(2244), + [sym_lambda_literal] = STATE(2244), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2244), + [sym_key_path_expression] = STATE(2244), + [sym_key_path_string_expression] = STATE(2244), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2244), + [sym__comparison_operator] = STATE(2244), + [sym__additive_operator] = STATE(2244), + [sym__multiplicative_operator] = STATE(2244), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2244), + [sym__referenceable_operator] = STATE(2244), + [sym__eq_eq] = STATE(2244), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1221), + [sym_real_literal] = ACTIONS(1223), + [sym_integer_literal] = ACTIONS(1221), + [sym_hex_literal] = ACTIONS(1223), + [sym_oct_literal] = ACTIONS(1223), + [sym_bin_literal] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1221), + [anon_sym_POUNDfileID] = ACTIONS(1223), + [anon_sym_POUNDfilePath] = ACTIONS(1223), + [anon_sym_POUNDline] = ACTIONS(1223), + [anon_sym_POUNDcolumn] = ACTIONS(1223), + [anon_sym_POUNDfunction] = ACTIONS(1223), + [anon_sym_POUNDdsohandle] = ACTIONS(1223), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1221), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1223), + [sym__plus_then_ws] = ACTIONS(1223), + [sym__minus_then_ws] = ACTIONS(1223), + [sym_bang] = ACTIONS(833), + }, + [291] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2244), + [sym_boolean_literal] = STATE(2244), + [sym__string_literal] = STATE(2244), + [sym_line_string_literal] = STATE(2244), + [sym_multi_line_string_literal] = STATE(2244), + [sym_raw_string_literal] = STATE(2244), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2244), + [sym__unary_expression] = STATE(2244), + [sym_postfix_expression] = STATE(2244), + [sym_constructor_expression] = STATE(2244), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2244), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2244), + [sym_prefix_expression] = STATE(2244), + [sym_as_expression] = STATE(2244), + [sym_selector_expression] = STATE(2244), + [sym__binary_expression] = STATE(2244), + [sym_multiplicative_expression] = STATE(2244), + [sym_additive_expression] = STATE(2244), + [sym_range_expression] = STATE(2244), + [sym_infix_expression] = STATE(2244), + [sym_nil_coalescing_expression] = STATE(2244), + [sym_check_expression] = STATE(2244), + [sym_comparison_expression] = STATE(2244), + [sym_equality_expression] = STATE(2244), + [sym_conjunction_expression] = STATE(2244), + [sym_disjunction_expression] = STATE(2244), + [sym_bitwise_operation] = STATE(2244), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2244), + [sym_await_expression] = STATE(2244), + [sym_ternary_expression] = STATE(2244), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2244), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2244), + [sym_dictionary_literal] = STATE(2244), + [sym__dictionary_literal_item] = STATE(8612), + [sym__special_literal] = STATE(2244), + [sym__playground_literal] = STATE(2244), + [sym_lambda_literal] = STATE(2244), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2244), + [sym_key_path_expression] = STATE(2244), + [sym_key_path_string_expression] = STATE(2244), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2244), + [sym__comparison_operator] = STATE(2244), + [sym__additive_operator] = STATE(2244), + [sym__multiplicative_operator] = STATE(2244), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2244), + [sym__referenceable_operator] = STATE(2244), + [sym__eq_eq] = STATE(2244), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1221), + [sym_real_literal] = ACTIONS(1223), + [sym_integer_literal] = ACTIONS(1221), + [sym_hex_literal] = ACTIONS(1223), + [sym_oct_literal] = ACTIONS(1223), + [sym_bin_literal] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1221), + [anon_sym_POUNDfileID] = ACTIONS(1223), + [anon_sym_POUNDfilePath] = ACTIONS(1223), + [anon_sym_POUNDline] = ACTIONS(1223), + [anon_sym_POUNDcolumn] = ACTIONS(1223), + [anon_sym_POUNDfunction] = ACTIONS(1223), + [anon_sym_POUNDdsohandle] = ACTIONS(1223), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1221), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1223), + [sym__plus_then_ws] = ACTIONS(1223), + [sym__minus_then_ws] = ACTIONS(1223), + [sym_bang] = ACTIONS(833), + }, + [292] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1737), + [sym_boolean_literal] = STATE(1737), + [sym__string_literal] = STATE(1737), + [sym_line_string_literal] = STATE(1737), + [sym_multi_line_string_literal] = STATE(1737), + [sym_raw_string_literal] = STATE(1737), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1737), + [sym__unary_expression] = STATE(1737), + [sym_postfix_expression] = STATE(1737), + [sym_constructor_expression] = STATE(1737), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1737), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1737), + [sym_prefix_expression] = STATE(1737), + [sym_as_expression] = STATE(1737), + [sym_selector_expression] = STATE(1737), + [sym__binary_expression] = STATE(1737), + [sym_multiplicative_expression] = STATE(1737), + [sym_additive_expression] = STATE(1737), + [sym_range_expression] = STATE(1737), + [sym_infix_expression] = STATE(1737), + [sym_nil_coalescing_expression] = STATE(1737), + [sym_check_expression] = STATE(1737), + [sym_comparison_expression] = STATE(1737), + [sym_equality_expression] = STATE(1737), + [sym_conjunction_expression] = STATE(1737), + [sym_disjunction_expression] = STATE(1737), + [sym_bitwise_operation] = STATE(1737), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1737), + [sym_await_expression] = STATE(1737), + [sym_ternary_expression] = STATE(1737), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1737), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1737), + [sym_dictionary_literal] = STATE(1737), + [sym__special_literal] = STATE(1737), + [sym__playground_literal] = STATE(1737), + [sym_lambda_literal] = STATE(1737), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1737), + [sym_key_path_expression] = STATE(1737), + [sym_key_path_string_expression] = STATE(1737), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1737), + [sym__comparison_operator] = STATE(1737), + [sym__additive_operator] = STATE(1737), + [sym__multiplicative_operator] = STATE(1737), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1737), + [sym__referenceable_operator] = STATE(1737), + [sym__eq_eq] = STATE(1737), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1209), + [aux_sym_simple_identifier_token2] = ACTIONS(1212), + [aux_sym_simple_identifier_token3] = ACTIONS(1212), + [aux_sym_simple_identifier_token4] = ACTIONS(1212), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1269), + [anon_sym_GT] = ACTIONS(1269), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1269), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1269), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1269), + [anon_sym_PERCENT] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1271), + [sym__plus_then_ws] = ACTIONS(1271), + [sym__minus_then_ws] = ACTIONS(1271), + [sym_bang] = ACTIONS(833), + }, + [293] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2244), + [sym_boolean_literal] = STATE(2244), + [sym__string_literal] = STATE(2244), + [sym_line_string_literal] = STATE(2244), + [sym_multi_line_string_literal] = STATE(2244), + [sym_raw_string_literal] = STATE(2244), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2244), + [sym__unary_expression] = STATE(2244), + [sym_postfix_expression] = STATE(2244), + [sym_constructor_expression] = STATE(2244), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2244), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2244), + [sym_prefix_expression] = STATE(2244), + [sym_as_expression] = STATE(2244), + [sym_selector_expression] = STATE(2244), + [sym__binary_expression] = STATE(2244), + [sym_multiplicative_expression] = STATE(2244), + [sym_additive_expression] = STATE(2244), + [sym_range_expression] = STATE(2244), + [sym_infix_expression] = STATE(2244), + [sym_nil_coalescing_expression] = STATE(2244), + [sym_check_expression] = STATE(2244), + [sym_comparison_expression] = STATE(2244), + [sym_equality_expression] = STATE(2244), + [sym_conjunction_expression] = STATE(2244), + [sym_disjunction_expression] = STATE(2244), + [sym_bitwise_operation] = STATE(2244), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2244), + [sym_await_expression] = STATE(2244), + [sym_ternary_expression] = STATE(2244), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2244), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2244), + [sym_dictionary_literal] = STATE(2244), + [sym__dictionary_literal_item] = STATE(8612), + [sym__special_literal] = STATE(2244), + [sym__playground_literal] = STATE(2244), + [sym_lambda_literal] = STATE(2244), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2244), + [sym_key_path_expression] = STATE(2244), + [sym_key_path_string_expression] = STATE(2244), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2244), + [sym__comparison_operator] = STATE(2244), + [sym__additive_operator] = STATE(2244), + [sym__multiplicative_operator] = STATE(2244), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2244), + [sym__referenceable_operator] = STATE(2244), + [sym__eq_eq] = STATE(2244), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1221), + [sym_real_literal] = ACTIONS(1223), + [sym_integer_literal] = ACTIONS(1221), + [sym_hex_literal] = ACTIONS(1223), + [sym_oct_literal] = ACTIONS(1223), + [sym_bin_literal] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1221), + [anon_sym_POUNDfileID] = ACTIONS(1223), + [anon_sym_POUNDfilePath] = ACTIONS(1223), + [anon_sym_POUNDline] = ACTIONS(1223), + [anon_sym_POUNDcolumn] = ACTIONS(1223), + [anon_sym_POUNDfunction] = ACTIONS(1223), + [anon_sym_POUNDdsohandle] = ACTIONS(1223), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1221), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1223), + [sym__plus_then_ws] = ACTIONS(1223), + [sym__minus_then_ws] = ACTIONS(1223), + [sym_bang] = ACTIONS(833), + }, + [294] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1934), + [sym_boolean_literal] = STATE(1934), + [sym__string_literal] = STATE(1934), + [sym_line_string_literal] = STATE(1934), + [sym_multi_line_string_literal] = STATE(1934), + [sym_raw_string_literal] = STATE(1934), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1934), + [sym__unary_expression] = STATE(1934), + [sym_postfix_expression] = STATE(1934), + [sym_constructor_expression] = STATE(1934), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1934), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1934), + [sym_prefix_expression] = STATE(1934), + [sym_as_expression] = STATE(1934), + [sym_selector_expression] = STATE(1934), + [sym__binary_expression] = STATE(1934), + [sym_multiplicative_expression] = STATE(1934), + [sym_additive_expression] = STATE(1934), + [sym_range_expression] = STATE(1934), + [sym_infix_expression] = STATE(1934), + [sym_nil_coalescing_expression] = STATE(1934), + [sym_check_expression] = STATE(1934), + [sym_comparison_expression] = STATE(1934), + [sym_equality_expression] = STATE(1934), + [sym_conjunction_expression] = STATE(1934), + [sym_disjunction_expression] = STATE(1934), + [sym_bitwise_operation] = STATE(1934), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1934), + [sym_await_expression] = STATE(1934), + [sym_ternary_expression] = STATE(1934), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1934), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1934), + [sym_dictionary_literal] = STATE(1934), + [sym__special_literal] = STATE(1934), + [sym__playground_literal] = STATE(1934), + [sym_lambda_literal] = STATE(1934), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1934), + [sym_key_path_expression] = STATE(1934), + [sym_key_path_string_expression] = STATE(1934), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1934), + [sym__comparison_operator] = STATE(1934), + [sym__additive_operator] = STATE(1934), + [sym__multiplicative_operator] = STATE(1934), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1934), + [sym__referenceable_operator] = STATE(1934), + [sym__eq_eq] = STATE(1934), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1209), + [aux_sym_simple_identifier_token2] = ACTIONS(1212), + [aux_sym_simple_identifier_token3] = ACTIONS(1212), + [aux_sym_simple_identifier_token4] = ACTIONS(1212), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1275), + [anon_sym_GT] = ACTIONS(1275), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1275), + [anon_sym_LT_EQ] = ACTIONS(1275), + [anon_sym_GT_EQ] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_SLASH] = ACTIONS(1275), + [anon_sym_PERCENT] = ACTIONS(1275), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1277), + [sym__plus_then_ws] = ACTIONS(1277), + [sym__minus_then_ws] = ACTIONS(1277), + [sym_bang] = ACTIONS(833), + }, + [295] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2244), + [sym_boolean_literal] = STATE(2244), + [sym__string_literal] = STATE(2244), + [sym_line_string_literal] = STATE(2244), + [sym_multi_line_string_literal] = STATE(2244), + [sym_raw_string_literal] = STATE(2244), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2244), + [sym__unary_expression] = STATE(2244), + [sym_postfix_expression] = STATE(2244), + [sym_constructor_expression] = STATE(2244), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2244), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2244), + [sym_prefix_expression] = STATE(2244), + [sym_as_expression] = STATE(2244), + [sym_selector_expression] = STATE(2244), + [sym__binary_expression] = STATE(2244), + [sym_multiplicative_expression] = STATE(2244), + [sym_additive_expression] = STATE(2244), + [sym_range_expression] = STATE(2244), + [sym_infix_expression] = STATE(2244), + [sym_nil_coalescing_expression] = STATE(2244), + [sym_check_expression] = STATE(2244), + [sym_comparison_expression] = STATE(2244), + [sym_equality_expression] = STATE(2244), + [sym_conjunction_expression] = STATE(2244), + [sym_disjunction_expression] = STATE(2244), + [sym_bitwise_operation] = STATE(2244), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2244), + [sym_await_expression] = STATE(2244), + [sym_ternary_expression] = STATE(2244), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2244), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2244), + [sym_dictionary_literal] = STATE(2244), + [sym__dictionary_literal_item] = STATE(8612), + [sym__special_literal] = STATE(2244), + [sym__playground_literal] = STATE(2244), + [sym_lambda_literal] = STATE(2244), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2244), + [sym_key_path_expression] = STATE(2244), + [sym_key_path_string_expression] = STATE(2244), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2244), + [sym__comparison_operator] = STATE(2244), + [sym__additive_operator] = STATE(2244), + [sym__multiplicative_operator] = STATE(2244), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2244), + [sym__referenceable_operator] = STATE(2244), + [sym__eq_eq] = STATE(2244), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1221), + [sym_real_literal] = ACTIONS(1223), + [sym_integer_literal] = ACTIONS(1221), + [sym_hex_literal] = ACTIONS(1223), + [sym_oct_literal] = ACTIONS(1223), + [sym_bin_literal] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1221), + [anon_sym_POUNDfileID] = ACTIONS(1223), + [anon_sym_POUNDfilePath] = ACTIONS(1223), + [anon_sym_POUNDline] = ACTIONS(1223), + [anon_sym_POUNDcolumn] = ACTIONS(1223), + [anon_sym_POUNDfunction] = ACTIONS(1223), + [anon_sym_POUNDdsohandle] = ACTIONS(1223), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1221), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1223), + [sym__plus_then_ws] = ACTIONS(1223), + [sym__minus_then_ws] = ACTIONS(1223), + [sym_bang] = ACTIONS(833), + }, + [296] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2244), + [sym_boolean_literal] = STATE(2244), + [sym__string_literal] = STATE(2244), + [sym_line_string_literal] = STATE(2244), + [sym_multi_line_string_literal] = STATE(2244), + [sym_raw_string_literal] = STATE(2244), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2244), + [sym__unary_expression] = STATE(2244), + [sym_postfix_expression] = STATE(2244), + [sym_constructor_expression] = STATE(2244), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2244), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2244), + [sym_prefix_expression] = STATE(2244), + [sym_as_expression] = STATE(2244), + [sym_selector_expression] = STATE(2244), + [sym__binary_expression] = STATE(2244), + [sym_multiplicative_expression] = STATE(2244), + [sym_additive_expression] = STATE(2244), + [sym_range_expression] = STATE(2244), + [sym_infix_expression] = STATE(2244), + [sym_nil_coalescing_expression] = STATE(2244), + [sym_check_expression] = STATE(2244), + [sym_comparison_expression] = STATE(2244), + [sym_equality_expression] = STATE(2244), + [sym_conjunction_expression] = STATE(2244), + [sym_disjunction_expression] = STATE(2244), + [sym_bitwise_operation] = STATE(2244), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2244), + [sym_await_expression] = STATE(2244), + [sym_ternary_expression] = STATE(2244), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2244), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2244), + [sym_dictionary_literal] = STATE(2244), + [sym__dictionary_literal_item] = STATE(8612), + [sym__special_literal] = STATE(2244), + [sym__playground_literal] = STATE(2244), + [sym_lambda_literal] = STATE(2244), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2244), + [sym_key_path_expression] = STATE(2244), + [sym_key_path_string_expression] = STATE(2244), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2244), + [sym__comparison_operator] = STATE(2244), + [sym__additive_operator] = STATE(2244), + [sym__multiplicative_operator] = STATE(2244), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2244), + [sym__referenceable_operator] = STATE(2244), + [sym__eq_eq] = STATE(2244), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1221), + [sym_real_literal] = ACTIONS(1223), + [sym_integer_literal] = ACTIONS(1221), + [sym_hex_literal] = ACTIONS(1223), + [sym_oct_literal] = ACTIONS(1223), + [sym_bin_literal] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1221), + [anon_sym_POUNDfileID] = ACTIONS(1223), + [anon_sym_POUNDfilePath] = ACTIONS(1223), + [anon_sym_POUNDline] = ACTIONS(1223), + [anon_sym_POUNDcolumn] = ACTIONS(1223), + [anon_sym_POUNDfunction] = ACTIONS(1223), + [anon_sym_POUNDdsohandle] = ACTIONS(1223), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1221), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1223), + [sym__plus_then_ws] = ACTIONS(1223), + [sym__minus_then_ws] = ACTIONS(1223), + [sym_bang] = ACTIONS(833), + }, + [297] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2244), + [sym_boolean_literal] = STATE(2244), + [sym__string_literal] = STATE(2244), + [sym_line_string_literal] = STATE(2244), + [sym_multi_line_string_literal] = STATE(2244), + [sym_raw_string_literal] = STATE(2244), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2244), + [sym__unary_expression] = STATE(2244), + [sym_postfix_expression] = STATE(2244), + [sym_constructor_expression] = STATE(2244), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2244), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2244), + [sym_prefix_expression] = STATE(2244), + [sym_as_expression] = STATE(2244), + [sym_selector_expression] = STATE(2244), + [sym__binary_expression] = STATE(2244), + [sym_multiplicative_expression] = STATE(2244), + [sym_additive_expression] = STATE(2244), + [sym_range_expression] = STATE(2244), + [sym_infix_expression] = STATE(2244), + [sym_nil_coalescing_expression] = STATE(2244), + [sym_check_expression] = STATE(2244), + [sym_comparison_expression] = STATE(2244), + [sym_equality_expression] = STATE(2244), + [sym_conjunction_expression] = STATE(2244), + [sym_disjunction_expression] = STATE(2244), + [sym_bitwise_operation] = STATE(2244), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2244), + [sym_await_expression] = STATE(2244), + [sym_ternary_expression] = STATE(2244), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2244), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2244), + [sym_dictionary_literal] = STATE(2244), + [sym__dictionary_literal_item] = STATE(8612), + [sym__special_literal] = STATE(2244), + [sym__playground_literal] = STATE(2244), + [sym_lambda_literal] = STATE(2244), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2244), + [sym_key_path_expression] = STATE(2244), + [sym_key_path_string_expression] = STATE(2244), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2244), + [sym__comparison_operator] = STATE(2244), + [sym__additive_operator] = STATE(2244), + [sym__multiplicative_operator] = STATE(2244), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2244), + [sym__referenceable_operator] = STATE(2244), + [sym__eq_eq] = STATE(2244), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1221), + [sym_real_literal] = ACTIONS(1223), + [sym_integer_literal] = ACTIONS(1221), + [sym_hex_literal] = ACTIONS(1223), + [sym_oct_literal] = ACTIONS(1223), + [sym_bin_literal] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1221), + [anon_sym_POUNDfileID] = ACTIONS(1223), + [anon_sym_POUNDfilePath] = ACTIONS(1223), + [anon_sym_POUNDline] = ACTIONS(1223), + [anon_sym_POUNDcolumn] = ACTIONS(1223), + [anon_sym_POUNDfunction] = ACTIONS(1223), + [anon_sym_POUNDdsohandle] = ACTIONS(1223), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1221), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1223), + [sym__plus_then_ws] = ACTIONS(1223), + [sym__minus_then_ws] = ACTIONS(1223), + [sym_bang] = ACTIONS(833), + }, + [298] = { + [sym_simple_identifier] = STATE(2349), + [sym__basic_literal] = STATE(1655), + [sym_boolean_literal] = STATE(1655), + [sym__string_literal] = STATE(1655), + [sym_line_string_literal] = STATE(1655), + [sym_multi_line_string_literal] = STATE(1655), + [sym_raw_string_literal] = STATE(1655), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1655), + [sym__unary_expression] = STATE(1655), + [sym_postfix_expression] = STATE(1655), + [sym_constructor_expression] = STATE(1655), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1655), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1655), + [sym_prefix_expression] = STATE(1655), + [sym_as_expression] = STATE(1655), + [sym_selector_expression] = STATE(1655), + [sym__binary_expression] = STATE(1655), + [sym_multiplicative_expression] = STATE(1655), + [sym_additive_expression] = STATE(1655), + [sym_range_expression] = STATE(1655), + [sym_infix_expression] = STATE(1655), + [sym_nil_coalescing_expression] = STATE(1655), + [sym_check_expression] = STATE(1655), + [sym_comparison_expression] = STATE(1655), + [sym_equality_expression] = STATE(1655), + [sym_conjunction_expression] = STATE(1655), + [sym_disjunction_expression] = STATE(1655), + [sym_bitwise_operation] = STATE(1655), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1655), + [sym_await_expression] = STATE(1655), + [sym_ternary_expression] = STATE(1655), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1655), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1655), + [sym_dictionary_literal] = STATE(1655), + [sym__special_literal] = STATE(1655), + [sym__playground_literal] = STATE(1655), + [sym_lambda_literal] = STATE(1655), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1655), + [sym_key_path_expression] = STATE(1655), + [sym_key_path_string_expression] = STATE(1655), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1655), + [sym__comparison_operator] = STATE(1655), + [sym__additive_operator] = STATE(1655), + [sym__multiplicative_operator] = STATE(1655), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1655), + [sym__referenceable_operator] = STATE(1655), + [sym__eq_eq] = STATE(1655), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_attribute_repeat1] = STATE(5404), + [aux_sym_attribute_repeat2] = STATE(5698), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1131), + [aux_sym_simple_identifier_token2] = ACTIONS(1133), + [aux_sym_simple_identifier_token3] = ACTIONS(1133), + [aux_sym_simple_identifier_token4] = ACTIONS(1133), + [anon_sym_nil] = ACTIONS(1285), + [sym_real_literal] = ACTIONS(1287), + [sym_integer_literal] = ACTIONS(1285), + [sym_hex_literal] = ACTIONS(1287), + [sym_oct_literal] = ACTIONS(1287), + [sym_bin_literal] = ACTIONS(1287), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1285), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1285), + [anon_sym_POUNDfileID] = ACTIONS(1287), + [anon_sym_POUNDfilePath] = ACTIONS(1287), + [anon_sym_POUNDline] = ACTIONS(1287), + [anon_sym_POUNDcolumn] = ACTIONS(1287), + [anon_sym_POUNDfunction] = ACTIONS(1287), + [anon_sym_POUNDdsohandle] = ACTIONS(1287), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1285), + [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_PERCENT] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1287), + [sym__plus_then_ws] = ACTIONS(1287), + [sym__minus_then_ws] = ACTIONS(1287), + [sym_bang] = ACTIONS(833), + }, + [299] = { + [sym_simple_identifier] = STATE(2381), + [sym__basic_literal] = STATE(1946), + [sym_boolean_literal] = STATE(1946), + [sym__string_literal] = STATE(1946), + [sym_line_string_literal] = STATE(1946), + [sym_multi_line_string_literal] = STATE(1946), + [sym_raw_string_literal] = STATE(1946), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1946), + [sym__unary_expression] = STATE(1946), + [sym_postfix_expression] = STATE(1946), + [sym_constructor_expression] = STATE(1946), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1946), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1946), + [sym_prefix_expression] = STATE(1946), + [sym_as_expression] = STATE(1946), + [sym_selector_expression] = STATE(1946), + [sym__binary_expression] = STATE(1946), + [sym_multiplicative_expression] = STATE(1946), + [sym_additive_expression] = STATE(1946), + [sym_range_expression] = STATE(1946), + [sym_infix_expression] = STATE(1946), + [sym_nil_coalescing_expression] = STATE(1946), + [sym_check_expression] = STATE(1946), + [sym_comparison_expression] = STATE(1946), + [sym_equality_expression] = STATE(1946), + [sym_conjunction_expression] = STATE(1946), + [sym_disjunction_expression] = STATE(1946), + [sym_bitwise_operation] = STATE(1946), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1946), + [sym_await_expression] = STATE(1946), + [sym_ternary_expression] = STATE(1946), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1946), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1946), + [sym_dictionary_literal] = STATE(1946), + [sym__special_literal] = STATE(1946), + [sym__playground_literal] = STATE(1946), + [sym_lambda_literal] = STATE(1946), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1946), + [sym_key_path_expression] = STATE(1946), + [sym_key_path_string_expression] = STATE(1946), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1946), + [sym__comparison_operator] = STATE(1946), + [sym__additive_operator] = STATE(1946), + [sym__multiplicative_operator] = STATE(1946), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1946), + [sym__referenceable_operator] = STATE(1946), + [sym__eq_eq] = STATE(1946), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_attribute_repeat1] = STATE(5484), + [aux_sym_attribute_repeat2] = STATE(5918), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1131), + [aux_sym_simple_identifier_token2] = ACTIONS(1133), + [aux_sym_simple_identifier_token3] = ACTIONS(1133), + [aux_sym_simple_identifier_token4] = ACTIONS(1133), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1289), + [anon_sym_GT] = ACTIONS(1289), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1289), + [anon_sym_LT_EQ] = ACTIONS(1289), + [anon_sym_GT_EQ] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1289), + [anon_sym_SLASH] = ACTIONS(1289), + [anon_sym_PERCENT] = ACTIONS(1289), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1291), + [sym__plus_then_ws] = ACTIONS(1291), + [sym__minus_then_ws] = ACTIONS(1291), + [sym_bang] = ACTIONS(833), + }, + [300] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2244), + [sym_boolean_literal] = STATE(2244), + [sym__string_literal] = STATE(2244), + [sym_line_string_literal] = STATE(2244), + [sym_multi_line_string_literal] = STATE(2244), + [sym_raw_string_literal] = STATE(2244), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2244), + [sym__unary_expression] = STATE(2244), + [sym_postfix_expression] = STATE(2244), + [sym_constructor_expression] = STATE(2244), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2244), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2244), + [sym_prefix_expression] = STATE(2244), + [sym_as_expression] = STATE(2244), + [sym_selector_expression] = STATE(2244), + [sym__binary_expression] = STATE(2244), + [sym_multiplicative_expression] = STATE(2244), + [sym_additive_expression] = STATE(2244), + [sym_range_expression] = STATE(2244), + [sym_infix_expression] = STATE(2244), + [sym_nil_coalescing_expression] = STATE(2244), + [sym_check_expression] = STATE(2244), + [sym_comparison_expression] = STATE(2244), + [sym_equality_expression] = STATE(2244), + [sym_conjunction_expression] = STATE(2244), + [sym_disjunction_expression] = STATE(2244), + [sym_bitwise_operation] = STATE(2244), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2244), + [sym_await_expression] = STATE(2244), + [sym_ternary_expression] = STATE(2244), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2244), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2244), + [sym_dictionary_literal] = STATE(2244), + [sym__dictionary_literal_item] = STATE(8612), + [sym__special_literal] = STATE(2244), + [sym__playground_literal] = STATE(2244), + [sym_lambda_literal] = STATE(2244), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2244), + [sym_key_path_expression] = STATE(2244), + [sym_key_path_string_expression] = STATE(2244), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2244), + [sym__comparison_operator] = STATE(2244), + [sym__additive_operator] = STATE(2244), + [sym__multiplicative_operator] = STATE(2244), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2244), + [sym__referenceable_operator] = STATE(2244), + [sym__eq_eq] = STATE(2244), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1221), + [sym_real_literal] = ACTIONS(1223), + [sym_integer_literal] = ACTIONS(1221), + [sym_hex_literal] = ACTIONS(1223), + [sym_oct_literal] = ACTIONS(1223), + [sym_bin_literal] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1293), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1221), + [anon_sym_POUNDfileID] = ACTIONS(1223), + [anon_sym_POUNDfilePath] = ACTIONS(1223), + [anon_sym_POUNDline] = ACTIONS(1223), + [anon_sym_POUNDcolumn] = ACTIONS(1223), + [anon_sym_POUNDfunction] = ACTIONS(1223), + [anon_sym_POUNDdsohandle] = ACTIONS(1223), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1221), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1223), + [sym__plus_then_ws] = ACTIONS(1223), + [sym__minus_then_ws] = ACTIONS(1223), + [sym_bang] = ACTIONS(833), + }, + [301] = { + [sym_simple_identifier] = STATE(2377), + [sym__basic_literal] = STATE(1943), + [sym_boolean_literal] = STATE(1943), + [sym__string_literal] = STATE(1943), + [sym_line_string_literal] = STATE(1943), + [sym_multi_line_string_literal] = STATE(1943), + [sym_raw_string_literal] = STATE(1943), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1943), + [sym__unary_expression] = STATE(1943), + [sym_postfix_expression] = STATE(1943), + [sym_constructor_expression] = STATE(1943), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1943), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1943), + [sym_prefix_expression] = STATE(1943), + [sym_as_expression] = STATE(1943), + [sym_selector_expression] = STATE(1943), + [sym__binary_expression] = STATE(1943), + [sym_multiplicative_expression] = STATE(1943), + [sym_additive_expression] = STATE(1943), + [sym_range_expression] = STATE(1943), + [sym_infix_expression] = STATE(1943), + [sym_nil_coalescing_expression] = STATE(1943), + [sym_check_expression] = STATE(1943), + [sym_comparison_expression] = STATE(1943), + [sym_equality_expression] = STATE(1943), + [sym_conjunction_expression] = STATE(1943), + [sym_disjunction_expression] = STATE(1943), + [sym_bitwise_operation] = STATE(1943), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1943), + [sym_await_expression] = STATE(1943), + [sym_ternary_expression] = STATE(1943), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1943), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1943), + [sym_dictionary_literal] = STATE(1943), + [sym__special_literal] = STATE(1943), + [sym__playground_literal] = STATE(1943), + [sym_lambda_literal] = STATE(1943), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1943), + [sym_key_path_expression] = STATE(1943), + [sym_key_path_string_expression] = STATE(1943), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1943), + [sym__comparison_operator] = STATE(1943), + [sym__additive_operator] = STATE(1943), + [sym__multiplicative_operator] = STATE(1943), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1943), + [sym__referenceable_operator] = STATE(1943), + [sym__eq_eq] = STATE(1943), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_attribute_repeat1] = STATE(5474), + [aux_sym_attribute_repeat2] = STATE(5789), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1131), + [aux_sym_simple_identifier_token2] = ACTIONS(1133), + [aux_sym_simple_identifier_token3] = ACTIONS(1133), + [aux_sym_simple_identifier_token4] = ACTIONS(1133), + [anon_sym_nil] = ACTIONS(1295), + [sym_real_literal] = ACTIONS(1297), + [sym_integer_literal] = ACTIONS(1295), + [sym_hex_literal] = ACTIONS(1297), + [sym_oct_literal] = ACTIONS(1297), + [sym_bin_literal] = ACTIONS(1297), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1295), + [anon_sym_GT] = ACTIONS(1295), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1295), + [anon_sym_POUNDfileID] = ACTIONS(1297), + [anon_sym_POUNDfilePath] = ACTIONS(1297), + [anon_sym_POUNDline] = ACTIONS(1297), + [anon_sym_POUNDcolumn] = ACTIONS(1297), + [anon_sym_POUNDfunction] = ACTIONS(1297), + [anon_sym_POUNDdsohandle] = ACTIONS(1297), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1295), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(1295), + [anon_sym_PERCENT] = ACTIONS(1295), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1297), + [sym__plus_then_ws] = ACTIONS(1297), + [sym__minus_then_ws] = ACTIONS(1297), + [sym_bang] = ACTIONS(833), + }, + [302] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2245), + [sym_boolean_literal] = STATE(2245), + [sym__string_literal] = STATE(2245), + [sym_line_string_literal] = STATE(2245), + [sym_multi_line_string_literal] = STATE(2245), + [sym_raw_string_literal] = STATE(2245), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2245), + [sym__unary_expression] = STATE(2245), + [sym_postfix_expression] = STATE(2245), + [sym_constructor_expression] = STATE(2245), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2245), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2245), + [sym_prefix_expression] = STATE(2245), + [sym_as_expression] = STATE(2245), + [sym_selector_expression] = STATE(2245), + [sym__binary_expression] = STATE(2245), + [sym_multiplicative_expression] = STATE(2245), + [sym_additive_expression] = STATE(2245), + [sym_range_expression] = STATE(2245), + [sym_infix_expression] = STATE(2245), + [sym_nil_coalescing_expression] = STATE(2245), + [sym_check_expression] = STATE(2245), + [sym_comparison_expression] = STATE(2245), + [sym_equality_expression] = STATE(2245), + [sym_conjunction_expression] = STATE(2245), + [sym_disjunction_expression] = STATE(2245), + [sym_bitwise_operation] = STATE(2245), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2245), + [sym_await_expression] = STATE(2245), + [sym_ternary_expression] = STATE(2245), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2245), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2245), + [sym_dictionary_literal] = STATE(2245), + [sym__special_literal] = STATE(2245), + [sym__playground_literal] = STATE(2245), + [sym_lambda_literal] = STATE(2245), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2245), + [sym_key_path_expression] = STATE(2245), + [sym_key_path_string_expression] = STATE(2245), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2245), + [sym__comparison_operator] = STATE(2245), + [sym__additive_operator] = STATE(2245), + [sym__multiplicative_operator] = STATE(2245), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2245), + [sym__referenceable_operator] = STATE(2245), + [sym__eq_eq] = STATE(2245), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1299), + [sym_real_literal] = ACTIONS(1301), + [sym_integer_literal] = ACTIONS(1299), + [sym_hex_literal] = ACTIONS(1301), + [sym_oct_literal] = ACTIONS(1301), + [sym_bin_literal] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [anon_sym_getter_COLON] = ACTIONS(1303), + [anon_sym_setter_COLON] = ACTIONS(1303), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_GT] = ACTIONS(1299), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1299), + [anon_sym_POUNDfileID] = ACTIONS(1301), + [anon_sym_POUNDfilePath] = ACTIONS(1301), + [anon_sym_POUNDline] = ACTIONS(1301), + [anon_sym_POUNDcolumn] = ACTIONS(1301), + [anon_sym_POUNDfunction] = ACTIONS(1301), + [anon_sym_POUNDdsohandle] = ACTIONS(1301), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1299), + [anon_sym_LT_EQ] = ACTIONS(1299), + [anon_sym_GT_EQ] = ACTIONS(1299), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_SLASH] = ACTIONS(1299), + [anon_sym_PERCENT] = ACTIONS(1299), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1301), + [sym__plus_then_ws] = ACTIONS(1301), + [sym__minus_then_ws] = ACTIONS(1301), + [sym_bang] = ACTIONS(833), + }, + [303] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2240), + [sym_boolean_literal] = STATE(2240), + [sym__string_literal] = STATE(2240), + [sym_line_string_literal] = STATE(2240), + [sym_multi_line_string_literal] = STATE(2240), + [sym_raw_string_literal] = STATE(2240), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2240), + [sym__unary_expression] = STATE(2240), + [sym_postfix_expression] = STATE(2240), + [sym_constructor_expression] = STATE(2240), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2240), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2240), + [sym_prefix_expression] = STATE(2240), + [sym_as_expression] = STATE(2240), + [sym_selector_expression] = STATE(2240), + [sym__binary_expression] = STATE(2240), + [sym_multiplicative_expression] = STATE(2240), + [sym_additive_expression] = STATE(2240), + [sym_range_expression] = STATE(2240), + [sym_infix_expression] = STATE(2240), + [sym_nil_coalescing_expression] = STATE(2240), + [sym_check_expression] = STATE(2240), + [sym_comparison_expression] = STATE(2240), + [sym_equality_expression] = STATE(2240), + [sym_conjunction_expression] = STATE(2240), + [sym_disjunction_expression] = STATE(2240), + [sym_bitwise_operation] = STATE(2240), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2240), + [sym_await_expression] = STATE(2240), + [sym_ternary_expression] = STATE(2240), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2240), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2240), + [sym_dictionary_literal] = STATE(2240), + [sym__special_literal] = STATE(2240), + [sym__playground_literal] = STATE(2240), + [sym_lambda_literal] = STATE(2240), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2240), + [sym_key_path_expression] = STATE(2240), + [sym_key_path_string_expression] = STATE(2240), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2240), + [sym__comparison_operator] = STATE(2240), + [sym__additive_operator] = STATE(2240), + [sym__multiplicative_operator] = STATE(2240), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2240), + [sym__referenceable_operator] = STATE(2240), + [sym__eq_eq] = STATE(2240), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1305), + [sym_real_literal] = ACTIONS(1307), + [sym_integer_literal] = ACTIONS(1305), + [sym_hex_literal] = ACTIONS(1307), + [sym_oct_literal] = ACTIONS(1307), + [sym_bin_literal] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [anon_sym_getter_COLON] = ACTIONS(1309), + [anon_sym_setter_COLON] = ACTIONS(1309), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1305), + [anon_sym_GT] = ACTIONS(1305), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1305), + [anon_sym_POUNDfileID] = ACTIONS(1307), + [anon_sym_POUNDfilePath] = ACTIONS(1307), + [anon_sym_POUNDline] = ACTIONS(1307), + [anon_sym_POUNDcolumn] = ACTIONS(1307), + [anon_sym_POUNDfunction] = ACTIONS(1307), + [anon_sym_POUNDdsohandle] = ACTIONS(1307), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1305), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1305), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1305), + [anon_sym_LT_EQ] = ACTIONS(1305), + [anon_sym_GT_EQ] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1305), + [anon_sym_SLASH] = ACTIONS(1305), + [anon_sym_PERCENT] = ACTIONS(1305), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1307), + [sym__plus_then_ws] = ACTIONS(1307), + [sym__minus_then_ws] = ACTIONS(1307), + [sym_bang] = ACTIONS(833), + }, + [304] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1972), + [sym_boolean_literal] = STATE(1972), + [sym__string_literal] = STATE(1972), + [sym_line_string_literal] = STATE(1972), + [sym_multi_line_string_literal] = STATE(1972), + [sym_raw_string_literal] = STATE(1972), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1972), + [sym__unary_expression] = STATE(1972), + [sym_postfix_expression] = STATE(1972), + [sym_constructor_expression] = STATE(1972), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1972), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1972), + [sym_prefix_expression] = STATE(1972), + [sym_as_expression] = STATE(1972), + [sym_selector_expression] = STATE(1972), + [sym__binary_expression] = STATE(1972), + [sym_multiplicative_expression] = STATE(1972), + [sym_additive_expression] = STATE(1972), + [sym_range_expression] = STATE(1972), + [sym_infix_expression] = STATE(1972), + [sym_nil_coalescing_expression] = STATE(1972), + [sym_check_expression] = STATE(1972), + [sym_comparison_expression] = STATE(1972), + [sym_equality_expression] = STATE(1972), + [sym_conjunction_expression] = STATE(1972), + [sym_disjunction_expression] = STATE(1972), + [sym_bitwise_operation] = STATE(1972), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1972), + [sym_await_expression] = STATE(1972), + [sym_ternary_expression] = STATE(1972), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1972), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1972), + [sym_dictionary_literal] = STATE(1972), + [sym__special_literal] = STATE(1972), + [sym__playground_literal] = STATE(1972), + [sym_lambda_literal] = STATE(1972), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1972), + [sym_key_path_expression] = STATE(1972), + [sym_key_path_string_expression] = STATE(1972), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1972), + [sym__comparison_operator] = STATE(1972), + [sym__additive_operator] = STATE(1972), + [sym__multiplicative_operator] = STATE(1972), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1972), + [sym__referenceable_operator] = STATE(1972), + [sym__eq_eq] = STATE(1972), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1209), + [aux_sym_simple_identifier_token2] = ACTIONS(1212), + [aux_sym_simple_identifier_token3] = ACTIONS(1212), + [aux_sym_simple_identifier_token4] = ACTIONS(1212), + [anon_sym_nil] = ACTIONS(1311), + [sym_real_literal] = ACTIONS(1313), + [sym_integer_literal] = ACTIONS(1311), + [sym_hex_literal] = ACTIONS(1313), + [sym_oct_literal] = ACTIONS(1313), + [sym_bin_literal] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1311), + [anon_sym_GT] = ACTIONS(1311), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1311), + [anon_sym_POUNDfileID] = ACTIONS(1313), + [anon_sym_POUNDfilePath] = ACTIONS(1313), + [anon_sym_POUNDline] = ACTIONS(1313), + [anon_sym_POUNDcolumn] = ACTIONS(1313), + [anon_sym_POUNDfunction] = ACTIONS(1313), + [anon_sym_POUNDdsohandle] = ACTIONS(1313), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1311), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1311), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1311), + [anon_sym_LT_EQ] = ACTIONS(1311), + [anon_sym_GT_EQ] = ACTIONS(1311), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_SLASH] = ACTIONS(1311), + [anon_sym_PERCENT] = ACTIONS(1311), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1313), + [sym__plus_then_ws] = ACTIONS(1313), + [sym__minus_then_ws] = ACTIONS(1313), + [sym_bang] = ACTIONS(833), + }, + [305] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2238), + [sym_boolean_literal] = STATE(2238), + [sym__string_literal] = STATE(2238), + [sym_line_string_literal] = STATE(2238), + [sym_multi_line_string_literal] = STATE(2238), + [sym_raw_string_literal] = STATE(2238), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2238), + [sym__unary_expression] = STATE(2238), + [sym_postfix_expression] = STATE(2238), + [sym_constructor_expression] = STATE(2238), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2238), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2238), + [sym_prefix_expression] = STATE(2238), + [sym_as_expression] = STATE(2238), + [sym_selector_expression] = STATE(2238), + [sym__binary_expression] = STATE(2238), + [sym_multiplicative_expression] = STATE(2238), + [sym_additive_expression] = STATE(2238), + [sym_range_expression] = STATE(2238), + [sym_infix_expression] = STATE(2238), + [sym_nil_coalescing_expression] = STATE(2238), + [sym_check_expression] = STATE(2238), + [sym_comparison_expression] = STATE(2238), + [sym_equality_expression] = STATE(2238), + [sym_conjunction_expression] = STATE(2238), + [sym_disjunction_expression] = STATE(2238), + [sym_bitwise_operation] = STATE(2238), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2238), + [sym_await_expression] = STATE(2238), + [sym_ternary_expression] = STATE(2238), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2238), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2238), + [sym_dictionary_literal] = STATE(2238), + [sym__special_literal] = STATE(2238), + [sym__playground_literal] = STATE(2238), + [sym_lambda_literal] = STATE(2238), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2238), + [sym_key_path_expression] = STATE(2238), + [sym_key_path_string_expression] = STATE(2238), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2238), + [sym__comparison_operator] = STATE(2238), + [sym__additive_operator] = STATE(2238), + [sym__multiplicative_operator] = STATE(2238), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2238), + [sym__referenceable_operator] = STATE(2238), + [sym__eq_eq] = STATE(2238), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1183), + [sym_real_literal] = ACTIONS(1185), + [sym_integer_literal] = ACTIONS(1183), + [sym_hex_literal] = ACTIONS(1185), + [sym_oct_literal] = ACTIONS(1185), + [sym_bin_literal] = ACTIONS(1185), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1315), + [anon_sym_COMMA] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1183), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1183), + [anon_sym_POUNDfileID] = ACTIONS(1185), + [anon_sym_POUNDfilePath] = ACTIONS(1185), + [anon_sym_POUNDline] = ACTIONS(1185), + [anon_sym_POUNDcolumn] = ACTIONS(1185), + [anon_sym_POUNDfunction] = ACTIONS(1185), + [anon_sym_POUNDdsohandle] = ACTIONS(1185), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1183), + [anon_sym_PERCENT] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1185), + [sym__plus_then_ws] = ACTIONS(1185), + [sym__minus_then_ws] = ACTIONS(1185), + [sym_bang] = ACTIONS(833), + }, + [306] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2180), + [sym_boolean_literal] = STATE(2180), + [sym__string_literal] = STATE(2180), + [sym_line_string_literal] = STATE(2180), + [sym_multi_line_string_literal] = STATE(2180), + [sym_raw_string_literal] = STATE(2180), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2180), + [sym__unary_expression] = STATE(2180), + [sym_postfix_expression] = STATE(2180), + [sym_constructor_expression] = STATE(2180), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2180), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2180), + [sym_prefix_expression] = STATE(2180), + [sym_as_expression] = STATE(2180), + [sym_selector_expression] = STATE(2180), + [sym__binary_expression] = STATE(2180), + [sym_multiplicative_expression] = STATE(2180), + [sym_additive_expression] = STATE(2180), + [sym_range_expression] = STATE(2180), + [sym_infix_expression] = STATE(2180), + [sym_nil_coalescing_expression] = STATE(2180), + [sym_check_expression] = STATE(2180), + [sym_comparison_expression] = STATE(2180), + [sym_equality_expression] = STATE(2180), + [sym_conjunction_expression] = STATE(2180), + [sym_disjunction_expression] = STATE(2180), + [sym_bitwise_operation] = STATE(2180), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2180), + [sym_await_expression] = STATE(2180), + [sym_ternary_expression] = STATE(2180), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2180), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2180), + [sym_dictionary_literal] = STATE(2180), + [sym__special_literal] = STATE(2180), + [sym__playground_literal] = STATE(2180), + [sym_lambda_literal] = STATE(2180), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2180), + [sym_key_path_expression] = STATE(2180), + [sym_key_path_string_expression] = STATE(2180), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2180), + [sym__comparison_operator] = STATE(2180), + [sym__additive_operator] = STATE(2180), + [sym__multiplicative_operator] = STATE(2180), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2180), + [sym__referenceable_operator] = STATE(2180), + [sym__eq_eq] = STATE(2180), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1209), + [aux_sym_simple_identifier_token2] = ACTIONS(1212), + [aux_sym_simple_identifier_token3] = ACTIONS(1212), + [aux_sym_simple_identifier_token4] = ACTIONS(1212), + [anon_sym_nil] = ACTIONS(1317), + [sym_real_literal] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1317), + [sym_hex_literal] = ACTIONS(1319), + [sym_oct_literal] = ACTIONS(1319), + [sym_bin_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1317), + [anon_sym_GT] = ACTIONS(1317), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1317), + [anon_sym_POUNDfileID] = ACTIONS(1319), + [anon_sym_POUNDfilePath] = ACTIONS(1319), + [anon_sym_POUNDline] = ACTIONS(1319), + [anon_sym_POUNDcolumn] = ACTIONS(1319), + [anon_sym_POUNDfunction] = ACTIONS(1319), + [anon_sym_POUNDdsohandle] = ACTIONS(1319), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1317), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1317), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1317), + [anon_sym_LT_EQ] = ACTIONS(1317), + [anon_sym_GT_EQ] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_SLASH] = ACTIONS(1317), + [anon_sym_PERCENT] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1319), + [sym__plus_then_ws] = ACTIONS(1319), + [sym__minus_then_ws] = ACTIONS(1319), + [sym_bang] = ACTIONS(833), + }, + [307] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2220), + [sym_boolean_literal] = STATE(2220), + [sym__string_literal] = STATE(2220), + [sym_line_string_literal] = STATE(2220), + [sym_multi_line_string_literal] = STATE(2220), + [sym_raw_string_literal] = STATE(2220), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2220), + [sym__unary_expression] = STATE(2220), + [sym_postfix_expression] = STATE(2220), + [sym_constructor_expression] = STATE(2220), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2220), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2220), + [sym_prefix_expression] = STATE(2220), + [sym_as_expression] = STATE(2220), + [sym_selector_expression] = STATE(2220), + [sym__binary_expression] = STATE(2220), + [sym_multiplicative_expression] = STATE(2220), + [sym_additive_expression] = STATE(2220), + [sym_range_expression] = STATE(2220), + [sym_infix_expression] = STATE(2220), + [sym_nil_coalescing_expression] = STATE(2220), + [sym_check_expression] = STATE(2220), + [sym_comparison_expression] = STATE(2220), + [sym_equality_expression] = STATE(2220), + [sym_conjunction_expression] = STATE(2220), + [sym_disjunction_expression] = STATE(2220), + [sym_bitwise_operation] = STATE(2220), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2220), + [sym_await_expression] = STATE(2220), + [sym_ternary_expression] = STATE(2220), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2220), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2220), + [sym_dictionary_literal] = STATE(2220), + [sym__special_literal] = STATE(2220), + [sym__playground_literal] = STATE(2220), + [sym_lambda_literal] = STATE(2220), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2220), + [sym_key_path_expression] = STATE(2220), + [sym_key_path_string_expression] = STATE(2220), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2220), + [sym__comparison_operator] = STATE(2220), + [sym__additive_operator] = STATE(2220), + [sym__multiplicative_operator] = STATE(2220), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2220), + [sym__referenceable_operator] = STATE(2220), + [sym__eq_eq] = STATE(2220), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1321), + [sym_real_literal] = ACTIONS(1323), + [sym_integer_literal] = ACTIONS(1321), + [sym_hex_literal] = ACTIONS(1323), + [sym_oct_literal] = ACTIONS(1323), + [sym_bin_literal] = ACTIONS(1323), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [anon_sym_getter_COLON] = ACTIONS(1325), + [anon_sym_setter_COLON] = ACTIONS(1325), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(1321), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1321), + [anon_sym_POUNDfileID] = ACTIONS(1323), + [anon_sym_POUNDfilePath] = ACTIONS(1323), + [anon_sym_POUNDline] = ACTIONS(1323), + [anon_sym_POUNDcolumn] = ACTIONS(1323), + [anon_sym_POUNDfunction] = ACTIONS(1323), + [anon_sym_POUNDdsohandle] = ACTIONS(1323), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1321), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_SLASH] = ACTIONS(1321), + [anon_sym_PERCENT] = ACTIONS(1321), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1323), + [sym__plus_then_ws] = ACTIONS(1323), + [sym__minus_then_ws] = ACTIONS(1323), + [sym_bang] = ACTIONS(833), + }, + [308] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1613), + [sym_boolean_literal] = STATE(1613), + [sym__string_literal] = STATE(1613), + [sym_line_string_literal] = STATE(1613), + [sym_multi_line_string_literal] = STATE(1613), + [sym_raw_string_literal] = STATE(1613), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1613), + [sym__unary_expression] = STATE(1613), + [sym_postfix_expression] = STATE(1613), + [sym_constructor_expression] = STATE(1613), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1613), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1613), + [sym_prefix_expression] = STATE(1613), + [sym_as_expression] = STATE(1613), + [sym_selector_expression] = STATE(1613), + [sym__binary_expression] = STATE(1613), + [sym_multiplicative_expression] = STATE(1613), + [sym_additive_expression] = STATE(1613), + [sym_range_expression] = STATE(1613), + [sym_infix_expression] = STATE(1613), + [sym_nil_coalescing_expression] = STATE(1613), + [sym_check_expression] = STATE(1613), + [sym_comparison_expression] = STATE(1613), + [sym_equality_expression] = STATE(1613), + [sym_conjunction_expression] = STATE(1613), + [sym_disjunction_expression] = STATE(1613), + [sym_bitwise_operation] = STATE(1613), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1613), + [sym_await_expression] = STATE(1613), + [sym_ternary_expression] = STATE(1613), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1613), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1613), + [sym_dictionary_literal] = STATE(1613), + [sym__special_literal] = STATE(1613), + [sym__playground_literal] = STATE(1613), + [sym_lambda_literal] = STATE(1613), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1613), + [sym_key_path_expression] = STATE(1613), + [sym_key_path_string_expression] = STATE(1613), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1613), + [sym__comparison_operator] = STATE(1613), + [sym__additive_operator] = STATE(1613), + [sym__multiplicative_operator] = STATE(1613), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1613), + [sym__referenceable_operator] = STATE(1613), + [sym__eq_eq] = STATE(1613), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1209), + [aux_sym_simple_identifier_token2] = ACTIONS(1212), + [aux_sym_simple_identifier_token3] = ACTIONS(1212), + [aux_sym_simple_identifier_token4] = ACTIONS(1212), + [anon_sym_nil] = ACTIONS(1327), + [sym_real_literal] = ACTIONS(1329), + [sym_integer_literal] = ACTIONS(1327), + [sym_hex_literal] = ACTIONS(1329), + [sym_oct_literal] = ACTIONS(1329), + [sym_bin_literal] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1327), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1327), + [anon_sym_POUNDfileID] = ACTIONS(1329), + [anon_sym_POUNDfilePath] = ACTIONS(1329), + [anon_sym_POUNDline] = ACTIONS(1329), + [anon_sym_POUNDcolumn] = ACTIONS(1329), + [anon_sym_POUNDfunction] = ACTIONS(1329), + [anon_sym_POUNDdsohandle] = ACTIONS(1329), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1327), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1327), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_PERCENT] = ACTIONS(1327), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1329), + [sym__plus_then_ws] = ACTIONS(1329), + [sym__minus_then_ws] = ACTIONS(1329), + [sym_bang] = ACTIONS(833), + }, + [309] = { + [sym_simple_identifier] = STATE(2363), + [sym__basic_literal] = STATE(1905), + [sym_boolean_literal] = STATE(1905), + [sym__string_literal] = STATE(1905), + [sym_line_string_literal] = STATE(1905), + [sym_multi_line_string_literal] = STATE(1905), + [sym_raw_string_literal] = STATE(1905), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1905), + [sym__unary_expression] = STATE(1905), + [sym_postfix_expression] = STATE(1905), + [sym_constructor_expression] = STATE(1905), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1905), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1905), + [sym_prefix_expression] = STATE(1905), + [sym_as_expression] = STATE(1905), + [sym_selector_expression] = STATE(1905), + [sym__binary_expression] = STATE(1905), + [sym_multiplicative_expression] = STATE(1905), + [sym_additive_expression] = STATE(1905), + [sym_range_expression] = STATE(1905), + [sym_infix_expression] = STATE(1905), + [sym_nil_coalescing_expression] = STATE(1905), + [sym_check_expression] = STATE(1905), + [sym_comparison_expression] = STATE(1905), + [sym_equality_expression] = STATE(1905), + [sym_conjunction_expression] = STATE(1905), + [sym_disjunction_expression] = STATE(1905), + [sym_bitwise_operation] = STATE(1905), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1905), + [sym_await_expression] = STATE(1905), + [sym_ternary_expression] = STATE(1905), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1905), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1905), + [sym_dictionary_literal] = STATE(1905), + [sym__special_literal] = STATE(1905), + [sym__playground_literal] = STATE(1905), + [sym_lambda_literal] = STATE(1905), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1905), + [sym_key_path_expression] = STATE(1905), + [sym_key_path_string_expression] = STATE(1905), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1905), + [sym__comparison_operator] = STATE(1905), + [sym__additive_operator] = STATE(1905), + [sym__multiplicative_operator] = STATE(1905), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1905), + [sym__referenceable_operator] = STATE(1905), + [sym__eq_eq] = STATE(1905), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_attribute_repeat1] = STATE(5415), + [aux_sym_attribute_repeat2] = STATE(5795), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1131), + [aux_sym_simple_identifier_token2] = ACTIONS(1133), + [aux_sym_simple_identifier_token3] = ACTIONS(1133), + [aux_sym_simple_identifier_token4] = ACTIONS(1133), + [anon_sym_nil] = ACTIONS(1331), + [sym_real_literal] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1331), + [sym_hex_literal] = ACTIONS(1333), + [sym_oct_literal] = ACTIONS(1333), + [sym_bin_literal] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT] = ACTIONS(1331), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1331), + [anon_sym_POUNDfileID] = ACTIONS(1333), + [anon_sym_POUNDfilePath] = ACTIONS(1333), + [anon_sym_POUNDline] = ACTIONS(1333), + [anon_sym_POUNDcolumn] = ACTIONS(1333), + [anon_sym_POUNDfunction] = ACTIONS(1333), + [anon_sym_POUNDdsohandle] = ACTIONS(1333), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1331), + [anon_sym_LT_EQ] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1331), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_SLASH] = ACTIONS(1331), + [anon_sym_PERCENT] = ACTIONS(1331), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1333), + [sym__plus_then_ws] = ACTIONS(1333), + [sym__minus_then_ws] = ACTIONS(1333), + [sym_bang] = ACTIONS(833), + }, + [310] = { + [sym_simple_identifier] = STATE(2369), + [sym__basic_literal] = STATE(1808), + [sym_boolean_literal] = STATE(1808), + [sym__string_literal] = STATE(1808), + [sym_line_string_literal] = STATE(1808), + [sym_multi_line_string_literal] = STATE(1808), + [sym_raw_string_literal] = STATE(1808), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1808), + [sym__unary_expression] = STATE(1808), + [sym_postfix_expression] = STATE(1808), + [sym_constructor_expression] = STATE(1808), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1808), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1808), + [sym_prefix_expression] = STATE(1808), + [sym_as_expression] = STATE(1808), + [sym_selector_expression] = STATE(1808), + [sym__binary_expression] = STATE(1808), + [sym_multiplicative_expression] = STATE(1808), + [sym_additive_expression] = STATE(1808), + [sym_range_expression] = STATE(1808), + [sym_infix_expression] = STATE(1808), + [sym_nil_coalescing_expression] = STATE(1808), + [sym_check_expression] = STATE(1808), + [sym_comparison_expression] = STATE(1808), + [sym_equality_expression] = STATE(1808), + [sym_conjunction_expression] = STATE(1808), + [sym_disjunction_expression] = STATE(1808), + [sym_bitwise_operation] = STATE(1808), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1808), + [sym_await_expression] = STATE(1808), + [sym_ternary_expression] = STATE(1808), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1808), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1808), + [sym_dictionary_literal] = STATE(1808), + [sym__special_literal] = STATE(1808), + [sym__playground_literal] = STATE(1808), + [sym_lambda_literal] = STATE(1808), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1808), + [sym_key_path_expression] = STATE(1808), + [sym_key_path_string_expression] = STATE(1808), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1808), + [sym__comparison_operator] = STATE(1808), + [sym__additive_operator] = STATE(1808), + [sym__multiplicative_operator] = STATE(1808), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1808), + [sym__referenceable_operator] = STATE(1808), + [sym__eq_eq] = STATE(1808), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_attribute_repeat1] = STATE(5406), + [aux_sym_attribute_repeat2] = STATE(5834), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1131), + [aux_sym_simple_identifier_token2] = ACTIONS(1133), + [aux_sym_simple_identifier_token3] = ACTIONS(1133), + [aux_sym_simple_identifier_token4] = ACTIONS(1133), + [anon_sym_nil] = ACTIONS(1335), + [sym_real_literal] = ACTIONS(1337), + [sym_integer_literal] = ACTIONS(1335), + [sym_hex_literal] = ACTIONS(1337), + [sym_oct_literal] = ACTIONS(1337), + [sym_bin_literal] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT] = ACTIONS(1335), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1335), + [anon_sym_POUNDfileID] = ACTIONS(1337), + [anon_sym_POUNDfilePath] = ACTIONS(1337), + [anon_sym_POUNDline] = ACTIONS(1337), + [anon_sym_POUNDcolumn] = ACTIONS(1337), + [anon_sym_POUNDfunction] = ACTIONS(1337), + [anon_sym_POUNDdsohandle] = ACTIONS(1337), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1335), + [anon_sym_LT_EQ] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1335), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_SLASH] = ACTIONS(1335), + [anon_sym_PERCENT] = ACTIONS(1335), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1337), + [sym__plus_then_ws] = ACTIONS(1337), + [sym__minus_then_ws] = ACTIONS(1337), + [sym_bang] = ACTIONS(833), + }, + [311] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2244), + [sym_boolean_literal] = STATE(2244), + [sym__string_literal] = STATE(2244), + [sym_line_string_literal] = STATE(2244), + [sym_multi_line_string_literal] = STATE(2244), + [sym_raw_string_literal] = STATE(2244), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2244), + [sym__unary_expression] = STATE(2244), + [sym_postfix_expression] = STATE(2244), + [sym_constructor_expression] = STATE(2244), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2244), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2244), + [sym_prefix_expression] = STATE(2244), + [sym_as_expression] = STATE(2244), + [sym_selector_expression] = STATE(2244), + [sym__binary_expression] = STATE(2244), + [sym_multiplicative_expression] = STATE(2244), + [sym_additive_expression] = STATE(2244), + [sym_range_expression] = STATE(2244), + [sym_infix_expression] = STATE(2244), + [sym_nil_coalescing_expression] = STATE(2244), + [sym_check_expression] = STATE(2244), + [sym_comparison_expression] = STATE(2244), + [sym_equality_expression] = STATE(2244), + [sym_conjunction_expression] = STATE(2244), + [sym_disjunction_expression] = STATE(2244), + [sym_bitwise_operation] = STATE(2244), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2244), + [sym_await_expression] = STATE(2244), + [sym_ternary_expression] = STATE(2244), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2244), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2244), + [sym_dictionary_literal] = STATE(2244), + [sym__dictionary_literal_item] = STATE(8612), + [sym__special_literal] = STATE(2244), + [sym__playground_literal] = STATE(2244), + [sym_lambda_literal] = STATE(2244), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2244), + [sym_key_path_expression] = STATE(2244), + [sym_key_path_string_expression] = STATE(2244), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2244), + [sym__comparison_operator] = STATE(2244), + [sym__additive_operator] = STATE(2244), + [sym__multiplicative_operator] = STATE(2244), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2244), + [sym__referenceable_operator] = STATE(2244), + [sym__eq_eq] = STATE(2244), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1221), + [sym_real_literal] = ACTIONS(1223), + [sym_integer_literal] = ACTIONS(1221), + [sym_hex_literal] = ACTIONS(1223), + [sym_oct_literal] = ACTIONS(1223), + [sym_bin_literal] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1221), + [anon_sym_POUNDfileID] = ACTIONS(1223), + [anon_sym_POUNDfilePath] = ACTIONS(1223), + [anon_sym_POUNDline] = ACTIONS(1223), + [anon_sym_POUNDcolumn] = ACTIONS(1223), + [anon_sym_POUNDfunction] = ACTIONS(1223), + [anon_sym_POUNDdsohandle] = ACTIONS(1223), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1221), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1223), + [sym__plus_then_ws] = ACTIONS(1223), + [sym__minus_then_ws] = ACTIONS(1223), + [sym_bang] = ACTIONS(833), + }, + [312] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2244), + [sym_boolean_literal] = STATE(2244), + [sym__string_literal] = STATE(2244), + [sym_line_string_literal] = STATE(2244), + [sym_multi_line_string_literal] = STATE(2244), + [sym_raw_string_literal] = STATE(2244), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2244), + [sym__unary_expression] = STATE(2244), + [sym_postfix_expression] = STATE(2244), + [sym_constructor_expression] = STATE(2244), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2244), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2244), + [sym_prefix_expression] = STATE(2244), + [sym_as_expression] = STATE(2244), + [sym_selector_expression] = STATE(2244), + [sym__binary_expression] = STATE(2244), + [sym_multiplicative_expression] = STATE(2244), + [sym_additive_expression] = STATE(2244), + [sym_range_expression] = STATE(2244), + [sym_infix_expression] = STATE(2244), + [sym_nil_coalescing_expression] = STATE(2244), + [sym_check_expression] = STATE(2244), + [sym_comparison_expression] = STATE(2244), + [sym_equality_expression] = STATE(2244), + [sym_conjunction_expression] = STATE(2244), + [sym_disjunction_expression] = STATE(2244), + [sym_bitwise_operation] = STATE(2244), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2244), + [sym_await_expression] = STATE(2244), + [sym_ternary_expression] = STATE(2244), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2244), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2244), + [sym_dictionary_literal] = STATE(2244), + [sym__dictionary_literal_item] = STATE(8612), + [sym__special_literal] = STATE(2244), + [sym__playground_literal] = STATE(2244), + [sym_lambda_literal] = STATE(2244), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2244), + [sym_key_path_expression] = STATE(2244), + [sym_key_path_string_expression] = STATE(2244), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2244), + [sym__comparison_operator] = STATE(2244), + [sym__additive_operator] = STATE(2244), + [sym__multiplicative_operator] = STATE(2244), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2244), + [sym__referenceable_operator] = STATE(2244), + [sym__eq_eq] = STATE(2244), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1221), + [sym_real_literal] = ACTIONS(1223), + [sym_integer_literal] = ACTIONS(1221), + [sym_hex_literal] = ACTIONS(1223), + [sym_oct_literal] = ACTIONS(1223), + [sym_bin_literal] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1221), + [anon_sym_POUNDfileID] = ACTIONS(1223), + [anon_sym_POUNDfilePath] = ACTIONS(1223), + [anon_sym_POUNDline] = ACTIONS(1223), + [anon_sym_POUNDcolumn] = ACTIONS(1223), + [anon_sym_POUNDfunction] = ACTIONS(1223), + [anon_sym_POUNDdsohandle] = ACTIONS(1223), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1221), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1223), + [sym__plus_then_ws] = ACTIONS(1223), + [sym__minus_then_ws] = ACTIONS(1223), + [sym_bang] = ACTIONS(833), + }, + [313] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1622), + [sym_boolean_literal] = STATE(1622), + [sym__string_literal] = STATE(1622), + [sym_line_string_literal] = STATE(1622), + [sym_multi_line_string_literal] = STATE(1622), + [sym_raw_string_literal] = STATE(1622), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1622), + [sym__unary_expression] = STATE(1622), + [sym_postfix_expression] = STATE(1622), + [sym_constructor_expression] = STATE(1622), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1622), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1622), + [sym_prefix_expression] = STATE(1622), + [sym_as_expression] = STATE(1622), + [sym_selector_expression] = STATE(1622), + [sym__binary_expression] = STATE(1622), + [sym_multiplicative_expression] = STATE(1622), + [sym_additive_expression] = STATE(1622), + [sym_range_expression] = STATE(1622), + [sym_infix_expression] = STATE(1622), + [sym_nil_coalescing_expression] = STATE(1622), + [sym_check_expression] = STATE(1622), + [sym_comparison_expression] = STATE(1622), + [sym_equality_expression] = STATE(1622), + [sym_conjunction_expression] = STATE(1622), + [sym_disjunction_expression] = STATE(1622), + [sym_bitwise_operation] = STATE(1622), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1622), + [sym_await_expression] = STATE(1622), + [sym_ternary_expression] = STATE(1622), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1622), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1622), + [sym_dictionary_literal] = STATE(1622), + [sym__special_literal] = STATE(1622), + [sym__playground_literal] = STATE(1622), + [sym_lambda_literal] = STATE(1622), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1622), + [sym_key_path_expression] = STATE(1622), + [sym_key_path_string_expression] = STATE(1622), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1622), + [sym__comparison_operator] = STATE(1622), + [sym__additive_operator] = STATE(1622), + [sym__multiplicative_operator] = STATE(1622), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1622), + [sym__referenceable_operator] = STATE(1622), + [sym__eq_eq] = STATE(1622), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1209), + [aux_sym_simple_identifier_token2] = ACTIONS(1212), + [aux_sym_simple_identifier_token3] = ACTIONS(1212), + [aux_sym_simple_identifier_token4] = ACTIONS(1212), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1343), + [anon_sym_GT] = ACTIONS(1343), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1343), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1343), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1343), + [anon_sym_LT_EQ] = ACTIONS(1343), + [anon_sym_GT_EQ] = ACTIONS(1343), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_SLASH] = ACTIONS(1343), + [anon_sym_PERCENT] = ACTIONS(1343), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1345), + [sym__plus_then_ws] = ACTIONS(1345), + [sym__minus_then_ws] = ACTIONS(1345), + [sym_bang] = ACTIONS(833), + }, + [314] = { + [sym_simple_identifier] = STATE(2367), + [sym__basic_literal] = STATE(2216), + [sym_boolean_literal] = STATE(2216), + [sym__string_literal] = STATE(2216), + [sym_line_string_literal] = STATE(2216), + [sym_multi_line_string_literal] = STATE(2216), + [sym_raw_string_literal] = STATE(2216), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2216), + [sym__unary_expression] = STATE(2216), + [sym_postfix_expression] = STATE(2216), + [sym_constructor_expression] = STATE(2216), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2216), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2216), + [sym_prefix_expression] = STATE(2216), + [sym_as_expression] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym__binary_expression] = STATE(2216), + [sym_multiplicative_expression] = STATE(2216), + [sym_additive_expression] = STATE(2216), + [sym_range_expression] = STATE(2216), + [sym_infix_expression] = STATE(2216), + [sym_nil_coalescing_expression] = STATE(2216), + [sym_check_expression] = STATE(2216), + [sym_comparison_expression] = STATE(2216), + [sym_equality_expression] = STATE(2216), + [sym_conjunction_expression] = STATE(2216), + [sym_disjunction_expression] = STATE(2216), + [sym_bitwise_operation] = STATE(2216), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2216), + [sym_await_expression] = STATE(2216), + [sym_ternary_expression] = STATE(2216), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2216), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2216), + [sym_dictionary_literal] = STATE(2216), + [sym__special_literal] = STATE(2216), + [sym__playground_literal] = STATE(2216), + [sym_lambda_literal] = STATE(2216), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2216), + [sym_key_path_expression] = STATE(2216), + [sym_key_path_string_expression] = STATE(2216), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2216), + [sym__comparison_operator] = STATE(2216), + [sym__additive_operator] = STATE(2216), + [sym__multiplicative_operator] = STATE(2216), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2216), + [sym__referenceable_operator] = STATE(2216), + [sym__eq_eq] = STATE(2216), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_attribute_repeat1] = STATE(5562), + [aux_sym_attribute_repeat2] = STATE(5798), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1131), + [aux_sym_simple_identifier_token2] = ACTIONS(1133), + [aux_sym_simple_identifier_token3] = ACTIONS(1133), + [aux_sym_simple_identifier_token4] = ACTIONS(1133), + [anon_sym_nil] = ACTIONS(1347), + [sym_real_literal] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1347), + [sym_hex_literal] = ACTIONS(1349), + [sym_oct_literal] = ACTIONS(1349), + [sym_bin_literal] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT] = ACTIONS(1347), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1347), + [anon_sym_POUNDfileID] = ACTIONS(1349), + [anon_sym_POUNDfilePath] = ACTIONS(1349), + [anon_sym_POUNDline] = ACTIONS(1349), + [anon_sym_POUNDcolumn] = ACTIONS(1349), + [anon_sym_POUNDfunction] = ACTIONS(1349), + [anon_sym_POUNDdsohandle] = ACTIONS(1349), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1347), + [anon_sym_LT_EQ] = ACTIONS(1347), + [anon_sym_GT_EQ] = ACTIONS(1347), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1349), + [sym__plus_then_ws] = ACTIONS(1349), + [sym__minus_then_ws] = ACTIONS(1349), + [sym_bang] = ACTIONS(833), + }, + [315] = { + [sym_simple_identifier] = STATE(2346), + [sym__basic_literal] = STATE(1633), + [sym_boolean_literal] = STATE(1633), + [sym__string_literal] = STATE(1633), + [sym_line_string_literal] = STATE(1633), + [sym_multi_line_string_literal] = STATE(1633), + [sym_raw_string_literal] = STATE(1633), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1633), + [sym__unary_expression] = STATE(1633), + [sym_postfix_expression] = STATE(1633), + [sym_constructor_expression] = STATE(1633), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1633), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1633), + [sym_prefix_expression] = STATE(1633), + [sym_as_expression] = STATE(1633), + [sym_selector_expression] = STATE(1633), + [sym__binary_expression] = STATE(1633), + [sym_multiplicative_expression] = STATE(1633), + [sym_additive_expression] = STATE(1633), + [sym_range_expression] = STATE(1633), + [sym_infix_expression] = STATE(1633), + [sym_nil_coalescing_expression] = STATE(1633), + [sym_check_expression] = STATE(1633), + [sym_comparison_expression] = STATE(1633), + [sym_equality_expression] = STATE(1633), + [sym_conjunction_expression] = STATE(1633), + [sym_disjunction_expression] = STATE(1633), + [sym_bitwise_operation] = STATE(1633), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1633), + [sym_await_expression] = STATE(1633), + [sym_ternary_expression] = STATE(1633), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1633), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1633), + [sym_dictionary_literal] = STATE(1633), + [sym__special_literal] = STATE(1633), + [sym__playground_literal] = STATE(1633), + [sym_lambda_literal] = STATE(1633), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1633), + [sym_key_path_expression] = STATE(1633), + [sym_key_path_string_expression] = STATE(1633), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1633), + [sym__comparison_operator] = STATE(1633), + [sym__additive_operator] = STATE(1633), + [sym__multiplicative_operator] = STATE(1633), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1633), + [sym__referenceable_operator] = STATE(1633), + [sym__eq_eq] = STATE(1633), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_attribute_repeat1] = STATE(5414), + [aux_sym_attribute_repeat2] = STATE(5855), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1131), + [aux_sym_simple_identifier_token2] = ACTIONS(1133), + [aux_sym_simple_identifier_token3] = ACTIONS(1133), + [aux_sym_simple_identifier_token4] = ACTIONS(1133), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1351), + [anon_sym_GT] = ACTIONS(1351), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1351), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1351), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1351), + [anon_sym_LT_EQ] = ACTIONS(1351), + [anon_sym_GT_EQ] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1353), + [sym__plus_then_ws] = ACTIONS(1353), + [sym__minus_then_ws] = ACTIONS(1353), + [sym_bang] = ACTIONS(833), + }, + [316] = { + [sym_simple_identifier] = STATE(2375), + [sym__basic_literal] = STATE(2041), + [sym_boolean_literal] = STATE(2041), + [sym__string_literal] = STATE(2041), + [sym_line_string_literal] = STATE(2041), + [sym_multi_line_string_literal] = STATE(2041), + [sym_raw_string_literal] = STATE(2041), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2041), + [sym__unary_expression] = STATE(2041), + [sym_postfix_expression] = STATE(2041), + [sym_constructor_expression] = STATE(2041), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2041), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2041), + [sym_prefix_expression] = STATE(2041), + [sym_as_expression] = STATE(2041), + [sym_selector_expression] = STATE(2041), + [sym__binary_expression] = STATE(2041), + [sym_multiplicative_expression] = STATE(2041), + [sym_additive_expression] = STATE(2041), + [sym_range_expression] = STATE(2041), + [sym_infix_expression] = STATE(2041), + [sym_nil_coalescing_expression] = STATE(2041), + [sym_check_expression] = STATE(2041), + [sym_comparison_expression] = STATE(2041), + [sym_equality_expression] = STATE(2041), + [sym_conjunction_expression] = STATE(2041), + [sym_disjunction_expression] = STATE(2041), + [sym_bitwise_operation] = STATE(2041), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2041), + [sym_await_expression] = STATE(2041), + [sym_ternary_expression] = STATE(2041), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2041), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2041), + [sym_dictionary_literal] = STATE(2041), + [sym__special_literal] = STATE(2041), + [sym__playground_literal] = STATE(2041), + [sym_lambda_literal] = STATE(2041), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2041), + [sym_key_path_expression] = STATE(2041), + [sym_key_path_string_expression] = STATE(2041), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2041), + [sym__comparison_operator] = STATE(2041), + [sym__additive_operator] = STATE(2041), + [sym__multiplicative_operator] = STATE(2041), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2041), + [sym__referenceable_operator] = STATE(2041), + [sym__eq_eq] = STATE(2041), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_attribute_repeat1] = STATE(5464), + [aux_sym_attribute_repeat2] = STATE(5921), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1131), + [aux_sym_simple_identifier_token2] = ACTIONS(1133), + [aux_sym_simple_identifier_token3] = ACTIONS(1133), + [aux_sym_simple_identifier_token4] = ACTIONS(1133), + [anon_sym_nil] = ACTIONS(1355), + [sym_real_literal] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1355), + [sym_hex_literal] = ACTIONS(1357), + [sym_oct_literal] = ACTIONS(1357), + [sym_bin_literal] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1355), + [anon_sym_GT] = ACTIONS(1355), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1355), + [anon_sym_POUNDfileID] = ACTIONS(1357), + [anon_sym_POUNDfilePath] = ACTIONS(1357), + [anon_sym_POUNDline] = ACTIONS(1357), + [anon_sym_POUNDcolumn] = ACTIONS(1357), + [anon_sym_POUNDfunction] = ACTIONS(1357), + [anon_sym_POUNDdsohandle] = ACTIONS(1357), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1355), + [anon_sym_LT_EQ] = ACTIONS(1355), + [anon_sym_GT_EQ] = ACTIONS(1355), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_SLASH] = ACTIONS(1355), + [anon_sym_PERCENT] = ACTIONS(1355), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1357), + [sym__plus_then_ws] = ACTIONS(1357), + [sym__minus_then_ws] = ACTIONS(1357), + [sym_bang] = ACTIONS(833), + }, + [317] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2229), + [sym_boolean_literal] = STATE(2229), + [sym__string_literal] = STATE(2229), + [sym_line_string_literal] = STATE(2229), + [sym_multi_line_string_literal] = STATE(2229), + [sym_raw_string_literal] = STATE(2229), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2229), + [sym__unary_expression] = STATE(2229), + [sym_postfix_expression] = STATE(2229), + [sym_constructor_expression] = STATE(2229), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2229), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2229), + [sym_prefix_expression] = STATE(2229), + [sym_as_expression] = STATE(2229), + [sym_selector_expression] = STATE(2229), + [sym__binary_expression] = STATE(2229), + [sym_multiplicative_expression] = STATE(2229), + [sym_additive_expression] = STATE(2229), + [sym_range_expression] = STATE(2229), + [sym_infix_expression] = STATE(2229), + [sym_nil_coalescing_expression] = STATE(2229), + [sym_check_expression] = STATE(2229), + [sym_comparison_expression] = STATE(2229), + [sym_equality_expression] = STATE(2229), + [sym_conjunction_expression] = STATE(2229), + [sym_disjunction_expression] = STATE(2229), + [sym_bitwise_operation] = STATE(2229), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2229), + [sym_await_expression] = STATE(2229), + [sym_ternary_expression] = STATE(2229), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2229), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2229), + [sym_dictionary_literal] = STATE(2229), + [sym__special_literal] = STATE(2229), + [sym__playground_literal] = STATE(2229), + [sym_lambda_literal] = STATE(2229), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2229), + [sym_key_path_expression] = STATE(2229), + [sym_key_path_string_expression] = STATE(2229), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2229), + [sym__comparison_operator] = STATE(2229), + [sym__additive_operator] = STATE(2229), + [sym__multiplicative_operator] = STATE(2229), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2229), + [sym__referenceable_operator] = STATE(2229), + [sym__eq_eq] = STATE(2229), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1359), + [sym_real_literal] = ACTIONS(1361), + [sym_integer_literal] = ACTIONS(1359), + [sym_hex_literal] = ACTIONS(1361), + [sym_oct_literal] = ACTIONS(1361), + [sym_bin_literal] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [anon_sym_getter_COLON] = ACTIONS(1363), + [anon_sym_setter_COLON] = ACTIONS(1363), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1359), + [anon_sym_POUNDfileID] = ACTIONS(1361), + [anon_sym_POUNDfilePath] = ACTIONS(1361), + [anon_sym_POUNDline] = ACTIONS(1361), + [anon_sym_POUNDcolumn] = ACTIONS(1361), + [anon_sym_POUNDfunction] = ACTIONS(1361), + [anon_sym_POUNDdsohandle] = ACTIONS(1361), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1359), + [anon_sym_LT_EQ] = ACTIONS(1359), + [anon_sym_GT_EQ] = ACTIONS(1359), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_SLASH] = ACTIONS(1359), + [anon_sym_PERCENT] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1361), + [sym__plus_then_ws] = ACTIONS(1361), + [sym__minus_then_ws] = ACTIONS(1361), + [sym_bang] = ACTIONS(833), + }, + [318] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2168), + [sym_boolean_literal] = STATE(2168), + [sym__string_literal] = STATE(2168), + [sym_line_string_literal] = STATE(2168), + [sym_multi_line_string_literal] = STATE(2168), + [sym_raw_string_literal] = STATE(2168), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2168), + [sym__unary_expression] = STATE(2168), + [sym_postfix_expression] = STATE(2168), + [sym_constructor_expression] = STATE(2168), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2168), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2168), + [sym_prefix_expression] = STATE(2168), + [sym_as_expression] = STATE(2168), + [sym_selector_expression] = STATE(2168), + [sym__binary_expression] = STATE(2168), + [sym_multiplicative_expression] = STATE(2168), + [sym_additive_expression] = STATE(2168), + [sym_range_expression] = STATE(2168), + [sym_infix_expression] = STATE(2168), + [sym_nil_coalescing_expression] = STATE(2168), + [sym_check_expression] = STATE(2168), + [sym_comparison_expression] = STATE(2168), + [sym_equality_expression] = STATE(2168), + [sym_conjunction_expression] = STATE(2168), + [sym_disjunction_expression] = STATE(2168), + [sym_bitwise_operation] = STATE(2168), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2168), + [sym_await_expression] = STATE(2168), + [sym_ternary_expression] = STATE(2168), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2168), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2168), + [sym_dictionary_literal] = STATE(2168), + [sym__special_literal] = STATE(2168), + [sym__playground_literal] = STATE(2168), + [sym_lambda_literal] = STATE(2168), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2168), + [sym_key_path_expression] = STATE(2168), + [sym_key_path_string_expression] = STATE(2168), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2168), + [sym__comparison_operator] = STATE(2168), + [sym__additive_operator] = STATE(2168), + [sym__multiplicative_operator] = STATE(2168), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2168), + [sym__referenceable_operator] = STATE(2168), + [sym__eq_eq] = STATE(2168), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1209), + [aux_sym_simple_identifier_token2] = ACTIONS(1212), + [aux_sym_simple_identifier_token3] = ACTIONS(1212), + [aux_sym_simple_identifier_token4] = ACTIONS(1212), + [anon_sym_nil] = ACTIONS(1365), + [sym_real_literal] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1365), + [sym_hex_literal] = ACTIONS(1367), + [sym_oct_literal] = ACTIONS(1367), + [sym_bin_literal] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1365), + [anon_sym_GT] = ACTIONS(1365), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1365), + [anon_sym_POUNDfileID] = ACTIONS(1367), + [anon_sym_POUNDfilePath] = ACTIONS(1367), + [anon_sym_POUNDline] = ACTIONS(1367), + [anon_sym_POUNDcolumn] = ACTIONS(1367), + [anon_sym_POUNDfunction] = ACTIONS(1367), + [anon_sym_POUNDdsohandle] = ACTIONS(1367), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1365), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1365), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_SLASH] = ACTIONS(1365), + [anon_sym_PERCENT] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1367), + [sym__plus_then_ws] = ACTIONS(1367), + [sym__minus_then_ws] = ACTIONS(1367), + [sym_bang] = ACTIONS(833), + }, + [319] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2198), + [sym_boolean_literal] = STATE(2198), + [sym__string_literal] = STATE(2198), + [sym_line_string_literal] = STATE(2198), + [sym_multi_line_string_literal] = STATE(2198), + [sym_raw_string_literal] = STATE(2198), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2198), + [sym__unary_expression] = STATE(2198), + [sym_postfix_expression] = STATE(2198), + [sym_constructor_expression] = STATE(2198), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2198), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2198), + [sym_prefix_expression] = STATE(2198), + [sym_as_expression] = STATE(2198), + [sym_selector_expression] = STATE(2198), + [sym__binary_expression] = STATE(2198), + [sym_multiplicative_expression] = STATE(2198), + [sym_additive_expression] = STATE(2198), + [sym_range_expression] = STATE(2198), + [sym_infix_expression] = STATE(2198), + [sym_nil_coalescing_expression] = STATE(2198), + [sym_check_expression] = STATE(2198), + [sym_comparison_expression] = STATE(2198), + [sym_equality_expression] = STATE(2198), + [sym_conjunction_expression] = STATE(2198), + [sym_disjunction_expression] = STATE(2198), + [sym_bitwise_operation] = STATE(2198), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2198), + [sym_await_expression] = STATE(2198), + [sym_ternary_expression] = STATE(2198), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2198), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2198), + [sym_dictionary_literal] = STATE(2198), + [sym__special_literal] = STATE(2198), + [sym__playground_literal] = STATE(2198), + [sym_lambda_literal] = STATE(2198), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2198), + [sym_key_path_expression] = STATE(2198), + [sym_key_path_string_expression] = STATE(2198), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2198), + [sym__comparison_operator] = STATE(2198), + [sym__additive_operator] = STATE(2198), + [sym__multiplicative_operator] = STATE(2198), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2198), + [sym__referenceable_operator] = STATE(2198), + [sym__eq_eq] = STATE(2198), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1369), + [sym_real_literal] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1369), + [sym_hex_literal] = ACTIONS(1371), + [sym_oct_literal] = ACTIONS(1371), + [sym_bin_literal] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1373), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1369), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1369), + [anon_sym_POUNDfileID] = ACTIONS(1371), + [anon_sym_POUNDfilePath] = ACTIONS(1371), + [anon_sym_POUNDline] = ACTIONS(1371), + [anon_sym_POUNDcolumn] = ACTIONS(1371), + [anon_sym_POUNDfunction] = ACTIONS(1371), + [anon_sym_POUNDdsohandle] = ACTIONS(1371), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1371), + [sym__plus_then_ws] = ACTIONS(1371), + [sym__minus_then_ws] = ACTIONS(1371), + [sym_bang] = ACTIONS(833), + }, + [320] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(1690), + [sym_boolean_literal] = STATE(1690), + [sym__string_literal] = STATE(1690), + [sym_line_string_literal] = STATE(1690), + [sym_multi_line_string_literal] = STATE(1690), + [sym_raw_string_literal] = STATE(1690), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(1690), + [sym__unary_expression] = STATE(1690), + [sym_postfix_expression] = STATE(1690), + [sym_constructor_expression] = STATE(1690), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(1690), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(1690), + [sym_prefix_expression] = STATE(1690), + [sym_as_expression] = STATE(1690), + [sym_selector_expression] = STATE(1690), + [sym__binary_expression] = STATE(1690), + [sym_multiplicative_expression] = STATE(1690), + [sym_additive_expression] = STATE(1690), + [sym_range_expression] = STATE(1690), + [sym_infix_expression] = STATE(1690), + [sym_nil_coalescing_expression] = STATE(1690), + [sym_check_expression] = STATE(1690), + [sym_comparison_expression] = STATE(1690), + [sym_equality_expression] = STATE(1690), + [sym_conjunction_expression] = STATE(1690), + [sym_disjunction_expression] = STATE(1690), + [sym_bitwise_operation] = STATE(1690), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(1690), + [sym_await_expression] = STATE(1690), + [sym_ternary_expression] = STATE(1690), + [sym_expr_hack_at_ternary_binary_call] = STATE(3368), + [sym_call_expression] = STATE(2760), + [sym__primary_expression] = STATE(1690), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(1690), + [sym_dictionary_literal] = STATE(1690), + [sym__special_literal] = STATE(1690), + [sym__playground_literal] = STATE(1690), + [sym_lambda_literal] = STATE(1690), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(1690), + [sym_key_path_expression] = STATE(1690), + [sym_key_path_string_expression] = STATE(1690), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(1690), + [sym__comparison_operator] = STATE(1690), + [sym__additive_operator] = STATE(1690), + [sym__multiplicative_operator] = STATE(1690), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(1690), + [sym__referenceable_operator] = STATE(1690), + [sym__eq_eq] = STATE(1690), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [anon_sym_nil] = ACTIONS(1375), + [sym_real_literal] = ACTIONS(1377), + [sym_integer_literal] = ACTIONS(1375), + [sym_hex_literal] = ACTIONS(1377), + [sym_oct_literal] = ACTIONS(1377), + [sym_bin_literal] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_GT] = ACTIONS(1375), + [sym__await_operator] = ACTIONS(937), + [anon_sym_POUNDfile] = ACTIONS(1375), + [anon_sym_POUNDfileID] = ACTIONS(1377), + [anon_sym_POUNDfilePath] = ACTIONS(1377), + [anon_sym_POUNDline] = ACTIONS(1377), + [anon_sym_POUNDcolumn] = ACTIONS(1377), + [anon_sym_POUNDfunction] = ACTIONS(1377), + [anon_sym_POUNDdsohandle] = ACTIONS(1377), + [anon_sym_POUNDcolorLiteral] = ACTIONS(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(1375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_PERCENT] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(1377), + [sym__plus_then_ws] = ACTIONS(1377), + [sym__minus_then_ws] = ACTIONS(1377), + [sym_bang] = ACTIONS(971), + }, + [321] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(1703), + [sym_boolean_literal] = STATE(1703), + [sym__string_literal] = STATE(1703), + [sym_line_string_literal] = STATE(1703), + [sym_multi_line_string_literal] = STATE(1703), + [sym_raw_string_literal] = STATE(1703), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(1703), + [sym__unary_expression] = STATE(1703), + [sym_postfix_expression] = STATE(1703), + [sym_constructor_expression] = STATE(1703), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(1703), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(1703), + [sym_prefix_expression] = STATE(1703), + [sym_as_expression] = STATE(1703), + [sym_selector_expression] = STATE(1703), + [sym__binary_expression] = STATE(1703), + [sym_multiplicative_expression] = STATE(1703), + [sym_additive_expression] = STATE(1703), + [sym_range_expression] = STATE(1703), + [sym_infix_expression] = STATE(1703), + [sym_nil_coalescing_expression] = STATE(1703), + [sym_check_expression] = STATE(1703), + [sym_comparison_expression] = STATE(1703), + [sym_equality_expression] = STATE(1703), + [sym_conjunction_expression] = STATE(1703), + [sym_disjunction_expression] = STATE(1703), + [sym_bitwise_operation] = STATE(1703), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(1703), + [sym_await_expression] = STATE(1703), + [sym_ternary_expression] = STATE(1703), + [sym_expr_hack_at_ternary_binary_call] = STATE(3355), + [sym_call_expression] = STATE(2760), + [sym__primary_expression] = STATE(1703), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(1703), + [sym_dictionary_literal] = STATE(1703), + [sym__special_literal] = STATE(1703), + [sym__playground_literal] = STATE(1703), + [sym_lambda_literal] = STATE(1703), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(1703), + [sym_key_path_expression] = STATE(1703), + [sym_key_path_string_expression] = STATE(1703), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(1703), + [sym__comparison_operator] = STATE(1703), + [sym__additive_operator] = STATE(1703), + [sym__multiplicative_operator] = STATE(1703), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(1703), + [sym__referenceable_operator] = STATE(1703), + [sym__eq_eq] = STATE(1703), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [anon_sym_nil] = ACTIONS(1381), + [sym_real_literal] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1381), + [sym_hex_literal] = ACTIONS(1383), + [sym_oct_literal] = ACTIONS(1383), + [sym_bin_literal] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1381), + [sym__await_operator] = ACTIONS(937), + [anon_sym_POUNDfile] = ACTIONS(1381), + [anon_sym_POUNDfileID] = ACTIONS(1383), + [anon_sym_POUNDfilePath] = ACTIONS(1383), + [anon_sym_POUNDline] = ACTIONS(1383), + [anon_sym_POUNDcolumn] = ACTIONS(1383), + [anon_sym_POUNDfunction] = ACTIONS(1383), + [anon_sym_POUNDdsohandle] = ACTIONS(1383), + [anon_sym_POUNDcolorLiteral] = ACTIONS(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(1381), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1381), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PERCENT] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(1383), + [sym__plus_then_ws] = ACTIONS(1383), + [sym__minus_then_ws] = ACTIONS(1383), + [sym_bang] = ACTIONS(971), + }, + [322] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1510), + [sym_boolean_literal] = STATE(1510), + [sym__string_literal] = STATE(1510), + [sym_line_string_literal] = STATE(1510), + [sym_multi_line_string_literal] = STATE(1510), + [sym_raw_string_literal] = STATE(1510), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1510), + [sym__unary_expression] = STATE(1510), + [sym_postfix_expression] = STATE(1510), + [sym_constructor_expression] = STATE(1510), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1510), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1510), + [sym_prefix_expression] = STATE(1510), + [sym_as_expression] = STATE(1510), + [sym_selector_expression] = STATE(1510), + [sym__binary_expression] = STATE(1510), + [sym_multiplicative_expression] = STATE(1510), + [sym_additive_expression] = STATE(1510), + [sym_range_expression] = STATE(1510), + [sym_infix_expression] = STATE(1510), + [sym_nil_coalescing_expression] = STATE(1510), + [sym_check_expression] = STATE(1510), + [sym_comparison_expression] = STATE(1510), + [sym_equality_expression] = STATE(1510), + [sym_conjunction_expression] = STATE(1510), + [sym_disjunction_expression] = STATE(1510), + [sym_bitwise_operation] = STATE(1510), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1510), + [sym_await_expression] = STATE(1510), + [sym_ternary_expression] = STATE(1510), + [sym_expr_hack_at_ternary_binary_call] = STATE(3269), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1510), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1510), + [sym_dictionary_literal] = STATE(1510), + [sym__special_literal] = STATE(1510), + [sym__playground_literal] = STATE(1510), + [sym_lambda_literal] = STATE(1510), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1510), + [sym_key_path_expression] = STATE(1510), + [sym_key_path_string_expression] = STATE(1510), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1510), + [sym__comparison_operator] = STATE(1510), + [sym__additive_operator] = STATE(1510), + [sym__multiplicative_operator] = STATE(1510), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1510), + [sym__referenceable_operator] = STATE(1510), + [sym__eq_eq] = STATE(1510), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(1385), + [sym_real_literal] = ACTIONS(1387), + [sym_integer_literal] = ACTIONS(1385), + [sym_hex_literal] = ACTIONS(1387), + [sym_oct_literal] = ACTIONS(1387), + [sym_bin_literal] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1385), + [anon_sym_GT] = ACTIONS(1385), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(1385), + [anon_sym_POUNDfileID] = ACTIONS(1387), + [anon_sym_POUNDfilePath] = ACTIONS(1387), + [anon_sym_POUNDline] = ACTIONS(1387), + [anon_sym_POUNDcolumn] = ACTIONS(1387), + [anon_sym_POUNDfunction] = ACTIONS(1387), + [anon_sym_POUNDdsohandle] = ACTIONS(1387), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1385), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1385), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1385), + [anon_sym_LT_EQ] = ACTIONS(1385), + [anon_sym_GT_EQ] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_SLASH] = ACTIONS(1385), + [anon_sym_PERCENT] = ACTIONS(1385), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1387), + [sym__plus_then_ws] = ACTIONS(1387), + [sym__minus_then_ws] = ACTIONS(1387), + [sym_bang] = ACTIONS(1069), + }, + [323] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1507), + [sym_boolean_literal] = STATE(1507), + [sym__string_literal] = STATE(1507), + [sym_line_string_literal] = STATE(1507), + [sym_multi_line_string_literal] = STATE(1507), + [sym_raw_string_literal] = STATE(1507), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1507), + [sym__unary_expression] = STATE(1507), + [sym_postfix_expression] = STATE(1507), + [sym_constructor_expression] = STATE(1507), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1507), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1507), + [sym_prefix_expression] = STATE(1507), + [sym_as_expression] = STATE(1507), + [sym_selector_expression] = STATE(1507), + [sym__binary_expression] = STATE(1507), + [sym_multiplicative_expression] = STATE(1507), + [sym_additive_expression] = STATE(1507), + [sym_range_expression] = STATE(1507), + [sym_infix_expression] = STATE(1507), + [sym_nil_coalescing_expression] = STATE(1507), + [sym_check_expression] = STATE(1507), + [sym_comparison_expression] = STATE(1507), + [sym_equality_expression] = STATE(1507), + [sym_conjunction_expression] = STATE(1507), + [sym_disjunction_expression] = STATE(1507), + [sym_bitwise_operation] = STATE(1507), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1507), + [sym_await_expression] = STATE(1507), + [sym_ternary_expression] = STATE(1507), + [sym_expr_hack_at_ternary_binary_call] = STATE(3245), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1507), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1507), + [sym_dictionary_literal] = STATE(1507), + [sym__special_literal] = STATE(1507), + [sym__playground_literal] = STATE(1507), + [sym_lambda_literal] = STATE(1507), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1507), + [sym_key_path_expression] = STATE(1507), + [sym_key_path_string_expression] = STATE(1507), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1507), + [sym__comparison_operator] = STATE(1507), + [sym__additive_operator] = STATE(1507), + [sym__multiplicative_operator] = STATE(1507), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1507), + [sym__referenceable_operator] = STATE(1507), + [sym__eq_eq] = STATE(1507), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(1393), + [sym_real_literal] = ACTIONS(1395), + [sym_integer_literal] = ACTIONS(1393), + [sym_hex_literal] = ACTIONS(1395), + [sym_oct_literal] = ACTIONS(1395), + [sym_bin_literal] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1393), + [anon_sym_GT] = ACTIONS(1393), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(1393), + [anon_sym_POUNDfileID] = ACTIONS(1395), + [anon_sym_POUNDfilePath] = ACTIONS(1395), + [anon_sym_POUNDline] = ACTIONS(1395), + [anon_sym_POUNDcolumn] = ACTIONS(1395), + [anon_sym_POUNDfunction] = ACTIONS(1395), + [anon_sym_POUNDdsohandle] = ACTIONS(1395), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1393), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1393), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1393), + [anon_sym_LT_EQ] = ACTIONS(1393), + [anon_sym_GT_EQ] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1393), + [anon_sym_SLASH] = ACTIONS(1393), + [anon_sym_PERCENT] = ACTIONS(1393), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1395), + [sym__plus_then_ws] = ACTIONS(1395), + [sym__minus_then_ws] = ACTIONS(1395), + [sym_bang] = ACTIONS(1069), + }, + [324] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1146), + [sym__unary_expression] = STATE(1146), + [sym_postfix_expression] = STATE(1146), + [sym_constructor_expression] = STATE(1146), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1146), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1146), + [sym_await_expression] = STATE(1146), + [sym_ternary_expression] = STATE(1146), + [sym_expr_hack_at_ternary_binary_call] = STATE(1437), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1146), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1146), + [sym_key_path_expression] = STATE(1146), + [sym_key_path_string_expression] = STATE(1146), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1146), + [sym__comparison_operator] = STATE(1146), + [sym__additive_operator] = STATE(1146), + [sym__multiplicative_operator] = STATE(1146), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1146), + [sym__referenceable_operator] = STATE(1146), + [sym__eq_eq] = STATE(1146), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(1397), + [sym_real_literal] = ACTIONS(1399), + [sym_integer_literal] = ACTIONS(1397), + [sym_hex_literal] = ACTIONS(1399), + [sym_oct_literal] = ACTIONS(1399), + [sym_bin_literal] = ACTIONS(1399), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(1397), + [anon_sym_POUNDfileID] = ACTIONS(1399), + [anon_sym_POUNDfilePath] = ACTIONS(1399), + [anon_sym_POUNDline] = ACTIONS(1399), + [anon_sym_POUNDcolumn] = ACTIONS(1399), + [anon_sym_POUNDfunction] = ACTIONS(1399), + [anon_sym_POUNDdsohandle] = ACTIONS(1399), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(1397), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1397), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1397), + [anon_sym_GT_EQ] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(1397), + [anon_sym_SLASH] = ACTIONS(1397), + [anon_sym_PERCENT] = ACTIONS(1397), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(1399), + [sym__plus_then_ws] = ACTIONS(1399), + [sym__minus_then_ws] = ACTIONS(1399), + [sym_bang] = ACTIONS(481), + }, + [325] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1145), + [sym__unary_expression] = STATE(1145), + [sym_postfix_expression] = STATE(1145), + [sym_constructor_expression] = STATE(1145), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1145), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1145), + [sym_await_expression] = STATE(1145), + [sym_ternary_expression] = STATE(1145), + [sym_expr_hack_at_ternary_binary_call] = STATE(1473), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1145), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1145), + [sym_key_path_expression] = STATE(1145), + [sym_key_path_string_expression] = STATE(1145), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1145), + [sym__comparison_operator] = STATE(1145), + [sym__additive_operator] = STATE(1145), + [sym__multiplicative_operator] = STATE(1145), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1145), + [sym__referenceable_operator] = STATE(1145), + [sym__eq_eq] = STATE(1145), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(1401), + [sym_real_literal] = ACTIONS(1403), + [sym_integer_literal] = ACTIONS(1401), + [sym_hex_literal] = ACTIONS(1403), + [sym_oct_literal] = ACTIONS(1403), + [sym_bin_literal] = ACTIONS(1403), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(1401), + [anon_sym_GT] = ACTIONS(1401), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(1401), + [anon_sym_POUNDfileID] = ACTIONS(1403), + [anon_sym_POUNDfilePath] = ACTIONS(1403), + [anon_sym_POUNDline] = ACTIONS(1403), + [anon_sym_POUNDcolumn] = ACTIONS(1403), + [anon_sym_POUNDfunction] = ACTIONS(1403), + [anon_sym_POUNDdsohandle] = ACTIONS(1403), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(1401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1401), + [anon_sym_LT_EQ] = ACTIONS(1401), + [anon_sym_GT_EQ] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1401), + [anon_sym_PERCENT] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(1403), + [sym__plus_then_ws] = ACTIONS(1403), + [sym__minus_then_ws] = ACTIONS(1403), + [sym_bang] = ACTIONS(481), + }, + [326] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2198), + [sym_boolean_literal] = STATE(2198), + [sym__string_literal] = STATE(2198), + [sym_line_string_literal] = STATE(2198), + [sym_multi_line_string_literal] = STATE(2198), + [sym_raw_string_literal] = STATE(2198), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2198), + [sym__unary_expression] = STATE(2198), + [sym_postfix_expression] = STATE(2198), + [sym_constructor_expression] = STATE(2198), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2198), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2198), + [sym_prefix_expression] = STATE(2198), + [sym_as_expression] = STATE(2198), + [sym_selector_expression] = STATE(2198), + [sym__binary_expression] = STATE(2198), + [sym_multiplicative_expression] = STATE(2198), + [sym_additive_expression] = STATE(2198), + [sym_range_expression] = STATE(2198), + [sym_infix_expression] = STATE(2198), + [sym_nil_coalescing_expression] = STATE(2198), + [sym_check_expression] = STATE(2198), + [sym_comparison_expression] = STATE(2198), + [sym_equality_expression] = STATE(2198), + [sym_conjunction_expression] = STATE(2198), + [sym_disjunction_expression] = STATE(2198), + [sym_bitwise_operation] = STATE(2198), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2198), + [sym_await_expression] = STATE(2198), + [sym_ternary_expression] = STATE(2198), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2198), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2198), + [sym_dictionary_literal] = STATE(2198), + [sym__special_literal] = STATE(2198), + [sym__playground_literal] = STATE(2198), + [sym_lambda_literal] = STATE(2198), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2198), + [sym_key_path_expression] = STATE(2198), + [sym_key_path_string_expression] = STATE(2198), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2198), + [sym__comparison_operator] = STATE(2198), + [sym__additive_operator] = STATE(2198), + [sym__multiplicative_operator] = STATE(2198), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2198), + [sym__referenceable_operator] = STATE(2198), + [sym__eq_eq] = STATE(2198), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1369), + [sym_real_literal] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1369), + [sym_hex_literal] = ACTIONS(1371), + [sym_oct_literal] = ACTIONS(1371), + [sym_bin_literal] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1369), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1369), + [anon_sym_POUNDfileID] = ACTIONS(1371), + [anon_sym_POUNDfilePath] = ACTIONS(1371), + [anon_sym_POUNDline] = ACTIONS(1371), + [anon_sym_POUNDcolumn] = ACTIONS(1371), + [anon_sym_POUNDfunction] = ACTIONS(1371), + [anon_sym_POUNDdsohandle] = ACTIONS(1371), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1371), + [sym__plus_then_ws] = ACTIONS(1371), + [sym__minus_then_ws] = ACTIONS(1371), + [sym_bang] = ACTIONS(833), + }, + [327] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1480), + [sym_boolean_literal] = STATE(1480), + [sym__string_literal] = STATE(1480), + [sym_line_string_literal] = STATE(1480), + [sym_multi_line_string_literal] = STATE(1480), + [sym_raw_string_literal] = STATE(1480), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1480), + [sym__unary_expression] = STATE(1480), + [sym_postfix_expression] = STATE(1480), + [sym_constructor_expression] = STATE(1480), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1480), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1480), + [sym_prefix_expression] = STATE(1480), + [sym_as_expression] = STATE(1480), + [sym_selector_expression] = STATE(1480), + [sym__binary_expression] = STATE(1480), + [sym_multiplicative_expression] = STATE(1480), + [sym_additive_expression] = STATE(1480), + [sym_range_expression] = STATE(1480), + [sym_infix_expression] = STATE(1480), + [sym_nil_coalescing_expression] = STATE(1480), + [sym_check_expression] = STATE(1480), + [sym_comparison_expression] = STATE(1480), + [sym_equality_expression] = STATE(1480), + [sym_conjunction_expression] = STATE(1480), + [sym_disjunction_expression] = STATE(1480), + [sym_bitwise_operation] = STATE(1480), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1480), + [sym_await_expression] = STATE(1480), + [sym_ternary_expression] = STATE(1480), + [sym_expr_hack_at_ternary_binary_call] = STATE(1253), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1480), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1480), + [sym_dictionary_literal] = STATE(1480), + [sym__special_literal] = STATE(1480), + [sym__playground_literal] = STATE(1480), + [sym_lambda_literal] = STATE(1480), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1480), + [sym_key_path_expression] = STATE(1480), + [sym_key_path_string_expression] = STATE(1480), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1480), + [sym__comparison_operator] = STATE(1480), + [sym__additive_operator] = STATE(1480), + [sym__multiplicative_operator] = STATE(1480), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1480), + [sym__referenceable_operator] = STATE(1480), + [sym__eq_eq] = STATE(1480), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1407), + [sym_real_literal] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1407), + [sym_hex_literal] = ACTIONS(1409), + [sym_oct_literal] = ACTIONS(1409), + [sym_bin_literal] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1407), + [anon_sym_GT] = ACTIONS(1407), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1407), + [anon_sym_POUNDfileID] = ACTIONS(1409), + [anon_sym_POUNDfilePath] = ACTIONS(1409), + [anon_sym_POUNDline] = ACTIONS(1409), + [anon_sym_POUNDcolumn] = ACTIONS(1409), + [anon_sym_POUNDfunction] = ACTIONS(1409), + [anon_sym_POUNDdsohandle] = ACTIONS(1409), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1407), + [anon_sym_LT_EQ] = ACTIONS(1407), + [anon_sym_GT_EQ] = ACTIONS(1407), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1407), + [anon_sym_PERCENT] = ACTIONS(1407), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1409), + [sym__plus_then_ws] = ACTIONS(1409), + [sym__minus_then_ws] = ACTIONS(1409), + [sym_bang] = ACTIONS(833), + }, + [328] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1501), + [sym_boolean_literal] = STATE(1501), + [sym__string_literal] = STATE(1501), + [sym_line_string_literal] = STATE(1501), + [sym_multi_line_string_literal] = STATE(1501), + [sym_raw_string_literal] = STATE(1501), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1501), + [sym__unary_expression] = STATE(1501), + [sym_postfix_expression] = STATE(1501), + [sym_constructor_expression] = STATE(1501), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1501), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1501), + [sym_prefix_expression] = STATE(1501), + [sym_as_expression] = STATE(1501), + [sym_selector_expression] = STATE(1501), + [sym__binary_expression] = STATE(1501), + [sym_multiplicative_expression] = STATE(1501), + [sym_additive_expression] = STATE(1501), + [sym_range_expression] = STATE(1501), + [sym_infix_expression] = STATE(1501), + [sym_nil_coalescing_expression] = STATE(1501), + [sym_check_expression] = STATE(1501), + [sym_comparison_expression] = STATE(1501), + [sym_equality_expression] = STATE(1501), + [sym_conjunction_expression] = STATE(1501), + [sym_disjunction_expression] = STATE(1501), + [sym_bitwise_operation] = STATE(1501), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1501), + [sym_await_expression] = STATE(1501), + [sym_ternary_expression] = STATE(1501), + [sym_expr_hack_at_ternary_binary_call] = STATE(3121), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1501), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1501), + [sym_dictionary_literal] = STATE(1501), + [sym__special_literal] = STATE(1501), + [sym__playground_literal] = STATE(1501), + [sym_lambda_literal] = STATE(1501), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1501), + [sym_key_path_expression] = STATE(1501), + [sym_key_path_string_expression] = STATE(1501), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1501), + [sym__comparison_operator] = STATE(1501), + [sym__additive_operator] = STATE(1501), + [sym__multiplicative_operator] = STATE(1501), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1501), + [sym__referenceable_operator] = STATE(1501), + [sym__eq_eq] = STATE(1501), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(1415), + [sym_real_literal] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1415), + [sym_hex_literal] = ACTIONS(1417), + [sym_oct_literal] = ACTIONS(1417), + [sym_bin_literal] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1415), + [anon_sym_GT] = ACTIONS(1415), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(1415), + [anon_sym_POUNDfileID] = ACTIONS(1417), + [anon_sym_POUNDfilePath] = ACTIONS(1417), + [anon_sym_POUNDline] = ACTIONS(1417), + [anon_sym_POUNDcolumn] = ACTIONS(1417), + [anon_sym_POUNDfunction] = ACTIONS(1417), + [anon_sym_POUNDdsohandle] = ACTIONS(1417), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(1415), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1415), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1415), + [anon_sym_LT_EQ] = ACTIONS(1415), + [anon_sym_GT_EQ] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_SLASH] = ACTIONS(1415), + [anon_sym_PERCENT] = ACTIONS(1415), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(1417), + [sym__plus_then_ws] = ACTIONS(1417), + [sym__minus_then_ws] = ACTIONS(1417), + [sym_bang] = ACTIONS(1467), + }, + [329] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2244), + [sym_boolean_literal] = STATE(2244), + [sym__string_literal] = STATE(2244), + [sym_line_string_literal] = STATE(2244), + [sym_multi_line_string_literal] = STATE(2244), + [sym_raw_string_literal] = STATE(2244), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2244), + [sym__unary_expression] = STATE(2244), + [sym_postfix_expression] = STATE(2244), + [sym_constructor_expression] = STATE(2244), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2244), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2244), + [sym_prefix_expression] = STATE(2244), + [sym_as_expression] = STATE(2244), + [sym_selector_expression] = STATE(2244), + [sym__binary_expression] = STATE(2244), + [sym_multiplicative_expression] = STATE(2244), + [sym_additive_expression] = STATE(2244), + [sym_range_expression] = STATE(2244), + [sym_infix_expression] = STATE(2244), + [sym_nil_coalescing_expression] = STATE(2244), + [sym_check_expression] = STATE(2244), + [sym_comparison_expression] = STATE(2244), + [sym_equality_expression] = STATE(2244), + [sym_conjunction_expression] = STATE(2244), + [sym_disjunction_expression] = STATE(2244), + [sym_bitwise_operation] = STATE(2244), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2244), + [sym_await_expression] = STATE(2244), + [sym_ternary_expression] = STATE(2244), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2244), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2244), + [sym_dictionary_literal] = STATE(2244), + [sym__dictionary_literal_item] = STATE(8612), + [sym__special_literal] = STATE(2244), + [sym__playground_literal] = STATE(2244), + [sym_lambda_literal] = STATE(2244), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2244), + [sym_key_path_expression] = STATE(2244), + [sym_key_path_string_expression] = STATE(2244), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2244), + [sym__comparison_operator] = STATE(2244), + [sym__additive_operator] = STATE(2244), + [sym__multiplicative_operator] = STATE(2244), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2244), + [sym__referenceable_operator] = STATE(2244), + [sym__eq_eq] = STATE(2244), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1221), + [sym_real_literal] = ACTIONS(1223), + [sym_integer_literal] = ACTIONS(1221), + [sym_hex_literal] = ACTIONS(1223), + [sym_oct_literal] = ACTIONS(1223), + [sym_bin_literal] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1221), + [anon_sym_POUNDfileID] = ACTIONS(1223), + [anon_sym_POUNDfilePath] = ACTIONS(1223), + [anon_sym_POUNDline] = ACTIONS(1223), + [anon_sym_POUNDcolumn] = ACTIONS(1223), + [anon_sym_POUNDfunction] = ACTIONS(1223), + [anon_sym_POUNDdsohandle] = ACTIONS(1223), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1221), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1221), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1221), + [anon_sym_LT_EQ] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1223), + [sym__plus_then_ws] = ACTIONS(1223), + [sym__minus_then_ws] = ACTIONS(1223), + [sym_bang] = ACTIONS(833), + }, + [330] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2198), + [sym_boolean_literal] = STATE(2198), + [sym__string_literal] = STATE(2198), + [sym_line_string_literal] = STATE(2198), + [sym_multi_line_string_literal] = STATE(2198), + [sym_raw_string_literal] = STATE(2198), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2198), + [sym__unary_expression] = STATE(2198), + [sym_postfix_expression] = STATE(2198), + [sym_constructor_expression] = STATE(2198), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2198), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2198), + [sym_prefix_expression] = STATE(2198), + [sym_as_expression] = STATE(2198), + [sym_selector_expression] = STATE(2198), + [sym__binary_expression] = STATE(2198), + [sym_multiplicative_expression] = STATE(2198), + [sym_additive_expression] = STATE(2198), + [sym_range_expression] = STATE(2198), + [sym_infix_expression] = STATE(2198), + [sym_nil_coalescing_expression] = STATE(2198), + [sym_check_expression] = STATE(2198), + [sym_comparison_expression] = STATE(2198), + [sym_equality_expression] = STATE(2198), + [sym_conjunction_expression] = STATE(2198), + [sym_disjunction_expression] = STATE(2198), + [sym_bitwise_operation] = STATE(2198), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2198), + [sym_await_expression] = STATE(2198), + [sym_ternary_expression] = STATE(2198), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2198), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2198), + [sym_dictionary_literal] = STATE(2198), + [sym__special_literal] = STATE(2198), + [sym__playground_literal] = STATE(2198), + [sym_lambda_literal] = STATE(2198), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2198), + [sym_key_path_expression] = STATE(2198), + [sym_key_path_string_expression] = STATE(2198), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2198), + [sym__comparison_operator] = STATE(2198), + [sym__additive_operator] = STATE(2198), + [sym__multiplicative_operator] = STATE(2198), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2198), + [sym__referenceable_operator] = STATE(2198), + [sym__eq_eq] = STATE(2198), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1369), + [sym_real_literal] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1369), + [sym_hex_literal] = ACTIONS(1371), + [sym_oct_literal] = ACTIONS(1371), + [sym_bin_literal] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1469), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1369), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1369), + [anon_sym_POUNDfileID] = ACTIONS(1371), + [anon_sym_POUNDfilePath] = ACTIONS(1371), + [anon_sym_POUNDline] = ACTIONS(1371), + [anon_sym_POUNDcolumn] = ACTIONS(1371), + [anon_sym_POUNDfunction] = ACTIONS(1371), + [anon_sym_POUNDdsohandle] = ACTIONS(1371), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1371), + [sym__plus_then_ws] = ACTIONS(1371), + [sym__minus_then_ws] = ACTIONS(1371), + [sym_bang] = ACTIONS(833), + }, + [331] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1492), + [sym_boolean_literal] = STATE(1492), + [sym__string_literal] = STATE(1492), + [sym_line_string_literal] = STATE(1492), + [sym_multi_line_string_literal] = STATE(1492), + [sym_raw_string_literal] = STATE(1492), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1492), + [sym__unary_expression] = STATE(1492), + [sym_postfix_expression] = STATE(1492), + [sym_constructor_expression] = STATE(1492), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1492), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1492), + [sym_prefix_expression] = STATE(1492), + [sym_as_expression] = STATE(1492), + [sym_selector_expression] = STATE(1492), + [sym__binary_expression] = STATE(1492), + [sym_multiplicative_expression] = STATE(1492), + [sym_additive_expression] = STATE(1492), + [sym_range_expression] = STATE(1492), + [sym_infix_expression] = STATE(1492), + [sym_nil_coalescing_expression] = STATE(1492), + [sym_check_expression] = STATE(1492), + [sym_comparison_expression] = STATE(1492), + [sym_equality_expression] = STATE(1492), + [sym_conjunction_expression] = STATE(1492), + [sym_disjunction_expression] = STATE(1492), + [sym_bitwise_operation] = STATE(1492), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1492), + [sym_await_expression] = STATE(1492), + [sym_ternary_expression] = STATE(1492), + [sym_expr_hack_at_ternary_binary_call] = STATE(3143), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1492), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1492), + [sym_dictionary_literal] = STATE(1492), + [sym__special_literal] = STATE(1492), + [sym__playground_literal] = STATE(1492), + [sym_lambda_literal] = STATE(1492), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1492), + [sym_key_path_expression] = STATE(1492), + [sym_key_path_string_expression] = STATE(1492), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1492), + [sym__comparison_operator] = STATE(1492), + [sym__additive_operator] = STATE(1492), + [sym__multiplicative_operator] = STATE(1492), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1492), + [sym__referenceable_operator] = STATE(1492), + [sym__eq_eq] = STATE(1492), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [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(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_GT] = ACTIONS(1471), + [sym__await_operator] = ACTIONS(1439), + [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(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(1471), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1471), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1471), + [anon_sym_LT_EQ] = ACTIONS(1471), + [anon_sym_GT_EQ] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1471), + [anon_sym_PERCENT] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(1473), + [sym__plus_then_ws] = ACTIONS(1473), + [sym__minus_then_ws] = ACTIONS(1473), + [sym_bang] = ACTIONS(1467), + }, + [332] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1109), + [sym_boolean_literal] = STATE(1109), + [sym__string_literal] = STATE(1109), + [sym_line_string_literal] = STATE(1109), + [sym_multi_line_string_literal] = STATE(1109), + [sym_raw_string_literal] = STATE(1109), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1109), + [sym__unary_expression] = STATE(1109), + [sym_postfix_expression] = STATE(1109), + [sym_constructor_expression] = STATE(1109), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1109), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1109), + [sym_prefix_expression] = STATE(1109), + [sym_as_expression] = STATE(1109), + [sym_selector_expression] = STATE(1109), + [sym__binary_expression] = STATE(1109), + [sym_multiplicative_expression] = STATE(1109), + [sym_additive_expression] = STATE(1109), + [sym_range_expression] = STATE(1109), + [sym_infix_expression] = STATE(1109), + [sym_nil_coalescing_expression] = STATE(1109), + [sym_check_expression] = STATE(1109), + [sym_comparison_expression] = STATE(1109), + [sym_equality_expression] = STATE(1109), + [sym_conjunction_expression] = STATE(1109), + [sym_disjunction_expression] = STATE(1109), + [sym_bitwise_operation] = STATE(1109), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1109), + [sym_await_expression] = STATE(1109), + [sym_ternary_expression] = STATE(1109), + [sym_expr_hack_at_ternary_binary_call] = STATE(1254), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1109), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1109), + [sym_dictionary_literal] = STATE(1109), + [sym__special_literal] = STATE(1109), + [sym__playground_literal] = STATE(1109), + [sym_lambda_literal] = STATE(1109), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1109), + [sym_key_path_expression] = STATE(1109), + [sym_key_path_string_expression] = STATE(1109), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1109), + [sym__comparison_operator] = STATE(1109), + [sym__additive_operator] = STATE(1109), + [sym__multiplicative_operator] = STATE(1109), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1109), + [sym__referenceable_operator] = STATE(1109), + [sym__eq_eq] = STATE(1109), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1475), + [sym_real_literal] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1475), + [sym_hex_literal] = ACTIONS(1477), + [sym_oct_literal] = ACTIONS(1477), + [sym_bin_literal] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(1475), + [anon_sym_GT] = ACTIONS(1475), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(1475), + [anon_sym_POUNDfileID] = ACTIONS(1477), + [anon_sym_POUNDfilePath] = ACTIONS(1477), + [anon_sym_POUNDline] = ACTIONS(1477), + [anon_sym_POUNDcolumn] = ACTIONS(1477), + [anon_sym_POUNDfunction] = ACTIONS(1477), + [anon_sym_POUNDdsohandle] = ACTIONS(1477), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(1475), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1475), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1475), + [anon_sym_LT_EQ] = ACTIONS(1475), + [anon_sym_GT_EQ] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_SLASH] = ACTIONS(1475), + [anon_sym_PERCENT] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(1477), + [sym__plus_then_ws] = ACTIONS(1477), + [sym__minus_then_ws] = ACTIONS(1477), + [sym_bang] = ACTIONS(1501), + }, + [333] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1108), + [sym_boolean_literal] = STATE(1108), + [sym__string_literal] = STATE(1108), + [sym_line_string_literal] = STATE(1108), + [sym_multi_line_string_literal] = STATE(1108), + [sym_raw_string_literal] = STATE(1108), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1108), + [sym__unary_expression] = STATE(1108), + [sym_postfix_expression] = STATE(1108), + [sym_constructor_expression] = STATE(1108), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1108), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1108), + [sym_prefix_expression] = STATE(1108), + [sym_as_expression] = STATE(1108), + [sym_selector_expression] = STATE(1108), + [sym__binary_expression] = STATE(1108), + [sym_multiplicative_expression] = STATE(1108), + [sym_additive_expression] = STATE(1108), + [sym_range_expression] = STATE(1108), + [sym_infix_expression] = STATE(1108), + [sym_nil_coalescing_expression] = STATE(1108), + [sym_check_expression] = STATE(1108), + [sym_comparison_expression] = STATE(1108), + [sym_equality_expression] = STATE(1108), + [sym_conjunction_expression] = STATE(1108), + [sym_disjunction_expression] = STATE(1108), + [sym_bitwise_operation] = STATE(1108), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1108), + [sym_await_expression] = STATE(1108), + [sym_ternary_expression] = STATE(1108), + [sym_expr_hack_at_ternary_binary_call] = STATE(1253), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1108), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1108), + [sym_dictionary_literal] = STATE(1108), + [sym__special_literal] = STATE(1108), + [sym__playground_literal] = STATE(1108), + [sym_lambda_literal] = STATE(1108), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1108), + [sym_key_path_expression] = STATE(1108), + [sym_key_path_string_expression] = STATE(1108), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1108), + [sym__comparison_operator] = STATE(1108), + [sym__additive_operator] = STATE(1108), + [sym__multiplicative_operator] = STATE(1108), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1108), + [sym__referenceable_operator] = STATE(1108), + [sym__eq_eq] = STATE(1108), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1503), + [sym_real_literal] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [sym_hex_literal] = ACTIONS(1505), + [sym_oct_literal] = ACTIONS(1505), + [sym_bin_literal] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(1503), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(1503), + [anon_sym_POUNDfileID] = ACTIONS(1505), + [anon_sym_POUNDfilePath] = ACTIONS(1505), + [anon_sym_POUNDline] = ACTIONS(1505), + [anon_sym_POUNDcolumn] = ACTIONS(1505), + [anon_sym_POUNDfunction] = ACTIONS(1505), + [anon_sym_POUNDdsohandle] = ACTIONS(1505), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(1503), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1503), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1503), + [anon_sym_LT_EQ] = ACTIONS(1503), + [anon_sym_GT_EQ] = ACTIONS(1503), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_SLASH] = ACTIONS(1503), + [anon_sym_PERCENT] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(1505), + [sym__plus_then_ws] = ACTIONS(1505), + [sym__minus_then_ws] = ACTIONS(1505), + [sym_bang] = ACTIONS(1501), + }, + [334] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(1483), + [sym_boolean_literal] = STATE(1483), + [sym__string_literal] = STATE(1483), + [sym_line_string_literal] = STATE(1483), + [sym_multi_line_string_literal] = STATE(1483), + [sym_raw_string_literal] = STATE(1483), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(1483), + [sym__unary_expression] = STATE(1483), + [sym_postfix_expression] = STATE(1483), + [sym_constructor_expression] = STATE(1483), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(1483), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(1483), + [sym_prefix_expression] = STATE(1483), + [sym_as_expression] = STATE(1483), + [sym_selector_expression] = STATE(1483), + [sym__binary_expression] = STATE(1483), + [sym_multiplicative_expression] = STATE(1483), + [sym_additive_expression] = STATE(1483), + [sym_range_expression] = STATE(1483), + [sym_infix_expression] = STATE(1483), + [sym_nil_coalescing_expression] = STATE(1483), + [sym_check_expression] = STATE(1483), + [sym_comparison_expression] = STATE(1483), + [sym_equality_expression] = STATE(1483), + [sym_conjunction_expression] = STATE(1483), + [sym_disjunction_expression] = STATE(1483), + [sym_bitwise_operation] = STATE(1483), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(1483), + [sym_await_expression] = STATE(1483), + [sym_ternary_expression] = STATE(1483), + [sym_expr_hack_at_ternary_binary_call] = STATE(3292), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(1483), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(1483), + [sym_dictionary_literal] = STATE(1483), + [sym__special_literal] = STATE(1483), + [sym__playground_literal] = STATE(1483), + [sym_lambda_literal] = STATE(1483), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(1483), + [sym_key_path_expression] = STATE(1483), + [sym_key_path_string_expression] = STATE(1483), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(1483), + [sym__comparison_operator] = STATE(1483), + [sym__additive_operator] = STATE(1483), + [sym__multiplicative_operator] = STATE(1483), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(1483), + [sym__referenceable_operator] = STATE(1483), + [sym__eq_eq] = STATE(1483), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(1507), + [sym_real_literal] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1507), + [sym_hex_literal] = ACTIONS(1509), + [sym_oct_literal] = ACTIONS(1509), + [sym_bin_literal] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(1507), + [anon_sym_GT] = ACTIONS(1507), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(1507), + [anon_sym_POUNDfileID] = ACTIONS(1509), + [anon_sym_POUNDfilePath] = ACTIONS(1509), + [anon_sym_POUNDline] = ACTIONS(1509), + [anon_sym_POUNDcolumn] = ACTIONS(1509), + [anon_sym_POUNDfunction] = ACTIONS(1509), + [anon_sym_POUNDdsohandle] = ACTIONS(1509), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(1507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1507), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_SLASH] = ACTIONS(1507), + [anon_sym_PERCENT] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(1509), + [sym__plus_then_ws] = ACTIONS(1509), + [sym__minus_then_ws] = ACTIONS(1509), + [sym_bang] = ACTIONS(137), + }, + [335] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1479), + [sym_boolean_literal] = STATE(1479), + [sym__string_literal] = STATE(1479), + [sym_line_string_literal] = STATE(1479), + [sym_multi_line_string_literal] = STATE(1479), + [sym_raw_string_literal] = STATE(1479), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1479), + [sym__unary_expression] = STATE(1479), + [sym_postfix_expression] = STATE(1479), + [sym_constructor_expression] = STATE(1479), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1479), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1479), + [sym_prefix_expression] = STATE(1479), + [sym_as_expression] = STATE(1479), + [sym_selector_expression] = STATE(1479), + [sym__binary_expression] = STATE(1479), + [sym_multiplicative_expression] = STATE(1479), + [sym_additive_expression] = STATE(1479), + [sym_range_expression] = STATE(1479), + [sym_infix_expression] = STATE(1479), + [sym_nil_coalescing_expression] = STATE(1479), + [sym_check_expression] = STATE(1479), + [sym_comparison_expression] = STATE(1479), + [sym_equality_expression] = STATE(1479), + [sym_conjunction_expression] = STATE(1479), + [sym_disjunction_expression] = STATE(1479), + [sym_bitwise_operation] = STATE(1479), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1479), + [sym_await_expression] = STATE(1479), + [sym_ternary_expression] = STATE(1479), + [sym_expr_hack_at_ternary_binary_call] = STATE(1254), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1479), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1479), + [sym_dictionary_literal] = STATE(1479), + [sym__special_literal] = STATE(1479), + [sym__playground_literal] = STATE(1479), + [sym_lambda_literal] = STATE(1479), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1479), + [sym_key_path_expression] = STATE(1479), + [sym_key_path_string_expression] = STATE(1479), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1479), + [sym__comparison_operator] = STATE(1479), + [sym__additive_operator] = STATE(1479), + [sym__multiplicative_operator] = STATE(1479), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1479), + [sym__referenceable_operator] = STATE(1479), + [sym__eq_eq] = STATE(1479), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1511), + [sym_real_literal] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1511), + [sym_hex_literal] = ACTIONS(1513), + [sym_oct_literal] = ACTIONS(1513), + [sym_bin_literal] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1511), + [anon_sym_GT] = ACTIONS(1511), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1511), + [anon_sym_POUNDfileID] = ACTIONS(1513), + [anon_sym_POUNDfilePath] = ACTIONS(1513), + [anon_sym_POUNDline] = ACTIONS(1513), + [anon_sym_POUNDcolumn] = ACTIONS(1513), + [anon_sym_POUNDfunction] = ACTIONS(1513), + [anon_sym_POUNDdsohandle] = ACTIONS(1513), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1511), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1511), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1511), + [anon_sym_LT_EQ] = ACTIONS(1511), + [anon_sym_GT_EQ] = ACTIONS(1511), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_SLASH] = ACTIONS(1511), + [anon_sym_PERCENT] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1513), + [sym__plus_then_ws] = ACTIONS(1513), + [sym__minus_then_ws] = ACTIONS(1513), + [sym_bang] = ACTIONS(833), + }, + [336] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(1511), + [sym_boolean_literal] = STATE(1511), + [sym__string_literal] = STATE(1511), + [sym_line_string_literal] = STATE(1511), + [sym_multi_line_string_literal] = STATE(1511), + [sym_raw_string_literal] = STATE(1511), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(1511), + [sym__unary_expression] = STATE(1511), + [sym_postfix_expression] = STATE(1511), + [sym_constructor_expression] = STATE(1511), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(1511), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(1511), + [sym_prefix_expression] = STATE(1511), + [sym_as_expression] = STATE(1511), + [sym_selector_expression] = STATE(1511), + [sym__binary_expression] = STATE(1511), + [sym_multiplicative_expression] = STATE(1511), + [sym_additive_expression] = STATE(1511), + [sym_range_expression] = STATE(1511), + [sym_infix_expression] = STATE(1511), + [sym_nil_coalescing_expression] = STATE(1511), + [sym_check_expression] = STATE(1511), + [sym_comparison_expression] = STATE(1511), + [sym_equality_expression] = STATE(1511), + [sym_conjunction_expression] = STATE(1511), + [sym_disjunction_expression] = STATE(1511), + [sym_bitwise_operation] = STATE(1511), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(1511), + [sym_await_expression] = STATE(1511), + [sym_ternary_expression] = STATE(1511), + [sym_expr_hack_at_ternary_binary_call] = STATE(3251), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(1511), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(1511), + [sym_dictionary_literal] = STATE(1511), + [sym__special_literal] = STATE(1511), + [sym__playground_literal] = STATE(1511), + [sym_lambda_literal] = STATE(1511), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(1511), + [sym_key_path_expression] = STATE(1511), + [sym_key_path_string_expression] = STATE(1511), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(1511), + [sym__comparison_operator] = STATE(1511), + [sym__additive_operator] = STATE(1511), + [sym__multiplicative_operator] = STATE(1511), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(1511), + [sym__referenceable_operator] = STATE(1511), + [sym__eq_eq] = STATE(1511), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(1515), + [sym_real_literal] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1515), + [sym_hex_literal] = ACTIONS(1517), + [sym_oct_literal] = ACTIONS(1517), + [sym_bin_literal] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_GT] = ACTIONS(1515), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(1515), + [anon_sym_POUNDfileID] = ACTIONS(1517), + [anon_sym_POUNDfilePath] = ACTIONS(1517), + [anon_sym_POUNDline] = ACTIONS(1517), + [anon_sym_POUNDcolumn] = ACTIONS(1517), + [anon_sym_POUNDfunction] = ACTIONS(1517), + [anon_sym_POUNDdsohandle] = ACTIONS(1517), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(1515), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1515), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1515), + [anon_sym_LT_EQ] = ACTIONS(1515), + [anon_sym_GT_EQ] = ACTIONS(1515), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1515), + [anon_sym_PERCENT] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(1517), + [sym__plus_then_ws] = ACTIONS(1517), + [sym__minus_then_ws] = ACTIONS(1517), + [sym_bang] = ACTIONS(137), + }, + [337] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2198), + [sym_boolean_literal] = STATE(2198), + [sym__string_literal] = STATE(2198), + [sym_line_string_literal] = STATE(2198), + [sym_multi_line_string_literal] = STATE(2198), + [sym_raw_string_literal] = STATE(2198), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2198), + [sym__unary_expression] = STATE(2198), + [sym_postfix_expression] = STATE(2198), + [sym_constructor_expression] = STATE(2198), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2198), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2198), + [sym_prefix_expression] = STATE(2198), + [sym_as_expression] = STATE(2198), + [sym_selector_expression] = STATE(2198), + [sym__binary_expression] = STATE(2198), + [sym_multiplicative_expression] = STATE(2198), + [sym_additive_expression] = STATE(2198), + [sym_range_expression] = STATE(2198), + [sym_infix_expression] = STATE(2198), + [sym_nil_coalescing_expression] = STATE(2198), + [sym_check_expression] = STATE(2198), + [sym_comparison_expression] = STATE(2198), + [sym_equality_expression] = STATE(2198), + [sym_conjunction_expression] = STATE(2198), + [sym_disjunction_expression] = STATE(2198), + [sym_bitwise_operation] = STATE(2198), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2198), + [sym_await_expression] = STATE(2198), + [sym_ternary_expression] = STATE(2198), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2198), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2198), + [sym_dictionary_literal] = STATE(2198), + [sym__special_literal] = STATE(2198), + [sym__playground_literal] = STATE(2198), + [sym_lambda_literal] = STATE(2198), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2198), + [sym_key_path_expression] = STATE(2198), + [sym_key_path_string_expression] = STATE(2198), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2198), + [sym__comparison_operator] = STATE(2198), + [sym__additive_operator] = STATE(2198), + [sym__multiplicative_operator] = STATE(2198), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2198), + [sym__referenceable_operator] = STATE(2198), + [sym__eq_eq] = STATE(2198), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1369), + [sym_real_literal] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1369), + [sym_hex_literal] = ACTIONS(1371), + [sym_oct_literal] = ACTIONS(1371), + [sym_bin_literal] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1369), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1369), + [anon_sym_POUNDfileID] = ACTIONS(1371), + [anon_sym_POUNDfilePath] = ACTIONS(1371), + [anon_sym_POUNDline] = ACTIONS(1371), + [anon_sym_POUNDcolumn] = ACTIONS(1371), + [anon_sym_POUNDfunction] = ACTIONS(1371), + [anon_sym_POUNDdsohandle] = ACTIONS(1371), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1371), + [sym__plus_then_ws] = ACTIONS(1371), + [sym__minus_then_ws] = ACTIONS(1371), + [sym_bang] = ACTIONS(833), + }, + [338] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2198), + [sym_boolean_literal] = STATE(2198), + [sym__string_literal] = STATE(2198), + [sym_line_string_literal] = STATE(2198), + [sym_multi_line_string_literal] = STATE(2198), + [sym_raw_string_literal] = STATE(2198), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2198), + [sym__unary_expression] = STATE(2198), + [sym_postfix_expression] = STATE(2198), + [sym_constructor_expression] = STATE(2198), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2198), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2198), + [sym_prefix_expression] = STATE(2198), + [sym_as_expression] = STATE(2198), + [sym_selector_expression] = STATE(2198), + [sym__binary_expression] = STATE(2198), + [sym_multiplicative_expression] = STATE(2198), + [sym_additive_expression] = STATE(2198), + [sym_range_expression] = STATE(2198), + [sym_infix_expression] = STATE(2198), + [sym_nil_coalescing_expression] = STATE(2198), + [sym_check_expression] = STATE(2198), + [sym_comparison_expression] = STATE(2198), + [sym_equality_expression] = STATE(2198), + [sym_conjunction_expression] = STATE(2198), + [sym_disjunction_expression] = STATE(2198), + [sym_bitwise_operation] = STATE(2198), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2198), + [sym_await_expression] = STATE(2198), + [sym_ternary_expression] = STATE(2198), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2198), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2198), + [sym_dictionary_literal] = STATE(2198), + [sym__special_literal] = STATE(2198), + [sym__playground_literal] = STATE(2198), + [sym_lambda_literal] = STATE(2198), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2198), + [sym_key_path_expression] = STATE(2198), + [sym_key_path_string_expression] = STATE(2198), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2198), + [sym__comparison_operator] = STATE(2198), + [sym__additive_operator] = STATE(2198), + [sym__multiplicative_operator] = STATE(2198), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2198), + [sym__referenceable_operator] = STATE(2198), + [sym__eq_eq] = STATE(2198), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1369), + [sym_real_literal] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1369), + [sym_hex_literal] = ACTIONS(1371), + [sym_oct_literal] = ACTIONS(1371), + [sym_bin_literal] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1521), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1369), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1369), + [anon_sym_POUNDfileID] = ACTIONS(1371), + [anon_sym_POUNDfilePath] = ACTIONS(1371), + [anon_sym_POUNDline] = ACTIONS(1371), + [anon_sym_POUNDcolumn] = ACTIONS(1371), + [anon_sym_POUNDfunction] = ACTIONS(1371), + [anon_sym_POUNDdsohandle] = ACTIONS(1371), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1371), + [sym__plus_then_ws] = ACTIONS(1371), + [sym__minus_then_ws] = ACTIONS(1371), + [sym_bang] = ACTIONS(833), + }, + [339] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2198), + [sym_boolean_literal] = STATE(2198), + [sym__string_literal] = STATE(2198), + [sym_line_string_literal] = STATE(2198), + [sym_multi_line_string_literal] = STATE(2198), + [sym_raw_string_literal] = STATE(2198), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2198), + [sym__unary_expression] = STATE(2198), + [sym_postfix_expression] = STATE(2198), + [sym_constructor_expression] = STATE(2198), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2198), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2198), + [sym_prefix_expression] = STATE(2198), + [sym_as_expression] = STATE(2198), + [sym_selector_expression] = STATE(2198), + [sym__binary_expression] = STATE(2198), + [sym_multiplicative_expression] = STATE(2198), + [sym_additive_expression] = STATE(2198), + [sym_range_expression] = STATE(2198), + [sym_infix_expression] = STATE(2198), + [sym_nil_coalescing_expression] = STATE(2198), + [sym_check_expression] = STATE(2198), + [sym_comparison_expression] = STATE(2198), + [sym_equality_expression] = STATE(2198), + [sym_conjunction_expression] = STATE(2198), + [sym_disjunction_expression] = STATE(2198), + [sym_bitwise_operation] = STATE(2198), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2198), + [sym_await_expression] = STATE(2198), + [sym_ternary_expression] = STATE(2198), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2198), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2198), + [sym_dictionary_literal] = STATE(2198), + [sym__special_literal] = STATE(2198), + [sym__playground_literal] = STATE(2198), + [sym_lambda_literal] = STATE(2198), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2198), + [sym_key_path_expression] = STATE(2198), + [sym_key_path_string_expression] = STATE(2198), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2198), + [sym__comparison_operator] = STATE(2198), + [sym__additive_operator] = STATE(2198), + [sym__multiplicative_operator] = STATE(2198), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2198), + [sym__referenceable_operator] = STATE(2198), + [sym__eq_eq] = STATE(2198), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1369), + [sym_real_literal] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1369), + [sym_hex_literal] = ACTIONS(1371), + [sym_oct_literal] = ACTIONS(1371), + [sym_bin_literal] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1369), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1369), + [anon_sym_POUNDfileID] = ACTIONS(1371), + [anon_sym_POUNDfilePath] = ACTIONS(1371), + [anon_sym_POUNDline] = ACTIONS(1371), + [anon_sym_POUNDcolumn] = ACTIONS(1371), + [anon_sym_POUNDfunction] = ACTIONS(1371), + [anon_sym_POUNDdsohandle] = ACTIONS(1371), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1371), + [sym__plus_then_ws] = ACTIONS(1371), + [sym__minus_then_ws] = ACTIONS(1371), + [sym_bang] = ACTIONS(833), + }, + [340] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2198), + [sym_boolean_literal] = STATE(2198), + [sym__string_literal] = STATE(2198), + [sym_line_string_literal] = STATE(2198), + [sym_multi_line_string_literal] = STATE(2198), + [sym_raw_string_literal] = STATE(2198), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2198), + [sym__unary_expression] = STATE(2198), + [sym_postfix_expression] = STATE(2198), + [sym_constructor_expression] = STATE(2198), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2198), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2198), + [sym_prefix_expression] = STATE(2198), + [sym_as_expression] = STATE(2198), + [sym_selector_expression] = STATE(2198), + [sym__binary_expression] = STATE(2198), + [sym_multiplicative_expression] = STATE(2198), + [sym_additive_expression] = STATE(2198), + [sym_range_expression] = STATE(2198), + [sym_infix_expression] = STATE(2198), + [sym_nil_coalescing_expression] = STATE(2198), + [sym_check_expression] = STATE(2198), + [sym_comparison_expression] = STATE(2198), + [sym_equality_expression] = STATE(2198), + [sym_conjunction_expression] = STATE(2198), + [sym_disjunction_expression] = STATE(2198), + [sym_bitwise_operation] = STATE(2198), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2198), + [sym_await_expression] = STATE(2198), + [sym_ternary_expression] = STATE(2198), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2198), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2198), + [sym_dictionary_literal] = STATE(2198), + [sym__special_literal] = STATE(2198), + [sym__playground_literal] = STATE(2198), + [sym_lambda_literal] = STATE(2198), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2198), + [sym_key_path_expression] = STATE(2198), + [sym_key_path_string_expression] = STATE(2198), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2198), + [sym__comparison_operator] = STATE(2198), + [sym__additive_operator] = STATE(2198), + [sym__multiplicative_operator] = STATE(2198), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2198), + [sym__referenceable_operator] = STATE(2198), + [sym__eq_eq] = STATE(2198), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1369), + [sym_real_literal] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1369), + [sym_hex_literal] = ACTIONS(1371), + [sym_oct_literal] = ACTIONS(1371), + [sym_bin_literal] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1369), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1369), + [anon_sym_POUNDfileID] = ACTIONS(1371), + [anon_sym_POUNDfilePath] = ACTIONS(1371), + [anon_sym_POUNDline] = ACTIONS(1371), + [anon_sym_POUNDcolumn] = ACTIONS(1371), + [anon_sym_POUNDfunction] = ACTIONS(1371), + [anon_sym_POUNDdsohandle] = ACTIONS(1371), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1371), + [sym__plus_then_ws] = ACTIONS(1371), + [sym__minus_then_ws] = ACTIONS(1371), + [sym_bang] = ACTIONS(833), + }, + [341] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2198), + [sym_boolean_literal] = STATE(2198), + [sym__string_literal] = STATE(2198), + [sym_line_string_literal] = STATE(2198), + [sym_multi_line_string_literal] = STATE(2198), + [sym_raw_string_literal] = STATE(2198), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2198), + [sym__unary_expression] = STATE(2198), + [sym_postfix_expression] = STATE(2198), + [sym_constructor_expression] = STATE(2198), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2198), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2198), + [sym_prefix_expression] = STATE(2198), + [sym_as_expression] = STATE(2198), + [sym_selector_expression] = STATE(2198), + [sym__binary_expression] = STATE(2198), + [sym_multiplicative_expression] = STATE(2198), + [sym_additive_expression] = STATE(2198), + [sym_range_expression] = STATE(2198), + [sym_infix_expression] = STATE(2198), + [sym_nil_coalescing_expression] = STATE(2198), + [sym_check_expression] = STATE(2198), + [sym_comparison_expression] = STATE(2198), + [sym_equality_expression] = STATE(2198), + [sym_conjunction_expression] = STATE(2198), + [sym_disjunction_expression] = STATE(2198), + [sym_bitwise_operation] = STATE(2198), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2198), + [sym_await_expression] = STATE(2198), + [sym_ternary_expression] = STATE(2198), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2198), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2198), + [sym_dictionary_literal] = STATE(2198), + [sym__special_literal] = STATE(2198), + [sym__playground_literal] = STATE(2198), + [sym_lambda_literal] = STATE(2198), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2198), + [sym_key_path_expression] = STATE(2198), + [sym_key_path_string_expression] = STATE(2198), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2198), + [sym__comparison_operator] = STATE(2198), + [sym__additive_operator] = STATE(2198), + [sym__multiplicative_operator] = STATE(2198), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2198), + [sym__referenceable_operator] = STATE(2198), + [sym__eq_eq] = STATE(2198), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1369), + [sym_real_literal] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1369), + [sym_hex_literal] = ACTIONS(1371), + [sym_oct_literal] = ACTIONS(1371), + [sym_bin_literal] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1369), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1369), + [anon_sym_POUNDfileID] = ACTIONS(1371), + [anon_sym_POUNDfilePath] = ACTIONS(1371), + [anon_sym_POUNDline] = ACTIONS(1371), + [anon_sym_POUNDcolumn] = ACTIONS(1371), + [anon_sym_POUNDfunction] = ACTIONS(1371), + [anon_sym_POUNDdsohandle] = ACTIONS(1371), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1371), + [sym__plus_then_ws] = ACTIONS(1371), + [sym__minus_then_ws] = ACTIONS(1371), + [sym_bang] = ACTIONS(833), + }, + [342] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2198), + [sym_boolean_literal] = STATE(2198), + [sym__string_literal] = STATE(2198), + [sym_line_string_literal] = STATE(2198), + [sym_multi_line_string_literal] = STATE(2198), + [sym_raw_string_literal] = STATE(2198), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2198), + [sym__unary_expression] = STATE(2198), + [sym_postfix_expression] = STATE(2198), + [sym_constructor_expression] = STATE(2198), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2198), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2198), + [sym_prefix_expression] = STATE(2198), + [sym_as_expression] = STATE(2198), + [sym_selector_expression] = STATE(2198), + [sym__binary_expression] = STATE(2198), + [sym_multiplicative_expression] = STATE(2198), + [sym_additive_expression] = STATE(2198), + [sym_range_expression] = STATE(2198), + [sym_infix_expression] = STATE(2198), + [sym_nil_coalescing_expression] = STATE(2198), + [sym_check_expression] = STATE(2198), + [sym_comparison_expression] = STATE(2198), + [sym_equality_expression] = STATE(2198), + [sym_conjunction_expression] = STATE(2198), + [sym_disjunction_expression] = STATE(2198), + [sym_bitwise_operation] = STATE(2198), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2198), + [sym_await_expression] = STATE(2198), + [sym_ternary_expression] = STATE(2198), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2198), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2198), + [sym_dictionary_literal] = STATE(2198), + [sym__special_literal] = STATE(2198), + [sym__playground_literal] = STATE(2198), + [sym_lambda_literal] = STATE(2198), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2198), + [sym_key_path_expression] = STATE(2198), + [sym_key_path_string_expression] = STATE(2198), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2198), + [sym__comparison_operator] = STATE(2198), + [sym__additive_operator] = STATE(2198), + [sym__multiplicative_operator] = STATE(2198), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2198), + [sym__referenceable_operator] = STATE(2198), + [sym__eq_eq] = STATE(2198), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1369), + [sym_real_literal] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1369), + [sym_hex_literal] = ACTIONS(1371), + [sym_oct_literal] = ACTIONS(1371), + [sym_bin_literal] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1369), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1369), + [anon_sym_POUNDfileID] = ACTIONS(1371), + [anon_sym_POUNDfilePath] = ACTIONS(1371), + [anon_sym_POUNDline] = ACTIONS(1371), + [anon_sym_POUNDcolumn] = ACTIONS(1371), + [anon_sym_POUNDfunction] = ACTIONS(1371), + [anon_sym_POUNDdsohandle] = ACTIONS(1371), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1371), + [sym__plus_then_ws] = ACTIONS(1371), + [sym__minus_then_ws] = ACTIONS(1371), + [sym_bang] = ACTIONS(833), + }, + [343] = { + [sym_simple_identifier] = STATE(2577), + [sym__basic_literal] = STATE(1982), + [sym_boolean_literal] = STATE(1982), + [sym__string_literal] = STATE(1982), + [sym_line_string_literal] = STATE(1982), + [sym_multi_line_string_literal] = STATE(1982), + [sym_raw_string_literal] = STATE(1982), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1982), + [sym__unary_expression] = STATE(1982), + [sym_postfix_expression] = STATE(1982), + [sym_constructor_expression] = STATE(1982), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1982), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1982), + [sym_prefix_expression] = STATE(1982), + [sym_as_expression] = STATE(1982), + [sym_selector_expression] = STATE(1982), + [sym__binary_expression] = STATE(1982), + [sym_multiplicative_expression] = STATE(1982), + [sym_additive_expression] = STATE(1982), + [sym_range_expression] = STATE(1982), + [sym_infix_expression] = STATE(1982), + [sym_nil_coalescing_expression] = STATE(1982), + [sym_check_expression] = STATE(1982), + [sym_comparison_expression] = STATE(1982), + [sym_equality_expression] = STATE(1982), + [sym_conjunction_expression] = STATE(1982), + [sym_disjunction_expression] = STATE(1982), + [sym_bitwise_operation] = STATE(1982), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1982), + [sym_await_expression] = STATE(1982), + [sym_ternary_expression] = STATE(1982), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1982), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1982), + [sym_dictionary_literal] = STATE(1982), + [sym__special_literal] = STATE(1982), + [sym__playground_literal] = STATE(1982), + [sym_lambda_literal] = STATE(1982), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1982), + [sym_key_path_expression] = STATE(1982), + [sym_key_path_string_expression] = STATE(1982), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1982), + [sym__comparison_operator] = STATE(1982), + [sym__additive_operator] = STATE(1982), + [sym__multiplicative_operator] = STATE(1982), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1982), + [sym__referenceable_operator] = STATE(1982), + [sym__eq_eq] = STATE(1982), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [aux_sym_value_argument_repeat1] = STATE(5365), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(1535), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1531), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1531), + [anon_sym_LT_EQ] = ACTIONS(1531), + [anon_sym_GT_EQ] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_SLASH] = ACTIONS(1531), + [anon_sym_PERCENT] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1533), + [sym__plus_then_ws] = ACTIONS(1533), + [sym__minus_then_ws] = ACTIONS(1533), + [sym_bang] = ACTIONS(833), + }, + [344] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2198), + [sym_boolean_literal] = STATE(2198), + [sym__string_literal] = STATE(2198), + [sym_line_string_literal] = STATE(2198), + [sym_multi_line_string_literal] = STATE(2198), + [sym_raw_string_literal] = STATE(2198), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2198), + [sym__unary_expression] = STATE(2198), + [sym_postfix_expression] = STATE(2198), + [sym_constructor_expression] = STATE(2198), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2198), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2198), + [sym_prefix_expression] = STATE(2198), + [sym_as_expression] = STATE(2198), + [sym_selector_expression] = STATE(2198), + [sym__binary_expression] = STATE(2198), + [sym_multiplicative_expression] = STATE(2198), + [sym_additive_expression] = STATE(2198), + [sym_range_expression] = STATE(2198), + [sym_infix_expression] = STATE(2198), + [sym_nil_coalescing_expression] = STATE(2198), + [sym_check_expression] = STATE(2198), + [sym_comparison_expression] = STATE(2198), + [sym_equality_expression] = STATE(2198), + [sym_conjunction_expression] = STATE(2198), + [sym_disjunction_expression] = STATE(2198), + [sym_bitwise_operation] = STATE(2198), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2198), + [sym_await_expression] = STATE(2198), + [sym_ternary_expression] = STATE(2198), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2198), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2198), + [sym_dictionary_literal] = STATE(2198), + [sym__special_literal] = STATE(2198), + [sym__playground_literal] = STATE(2198), + [sym_lambda_literal] = STATE(2198), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2198), + [sym_key_path_expression] = STATE(2198), + [sym_key_path_string_expression] = STATE(2198), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2198), + [sym__comparison_operator] = STATE(2198), + [sym__additive_operator] = STATE(2198), + [sym__multiplicative_operator] = STATE(2198), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2198), + [sym__referenceable_operator] = STATE(2198), + [sym__eq_eq] = STATE(2198), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1369), + [sym_real_literal] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1369), + [sym_hex_literal] = ACTIONS(1371), + [sym_oct_literal] = ACTIONS(1371), + [sym_bin_literal] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1537), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1369), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1369), + [anon_sym_POUNDfileID] = ACTIONS(1371), + [anon_sym_POUNDfilePath] = ACTIONS(1371), + [anon_sym_POUNDline] = ACTIONS(1371), + [anon_sym_POUNDcolumn] = ACTIONS(1371), + [anon_sym_POUNDfunction] = ACTIONS(1371), + [anon_sym_POUNDdsohandle] = ACTIONS(1371), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1371), + [sym__plus_then_ws] = ACTIONS(1371), + [sym__minus_then_ws] = ACTIONS(1371), + [sym_bang] = ACTIONS(833), + }, + [345] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2198), + [sym_boolean_literal] = STATE(2198), + [sym__string_literal] = STATE(2198), + [sym_line_string_literal] = STATE(2198), + [sym_multi_line_string_literal] = STATE(2198), + [sym_raw_string_literal] = STATE(2198), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2198), + [sym__unary_expression] = STATE(2198), + [sym_postfix_expression] = STATE(2198), + [sym_constructor_expression] = STATE(2198), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2198), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2198), + [sym_prefix_expression] = STATE(2198), + [sym_as_expression] = STATE(2198), + [sym_selector_expression] = STATE(2198), + [sym__binary_expression] = STATE(2198), + [sym_multiplicative_expression] = STATE(2198), + [sym_additive_expression] = STATE(2198), + [sym_range_expression] = STATE(2198), + [sym_infix_expression] = STATE(2198), + [sym_nil_coalescing_expression] = STATE(2198), + [sym_check_expression] = STATE(2198), + [sym_comparison_expression] = STATE(2198), + [sym_equality_expression] = STATE(2198), + [sym_conjunction_expression] = STATE(2198), + [sym_disjunction_expression] = STATE(2198), + [sym_bitwise_operation] = STATE(2198), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2198), + [sym_await_expression] = STATE(2198), + [sym_ternary_expression] = STATE(2198), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2198), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2198), + [sym_dictionary_literal] = STATE(2198), + [sym__special_literal] = STATE(2198), + [sym__playground_literal] = STATE(2198), + [sym_lambda_literal] = STATE(2198), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2198), + [sym_key_path_expression] = STATE(2198), + [sym_key_path_string_expression] = STATE(2198), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2198), + [sym__comparison_operator] = STATE(2198), + [sym__additive_operator] = STATE(2198), + [sym__multiplicative_operator] = STATE(2198), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2198), + [sym__referenceable_operator] = STATE(2198), + [sym__eq_eq] = STATE(2198), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1369), + [sym_real_literal] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1369), + [sym_hex_literal] = ACTIONS(1371), + [sym_oct_literal] = ACTIONS(1371), + [sym_bin_literal] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1369), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1369), + [anon_sym_POUNDfileID] = ACTIONS(1371), + [anon_sym_POUNDfilePath] = ACTIONS(1371), + [anon_sym_POUNDline] = ACTIONS(1371), + [anon_sym_POUNDcolumn] = ACTIONS(1371), + [anon_sym_POUNDfunction] = ACTIONS(1371), + [anon_sym_POUNDdsohandle] = ACTIONS(1371), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1371), + [sym__plus_then_ws] = ACTIONS(1371), + [sym__minus_then_ws] = ACTIONS(1371), + [sym_bang] = ACTIONS(833), + }, + [346] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2198), + [sym_boolean_literal] = STATE(2198), + [sym__string_literal] = STATE(2198), + [sym_line_string_literal] = STATE(2198), + [sym_multi_line_string_literal] = STATE(2198), + [sym_raw_string_literal] = STATE(2198), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2198), + [sym__unary_expression] = STATE(2198), + [sym_postfix_expression] = STATE(2198), + [sym_constructor_expression] = STATE(2198), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2198), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2198), + [sym_prefix_expression] = STATE(2198), + [sym_as_expression] = STATE(2198), + [sym_selector_expression] = STATE(2198), + [sym__binary_expression] = STATE(2198), + [sym_multiplicative_expression] = STATE(2198), + [sym_additive_expression] = STATE(2198), + [sym_range_expression] = STATE(2198), + [sym_infix_expression] = STATE(2198), + [sym_nil_coalescing_expression] = STATE(2198), + [sym_check_expression] = STATE(2198), + [sym_comparison_expression] = STATE(2198), + [sym_equality_expression] = STATE(2198), + [sym_conjunction_expression] = STATE(2198), + [sym_disjunction_expression] = STATE(2198), + [sym_bitwise_operation] = STATE(2198), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2198), + [sym_await_expression] = STATE(2198), + [sym_ternary_expression] = STATE(2198), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2198), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2198), + [sym_dictionary_literal] = STATE(2198), + [sym__special_literal] = STATE(2198), + [sym__playground_literal] = STATE(2198), + [sym_lambda_literal] = STATE(2198), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2198), + [sym_key_path_expression] = STATE(2198), + [sym_key_path_string_expression] = STATE(2198), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2198), + [sym__comparison_operator] = STATE(2198), + [sym__additive_operator] = STATE(2198), + [sym__multiplicative_operator] = STATE(2198), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2198), + [sym__referenceable_operator] = STATE(2198), + [sym__eq_eq] = STATE(2198), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1369), + [sym_real_literal] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1369), + [sym_hex_literal] = ACTIONS(1371), + [sym_oct_literal] = ACTIONS(1371), + [sym_bin_literal] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_RBRACK] = ACTIONS(1541), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1369), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1369), + [anon_sym_POUNDfileID] = ACTIONS(1371), + [anon_sym_POUNDfilePath] = ACTIONS(1371), + [anon_sym_POUNDline] = ACTIONS(1371), + [anon_sym_POUNDcolumn] = ACTIONS(1371), + [anon_sym_POUNDfunction] = ACTIONS(1371), + [anon_sym_POUNDdsohandle] = ACTIONS(1371), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1371), + [sym__plus_then_ws] = ACTIONS(1371), + [sym__minus_then_ws] = ACTIONS(1371), + [sym_bang] = ACTIONS(833), + }, + [347] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(2190), + [sym_boolean_literal] = STATE(2190), + [sym__string_literal] = STATE(2190), + [sym_line_string_literal] = STATE(2190), + [sym_multi_line_string_literal] = STATE(2190), + [sym_raw_string_literal] = STATE(2190), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(2190), + [sym__unary_expression] = STATE(2190), + [sym_postfix_expression] = STATE(2190), + [sym_constructor_expression] = STATE(2190), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(2190), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(2190), + [sym_prefix_expression] = STATE(2190), + [sym_as_expression] = STATE(2190), + [sym_selector_expression] = STATE(2190), + [sym__binary_expression] = STATE(2190), + [sym_multiplicative_expression] = STATE(2190), + [sym_additive_expression] = STATE(2190), + [sym_range_expression] = STATE(2190), + [sym_infix_expression] = STATE(2190), + [sym_nil_coalescing_expression] = STATE(2190), + [sym_check_expression] = STATE(2190), + [sym_comparison_expression] = STATE(2190), + [sym_equality_expression] = STATE(2190), + [sym_conjunction_expression] = STATE(2190), + [sym_disjunction_expression] = STATE(2190), + [sym_bitwise_operation] = STATE(2190), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(2190), + [sym_await_expression] = STATE(2190), + [sym_ternary_expression] = STATE(2190), + [sym_call_expression] = STATE(2760), + [sym__primary_expression] = STATE(2190), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(2190), + [sym_dictionary_literal] = STATE(2190), + [sym__special_literal] = STATE(2190), + [sym__playground_literal] = STATE(2190), + [sym_lambda_literal] = STATE(2190), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(2190), + [sym_key_path_expression] = STATE(2190), + [sym_key_path_string_expression] = STATE(2190), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(2190), + [sym__comparison_operator] = STATE(2190), + [sym__additive_operator] = STATE(2190), + [sym__multiplicative_operator] = STATE(2190), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(2190), + [sym__referenceable_operator] = STATE(2190), + [sym__eq_eq] = STATE(2190), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [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(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(1543), + [anon_sym_GT] = ACTIONS(1543), + [sym__await_operator] = ACTIONS(937), + [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(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(1543), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1543), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1543), + [anon_sym_LT_EQ] = ACTIONS(1543), + [anon_sym_GT_EQ] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_SLASH] = ACTIONS(1543), + [anon_sym_PERCENT] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(1545), + [sym__plus_then_ws] = ACTIONS(1545), + [sym__minus_then_ws] = ACTIONS(1545), + [sym_bang] = ACTIONS(971), + }, + [348] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1573), + [sym_boolean_literal] = STATE(1573), + [sym__string_literal] = STATE(1573), + [sym_line_string_literal] = STATE(1573), + [sym_multi_line_string_literal] = STATE(1573), + [sym_raw_string_literal] = STATE(1573), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1573), + [sym__unary_expression] = STATE(1573), + [sym_postfix_expression] = STATE(1573), + [sym_constructor_expression] = STATE(1573), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1573), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1573), + [sym_prefix_expression] = STATE(1573), + [sym_as_expression] = STATE(1573), + [sym_selector_expression] = STATE(1573), + [sym__binary_expression] = STATE(1573), + [sym_multiplicative_expression] = STATE(1573), + [sym_additive_expression] = STATE(1573), + [sym_range_expression] = STATE(1573), + [sym_infix_expression] = STATE(1573), + [sym_nil_coalescing_expression] = STATE(1573), + [sym_check_expression] = STATE(1573), + [sym_comparison_expression] = STATE(1573), + [sym_equality_expression] = STATE(1573), + [sym_conjunction_expression] = STATE(1573), + [sym_disjunction_expression] = STATE(1573), + [sym_bitwise_operation] = STATE(1573), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1573), + [sym_await_expression] = STATE(1573), + [sym_ternary_expression] = STATE(1573), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1573), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1573), + [sym_dictionary_literal] = STATE(1573), + [sym__special_literal] = STATE(1573), + [sym__playground_literal] = STATE(1573), + [sym_lambda_literal] = STATE(1573), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1573), + [sym_key_path_expression] = STATE(1573), + [sym_key_path_string_expression] = STATE(1573), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1573), + [sym__comparison_operator] = STATE(1573), + [sym__additive_operator] = STATE(1573), + [sym__multiplicative_operator] = STATE(1573), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1573), + [sym__referenceable_operator] = STATE(1573), + [sym__eq_eq] = STATE(1573), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1547), + [anon_sym_GT] = ACTIONS(1547), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1547), + [anon_sym_LT_EQ] = ACTIONS(1547), + [anon_sym_GT_EQ] = ACTIONS(1547), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_SLASH] = ACTIONS(1547), + [anon_sym_PERCENT] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1549), + [sym__plus_then_ws] = ACTIONS(1549), + [sym__minus_then_ws] = ACTIONS(1549), + [sym_bang] = ACTIONS(1069), + }, + [349] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1897), + [sym_boolean_literal] = STATE(1897), + [sym__string_literal] = STATE(1897), + [sym_line_string_literal] = STATE(1897), + [sym_multi_line_string_literal] = STATE(1897), + [sym_raw_string_literal] = STATE(1897), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1897), + [sym__unary_expression] = STATE(1897), + [sym_postfix_expression] = STATE(1897), + [sym_constructor_expression] = STATE(1897), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1897), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1897), + [sym_prefix_expression] = STATE(1897), + [sym_as_expression] = STATE(1897), + [sym_selector_expression] = STATE(1897), + [sym__binary_expression] = STATE(1897), + [sym_multiplicative_expression] = STATE(1897), + [sym_additive_expression] = STATE(1897), + [sym_range_expression] = STATE(1897), + [sym_infix_expression] = STATE(1897), + [sym_nil_coalescing_expression] = STATE(1897), + [sym_check_expression] = STATE(1897), + [sym_comparison_expression] = STATE(1897), + [sym_equality_expression] = STATE(1897), + [sym_conjunction_expression] = STATE(1897), + [sym_disjunction_expression] = STATE(1897), + [sym_bitwise_operation] = STATE(1897), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1897), + [sym_await_expression] = STATE(1897), + [sym_ternary_expression] = STATE(1897), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1897), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1897), + [sym_dictionary_literal] = STATE(1897), + [sym__special_literal] = STATE(1897), + [sym__playground_literal] = STATE(1897), + [sym_lambda_literal] = STATE(1897), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1897), + [sym_key_path_expression] = STATE(1897), + [sym_key_path_string_expression] = STATE(1897), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1897), + [sym__comparison_operator] = STATE(1897), + [sym__additive_operator] = STATE(1897), + [sym__multiplicative_operator] = STATE(1897), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1897), + [sym__referenceable_operator] = STATE(1897), + [sym__eq_eq] = STATE(1897), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1551), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_SLASH] = ACTIONS(1551), + [anon_sym_PERCENT] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1553), + [sym__plus_then_ws] = ACTIONS(1553), + [sym__minus_then_ws] = ACTIONS(1553), + [sym_bang] = ACTIONS(1069), + }, + [350] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1806), + [sym_boolean_literal] = STATE(1806), + [sym__string_literal] = STATE(1806), + [sym_line_string_literal] = STATE(1806), + [sym_multi_line_string_literal] = STATE(1806), + [sym_raw_string_literal] = STATE(1806), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1806), + [sym__unary_expression] = STATE(1806), + [sym_postfix_expression] = STATE(1806), + [sym_constructor_expression] = STATE(1806), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1806), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1806), + [sym_prefix_expression] = STATE(1806), + [sym_as_expression] = STATE(1806), + [sym_selector_expression] = STATE(1806), + [sym__binary_expression] = STATE(1806), + [sym_multiplicative_expression] = STATE(1806), + [sym_additive_expression] = STATE(1806), + [sym_range_expression] = STATE(1806), + [sym_infix_expression] = STATE(1806), + [sym_nil_coalescing_expression] = STATE(1806), + [sym_check_expression] = STATE(1806), + [sym_comparison_expression] = STATE(1806), + [sym_equality_expression] = STATE(1806), + [sym_conjunction_expression] = STATE(1806), + [sym_disjunction_expression] = STATE(1806), + [sym_bitwise_operation] = STATE(1806), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1806), + [sym_await_expression] = STATE(1806), + [sym_ternary_expression] = STATE(1806), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1806), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1806), + [sym_dictionary_literal] = STATE(1806), + [sym__special_literal] = STATE(1806), + [sym__playground_literal] = STATE(1806), + [sym_lambda_literal] = STATE(1806), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1806), + [sym_key_path_expression] = STATE(1806), + [sym_key_path_string_expression] = STATE(1806), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1806), + [sym__comparison_operator] = STATE(1806), + [sym__additive_operator] = STATE(1806), + [sym__multiplicative_operator] = STATE(1806), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1806), + [sym__referenceable_operator] = STATE(1806), + [sym__eq_eq] = STATE(1806), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_GT] = ACTIONS(1555), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_SLASH] = ACTIONS(1555), + [anon_sym_PERCENT] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1557), + [sym__plus_then_ws] = ACTIONS(1557), + [sym__minus_then_ws] = ACTIONS(1557), + [sym_bang] = ACTIONS(1069), + }, + [351] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1807), + [sym_boolean_literal] = STATE(1807), + [sym__string_literal] = STATE(1807), + [sym_line_string_literal] = STATE(1807), + [sym_multi_line_string_literal] = STATE(1807), + [sym_raw_string_literal] = STATE(1807), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1807), + [sym__unary_expression] = STATE(1807), + [sym_postfix_expression] = STATE(1807), + [sym_constructor_expression] = STATE(1807), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1807), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1807), + [sym_prefix_expression] = STATE(1807), + [sym_as_expression] = STATE(1807), + [sym_selector_expression] = STATE(1807), + [sym__binary_expression] = STATE(1807), + [sym_multiplicative_expression] = STATE(1807), + [sym_additive_expression] = STATE(1807), + [sym_range_expression] = STATE(1807), + [sym_infix_expression] = STATE(1807), + [sym_nil_coalescing_expression] = STATE(1807), + [sym_check_expression] = STATE(1807), + [sym_comparison_expression] = STATE(1807), + [sym_equality_expression] = STATE(1807), + [sym_conjunction_expression] = STATE(1807), + [sym_disjunction_expression] = STATE(1807), + [sym_bitwise_operation] = STATE(1807), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1807), + [sym_await_expression] = STATE(1807), + [sym_ternary_expression] = STATE(1807), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1807), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1807), + [sym_dictionary_literal] = STATE(1807), + [sym__special_literal] = STATE(1807), + [sym__playground_literal] = STATE(1807), + [sym_lambda_literal] = STATE(1807), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1807), + [sym_key_path_expression] = STATE(1807), + [sym_key_path_string_expression] = STATE(1807), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1807), + [sym__comparison_operator] = STATE(1807), + [sym__additive_operator] = STATE(1807), + [sym__multiplicative_operator] = STATE(1807), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1807), + [sym__referenceable_operator] = STATE(1807), + [sym__eq_eq] = STATE(1807), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1559), + [anon_sym_GT] = ACTIONS(1559), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1559), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1559), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1559), + [anon_sym_LT_EQ] = ACTIONS(1559), + [anon_sym_GT_EQ] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_SLASH] = ACTIONS(1559), + [anon_sym_PERCENT] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1561), + [sym__plus_then_ws] = ACTIONS(1561), + [sym__minus_then_ws] = ACTIONS(1561), + [sym_bang] = ACTIONS(1069), + }, + [352] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2228), + [sym_boolean_literal] = STATE(2228), + [sym__string_literal] = STATE(2228), + [sym_line_string_literal] = STATE(2228), + [sym_multi_line_string_literal] = STATE(2228), + [sym_raw_string_literal] = STATE(2228), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2228), + [sym__unary_expression] = STATE(2228), + [sym_postfix_expression] = STATE(2228), + [sym_constructor_expression] = STATE(2228), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2228), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2228), + [sym_prefix_expression] = STATE(2228), + [sym_as_expression] = STATE(2228), + [sym_selector_expression] = STATE(2228), + [sym__binary_expression] = STATE(2228), + [sym_multiplicative_expression] = STATE(2228), + [sym_additive_expression] = STATE(2228), + [sym_range_expression] = STATE(2228), + [sym_infix_expression] = STATE(2228), + [sym_nil_coalescing_expression] = STATE(2228), + [sym_check_expression] = STATE(2228), + [sym_comparison_expression] = STATE(2228), + [sym_equality_expression] = STATE(2228), + [sym_conjunction_expression] = STATE(2228), + [sym_disjunction_expression] = STATE(2228), + [sym_bitwise_operation] = STATE(2228), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2228), + [sym_await_expression] = STATE(2228), + [sym_ternary_expression] = STATE(2228), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2228), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2228), + [sym_dictionary_literal] = STATE(2228), + [sym__special_literal] = STATE(2228), + [sym__playground_literal] = STATE(2228), + [sym_lambda_literal] = STATE(2228), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2228), + [sym_key_path_expression] = STATE(2228), + [sym_key_path_string_expression] = STATE(2228), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2228), + [sym__comparison_operator] = STATE(2228), + [sym__additive_operator] = STATE(2228), + [sym__multiplicative_operator] = STATE(2228), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2228), + [sym__referenceable_operator] = STATE(2228), + [sym__eq_eq] = STATE(2228), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), + [sym_integer_literal] = ACTIONS(1189), + [sym_hex_literal] = ACTIONS(1191), + [sym_oct_literal] = ACTIONS(1191), + [sym_bin_literal] = ACTIONS(1191), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1189), + [anon_sym_GT] = ACTIONS(1189), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1189), + [anon_sym_POUNDfileID] = ACTIONS(1191), + [anon_sym_POUNDfilePath] = ACTIONS(1191), + [anon_sym_POUNDline] = ACTIONS(1191), + [anon_sym_POUNDcolumn] = ACTIONS(1191), + [anon_sym_POUNDfunction] = ACTIONS(1191), + [anon_sym_POUNDdsohandle] = ACTIONS(1191), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1189), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1189), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), + [anon_sym_LT_EQ] = ACTIONS(1189), + [anon_sym_GT_EQ] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_SLASH] = ACTIONS(1189), + [anon_sym_PERCENT] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1191), + [sym__plus_then_ws] = ACTIONS(1191), + [sym__minus_then_ws] = ACTIONS(1191), + [sym_bang] = ACTIONS(833), + }, + [353] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1562), + [sym_boolean_literal] = STATE(1562), + [sym__string_literal] = STATE(1562), + [sym_line_string_literal] = STATE(1562), + [sym_multi_line_string_literal] = STATE(1562), + [sym_raw_string_literal] = STATE(1562), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1562), + [sym__unary_expression] = STATE(1562), + [sym_postfix_expression] = STATE(1562), + [sym_constructor_expression] = STATE(1562), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1562), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1562), + [sym_prefix_expression] = STATE(1562), + [sym_as_expression] = STATE(1562), + [sym_selector_expression] = STATE(1562), + [sym__binary_expression] = STATE(1562), + [sym_multiplicative_expression] = STATE(1562), + [sym_additive_expression] = STATE(1562), + [sym_range_expression] = STATE(1562), + [sym_infix_expression] = STATE(1562), + [sym_nil_coalescing_expression] = STATE(1562), + [sym_check_expression] = STATE(1562), + [sym_comparison_expression] = STATE(1562), + [sym_equality_expression] = STATE(1562), + [sym_conjunction_expression] = STATE(1562), + [sym_disjunction_expression] = STATE(1562), + [sym_bitwise_operation] = STATE(1562), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1562), + [sym_await_expression] = STATE(1562), + [sym_ternary_expression] = STATE(1562), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1562), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1562), + [sym_dictionary_literal] = STATE(1562), + [sym__special_literal] = STATE(1562), + [sym__playground_literal] = STATE(1562), + [sym_lambda_literal] = STATE(1562), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1562), + [sym_key_path_expression] = STATE(1562), + [sym_key_path_string_expression] = STATE(1562), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1562), + [sym__comparison_operator] = STATE(1562), + [sym__additive_operator] = STATE(1562), + [sym__multiplicative_operator] = STATE(1562), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1562), + [sym__referenceable_operator] = STATE(1562), + [sym__eq_eq] = STATE(1562), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1563), + [anon_sym_GT] = ACTIONS(1563), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1563), + [anon_sym_LT_EQ] = ACTIONS(1563), + [anon_sym_GT_EQ] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1563), + [anon_sym_PERCENT] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1565), + [sym__plus_then_ws] = ACTIONS(1565), + [sym__minus_then_ws] = ACTIONS(1565), + [sym_bang] = ACTIONS(833), + }, + [354] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1736), + [sym_boolean_literal] = STATE(1736), + [sym__string_literal] = STATE(1736), + [sym_line_string_literal] = STATE(1736), + [sym_multi_line_string_literal] = STATE(1736), + [sym_raw_string_literal] = STATE(1736), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1736), + [sym__unary_expression] = STATE(1736), + [sym_postfix_expression] = STATE(1736), + [sym_constructor_expression] = STATE(1736), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1736), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1736), + [sym_prefix_expression] = STATE(1736), + [sym_as_expression] = STATE(1736), + [sym_selector_expression] = STATE(1736), + [sym__binary_expression] = STATE(1736), + [sym_multiplicative_expression] = STATE(1736), + [sym_additive_expression] = STATE(1736), + [sym_range_expression] = STATE(1736), + [sym_infix_expression] = STATE(1736), + [sym_nil_coalescing_expression] = STATE(1736), + [sym_check_expression] = STATE(1736), + [sym_comparison_expression] = STATE(1736), + [sym_equality_expression] = STATE(1736), + [sym_conjunction_expression] = STATE(1736), + [sym_disjunction_expression] = STATE(1736), + [sym_bitwise_operation] = STATE(1736), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_ternary_expression] = STATE(1736), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1736), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1736), + [sym_dictionary_literal] = STATE(1736), + [sym__special_literal] = STATE(1736), + [sym__playground_literal] = STATE(1736), + [sym_lambda_literal] = STATE(1736), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1736), + [sym_key_path_expression] = STATE(1736), + [sym_key_path_string_expression] = STATE(1736), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1736), + [sym__comparison_operator] = STATE(1736), + [sym__additive_operator] = STATE(1736), + [sym__multiplicative_operator] = STATE(1736), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1736), + [sym__referenceable_operator] = STATE(1736), + [sym__eq_eq] = STATE(1736), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_GT] = ACTIONS(1567), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1567), + [anon_sym_GT_EQ] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1569), + [sym__plus_then_ws] = ACTIONS(1569), + [sym__minus_then_ws] = ACTIONS(1569), + [sym_bang] = ACTIONS(1069), + }, + [355] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1812), + [sym_boolean_literal] = STATE(1812), + [sym__string_literal] = STATE(1812), + [sym_line_string_literal] = STATE(1812), + [sym_multi_line_string_literal] = STATE(1812), + [sym_raw_string_literal] = STATE(1812), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1812), + [sym__unary_expression] = STATE(1812), + [sym_postfix_expression] = STATE(1812), + [sym_constructor_expression] = STATE(1812), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1812), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1812), + [sym_prefix_expression] = STATE(1812), + [sym_as_expression] = STATE(1812), + [sym_selector_expression] = STATE(1812), + [sym__binary_expression] = STATE(1812), + [sym_multiplicative_expression] = STATE(1812), + [sym_additive_expression] = STATE(1812), + [sym_range_expression] = STATE(1812), + [sym_infix_expression] = STATE(1812), + [sym_nil_coalescing_expression] = STATE(1812), + [sym_check_expression] = STATE(1812), + [sym_comparison_expression] = STATE(1812), + [sym_equality_expression] = STATE(1812), + [sym_conjunction_expression] = STATE(1812), + [sym_disjunction_expression] = STATE(1812), + [sym_bitwise_operation] = STATE(1812), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1812), + [sym_await_expression] = STATE(1812), + [sym_ternary_expression] = STATE(1812), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1812), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1812), + [sym_dictionary_literal] = STATE(1812), + [sym__special_literal] = STATE(1812), + [sym__playground_literal] = STATE(1812), + [sym_lambda_literal] = STATE(1812), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1812), + [sym_key_path_expression] = STATE(1812), + [sym_key_path_string_expression] = STATE(1812), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1812), + [sym__comparison_operator] = STATE(1812), + [sym__additive_operator] = STATE(1812), + [sym__multiplicative_operator] = STATE(1812), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1812), + [sym__referenceable_operator] = STATE(1812), + [sym__eq_eq] = STATE(1812), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1571), + [anon_sym_GT] = ACTIONS(1571), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1571), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_SLASH] = ACTIONS(1571), + [anon_sym_PERCENT] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1573), + [sym__plus_then_ws] = ACTIONS(1573), + [sym__minus_then_ws] = ACTIONS(1573), + [sym_bang] = ACTIONS(1069), + }, + [356] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2221), + [sym_boolean_literal] = STATE(2221), + [sym__string_literal] = STATE(2221), + [sym_line_string_literal] = STATE(2221), + [sym_multi_line_string_literal] = STATE(2221), + [sym_raw_string_literal] = STATE(2221), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2221), + [sym__unary_expression] = STATE(2221), + [sym_postfix_expression] = STATE(2221), + [sym_constructor_expression] = STATE(2221), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2221), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2221), + [sym_prefix_expression] = STATE(2221), + [sym_as_expression] = STATE(2221), + [sym_selector_expression] = STATE(2221), + [sym__binary_expression] = STATE(2221), + [sym_multiplicative_expression] = STATE(2221), + [sym_additive_expression] = STATE(2221), + [sym_range_expression] = STATE(2221), + [sym_infix_expression] = STATE(2221), + [sym_nil_coalescing_expression] = STATE(2221), + [sym_check_expression] = STATE(2221), + [sym_comparison_expression] = STATE(2221), + [sym_equality_expression] = STATE(2221), + [sym_conjunction_expression] = STATE(2221), + [sym_disjunction_expression] = STATE(2221), + [sym_bitwise_operation] = STATE(2221), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2221), + [sym_await_expression] = STATE(2221), + [sym_ternary_expression] = STATE(2221), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2221), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2221), + [sym_dictionary_literal] = STATE(2221), + [sym__special_literal] = STATE(2221), + [sym__playground_literal] = STATE(2221), + [sym_lambda_literal] = STATE(2221), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2221), + [sym_key_path_expression] = STATE(2221), + [sym_key_path_string_expression] = STATE(2221), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2221), + [sym__comparison_operator] = STATE(2221), + [sym__additive_operator] = STATE(2221), + [sym__multiplicative_operator] = STATE(2221), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2221), + [sym__referenceable_operator] = STATE(2221), + [sym__eq_eq] = STATE(2221), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1575), + [anon_sym_GT] = ACTIONS(1575), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1575), + [anon_sym_LT_EQ] = ACTIONS(1575), + [anon_sym_GT_EQ] = ACTIONS(1575), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_SLASH] = ACTIONS(1575), + [anon_sym_PERCENT] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1577), + [sym__plus_then_ws] = ACTIONS(1577), + [sym__minus_then_ws] = ACTIONS(1577), + [sym_bang] = ACTIONS(833), + }, + [357] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1888), + [sym_boolean_literal] = STATE(1888), + [sym__string_literal] = STATE(1888), + [sym_line_string_literal] = STATE(1888), + [sym_multi_line_string_literal] = STATE(1888), + [sym_raw_string_literal] = STATE(1888), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1888), + [sym__unary_expression] = STATE(1888), + [sym_postfix_expression] = STATE(1888), + [sym_constructor_expression] = STATE(1888), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1888), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1888), + [sym_prefix_expression] = STATE(1888), + [sym_as_expression] = STATE(1888), + [sym_selector_expression] = STATE(1888), + [sym__binary_expression] = STATE(1888), + [sym_multiplicative_expression] = STATE(1888), + [sym_additive_expression] = STATE(1888), + [sym_range_expression] = STATE(1888), + [sym_infix_expression] = STATE(1888), + [sym_nil_coalescing_expression] = STATE(1888), + [sym_check_expression] = STATE(1888), + [sym_comparison_expression] = STATE(1888), + [sym_equality_expression] = STATE(1888), + [sym_conjunction_expression] = STATE(1888), + [sym_disjunction_expression] = STATE(1888), + [sym_bitwise_operation] = STATE(1888), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1888), + [sym_await_expression] = STATE(1888), + [sym_ternary_expression] = STATE(1888), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1888), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1888), + [sym_dictionary_literal] = STATE(1888), + [sym__special_literal] = STATE(1888), + [sym__playground_literal] = STATE(1888), + [sym_lambda_literal] = STATE(1888), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1888), + [sym_key_path_expression] = STATE(1888), + [sym_key_path_string_expression] = STATE(1888), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1888), + [sym__comparison_operator] = STATE(1888), + [sym__additive_operator] = STATE(1888), + [sym__multiplicative_operator] = STATE(1888), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1888), + [sym__referenceable_operator] = STATE(1888), + [sym__eq_eq] = STATE(1888), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1579), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1579), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1579), + [anon_sym_LT_EQ] = ACTIONS(1579), + [anon_sym_GT_EQ] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_SLASH] = ACTIONS(1579), + [anon_sym_PERCENT] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1581), + [sym__plus_then_ws] = ACTIONS(1581), + [sym__minus_then_ws] = ACTIONS(1581), + [sym_bang] = ACTIONS(1069), + }, + [358] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1887), + [sym_boolean_literal] = STATE(1887), + [sym__string_literal] = STATE(1887), + [sym_line_string_literal] = STATE(1887), + [sym_multi_line_string_literal] = STATE(1887), + [sym_raw_string_literal] = STATE(1887), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1887), + [sym__unary_expression] = STATE(1887), + [sym_postfix_expression] = STATE(1887), + [sym_constructor_expression] = STATE(1887), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1887), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1887), + [sym_prefix_expression] = STATE(1887), + [sym_as_expression] = STATE(1887), + [sym_selector_expression] = STATE(1887), + [sym__binary_expression] = STATE(1887), + [sym_multiplicative_expression] = STATE(1887), + [sym_additive_expression] = STATE(1887), + [sym_range_expression] = STATE(1887), + [sym_infix_expression] = STATE(1887), + [sym_nil_coalescing_expression] = STATE(1887), + [sym_check_expression] = STATE(1887), + [sym_comparison_expression] = STATE(1887), + [sym_equality_expression] = STATE(1887), + [sym_conjunction_expression] = STATE(1887), + [sym_disjunction_expression] = STATE(1887), + [sym_bitwise_operation] = STATE(1887), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1887), + [sym_await_expression] = STATE(1887), + [sym_ternary_expression] = STATE(1887), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1887), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1887), + [sym_dictionary_literal] = STATE(1887), + [sym__special_literal] = STATE(1887), + [sym__playground_literal] = STATE(1887), + [sym_lambda_literal] = STATE(1887), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1887), + [sym_key_path_expression] = STATE(1887), + [sym_key_path_string_expression] = STATE(1887), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1887), + [sym__comparison_operator] = STATE(1887), + [sym__additive_operator] = STATE(1887), + [sym__multiplicative_operator] = STATE(1887), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1887), + [sym__referenceable_operator] = STATE(1887), + [sym__eq_eq] = STATE(1887), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1583), + [anon_sym_GT] = ACTIONS(1583), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1583), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1583), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1583), + [anon_sym_LT_EQ] = ACTIONS(1583), + [anon_sym_GT_EQ] = ACTIONS(1583), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1583), + [anon_sym_PERCENT] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1585), + [sym__plus_then_ws] = ACTIONS(1585), + [sym__minus_then_ws] = ACTIONS(1585), + [sym_bang] = ACTIONS(1069), + }, + [359] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1814), + [sym_boolean_literal] = STATE(1814), + [sym__string_literal] = STATE(1814), + [sym_line_string_literal] = STATE(1814), + [sym_multi_line_string_literal] = STATE(1814), + [sym_raw_string_literal] = STATE(1814), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1814), + [sym__unary_expression] = STATE(1814), + [sym_postfix_expression] = STATE(1814), + [sym_constructor_expression] = STATE(1814), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1814), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1814), + [sym_prefix_expression] = STATE(1814), + [sym_as_expression] = STATE(1814), + [sym_selector_expression] = STATE(1814), + [sym__binary_expression] = STATE(1814), + [sym_multiplicative_expression] = STATE(1814), + [sym_additive_expression] = STATE(1814), + [sym_range_expression] = STATE(1814), + [sym_infix_expression] = STATE(1814), + [sym_nil_coalescing_expression] = STATE(1814), + [sym_check_expression] = STATE(1814), + [sym_comparison_expression] = STATE(1814), + [sym_equality_expression] = STATE(1814), + [sym_conjunction_expression] = STATE(1814), + [sym_disjunction_expression] = STATE(1814), + [sym_bitwise_operation] = STATE(1814), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1814), + [sym_await_expression] = STATE(1814), + [sym_ternary_expression] = STATE(1814), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1814), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1814), + [sym_dictionary_literal] = STATE(1814), + [sym__special_literal] = STATE(1814), + [sym__playground_literal] = STATE(1814), + [sym_lambda_literal] = STATE(1814), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1814), + [sym_key_path_expression] = STATE(1814), + [sym_key_path_string_expression] = STATE(1814), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1814), + [sym__comparison_operator] = STATE(1814), + [sym__additive_operator] = STATE(1814), + [sym__multiplicative_operator] = STATE(1814), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1814), + [sym__referenceable_operator] = STATE(1814), + [sym__eq_eq] = STATE(1814), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1587), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1587), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1587), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_GT_EQ] = ACTIONS(1587), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_SLASH] = ACTIONS(1587), + [anon_sym_PERCENT] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1589), + [sym__plus_then_ws] = ACTIONS(1589), + [sym__minus_then_ws] = ACTIONS(1589), + [sym_bang] = ACTIONS(1069), + }, + [360] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1815), + [sym_boolean_literal] = STATE(1815), + [sym__string_literal] = STATE(1815), + [sym_line_string_literal] = STATE(1815), + [sym_multi_line_string_literal] = STATE(1815), + [sym_raw_string_literal] = STATE(1815), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1815), + [sym__unary_expression] = STATE(1815), + [sym_postfix_expression] = STATE(1815), + [sym_constructor_expression] = STATE(1815), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1815), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1815), + [sym_prefix_expression] = STATE(1815), + [sym_as_expression] = STATE(1815), + [sym_selector_expression] = STATE(1815), + [sym__binary_expression] = STATE(1815), + [sym_multiplicative_expression] = STATE(1815), + [sym_additive_expression] = STATE(1815), + [sym_range_expression] = STATE(1815), + [sym_infix_expression] = STATE(1815), + [sym_nil_coalescing_expression] = STATE(1815), + [sym_check_expression] = STATE(1815), + [sym_comparison_expression] = STATE(1815), + [sym_equality_expression] = STATE(1815), + [sym_conjunction_expression] = STATE(1815), + [sym_disjunction_expression] = STATE(1815), + [sym_bitwise_operation] = STATE(1815), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1815), + [sym_await_expression] = STATE(1815), + [sym_ternary_expression] = STATE(1815), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1815), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1815), + [sym_dictionary_literal] = STATE(1815), + [sym__special_literal] = STATE(1815), + [sym__playground_literal] = STATE(1815), + [sym_lambda_literal] = STATE(1815), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1815), + [sym_key_path_expression] = STATE(1815), + [sym_key_path_string_expression] = STATE(1815), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1815), + [sym__comparison_operator] = STATE(1815), + [sym__additive_operator] = STATE(1815), + [sym__multiplicative_operator] = STATE(1815), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1815), + [sym__referenceable_operator] = STATE(1815), + [sym__eq_eq] = STATE(1815), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1591), + [anon_sym_GT] = ACTIONS(1591), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1591), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1591), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1591), + [anon_sym_LT_EQ] = ACTIONS(1591), + [anon_sym_GT_EQ] = ACTIONS(1591), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_PERCENT] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1593), + [sym__plus_then_ws] = ACTIONS(1593), + [sym__minus_then_ws] = ACTIONS(1593), + [sym_bang] = ACTIONS(1069), + }, + [361] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1816), + [sym_boolean_literal] = STATE(1816), + [sym__string_literal] = STATE(1816), + [sym_line_string_literal] = STATE(1816), + [sym_multi_line_string_literal] = STATE(1816), + [sym_raw_string_literal] = STATE(1816), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1816), + [sym__unary_expression] = STATE(1816), + [sym_postfix_expression] = STATE(1816), + [sym_constructor_expression] = STATE(1816), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1816), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1816), + [sym_prefix_expression] = STATE(1816), + [sym_as_expression] = STATE(1816), + [sym_selector_expression] = STATE(1816), + [sym__binary_expression] = STATE(1816), + [sym_multiplicative_expression] = STATE(1816), + [sym_additive_expression] = STATE(1816), + [sym_range_expression] = STATE(1816), + [sym_infix_expression] = STATE(1816), + [sym_nil_coalescing_expression] = STATE(1816), + [sym_check_expression] = STATE(1816), + [sym_comparison_expression] = STATE(1816), + [sym_equality_expression] = STATE(1816), + [sym_conjunction_expression] = STATE(1816), + [sym_disjunction_expression] = STATE(1816), + [sym_bitwise_operation] = STATE(1816), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1816), + [sym_await_expression] = STATE(1816), + [sym_ternary_expression] = STATE(1816), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1816), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1816), + [sym_dictionary_literal] = STATE(1816), + [sym__special_literal] = STATE(1816), + [sym__playground_literal] = STATE(1816), + [sym_lambda_literal] = STATE(1816), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1816), + [sym_key_path_expression] = STATE(1816), + [sym_key_path_string_expression] = STATE(1816), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1816), + [sym__comparison_operator] = STATE(1816), + [sym__additive_operator] = STATE(1816), + [sym__multiplicative_operator] = STATE(1816), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1816), + [sym__referenceable_operator] = STATE(1816), + [sym__eq_eq] = STATE(1816), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1595), + [anon_sym_GT] = ACTIONS(1595), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1595), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1595), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1595), + [anon_sym_LT_EQ] = ACTIONS(1595), + [anon_sym_GT_EQ] = ACTIONS(1595), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_SLASH] = ACTIONS(1595), + [anon_sym_PERCENT] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1597), + [sym__plus_then_ws] = ACTIONS(1597), + [sym__minus_then_ws] = ACTIONS(1597), + [sym_bang] = ACTIONS(1069), + }, + [362] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1869), + [sym_boolean_literal] = STATE(1869), + [sym__string_literal] = STATE(1869), + [sym_line_string_literal] = STATE(1869), + [sym_multi_line_string_literal] = STATE(1869), + [sym_raw_string_literal] = STATE(1869), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1869), + [sym__unary_expression] = STATE(1869), + [sym_postfix_expression] = STATE(1869), + [sym_constructor_expression] = STATE(1869), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1869), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1869), + [sym_prefix_expression] = STATE(1869), + [sym_as_expression] = STATE(1869), + [sym_selector_expression] = STATE(1869), + [sym__binary_expression] = STATE(1869), + [sym_multiplicative_expression] = STATE(1869), + [sym_additive_expression] = STATE(1869), + [sym_range_expression] = STATE(1869), + [sym_infix_expression] = STATE(1869), + [sym_nil_coalescing_expression] = STATE(1869), + [sym_check_expression] = STATE(1869), + [sym_comparison_expression] = STATE(1869), + [sym_equality_expression] = STATE(1869), + [sym_conjunction_expression] = STATE(1869), + [sym_disjunction_expression] = STATE(1869), + [sym_bitwise_operation] = STATE(1869), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1869), + [sym_await_expression] = STATE(1869), + [sym_ternary_expression] = STATE(1869), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1869), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1869), + [sym_dictionary_literal] = STATE(1869), + [sym__special_literal] = STATE(1869), + [sym__playground_literal] = STATE(1869), + [sym_lambda_literal] = STATE(1869), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1869), + [sym_key_path_expression] = STATE(1869), + [sym_key_path_string_expression] = STATE(1869), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1869), + [sym__comparison_operator] = STATE(1869), + [sym__additive_operator] = STATE(1869), + [sym__multiplicative_operator] = STATE(1869), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1869), + [sym__referenceable_operator] = STATE(1869), + [sym__eq_eq] = STATE(1869), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1599), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1599), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1599), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_SLASH] = ACTIONS(1599), + [anon_sym_PERCENT] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1601), + [sym__plus_then_ws] = ACTIONS(1601), + [sym__minus_then_ws] = ACTIONS(1601), + [sym_bang] = ACTIONS(1069), + }, + [363] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1868), + [sym_boolean_literal] = STATE(1868), + [sym__string_literal] = STATE(1868), + [sym_line_string_literal] = STATE(1868), + [sym_multi_line_string_literal] = STATE(1868), + [sym_raw_string_literal] = STATE(1868), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1868), + [sym__unary_expression] = STATE(1868), + [sym_postfix_expression] = STATE(1868), + [sym_constructor_expression] = STATE(1868), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1868), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1868), + [sym_prefix_expression] = STATE(1868), + [sym_as_expression] = STATE(1868), + [sym_selector_expression] = STATE(1868), + [sym__binary_expression] = STATE(1868), + [sym_multiplicative_expression] = STATE(1868), + [sym_additive_expression] = STATE(1868), + [sym_range_expression] = STATE(1868), + [sym_infix_expression] = STATE(1868), + [sym_nil_coalescing_expression] = STATE(1868), + [sym_check_expression] = STATE(1868), + [sym_comparison_expression] = STATE(1868), + [sym_equality_expression] = STATE(1868), + [sym_conjunction_expression] = STATE(1868), + [sym_disjunction_expression] = STATE(1868), + [sym_bitwise_operation] = STATE(1868), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1868), + [sym_await_expression] = STATE(1868), + [sym_ternary_expression] = STATE(1868), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1868), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1868), + [sym_dictionary_literal] = STATE(1868), + [sym__special_literal] = STATE(1868), + [sym__playground_literal] = STATE(1868), + [sym_lambda_literal] = STATE(1868), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1868), + [sym_key_path_expression] = STATE(1868), + [sym_key_path_string_expression] = STATE(1868), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1868), + [sym__comparison_operator] = STATE(1868), + [sym__additive_operator] = STATE(1868), + [sym__multiplicative_operator] = STATE(1868), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1868), + [sym__referenceable_operator] = STATE(1868), + [sym__eq_eq] = STATE(1868), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1603), + [anon_sym_GT] = ACTIONS(1603), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1603), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1603), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1603), + [anon_sym_LT_EQ] = ACTIONS(1603), + [anon_sym_GT_EQ] = ACTIONS(1603), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1603), + [anon_sym_PERCENT] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1605), + [sym__plus_then_ws] = ACTIONS(1605), + [sym__minus_then_ws] = ACTIONS(1605), + [sym_bang] = ACTIONS(1069), + }, + [364] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1818), + [sym_boolean_literal] = STATE(1818), + [sym__string_literal] = STATE(1818), + [sym_line_string_literal] = STATE(1818), + [sym_multi_line_string_literal] = STATE(1818), + [sym_raw_string_literal] = STATE(1818), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1818), + [sym__unary_expression] = STATE(1818), + [sym_postfix_expression] = STATE(1818), + [sym_constructor_expression] = STATE(1818), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1818), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1818), + [sym_prefix_expression] = STATE(1818), + [sym_as_expression] = STATE(1818), + [sym_selector_expression] = STATE(1818), + [sym__binary_expression] = STATE(1818), + [sym_multiplicative_expression] = STATE(1818), + [sym_additive_expression] = STATE(1818), + [sym_range_expression] = STATE(1818), + [sym_infix_expression] = STATE(1818), + [sym_nil_coalescing_expression] = STATE(1818), + [sym_check_expression] = STATE(1818), + [sym_comparison_expression] = STATE(1818), + [sym_equality_expression] = STATE(1818), + [sym_conjunction_expression] = STATE(1818), + [sym_disjunction_expression] = STATE(1818), + [sym_bitwise_operation] = STATE(1818), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1818), + [sym_await_expression] = STATE(1818), + [sym_ternary_expression] = STATE(1818), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1818), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1818), + [sym_dictionary_literal] = STATE(1818), + [sym__special_literal] = STATE(1818), + [sym__playground_literal] = STATE(1818), + [sym_lambda_literal] = STATE(1818), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1818), + [sym_key_path_expression] = STATE(1818), + [sym_key_path_string_expression] = STATE(1818), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1818), + [sym__comparison_operator] = STATE(1818), + [sym__additive_operator] = STATE(1818), + [sym__multiplicative_operator] = STATE(1818), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1818), + [sym__referenceable_operator] = STATE(1818), + [sym__eq_eq] = STATE(1818), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1607), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1607), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT_EQ] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_SLASH] = ACTIONS(1607), + [anon_sym_PERCENT] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1609), + [sym__plus_then_ws] = ACTIONS(1609), + [sym__minus_then_ws] = ACTIONS(1609), + [sym_bang] = ACTIONS(1069), + }, + [365] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1855), + [sym_boolean_literal] = STATE(1855), + [sym__string_literal] = STATE(1855), + [sym_line_string_literal] = STATE(1855), + [sym_multi_line_string_literal] = STATE(1855), + [sym_raw_string_literal] = STATE(1855), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1855), + [sym__unary_expression] = STATE(1855), + [sym_postfix_expression] = STATE(1855), + [sym_constructor_expression] = STATE(1855), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1855), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1855), + [sym_prefix_expression] = STATE(1855), + [sym_as_expression] = STATE(1855), + [sym_selector_expression] = STATE(1855), + [sym__binary_expression] = STATE(1855), + [sym_multiplicative_expression] = STATE(1855), + [sym_additive_expression] = STATE(1855), + [sym_range_expression] = STATE(1855), + [sym_infix_expression] = STATE(1855), + [sym_nil_coalescing_expression] = STATE(1855), + [sym_check_expression] = STATE(1855), + [sym_comparison_expression] = STATE(1855), + [sym_equality_expression] = STATE(1855), + [sym_conjunction_expression] = STATE(1855), + [sym_disjunction_expression] = STATE(1855), + [sym_bitwise_operation] = STATE(1855), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1855), + [sym_await_expression] = STATE(1855), + [sym_ternary_expression] = STATE(1855), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1855), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1855), + [sym_dictionary_literal] = STATE(1855), + [sym__special_literal] = STATE(1855), + [sym__playground_literal] = STATE(1855), + [sym_lambda_literal] = STATE(1855), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1855), + [sym_key_path_expression] = STATE(1855), + [sym_key_path_string_expression] = STATE(1855), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1855), + [sym__comparison_operator] = STATE(1855), + [sym__additive_operator] = STATE(1855), + [sym__multiplicative_operator] = STATE(1855), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1855), + [sym__referenceable_operator] = STATE(1855), + [sym__eq_eq] = STATE(1855), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1611), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1611), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1611), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1611), + [anon_sym_LT_EQ] = ACTIONS(1611), + [anon_sym_GT_EQ] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_SLASH] = ACTIONS(1611), + [anon_sym_PERCENT] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1613), + [sym__plus_then_ws] = ACTIONS(1613), + [sym__minus_then_ws] = ACTIONS(1613), + [sym_bang] = ACTIONS(1069), + }, + [366] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1854), + [sym_boolean_literal] = STATE(1854), + [sym__string_literal] = STATE(1854), + [sym_line_string_literal] = STATE(1854), + [sym_multi_line_string_literal] = STATE(1854), + [sym_raw_string_literal] = STATE(1854), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1854), + [sym__unary_expression] = STATE(1854), + [sym_postfix_expression] = STATE(1854), + [sym_constructor_expression] = STATE(1854), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1854), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1854), + [sym_prefix_expression] = STATE(1854), + [sym_as_expression] = STATE(1854), + [sym_selector_expression] = STATE(1854), + [sym__binary_expression] = STATE(1854), + [sym_multiplicative_expression] = STATE(1854), + [sym_additive_expression] = STATE(1854), + [sym_range_expression] = STATE(1854), + [sym_infix_expression] = STATE(1854), + [sym_nil_coalescing_expression] = STATE(1854), + [sym_check_expression] = STATE(1854), + [sym_comparison_expression] = STATE(1854), + [sym_equality_expression] = STATE(1854), + [sym_conjunction_expression] = STATE(1854), + [sym_disjunction_expression] = STATE(1854), + [sym_bitwise_operation] = STATE(1854), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1854), + [sym_await_expression] = STATE(1854), + [sym_ternary_expression] = STATE(1854), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1854), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1854), + [sym_dictionary_literal] = STATE(1854), + [sym__special_literal] = STATE(1854), + [sym__playground_literal] = STATE(1854), + [sym_lambda_literal] = STATE(1854), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1854), + [sym_key_path_expression] = STATE(1854), + [sym_key_path_string_expression] = STATE(1854), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1854), + [sym__comparison_operator] = STATE(1854), + [sym__additive_operator] = STATE(1854), + [sym__multiplicative_operator] = STATE(1854), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1854), + [sym__referenceable_operator] = STATE(1854), + [sym__eq_eq] = STATE(1854), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1615), + [anon_sym_GT] = ACTIONS(1615), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1615), + [anon_sym_LT_EQ] = ACTIONS(1615), + [anon_sym_GT_EQ] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_SLASH] = ACTIONS(1615), + [anon_sym_PERCENT] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1617), + [sym__plus_then_ws] = ACTIONS(1617), + [sym__minus_then_ws] = ACTIONS(1617), + [sym_bang] = ACTIONS(1069), + }, + [367] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym__string_literal] = STATE(1819), + [sym_line_string_literal] = STATE(1819), + [sym_multi_line_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1819), + [sym__unary_expression] = STATE(1819), + [sym_postfix_expression] = STATE(1819), + [sym_constructor_expression] = STATE(1819), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1819), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1819), + [sym_prefix_expression] = STATE(1819), + [sym_as_expression] = STATE(1819), + [sym_selector_expression] = STATE(1819), + [sym__binary_expression] = STATE(1819), + [sym_multiplicative_expression] = STATE(1819), + [sym_additive_expression] = STATE(1819), + [sym_range_expression] = STATE(1819), + [sym_infix_expression] = STATE(1819), + [sym_nil_coalescing_expression] = STATE(1819), + [sym_check_expression] = STATE(1819), + [sym_comparison_expression] = STATE(1819), + [sym_equality_expression] = STATE(1819), + [sym_conjunction_expression] = STATE(1819), + [sym_disjunction_expression] = STATE(1819), + [sym_bitwise_operation] = STATE(1819), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_ternary_expression] = STATE(1819), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1819), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1819), + [sym_dictionary_literal] = STATE(1819), + [sym__special_literal] = STATE(1819), + [sym__playground_literal] = STATE(1819), + [sym_lambda_literal] = STATE(1819), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1819), + [sym_key_path_expression] = STATE(1819), + [sym_key_path_string_expression] = STATE(1819), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1819), + [sym__comparison_operator] = STATE(1819), + [sym__additive_operator] = STATE(1819), + [sym__multiplicative_operator] = STATE(1819), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1819), + [sym__referenceable_operator] = STATE(1819), + [sym__eq_eq] = STATE(1819), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1619), + [anon_sym_GT] = ACTIONS(1619), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1619), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1619), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1619), + [anon_sym_LT_EQ] = ACTIONS(1619), + [anon_sym_GT_EQ] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_SLASH] = ACTIONS(1619), + [anon_sym_PERCENT] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1621), + [sym__plus_then_ws] = ACTIONS(1621), + [sym__minus_then_ws] = ACTIONS(1621), + [sym_bang] = ACTIONS(1069), + }, + [368] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1820), + [sym_boolean_literal] = STATE(1820), + [sym__string_literal] = STATE(1820), + [sym_line_string_literal] = STATE(1820), + [sym_multi_line_string_literal] = STATE(1820), + [sym_raw_string_literal] = STATE(1820), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1820), + [sym__unary_expression] = STATE(1820), + [sym_postfix_expression] = STATE(1820), + [sym_constructor_expression] = STATE(1820), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1820), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1820), + [sym_prefix_expression] = STATE(1820), + [sym_as_expression] = STATE(1820), + [sym_selector_expression] = STATE(1820), + [sym__binary_expression] = STATE(1820), + [sym_multiplicative_expression] = STATE(1820), + [sym_additive_expression] = STATE(1820), + [sym_range_expression] = STATE(1820), + [sym_infix_expression] = STATE(1820), + [sym_nil_coalescing_expression] = STATE(1820), + [sym_check_expression] = STATE(1820), + [sym_comparison_expression] = STATE(1820), + [sym_equality_expression] = STATE(1820), + [sym_conjunction_expression] = STATE(1820), + [sym_disjunction_expression] = STATE(1820), + [sym_bitwise_operation] = STATE(1820), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1820), + [sym_await_expression] = STATE(1820), + [sym_ternary_expression] = STATE(1820), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1820), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1820), + [sym_dictionary_literal] = STATE(1820), + [sym__special_literal] = STATE(1820), + [sym__playground_literal] = STATE(1820), + [sym_lambda_literal] = STATE(1820), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1820), + [sym_key_path_expression] = STATE(1820), + [sym_key_path_string_expression] = STATE(1820), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1820), + [sym__comparison_operator] = STATE(1820), + [sym__additive_operator] = STATE(1820), + [sym__multiplicative_operator] = STATE(1820), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1820), + [sym__referenceable_operator] = STATE(1820), + [sym__eq_eq] = STATE(1820), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1623), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_EQ] = ACTIONS(1623), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_SLASH] = ACTIONS(1623), + [anon_sym_PERCENT] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1625), + [sym__plus_then_ws] = ACTIONS(1625), + [sym__minus_then_ws] = ACTIONS(1625), + [sym_bang] = ACTIONS(1069), + }, + [369] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1826), + [sym_boolean_literal] = STATE(1826), + [sym__string_literal] = STATE(1826), + [sym_line_string_literal] = STATE(1826), + [sym_multi_line_string_literal] = STATE(1826), + [sym_raw_string_literal] = STATE(1826), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1826), + [sym__unary_expression] = STATE(1826), + [sym_postfix_expression] = STATE(1826), + [sym_constructor_expression] = STATE(1826), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1826), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1826), + [sym_prefix_expression] = STATE(1826), + [sym_as_expression] = STATE(1826), + [sym_selector_expression] = STATE(1826), + [sym__binary_expression] = STATE(1826), + [sym_multiplicative_expression] = STATE(1826), + [sym_additive_expression] = STATE(1826), + [sym_range_expression] = STATE(1826), + [sym_infix_expression] = STATE(1826), + [sym_nil_coalescing_expression] = STATE(1826), + [sym_check_expression] = STATE(1826), + [sym_comparison_expression] = STATE(1826), + [sym_equality_expression] = STATE(1826), + [sym_conjunction_expression] = STATE(1826), + [sym_disjunction_expression] = STATE(1826), + [sym_bitwise_operation] = STATE(1826), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1826), + [sym_await_expression] = STATE(1826), + [sym_ternary_expression] = STATE(1826), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1826), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1826), + [sym_dictionary_literal] = STATE(1826), + [sym__special_literal] = STATE(1826), + [sym__playground_literal] = STATE(1826), + [sym_lambda_literal] = STATE(1826), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1826), + [sym_key_path_expression] = STATE(1826), + [sym_key_path_string_expression] = STATE(1826), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1826), + [sym__comparison_operator] = STATE(1826), + [sym__additive_operator] = STATE(1826), + [sym__multiplicative_operator] = STATE(1826), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1826), + [sym__referenceable_operator] = STATE(1826), + [sym__eq_eq] = STATE(1826), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1627), + [anon_sym_GT] = ACTIONS(1627), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1627), + [anon_sym_LT_EQ] = ACTIONS(1627), + [anon_sym_GT_EQ] = ACTIONS(1627), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_SLASH] = ACTIONS(1627), + [anon_sym_PERCENT] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1629), + [sym__plus_then_ws] = ACTIONS(1629), + [sym__minus_then_ws] = ACTIONS(1629), + [sym_bang] = ACTIONS(1069), + }, + [370] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1827), + [sym_boolean_literal] = STATE(1827), + [sym__string_literal] = STATE(1827), + [sym_line_string_literal] = STATE(1827), + [sym_multi_line_string_literal] = STATE(1827), + [sym_raw_string_literal] = STATE(1827), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1827), + [sym__unary_expression] = STATE(1827), + [sym_postfix_expression] = STATE(1827), + [sym_constructor_expression] = STATE(1827), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1827), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1827), + [sym_prefix_expression] = STATE(1827), + [sym_as_expression] = STATE(1827), + [sym_selector_expression] = STATE(1827), + [sym__binary_expression] = STATE(1827), + [sym_multiplicative_expression] = STATE(1827), + [sym_additive_expression] = STATE(1827), + [sym_range_expression] = STATE(1827), + [sym_infix_expression] = STATE(1827), + [sym_nil_coalescing_expression] = STATE(1827), + [sym_check_expression] = STATE(1827), + [sym_comparison_expression] = STATE(1827), + [sym_equality_expression] = STATE(1827), + [sym_conjunction_expression] = STATE(1827), + [sym_disjunction_expression] = STATE(1827), + [sym_bitwise_operation] = STATE(1827), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1827), + [sym_await_expression] = STATE(1827), + [sym_ternary_expression] = STATE(1827), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1827), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1827), + [sym_dictionary_literal] = STATE(1827), + [sym__special_literal] = STATE(1827), + [sym__playground_literal] = STATE(1827), + [sym_lambda_literal] = STATE(1827), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1827), + [sym_key_path_expression] = STATE(1827), + [sym_key_path_string_expression] = STATE(1827), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1827), + [sym__comparison_operator] = STATE(1827), + [sym__additive_operator] = STATE(1827), + [sym__multiplicative_operator] = STATE(1827), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1827), + [sym__referenceable_operator] = STATE(1827), + [sym__eq_eq] = STATE(1827), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1631), + [anon_sym_LT_EQ] = ACTIONS(1631), + [anon_sym_GT_EQ] = ACTIONS(1631), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_SLASH] = ACTIONS(1631), + [anon_sym_PERCENT] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1633), + [sym__plus_then_ws] = ACTIONS(1633), + [sym__minus_then_ws] = ACTIONS(1633), + [sym_bang] = ACTIONS(1069), + }, + [371] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1831), + [sym_boolean_literal] = STATE(1831), + [sym__string_literal] = STATE(1831), + [sym_line_string_literal] = STATE(1831), + [sym_multi_line_string_literal] = STATE(1831), + [sym_raw_string_literal] = STATE(1831), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1831), + [sym__unary_expression] = STATE(1831), + [sym_postfix_expression] = STATE(1831), + [sym_constructor_expression] = STATE(1831), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1831), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1831), + [sym_prefix_expression] = STATE(1831), + [sym_as_expression] = STATE(1831), + [sym_selector_expression] = STATE(1831), + [sym__binary_expression] = STATE(1831), + [sym_multiplicative_expression] = STATE(1831), + [sym_additive_expression] = STATE(1831), + [sym_range_expression] = STATE(1831), + [sym_infix_expression] = STATE(1831), + [sym_nil_coalescing_expression] = STATE(1831), + [sym_check_expression] = STATE(1831), + [sym_comparison_expression] = STATE(1831), + [sym_equality_expression] = STATE(1831), + [sym_conjunction_expression] = STATE(1831), + [sym_disjunction_expression] = STATE(1831), + [sym_bitwise_operation] = STATE(1831), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1831), + [sym_await_expression] = STATE(1831), + [sym_ternary_expression] = STATE(1831), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1831), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1831), + [sym_dictionary_literal] = STATE(1831), + [sym__special_literal] = STATE(1831), + [sym__playground_literal] = STATE(1831), + [sym_lambda_literal] = STATE(1831), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1831), + [sym_key_path_expression] = STATE(1831), + [sym_key_path_string_expression] = STATE(1831), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1831), + [sym__comparison_operator] = STATE(1831), + [sym__additive_operator] = STATE(1831), + [sym__multiplicative_operator] = STATE(1831), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1831), + [sym__referenceable_operator] = STATE(1831), + [sym__eq_eq] = STATE(1831), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1635), + [anon_sym_GT] = ACTIONS(1635), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1635), + [anon_sym_LT_EQ] = ACTIONS(1635), + [anon_sym_GT_EQ] = ACTIONS(1635), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_SLASH] = ACTIONS(1635), + [anon_sym_PERCENT] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1637), + [sym__plus_then_ws] = ACTIONS(1637), + [sym__minus_then_ws] = ACTIONS(1637), + [sym_bang] = ACTIONS(1069), + }, + [372] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1832), + [sym_boolean_literal] = STATE(1832), + [sym__string_literal] = STATE(1832), + [sym_line_string_literal] = STATE(1832), + [sym_multi_line_string_literal] = STATE(1832), + [sym_raw_string_literal] = STATE(1832), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1832), + [sym__unary_expression] = STATE(1832), + [sym_postfix_expression] = STATE(1832), + [sym_constructor_expression] = STATE(1832), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1832), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1832), + [sym_prefix_expression] = STATE(1832), + [sym_as_expression] = STATE(1832), + [sym_selector_expression] = STATE(1832), + [sym__binary_expression] = STATE(1832), + [sym_multiplicative_expression] = STATE(1832), + [sym_additive_expression] = STATE(1832), + [sym_range_expression] = STATE(1832), + [sym_infix_expression] = STATE(1832), + [sym_nil_coalescing_expression] = STATE(1832), + [sym_check_expression] = STATE(1832), + [sym_comparison_expression] = STATE(1832), + [sym_equality_expression] = STATE(1832), + [sym_conjunction_expression] = STATE(1832), + [sym_disjunction_expression] = STATE(1832), + [sym_bitwise_operation] = STATE(1832), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1832), + [sym_await_expression] = STATE(1832), + [sym_ternary_expression] = STATE(1832), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1832), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1832), + [sym_dictionary_literal] = STATE(1832), + [sym__special_literal] = STATE(1832), + [sym__playground_literal] = STATE(1832), + [sym_lambda_literal] = STATE(1832), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1832), + [sym_key_path_expression] = STATE(1832), + [sym_key_path_string_expression] = STATE(1832), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1832), + [sym__comparison_operator] = STATE(1832), + [sym__additive_operator] = STATE(1832), + [sym__multiplicative_operator] = STATE(1832), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1832), + [sym__referenceable_operator] = STATE(1832), + [sym__eq_eq] = STATE(1832), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1639), + [anon_sym_GT] = ACTIONS(1639), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1639), + [anon_sym_LT_EQ] = ACTIONS(1639), + [anon_sym_GT_EQ] = ACTIONS(1639), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_SLASH] = ACTIONS(1639), + [anon_sym_PERCENT] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1641), + [sym__plus_then_ws] = ACTIONS(1641), + [sym__minus_then_ws] = ACTIONS(1641), + [sym_bang] = ACTIONS(1069), + }, + [373] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1833), + [sym_boolean_literal] = STATE(1833), + [sym__string_literal] = STATE(1833), + [sym_line_string_literal] = STATE(1833), + [sym_multi_line_string_literal] = STATE(1833), + [sym_raw_string_literal] = STATE(1833), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1833), + [sym__unary_expression] = STATE(1833), + [sym_postfix_expression] = STATE(1833), + [sym_constructor_expression] = STATE(1833), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1833), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1833), + [sym_prefix_expression] = STATE(1833), + [sym_as_expression] = STATE(1833), + [sym_selector_expression] = STATE(1833), + [sym__binary_expression] = STATE(1833), + [sym_multiplicative_expression] = STATE(1833), + [sym_additive_expression] = STATE(1833), + [sym_range_expression] = STATE(1833), + [sym_infix_expression] = STATE(1833), + [sym_nil_coalescing_expression] = STATE(1833), + [sym_check_expression] = STATE(1833), + [sym_comparison_expression] = STATE(1833), + [sym_equality_expression] = STATE(1833), + [sym_conjunction_expression] = STATE(1833), + [sym_disjunction_expression] = STATE(1833), + [sym_bitwise_operation] = STATE(1833), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1833), + [sym_await_expression] = STATE(1833), + [sym_ternary_expression] = STATE(1833), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1833), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1833), + [sym_dictionary_literal] = STATE(1833), + [sym__special_literal] = STATE(1833), + [sym__playground_literal] = STATE(1833), + [sym_lambda_literal] = STATE(1833), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1833), + [sym_key_path_expression] = STATE(1833), + [sym_key_path_string_expression] = STATE(1833), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1833), + [sym__comparison_operator] = STATE(1833), + [sym__additive_operator] = STATE(1833), + [sym__multiplicative_operator] = STATE(1833), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1833), + [sym__referenceable_operator] = STATE(1833), + [sym__eq_eq] = STATE(1833), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1643), + [anon_sym_GT] = ACTIONS(1643), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1643), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1643), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1643), + [anon_sym_LT_EQ] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_SLASH] = ACTIONS(1643), + [anon_sym_PERCENT] = ACTIONS(1643), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1645), + [sym__plus_then_ws] = ACTIONS(1645), + [sym__minus_then_ws] = ACTIONS(1645), + [sym_bang] = ACTIONS(1069), + }, + [374] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(1822), + [sym_boolean_literal] = STATE(1822), + [sym__string_literal] = STATE(1822), + [sym_line_string_literal] = STATE(1822), + [sym_multi_line_string_literal] = STATE(1822), + [sym_raw_string_literal] = STATE(1822), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(1822), + [sym__unary_expression] = STATE(1822), + [sym_postfix_expression] = STATE(1822), + [sym_constructor_expression] = STATE(1822), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(1822), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(1822), + [sym_prefix_expression] = STATE(1822), + [sym_as_expression] = STATE(1822), + [sym_selector_expression] = STATE(1822), + [sym__binary_expression] = STATE(1822), + [sym_multiplicative_expression] = STATE(1822), + [sym_additive_expression] = STATE(1822), + [sym_range_expression] = STATE(1822), + [sym_infix_expression] = STATE(1822), + [sym_nil_coalescing_expression] = STATE(1822), + [sym_check_expression] = STATE(1822), + [sym_comparison_expression] = STATE(1822), + [sym_equality_expression] = STATE(1822), + [sym_conjunction_expression] = STATE(1822), + [sym_disjunction_expression] = STATE(1822), + [sym_bitwise_operation] = STATE(1822), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(1822), + [sym_await_expression] = STATE(1822), + [sym_ternary_expression] = STATE(1822), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(1822), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(1822), + [sym_dictionary_literal] = STATE(1822), + [sym__special_literal] = STATE(1822), + [sym__playground_literal] = STATE(1822), + [sym_lambda_literal] = STATE(1822), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(1822), + [sym_key_path_expression] = STATE(1822), + [sym_key_path_string_expression] = STATE(1822), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(1822), + [sym__comparison_operator] = STATE(1822), + [sym__additive_operator] = STATE(1822), + [sym__multiplicative_operator] = STATE(1822), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(1822), + [sym__referenceable_operator] = STATE(1822), + [sym__eq_eq] = STATE(1822), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_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(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1647), + [sym__await_operator] = ACTIONS(39), + [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(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(1647), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1647), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1647), + [anon_sym_LT_EQ] = ACTIONS(1647), + [anon_sym_GT_EQ] = ACTIONS(1647), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1647), + [anon_sym_PERCENT] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(1649), + [sym__plus_then_ws] = ACTIONS(1649), + [sym__minus_then_ws] = ACTIONS(1649), + [sym_bang] = ACTIONS(137), + }, + [375] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1838), + [sym_boolean_literal] = STATE(1838), + [sym__string_literal] = STATE(1838), + [sym_line_string_literal] = STATE(1838), + [sym_multi_line_string_literal] = STATE(1838), + [sym_raw_string_literal] = STATE(1838), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1838), + [sym__unary_expression] = STATE(1838), + [sym_postfix_expression] = STATE(1838), + [sym_constructor_expression] = STATE(1838), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1838), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1838), + [sym_prefix_expression] = STATE(1838), + [sym_as_expression] = STATE(1838), + [sym_selector_expression] = STATE(1838), + [sym__binary_expression] = STATE(1838), + [sym_multiplicative_expression] = STATE(1838), + [sym_additive_expression] = STATE(1838), + [sym_range_expression] = STATE(1838), + [sym_infix_expression] = STATE(1838), + [sym_nil_coalescing_expression] = STATE(1838), + [sym_check_expression] = STATE(1838), + [sym_comparison_expression] = STATE(1838), + [sym_equality_expression] = STATE(1838), + [sym_conjunction_expression] = STATE(1838), + [sym_disjunction_expression] = STATE(1838), + [sym_bitwise_operation] = STATE(1838), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1838), + [sym_await_expression] = STATE(1838), + [sym_ternary_expression] = STATE(1838), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1838), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1838), + [sym_dictionary_literal] = STATE(1838), + [sym__special_literal] = STATE(1838), + [sym__playground_literal] = STATE(1838), + [sym_lambda_literal] = STATE(1838), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1838), + [sym_key_path_expression] = STATE(1838), + [sym_key_path_string_expression] = STATE(1838), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1838), + [sym__comparison_operator] = STATE(1838), + [sym__additive_operator] = STATE(1838), + [sym__multiplicative_operator] = STATE(1838), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1838), + [sym__referenceable_operator] = STATE(1838), + [sym__eq_eq] = STATE(1838), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1651), + [anon_sym_GT] = ACTIONS(1651), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1651), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1651), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1651), + [anon_sym_LT_EQ] = ACTIONS(1651), + [anon_sym_GT_EQ] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1651), + [anon_sym_SLASH] = ACTIONS(1651), + [anon_sym_PERCENT] = ACTIONS(1651), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1653), + [sym__plus_then_ws] = ACTIONS(1653), + [sym__minus_then_ws] = ACTIONS(1653), + [sym_bang] = ACTIONS(1069), + }, + [376] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1834), + [sym_boolean_literal] = STATE(1834), + [sym__string_literal] = STATE(1834), + [sym_line_string_literal] = STATE(1834), + [sym_multi_line_string_literal] = STATE(1834), + [sym_raw_string_literal] = STATE(1834), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1834), + [sym__unary_expression] = STATE(1834), + [sym_postfix_expression] = STATE(1834), + [sym_constructor_expression] = STATE(1834), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1834), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1834), + [sym_prefix_expression] = STATE(1834), + [sym_as_expression] = STATE(1834), + [sym_selector_expression] = STATE(1834), + [sym__binary_expression] = STATE(1834), + [sym_multiplicative_expression] = STATE(1834), + [sym_additive_expression] = STATE(1834), + [sym_range_expression] = STATE(1834), + [sym_infix_expression] = STATE(1834), + [sym_nil_coalescing_expression] = STATE(1834), + [sym_check_expression] = STATE(1834), + [sym_comparison_expression] = STATE(1834), + [sym_equality_expression] = STATE(1834), + [sym_conjunction_expression] = STATE(1834), + [sym_disjunction_expression] = STATE(1834), + [sym_bitwise_operation] = STATE(1834), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1834), + [sym_await_expression] = STATE(1834), + [sym_ternary_expression] = STATE(1834), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1834), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1834), + [sym_dictionary_literal] = STATE(1834), + [sym__special_literal] = STATE(1834), + [sym__playground_literal] = STATE(1834), + [sym_lambda_literal] = STATE(1834), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1834), + [sym_key_path_expression] = STATE(1834), + [sym_key_path_string_expression] = STATE(1834), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1834), + [sym__comparison_operator] = STATE(1834), + [sym__additive_operator] = STATE(1834), + [sym__multiplicative_operator] = STATE(1834), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1834), + [sym__referenceable_operator] = STATE(1834), + [sym__eq_eq] = STATE(1834), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1655), + [anon_sym_GT_EQ] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1657), + [sym__plus_then_ws] = ACTIONS(1657), + [sym__minus_then_ws] = ACTIONS(1657), + [sym_bang] = ACTIONS(1069), + }, + [377] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1836), + [sym_boolean_literal] = STATE(1836), + [sym__string_literal] = STATE(1836), + [sym_line_string_literal] = STATE(1836), + [sym_multi_line_string_literal] = STATE(1836), + [sym_raw_string_literal] = STATE(1836), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1836), + [sym__unary_expression] = STATE(1836), + [sym_postfix_expression] = STATE(1836), + [sym_constructor_expression] = STATE(1836), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1836), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1836), + [sym_prefix_expression] = STATE(1836), + [sym_as_expression] = STATE(1836), + [sym_selector_expression] = STATE(1836), + [sym__binary_expression] = STATE(1836), + [sym_multiplicative_expression] = STATE(1836), + [sym_additive_expression] = STATE(1836), + [sym_range_expression] = STATE(1836), + [sym_infix_expression] = STATE(1836), + [sym_nil_coalescing_expression] = STATE(1836), + [sym_check_expression] = STATE(1836), + [sym_comparison_expression] = STATE(1836), + [sym_equality_expression] = STATE(1836), + [sym_conjunction_expression] = STATE(1836), + [sym_disjunction_expression] = STATE(1836), + [sym_bitwise_operation] = STATE(1836), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1836), + [sym_await_expression] = STATE(1836), + [sym_ternary_expression] = STATE(1836), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1836), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1836), + [sym_dictionary_literal] = STATE(1836), + [sym__special_literal] = STATE(1836), + [sym__playground_literal] = STATE(1836), + [sym_lambda_literal] = STATE(1836), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1836), + [sym_key_path_expression] = STATE(1836), + [sym_key_path_string_expression] = STATE(1836), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1836), + [sym__comparison_operator] = STATE(1836), + [sym__additive_operator] = STATE(1836), + [sym__multiplicative_operator] = STATE(1836), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1836), + [sym__referenceable_operator] = STATE(1836), + [sym__eq_eq] = STATE(1836), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1659), + [anon_sym_GT] = ACTIONS(1659), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1659), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1659), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1659), + [anon_sym_LT_EQ] = ACTIONS(1659), + [anon_sym_GT_EQ] = ACTIONS(1659), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1659), + [anon_sym_SLASH] = ACTIONS(1659), + [anon_sym_PERCENT] = ACTIONS(1659), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1661), + [sym__plus_then_ws] = ACTIONS(1661), + [sym__minus_then_ws] = ACTIONS(1661), + [sym_bang] = ACTIONS(1069), + }, + [378] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1837), + [sym_boolean_literal] = STATE(1837), + [sym__string_literal] = STATE(1837), + [sym_line_string_literal] = STATE(1837), + [sym_multi_line_string_literal] = STATE(1837), + [sym_raw_string_literal] = STATE(1837), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1837), + [sym__unary_expression] = STATE(1837), + [sym_postfix_expression] = STATE(1837), + [sym_constructor_expression] = STATE(1837), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1837), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1837), + [sym_prefix_expression] = STATE(1837), + [sym_as_expression] = STATE(1837), + [sym_selector_expression] = STATE(1837), + [sym__binary_expression] = STATE(1837), + [sym_multiplicative_expression] = STATE(1837), + [sym_additive_expression] = STATE(1837), + [sym_range_expression] = STATE(1837), + [sym_infix_expression] = STATE(1837), + [sym_nil_coalescing_expression] = STATE(1837), + [sym_check_expression] = STATE(1837), + [sym_comparison_expression] = STATE(1837), + [sym_equality_expression] = STATE(1837), + [sym_conjunction_expression] = STATE(1837), + [sym_disjunction_expression] = STATE(1837), + [sym_bitwise_operation] = STATE(1837), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1837), + [sym_await_expression] = STATE(1837), + [sym_ternary_expression] = STATE(1837), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1837), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1837), + [sym_dictionary_literal] = STATE(1837), + [sym__special_literal] = STATE(1837), + [sym__playground_literal] = STATE(1837), + [sym_lambda_literal] = STATE(1837), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1837), + [sym_key_path_expression] = STATE(1837), + [sym_key_path_string_expression] = STATE(1837), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1837), + [sym__comparison_operator] = STATE(1837), + [sym__additive_operator] = STATE(1837), + [sym__multiplicative_operator] = STATE(1837), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1837), + [sym__referenceable_operator] = STATE(1837), + [sym__eq_eq] = STATE(1837), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1663), + [anon_sym_GT] = ACTIONS(1663), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1663), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1663), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1663), + [anon_sym_LT_EQ] = ACTIONS(1663), + [anon_sym_GT_EQ] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1663), + [anon_sym_PERCENT] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1665), + [sym__plus_then_ws] = ACTIONS(1665), + [sym__minus_then_ws] = ACTIONS(1665), + [sym_bang] = ACTIONS(1069), + }, + [379] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1840), + [sym_boolean_literal] = STATE(1840), + [sym__string_literal] = STATE(1840), + [sym_line_string_literal] = STATE(1840), + [sym_multi_line_string_literal] = STATE(1840), + [sym_raw_string_literal] = STATE(1840), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1840), + [sym__unary_expression] = STATE(1840), + [sym_postfix_expression] = STATE(1840), + [sym_constructor_expression] = STATE(1840), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1840), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1840), + [sym_prefix_expression] = STATE(1840), + [sym_as_expression] = STATE(1840), + [sym_selector_expression] = STATE(1840), + [sym__binary_expression] = STATE(1840), + [sym_multiplicative_expression] = STATE(1840), + [sym_additive_expression] = STATE(1840), + [sym_range_expression] = STATE(1840), + [sym_infix_expression] = STATE(1840), + [sym_nil_coalescing_expression] = STATE(1840), + [sym_check_expression] = STATE(1840), + [sym_comparison_expression] = STATE(1840), + [sym_equality_expression] = STATE(1840), + [sym_conjunction_expression] = STATE(1840), + [sym_disjunction_expression] = STATE(1840), + [sym_bitwise_operation] = STATE(1840), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1840), + [sym_await_expression] = STATE(1840), + [sym_ternary_expression] = STATE(1840), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1840), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1840), + [sym_dictionary_literal] = STATE(1840), + [sym__special_literal] = STATE(1840), + [sym__playground_literal] = STATE(1840), + [sym_lambda_literal] = STATE(1840), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1840), + [sym_key_path_expression] = STATE(1840), + [sym_key_path_string_expression] = STATE(1840), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1840), + [sym__additive_operator] = STATE(1840), + [sym__multiplicative_operator] = STATE(1840), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1840), + [sym__referenceable_operator] = STATE(1840), + [sym__eq_eq] = STATE(1840), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1667), + [anon_sym_GT] = ACTIONS(1667), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1667), + [anon_sym_LT_EQ] = ACTIONS(1667), + [anon_sym_GT_EQ] = ACTIONS(1667), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_SLASH] = ACTIONS(1667), + [anon_sym_PERCENT] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1669), + [sym__plus_then_ws] = ACTIONS(1669), + [sym__minus_then_ws] = ACTIONS(1669), + [sym_bang] = ACTIONS(1069), + }, + [380] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1841), + [sym_boolean_literal] = STATE(1841), + [sym__string_literal] = STATE(1841), + [sym_line_string_literal] = STATE(1841), + [sym_multi_line_string_literal] = STATE(1841), + [sym_raw_string_literal] = STATE(1841), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1841), + [sym__unary_expression] = STATE(1841), + [sym_postfix_expression] = STATE(1841), + [sym_constructor_expression] = STATE(1841), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1841), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1841), + [sym_prefix_expression] = STATE(1841), + [sym_as_expression] = STATE(1841), + [sym_selector_expression] = STATE(1841), + [sym__binary_expression] = STATE(1841), + [sym_multiplicative_expression] = STATE(1841), + [sym_additive_expression] = STATE(1841), + [sym_range_expression] = STATE(1841), + [sym_infix_expression] = STATE(1841), + [sym_nil_coalescing_expression] = STATE(1841), + [sym_check_expression] = STATE(1841), + [sym_comparison_expression] = STATE(1841), + [sym_equality_expression] = STATE(1841), + [sym_conjunction_expression] = STATE(1841), + [sym_disjunction_expression] = STATE(1841), + [sym_bitwise_operation] = STATE(1841), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1841), + [sym_await_expression] = STATE(1841), + [sym_ternary_expression] = STATE(1841), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1841), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1841), + [sym_dictionary_literal] = STATE(1841), + [sym__special_literal] = STATE(1841), + [sym__playground_literal] = STATE(1841), + [sym_lambda_literal] = STATE(1841), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1841), + [sym_key_path_expression] = STATE(1841), + [sym_key_path_string_expression] = STATE(1841), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1841), + [sym__comparison_operator] = STATE(1841), + [sym__additive_operator] = STATE(1841), + [sym__multiplicative_operator] = STATE(1841), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1841), + [sym__referenceable_operator] = STATE(1841), + [sym__eq_eq] = STATE(1841), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1671), + [anon_sym_GT] = ACTIONS(1671), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1671), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1671), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1671), + [anon_sym_LT_EQ] = ACTIONS(1671), + [anon_sym_GT_EQ] = ACTIONS(1671), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1671), + [anon_sym_SLASH] = ACTIONS(1671), + [anon_sym_PERCENT] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1673), + [sym__plus_then_ws] = ACTIONS(1673), + [sym__minus_then_ws] = ACTIONS(1673), + [sym_bang] = ACTIONS(1069), + }, + [381] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2222), + [sym_boolean_literal] = STATE(2222), + [sym__string_literal] = STATE(2222), + [sym_line_string_literal] = STATE(2222), + [sym_multi_line_string_literal] = STATE(2222), + [sym_raw_string_literal] = STATE(2222), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2222), + [sym__unary_expression] = STATE(2222), + [sym_postfix_expression] = STATE(2222), + [sym_constructor_expression] = STATE(2222), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2222), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2222), + [sym_prefix_expression] = STATE(2222), + [sym_as_expression] = STATE(2222), + [sym_selector_expression] = STATE(2222), + [sym__binary_expression] = STATE(2222), + [sym_multiplicative_expression] = STATE(2222), + [sym_additive_expression] = STATE(2222), + [sym_range_expression] = STATE(2222), + [sym_infix_expression] = STATE(2222), + [sym_nil_coalescing_expression] = STATE(2222), + [sym_check_expression] = STATE(2222), + [sym_comparison_expression] = STATE(2222), + [sym_equality_expression] = STATE(2222), + [sym_conjunction_expression] = STATE(2222), + [sym_disjunction_expression] = STATE(2222), + [sym_bitwise_operation] = STATE(2222), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2222), + [sym_await_expression] = STATE(2222), + [sym_ternary_expression] = STATE(2222), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2222), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2222), + [sym_dictionary_literal] = STATE(2222), + [sym__special_literal] = STATE(2222), + [sym__playground_literal] = STATE(2222), + [sym_lambda_literal] = STATE(2222), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2222), + [sym_key_path_expression] = STATE(2222), + [sym_key_path_string_expression] = STATE(2222), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2222), + [sym__comparison_operator] = STATE(2222), + [sym__additive_operator] = STATE(2222), + [sym__multiplicative_operator] = STATE(2222), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2222), + [sym__referenceable_operator] = STATE(2222), + [sym__eq_eq] = STATE(2222), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1675), + [anon_sym_GT] = ACTIONS(1675), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1675), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1675), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1675), + [anon_sym_LT_EQ] = ACTIONS(1675), + [anon_sym_GT_EQ] = ACTIONS(1675), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_SLASH] = ACTIONS(1675), + [anon_sym_PERCENT] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1677), + [sym__plus_then_ws] = ACTIONS(1677), + [sym__minus_then_ws] = ACTIONS(1677), + [sym_bang] = ACTIONS(833), + }, + [382] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1830), + [sym_boolean_literal] = STATE(1830), + [sym__string_literal] = STATE(1830), + [sym_line_string_literal] = STATE(1830), + [sym_multi_line_string_literal] = STATE(1830), + [sym_raw_string_literal] = STATE(1830), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1830), + [sym__unary_expression] = STATE(1830), + [sym_postfix_expression] = STATE(1830), + [sym_constructor_expression] = STATE(1830), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1830), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1830), + [sym_prefix_expression] = STATE(1830), + [sym_as_expression] = STATE(1830), + [sym_selector_expression] = STATE(1830), + [sym__binary_expression] = STATE(1830), + [sym_multiplicative_expression] = STATE(1830), + [sym_additive_expression] = STATE(1830), + [sym_range_expression] = STATE(1830), + [sym_infix_expression] = STATE(1830), + [sym_nil_coalescing_expression] = STATE(1830), + [sym_check_expression] = STATE(1830), + [sym_comparison_expression] = STATE(1830), + [sym_equality_expression] = STATE(1830), + [sym_conjunction_expression] = STATE(1830), + [sym_disjunction_expression] = STATE(1830), + [sym_bitwise_operation] = STATE(1830), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1830), + [sym_await_expression] = STATE(1830), + [sym_ternary_expression] = STATE(1830), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1830), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1830), + [sym_dictionary_literal] = STATE(1830), + [sym__special_literal] = STATE(1830), + [sym__playground_literal] = STATE(1830), + [sym_lambda_literal] = STATE(1830), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1830), + [sym_key_path_expression] = STATE(1830), + [sym_key_path_string_expression] = STATE(1830), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1830), + [sym__comparison_operator] = STATE(1830), + [sym__additive_operator] = STATE(1830), + [sym__multiplicative_operator] = STATE(1830), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1830), + [sym__referenceable_operator] = STATE(1830), + [sym__eq_eq] = STATE(1830), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1679), + [anon_sym_GT] = ACTIONS(1679), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1679), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1679), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1679), + [anon_sym_LT_EQ] = ACTIONS(1679), + [anon_sym_GT_EQ] = ACTIONS(1679), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_SLASH] = ACTIONS(1679), + [anon_sym_PERCENT] = ACTIONS(1679), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1681), + [sym__plus_then_ws] = ACTIONS(1681), + [sym__minus_then_ws] = ACTIONS(1681), + [sym_bang] = ACTIONS(1069), + }, + [383] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2182), + [sym_boolean_literal] = STATE(2182), + [sym__string_literal] = STATE(2182), + [sym_line_string_literal] = STATE(2182), + [sym_multi_line_string_literal] = STATE(2182), + [sym_raw_string_literal] = STATE(2182), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2182), + [sym__unary_expression] = STATE(2182), + [sym_postfix_expression] = STATE(2182), + [sym_constructor_expression] = STATE(2182), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2182), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2182), + [sym_prefix_expression] = STATE(2182), + [sym_as_expression] = STATE(2182), + [sym_selector_expression] = STATE(2182), + [sym__binary_expression] = STATE(2182), + [sym_multiplicative_expression] = STATE(2182), + [sym_additive_expression] = STATE(2182), + [sym_range_expression] = STATE(2182), + [sym_infix_expression] = STATE(2182), + [sym_nil_coalescing_expression] = STATE(2182), + [sym_check_expression] = STATE(2182), + [sym_comparison_expression] = STATE(2182), + [sym_equality_expression] = STATE(2182), + [sym_conjunction_expression] = STATE(2182), + [sym_disjunction_expression] = STATE(2182), + [sym_bitwise_operation] = STATE(2182), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2182), + [sym_await_expression] = STATE(2182), + [sym_ternary_expression] = STATE(2182), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2182), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2182), + [sym_dictionary_literal] = STATE(2182), + [sym__special_literal] = STATE(2182), + [sym__playground_literal] = STATE(2182), + [sym_lambda_literal] = STATE(2182), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2182), + [sym_key_path_expression] = STATE(2182), + [sym_key_path_string_expression] = STATE(2182), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2182), + [sym__comparison_operator] = STATE(2182), + [sym__additive_operator] = STATE(2182), + [sym__multiplicative_operator] = STATE(2182), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2182), + [sym__referenceable_operator] = STATE(2182), + [sym__eq_eq] = STATE(2182), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1683), + [anon_sym_GT] = ACTIONS(1683), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1683), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1683), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1683), + [anon_sym_LT_EQ] = ACTIONS(1683), + [anon_sym_GT_EQ] = ACTIONS(1683), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1683), + [anon_sym_PERCENT] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1685), + [sym__plus_then_ws] = ACTIONS(1685), + [sym__minus_then_ws] = ACTIONS(1685), + [sym_bang] = ACTIONS(833), + }, + [384] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1829), + [sym_boolean_literal] = STATE(1829), + [sym__string_literal] = STATE(1829), + [sym_line_string_literal] = STATE(1829), + [sym_multi_line_string_literal] = STATE(1829), + [sym_raw_string_literal] = STATE(1829), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1829), + [sym__unary_expression] = STATE(1829), + [sym_postfix_expression] = STATE(1829), + [sym_constructor_expression] = STATE(1829), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1829), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1829), + [sym_prefix_expression] = STATE(1829), + [sym_as_expression] = STATE(1829), + [sym_selector_expression] = STATE(1829), + [sym__binary_expression] = STATE(1829), + [sym_multiplicative_expression] = STATE(1829), + [sym_additive_expression] = STATE(1829), + [sym_range_expression] = STATE(1829), + [sym_infix_expression] = STATE(1829), + [sym_nil_coalescing_expression] = STATE(1829), + [sym_check_expression] = STATE(1829), + [sym_comparison_expression] = STATE(1829), + [sym_equality_expression] = STATE(1829), + [sym_conjunction_expression] = STATE(1829), + [sym_disjunction_expression] = STATE(1829), + [sym_bitwise_operation] = STATE(1829), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1829), + [sym_await_expression] = STATE(1829), + [sym_ternary_expression] = STATE(1829), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1829), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1829), + [sym_dictionary_literal] = STATE(1829), + [sym__special_literal] = STATE(1829), + [sym__playground_literal] = STATE(1829), + [sym_lambda_literal] = STATE(1829), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1829), + [sym_key_path_expression] = STATE(1829), + [sym_key_path_string_expression] = STATE(1829), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1829), + [sym__comparison_operator] = STATE(1829), + [sym__additive_operator] = STATE(1829), + [sym__multiplicative_operator] = STATE(1829), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1829), + [sym__referenceable_operator] = STATE(1829), + [sym__eq_eq] = STATE(1829), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1687), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1687), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1687), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT_EQ] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1687), + [anon_sym_PERCENT] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1689), + [sym__plus_then_ws] = ACTIONS(1689), + [sym__minus_then_ws] = ACTIONS(1689), + [sym_bang] = ACTIONS(1069), + }, + [385] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1842), + [sym_boolean_literal] = STATE(1842), + [sym__string_literal] = STATE(1842), + [sym_line_string_literal] = STATE(1842), + [sym_multi_line_string_literal] = STATE(1842), + [sym_raw_string_literal] = STATE(1842), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1842), + [sym__unary_expression] = STATE(1842), + [sym_postfix_expression] = STATE(1842), + [sym_constructor_expression] = STATE(1842), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1842), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1842), + [sym_prefix_expression] = STATE(1842), + [sym_as_expression] = STATE(1842), + [sym_selector_expression] = STATE(1842), + [sym__binary_expression] = STATE(1842), + [sym_multiplicative_expression] = STATE(1842), + [sym_additive_expression] = STATE(1842), + [sym_range_expression] = STATE(1842), + [sym_infix_expression] = STATE(1842), + [sym_nil_coalescing_expression] = STATE(1842), + [sym_check_expression] = STATE(1842), + [sym_comparison_expression] = STATE(1842), + [sym_equality_expression] = STATE(1842), + [sym_conjunction_expression] = STATE(1842), + [sym_disjunction_expression] = STATE(1842), + [sym_bitwise_operation] = STATE(1842), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1842), + [sym_await_expression] = STATE(1842), + [sym_ternary_expression] = STATE(1842), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1842), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1842), + [sym_dictionary_literal] = STATE(1842), + [sym__special_literal] = STATE(1842), + [sym__playground_literal] = STATE(1842), + [sym_lambda_literal] = STATE(1842), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1842), + [sym_key_path_expression] = STATE(1842), + [sym_key_path_string_expression] = STATE(1842), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1842), + [sym__comparison_operator] = STATE(1842), + [sym__additive_operator] = STATE(1842), + [sym__multiplicative_operator] = STATE(1842), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1842), + [sym__referenceable_operator] = STATE(1842), + [sym__eq_eq] = STATE(1842), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1691), + [anon_sym_GT] = ACTIONS(1691), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1691), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1691), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1691), + [anon_sym_LT_EQ] = ACTIONS(1691), + [anon_sym_GT_EQ] = ACTIONS(1691), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1691), + [anon_sym_PERCENT] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1693), + [sym__plus_then_ws] = ACTIONS(1693), + [sym__minus_then_ws] = ACTIONS(1693), + [sym_bang] = ACTIONS(1069), + }, + [386] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1817), + [sym_boolean_literal] = STATE(1817), + [sym__string_literal] = STATE(1817), + [sym_line_string_literal] = STATE(1817), + [sym_multi_line_string_literal] = STATE(1817), + [sym_raw_string_literal] = STATE(1817), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1817), + [sym__unary_expression] = STATE(1817), + [sym_postfix_expression] = STATE(1817), + [sym_constructor_expression] = STATE(1817), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1817), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1817), + [sym_prefix_expression] = STATE(1817), + [sym_as_expression] = STATE(1817), + [sym_selector_expression] = STATE(1817), + [sym__binary_expression] = STATE(1817), + [sym_multiplicative_expression] = STATE(1817), + [sym_additive_expression] = STATE(1817), + [sym_range_expression] = STATE(1817), + [sym_infix_expression] = STATE(1817), + [sym_nil_coalescing_expression] = STATE(1817), + [sym_check_expression] = STATE(1817), + [sym_comparison_expression] = STATE(1817), + [sym_equality_expression] = STATE(1817), + [sym_conjunction_expression] = STATE(1817), + [sym_disjunction_expression] = STATE(1817), + [sym_bitwise_operation] = STATE(1817), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1817), + [sym_await_expression] = STATE(1817), + [sym_ternary_expression] = STATE(1817), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1817), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1817), + [sym_dictionary_literal] = STATE(1817), + [sym__special_literal] = STATE(1817), + [sym__playground_literal] = STATE(1817), + [sym_lambda_literal] = STATE(1817), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1817), + [sym_key_path_expression] = STATE(1817), + [sym_key_path_string_expression] = STATE(1817), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1817), + [sym__comparison_operator] = STATE(1817), + [sym__additive_operator] = STATE(1817), + [sym__multiplicative_operator] = STATE(1817), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1817), + [sym__referenceable_operator] = STATE(1817), + [sym__eq_eq] = STATE(1817), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1695), + [anon_sym_GT] = ACTIONS(1695), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1695), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1695), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1695), + [anon_sym_LT_EQ] = ACTIONS(1695), + [anon_sym_GT_EQ] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1695), + [anon_sym_SLASH] = ACTIONS(1695), + [anon_sym_PERCENT] = ACTIONS(1695), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1697), + [sym__plus_then_ws] = ACTIONS(1697), + [sym__minus_then_ws] = ACTIONS(1697), + [sym_bang] = ACTIONS(833), + }, + [387] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1843), + [sym_boolean_literal] = STATE(1843), + [sym__string_literal] = STATE(1843), + [sym_line_string_literal] = STATE(1843), + [sym_multi_line_string_literal] = STATE(1843), + [sym_raw_string_literal] = STATE(1843), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1843), + [sym__unary_expression] = STATE(1843), + [sym_postfix_expression] = STATE(1843), + [sym_constructor_expression] = STATE(1843), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1843), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1843), + [sym_prefix_expression] = STATE(1843), + [sym_as_expression] = STATE(1843), + [sym_selector_expression] = STATE(1843), + [sym__binary_expression] = STATE(1843), + [sym_multiplicative_expression] = STATE(1843), + [sym_additive_expression] = STATE(1843), + [sym_range_expression] = STATE(1843), + [sym_infix_expression] = STATE(1843), + [sym_nil_coalescing_expression] = STATE(1843), + [sym_check_expression] = STATE(1843), + [sym_comparison_expression] = STATE(1843), + [sym_equality_expression] = STATE(1843), + [sym_conjunction_expression] = STATE(1843), + [sym_disjunction_expression] = STATE(1843), + [sym_bitwise_operation] = STATE(1843), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1843), + [sym_await_expression] = STATE(1843), + [sym_ternary_expression] = STATE(1843), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1843), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1843), + [sym_dictionary_literal] = STATE(1843), + [sym__special_literal] = STATE(1843), + [sym__playground_literal] = STATE(1843), + [sym_lambda_literal] = STATE(1843), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1843), + [sym_key_path_expression] = STATE(1843), + [sym_key_path_string_expression] = STATE(1843), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1843), + [sym__comparison_operator] = STATE(1843), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1843), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1843), + [sym__referenceable_operator] = STATE(1843), + [sym__eq_eq] = STATE(1843), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1699), + [anon_sym_GT] = ACTIONS(1699), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1699), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1699), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1699), + [anon_sym_LT_EQ] = ACTIONS(1699), + [anon_sym_GT_EQ] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1699), + [anon_sym_SLASH] = ACTIONS(1699), + [anon_sym_PERCENT] = ACTIONS(1699), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1701), + [sym__plus_then_ws] = ACTIONS(1701), + [sym__minus_then_ws] = ACTIONS(1701), + [sym_bang] = ACTIONS(1069), + }, + [388] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1844), + [sym_boolean_literal] = STATE(1844), + [sym__string_literal] = STATE(1844), + [sym_line_string_literal] = STATE(1844), + [sym_multi_line_string_literal] = STATE(1844), + [sym_raw_string_literal] = STATE(1844), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1844), + [sym__unary_expression] = STATE(1844), + [sym_postfix_expression] = STATE(1844), + [sym_constructor_expression] = STATE(1844), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1844), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1844), + [sym_prefix_expression] = STATE(1844), + [sym_as_expression] = STATE(1844), + [sym_selector_expression] = STATE(1844), + [sym__binary_expression] = STATE(1844), + [sym_multiplicative_expression] = STATE(1844), + [sym_additive_expression] = STATE(1844), + [sym_range_expression] = STATE(1844), + [sym_infix_expression] = STATE(1844), + [sym_nil_coalescing_expression] = STATE(1844), + [sym_check_expression] = STATE(1844), + [sym_comparison_expression] = STATE(1844), + [sym_equality_expression] = STATE(1844), + [sym_conjunction_expression] = STATE(1844), + [sym_disjunction_expression] = STATE(1844), + [sym_bitwise_operation] = STATE(1844), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1844), + [sym_await_expression] = STATE(1844), + [sym_ternary_expression] = STATE(1844), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1844), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1844), + [sym_dictionary_literal] = STATE(1844), + [sym__special_literal] = STATE(1844), + [sym__playground_literal] = STATE(1844), + [sym_lambda_literal] = STATE(1844), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1844), + [sym_key_path_expression] = STATE(1844), + [sym_key_path_string_expression] = STATE(1844), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1844), + [sym__comparison_operator] = STATE(1844), + [sym__additive_operator] = STATE(1844), + [sym__multiplicative_operator] = STATE(1844), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1844), + [sym__referenceable_operator] = STATE(1844), + [sym__eq_eq] = STATE(1844), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1703), + [anon_sym_GT] = ACTIONS(1703), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1703), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1703), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1703), + [anon_sym_LT_EQ] = ACTIONS(1703), + [anon_sym_GT_EQ] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1703), + [anon_sym_SLASH] = ACTIONS(1703), + [anon_sym_PERCENT] = ACTIONS(1703), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1705), + [sym__plus_then_ws] = ACTIONS(1705), + [sym__minus_then_ws] = ACTIONS(1705), + [sym_bang] = ACTIONS(1069), + }, + [389] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1678), + [sym_boolean_literal] = STATE(1678), + [sym__string_literal] = STATE(1678), + [sym_line_string_literal] = STATE(1678), + [sym_multi_line_string_literal] = STATE(1678), + [sym_raw_string_literal] = STATE(1678), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1678), + [sym__unary_expression] = STATE(1678), + [sym_postfix_expression] = STATE(1678), + [sym_constructor_expression] = STATE(1678), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1678), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1678), + [sym_prefix_expression] = STATE(1678), + [sym_as_expression] = STATE(1678), + [sym_selector_expression] = STATE(1678), + [sym__binary_expression] = STATE(1678), + [sym_multiplicative_expression] = STATE(1678), + [sym_additive_expression] = STATE(1678), + [sym_range_expression] = STATE(1678), + [sym_infix_expression] = STATE(1678), + [sym_nil_coalescing_expression] = STATE(1678), + [sym_check_expression] = STATE(1678), + [sym_comparison_expression] = STATE(1678), + [sym_equality_expression] = STATE(1678), + [sym_conjunction_expression] = STATE(1678), + [sym_disjunction_expression] = STATE(1678), + [sym_bitwise_operation] = STATE(1678), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1678), + [sym_await_expression] = STATE(1678), + [sym_ternary_expression] = STATE(1678), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1678), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1678), + [sym_dictionary_literal] = STATE(1678), + [sym__special_literal] = STATE(1678), + [sym__playground_literal] = STATE(1678), + [sym_lambda_literal] = STATE(1678), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1678), + [sym_key_path_expression] = STATE(1678), + [sym_key_path_string_expression] = STATE(1678), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1678), + [sym__comparison_operator] = STATE(1678), + [sym__additive_operator] = STATE(1678), + [sym__multiplicative_operator] = STATE(1678), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1678), + [sym__referenceable_operator] = STATE(1678), + [sym__eq_eq] = STATE(1678), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_GT] = ACTIONS(1707), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1707), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1707), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1707), + [anon_sym_SLASH] = ACTIONS(1707), + [anon_sym_PERCENT] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1709), + [sym__plus_then_ws] = ACTIONS(1709), + [sym__minus_then_ws] = ACTIONS(1709), + [sym_bang] = ACTIONS(833), + }, + [390] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1821), + [sym_boolean_literal] = STATE(1821), + [sym__string_literal] = STATE(1821), + [sym_line_string_literal] = STATE(1821), + [sym_multi_line_string_literal] = STATE(1821), + [sym_raw_string_literal] = STATE(1821), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1821), + [sym__unary_expression] = STATE(1821), + [sym_postfix_expression] = STATE(1821), + [sym_constructor_expression] = STATE(1821), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1821), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1821), + [sym_prefix_expression] = STATE(1821), + [sym_as_expression] = STATE(1821), + [sym_selector_expression] = STATE(1821), + [sym__binary_expression] = STATE(1821), + [sym_multiplicative_expression] = STATE(1821), + [sym_additive_expression] = STATE(1821), + [sym_range_expression] = STATE(1821), + [sym_infix_expression] = STATE(1821), + [sym_nil_coalescing_expression] = STATE(1821), + [sym_check_expression] = STATE(1821), + [sym_comparison_expression] = STATE(1821), + [sym_equality_expression] = STATE(1821), + [sym_conjunction_expression] = STATE(1821), + [sym_disjunction_expression] = STATE(1821), + [sym_bitwise_operation] = STATE(1821), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1821), + [sym_await_expression] = STATE(1821), + [sym_ternary_expression] = STATE(1821), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1821), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1821), + [sym_dictionary_literal] = STATE(1821), + [sym__special_literal] = STATE(1821), + [sym__playground_literal] = STATE(1821), + [sym_lambda_literal] = STATE(1821), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1821), + [sym_key_path_expression] = STATE(1821), + [sym_key_path_string_expression] = STATE(1821), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1821), + [sym__comparison_operator] = STATE(1821), + [sym__additive_operator] = STATE(1821), + [sym__multiplicative_operator] = STATE(1821), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1821), + [sym__referenceable_operator] = STATE(1821), + [sym__eq_eq] = STATE(1821), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_GT] = ACTIONS(1711), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1711), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1711), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1711), + [anon_sym_LT_EQ] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_PERCENT] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1713), + [sym__plus_then_ws] = ACTIONS(1713), + [sym__minus_then_ws] = ACTIONS(1713), + [sym_bang] = ACTIONS(1069), + }, + [391] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1519), + [sym_boolean_literal] = STATE(1519), + [sym__string_literal] = STATE(1519), + [sym_line_string_literal] = STATE(1519), + [sym_multi_line_string_literal] = STATE(1519), + [sym_raw_string_literal] = STATE(1519), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1519), + [sym__unary_expression] = STATE(1519), + [sym_postfix_expression] = STATE(1519), + [sym_constructor_expression] = STATE(1519), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1519), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1519), + [sym_prefix_expression] = STATE(1519), + [sym_as_expression] = STATE(1519), + [sym_selector_expression] = STATE(1519), + [sym__binary_expression] = STATE(1519), + [sym_multiplicative_expression] = STATE(1519), + [sym_additive_expression] = STATE(1519), + [sym_range_expression] = STATE(1519), + [sym_infix_expression] = STATE(1519), + [sym_nil_coalescing_expression] = STATE(1519), + [sym_check_expression] = STATE(1519), + [sym_comparison_expression] = STATE(1519), + [sym_equality_expression] = STATE(1519), + [sym_conjunction_expression] = STATE(1519), + [sym_disjunction_expression] = STATE(1519), + [sym_bitwise_operation] = STATE(1519), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1519), + [sym_await_expression] = STATE(1519), + [sym_ternary_expression] = STATE(1519), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1519), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1519), + [sym_dictionary_literal] = STATE(1519), + [sym__special_literal] = STATE(1519), + [sym__playground_literal] = STATE(1519), + [sym_lambda_literal] = STATE(1519), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1519), + [sym_key_path_expression] = STATE(1519), + [sym_key_path_string_expression] = STATE(1519), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1519), + [sym__comparison_operator] = STATE(1519), + [sym__additive_operator] = STATE(1519), + [sym__multiplicative_operator] = STATE(1519), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1519), + [sym__referenceable_operator] = STATE(1519), + [sym__eq_eq] = STATE(1519), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1715), + [anon_sym_GT] = ACTIONS(1715), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1715), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1715), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1715), + [anon_sym_LT_EQ] = ACTIONS(1715), + [anon_sym_GT_EQ] = ACTIONS(1715), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_SLASH] = ACTIONS(1715), + [anon_sym_PERCENT] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1717), + [sym__plus_then_ws] = ACTIONS(1717), + [sym__minus_then_ws] = ACTIONS(1717), + [sym_bang] = ACTIONS(1069), + }, + [392] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1845), + [sym_boolean_literal] = STATE(1845), + [sym__string_literal] = STATE(1845), + [sym_line_string_literal] = STATE(1845), + [sym_multi_line_string_literal] = STATE(1845), + [sym_raw_string_literal] = STATE(1845), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1845), + [sym__unary_expression] = STATE(1845), + [sym_postfix_expression] = STATE(1845), + [sym_constructor_expression] = STATE(1845), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1845), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1845), + [sym_prefix_expression] = STATE(1845), + [sym_as_expression] = STATE(1845), + [sym_selector_expression] = STATE(1845), + [sym__binary_expression] = STATE(1845), + [sym_multiplicative_expression] = STATE(1845), + [sym_additive_expression] = STATE(1845), + [sym_range_expression] = STATE(1845), + [sym_infix_expression] = STATE(1845), + [sym_nil_coalescing_expression] = STATE(1845), + [sym_check_expression] = STATE(1845), + [sym_comparison_expression] = STATE(1845), + [sym_equality_expression] = STATE(1845), + [sym_conjunction_expression] = STATE(1845), + [sym_disjunction_expression] = STATE(1845), + [sym_bitwise_operation] = STATE(1845), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1845), + [sym_await_expression] = STATE(1845), + [sym_ternary_expression] = STATE(1845), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1845), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1845), + [sym_dictionary_literal] = STATE(1845), + [sym__special_literal] = STATE(1845), + [sym__playground_literal] = STATE(1845), + [sym_lambda_literal] = STATE(1845), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1845), + [sym_key_path_expression] = STATE(1845), + [sym_key_path_string_expression] = STATE(1845), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1845), + [sym__comparison_operator] = STATE(1845), + [sym__additive_operator] = STATE(1845), + [sym__multiplicative_operator] = STATE(1845), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1845), + [sym__referenceable_operator] = STATE(1845), + [sym__eq_eq] = STATE(1845), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1719), + [anon_sym_GT] = ACTIONS(1719), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1719), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1719), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1719), + [anon_sym_LT_EQ] = ACTIONS(1719), + [anon_sym_GT_EQ] = ACTIONS(1719), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1719), + [anon_sym_SLASH] = ACTIONS(1719), + [anon_sym_PERCENT] = ACTIONS(1719), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1721), + [sym__plus_then_ws] = ACTIONS(1721), + [sym__minus_then_ws] = ACTIONS(1721), + [sym_bang] = ACTIONS(1069), + }, + [393] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1813), + [sym_boolean_literal] = STATE(1813), + [sym__string_literal] = STATE(1813), + [sym_line_string_literal] = STATE(1813), + [sym_multi_line_string_literal] = STATE(1813), + [sym_raw_string_literal] = STATE(1813), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1813), + [sym__unary_expression] = STATE(1813), + [sym_postfix_expression] = STATE(1813), + [sym_constructor_expression] = STATE(1813), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1813), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1813), + [sym_prefix_expression] = STATE(1813), + [sym_as_expression] = STATE(1813), + [sym_selector_expression] = STATE(1813), + [sym__binary_expression] = STATE(1813), + [sym_multiplicative_expression] = STATE(1813), + [sym_additive_expression] = STATE(1813), + [sym_range_expression] = STATE(1813), + [sym_infix_expression] = STATE(1813), + [sym_nil_coalescing_expression] = STATE(1813), + [sym_check_expression] = STATE(1813), + [sym_comparison_expression] = STATE(1813), + [sym_equality_expression] = STATE(1813), + [sym_conjunction_expression] = STATE(1813), + [sym_disjunction_expression] = STATE(1813), + [sym_bitwise_operation] = STATE(1813), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1813), + [sym_await_expression] = STATE(1813), + [sym_ternary_expression] = STATE(1813), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1813), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1813), + [sym_dictionary_literal] = STATE(1813), + [sym__special_literal] = STATE(1813), + [sym__playground_literal] = STATE(1813), + [sym_lambda_literal] = STATE(1813), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1813), + [sym_key_path_expression] = STATE(1813), + [sym_key_path_string_expression] = STATE(1813), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1813), + [sym__comparison_operator] = STATE(1813), + [sym__additive_operator] = STATE(1813), + [sym__multiplicative_operator] = STATE(1813), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1813), + [sym__referenceable_operator] = STATE(1813), + [sym__eq_eq] = STATE(1813), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1723), + [anon_sym_GT] = ACTIONS(1723), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1723), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1723), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1723), + [anon_sym_LT_EQ] = ACTIONS(1723), + [anon_sym_GT_EQ] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_PERCENT] = ACTIONS(1723), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1725), + [sym__plus_then_ws] = ACTIONS(1725), + [sym__minus_then_ws] = ACTIONS(1725), + [sym_bang] = ACTIONS(1069), + }, + [394] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1811), + [sym_boolean_literal] = STATE(1811), + [sym__string_literal] = STATE(1811), + [sym_line_string_literal] = STATE(1811), + [sym_multi_line_string_literal] = STATE(1811), + [sym_raw_string_literal] = STATE(1811), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1811), + [sym__unary_expression] = STATE(1811), + [sym_postfix_expression] = STATE(1811), + [sym_constructor_expression] = STATE(1811), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1811), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1811), + [sym_prefix_expression] = STATE(1811), + [sym_as_expression] = STATE(1811), + [sym_selector_expression] = STATE(1811), + [sym__binary_expression] = STATE(1811), + [sym_multiplicative_expression] = STATE(1811), + [sym_additive_expression] = STATE(1811), + [sym_range_expression] = STATE(1811), + [sym_infix_expression] = STATE(1811), + [sym_nil_coalescing_expression] = STATE(1811), + [sym_check_expression] = STATE(1811), + [sym_comparison_expression] = STATE(1811), + [sym_equality_expression] = STATE(1811), + [sym_conjunction_expression] = STATE(1811), + [sym_disjunction_expression] = STATE(1811), + [sym_bitwise_operation] = STATE(1811), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1811), + [sym_await_expression] = STATE(1811), + [sym_ternary_expression] = STATE(1811), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1811), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1811), + [sym_dictionary_literal] = STATE(1811), + [sym__special_literal] = STATE(1811), + [sym__playground_literal] = STATE(1811), + [sym_lambda_literal] = STATE(1811), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1811), + [sym_key_path_expression] = STATE(1811), + [sym_key_path_string_expression] = STATE(1811), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1811), + [sym__comparison_operator] = STATE(1811), + [sym__additive_operator] = STATE(1811), + [sym__multiplicative_operator] = STATE(1811), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1811), + [sym__referenceable_operator] = STATE(1811), + [sym__eq_eq] = STATE(1811), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_GT] = ACTIONS(1727), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1727), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1727), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1727), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_PERCENT] = ACTIONS(1727), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1729), + [sym__plus_then_ws] = ACTIONS(1729), + [sym__minus_then_ws] = ACTIONS(1729), + [sym_bang] = ACTIONS(1069), + }, + [395] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1846), + [sym_boolean_literal] = STATE(1846), + [sym__string_literal] = STATE(1846), + [sym_line_string_literal] = STATE(1846), + [sym_multi_line_string_literal] = STATE(1846), + [sym_raw_string_literal] = STATE(1846), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1846), + [sym__unary_expression] = STATE(1846), + [sym_postfix_expression] = STATE(1846), + [sym_constructor_expression] = STATE(1846), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1846), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1846), + [sym_prefix_expression] = STATE(1846), + [sym_as_expression] = STATE(1846), + [sym_selector_expression] = STATE(1846), + [sym__binary_expression] = STATE(1846), + [sym_multiplicative_expression] = STATE(1846), + [sym_additive_expression] = STATE(1846), + [sym_range_expression] = STATE(1846), + [sym_infix_expression] = STATE(1846), + [sym_nil_coalescing_expression] = STATE(1846), + [sym_check_expression] = STATE(1846), + [sym_comparison_expression] = STATE(1846), + [sym_equality_expression] = STATE(1846), + [sym_conjunction_expression] = STATE(1846), + [sym_disjunction_expression] = STATE(1846), + [sym_bitwise_operation] = STATE(1846), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1846), + [sym_await_expression] = STATE(1846), + [sym_ternary_expression] = STATE(1846), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1846), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1846), + [sym_dictionary_literal] = STATE(1846), + [sym__special_literal] = STATE(1846), + [sym__playground_literal] = STATE(1846), + [sym_lambda_literal] = STATE(1846), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1846), + [sym_key_path_expression] = STATE(1846), + [sym_key_path_string_expression] = STATE(1846), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1846), + [sym__comparison_operator] = STATE(1846), + [sym__additive_operator] = STATE(1846), + [sym__multiplicative_operator] = STATE(1846), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1846), + [sym__referenceable_operator] = STATE(1846), + [sym__eq_eq] = STATE(1846), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1731), + [anon_sym_GT] = ACTIONS(1731), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1731), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1731), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1731), + [anon_sym_LT_EQ] = ACTIONS(1731), + [anon_sym_GT_EQ] = ACTIONS(1731), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1731), + [anon_sym_PERCENT] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1733), + [sym__plus_then_ws] = ACTIONS(1733), + [sym__minus_then_ws] = ACTIONS(1733), + [sym_bang] = ACTIONS(1069), + }, + [396] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1558), + [sym_boolean_literal] = STATE(1558), + [sym__string_literal] = STATE(1558), + [sym_line_string_literal] = STATE(1558), + [sym_multi_line_string_literal] = STATE(1558), + [sym_raw_string_literal] = STATE(1558), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1558), + [sym__unary_expression] = STATE(1558), + [sym_postfix_expression] = STATE(1558), + [sym_constructor_expression] = STATE(1558), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1558), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1558), + [sym_prefix_expression] = STATE(1558), + [sym_as_expression] = STATE(1558), + [sym_selector_expression] = STATE(1558), + [sym__binary_expression] = STATE(1558), + [sym_multiplicative_expression] = STATE(1558), + [sym_additive_expression] = STATE(1558), + [sym_range_expression] = STATE(1558), + [sym_infix_expression] = STATE(1558), + [sym_nil_coalescing_expression] = STATE(1558), + [sym_check_expression] = STATE(1558), + [sym_comparison_expression] = STATE(1558), + [sym_equality_expression] = STATE(1558), + [sym_conjunction_expression] = STATE(1558), + [sym_disjunction_expression] = STATE(1558), + [sym_bitwise_operation] = STATE(1558), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1558), + [sym_await_expression] = STATE(1558), + [sym_ternary_expression] = STATE(1558), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1558), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1558), + [sym_dictionary_literal] = STATE(1558), + [sym__special_literal] = STATE(1558), + [sym__playground_literal] = STATE(1558), + [sym_lambda_literal] = STATE(1558), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1558), + [sym_key_path_expression] = STATE(1558), + [sym_key_path_string_expression] = STATE(1558), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1558), + [sym__comparison_operator] = STATE(1558), + [sym__additive_operator] = STATE(1558), + [sym__multiplicative_operator] = STATE(1558), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1558), + [sym__referenceable_operator] = STATE(1558), + [sym__eq_eq] = STATE(1558), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1735), + [anon_sym_GT] = ACTIONS(1735), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1735), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1735), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1735), + [anon_sym_LT_EQ] = ACTIONS(1735), + [anon_sym_GT_EQ] = ACTIONS(1735), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1735), + [anon_sym_SLASH] = ACTIONS(1735), + [anon_sym_PERCENT] = ACTIONS(1735), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1737), + [sym__plus_then_ws] = ACTIONS(1737), + [sym__minus_then_ws] = ACTIONS(1737), + [sym_bang] = ACTIONS(1069), + }, + [397] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1847), + [sym_boolean_literal] = STATE(1847), + [sym__string_literal] = STATE(1847), + [sym_line_string_literal] = STATE(1847), + [sym_multi_line_string_literal] = STATE(1847), + [sym_raw_string_literal] = STATE(1847), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1847), + [sym__unary_expression] = STATE(1847), + [sym_postfix_expression] = STATE(1847), + [sym_constructor_expression] = STATE(1847), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1847), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1847), + [sym_prefix_expression] = STATE(1847), + [sym_as_expression] = STATE(1847), + [sym_selector_expression] = STATE(1847), + [sym__binary_expression] = STATE(1847), + [sym_multiplicative_expression] = STATE(1847), + [sym_additive_expression] = STATE(1847), + [sym_range_expression] = STATE(1847), + [sym_infix_expression] = STATE(1847), + [sym_nil_coalescing_expression] = STATE(1847), + [sym_check_expression] = STATE(1847), + [sym_comparison_expression] = STATE(1847), + [sym_equality_expression] = STATE(1847), + [sym_conjunction_expression] = STATE(1847), + [sym_disjunction_expression] = STATE(1847), + [sym_bitwise_operation] = STATE(1847), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1847), + [sym_await_expression] = STATE(1847), + [sym_ternary_expression] = STATE(1847), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1847), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1847), + [sym_dictionary_literal] = STATE(1847), + [sym__special_literal] = STATE(1847), + [sym__playground_literal] = STATE(1847), + [sym_lambda_literal] = STATE(1847), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1847), + [sym_key_path_expression] = STATE(1847), + [sym_key_path_string_expression] = STATE(1847), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1847), + [sym__comparison_operator] = STATE(1847), + [sym__additive_operator] = STATE(1847), + [sym__multiplicative_operator] = STATE(1847), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1847), + [sym__referenceable_operator] = STATE(1847), + [sym__eq_eq] = STATE(1847), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1739), + [anon_sym_GT] = ACTIONS(1739), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1739), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1739), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1739), + [anon_sym_LT_EQ] = ACTIONS(1739), + [anon_sym_GT_EQ] = ACTIONS(1739), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1739), + [anon_sym_SLASH] = ACTIONS(1739), + [anon_sym_PERCENT] = ACTIONS(1739), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1741), + [sym__plus_then_ws] = ACTIONS(1741), + [sym__minus_then_ws] = ACTIONS(1741), + [sym_bang] = ACTIONS(1069), + }, + [398] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1550), + [sym_boolean_literal] = STATE(1550), + [sym__string_literal] = STATE(1550), + [sym_line_string_literal] = STATE(1550), + [sym_multi_line_string_literal] = STATE(1550), + [sym_raw_string_literal] = STATE(1550), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1550), + [sym__unary_expression] = STATE(1550), + [sym_postfix_expression] = STATE(1550), + [sym_constructor_expression] = STATE(1550), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1550), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1550), + [sym_prefix_expression] = STATE(1550), + [sym_as_expression] = STATE(1550), + [sym_selector_expression] = STATE(1550), + [sym__binary_expression] = STATE(1550), + [sym_multiplicative_expression] = STATE(1550), + [sym_additive_expression] = STATE(1550), + [sym_range_expression] = STATE(1550), + [sym_infix_expression] = STATE(1550), + [sym_nil_coalescing_expression] = STATE(1550), + [sym_check_expression] = STATE(1550), + [sym_comparison_expression] = STATE(1550), + [sym_equality_expression] = STATE(1550), + [sym_conjunction_expression] = STATE(1550), + [sym_disjunction_expression] = STATE(1550), + [sym_bitwise_operation] = STATE(1550), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1550), + [sym_await_expression] = STATE(1550), + [sym_ternary_expression] = STATE(1550), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1550), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1550), + [sym_dictionary_literal] = STATE(1550), + [sym__special_literal] = STATE(1550), + [sym__playground_literal] = STATE(1550), + [sym_lambda_literal] = STATE(1550), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1550), + [sym_key_path_expression] = STATE(1550), + [sym_key_path_string_expression] = STATE(1550), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1550), + [sym__comparison_operator] = STATE(1550), + [sym__additive_operator] = STATE(1550), + [sym__multiplicative_operator] = STATE(1550), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1550), + [sym__referenceable_operator] = STATE(1550), + [sym__eq_eq] = STATE(1550), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1743), + [anon_sym_GT] = ACTIONS(1743), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1743), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1743), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1743), + [anon_sym_LT_EQ] = ACTIONS(1743), + [anon_sym_GT_EQ] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1743), + [anon_sym_SLASH] = ACTIONS(1743), + [anon_sym_PERCENT] = ACTIONS(1743), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1745), + [sym__plus_then_ws] = ACTIONS(1745), + [sym__minus_then_ws] = ACTIONS(1745), + [sym_bang] = ACTIONS(1069), + }, + [399] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1848), + [sym_boolean_literal] = STATE(1848), + [sym__string_literal] = STATE(1848), + [sym_line_string_literal] = STATE(1848), + [sym_multi_line_string_literal] = STATE(1848), + [sym_raw_string_literal] = STATE(1848), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1848), + [sym__unary_expression] = STATE(1848), + [sym_postfix_expression] = STATE(1848), + [sym_constructor_expression] = STATE(1848), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1848), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1848), + [sym_prefix_expression] = STATE(1848), + [sym_as_expression] = STATE(1848), + [sym_selector_expression] = STATE(1848), + [sym__binary_expression] = STATE(1848), + [sym_multiplicative_expression] = STATE(1848), + [sym_additive_expression] = STATE(1848), + [sym_range_expression] = STATE(1848), + [sym_infix_expression] = STATE(1848), + [sym_nil_coalescing_expression] = STATE(1848), + [sym_check_expression] = STATE(1848), + [sym_comparison_expression] = STATE(1848), + [sym_equality_expression] = STATE(1848), + [sym_conjunction_expression] = STATE(1848), + [sym_disjunction_expression] = STATE(1848), + [sym_bitwise_operation] = STATE(1848), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1848), + [sym_await_expression] = STATE(1848), + [sym_ternary_expression] = STATE(1848), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1848), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1848), + [sym_dictionary_literal] = STATE(1848), + [sym__special_literal] = STATE(1848), + [sym__playground_literal] = STATE(1848), + [sym_lambda_literal] = STATE(1848), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1848), + [sym_key_path_expression] = STATE(1848), + [sym_key_path_string_expression] = STATE(1848), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1848), + [sym__comparison_operator] = STATE(1848), + [sym__additive_operator] = STATE(1848), + [sym__multiplicative_operator] = STATE(1848), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1848), + [sym__referenceable_operator] = STATE(1848), + [sym__eq_eq] = STATE(1848), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_GT] = ACTIONS(1747), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1747), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1747), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1747), + [anon_sym_LT_EQ] = ACTIONS(1747), + [anon_sym_GT_EQ] = ACTIONS(1747), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1747), + [anon_sym_SLASH] = ACTIONS(1747), + [anon_sym_PERCENT] = ACTIONS(1747), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1749), + [sym__plus_then_ws] = ACTIONS(1749), + [sym__minus_then_ws] = ACTIONS(1749), + [sym_bang] = ACTIONS(1069), + }, + [400] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1849), + [sym_boolean_literal] = STATE(1849), + [sym__string_literal] = STATE(1849), + [sym_line_string_literal] = STATE(1849), + [sym_multi_line_string_literal] = STATE(1849), + [sym_raw_string_literal] = STATE(1849), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1849), + [sym__unary_expression] = STATE(1849), + [sym_postfix_expression] = STATE(1849), + [sym_constructor_expression] = STATE(1849), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1849), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1849), + [sym_prefix_expression] = STATE(1849), + [sym_as_expression] = STATE(1849), + [sym_selector_expression] = STATE(1849), + [sym__binary_expression] = STATE(1849), + [sym_multiplicative_expression] = STATE(1849), + [sym_additive_expression] = STATE(1849), + [sym_range_expression] = STATE(1849), + [sym_infix_expression] = STATE(1849), + [sym_nil_coalescing_expression] = STATE(1849), + [sym_check_expression] = STATE(1849), + [sym_comparison_expression] = STATE(1849), + [sym_equality_expression] = STATE(1849), + [sym_conjunction_expression] = STATE(1849), + [sym_disjunction_expression] = STATE(1849), + [sym_bitwise_operation] = STATE(1849), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1849), + [sym_await_expression] = STATE(1849), + [sym_ternary_expression] = STATE(1849), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1849), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1849), + [sym_dictionary_literal] = STATE(1849), + [sym__special_literal] = STATE(1849), + [sym__playground_literal] = STATE(1849), + [sym_lambda_literal] = STATE(1849), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1849), + [sym_key_path_expression] = STATE(1849), + [sym_key_path_string_expression] = STATE(1849), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1849), + [sym__comparison_operator] = STATE(1849), + [sym__additive_operator] = STATE(1849), + [sym__multiplicative_operator] = STATE(1849), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1849), + [sym__referenceable_operator] = STATE(1849), + [sym__eq_eq] = STATE(1849), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1751), + [anon_sym_GT] = ACTIONS(1751), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1751), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1751), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1751), + [anon_sym_LT_EQ] = ACTIONS(1751), + [anon_sym_GT_EQ] = ACTIONS(1751), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1751), + [anon_sym_SLASH] = ACTIONS(1751), + [anon_sym_PERCENT] = ACTIONS(1751), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1753), + [sym__plus_then_ws] = ACTIONS(1753), + [sym__minus_then_ws] = ACTIONS(1753), + [sym_bang] = ACTIONS(1069), + }, + [401] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1876), + [sym_boolean_literal] = STATE(1876), + [sym__string_literal] = STATE(1876), + [sym_line_string_literal] = STATE(1876), + [sym_multi_line_string_literal] = STATE(1876), + [sym_raw_string_literal] = STATE(1876), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1876), + [sym__unary_expression] = STATE(1876), + [sym_postfix_expression] = STATE(1876), + [sym_constructor_expression] = STATE(1876), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1876), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1876), + [sym_prefix_expression] = STATE(1876), + [sym_as_expression] = STATE(1876), + [sym_selector_expression] = STATE(1876), + [sym__binary_expression] = STATE(1876), + [sym_multiplicative_expression] = STATE(1876), + [sym_additive_expression] = STATE(1876), + [sym_range_expression] = STATE(1876), + [sym_infix_expression] = STATE(1876), + [sym_nil_coalescing_expression] = STATE(1876), + [sym_check_expression] = STATE(1876), + [sym_comparison_expression] = STATE(1876), + [sym_equality_expression] = STATE(1876), + [sym_conjunction_expression] = STATE(1876), + [sym_disjunction_expression] = STATE(1876), + [sym_bitwise_operation] = STATE(1876), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1876), + [sym_await_expression] = STATE(1876), + [sym_ternary_expression] = STATE(1876), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1876), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1876), + [sym_dictionary_literal] = STATE(1876), + [sym__special_literal] = STATE(1876), + [sym__playground_literal] = STATE(1876), + [sym_lambda_literal] = STATE(1876), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1876), + [sym_key_path_expression] = STATE(1876), + [sym_key_path_string_expression] = STATE(1876), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1876), + [sym__comparison_operator] = STATE(1876), + [sym__additive_operator] = STATE(1876), + [sym__multiplicative_operator] = STATE(1876), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1876), + [sym__referenceable_operator] = STATE(1876), + [sym__eq_eq] = STATE(1876), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_GT] = ACTIONS(1755), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1755), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1755), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1755), + [anon_sym_GT_EQ] = ACTIONS(1755), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_SLASH] = ACTIONS(1755), + [anon_sym_PERCENT] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1757), + [sym__plus_then_ws] = ACTIONS(1757), + [sym__minus_then_ws] = ACTIONS(1757), + [sym_bang] = ACTIONS(1069), + }, + [402] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1611), + [sym_boolean_literal] = STATE(1611), + [sym__string_literal] = STATE(1611), + [sym_line_string_literal] = STATE(1611), + [sym_multi_line_string_literal] = STATE(1611), + [sym_raw_string_literal] = STATE(1611), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1611), + [sym__unary_expression] = STATE(1611), + [sym_postfix_expression] = STATE(1611), + [sym_constructor_expression] = STATE(1611), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1611), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1611), + [sym_prefix_expression] = STATE(1611), + [sym_as_expression] = STATE(1611), + [sym_selector_expression] = STATE(1611), + [sym__binary_expression] = STATE(1611), + [sym_multiplicative_expression] = STATE(1611), + [sym_additive_expression] = STATE(1611), + [sym_range_expression] = STATE(1611), + [sym_infix_expression] = STATE(1611), + [sym_nil_coalescing_expression] = STATE(1611), + [sym_check_expression] = STATE(1611), + [sym_comparison_expression] = STATE(1611), + [sym_equality_expression] = STATE(1611), + [sym_conjunction_expression] = STATE(1611), + [sym_disjunction_expression] = STATE(1611), + [sym_bitwise_operation] = STATE(1611), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1611), + [sym_await_expression] = STATE(1611), + [sym_ternary_expression] = STATE(1611), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1611), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1611), + [sym_dictionary_literal] = STATE(1611), + [sym__special_literal] = STATE(1611), + [sym__playground_literal] = STATE(1611), + [sym_lambda_literal] = STATE(1611), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1611), + [sym_key_path_expression] = STATE(1611), + [sym_key_path_string_expression] = STATE(1611), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1611), + [sym__comparison_operator] = STATE(1611), + [sym__additive_operator] = STATE(1611), + [sym__multiplicative_operator] = STATE(1611), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1611), + [sym__referenceable_operator] = STATE(1611), + [sym__eq_eq] = STATE(1611), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1759), + [anon_sym_GT] = ACTIONS(1759), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1759), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1759), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1759), + [anon_sym_LT_EQ] = ACTIONS(1759), + [anon_sym_GT_EQ] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1759), + [anon_sym_SLASH] = ACTIONS(1759), + [anon_sym_PERCENT] = ACTIONS(1759), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1761), + [sym__plus_then_ws] = ACTIONS(1761), + [sym__minus_then_ws] = ACTIONS(1761), + [sym_bang] = ACTIONS(1069), + }, + [403] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1702), + [sym_boolean_literal] = STATE(1702), + [sym__string_literal] = STATE(1702), + [sym_line_string_literal] = STATE(1702), + [sym_multi_line_string_literal] = STATE(1702), + [sym_raw_string_literal] = STATE(1702), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1702), + [sym__unary_expression] = STATE(1702), + [sym_postfix_expression] = STATE(1702), + [sym_constructor_expression] = STATE(1702), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1702), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1702), + [sym_prefix_expression] = STATE(1702), + [sym_as_expression] = STATE(1702), + [sym_selector_expression] = STATE(1702), + [sym__binary_expression] = STATE(1702), + [sym_multiplicative_expression] = STATE(1702), + [sym_additive_expression] = STATE(1702), + [sym_range_expression] = STATE(1702), + [sym_infix_expression] = STATE(1702), + [sym_nil_coalescing_expression] = STATE(1702), + [sym_check_expression] = STATE(1702), + [sym_comparison_expression] = STATE(1702), + [sym_equality_expression] = STATE(1702), + [sym_conjunction_expression] = STATE(1702), + [sym_disjunction_expression] = STATE(1702), + [sym_bitwise_operation] = STATE(1702), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1702), + [sym_await_expression] = STATE(1702), + [sym_ternary_expression] = STATE(1702), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1702), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1702), + [sym_dictionary_literal] = STATE(1702), + [sym__special_literal] = STATE(1702), + [sym__playground_literal] = STATE(1702), + [sym_lambda_literal] = STATE(1702), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1702), + [sym_key_path_expression] = STATE(1702), + [sym_key_path_string_expression] = STATE(1702), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1702), + [sym__comparison_operator] = STATE(1702), + [sym__additive_operator] = STATE(1702), + [sym__multiplicative_operator] = STATE(1702), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1702), + [sym__referenceable_operator] = STATE(1702), + [sym__eq_eq] = STATE(1702), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1763), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1763), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1763), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1763), + [anon_sym_SLASH] = ACTIONS(1763), + [anon_sym_PERCENT] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1765), + [sym__plus_then_ws] = ACTIONS(1765), + [sym__minus_then_ws] = ACTIONS(1765), + [sym_bang] = ACTIONS(1069), + }, + [404] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1874), + [sym_boolean_literal] = STATE(1874), + [sym__string_literal] = STATE(1874), + [sym_line_string_literal] = STATE(1874), + [sym_multi_line_string_literal] = STATE(1874), + [sym_raw_string_literal] = STATE(1874), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1874), + [sym__unary_expression] = STATE(1874), + [sym_postfix_expression] = STATE(1874), + [sym_constructor_expression] = STATE(1874), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1874), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1874), + [sym_prefix_expression] = STATE(1874), + [sym_as_expression] = STATE(1874), + [sym_selector_expression] = STATE(1874), + [sym__binary_expression] = STATE(1874), + [sym_multiplicative_expression] = STATE(1874), + [sym_additive_expression] = STATE(1874), + [sym_range_expression] = STATE(1874), + [sym_infix_expression] = STATE(1874), + [sym_nil_coalescing_expression] = STATE(1874), + [sym_check_expression] = STATE(1874), + [sym_comparison_expression] = STATE(1874), + [sym_equality_expression] = STATE(1874), + [sym_conjunction_expression] = STATE(1874), + [sym_disjunction_expression] = STATE(1874), + [sym_bitwise_operation] = STATE(1874), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1874), + [sym_await_expression] = STATE(1874), + [sym_ternary_expression] = STATE(1874), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1874), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1874), + [sym_dictionary_literal] = STATE(1874), + [sym__special_literal] = STATE(1874), + [sym__playground_literal] = STATE(1874), + [sym_lambda_literal] = STATE(1874), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1874), + [sym_key_path_expression] = STATE(1874), + [sym_key_path_string_expression] = STATE(1874), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1874), + [sym__comparison_operator] = STATE(1874), + [sym__additive_operator] = STATE(1874), + [sym__multiplicative_operator] = STATE(1874), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1874), + [sym__referenceable_operator] = STATE(1874), + [sym__eq_eq] = STATE(1874), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_GT] = ACTIONS(1767), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1767), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1767), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1767), + [anon_sym_LT_EQ] = ACTIONS(1767), + [anon_sym_GT_EQ] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_SLASH] = ACTIONS(1767), + [anon_sym_PERCENT] = ACTIONS(1767), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1769), + [sym__plus_then_ws] = ACTIONS(1769), + [sym__minus_then_ws] = ACTIONS(1769), + [sym_bang] = ACTIONS(1069), + }, + [405] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1898), + [sym_boolean_literal] = STATE(1898), + [sym__string_literal] = STATE(1898), + [sym_line_string_literal] = STATE(1898), + [sym_multi_line_string_literal] = STATE(1898), + [sym_raw_string_literal] = STATE(1898), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1898), + [sym__unary_expression] = STATE(1898), + [sym_postfix_expression] = STATE(1898), + [sym_constructor_expression] = STATE(1898), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1898), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1898), + [sym_prefix_expression] = STATE(1898), + [sym_as_expression] = STATE(1898), + [sym_selector_expression] = STATE(1898), + [sym__binary_expression] = STATE(1898), + [sym_multiplicative_expression] = STATE(1898), + [sym_additive_expression] = STATE(1898), + [sym_range_expression] = STATE(1898), + [sym_infix_expression] = STATE(1898), + [sym_nil_coalescing_expression] = STATE(1898), + [sym_check_expression] = STATE(1898), + [sym_comparison_expression] = STATE(1898), + [sym_equality_expression] = STATE(1898), + [sym_conjunction_expression] = STATE(1898), + [sym_disjunction_expression] = STATE(1898), + [sym_bitwise_operation] = STATE(1898), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1898), + [sym_await_expression] = STATE(1898), + [sym_ternary_expression] = STATE(1898), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1898), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1898), + [sym_dictionary_literal] = STATE(1898), + [sym__special_literal] = STATE(1898), + [sym__playground_literal] = STATE(1898), + [sym_lambda_literal] = STATE(1898), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1898), + [sym_key_path_expression] = STATE(1898), + [sym_key_path_string_expression] = STATE(1898), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1898), + [sym__comparison_operator] = STATE(1898), + [sym__additive_operator] = STATE(1898), + [sym__multiplicative_operator] = STATE(1898), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1898), + [sym__referenceable_operator] = STATE(1898), + [sym__eq_eq] = STATE(1898), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1771), + [anon_sym_GT] = ACTIONS(1771), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1771), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1771), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1771), + [anon_sym_LT_EQ] = ACTIONS(1771), + [anon_sym_GT_EQ] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_SLASH] = ACTIONS(1771), + [anon_sym_PERCENT] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1773), + [sym__plus_then_ws] = ACTIONS(1773), + [sym__minus_then_ws] = ACTIONS(1773), + [sym_bang] = ACTIONS(1069), + }, + [406] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2246), + [sym_boolean_literal] = STATE(2246), + [sym__string_literal] = STATE(2246), + [sym_line_string_literal] = STATE(2246), + [sym_multi_line_string_literal] = STATE(2246), + [sym_raw_string_literal] = STATE(2246), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2246), + [sym__unary_expression] = STATE(2246), + [sym_postfix_expression] = STATE(2246), + [sym_constructor_expression] = STATE(2246), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2246), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2246), + [sym_prefix_expression] = STATE(2246), + [sym_as_expression] = STATE(2246), + [sym_selector_expression] = STATE(2246), + [sym__binary_expression] = STATE(2246), + [sym_multiplicative_expression] = STATE(2246), + [sym_additive_expression] = STATE(2246), + [sym_range_expression] = STATE(2246), + [sym_infix_expression] = STATE(2246), + [sym_nil_coalescing_expression] = STATE(2246), + [sym_check_expression] = STATE(2246), + [sym_comparison_expression] = STATE(2246), + [sym_equality_expression] = STATE(2246), + [sym_conjunction_expression] = STATE(2246), + [sym_disjunction_expression] = STATE(2246), + [sym_bitwise_operation] = STATE(2246), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2246), + [sym_await_expression] = STATE(2246), + [sym_ternary_expression] = STATE(2246), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2246), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2246), + [sym_dictionary_literal] = STATE(2246), + [sym__special_literal] = STATE(2246), + [sym__playground_literal] = STATE(2246), + [sym_lambda_literal] = STATE(2246), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2246), + [sym_key_path_expression] = STATE(2246), + [sym_key_path_string_expression] = STATE(2246), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2246), + [sym__comparison_operator] = STATE(2246), + [sym__additive_operator] = STATE(2246), + [sym__multiplicative_operator] = STATE(2246), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2246), + [sym__referenceable_operator] = STATE(2246), + [sym__eq_eq] = STATE(2246), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_GT] = ACTIONS(1775), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1775), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1775), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1775), + [anon_sym_LT_EQ] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1775), + [anon_sym_SLASH] = ACTIONS(1775), + [anon_sym_PERCENT] = ACTIONS(1775), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1777), + [sym__plus_then_ws] = ACTIONS(1777), + [sym__minus_then_ws] = ACTIONS(1777), + [sym_bang] = ACTIONS(833), + }, + [407] = { + [sym_simple_identifier] = STATE(2635), + [sym__basic_literal] = STATE(1804), + [sym_boolean_literal] = STATE(1804), + [sym__string_literal] = STATE(1804), + [sym_line_string_literal] = STATE(1804), + [sym_multi_line_string_literal] = STATE(1804), + [sym_raw_string_literal] = STATE(1804), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1804), + [sym__unary_expression] = STATE(1804), + [sym_postfix_expression] = STATE(1804), + [sym_constructor_expression] = STATE(1804), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1804), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1804), + [sym_prefix_expression] = STATE(1804), + [sym_as_expression] = STATE(1804), + [sym_selector_expression] = STATE(1804), + [sym__binary_expression] = STATE(1804), + [sym_multiplicative_expression] = STATE(1804), + [sym_additive_expression] = STATE(1804), + [sym_range_expression] = STATE(1804), + [sym_infix_expression] = STATE(1804), + [sym_nil_coalescing_expression] = STATE(1804), + [sym_check_expression] = STATE(1804), + [sym_comparison_expression] = STATE(1804), + [sym_equality_expression] = STATE(1804), + [sym_conjunction_expression] = STATE(1804), + [sym_disjunction_expression] = STATE(1804), + [sym_bitwise_operation] = STATE(1804), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1804), + [sym_await_expression] = STATE(1804), + [sym_ternary_expression] = STATE(1804), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1804), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1804), + [sym_dictionary_literal] = STATE(1804), + [sym__special_literal] = STATE(1804), + [sym__playground_literal] = STATE(1804), + [sym_lambda_literal] = STATE(1804), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1804), + [sym_key_path_expression] = STATE(1804), + [sym_key_path_string_expression] = STATE(1804), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1804), + [sym__comparison_operator] = STATE(1804), + [sym__additive_operator] = STATE(1804), + [sym__multiplicative_operator] = STATE(1804), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1804), + [sym__referenceable_operator] = STATE(1804), + [sym__eq_eq] = STATE(1804), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1779), + [anon_sym_GT] = ACTIONS(1779), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1779), + [anon_sym_LT_EQ] = ACTIONS(1779), + [anon_sym_GT_EQ] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1779), + [anon_sym_SLASH] = ACTIONS(1779), + [anon_sym_PERCENT] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1781), + [sym__plus_then_ws] = ACTIONS(1781), + [sym__minus_then_ws] = ACTIONS(1781), + [sym_bang] = ACTIONS(833), + }, + [408] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1861), + [sym_boolean_literal] = STATE(1861), + [sym__string_literal] = STATE(1861), + [sym_line_string_literal] = STATE(1861), + [sym_multi_line_string_literal] = STATE(1861), + [sym_raw_string_literal] = STATE(1861), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1861), + [sym__unary_expression] = STATE(1861), + [sym_postfix_expression] = STATE(1861), + [sym_constructor_expression] = STATE(1861), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1861), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1861), + [sym_prefix_expression] = STATE(1861), + [sym_as_expression] = STATE(1861), + [sym_selector_expression] = STATE(1861), + [sym__binary_expression] = STATE(1861), + [sym_multiplicative_expression] = STATE(1861), + [sym_additive_expression] = STATE(1861), + [sym_range_expression] = STATE(1861), + [sym_infix_expression] = STATE(1861), + [sym_nil_coalescing_expression] = STATE(1861), + [sym_check_expression] = STATE(1861), + [sym_comparison_expression] = STATE(1861), + [sym_equality_expression] = STATE(1861), + [sym_conjunction_expression] = STATE(1861), + [sym_disjunction_expression] = STATE(1861), + [sym_bitwise_operation] = STATE(1861), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1861), + [sym_await_expression] = STATE(1861), + [sym_ternary_expression] = STATE(1861), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1861), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1861), + [sym_dictionary_literal] = STATE(1861), + [sym__special_literal] = STATE(1861), + [sym__playground_literal] = STATE(1861), + [sym_lambda_literal] = STATE(1861), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1861), + [sym_key_path_expression] = STATE(1861), + [sym_key_path_string_expression] = STATE(1861), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1861), + [sym__comparison_operator] = STATE(1861), + [sym__additive_operator] = STATE(1861), + [sym__multiplicative_operator] = STATE(1861), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1861), + [sym__referenceable_operator] = STATE(1861), + [sym__eq_eq] = STATE(1861), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_GT] = ACTIONS(1783), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1783), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1783), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1783), + [anon_sym_LT_EQ] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1783), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_PERCENT] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1785), + [sym__plus_then_ws] = ACTIONS(1785), + [sym__minus_then_ws] = ACTIONS(1785), + [sym_bang] = ACTIONS(1069), + }, + [409] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1862), + [sym_boolean_literal] = STATE(1862), + [sym__string_literal] = STATE(1862), + [sym_line_string_literal] = STATE(1862), + [sym_multi_line_string_literal] = STATE(1862), + [sym_raw_string_literal] = STATE(1862), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1862), + [sym__unary_expression] = STATE(1862), + [sym_postfix_expression] = STATE(1862), + [sym_constructor_expression] = STATE(1862), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1862), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1862), + [sym_prefix_expression] = STATE(1862), + [sym_as_expression] = STATE(1862), + [sym_selector_expression] = STATE(1862), + [sym__binary_expression] = STATE(1862), + [sym_multiplicative_expression] = STATE(1862), + [sym_additive_expression] = STATE(1862), + [sym_range_expression] = STATE(1862), + [sym_infix_expression] = STATE(1862), + [sym_nil_coalescing_expression] = STATE(1862), + [sym_check_expression] = STATE(1862), + [sym_comparison_expression] = STATE(1862), + [sym_equality_expression] = STATE(1862), + [sym_conjunction_expression] = STATE(1862), + [sym_disjunction_expression] = STATE(1862), + [sym_bitwise_operation] = STATE(1862), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1862), + [sym_await_expression] = STATE(1862), + [sym_ternary_expression] = STATE(1862), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1862), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1862), + [sym_dictionary_literal] = STATE(1862), + [sym__special_literal] = STATE(1862), + [sym__playground_literal] = STATE(1862), + [sym_lambda_literal] = STATE(1862), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1862), + [sym_key_path_expression] = STATE(1862), + [sym_key_path_string_expression] = STATE(1862), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1862), + [sym__comparison_operator] = STATE(1862), + [sym__additive_operator] = STATE(1862), + [sym__multiplicative_operator] = STATE(1862), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1862), + [sym__referenceable_operator] = STATE(1862), + [sym__eq_eq] = STATE(1862), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym_GT] = ACTIONS(1787), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1787), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1787), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1787), + [anon_sym_LT_EQ] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PERCENT] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1789), + [sym__plus_then_ws] = ACTIONS(1789), + [sym__minus_then_ws] = ACTIONS(1789), + [sym_bang] = ACTIONS(1069), + }, + [410] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1864), + [sym_boolean_literal] = STATE(1864), + [sym__string_literal] = STATE(1864), + [sym_line_string_literal] = STATE(1864), + [sym_multi_line_string_literal] = STATE(1864), + [sym_raw_string_literal] = STATE(1864), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1864), + [sym__unary_expression] = STATE(1864), + [sym_postfix_expression] = STATE(1864), + [sym_constructor_expression] = STATE(1864), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1864), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1864), + [sym_prefix_expression] = STATE(1864), + [sym_as_expression] = STATE(1864), + [sym_selector_expression] = STATE(1864), + [sym__binary_expression] = STATE(1864), + [sym_multiplicative_expression] = STATE(1864), + [sym_additive_expression] = STATE(1864), + [sym_range_expression] = STATE(1864), + [sym_infix_expression] = STATE(1864), + [sym_nil_coalescing_expression] = STATE(1864), + [sym_check_expression] = STATE(1864), + [sym_comparison_expression] = STATE(1864), + [sym_equality_expression] = STATE(1864), + [sym_conjunction_expression] = STATE(1864), + [sym_disjunction_expression] = STATE(1864), + [sym_bitwise_operation] = STATE(1864), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1864), + [sym_await_expression] = STATE(1864), + [sym_ternary_expression] = STATE(1864), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1864), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1864), + [sym_dictionary_literal] = STATE(1864), + [sym__special_literal] = STATE(1864), + [sym__playground_literal] = STATE(1864), + [sym_lambda_literal] = STATE(1864), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1864), + [sym_key_path_expression] = STATE(1864), + [sym_key_path_string_expression] = STATE(1864), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1864), + [sym__comparison_operator] = STATE(1864), + [sym__additive_operator] = STATE(1864), + [sym__multiplicative_operator] = STATE(1864), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1864), + [sym__referenceable_operator] = STATE(1864), + [sym__eq_eq] = STATE(1864), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1791), + [anon_sym_GT] = ACTIONS(1791), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1791), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1791), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1791), + [anon_sym_LT_EQ] = ACTIONS(1791), + [anon_sym_GT_EQ] = ACTIONS(1791), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1791), + [anon_sym_SLASH] = ACTIONS(1791), + [anon_sym_PERCENT] = ACTIONS(1791), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1793), + [sym__plus_then_ws] = ACTIONS(1793), + [sym__minus_then_ws] = ACTIONS(1793), + [sym_bang] = ACTIONS(1069), + }, + [411] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1687), + [sym_boolean_literal] = STATE(1687), + [sym__string_literal] = STATE(1687), + [sym_line_string_literal] = STATE(1687), + [sym_multi_line_string_literal] = STATE(1687), + [sym_raw_string_literal] = STATE(1687), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1687), + [sym__unary_expression] = STATE(1687), + [sym_postfix_expression] = STATE(1687), + [sym_constructor_expression] = STATE(1687), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1687), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1687), + [sym_prefix_expression] = STATE(1687), + [sym_as_expression] = STATE(1687), + [sym_selector_expression] = STATE(1687), + [sym__binary_expression] = STATE(1687), + [sym_multiplicative_expression] = STATE(1687), + [sym_additive_expression] = STATE(1687), + [sym_range_expression] = STATE(1687), + [sym_infix_expression] = STATE(1687), + [sym_nil_coalescing_expression] = STATE(1687), + [sym_check_expression] = STATE(1687), + [sym_comparison_expression] = STATE(1687), + [sym_equality_expression] = STATE(1687), + [sym_conjunction_expression] = STATE(1687), + [sym_disjunction_expression] = STATE(1687), + [sym_bitwise_operation] = STATE(1687), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1687), + [sym_await_expression] = STATE(1687), + [sym_ternary_expression] = STATE(1687), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1687), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1687), + [sym_dictionary_literal] = STATE(1687), + [sym__special_literal] = STATE(1687), + [sym__playground_literal] = STATE(1687), + [sym_lambda_literal] = STATE(1687), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1687), + [sym_key_path_expression] = STATE(1687), + [sym_key_path_string_expression] = STATE(1687), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1687), + [sym__comparison_operator] = STATE(1687), + [sym__additive_operator] = STATE(1687), + [sym__multiplicative_operator] = STATE(1687), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1687), + [sym__referenceable_operator] = STATE(1687), + [sym__eq_eq] = STATE(1687), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1795), + [anon_sym_GT] = ACTIONS(1795), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1795), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1795), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1795), + [anon_sym_LT_EQ] = ACTIONS(1795), + [anon_sym_GT_EQ] = ACTIONS(1795), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1795), + [anon_sym_SLASH] = ACTIONS(1795), + [anon_sym_PERCENT] = ACTIONS(1795), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1797), + [sym__plus_then_ws] = ACTIONS(1797), + [sym__minus_then_ws] = ACTIONS(1797), + [sym_bang] = ACTIONS(1069), + }, + [412] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1772), + [sym_boolean_literal] = STATE(1772), + [sym__string_literal] = STATE(1772), + [sym_line_string_literal] = STATE(1772), + [sym_multi_line_string_literal] = STATE(1772), + [sym_raw_string_literal] = STATE(1772), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1772), + [sym__unary_expression] = STATE(1772), + [sym_postfix_expression] = STATE(1772), + [sym_constructor_expression] = STATE(1772), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1772), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1772), + [sym_prefix_expression] = STATE(1772), + [sym_as_expression] = STATE(1772), + [sym_selector_expression] = STATE(1772), + [sym__binary_expression] = STATE(1772), + [sym_multiplicative_expression] = STATE(1772), + [sym_additive_expression] = STATE(1772), + [sym_range_expression] = STATE(1772), + [sym_infix_expression] = STATE(1772), + [sym_nil_coalescing_expression] = STATE(1772), + [sym_check_expression] = STATE(1772), + [sym_comparison_expression] = STATE(1772), + [sym_equality_expression] = STATE(1772), + [sym_conjunction_expression] = STATE(1772), + [sym_disjunction_expression] = STATE(1772), + [sym_bitwise_operation] = STATE(1772), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1772), + [sym_await_expression] = STATE(1772), + [sym_ternary_expression] = STATE(1772), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1772), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1772), + [sym_dictionary_literal] = STATE(1772), + [sym__special_literal] = STATE(1772), + [sym__playground_literal] = STATE(1772), + [sym_lambda_literal] = STATE(1772), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1772), + [sym_key_path_expression] = STATE(1772), + [sym_key_path_string_expression] = STATE(1772), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1772), + [sym__comparison_operator] = STATE(1772), + [sym__additive_operator] = STATE(1772), + [sym__multiplicative_operator] = STATE(1772), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1772), + [sym__referenceable_operator] = STATE(1772), + [sym__eq_eq] = STATE(1772), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1799), + [anon_sym_GT] = ACTIONS(1799), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1799), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1799), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1799), + [anon_sym_LT_EQ] = ACTIONS(1799), + [anon_sym_GT_EQ] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1799), + [anon_sym_SLASH] = ACTIONS(1799), + [anon_sym_PERCENT] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1801), + [sym__plus_then_ws] = ACTIONS(1801), + [sym__minus_then_ws] = ACTIONS(1801), + [sym_bang] = ACTIONS(1069), + }, + [413] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1839), + [sym_boolean_literal] = STATE(1839), + [sym__string_literal] = STATE(1839), + [sym_line_string_literal] = STATE(1839), + [sym_multi_line_string_literal] = STATE(1839), + [sym_raw_string_literal] = STATE(1839), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1839), + [sym__unary_expression] = STATE(1839), + [sym_postfix_expression] = STATE(1839), + [sym_constructor_expression] = STATE(1839), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1839), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1839), + [sym_prefix_expression] = STATE(1839), + [sym_as_expression] = STATE(1839), + [sym_selector_expression] = STATE(1839), + [sym__binary_expression] = STATE(1839), + [sym_multiplicative_expression] = STATE(1839), + [sym_additive_expression] = STATE(1839), + [sym_range_expression] = STATE(1839), + [sym_infix_expression] = STATE(1839), + [sym_nil_coalescing_expression] = STATE(1839), + [sym_check_expression] = STATE(1839), + [sym_comparison_expression] = STATE(1839), + [sym_equality_expression] = STATE(1839), + [sym_conjunction_expression] = STATE(1839), + [sym_disjunction_expression] = STATE(1839), + [sym_bitwise_operation] = STATE(1839), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1839), + [sym_await_expression] = STATE(1839), + [sym_ternary_expression] = STATE(1839), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1839), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1839), + [sym_dictionary_literal] = STATE(1839), + [sym__special_literal] = STATE(1839), + [sym__playground_literal] = STATE(1839), + [sym_lambda_literal] = STATE(1839), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1839), + [sym_key_path_expression] = STATE(1839), + [sym_key_path_string_expression] = STATE(1839), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1839), + [sym__comparison_operator] = STATE(1839), + [sym__additive_operator] = STATE(1839), + [sym__multiplicative_operator] = STATE(1839), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1839), + [sym__referenceable_operator] = STATE(1839), + [sym__eq_eq] = STATE(1839), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1803), + [anon_sym_GT] = ACTIONS(1803), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1803), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1803), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1803), + [anon_sym_LT_EQ] = ACTIONS(1803), + [anon_sym_GT_EQ] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1803), + [anon_sym_SLASH] = ACTIONS(1803), + [anon_sym_PERCENT] = ACTIONS(1803), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1805), + [sym__plus_then_ws] = ACTIONS(1805), + [sym__minus_then_ws] = ACTIONS(1805), + [sym_bang] = ACTIONS(1069), + }, + [414] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1799), + [sym_boolean_literal] = STATE(1799), + [sym__string_literal] = STATE(1799), + [sym_line_string_literal] = STATE(1799), + [sym_multi_line_string_literal] = STATE(1799), + [sym_raw_string_literal] = STATE(1799), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1799), + [sym__unary_expression] = STATE(1799), + [sym_postfix_expression] = STATE(1799), + [sym_constructor_expression] = STATE(1799), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1799), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1799), + [sym_prefix_expression] = STATE(1799), + [sym_as_expression] = STATE(1799), + [sym_selector_expression] = STATE(1799), + [sym__binary_expression] = STATE(1799), + [sym_multiplicative_expression] = STATE(1799), + [sym_additive_expression] = STATE(1799), + [sym_range_expression] = STATE(1799), + [sym_infix_expression] = STATE(1799), + [sym_nil_coalescing_expression] = STATE(1799), + [sym_check_expression] = STATE(1799), + [sym_comparison_expression] = STATE(1799), + [sym_equality_expression] = STATE(1799), + [sym_conjunction_expression] = STATE(1799), + [sym_disjunction_expression] = STATE(1799), + [sym_bitwise_operation] = STATE(1799), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1799), + [sym_await_expression] = STATE(1799), + [sym_ternary_expression] = STATE(1799), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1799), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1799), + [sym_dictionary_literal] = STATE(1799), + [sym__special_literal] = STATE(1799), + [sym__playground_literal] = STATE(1799), + [sym_lambda_literal] = STATE(1799), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1799), + [sym_key_path_expression] = STATE(1799), + [sym_key_path_string_expression] = STATE(1799), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1799), + [sym__comparison_operator] = STATE(1799), + [sym__additive_operator] = STATE(1799), + [sym__multiplicative_operator] = STATE(1799), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1799), + [sym__referenceable_operator] = STATE(1799), + [sym__eq_eq] = STATE(1799), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1807), + [anon_sym_GT] = ACTIONS(1807), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1807), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1807), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1807), + [anon_sym_LT_EQ] = ACTIONS(1807), + [anon_sym_GT_EQ] = ACTIONS(1807), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1807), + [anon_sym_SLASH] = ACTIONS(1807), + [anon_sym_PERCENT] = ACTIONS(1807), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1809), + [sym__plus_then_ws] = ACTIONS(1809), + [sym__minus_then_ws] = ACTIONS(1809), + [sym_bang] = ACTIONS(1069), + }, + [415] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1684), + [sym_boolean_literal] = STATE(1684), + [sym__string_literal] = STATE(1684), + [sym_line_string_literal] = STATE(1684), + [sym_multi_line_string_literal] = STATE(1684), + [sym_raw_string_literal] = STATE(1684), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1684), + [sym__unary_expression] = STATE(1684), + [sym_postfix_expression] = STATE(1684), + [sym_constructor_expression] = STATE(1684), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1684), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1684), + [sym_prefix_expression] = STATE(1684), + [sym_as_expression] = STATE(1684), + [sym_selector_expression] = STATE(1684), + [sym__binary_expression] = STATE(1684), + [sym_multiplicative_expression] = STATE(1684), + [sym_additive_expression] = STATE(1684), + [sym_range_expression] = STATE(1684), + [sym_infix_expression] = STATE(1684), + [sym_nil_coalescing_expression] = STATE(1684), + [sym_check_expression] = STATE(1684), + [sym_comparison_expression] = STATE(1684), + [sym_equality_expression] = STATE(1684), + [sym_conjunction_expression] = STATE(1684), + [sym_disjunction_expression] = STATE(1684), + [sym_bitwise_operation] = STATE(1684), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1684), + [sym_await_expression] = STATE(1684), + [sym_ternary_expression] = STATE(1684), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1684), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1684), + [sym_dictionary_literal] = STATE(1684), + [sym__special_literal] = STATE(1684), + [sym__playground_literal] = STATE(1684), + [sym_lambda_literal] = STATE(1684), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1684), + [sym_key_path_expression] = STATE(1684), + [sym_key_path_string_expression] = STATE(1684), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1684), + [sym__comparison_operator] = STATE(1684), + [sym__additive_operator] = STATE(1684), + [sym__multiplicative_operator] = STATE(1684), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1684), + [sym__referenceable_operator] = STATE(1684), + [sym__eq_eq] = STATE(1684), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1811), + [anon_sym_GT] = ACTIONS(1811), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1811), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1811), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1811), + [anon_sym_LT_EQ] = ACTIONS(1811), + [anon_sym_GT_EQ] = ACTIONS(1811), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_SLASH] = ACTIONS(1811), + [anon_sym_PERCENT] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1813), + [sym__plus_then_ws] = ACTIONS(1813), + [sym__minus_then_ws] = ACTIONS(1813), + [sym_bang] = ACTIONS(1069), + }, + [416] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1803), + [sym_boolean_literal] = STATE(1803), + [sym__string_literal] = STATE(1803), + [sym_line_string_literal] = STATE(1803), + [sym_multi_line_string_literal] = STATE(1803), + [sym_raw_string_literal] = STATE(1803), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1803), + [sym__unary_expression] = STATE(1803), + [sym_postfix_expression] = STATE(1803), + [sym_constructor_expression] = STATE(1803), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1803), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1803), + [sym_prefix_expression] = STATE(1803), + [sym_as_expression] = STATE(1803), + [sym_selector_expression] = STATE(1803), + [sym__binary_expression] = STATE(1803), + [sym_multiplicative_expression] = STATE(1803), + [sym_additive_expression] = STATE(1803), + [sym_range_expression] = STATE(1803), + [sym_infix_expression] = STATE(1803), + [sym_nil_coalescing_expression] = STATE(1803), + [sym_check_expression] = STATE(1803), + [sym_comparison_expression] = STATE(1803), + [sym_equality_expression] = STATE(1803), + [sym_conjunction_expression] = STATE(1803), + [sym_disjunction_expression] = STATE(1803), + [sym_bitwise_operation] = STATE(1803), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1803), + [sym_await_expression] = STATE(1803), + [sym_ternary_expression] = STATE(1803), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1803), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1803), + [sym_dictionary_literal] = STATE(1803), + [sym__special_literal] = STATE(1803), + [sym__playground_literal] = STATE(1803), + [sym_lambda_literal] = STATE(1803), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1803), + [sym_key_path_expression] = STATE(1803), + [sym_key_path_string_expression] = STATE(1803), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1803), + [sym__comparison_operator] = STATE(1803), + [sym__additive_operator] = STATE(1803), + [sym__multiplicative_operator] = STATE(1803), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1803), + [sym__referenceable_operator] = STATE(1803), + [sym__eq_eq] = STATE(1803), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1815), + [anon_sym_GT] = ACTIONS(1815), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1815), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1815), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1815), + [anon_sym_LT_EQ] = ACTIONS(1815), + [anon_sym_GT_EQ] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_SLASH] = ACTIONS(1815), + [anon_sym_PERCENT] = ACTIONS(1815), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1817), + [sym__plus_then_ws] = ACTIONS(1817), + [sym__minus_then_ws] = ACTIONS(1817), + [sym_bang] = ACTIONS(1069), + }, + [417] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2248), + [sym_boolean_literal] = STATE(2248), + [sym__string_literal] = STATE(2248), + [sym_line_string_literal] = STATE(2248), + [sym_multi_line_string_literal] = STATE(2248), + [sym_raw_string_literal] = STATE(2248), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2248), + [sym__unary_expression] = STATE(2248), + [sym_postfix_expression] = STATE(2248), + [sym_constructor_expression] = STATE(2248), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2248), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2248), + [sym_prefix_expression] = STATE(2248), + [sym_as_expression] = STATE(2248), + [sym_selector_expression] = STATE(2248), + [sym__binary_expression] = STATE(2248), + [sym_multiplicative_expression] = STATE(2248), + [sym_additive_expression] = STATE(2248), + [sym_range_expression] = STATE(2248), + [sym_infix_expression] = STATE(2248), + [sym_nil_coalescing_expression] = STATE(2248), + [sym_check_expression] = STATE(2248), + [sym_comparison_expression] = STATE(2248), + [sym_equality_expression] = STATE(2248), + [sym_conjunction_expression] = STATE(2248), + [sym_disjunction_expression] = STATE(2248), + [sym_bitwise_operation] = STATE(2248), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2248), + [sym_await_expression] = STATE(2248), + [sym_ternary_expression] = STATE(2248), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2248), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2248), + [sym_dictionary_literal] = STATE(2248), + [sym__special_literal] = STATE(2248), + [sym__playground_literal] = STATE(2248), + [sym_lambda_literal] = STATE(2248), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2248), + [sym_key_path_expression] = STATE(2248), + [sym_key_path_string_expression] = STATE(2248), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2248), + [sym__comparison_operator] = STATE(2248), + [sym__additive_operator] = STATE(2248), + [sym__multiplicative_operator] = STATE(2248), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2248), + [sym__referenceable_operator] = STATE(2248), + [sym__eq_eq] = STATE(2248), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1819), + [anon_sym_GT] = ACTIONS(1819), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1819), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1819), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1819), + [anon_sym_LT_EQ] = ACTIONS(1819), + [anon_sym_GT_EQ] = ACTIONS(1819), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1819), + [anon_sym_SLASH] = ACTIONS(1819), + [anon_sym_PERCENT] = ACTIONS(1819), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1821), + [sym__plus_then_ws] = ACTIONS(1821), + [sym__minus_then_ws] = ACTIONS(1821), + [sym_bang] = ACTIONS(833), + }, + [418] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1865), + [sym_boolean_literal] = STATE(1865), + [sym__string_literal] = STATE(1865), + [sym_line_string_literal] = STATE(1865), + [sym_multi_line_string_literal] = STATE(1865), + [sym_raw_string_literal] = STATE(1865), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1865), + [sym__unary_expression] = STATE(1865), + [sym_postfix_expression] = STATE(1865), + [sym_constructor_expression] = STATE(1865), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1865), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1865), + [sym_prefix_expression] = STATE(1865), + [sym_as_expression] = STATE(1865), + [sym_selector_expression] = STATE(1865), + [sym__binary_expression] = STATE(1865), + [sym_multiplicative_expression] = STATE(1865), + [sym_additive_expression] = STATE(1865), + [sym_range_expression] = STATE(1865), + [sym_infix_expression] = STATE(1865), + [sym_nil_coalescing_expression] = STATE(1865), + [sym_check_expression] = STATE(1865), + [sym_comparison_expression] = STATE(1865), + [sym_equality_expression] = STATE(1865), + [sym_conjunction_expression] = STATE(1865), + [sym_disjunction_expression] = STATE(1865), + [sym_bitwise_operation] = STATE(1865), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1865), + [sym_await_expression] = STATE(1865), + [sym_ternary_expression] = STATE(1865), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1865), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1865), + [sym_dictionary_literal] = STATE(1865), + [sym__special_literal] = STATE(1865), + [sym__playground_literal] = STATE(1865), + [sym_lambda_literal] = STATE(1865), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1865), + [sym_key_path_expression] = STATE(1865), + [sym_key_path_string_expression] = STATE(1865), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1865), + [sym__comparison_operator] = STATE(1865), + [sym__additive_operator] = STATE(1865), + [sym__multiplicative_operator] = STATE(1865), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1865), + [sym__referenceable_operator] = STATE(1865), + [sym__eq_eq] = STATE(1865), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_GT] = ACTIONS(1823), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1823), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1823), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1823), + [anon_sym_LT_EQ] = ACTIONS(1823), + [anon_sym_GT_EQ] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PERCENT] = ACTIONS(1823), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1825), + [sym__plus_then_ws] = ACTIONS(1825), + [sym__minus_then_ws] = ACTIONS(1825), + [sym_bang] = ACTIONS(1069), + }, + [419] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1677), + [sym_boolean_literal] = STATE(1677), + [sym__string_literal] = STATE(1677), + [sym_line_string_literal] = STATE(1677), + [sym_multi_line_string_literal] = STATE(1677), + [sym_raw_string_literal] = STATE(1677), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1677), + [sym__unary_expression] = STATE(1677), + [sym_postfix_expression] = STATE(1677), + [sym_constructor_expression] = STATE(1677), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1677), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1677), + [sym_prefix_expression] = STATE(1677), + [sym_as_expression] = STATE(1677), + [sym_selector_expression] = STATE(1677), + [sym__binary_expression] = STATE(1677), + [sym_multiplicative_expression] = STATE(1677), + [sym_additive_expression] = STATE(1677), + [sym_range_expression] = STATE(1677), + [sym_infix_expression] = STATE(1677), + [sym_nil_coalescing_expression] = STATE(1677), + [sym_check_expression] = STATE(1677), + [sym_comparison_expression] = STATE(1677), + [sym_equality_expression] = STATE(1677), + [sym_conjunction_expression] = STATE(1677), + [sym_disjunction_expression] = STATE(1677), + [sym_bitwise_operation] = STATE(1677), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1677), + [sym_await_expression] = STATE(1677), + [sym_ternary_expression] = STATE(1677), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1677), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1677), + [sym_dictionary_literal] = STATE(1677), + [sym__special_literal] = STATE(1677), + [sym__playground_literal] = STATE(1677), + [sym_lambda_literal] = STATE(1677), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1677), + [sym_key_path_expression] = STATE(1677), + [sym_key_path_string_expression] = STATE(1677), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1677), + [sym__comparison_operator] = STATE(1677), + [sym__additive_operator] = STATE(1677), + [sym__multiplicative_operator] = STATE(1677), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1677), + [sym__referenceable_operator] = STATE(1677), + [sym__eq_eq] = STATE(1677), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_GT] = ACTIONS(1827), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1827), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1827), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1827), + [anon_sym_LT_EQ] = ACTIONS(1827), + [anon_sym_GT_EQ] = ACTIONS(1827), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1827), + [anon_sym_SLASH] = ACTIONS(1827), + [anon_sym_PERCENT] = ACTIONS(1827), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1829), + [sym__plus_then_ws] = ACTIONS(1829), + [sym__minus_then_ws] = ACTIONS(1829), + [sym_bang] = ACTIONS(1069), + }, + [420] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1801), + [sym_boolean_literal] = STATE(1801), + [sym__string_literal] = STATE(1801), + [sym_line_string_literal] = STATE(1801), + [sym_multi_line_string_literal] = STATE(1801), + [sym_raw_string_literal] = STATE(1801), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1801), + [sym__unary_expression] = STATE(1801), + [sym_postfix_expression] = STATE(1801), + [sym_constructor_expression] = STATE(1801), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1801), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1801), + [sym_prefix_expression] = STATE(1801), + [sym_as_expression] = STATE(1801), + [sym_selector_expression] = STATE(1801), + [sym__binary_expression] = STATE(1801), + [sym_multiplicative_expression] = STATE(1801), + [sym_additive_expression] = STATE(1801), + [sym_range_expression] = STATE(1801), + [sym_infix_expression] = STATE(1801), + [sym_nil_coalescing_expression] = STATE(1801), + [sym_check_expression] = STATE(1801), + [sym_comparison_expression] = STATE(1801), + [sym_equality_expression] = STATE(1801), + [sym_conjunction_expression] = STATE(1801), + [sym_disjunction_expression] = STATE(1801), + [sym_bitwise_operation] = STATE(1801), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1801), + [sym_await_expression] = STATE(1801), + [sym_ternary_expression] = STATE(1801), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1801), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1801), + [sym_dictionary_literal] = STATE(1801), + [sym__special_literal] = STATE(1801), + [sym__playground_literal] = STATE(1801), + [sym_lambda_literal] = STATE(1801), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1801), + [sym_key_path_expression] = STATE(1801), + [sym_key_path_string_expression] = STATE(1801), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1801), + [sym__comparison_operator] = STATE(1801), + [sym__additive_operator] = STATE(1801), + [sym__multiplicative_operator] = STATE(1801), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1801), + [sym__referenceable_operator] = STATE(1801), + [sym__eq_eq] = STATE(1801), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1831), + [anon_sym_GT] = ACTIONS(1831), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1831), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1831), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1831), + [anon_sym_LT_EQ] = ACTIONS(1831), + [anon_sym_GT_EQ] = ACTIONS(1831), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1831), + [anon_sym_PERCENT] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1833), + [sym__plus_then_ws] = ACTIONS(1833), + [sym__minus_then_ws] = ACTIONS(1833), + [sym_bang] = ACTIONS(1069), + }, + [421] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), + [sym__string_literal] = STATE(1866), + [sym_line_string_literal] = STATE(1866), + [sym_multi_line_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1866), + [sym__unary_expression] = STATE(1866), + [sym_postfix_expression] = STATE(1866), + [sym_constructor_expression] = STATE(1866), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1866), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1866), + [sym_prefix_expression] = STATE(1866), + [sym_as_expression] = STATE(1866), + [sym_selector_expression] = STATE(1866), + [sym__binary_expression] = STATE(1866), + [sym_multiplicative_expression] = STATE(1866), + [sym_additive_expression] = STATE(1866), + [sym_range_expression] = STATE(1866), + [sym_infix_expression] = STATE(1866), + [sym_nil_coalescing_expression] = STATE(1866), + [sym_check_expression] = STATE(1866), + [sym_comparison_expression] = STATE(1866), + [sym_equality_expression] = STATE(1866), + [sym_conjunction_expression] = STATE(1866), + [sym_disjunction_expression] = STATE(1866), + [sym_bitwise_operation] = STATE(1866), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1866), + [sym_await_expression] = STATE(1866), + [sym_ternary_expression] = STATE(1866), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1866), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1866), + [sym_dictionary_literal] = STATE(1866), + [sym__special_literal] = STATE(1866), + [sym__playground_literal] = STATE(1866), + [sym_lambda_literal] = STATE(1866), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1866), + [sym_key_path_expression] = STATE(1866), + [sym_key_path_string_expression] = STATE(1866), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1866), + [sym__comparison_operator] = STATE(1866), + [sym__additive_operator] = STATE(1866), + [sym__multiplicative_operator] = STATE(1866), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1866), + [sym__referenceable_operator] = STATE(1866), + [sym__eq_eq] = STATE(1866), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1835), + [anon_sym_GT] = ACTIONS(1835), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1835), + [anon_sym_LT_EQ] = ACTIONS(1835), + [anon_sym_GT_EQ] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1835), + [anon_sym_SLASH] = ACTIONS(1835), + [anon_sym_PERCENT] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1837), + [sym__plus_then_ws] = ACTIONS(1837), + [sym__minus_then_ws] = ACTIONS(1837), + [sym_bang] = ACTIONS(1069), + }, + [422] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2234), + [sym_boolean_literal] = STATE(2234), + [sym__string_literal] = STATE(2234), + [sym_line_string_literal] = STATE(2234), + [sym_multi_line_string_literal] = STATE(2234), + [sym_raw_string_literal] = STATE(2234), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2234), + [sym__unary_expression] = STATE(2234), + [sym_postfix_expression] = STATE(2234), + [sym_constructor_expression] = STATE(2234), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2234), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2234), + [sym_prefix_expression] = STATE(2234), + [sym_as_expression] = STATE(2234), + [sym_selector_expression] = STATE(2234), + [sym__binary_expression] = STATE(2234), + [sym_multiplicative_expression] = STATE(2234), + [sym_additive_expression] = STATE(2234), + [sym_range_expression] = STATE(2234), + [sym_infix_expression] = STATE(2234), + [sym_nil_coalescing_expression] = STATE(2234), + [sym_check_expression] = STATE(2234), + [sym_comparison_expression] = STATE(2234), + [sym_equality_expression] = STATE(2234), + [sym_conjunction_expression] = STATE(2234), + [sym_disjunction_expression] = STATE(2234), + [sym_bitwise_operation] = STATE(2234), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2234), + [sym_await_expression] = STATE(2234), + [sym_ternary_expression] = STATE(2234), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2234), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2234), + [sym_dictionary_literal] = STATE(2234), + [sym__special_literal] = STATE(2234), + [sym__playground_literal] = STATE(2234), + [sym_lambda_literal] = STATE(2234), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2234), + [sym_key_path_expression] = STATE(2234), + [sym_key_path_string_expression] = STATE(2234), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2234), + [sym__comparison_operator] = STATE(2234), + [sym__additive_operator] = STATE(2234), + [sym__multiplicative_operator] = STATE(2234), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2234), + [sym__referenceable_operator] = STATE(2234), + [sym__eq_eq] = STATE(2234), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1839), + [anon_sym_GT] = ACTIONS(1839), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1839), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1839), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1839), + [anon_sym_LT_EQ] = ACTIONS(1839), + [anon_sym_GT_EQ] = ACTIONS(1839), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1839), + [anon_sym_SLASH] = ACTIONS(1839), + [anon_sym_PERCENT] = ACTIONS(1839), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1841), + [sym__plus_then_ws] = ACTIONS(1841), + [sym__minus_then_ws] = ACTIONS(1841), + [sym_bang] = ACTIONS(833), + }, + [423] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1540), + [sym_boolean_literal] = STATE(1540), + [sym__string_literal] = STATE(1540), + [sym_line_string_literal] = STATE(1540), + [sym_multi_line_string_literal] = STATE(1540), + [sym_raw_string_literal] = STATE(1540), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1540), + [sym__unary_expression] = STATE(1540), + [sym_postfix_expression] = STATE(1540), + [sym_constructor_expression] = STATE(1540), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1540), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1540), + [sym_prefix_expression] = STATE(1540), + [sym_as_expression] = STATE(1540), + [sym_selector_expression] = STATE(1540), + [sym__binary_expression] = STATE(1540), + [sym_multiplicative_expression] = STATE(1540), + [sym_additive_expression] = STATE(1540), + [sym_range_expression] = STATE(1540), + [sym_infix_expression] = STATE(1540), + [sym_nil_coalescing_expression] = STATE(1540), + [sym_check_expression] = STATE(1540), + [sym_comparison_expression] = STATE(1540), + [sym_equality_expression] = STATE(1540), + [sym_conjunction_expression] = STATE(1540), + [sym_disjunction_expression] = STATE(1540), + [sym_bitwise_operation] = STATE(1540), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1540), + [sym_await_expression] = STATE(1540), + [sym_ternary_expression] = STATE(1540), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1540), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1540), + [sym_dictionary_literal] = STATE(1540), + [sym__special_literal] = STATE(1540), + [sym__playground_literal] = STATE(1540), + [sym_lambda_literal] = STATE(1540), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1540), + [sym_key_path_expression] = STATE(1540), + [sym_key_path_string_expression] = STATE(1540), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1540), + [sym__comparison_operator] = STATE(1540), + [sym__additive_operator] = STATE(1540), + [sym__multiplicative_operator] = STATE(1540), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1540), + [sym__referenceable_operator] = STATE(1540), + [sym__eq_eq] = STATE(1540), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1843), + [anon_sym_GT] = ACTIONS(1843), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1843), + [anon_sym_LT_EQ] = ACTIONS(1843), + [anon_sym_GT_EQ] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1843), + [anon_sym_PERCENT] = ACTIONS(1843), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1845), + [sym__plus_then_ws] = ACTIONS(1845), + [sym__minus_then_ws] = ACTIONS(1845), + [sym_bang] = ACTIONS(1069), + }, + [424] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1872), + [sym_boolean_literal] = STATE(1872), + [sym__string_literal] = STATE(1872), + [sym_line_string_literal] = STATE(1872), + [sym_multi_line_string_literal] = STATE(1872), + [sym_raw_string_literal] = STATE(1872), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1872), + [sym__unary_expression] = STATE(1872), + [sym_postfix_expression] = STATE(1872), + [sym_constructor_expression] = STATE(1872), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1872), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1872), + [sym_prefix_expression] = STATE(1872), + [sym_as_expression] = STATE(1872), + [sym_selector_expression] = STATE(1872), + [sym__binary_expression] = STATE(1872), + [sym_multiplicative_expression] = STATE(1872), + [sym_additive_expression] = STATE(1872), + [sym_range_expression] = STATE(1872), + [sym_infix_expression] = STATE(1872), + [sym_nil_coalescing_expression] = STATE(1872), + [sym_check_expression] = STATE(1872), + [sym_comparison_expression] = STATE(1872), + [sym_equality_expression] = STATE(1872), + [sym_conjunction_expression] = STATE(1872), + [sym_disjunction_expression] = STATE(1872), + [sym_bitwise_operation] = STATE(1872), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1872), + [sym_await_expression] = STATE(1872), + [sym_ternary_expression] = STATE(1872), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1872), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1872), + [sym_dictionary_literal] = STATE(1872), + [sym__special_literal] = STATE(1872), + [sym__playground_literal] = STATE(1872), + [sym_lambda_literal] = STATE(1872), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1872), + [sym_key_path_expression] = STATE(1872), + [sym_key_path_string_expression] = STATE(1872), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1872), + [sym__comparison_operator] = STATE(1872), + [sym__additive_operator] = STATE(1872), + [sym__multiplicative_operator] = STATE(1872), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1872), + [sym__referenceable_operator] = STATE(1872), + [sym__eq_eq] = STATE(1872), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1847), + [anon_sym_GT] = ACTIONS(1847), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1847), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1847), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1847), + [anon_sym_LT_EQ] = ACTIONS(1847), + [anon_sym_GT_EQ] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_SLASH] = ACTIONS(1847), + [anon_sym_PERCENT] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1849), + [sym__plus_then_ws] = ACTIONS(1849), + [sym__minus_then_ws] = ACTIONS(1849), + [sym_bang] = ACTIONS(1069), + }, + [425] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1797), + [sym_boolean_literal] = STATE(1797), + [sym__string_literal] = STATE(1797), + [sym_line_string_literal] = STATE(1797), + [sym_multi_line_string_literal] = STATE(1797), + [sym_raw_string_literal] = STATE(1797), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1797), + [sym__unary_expression] = STATE(1797), + [sym_postfix_expression] = STATE(1797), + [sym_constructor_expression] = STATE(1797), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1797), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1797), + [sym_prefix_expression] = STATE(1797), + [sym_as_expression] = STATE(1797), + [sym_selector_expression] = STATE(1797), + [sym__binary_expression] = STATE(1797), + [sym_multiplicative_expression] = STATE(1797), + [sym_additive_expression] = STATE(1797), + [sym_range_expression] = STATE(1797), + [sym_infix_expression] = STATE(1797), + [sym_nil_coalescing_expression] = STATE(1797), + [sym_check_expression] = STATE(1797), + [sym_comparison_expression] = STATE(1797), + [sym_equality_expression] = STATE(1797), + [sym_conjunction_expression] = STATE(1797), + [sym_disjunction_expression] = STATE(1797), + [sym_bitwise_operation] = STATE(1797), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1797), + [sym_await_expression] = STATE(1797), + [sym_ternary_expression] = STATE(1797), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1797), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1797), + [sym_dictionary_literal] = STATE(1797), + [sym__special_literal] = STATE(1797), + [sym__playground_literal] = STATE(1797), + [sym_lambda_literal] = STATE(1797), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1797), + [sym_key_path_expression] = STATE(1797), + [sym_key_path_string_expression] = STATE(1797), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1797), + [sym__comparison_operator] = STATE(1797), + [sym__additive_operator] = STATE(1797), + [sym__multiplicative_operator] = STATE(1797), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1797), + [sym__referenceable_operator] = STATE(1797), + [sym__eq_eq] = STATE(1797), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1851), + [anon_sym_GT] = ACTIONS(1851), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1851), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1851), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1851), + [anon_sym_LT_EQ] = ACTIONS(1851), + [anon_sym_GT_EQ] = ACTIONS(1851), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1851), + [anon_sym_SLASH] = ACTIONS(1851), + [anon_sym_PERCENT] = ACTIONS(1851), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1853), + [sym__plus_then_ws] = ACTIONS(1853), + [sym__minus_then_ws] = ACTIONS(1853), + [sym_bang] = ACTIONS(1069), + }, + [426] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1875), + [sym_boolean_literal] = STATE(1875), + [sym__string_literal] = STATE(1875), + [sym_line_string_literal] = STATE(1875), + [sym_multi_line_string_literal] = STATE(1875), + [sym_raw_string_literal] = STATE(1875), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1875), + [sym__unary_expression] = STATE(1875), + [sym_postfix_expression] = STATE(1875), + [sym_constructor_expression] = STATE(1875), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1875), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1875), + [sym_prefix_expression] = STATE(1875), + [sym_as_expression] = STATE(1875), + [sym_selector_expression] = STATE(1875), + [sym__binary_expression] = STATE(1875), + [sym_multiplicative_expression] = STATE(1875), + [sym_additive_expression] = STATE(1875), + [sym_range_expression] = STATE(1875), + [sym_infix_expression] = STATE(1875), + [sym_nil_coalescing_expression] = STATE(1875), + [sym_check_expression] = STATE(1875), + [sym_comparison_expression] = STATE(1875), + [sym_equality_expression] = STATE(1875), + [sym_conjunction_expression] = STATE(1875), + [sym_disjunction_expression] = STATE(1875), + [sym_bitwise_operation] = STATE(1875), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1875), + [sym_await_expression] = STATE(1875), + [sym_ternary_expression] = STATE(1875), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1875), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1875), + [sym_dictionary_literal] = STATE(1875), + [sym__special_literal] = STATE(1875), + [sym__playground_literal] = STATE(1875), + [sym_lambda_literal] = STATE(1875), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1875), + [sym_key_path_expression] = STATE(1875), + [sym_key_path_string_expression] = STATE(1875), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1875), + [sym__comparison_operator] = STATE(1875), + [sym__additive_operator] = STATE(1875), + [sym__multiplicative_operator] = STATE(1875), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1875), + [sym__referenceable_operator] = STATE(1875), + [sym__eq_eq] = STATE(1875), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1855), + [anon_sym_GT] = ACTIONS(1855), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1855), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1855), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1855), + [anon_sym_LT_EQ] = ACTIONS(1855), + [anon_sym_GT_EQ] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1855), + [anon_sym_SLASH] = ACTIONS(1855), + [anon_sym_PERCENT] = ACTIONS(1855), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1857), + [sym__plus_then_ws] = ACTIONS(1857), + [sym__minus_then_ws] = ACTIONS(1857), + [sym_bang] = ACTIONS(1069), + }, + [427] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1889), + [sym_boolean_literal] = STATE(1889), + [sym__string_literal] = STATE(1889), + [sym_line_string_literal] = STATE(1889), + [sym_multi_line_string_literal] = STATE(1889), + [sym_raw_string_literal] = STATE(1889), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1889), + [sym__unary_expression] = STATE(1889), + [sym_postfix_expression] = STATE(1889), + [sym_constructor_expression] = STATE(1889), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1889), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1889), + [sym_prefix_expression] = STATE(1889), + [sym_as_expression] = STATE(1889), + [sym_selector_expression] = STATE(1889), + [sym__binary_expression] = STATE(1889), + [sym_multiplicative_expression] = STATE(1889), + [sym_additive_expression] = STATE(1889), + [sym_range_expression] = STATE(1889), + [sym_infix_expression] = STATE(1889), + [sym_nil_coalescing_expression] = STATE(1889), + [sym_check_expression] = STATE(1889), + [sym_comparison_expression] = STATE(1889), + [sym_equality_expression] = STATE(1889), + [sym_conjunction_expression] = STATE(1889), + [sym_disjunction_expression] = STATE(1889), + [sym_bitwise_operation] = STATE(1889), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1889), + [sym_await_expression] = STATE(1889), + [sym_ternary_expression] = STATE(1889), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1889), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1889), + [sym_dictionary_literal] = STATE(1889), + [sym__special_literal] = STATE(1889), + [sym__playground_literal] = STATE(1889), + [sym_lambda_literal] = STATE(1889), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1889), + [sym_key_path_expression] = STATE(1889), + [sym_key_path_string_expression] = STATE(1889), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1889), + [sym__comparison_operator] = STATE(1889), + [sym__additive_operator] = STATE(1889), + [sym__multiplicative_operator] = STATE(1889), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1889), + [sym__referenceable_operator] = STATE(1889), + [sym__eq_eq] = STATE(1889), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_GT] = ACTIONS(1859), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1859), + [anon_sym_LT_EQ] = ACTIONS(1859), + [anon_sym_GT_EQ] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1859), + [anon_sym_SLASH] = ACTIONS(1859), + [anon_sym_PERCENT] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1861), + [sym__plus_then_ws] = ACTIONS(1861), + [sym__minus_then_ws] = ACTIONS(1861), + [sym_bang] = ACTIONS(833), + }, + [428] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1528), + [sym_boolean_literal] = STATE(1528), + [sym__string_literal] = STATE(1528), + [sym_line_string_literal] = STATE(1528), + [sym_multi_line_string_literal] = STATE(1528), + [sym_raw_string_literal] = STATE(1528), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1528), + [sym__unary_expression] = STATE(1528), + [sym_postfix_expression] = STATE(1528), + [sym_constructor_expression] = STATE(1528), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1528), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1528), + [sym_prefix_expression] = STATE(1528), + [sym_as_expression] = STATE(1528), + [sym_selector_expression] = STATE(1528), + [sym__binary_expression] = STATE(1528), + [sym_multiplicative_expression] = STATE(1528), + [sym_additive_expression] = STATE(1528), + [sym_range_expression] = STATE(1528), + [sym_infix_expression] = STATE(1528), + [sym_nil_coalescing_expression] = STATE(1528), + [sym_check_expression] = STATE(1528), + [sym_comparison_expression] = STATE(1528), + [sym_equality_expression] = STATE(1528), + [sym_conjunction_expression] = STATE(1528), + [sym_disjunction_expression] = STATE(1528), + [sym_bitwise_operation] = STATE(1528), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1528), + [sym_await_expression] = STATE(1528), + [sym_ternary_expression] = STATE(1528), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1528), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1528), + [sym_dictionary_literal] = STATE(1528), + [sym__special_literal] = STATE(1528), + [sym__playground_literal] = STATE(1528), + [sym_lambda_literal] = STATE(1528), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1528), + [sym_key_path_expression] = STATE(1528), + [sym_key_path_string_expression] = STATE(1528), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1528), + [sym__comparison_operator] = STATE(1528), + [sym__additive_operator] = STATE(1528), + [sym__multiplicative_operator] = STATE(1528), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1528), + [sym__referenceable_operator] = STATE(1528), + [sym__eq_eq] = STATE(1528), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_GT] = ACTIONS(1863), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1863), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1863), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1863), + [anon_sym_LT_EQ] = ACTIONS(1863), + [anon_sym_GT_EQ] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1863), + [anon_sym_SLASH] = ACTIONS(1863), + [anon_sym_PERCENT] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1865), + [sym__plus_then_ws] = ACTIONS(1865), + [sym__minus_then_ws] = ACTIONS(1865), + [sym_bang] = ACTIONS(1069), + }, + [429] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1857), + [sym_boolean_literal] = STATE(1857), + [sym__string_literal] = STATE(1857), + [sym_line_string_literal] = STATE(1857), + [sym_multi_line_string_literal] = STATE(1857), + [sym_raw_string_literal] = STATE(1857), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1857), + [sym__unary_expression] = STATE(1857), + [sym_postfix_expression] = STATE(1857), + [sym_constructor_expression] = STATE(1857), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1857), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1857), + [sym_prefix_expression] = STATE(1857), + [sym_as_expression] = STATE(1857), + [sym_selector_expression] = STATE(1857), + [sym__binary_expression] = STATE(1857), + [sym_multiplicative_expression] = STATE(1857), + [sym_additive_expression] = STATE(1857), + [sym_range_expression] = STATE(1857), + [sym_infix_expression] = STATE(1857), + [sym_nil_coalescing_expression] = STATE(1857), + [sym_check_expression] = STATE(1857), + [sym_comparison_expression] = STATE(1857), + [sym_equality_expression] = STATE(1857), + [sym_conjunction_expression] = STATE(1857), + [sym_disjunction_expression] = STATE(1857), + [sym_bitwise_operation] = STATE(1857), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1857), + [sym_await_expression] = STATE(1857), + [sym_ternary_expression] = STATE(1857), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1857), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1857), + [sym_dictionary_literal] = STATE(1857), + [sym__special_literal] = STATE(1857), + [sym__playground_literal] = STATE(1857), + [sym_lambda_literal] = STATE(1857), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1857), + [sym_key_path_expression] = STATE(1857), + [sym_key_path_string_expression] = STATE(1857), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1857), + [sym__comparison_operator] = STATE(1857), + [sym__additive_operator] = STATE(1857), + [sym__multiplicative_operator] = STATE(1857), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1857), + [sym__referenceable_operator] = STATE(1857), + [sym__eq_eq] = STATE(1857), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1867), + [anon_sym_GT] = ACTIONS(1867), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1867), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1867), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1867), + [anon_sym_LT_EQ] = ACTIONS(1867), + [anon_sym_GT_EQ] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1867), + [anon_sym_PERCENT] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1869), + [sym__plus_then_ws] = ACTIONS(1869), + [sym__minus_then_ws] = ACTIONS(1869), + [sym_bang] = ACTIONS(1069), + }, + [430] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1858), + [sym_boolean_literal] = STATE(1858), + [sym__string_literal] = STATE(1858), + [sym_line_string_literal] = STATE(1858), + [sym_multi_line_string_literal] = STATE(1858), + [sym_raw_string_literal] = STATE(1858), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1858), + [sym__unary_expression] = STATE(1858), + [sym_postfix_expression] = STATE(1858), + [sym_constructor_expression] = STATE(1858), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1858), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1858), + [sym_prefix_expression] = STATE(1858), + [sym_as_expression] = STATE(1858), + [sym_selector_expression] = STATE(1858), + [sym__binary_expression] = STATE(1858), + [sym_multiplicative_expression] = STATE(1858), + [sym_additive_expression] = STATE(1858), + [sym_range_expression] = STATE(1858), + [sym_infix_expression] = STATE(1858), + [sym_nil_coalescing_expression] = STATE(1858), + [sym_check_expression] = STATE(1858), + [sym_comparison_expression] = STATE(1858), + [sym_equality_expression] = STATE(1858), + [sym_conjunction_expression] = STATE(1858), + [sym_disjunction_expression] = STATE(1858), + [sym_bitwise_operation] = STATE(1858), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1858), + [sym_await_expression] = STATE(1858), + [sym_ternary_expression] = STATE(1858), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1858), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1858), + [sym_dictionary_literal] = STATE(1858), + [sym__special_literal] = STATE(1858), + [sym__playground_literal] = STATE(1858), + [sym_lambda_literal] = STATE(1858), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1858), + [sym_key_path_expression] = STATE(1858), + [sym_key_path_string_expression] = STATE(1858), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1858), + [sym__comparison_operator] = STATE(1858), + [sym__additive_operator] = STATE(1858), + [sym__multiplicative_operator] = STATE(1858), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1858), + [sym__referenceable_operator] = STATE(1858), + [sym__eq_eq] = STATE(1858), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_GT] = ACTIONS(1871), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1871), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_PERCENT] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1873), + [sym__plus_then_ws] = ACTIONS(1873), + [sym__minus_then_ws] = ACTIONS(1873), + [sym_bang] = ACTIONS(1069), + }, + [431] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1878), + [sym_boolean_literal] = STATE(1878), + [sym__string_literal] = STATE(1878), + [sym_line_string_literal] = STATE(1878), + [sym_multi_line_string_literal] = STATE(1878), + [sym_raw_string_literal] = STATE(1878), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1878), + [sym__unary_expression] = STATE(1878), + [sym_postfix_expression] = STATE(1878), + [sym_constructor_expression] = STATE(1878), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1878), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1878), + [sym_prefix_expression] = STATE(1878), + [sym_as_expression] = STATE(1878), + [sym_selector_expression] = STATE(1878), + [sym__binary_expression] = STATE(1878), + [sym_multiplicative_expression] = STATE(1878), + [sym_additive_expression] = STATE(1878), + [sym_range_expression] = STATE(1878), + [sym_infix_expression] = STATE(1878), + [sym_nil_coalescing_expression] = STATE(1878), + [sym_check_expression] = STATE(1878), + [sym_comparison_expression] = STATE(1878), + [sym_equality_expression] = STATE(1878), + [sym_conjunction_expression] = STATE(1878), + [sym_disjunction_expression] = STATE(1878), + [sym_bitwise_operation] = STATE(1878), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1878), + [sym_await_expression] = STATE(1878), + [sym_ternary_expression] = STATE(1878), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1878), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1878), + [sym_dictionary_literal] = STATE(1878), + [sym__special_literal] = STATE(1878), + [sym__playground_literal] = STATE(1878), + [sym_lambda_literal] = STATE(1878), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1878), + [sym_key_path_expression] = STATE(1878), + [sym_key_path_string_expression] = STATE(1878), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1878), + [sym__comparison_operator] = STATE(1878), + [sym__additive_operator] = STATE(1878), + [sym__multiplicative_operator] = STATE(1878), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1878), + [sym__referenceable_operator] = STATE(1878), + [sym__eq_eq] = STATE(1878), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1875), + [anon_sym_GT] = ACTIONS(1875), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1875), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1875), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1875), + [anon_sym_LT_EQ] = ACTIONS(1875), + [anon_sym_GT_EQ] = ACTIONS(1875), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1875), + [anon_sym_SLASH] = ACTIONS(1875), + [anon_sym_PERCENT] = ACTIONS(1875), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1877), + [sym__plus_then_ws] = ACTIONS(1877), + [sym__minus_then_ws] = ACTIONS(1877), + [sym_bang] = ACTIONS(1069), + }, + [432] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1792), + [sym_boolean_literal] = STATE(1792), + [sym__string_literal] = STATE(1792), + [sym_line_string_literal] = STATE(1792), + [sym_multi_line_string_literal] = STATE(1792), + [sym_raw_string_literal] = STATE(1792), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1792), + [sym__unary_expression] = STATE(1792), + [sym_postfix_expression] = STATE(1792), + [sym_constructor_expression] = STATE(1792), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1792), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1792), + [sym_prefix_expression] = STATE(1792), + [sym_as_expression] = STATE(1792), + [sym_selector_expression] = STATE(1792), + [sym__binary_expression] = STATE(1792), + [sym_multiplicative_expression] = STATE(1792), + [sym_additive_expression] = STATE(1792), + [sym_range_expression] = STATE(1792), + [sym_infix_expression] = STATE(1792), + [sym_nil_coalescing_expression] = STATE(1792), + [sym_check_expression] = STATE(1792), + [sym_comparison_expression] = STATE(1792), + [sym_equality_expression] = STATE(1792), + [sym_conjunction_expression] = STATE(1792), + [sym_disjunction_expression] = STATE(1792), + [sym_bitwise_operation] = STATE(1792), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1792), + [sym_await_expression] = STATE(1792), + [sym_ternary_expression] = STATE(1792), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1792), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1792), + [sym_dictionary_literal] = STATE(1792), + [sym__special_literal] = STATE(1792), + [sym__playground_literal] = STATE(1792), + [sym_lambda_literal] = STATE(1792), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1792), + [sym_key_path_expression] = STATE(1792), + [sym_key_path_string_expression] = STATE(1792), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1792), + [sym__comparison_operator] = STATE(1792), + [sym__additive_operator] = STATE(1792), + [sym__multiplicative_operator] = STATE(1792), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1792), + [sym__referenceable_operator] = STATE(1792), + [sym__eq_eq] = STATE(1792), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_GT] = ACTIONS(1879), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1879), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1879), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1879), + [anon_sym_LT_EQ] = ACTIONS(1879), + [anon_sym_GT_EQ] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_SLASH] = ACTIONS(1879), + [anon_sym_PERCENT] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1881), + [sym__plus_then_ws] = ACTIONS(1881), + [sym__minus_then_ws] = ACTIONS(1881), + [sym_bang] = ACTIONS(1069), + }, + [433] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1670), + [sym_boolean_literal] = STATE(1670), + [sym__string_literal] = STATE(1670), + [sym_line_string_literal] = STATE(1670), + [sym_multi_line_string_literal] = STATE(1670), + [sym_raw_string_literal] = STATE(1670), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1670), + [sym__unary_expression] = STATE(1670), + [sym_postfix_expression] = STATE(1670), + [sym_constructor_expression] = STATE(1670), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1670), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1670), + [sym_prefix_expression] = STATE(1670), + [sym_as_expression] = STATE(1670), + [sym_selector_expression] = STATE(1670), + [sym__binary_expression] = STATE(1670), + [sym_multiplicative_expression] = STATE(1670), + [sym_additive_expression] = STATE(1670), + [sym_range_expression] = STATE(1670), + [sym_infix_expression] = STATE(1670), + [sym_nil_coalescing_expression] = STATE(1670), + [sym_check_expression] = STATE(1670), + [sym_comparison_expression] = STATE(1670), + [sym_equality_expression] = STATE(1670), + [sym_conjunction_expression] = STATE(1670), + [sym_disjunction_expression] = STATE(1670), + [sym_bitwise_operation] = STATE(1670), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1670), + [sym_await_expression] = STATE(1670), + [sym_ternary_expression] = STATE(1670), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1670), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1670), + [sym_dictionary_literal] = STATE(1670), + [sym__special_literal] = STATE(1670), + [sym__playground_literal] = STATE(1670), + [sym_lambda_literal] = STATE(1670), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1670), + [sym_key_path_expression] = STATE(1670), + [sym_key_path_string_expression] = STATE(1670), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1670), + [sym__comparison_operator] = STATE(1670), + [sym__additive_operator] = STATE(1670), + [sym__multiplicative_operator] = STATE(1670), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1670), + [sym__referenceable_operator] = STATE(1670), + [sym__eq_eq] = STATE(1670), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_GT] = ACTIONS(1883), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1883), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1883), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1883), + [anon_sym_LT_EQ] = ACTIONS(1883), + [anon_sym_GT_EQ] = ACTIONS(1883), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1883), + [anon_sym_SLASH] = ACTIONS(1883), + [anon_sym_PERCENT] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1885), + [sym__plus_then_ws] = ACTIONS(1885), + [sym__minus_then_ws] = ACTIONS(1885), + [sym_bang] = ACTIONS(1069), + }, + [434] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1791), + [sym_boolean_literal] = STATE(1791), + [sym__string_literal] = STATE(1791), + [sym_line_string_literal] = STATE(1791), + [sym_multi_line_string_literal] = STATE(1791), + [sym_raw_string_literal] = STATE(1791), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1791), + [sym__unary_expression] = STATE(1791), + [sym_postfix_expression] = STATE(1791), + [sym_constructor_expression] = STATE(1791), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1791), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1791), + [sym_prefix_expression] = STATE(1791), + [sym_as_expression] = STATE(1791), + [sym_selector_expression] = STATE(1791), + [sym__binary_expression] = STATE(1791), + [sym_multiplicative_expression] = STATE(1791), + [sym_additive_expression] = STATE(1791), + [sym_range_expression] = STATE(1791), + [sym_infix_expression] = STATE(1791), + [sym_nil_coalescing_expression] = STATE(1791), + [sym_check_expression] = STATE(1791), + [sym_comparison_expression] = STATE(1791), + [sym_equality_expression] = STATE(1791), + [sym_conjunction_expression] = STATE(1791), + [sym_disjunction_expression] = STATE(1791), + [sym_bitwise_operation] = STATE(1791), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1791), + [sym_await_expression] = STATE(1791), + [sym_ternary_expression] = STATE(1791), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1791), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1791), + [sym_dictionary_literal] = STATE(1791), + [sym__special_literal] = STATE(1791), + [sym__playground_literal] = STATE(1791), + [sym_lambda_literal] = STATE(1791), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1791), + [sym_key_path_expression] = STATE(1791), + [sym_key_path_string_expression] = STATE(1791), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1791), + [sym__comparison_operator] = STATE(1791), + [sym__additive_operator] = STATE(1791), + [sym__multiplicative_operator] = STATE(1791), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1791), + [sym__referenceable_operator] = STATE(1791), + [sym__eq_eq] = STATE(1791), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1887), + [anon_sym_GT] = ACTIONS(1887), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1887), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1887), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1887), + [anon_sym_LT_EQ] = ACTIONS(1887), + [anon_sym_GT_EQ] = ACTIONS(1887), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1887), + [anon_sym_SLASH] = ACTIONS(1887), + [anon_sym_PERCENT] = ACTIONS(1887), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1889), + [sym__plus_then_ws] = ACTIONS(1889), + [sym__minus_then_ws] = ACTIONS(1889), + [sym_bang] = ACTIONS(1069), + }, + [435] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1879), + [sym_boolean_literal] = STATE(1879), + [sym__string_literal] = STATE(1879), + [sym_line_string_literal] = STATE(1879), + [sym_multi_line_string_literal] = STATE(1879), + [sym_raw_string_literal] = STATE(1879), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1879), + [sym__unary_expression] = STATE(1879), + [sym_postfix_expression] = STATE(1879), + [sym_constructor_expression] = STATE(1879), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1879), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1879), + [sym_prefix_expression] = STATE(1879), + [sym_as_expression] = STATE(1879), + [sym_selector_expression] = STATE(1879), + [sym__binary_expression] = STATE(1879), + [sym_multiplicative_expression] = STATE(1879), + [sym_additive_expression] = STATE(1879), + [sym_range_expression] = STATE(1879), + [sym_infix_expression] = STATE(1879), + [sym_nil_coalescing_expression] = STATE(1879), + [sym_check_expression] = STATE(1879), + [sym_comparison_expression] = STATE(1879), + [sym_equality_expression] = STATE(1879), + [sym_conjunction_expression] = STATE(1879), + [sym_disjunction_expression] = STATE(1879), + [sym_bitwise_operation] = STATE(1879), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1879), + [sym_await_expression] = STATE(1879), + [sym_ternary_expression] = STATE(1879), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1879), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1879), + [sym_dictionary_literal] = STATE(1879), + [sym__special_literal] = STATE(1879), + [sym__playground_literal] = STATE(1879), + [sym_lambda_literal] = STATE(1879), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1879), + [sym_key_path_expression] = STATE(1879), + [sym_key_path_string_expression] = STATE(1879), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1879), + [sym__comparison_operator] = STATE(1879), + [sym__additive_operator] = STATE(1879), + [sym__multiplicative_operator] = STATE(1879), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1879), + [sym__referenceable_operator] = STATE(1879), + [sym__eq_eq] = STATE(1879), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1891), + [anon_sym_GT] = ACTIONS(1891), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1891), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1891), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1891), + [anon_sym_LT_EQ] = ACTIONS(1891), + [anon_sym_GT_EQ] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1891), + [anon_sym_SLASH] = ACTIONS(1891), + [anon_sym_PERCENT] = ACTIONS(1891), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1893), + [sym__plus_then_ws] = ACTIONS(1893), + [sym__minus_then_ws] = ACTIONS(1893), + [sym_bang] = ACTIONS(1069), + }, + [436] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1796), + [sym_boolean_literal] = STATE(1796), + [sym__string_literal] = STATE(1796), + [sym_line_string_literal] = STATE(1796), + [sym_multi_line_string_literal] = STATE(1796), + [sym_raw_string_literal] = STATE(1796), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1796), + [sym__unary_expression] = STATE(1796), + [sym_postfix_expression] = STATE(1796), + [sym_constructor_expression] = STATE(1796), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1796), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1796), + [sym_prefix_expression] = STATE(1796), + [sym_as_expression] = STATE(1796), + [sym_selector_expression] = STATE(1796), + [sym__binary_expression] = STATE(1796), + [sym_multiplicative_expression] = STATE(1796), + [sym_additive_expression] = STATE(1796), + [sym_range_expression] = STATE(1796), + [sym_infix_expression] = STATE(1796), + [sym_nil_coalescing_expression] = STATE(1796), + [sym_check_expression] = STATE(1796), + [sym_comparison_expression] = STATE(1796), + [sym_equality_expression] = STATE(1796), + [sym_conjunction_expression] = STATE(1796), + [sym_disjunction_expression] = STATE(1796), + [sym_bitwise_operation] = STATE(1796), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1796), + [sym_await_expression] = STATE(1796), + [sym_ternary_expression] = STATE(1796), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1796), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1796), + [sym_dictionary_literal] = STATE(1796), + [sym__special_literal] = STATE(1796), + [sym__playground_literal] = STATE(1796), + [sym_lambda_literal] = STATE(1796), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1796), + [sym_key_path_expression] = STATE(1796), + [sym_key_path_string_expression] = STATE(1796), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1796), + [sym__comparison_operator] = STATE(1796), + [sym__additive_operator] = STATE(1796), + [sym__multiplicative_operator] = STATE(1796), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1796), + [sym__referenceable_operator] = STATE(1796), + [sym__eq_eq] = STATE(1796), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1895), + [anon_sym_GT] = ACTIONS(1895), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1895), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1895), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1895), + [anon_sym_LT_EQ] = ACTIONS(1895), + [anon_sym_GT_EQ] = ACTIONS(1895), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_SLASH] = ACTIONS(1895), + [anon_sym_PERCENT] = ACTIONS(1895), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1897), + [sym__plus_then_ws] = ACTIONS(1897), + [sym__minus_then_ws] = ACTIONS(1897), + [sym_bang] = ACTIONS(1069), + }, + [437] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1867), + [sym_boolean_literal] = STATE(1867), + [sym__string_literal] = STATE(1867), + [sym_line_string_literal] = STATE(1867), + [sym_multi_line_string_literal] = STATE(1867), + [sym_raw_string_literal] = STATE(1867), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1867), + [sym__unary_expression] = STATE(1867), + [sym_postfix_expression] = STATE(1867), + [sym_constructor_expression] = STATE(1867), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1867), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1867), + [sym_prefix_expression] = STATE(1867), + [sym_as_expression] = STATE(1867), + [sym_selector_expression] = STATE(1867), + [sym__binary_expression] = STATE(1867), + [sym_multiplicative_expression] = STATE(1867), + [sym_additive_expression] = STATE(1867), + [sym_range_expression] = STATE(1867), + [sym_infix_expression] = STATE(1867), + [sym_nil_coalescing_expression] = STATE(1867), + [sym_check_expression] = STATE(1867), + [sym_comparison_expression] = STATE(1867), + [sym_equality_expression] = STATE(1867), + [sym_conjunction_expression] = STATE(1867), + [sym_disjunction_expression] = STATE(1867), + [sym_bitwise_operation] = STATE(1867), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1867), + [sym_await_expression] = STATE(1867), + [sym_ternary_expression] = STATE(1867), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1867), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1867), + [sym_dictionary_literal] = STATE(1867), + [sym__special_literal] = STATE(1867), + [sym__playground_literal] = STATE(1867), + [sym_lambda_literal] = STATE(1867), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1867), + [sym_key_path_expression] = STATE(1867), + [sym_key_path_string_expression] = STATE(1867), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1867), + [sym__comparison_operator] = STATE(1867), + [sym__additive_operator] = STATE(1867), + [sym__multiplicative_operator] = STATE(1867), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1867), + [sym__referenceable_operator] = STATE(1867), + [sym__eq_eq] = STATE(1867), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_GT] = ACTIONS(1899), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1899), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1899), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1899), + [anon_sym_GT_EQ] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1899), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_PERCENT] = ACTIONS(1899), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1901), + [sym__plus_then_ws] = ACTIONS(1901), + [sym__minus_then_ws] = ACTIONS(1901), + [sym_bang] = ACTIONS(1069), + }, + [438] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1870), + [sym_boolean_literal] = STATE(1870), + [sym__string_literal] = STATE(1870), + [sym_line_string_literal] = STATE(1870), + [sym_multi_line_string_literal] = STATE(1870), + [sym_raw_string_literal] = STATE(1870), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1870), + [sym__unary_expression] = STATE(1870), + [sym_postfix_expression] = STATE(1870), + [sym_constructor_expression] = STATE(1870), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1870), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1870), + [sym_prefix_expression] = STATE(1870), + [sym_as_expression] = STATE(1870), + [sym_selector_expression] = STATE(1870), + [sym__binary_expression] = STATE(1870), + [sym_multiplicative_expression] = STATE(1870), + [sym_additive_expression] = STATE(1870), + [sym_range_expression] = STATE(1870), + [sym_infix_expression] = STATE(1870), + [sym_nil_coalescing_expression] = STATE(1870), + [sym_check_expression] = STATE(1870), + [sym_comparison_expression] = STATE(1870), + [sym_equality_expression] = STATE(1870), + [sym_conjunction_expression] = STATE(1870), + [sym_disjunction_expression] = STATE(1870), + [sym_bitwise_operation] = STATE(1870), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1870), + [sym_await_expression] = STATE(1870), + [sym_ternary_expression] = STATE(1870), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1870), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1870), + [sym_dictionary_literal] = STATE(1870), + [sym__special_literal] = STATE(1870), + [sym__playground_literal] = STATE(1870), + [sym_lambda_literal] = STATE(1870), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1870), + [sym_key_path_expression] = STATE(1870), + [sym_key_path_string_expression] = STATE(1870), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1870), + [sym__comparison_operator] = STATE(1870), + [sym__additive_operator] = STATE(1870), + [sym__multiplicative_operator] = STATE(1870), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1870), + [sym__referenceable_operator] = STATE(1870), + [sym__eq_eq] = STATE(1870), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_GT] = ACTIONS(1903), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1903), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1903), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1903), + [anon_sym_LT_EQ] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1903), + [anon_sym_SLASH] = ACTIONS(1903), + [anon_sym_PERCENT] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1905), + [sym__plus_then_ws] = ACTIONS(1905), + [sym__minus_then_ws] = ACTIONS(1905), + [sym_bang] = ACTIONS(1069), + }, + [439] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1882), + [sym_boolean_literal] = STATE(1882), + [sym__string_literal] = STATE(1882), + [sym_line_string_literal] = STATE(1882), + [sym_multi_line_string_literal] = STATE(1882), + [sym_raw_string_literal] = STATE(1882), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1882), + [sym__unary_expression] = STATE(1882), + [sym_postfix_expression] = STATE(1882), + [sym_constructor_expression] = STATE(1882), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1882), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1882), + [sym_prefix_expression] = STATE(1882), + [sym_as_expression] = STATE(1882), + [sym_selector_expression] = STATE(1882), + [sym__binary_expression] = STATE(1882), + [sym_multiplicative_expression] = STATE(1882), + [sym_additive_expression] = STATE(1882), + [sym_range_expression] = STATE(1882), + [sym_infix_expression] = STATE(1882), + [sym_nil_coalescing_expression] = STATE(1882), + [sym_check_expression] = STATE(1882), + [sym_comparison_expression] = STATE(1882), + [sym_equality_expression] = STATE(1882), + [sym_conjunction_expression] = STATE(1882), + [sym_disjunction_expression] = STATE(1882), + [sym_bitwise_operation] = STATE(1882), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1882), + [sym_await_expression] = STATE(1882), + [sym_ternary_expression] = STATE(1882), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1882), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1882), + [sym_dictionary_literal] = STATE(1882), + [sym__special_literal] = STATE(1882), + [sym__playground_literal] = STATE(1882), + [sym_lambda_literal] = STATE(1882), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1882), + [sym_key_path_expression] = STATE(1882), + [sym_key_path_string_expression] = STATE(1882), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1882), + [sym__comparison_operator] = STATE(1882), + [sym__additive_operator] = STATE(1882), + [sym__multiplicative_operator] = STATE(1882), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1882), + [sym__referenceable_operator] = STATE(1882), + [sym__eq_eq] = STATE(1882), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1907), + [anon_sym_GT] = ACTIONS(1907), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1907), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1907), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1907), + [anon_sym_LT_EQ] = ACTIONS(1907), + [anon_sym_GT_EQ] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1907), + [anon_sym_SLASH] = ACTIONS(1907), + [anon_sym_PERCENT] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1909), + [sym__plus_then_ws] = ACTIONS(1909), + [sym__minus_then_ws] = ACTIONS(1909), + [sym_bang] = ACTIONS(1069), + }, + [440] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1883), + [sym_boolean_literal] = STATE(1883), + [sym__string_literal] = STATE(1883), + [sym_line_string_literal] = STATE(1883), + [sym_multi_line_string_literal] = STATE(1883), + [sym_raw_string_literal] = STATE(1883), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1883), + [sym__unary_expression] = STATE(1883), + [sym_postfix_expression] = STATE(1883), + [sym_constructor_expression] = STATE(1883), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1883), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1883), + [sym_prefix_expression] = STATE(1883), + [sym_as_expression] = STATE(1883), + [sym_selector_expression] = STATE(1883), + [sym__binary_expression] = STATE(1883), + [sym_multiplicative_expression] = STATE(1883), + [sym_additive_expression] = STATE(1883), + [sym_range_expression] = STATE(1883), + [sym_infix_expression] = STATE(1883), + [sym_nil_coalescing_expression] = STATE(1883), + [sym_check_expression] = STATE(1883), + [sym_comparison_expression] = STATE(1883), + [sym_equality_expression] = STATE(1883), + [sym_conjunction_expression] = STATE(1883), + [sym_disjunction_expression] = STATE(1883), + [sym_bitwise_operation] = STATE(1883), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1883), + [sym_await_expression] = STATE(1883), + [sym_ternary_expression] = STATE(1883), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1883), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1883), + [sym_dictionary_literal] = STATE(1883), + [sym__special_literal] = STATE(1883), + [sym__playground_literal] = STATE(1883), + [sym_lambda_literal] = STATE(1883), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1883), + [sym_key_path_expression] = STATE(1883), + [sym_key_path_string_expression] = STATE(1883), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1883), + [sym__comparison_operator] = STATE(1883), + [sym__additive_operator] = STATE(1883), + [sym__multiplicative_operator] = STATE(1883), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1883), + [sym__referenceable_operator] = STATE(1883), + [sym__eq_eq] = STATE(1883), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1911), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1911), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1911), + [anon_sym_LT_EQ] = ACTIONS(1911), + [anon_sym_GT_EQ] = ACTIONS(1911), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_PERCENT] = ACTIONS(1911), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1913), + [sym__plus_then_ws] = ACTIONS(1913), + [sym__minus_then_ws] = ACTIONS(1913), + [sym_bang] = ACTIONS(1069), + }, + [441] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1880), + [sym_boolean_literal] = STATE(1880), + [sym__string_literal] = STATE(1880), + [sym_line_string_literal] = STATE(1880), + [sym_multi_line_string_literal] = STATE(1880), + [sym_raw_string_literal] = STATE(1880), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1880), + [sym__unary_expression] = STATE(1880), + [sym_postfix_expression] = STATE(1880), + [sym_constructor_expression] = STATE(1880), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1880), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1880), + [sym_prefix_expression] = STATE(1880), + [sym_as_expression] = STATE(1880), + [sym_selector_expression] = STATE(1880), + [sym__binary_expression] = STATE(1880), + [sym_multiplicative_expression] = STATE(1880), + [sym_additive_expression] = STATE(1880), + [sym_range_expression] = STATE(1880), + [sym_infix_expression] = STATE(1880), + [sym_nil_coalescing_expression] = STATE(1880), + [sym_check_expression] = STATE(1880), + [sym_comparison_expression] = STATE(1880), + [sym_equality_expression] = STATE(1880), + [sym_conjunction_expression] = STATE(1880), + [sym_disjunction_expression] = STATE(1880), + [sym_bitwise_operation] = STATE(1880), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1880), + [sym_await_expression] = STATE(1880), + [sym_ternary_expression] = STATE(1880), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1880), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1880), + [sym_dictionary_literal] = STATE(1880), + [sym__special_literal] = STATE(1880), + [sym__playground_literal] = STATE(1880), + [sym_lambda_literal] = STATE(1880), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1880), + [sym_key_path_expression] = STATE(1880), + [sym_key_path_string_expression] = STATE(1880), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1880), + [sym__comparison_operator] = STATE(1880), + [sym__additive_operator] = STATE(1880), + [sym__multiplicative_operator] = STATE(1880), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1880), + [sym__referenceable_operator] = STATE(1880), + [sym__eq_eq] = STATE(1880), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_GT] = ACTIONS(1915), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1915), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1915), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1915), + [anon_sym_LT_EQ] = ACTIONS(1915), + [anon_sym_GT_EQ] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1915), + [anon_sym_SLASH] = ACTIONS(1915), + [anon_sym_PERCENT] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1917), + [sym__plus_then_ws] = ACTIONS(1917), + [sym__minus_then_ws] = ACTIONS(1917), + [sym_bang] = ACTIONS(1069), + }, + [442] = { + [sym_simple_identifier] = STATE(2623), + [sym__basic_literal] = STATE(1961), + [sym_boolean_literal] = STATE(1961), + [sym__string_literal] = STATE(1961), + [sym_line_string_literal] = STATE(1961), + [sym_multi_line_string_literal] = STATE(1961), + [sym_raw_string_literal] = STATE(1961), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1961), + [sym__unary_expression] = STATE(1961), + [sym_postfix_expression] = STATE(1961), + [sym_constructor_expression] = STATE(1961), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1961), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1961), + [sym_prefix_expression] = STATE(1961), + [sym_as_expression] = STATE(1961), + [sym_selector_expression] = STATE(1961), + [sym__binary_expression] = STATE(1961), + [sym_multiplicative_expression] = STATE(1961), + [sym_additive_expression] = STATE(1961), + [sym_range_expression] = STATE(1961), + [sym_infix_expression] = STATE(1961), + [sym_nil_coalescing_expression] = STATE(1961), + [sym_check_expression] = STATE(1961), + [sym_comparison_expression] = STATE(1961), + [sym_equality_expression] = STATE(1961), + [sym_conjunction_expression] = STATE(1961), + [sym_disjunction_expression] = STATE(1961), + [sym_bitwise_operation] = STATE(1961), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1961), + [sym_await_expression] = STATE(1961), + [sym_ternary_expression] = STATE(1961), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1961), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1961), + [sym_dictionary_literal] = STATE(1961), + [sym__special_literal] = STATE(1961), + [sym__playground_literal] = STATE(1961), + [sym_lambda_literal] = STATE(1961), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1961), + [sym_key_path_expression] = STATE(1961), + [sym_key_path_string_expression] = STATE(1961), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1961), + [sym__comparison_operator] = STATE(1961), + [sym__additive_operator] = STATE(1961), + [sym__multiplicative_operator] = STATE(1961), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1961), + [sym__referenceable_operator] = STATE(1961), + [sym__eq_eq] = STATE(1961), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1135), + [sym_real_literal] = ACTIONS(1137), + [sym_integer_literal] = ACTIONS(1135), + [sym_hex_literal] = ACTIONS(1137), + [sym_oct_literal] = ACTIONS(1137), + [sym_bin_literal] = ACTIONS(1137), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1135), + [anon_sym_GT] = ACTIONS(1135), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1135), + [anon_sym_POUNDfileID] = ACTIONS(1137), + [anon_sym_POUNDfilePath] = ACTIONS(1137), + [anon_sym_POUNDline] = ACTIONS(1137), + [anon_sym_POUNDcolumn] = ACTIONS(1137), + [anon_sym_POUNDfunction] = ACTIONS(1137), + [anon_sym_POUNDdsohandle] = ACTIONS(1137), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1135), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1135), + [anon_sym_LT_EQ] = ACTIONS(1135), + [anon_sym_GT_EQ] = ACTIONS(1135), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1135), + [anon_sym_SLASH] = ACTIONS(1135), + [anon_sym_PERCENT] = ACTIONS(1135), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1137), + [sym__plus_then_ws] = ACTIONS(1137), + [sym__minus_then_ws] = ACTIONS(1137), + [sym_bang] = ACTIONS(833), + }, + [443] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1881), + [sym_boolean_literal] = STATE(1881), + [sym__string_literal] = STATE(1881), + [sym_line_string_literal] = STATE(1881), + [sym_multi_line_string_literal] = STATE(1881), + [sym_raw_string_literal] = STATE(1881), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1881), + [sym__unary_expression] = STATE(1881), + [sym_postfix_expression] = STATE(1881), + [sym_constructor_expression] = STATE(1881), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1881), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1881), + [sym_prefix_expression] = STATE(1881), + [sym_as_expression] = STATE(1881), + [sym_selector_expression] = STATE(1881), + [sym__binary_expression] = STATE(1881), + [sym_multiplicative_expression] = STATE(1881), + [sym_additive_expression] = STATE(1881), + [sym_range_expression] = STATE(1881), + [sym_infix_expression] = STATE(1881), + [sym_nil_coalescing_expression] = STATE(1881), + [sym_check_expression] = STATE(1881), + [sym_comparison_expression] = STATE(1881), + [sym_equality_expression] = STATE(1881), + [sym_conjunction_expression] = STATE(1881), + [sym_disjunction_expression] = STATE(1881), + [sym_bitwise_operation] = STATE(1881), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1881), + [sym_await_expression] = STATE(1881), + [sym_ternary_expression] = STATE(1881), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1881), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1881), + [sym_dictionary_literal] = STATE(1881), + [sym__special_literal] = STATE(1881), + [sym__playground_literal] = STATE(1881), + [sym_lambda_literal] = STATE(1881), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1881), + [sym_key_path_expression] = STATE(1881), + [sym_key_path_string_expression] = STATE(1881), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1881), + [sym__comparison_operator] = STATE(1881), + [sym__additive_operator] = STATE(1881), + [sym__multiplicative_operator] = STATE(1881), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1881), + [sym__referenceable_operator] = STATE(1881), + [sym__eq_eq] = STATE(1881), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1919), + [anon_sym_GT] = ACTIONS(1919), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1919), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1919), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1919), + [anon_sym_LT_EQ] = ACTIONS(1919), + [anon_sym_GT_EQ] = ACTIONS(1919), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1919), + [anon_sym_SLASH] = ACTIONS(1919), + [anon_sym_PERCENT] = ACTIONS(1919), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1921), + [sym__plus_then_ws] = ACTIONS(1921), + [sym__minus_then_ws] = ACTIONS(1921), + [sym_bang] = ACTIONS(1069), + }, + [444] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2165), + [sym_boolean_literal] = STATE(2165), + [sym__string_literal] = STATE(2165), + [sym_line_string_literal] = STATE(2165), + [sym_multi_line_string_literal] = STATE(2165), + [sym_raw_string_literal] = STATE(2165), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2165), + [sym__unary_expression] = STATE(2165), + [sym_postfix_expression] = STATE(2165), + [sym_constructor_expression] = STATE(2165), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2165), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2165), + [sym_prefix_expression] = STATE(2165), + [sym_as_expression] = STATE(2165), + [sym_selector_expression] = STATE(2165), + [sym__binary_expression] = STATE(2165), + [sym_multiplicative_expression] = STATE(2165), + [sym_additive_expression] = STATE(2165), + [sym_range_expression] = STATE(2165), + [sym_infix_expression] = STATE(2165), + [sym_nil_coalescing_expression] = STATE(2165), + [sym_check_expression] = STATE(2165), + [sym_comparison_expression] = STATE(2165), + [sym_equality_expression] = STATE(2165), + [sym_conjunction_expression] = STATE(2165), + [sym_disjunction_expression] = STATE(2165), + [sym_bitwise_operation] = STATE(2165), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2165), + [sym_await_expression] = STATE(2165), + [sym_ternary_expression] = STATE(2165), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2165), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2165), + [sym_dictionary_literal] = STATE(2165), + [sym__special_literal] = STATE(2165), + [sym__playground_literal] = STATE(2165), + [sym_lambda_literal] = STATE(2165), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2165), + [sym_key_path_expression] = STATE(2165), + [sym_key_path_string_expression] = STATE(2165), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2165), + [sym__comparison_operator] = STATE(2165), + [sym__additive_operator] = STATE(2165), + [sym__multiplicative_operator] = STATE(2165), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2165), + [sym__referenceable_operator] = STATE(2165), + [sym__eq_eq] = STATE(2165), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_GT] = ACTIONS(1923), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1923), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1923), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1923), + [anon_sym_LT_EQ] = ACTIONS(1923), + [anon_sym_GT_EQ] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_PERCENT] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1925), + [sym__plus_then_ws] = ACTIONS(1925), + [sym__minus_then_ws] = ACTIONS(1925), + [sym_bang] = ACTIONS(1069), + }, + [445] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2226), + [sym_boolean_literal] = STATE(2226), + [sym__string_literal] = STATE(2226), + [sym_line_string_literal] = STATE(2226), + [sym_multi_line_string_literal] = STATE(2226), + [sym_raw_string_literal] = STATE(2226), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2226), + [sym__unary_expression] = STATE(2226), + [sym_postfix_expression] = STATE(2226), + [sym_constructor_expression] = STATE(2226), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2226), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2226), + [sym_prefix_expression] = STATE(2226), + [sym_as_expression] = STATE(2226), + [sym_selector_expression] = STATE(2226), + [sym__binary_expression] = STATE(2226), + [sym_multiplicative_expression] = STATE(2226), + [sym_additive_expression] = STATE(2226), + [sym_range_expression] = STATE(2226), + [sym_infix_expression] = STATE(2226), + [sym_nil_coalescing_expression] = STATE(2226), + [sym_check_expression] = STATE(2226), + [sym_comparison_expression] = STATE(2226), + [sym_equality_expression] = STATE(2226), + [sym_conjunction_expression] = STATE(2226), + [sym_disjunction_expression] = STATE(2226), + [sym_bitwise_operation] = STATE(2226), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2226), + [sym_await_expression] = STATE(2226), + [sym_ternary_expression] = STATE(2226), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2226), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2226), + [sym_dictionary_literal] = STATE(2226), + [sym__special_literal] = STATE(2226), + [sym__playground_literal] = STATE(2226), + [sym_lambda_literal] = STATE(2226), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2226), + [sym_key_path_expression] = STATE(2226), + [sym_key_path_string_expression] = STATE(2226), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2226), + [sym__comparison_operator] = STATE(2226), + [sym__additive_operator] = STATE(2226), + [sym__multiplicative_operator] = STATE(2226), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2226), + [sym__referenceable_operator] = STATE(2226), + [sym__eq_eq] = STATE(2226), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1927), + [anon_sym_GT] = ACTIONS(1927), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1927), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1927), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1927), + [anon_sym_LT_EQ] = ACTIONS(1927), + [anon_sym_GT_EQ] = ACTIONS(1927), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1927), + [anon_sym_SLASH] = ACTIONS(1927), + [anon_sym_PERCENT] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1929), + [sym__plus_then_ws] = ACTIONS(1929), + [sym__minus_then_ws] = ACTIONS(1929), + [sym_bang] = ACTIONS(833), + }, + [446] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(1486), + [sym_boolean_literal] = STATE(1486), + [sym__string_literal] = STATE(1486), + [sym_line_string_literal] = STATE(1486), + [sym_multi_line_string_literal] = STATE(1486), + [sym_raw_string_literal] = STATE(1486), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(1486), + [sym__unary_expression] = STATE(1486), + [sym_postfix_expression] = STATE(1486), + [sym_constructor_expression] = STATE(1486), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(1486), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(1486), + [sym_prefix_expression] = STATE(1486), + [sym_as_expression] = STATE(1486), + [sym_selector_expression] = STATE(1486), + [sym__binary_expression] = STATE(1486), + [sym_multiplicative_expression] = STATE(1486), + [sym_additive_expression] = STATE(1486), + [sym_range_expression] = STATE(1486), + [sym_infix_expression] = STATE(1486), + [sym_nil_coalescing_expression] = STATE(1486), + [sym_check_expression] = STATE(1486), + [sym_comparison_expression] = STATE(1486), + [sym_equality_expression] = STATE(1486), + [sym_conjunction_expression] = STATE(1486), + [sym_disjunction_expression] = STATE(1486), + [sym_bitwise_operation] = STATE(1486), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(1486), + [sym_await_expression] = STATE(1486), + [sym_ternary_expression] = STATE(1486), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(1486), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(1486), + [sym_dictionary_literal] = STATE(1486), + [sym__special_literal] = STATE(1486), + [sym__playground_literal] = STATE(1486), + [sym_lambda_literal] = STATE(1486), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(1486), + [sym_key_path_expression] = STATE(1486), + [sym_key_path_string_expression] = STATE(1486), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(1486), + [sym__comparison_operator] = STATE(1486), + [sym__additive_operator] = STATE(1486), + [sym__multiplicative_operator] = STATE(1486), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(1486), + [sym__referenceable_operator] = STATE(1486), + [sym__eq_eq] = STATE(1486), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_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(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_GT] = ACTIONS(1931), + [sym__await_operator] = ACTIONS(39), + [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(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(1931), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1931), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1931), + [anon_sym_LT_EQ] = ACTIONS(1931), + [anon_sym_GT_EQ] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(1931), + [anon_sym_SLASH] = ACTIONS(1931), + [anon_sym_PERCENT] = ACTIONS(1931), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(1933), + [sym__plus_then_ws] = ACTIONS(1933), + [sym__minus_then_ws] = ACTIONS(1933), + [sym_bang] = ACTIONS(137), + }, + [447] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1795), + [sym_boolean_literal] = STATE(1795), + [sym__string_literal] = STATE(1795), + [sym_line_string_literal] = STATE(1795), + [sym_multi_line_string_literal] = STATE(1795), + [sym_raw_string_literal] = STATE(1795), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1795), + [sym__unary_expression] = STATE(1795), + [sym_postfix_expression] = STATE(1795), + [sym_constructor_expression] = STATE(1795), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1795), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1795), + [sym_prefix_expression] = STATE(1795), + [sym_as_expression] = STATE(1795), + [sym_selector_expression] = STATE(1795), + [sym__binary_expression] = STATE(1795), + [sym_multiplicative_expression] = STATE(1795), + [sym_additive_expression] = STATE(1795), + [sym_range_expression] = STATE(1795), + [sym_infix_expression] = STATE(1795), + [sym_nil_coalescing_expression] = STATE(1795), + [sym_check_expression] = STATE(1795), + [sym_comparison_expression] = STATE(1795), + [sym_equality_expression] = STATE(1795), + [sym_conjunction_expression] = STATE(1795), + [sym_disjunction_expression] = STATE(1795), + [sym_bitwise_operation] = STATE(1795), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1795), + [sym_await_expression] = STATE(1795), + [sym_ternary_expression] = STATE(1795), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1795), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1795), + [sym_dictionary_literal] = STATE(1795), + [sym__special_literal] = STATE(1795), + [sym__playground_literal] = STATE(1795), + [sym_lambda_literal] = STATE(1795), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1795), + [sym_key_path_expression] = STATE(1795), + [sym_key_path_string_expression] = STATE(1795), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1795), + [sym__comparison_operator] = STATE(1795), + [sym__additive_operator] = STATE(1795), + [sym__multiplicative_operator] = STATE(1795), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1795), + [sym__referenceable_operator] = STATE(1795), + [sym__eq_eq] = STATE(1795), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1935), + [anon_sym_GT] = ACTIONS(1935), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1935), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1935), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1935), + [anon_sym_LT_EQ] = ACTIONS(1935), + [anon_sym_GT_EQ] = ACTIONS(1935), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1935), + [anon_sym_SLASH] = ACTIONS(1935), + [anon_sym_PERCENT] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1937), + [sym__plus_then_ws] = ACTIONS(1937), + [sym__minus_then_ws] = ACTIONS(1937), + [sym_bang] = ACTIONS(1069), + }, + [448] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1884), + [sym_boolean_literal] = STATE(1884), + [sym__string_literal] = STATE(1884), + [sym_line_string_literal] = STATE(1884), + [sym_multi_line_string_literal] = STATE(1884), + [sym_raw_string_literal] = STATE(1884), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1884), + [sym__unary_expression] = STATE(1884), + [sym_postfix_expression] = STATE(1884), + [sym_constructor_expression] = STATE(1884), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1884), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1884), + [sym_prefix_expression] = STATE(1884), + [sym_as_expression] = STATE(1884), + [sym_selector_expression] = STATE(1884), + [sym__binary_expression] = STATE(1884), + [sym_multiplicative_expression] = STATE(1884), + [sym_additive_expression] = STATE(1884), + [sym_range_expression] = STATE(1884), + [sym_infix_expression] = STATE(1884), + [sym_nil_coalescing_expression] = STATE(1884), + [sym_check_expression] = STATE(1884), + [sym_comparison_expression] = STATE(1884), + [sym_equality_expression] = STATE(1884), + [sym_conjunction_expression] = STATE(1884), + [sym_disjunction_expression] = STATE(1884), + [sym_bitwise_operation] = STATE(1884), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1884), + [sym_await_expression] = STATE(1884), + [sym_ternary_expression] = STATE(1884), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1884), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1884), + [sym_dictionary_literal] = STATE(1884), + [sym__special_literal] = STATE(1884), + [sym__playground_literal] = STATE(1884), + [sym_lambda_literal] = STATE(1884), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1884), + [sym_key_path_expression] = STATE(1884), + [sym_key_path_string_expression] = STATE(1884), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1884), + [sym__comparison_operator] = STATE(1884), + [sym__additive_operator] = STATE(1884), + [sym__multiplicative_operator] = STATE(1884), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1884), + [sym__referenceable_operator] = STATE(1884), + [sym__eq_eq] = STATE(1884), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1939), + [anon_sym_GT] = ACTIONS(1939), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1939), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1939), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1939), + [anon_sym_LT_EQ] = ACTIONS(1939), + [anon_sym_GT_EQ] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1939), + [anon_sym_SLASH] = ACTIONS(1939), + [anon_sym_PERCENT] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1941), + [sym__plus_then_ws] = ACTIONS(1941), + [sym__minus_then_ws] = ACTIONS(1941), + [sym_bang] = ACTIONS(1069), + }, + [449] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1941), + [sym_boolean_literal] = STATE(1941), + [sym__string_literal] = STATE(1941), + [sym_line_string_literal] = STATE(1941), + [sym_multi_line_string_literal] = STATE(1941), + [sym_raw_string_literal] = STATE(1941), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1941), + [sym__unary_expression] = STATE(1941), + [sym_postfix_expression] = STATE(1941), + [sym_constructor_expression] = STATE(1941), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1941), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1941), + [sym_prefix_expression] = STATE(1941), + [sym_as_expression] = STATE(1941), + [sym_selector_expression] = STATE(1941), + [sym__binary_expression] = STATE(1941), + [sym_multiplicative_expression] = STATE(1941), + [sym_additive_expression] = STATE(1941), + [sym_range_expression] = STATE(1941), + [sym_infix_expression] = STATE(1941), + [sym_nil_coalescing_expression] = STATE(1941), + [sym_check_expression] = STATE(1941), + [sym_comparison_expression] = STATE(1941), + [sym_equality_expression] = STATE(1941), + [sym_conjunction_expression] = STATE(1941), + [sym_disjunction_expression] = STATE(1941), + [sym_bitwise_operation] = STATE(1941), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1941), + [sym_await_expression] = STATE(1941), + [sym_ternary_expression] = STATE(1941), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1941), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1941), + [sym_dictionary_literal] = STATE(1941), + [sym__special_literal] = STATE(1941), + [sym__playground_literal] = STATE(1941), + [sym_lambda_literal] = STATE(1941), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1941), + [sym_key_path_expression] = STATE(1941), + [sym_key_path_string_expression] = STATE(1941), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1941), + [sym__comparison_operator] = STATE(1941), + [sym__additive_operator] = STATE(1941), + [sym__multiplicative_operator] = STATE(1941), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1941), + [sym__referenceable_operator] = STATE(1941), + [sym__eq_eq] = STATE(1941), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_GT] = ACTIONS(1943), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1943), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1943), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1943), + [anon_sym_LT_EQ] = ACTIONS(1943), + [anon_sym_GT_EQ] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1943), + [anon_sym_SLASH] = ACTIONS(1943), + [anon_sym_PERCENT] = ACTIONS(1943), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1945), + [sym__plus_then_ws] = ACTIONS(1945), + [sym__minus_then_ws] = ACTIONS(1945), + [sym_bang] = ACTIONS(833), + }, + [450] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1896), + [sym_boolean_literal] = STATE(1896), + [sym__string_literal] = STATE(1896), + [sym_line_string_literal] = STATE(1896), + [sym_multi_line_string_literal] = STATE(1896), + [sym_raw_string_literal] = STATE(1896), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1896), + [sym__unary_expression] = STATE(1896), + [sym_postfix_expression] = STATE(1896), + [sym_constructor_expression] = STATE(1896), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1896), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1896), + [sym_prefix_expression] = STATE(1896), + [sym_as_expression] = STATE(1896), + [sym_selector_expression] = STATE(1896), + [sym__binary_expression] = STATE(1896), + [sym_multiplicative_expression] = STATE(1896), + [sym_additive_expression] = STATE(1896), + [sym_range_expression] = STATE(1896), + [sym_infix_expression] = STATE(1896), + [sym_nil_coalescing_expression] = STATE(1896), + [sym_check_expression] = STATE(1896), + [sym_comparison_expression] = STATE(1896), + [sym_equality_expression] = STATE(1896), + [sym_conjunction_expression] = STATE(1896), + [sym_disjunction_expression] = STATE(1896), + [sym_bitwise_operation] = STATE(1896), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1896), + [sym_await_expression] = STATE(1896), + [sym_ternary_expression] = STATE(1896), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1896), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1896), + [sym_dictionary_literal] = STATE(1896), + [sym__special_literal] = STATE(1896), + [sym__playground_literal] = STATE(1896), + [sym_lambda_literal] = STATE(1896), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1896), + [sym_key_path_expression] = STATE(1896), + [sym_key_path_string_expression] = STATE(1896), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1896), + [sym__comparison_operator] = STATE(1896), + [sym__additive_operator] = STATE(1896), + [sym__multiplicative_operator] = STATE(1896), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1896), + [sym__referenceable_operator] = STATE(1896), + [sym__eq_eq] = STATE(1896), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_GT] = ACTIONS(1947), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1947), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1947), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1947), + [anon_sym_LT_EQ] = ACTIONS(1947), + [anon_sym_GT_EQ] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_PERCENT] = ACTIONS(1947), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1949), + [sym__plus_then_ws] = ACTIONS(1949), + [sym__minus_then_ws] = ACTIONS(1949), + [sym_bang] = ACTIONS(1069), + }, + [451] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1885), + [sym_boolean_literal] = STATE(1885), + [sym__string_literal] = STATE(1885), + [sym_line_string_literal] = STATE(1885), + [sym_multi_line_string_literal] = STATE(1885), + [sym_raw_string_literal] = STATE(1885), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1885), + [sym__unary_expression] = STATE(1885), + [sym_postfix_expression] = STATE(1885), + [sym_constructor_expression] = STATE(1885), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1885), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1885), + [sym_prefix_expression] = STATE(1885), + [sym_as_expression] = STATE(1885), + [sym_selector_expression] = STATE(1885), + [sym__binary_expression] = STATE(1885), + [sym_multiplicative_expression] = STATE(1885), + [sym_additive_expression] = STATE(1885), + [sym_range_expression] = STATE(1885), + [sym_infix_expression] = STATE(1885), + [sym_nil_coalescing_expression] = STATE(1885), + [sym_check_expression] = STATE(1885), + [sym_comparison_expression] = STATE(1885), + [sym_equality_expression] = STATE(1885), + [sym_conjunction_expression] = STATE(1885), + [sym_disjunction_expression] = STATE(1885), + [sym_bitwise_operation] = STATE(1885), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1885), + [sym_await_expression] = STATE(1885), + [sym_ternary_expression] = STATE(1885), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1885), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1885), + [sym_dictionary_literal] = STATE(1885), + [sym__special_literal] = STATE(1885), + [sym__playground_literal] = STATE(1885), + [sym_lambda_literal] = STATE(1885), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1885), + [sym_key_path_expression] = STATE(1885), + [sym_key_path_string_expression] = STATE(1885), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1885), + [sym__comparison_operator] = STATE(1885), + [sym__additive_operator] = STATE(1885), + [sym__multiplicative_operator] = STATE(1885), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1885), + [sym__referenceable_operator] = STATE(1885), + [sym__eq_eq] = STATE(1885), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1951), + [anon_sym_GT] = ACTIONS(1951), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1951), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1951), + [anon_sym_LT_EQ] = ACTIONS(1951), + [anon_sym_GT_EQ] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1951), + [anon_sym_SLASH] = ACTIONS(1951), + [anon_sym_PERCENT] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1953), + [sym__plus_then_ws] = ACTIONS(1953), + [sym__minus_then_ws] = ACTIONS(1953), + [sym_bang] = ACTIONS(1069), + }, + [452] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1902), + [sym_boolean_literal] = STATE(1902), + [sym__string_literal] = STATE(1902), + [sym_line_string_literal] = STATE(1902), + [sym_multi_line_string_literal] = STATE(1902), + [sym_raw_string_literal] = STATE(1902), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1902), + [sym__unary_expression] = STATE(1902), + [sym_postfix_expression] = STATE(1902), + [sym_constructor_expression] = STATE(1902), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1902), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1902), + [sym_prefix_expression] = STATE(1902), + [sym_as_expression] = STATE(1902), + [sym_selector_expression] = STATE(1902), + [sym__binary_expression] = STATE(1902), + [sym_multiplicative_expression] = STATE(1902), + [sym_additive_expression] = STATE(1902), + [sym_range_expression] = STATE(1902), + [sym_infix_expression] = STATE(1902), + [sym_nil_coalescing_expression] = STATE(1902), + [sym_check_expression] = STATE(1902), + [sym_comparison_expression] = STATE(1902), + [sym_equality_expression] = STATE(1902), + [sym_conjunction_expression] = STATE(1902), + [sym_disjunction_expression] = STATE(1902), + [sym_bitwise_operation] = STATE(1902), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1902), + [sym_await_expression] = STATE(1902), + [sym_ternary_expression] = STATE(1902), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1902), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1902), + [sym_dictionary_literal] = STATE(1902), + [sym__special_literal] = STATE(1902), + [sym__playground_literal] = STATE(1902), + [sym_lambda_literal] = STATE(1902), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1902), + [sym_key_path_expression] = STATE(1902), + [sym_key_path_string_expression] = STATE(1902), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1902), + [sym__comparison_operator] = STATE(1902), + [sym__additive_operator] = STATE(1902), + [sym__multiplicative_operator] = STATE(1902), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1902), + [sym__referenceable_operator] = STATE(1902), + [sym__eq_eq] = STATE(1902), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1955), + [anon_sym_GT] = ACTIONS(1955), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), + [anon_sym_LT_EQ] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_SLASH] = ACTIONS(1955), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1957), + [sym__plus_then_ws] = ACTIONS(1957), + [sym__minus_then_ws] = ACTIONS(1957), + [sym_bang] = ACTIONS(1069), + }, + [453] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1782), + [sym_boolean_literal] = STATE(1782), + [sym__string_literal] = STATE(1782), + [sym_line_string_literal] = STATE(1782), + [sym_multi_line_string_literal] = STATE(1782), + [sym_raw_string_literal] = STATE(1782), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1782), + [sym__unary_expression] = STATE(1782), + [sym_postfix_expression] = STATE(1782), + [sym_constructor_expression] = STATE(1782), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1782), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1782), + [sym_prefix_expression] = STATE(1782), + [sym_as_expression] = STATE(1782), + [sym_selector_expression] = STATE(1782), + [sym__binary_expression] = STATE(1782), + [sym_multiplicative_expression] = STATE(1782), + [sym_additive_expression] = STATE(1782), + [sym_range_expression] = STATE(1782), + [sym_infix_expression] = STATE(1782), + [sym_nil_coalescing_expression] = STATE(1782), + [sym_check_expression] = STATE(1782), + [sym_comparison_expression] = STATE(1782), + [sym_equality_expression] = STATE(1782), + [sym_conjunction_expression] = STATE(1782), + [sym_disjunction_expression] = STATE(1782), + [sym_bitwise_operation] = STATE(1782), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1782), + [sym_await_expression] = STATE(1782), + [sym_ternary_expression] = STATE(1782), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1782), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1782), + [sym_dictionary_literal] = STATE(1782), + [sym__special_literal] = STATE(1782), + [sym__playground_literal] = STATE(1782), + [sym_lambda_literal] = STATE(1782), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1782), + [sym_key_path_expression] = STATE(1782), + [sym_key_path_string_expression] = STATE(1782), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1782), + [sym__comparison_operator] = STATE(1782), + [sym__additive_operator] = STATE(1782), + [sym__multiplicative_operator] = STATE(1782), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1782), + [sym__referenceable_operator] = STATE(1782), + [sym__eq_eq] = STATE(1782), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_GT] = ACTIONS(1959), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1959), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1959), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1959), + [anon_sym_LT_EQ] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1959), + [anon_sym_SLASH] = ACTIONS(1959), + [anon_sym_PERCENT] = ACTIONS(1959), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1961), + [sym__plus_then_ws] = ACTIONS(1961), + [sym__minus_then_ws] = ACTIONS(1961), + [sym_bang] = ACTIONS(1069), + }, + [454] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1907), + [sym_boolean_literal] = STATE(1907), + [sym__string_literal] = STATE(1907), + [sym_line_string_literal] = STATE(1907), + [sym_multi_line_string_literal] = STATE(1907), + [sym_raw_string_literal] = STATE(1907), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1907), + [sym__unary_expression] = STATE(1907), + [sym_postfix_expression] = STATE(1907), + [sym_constructor_expression] = STATE(1907), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1907), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1907), + [sym_prefix_expression] = STATE(1907), + [sym_as_expression] = STATE(1907), + [sym_selector_expression] = STATE(1907), + [sym__binary_expression] = STATE(1907), + [sym_multiplicative_expression] = STATE(1907), + [sym_additive_expression] = STATE(1907), + [sym_range_expression] = STATE(1907), + [sym_infix_expression] = STATE(1907), + [sym_nil_coalescing_expression] = STATE(1907), + [sym_check_expression] = STATE(1907), + [sym_comparison_expression] = STATE(1907), + [sym_equality_expression] = STATE(1907), + [sym_conjunction_expression] = STATE(1907), + [sym_disjunction_expression] = STATE(1907), + [sym_bitwise_operation] = STATE(1907), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1907), + [sym_await_expression] = STATE(1907), + [sym_ternary_expression] = STATE(1907), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1907), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1907), + [sym_dictionary_literal] = STATE(1907), + [sym__special_literal] = STATE(1907), + [sym__playground_literal] = STATE(1907), + [sym_lambda_literal] = STATE(1907), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1907), + [sym_key_path_expression] = STATE(1907), + [sym_key_path_string_expression] = STATE(1907), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1907), + [sym__comparison_operator] = STATE(1907), + [sym__additive_operator] = STATE(1907), + [sym__multiplicative_operator] = STATE(1907), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1907), + [sym__referenceable_operator] = STATE(1907), + [sym__eq_eq] = STATE(1907), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1963), + [anon_sym_GT] = ACTIONS(1963), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1963), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1963), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1963), + [anon_sym_LT_EQ] = ACTIONS(1963), + [anon_sym_GT_EQ] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1963), + [anon_sym_SLASH] = ACTIONS(1963), + [anon_sym_PERCENT] = ACTIONS(1963), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1965), + [sym__plus_then_ws] = ACTIONS(1965), + [sym__minus_then_ws] = ACTIONS(1965), + [sym_bang] = ACTIONS(1069), + }, + [455] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1908), + [sym_boolean_literal] = STATE(1908), + [sym__string_literal] = STATE(1908), + [sym_line_string_literal] = STATE(1908), + [sym_multi_line_string_literal] = STATE(1908), + [sym_raw_string_literal] = STATE(1908), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1908), + [sym__unary_expression] = STATE(1908), + [sym_postfix_expression] = STATE(1908), + [sym_constructor_expression] = STATE(1908), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1908), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1908), + [sym_prefix_expression] = STATE(1908), + [sym_as_expression] = STATE(1908), + [sym_selector_expression] = STATE(1908), + [sym__binary_expression] = STATE(1908), + [sym_multiplicative_expression] = STATE(1908), + [sym_additive_expression] = STATE(1908), + [sym_range_expression] = STATE(1908), + [sym_infix_expression] = STATE(1908), + [sym_nil_coalescing_expression] = STATE(1908), + [sym_check_expression] = STATE(1908), + [sym_comparison_expression] = STATE(1908), + [sym_equality_expression] = STATE(1908), + [sym_conjunction_expression] = STATE(1908), + [sym_disjunction_expression] = STATE(1908), + [sym_bitwise_operation] = STATE(1908), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1908), + [sym_await_expression] = STATE(1908), + [sym_ternary_expression] = STATE(1908), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1908), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1908), + [sym_dictionary_literal] = STATE(1908), + [sym__special_literal] = STATE(1908), + [sym__playground_literal] = STATE(1908), + [sym_lambda_literal] = STATE(1908), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1908), + [sym_key_path_expression] = STATE(1908), + [sym_key_path_string_expression] = STATE(1908), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1908), + [sym__comparison_operator] = STATE(1908), + [sym__additive_operator] = STATE(1908), + [sym__multiplicative_operator] = STATE(1908), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1908), + [sym__referenceable_operator] = STATE(1908), + [sym__eq_eq] = STATE(1908), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1967), + [anon_sym_GT] = ACTIONS(1967), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1967), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1967), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1967), + [anon_sym_LT_EQ] = ACTIONS(1967), + [anon_sym_GT_EQ] = ACTIONS(1967), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1967), + [anon_sym_SLASH] = ACTIONS(1967), + [anon_sym_PERCENT] = ACTIONS(1967), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1969), + [sym__plus_then_ws] = ACTIONS(1969), + [sym__minus_then_ws] = ACTIONS(1969), + [sym_bang] = ACTIONS(1069), + }, + [456] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1781), + [sym_boolean_literal] = STATE(1781), + [sym__string_literal] = STATE(1781), + [sym_line_string_literal] = STATE(1781), + [sym_multi_line_string_literal] = STATE(1781), + [sym_raw_string_literal] = STATE(1781), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1781), + [sym__unary_expression] = STATE(1781), + [sym_postfix_expression] = STATE(1781), + [sym_constructor_expression] = STATE(1781), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1781), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1781), + [sym_prefix_expression] = STATE(1781), + [sym_as_expression] = STATE(1781), + [sym_selector_expression] = STATE(1781), + [sym__binary_expression] = STATE(1781), + [sym_multiplicative_expression] = STATE(1781), + [sym_additive_expression] = STATE(1781), + [sym_range_expression] = STATE(1781), + [sym_infix_expression] = STATE(1781), + [sym_nil_coalescing_expression] = STATE(1781), + [sym_check_expression] = STATE(1781), + [sym_comparison_expression] = STATE(1781), + [sym_equality_expression] = STATE(1781), + [sym_conjunction_expression] = STATE(1781), + [sym_disjunction_expression] = STATE(1781), + [sym_bitwise_operation] = STATE(1781), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1781), + [sym_await_expression] = STATE(1781), + [sym_ternary_expression] = STATE(1781), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1781), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1781), + [sym_dictionary_literal] = STATE(1781), + [sym__special_literal] = STATE(1781), + [sym__playground_literal] = STATE(1781), + [sym_lambda_literal] = STATE(1781), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1781), + [sym_key_path_expression] = STATE(1781), + [sym_key_path_string_expression] = STATE(1781), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1781), + [sym__comparison_operator] = STATE(1781), + [sym__additive_operator] = STATE(1781), + [sym__multiplicative_operator] = STATE(1781), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1781), + [sym__referenceable_operator] = STATE(1781), + [sym__eq_eq] = STATE(1781), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_GT] = ACTIONS(1971), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1971), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1971), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1971), + [anon_sym_LT_EQ] = ACTIONS(1971), + [anon_sym_GT_EQ] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_SLASH] = ACTIONS(1971), + [anon_sym_PERCENT] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1973), + [sym__plus_then_ws] = ACTIONS(1973), + [sym__minus_then_ws] = ACTIONS(1973), + [sym_bang] = ACTIONS(1069), + }, + [457] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1886), + [sym_boolean_literal] = STATE(1886), + [sym__string_literal] = STATE(1886), + [sym_line_string_literal] = STATE(1886), + [sym_multi_line_string_literal] = STATE(1886), + [sym_raw_string_literal] = STATE(1886), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1886), + [sym__unary_expression] = STATE(1886), + [sym_postfix_expression] = STATE(1886), + [sym_constructor_expression] = STATE(1886), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1886), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1886), + [sym_prefix_expression] = STATE(1886), + [sym_as_expression] = STATE(1886), + [sym_selector_expression] = STATE(1886), + [sym__binary_expression] = STATE(1886), + [sym_multiplicative_expression] = STATE(1886), + [sym_additive_expression] = STATE(1886), + [sym_range_expression] = STATE(1886), + [sym_infix_expression] = STATE(1886), + [sym_nil_coalescing_expression] = STATE(1886), + [sym_check_expression] = STATE(1886), + [sym_comparison_expression] = STATE(1886), + [sym_equality_expression] = STATE(1886), + [sym_conjunction_expression] = STATE(1886), + [sym_disjunction_expression] = STATE(1886), + [sym_bitwise_operation] = STATE(1886), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1886), + [sym_await_expression] = STATE(1886), + [sym_ternary_expression] = STATE(1886), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1886), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1886), + [sym_dictionary_literal] = STATE(1886), + [sym__special_literal] = STATE(1886), + [sym__playground_literal] = STATE(1886), + [sym_lambda_literal] = STATE(1886), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1886), + [sym_key_path_expression] = STATE(1886), + [sym_key_path_string_expression] = STATE(1886), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1886), + [sym__comparison_operator] = STATE(1886), + [sym__additive_operator] = STATE(1886), + [sym__multiplicative_operator] = STATE(1886), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1886), + [sym__referenceable_operator] = STATE(1886), + [sym__eq_eq] = STATE(1886), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1975), + [anon_sym_GT] = ACTIONS(1975), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1975), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1975), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1975), + [anon_sym_LT_EQ] = ACTIONS(1975), + [anon_sym_GT_EQ] = ACTIONS(1975), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_SLASH] = ACTIONS(1975), + [anon_sym_PERCENT] = ACTIONS(1975), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1977), + [sym__plus_then_ws] = ACTIONS(1977), + [sym__minus_then_ws] = ACTIONS(1977), + [sym_bang] = ACTIONS(1069), + }, + [458] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2241), + [sym_boolean_literal] = STATE(2241), + [sym__string_literal] = STATE(2241), + [sym_line_string_literal] = STATE(2241), + [sym_multi_line_string_literal] = STATE(2241), + [sym_raw_string_literal] = STATE(2241), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2241), + [sym__unary_expression] = STATE(2241), + [sym_postfix_expression] = STATE(2241), + [sym_constructor_expression] = STATE(2241), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2241), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2241), + [sym_prefix_expression] = STATE(2241), + [sym_as_expression] = STATE(2241), + [sym_selector_expression] = STATE(2241), + [sym__binary_expression] = STATE(2241), + [sym_multiplicative_expression] = STATE(2241), + [sym_additive_expression] = STATE(2241), + [sym_range_expression] = STATE(2241), + [sym_infix_expression] = STATE(2241), + [sym_nil_coalescing_expression] = STATE(2241), + [sym_check_expression] = STATE(2241), + [sym_comparison_expression] = STATE(2241), + [sym_equality_expression] = STATE(2241), + [sym_conjunction_expression] = STATE(2241), + [sym_disjunction_expression] = STATE(2241), + [sym_bitwise_operation] = STATE(2241), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2241), + [sym_await_expression] = STATE(2241), + [sym_ternary_expression] = STATE(2241), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2241), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2241), + [sym_dictionary_literal] = STATE(2241), + [sym__special_literal] = STATE(2241), + [sym__playground_literal] = STATE(2241), + [sym_lambda_literal] = STATE(2241), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2241), + [sym_key_path_expression] = STATE(2241), + [sym_key_path_string_expression] = STATE(2241), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2241), + [sym__comparison_operator] = STATE(2241), + [sym__additive_operator] = STATE(2241), + [sym__multiplicative_operator] = STATE(2241), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2241), + [sym__referenceable_operator] = STATE(2241), + [sym__eq_eq] = STATE(2241), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1979), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1979), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1979), + [anon_sym_LT_EQ] = ACTIONS(1979), + [anon_sym_GT_EQ] = ACTIONS(1979), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1979), + [anon_sym_PERCENT] = ACTIONS(1979), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1981), + [sym__plus_then_ws] = ACTIONS(1981), + [sym__minus_then_ws] = ACTIONS(1981), + [sym_bang] = ACTIONS(833), + }, + [459] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1890), + [sym_boolean_literal] = STATE(1890), + [sym__string_literal] = STATE(1890), + [sym_line_string_literal] = STATE(1890), + [sym_multi_line_string_literal] = STATE(1890), + [sym_raw_string_literal] = STATE(1890), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1890), + [sym__unary_expression] = STATE(1890), + [sym_postfix_expression] = STATE(1890), + [sym_constructor_expression] = STATE(1890), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1890), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1890), + [sym_prefix_expression] = STATE(1890), + [sym_as_expression] = STATE(1890), + [sym_selector_expression] = STATE(1890), + [sym__binary_expression] = STATE(1890), + [sym_multiplicative_expression] = STATE(1890), + [sym_additive_expression] = STATE(1890), + [sym_range_expression] = STATE(1890), + [sym_infix_expression] = STATE(1890), + [sym_nil_coalescing_expression] = STATE(1890), + [sym_check_expression] = STATE(1890), + [sym_comparison_expression] = STATE(1890), + [sym_equality_expression] = STATE(1890), + [sym_conjunction_expression] = STATE(1890), + [sym_disjunction_expression] = STATE(1890), + [sym_bitwise_operation] = STATE(1890), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1890), + [sym_await_expression] = STATE(1890), + [sym_ternary_expression] = STATE(1890), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1890), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1890), + [sym_dictionary_literal] = STATE(1890), + [sym__special_literal] = STATE(1890), + [sym__playground_literal] = STATE(1890), + [sym_lambda_literal] = STATE(1890), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1890), + [sym_key_path_expression] = STATE(1890), + [sym_key_path_string_expression] = STATE(1890), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1890), + [sym__comparison_operator] = STATE(1890), + [sym__additive_operator] = STATE(1890), + [sym__multiplicative_operator] = STATE(1890), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1890), + [sym__referenceable_operator] = STATE(1890), + [sym__eq_eq] = STATE(1890), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1983), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1983), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1983), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1983), + [anon_sym_LT_EQ] = ACTIONS(1983), + [anon_sym_GT_EQ] = ACTIONS(1983), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1983), + [anon_sym_SLASH] = ACTIONS(1983), + [anon_sym_PERCENT] = ACTIONS(1983), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1985), + [sym__plus_then_ws] = ACTIONS(1985), + [sym__minus_then_ws] = ACTIONS(1985), + [sym_bang] = ACTIONS(1069), + }, + [460] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1794), + [sym_boolean_literal] = STATE(1794), + [sym__string_literal] = STATE(1794), + [sym_line_string_literal] = STATE(1794), + [sym_multi_line_string_literal] = STATE(1794), + [sym_raw_string_literal] = STATE(1794), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1794), + [sym__unary_expression] = STATE(1794), + [sym_postfix_expression] = STATE(1794), + [sym_constructor_expression] = STATE(1794), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1794), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1794), + [sym_prefix_expression] = STATE(1794), + [sym_as_expression] = STATE(1794), + [sym_selector_expression] = STATE(1794), + [sym__binary_expression] = STATE(1794), + [sym_multiplicative_expression] = STATE(1794), + [sym_additive_expression] = STATE(1794), + [sym_range_expression] = STATE(1794), + [sym_infix_expression] = STATE(1794), + [sym_nil_coalescing_expression] = STATE(1794), + [sym_check_expression] = STATE(1794), + [sym_comparison_expression] = STATE(1794), + [sym_equality_expression] = STATE(1794), + [sym_conjunction_expression] = STATE(1794), + [sym_disjunction_expression] = STATE(1794), + [sym_bitwise_operation] = STATE(1794), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1794), + [sym_await_expression] = STATE(1794), + [sym_ternary_expression] = STATE(1794), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1794), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1794), + [sym_dictionary_literal] = STATE(1794), + [sym__special_literal] = STATE(1794), + [sym__playground_literal] = STATE(1794), + [sym_lambda_literal] = STATE(1794), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1794), + [sym_key_path_expression] = STATE(1794), + [sym_key_path_string_expression] = STATE(1794), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1794), + [sym__comparison_operator] = STATE(1794), + [sym__additive_operator] = STATE(1794), + [sym__multiplicative_operator] = STATE(1794), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1794), + [sym__referenceable_operator] = STATE(1794), + [sym__eq_eq] = STATE(1794), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1987), + [anon_sym_GT] = ACTIONS(1987), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1987), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1987), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1987), + [anon_sym_LT_EQ] = ACTIONS(1987), + [anon_sym_GT_EQ] = ACTIONS(1987), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1987), + [anon_sym_SLASH] = ACTIONS(1987), + [anon_sym_PERCENT] = ACTIONS(1987), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1989), + [sym__plus_then_ws] = ACTIONS(1989), + [sym__minus_then_ws] = ACTIONS(1989), + [sym_bang] = ACTIONS(1069), + }, + [461] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1921), + [sym_boolean_literal] = STATE(1921), + [sym__string_literal] = STATE(1921), + [sym_line_string_literal] = STATE(1921), + [sym_multi_line_string_literal] = STATE(1921), + [sym_raw_string_literal] = STATE(1921), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1921), + [sym__unary_expression] = STATE(1921), + [sym_postfix_expression] = STATE(1921), + [sym_constructor_expression] = STATE(1921), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1921), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1921), + [sym_prefix_expression] = STATE(1921), + [sym_as_expression] = STATE(1921), + [sym_selector_expression] = STATE(1921), + [sym__binary_expression] = STATE(1921), + [sym_multiplicative_expression] = STATE(1921), + [sym_additive_expression] = STATE(1921), + [sym_range_expression] = STATE(1921), + [sym_infix_expression] = STATE(1921), + [sym_nil_coalescing_expression] = STATE(1921), + [sym_check_expression] = STATE(1921), + [sym_comparison_expression] = STATE(1921), + [sym_equality_expression] = STATE(1921), + [sym_conjunction_expression] = STATE(1921), + [sym_disjunction_expression] = STATE(1921), + [sym_bitwise_operation] = STATE(1921), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1921), + [sym_await_expression] = STATE(1921), + [sym_ternary_expression] = STATE(1921), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1921), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1921), + [sym_dictionary_literal] = STATE(1921), + [sym__special_literal] = STATE(1921), + [sym__playground_literal] = STATE(1921), + [sym_lambda_literal] = STATE(1921), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1921), + [sym_key_path_expression] = STATE(1921), + [sym_key_path_string_expression] = STATE(1921), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1921), + [sym__comparison_operator] = STATE(1921), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1921), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1921), + [sym__referenceable_operator] = STATE(1921), + [sym__eq_eq] = STATE(1921), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_GT] = ACTIONS(1991), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1991), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1991), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1991), + [anon_sym_LT_EQ] = ACTIONS(1991), + [anon_sym_GT_EQ] = ACTIONS(1991), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1991), + [anon_sym_SLASH] = ACTIONS(1991), + [anon_sym_PERCENT] = ACTIONS(1991), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1993), + [sym__plus_then_ws] = ACTIONS(1993), + [sym__minus_then_ws] = ACTIONS(1993), + [sym_bang] = ACTIONS(1069), + }, + [462] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1779), + [sym_boolean_literal] = STATE(1779), + [sym__string_literal] = STATE(1779), + [sym_line_string_literal] = STATE(1779), + [sym_multi_line_string_literal] = STATE(1779), + [sym_raw_string_literal] = STATE(1779), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1779), + [sym__unary_expression] = STATE(1779), + [sym_postfix_expression] = STATE(1779), + [sym_constructor_expression] = STATE(1779), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1779), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1779), + [sym_prefix_expression] = STATE(1779), + [sym_as_expression] = STATE(1779), + [sym_selector_expression] = STATE(1779), + [sym__binary_expression] = STATE(1779), + [sym_multiplicative_expression] = STATE(1779), + [sym_additive_expression] = STATE(1779), + [sym_range_expression] = STATE(1779), + [sym_infix_expression] = STATE(1779), + [sym_nil_coalescing_expression] = STATE(1779), + [sym_check_expression] = STATE(1779), + [sym_comparison_expression] = STATE(1779), + [sym_equality_expression] = STATE(1779), + [sym_conjunction_expression] = STATE(1779), + [sym_disjunction_expression] = STATE(1779), + [sym_bitwise_operation] = STATE(1779), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1779), + [sym_await_expression] = STATE(1779), + [sym_ternary_expression] = STATE(1779), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1779), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1779), + [sym_dictionary_literal] = STATE(1779), + [sym__special_literal] = STATE(1779), + [sym__playground_literal] = STATE(1779), + [sym_lambda_literal] = STATE(1779), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1779), + [sym_key_path_expression] = STATE(1779), + [sym_key_path_string_expression] = STATE(1779), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1779), + [sym__additive_operator] = STATE(1779), + [sym__multiplicative_operator] = STATE(1779), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1779), + [sym__referenceable_operator] = STATE(1779), + [sym__eq_eq] = STATE(1779), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_GT] = ACTIONS(1995), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1995), + [anon_sym_LT_EQ] = ACTIONS(1995), + [anon_sym_GT_EQ] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1995), + [anon_sym_SLASH] = ACTIONS(1995), + [anon_sym_PERCENT] = ACTIONS(1995), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(1997), + [sym__plus_then_ws] = ACTIONS(1997), + [sym__minus_then_ws] = ACTIONS(1997), + [sym_bang] = ACTIONS(1069), + }, + [463] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1892), + [sym_boolean_literal] = STATE(1892), + [sym__string_literal] = STATE(1892), + [sym_line_string_literal] = STATE(1892), + [sym_multi_line_string_literal] = STATE(1892), + [sym_raw_string_literal] = STATE(1892), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1892), + [sym__unary_expression] = STATE(1892), + [sym_postfix_expression] = STATE(1892), + [sym_constructor_expression] = STATE(1892), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1892), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1892), + [sym_prefix_expression] = STATE(1892), + [sym_as_expression] = STATE(1892), + [sym_selector_expression] = STATE(1892), + [sym__binary_expression] = STATE(1892), + [sym_multiplicative_expression] = STATE(1892), + [sym_additive_expression] = STATE(1892), + [sym_range_expression] = STATE(1892), + [sym_infix_expression] = STATE(1892), + [sym_nil_coalescing_expression] = STATE(1892), + [sym_check_expression] = STATE(1892), + [sym_comparison_expression] = STATE(1892), + [sym_equality_expression] = STATE(1892), + [sym_conjunction_expression] = STATE(1892), + [sym_disjunction_expression] = STATE(1892), + [sym_bitwise_operation] = STATE(1892), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1892), + [sym_await_expression] = STATE(1892), + [sym_ternary_expression] = STATE(1892), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1892), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1892), + [sym_dictionary_literal] = STATE(1892), + [sym__special_literal] = STATE(1892), + [sym__playground_literal] = STATE(1892), + [sym_lambda_literal] = STATE(1892), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1892), + [sym_key_path_expression] = STATE(1892), + [sym_key_path_string_expression] = STATE(1892), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1892), + [sym__comparison_operator] = STATE(1892), + [sym__additive_operator] = STATE(1892), + [sym__multiplicative_operator] = STATE(1892), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1892), + [sym__referenceable_operator] = STATE(1892), + [sym__eq_eq] = STATE(1892), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1999), + [anon_sym_GT] = ACTIONS(1999), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1999), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1999), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1999), + [anon_sym_LT_EQ] = ACTIONS(1999), + [anon_sym_GT_EQ] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(1999), + [anon_sym_SLASH] = ACTIONS(1999), + [anon_sym_PERCENT] = ACTIONS(1999), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2001), + [sym__plus_then_ws] = ACTIONS(2001), + [sym__minus_then_ws] = ACTIONS(2001), + [sym_bang] = ACTIONS(1069), + }, + [464] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1620), + [sym_boolean_literal] = STATE(1620), + [sym__string_literal] = STATE(1620), + [sym_line_string_literal] = STATE(1620), + [sym_multi_line_string_literal] = STATE(1620), + [sym_raw_string_literal] = STATE(1620), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1620), + [sym__unary_expression] = STATE(1620), + [sym_postfix_expression] = STATE(1620), + [sym_constructor_expression] = STATE(1620), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1620), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1620), + [sym_prefix_expression] = STATE(1620), + [sym_as_expression] = STATE(1620), + [sym_selector_expression] = STATE(1620), + [sym__binary_expression] = STATE(1620), + [sym_multiplicative_expression] = STATE(1620), + [sym_additive_expression] = STATE(1620), + [sym_range_expression] = STATE(1620), + [sym_infix_expression] = STATE(1620), + [sym_nil_coalescing_expression] = STATE(1620), + [sym_check_expression] = STATE(1620), + [sym_comparison_expression] = STATE(1620), + [sym_equality_expression] = STATE(1620), + [sym_conjunction_expression] = STATE(1620), + [sym_disjunction_expression] = STATE(1620), + [sym_bitwise_operation] = STATE(1620), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1620), + [sym_await_expression] = STATE(1620), + [sym_ternary_expression] = STATE(1620), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1620), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1620), + [sym_dictionary_literal] = STATE(1620), + [sym__special_literal] = STATE(1620), + [sym__playground_literal] = STATE(1620), + [sym_lambda_literal] = STATE(1620), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1620), + [sym_key_path_expression] = STATE(1620), + [sym_key_path_string_expression] = STATE(1620), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1620), + [sym__comparison_operator] = STATE(1620), + [sym__additive_operator] = STATE(1620), + [sym__multiplicative_operator] = STATE(1620), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1620), + [sym__referenceable_operator] = STATE(1620), + [sym__eq_eq] = STATE(1620), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_GT] = ACTIONS(2003), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2003), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2003), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2003), + [anon_sym_LT_EQ] = ACTIONS(2003), + [anon_sym_GT_EQ] = ACTIONS(2003), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2003), + [anon_sym_SLASH] = ACTIONS(2003), + [anon_sym_PERCENT] = ACTIONS(2003), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2005), + [sym__plus_then_ws] = ACTIONS(2005), + [sym__minus_then_ws] = ACTIONS(2005), + [sym_bang] = ACTIONS(1069), + }, + [465] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1619), + [sym_boolean_literal] = STATE(1619), + [sym__string_literal] = STATE(1619), + [sym_line_string_literal] = STATE(1619), + [sym_multi_line_string_literal] = STATE(1619), + [sym_raw_string_literal] = STATE(1619), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1619), + [sym__unary_expression] = STATE(1619), + [sym_postfix_expression] = STATE(1619), + [sym_constructor_expression] = STATE(1619), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1619), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1619), + [sym_prefix_expression] = STATE(1619), + [sym_as_expression] = STATE(1619), + [sym_selector_expression] = STATE(1619), + [sym__binary_expression] = STATE(1619), + [sym_multiplicative_expression] = STATE(1619), + [sym_additive_expression] = STATE(1619), + [sym_range_expression] = STATE(1619), + [sym_infix_expression] = STATE(1619), + [sym_nil_coalescing_expression] = STATE(1619), + [sym_check_expression] = STATE(1619), + [sym_comparison_expression] = STATE(1619), + [sym_equality_expression] = STATE(1619), + [sym_conjunction_expression] = STATE(1619), + [sym_disjunction_expression] = STATE(1619), + [sym_bitwise_operation] = STATE(1619), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1619), + [sym_await_expression] = STATE(1619), + [sym_ternary_expression] = STATE(1619), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1619), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1619), + [sym_dictionary_literal] = STATE(1619), + [sym__special_literal] = STATE(1619), + [sym__playground_literal] = STATE(1619), + [sym_lambda_literal] = STATE(1619), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1619), + [sym_key_path_expression] = STATE(1619), + [sym_key_path_string_expression] = STATE(1619), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1619), + [sym__comparison_operator] = STATE(1619), + [sym__additive_operator] = STATE(1619), + [sym__multiplicative_operator] = STATE(1619), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1619), + [sym__referenceable_operator] = STATE(1619), + [sym__eq_eq] = STATE(1619), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2007), + [anon_sym_GT] = ACTIONS(2007), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2007), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2007), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2007), + [anon_sym_LT_EQ] = ACTIONS(2007), + [anon_sym_GT_EQ] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_SLASH] = ACTIONS(2007), + [anon_sym_PERCENT] = ACTIONS(2007), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2009), + [sym__plus_then_ws] = ACTIONS(2009), + [sym__minus_then_ws] = ACTIONS(2009), + [sym_bang] = ACTIONS(1069), + }, + [466] = { + [sym_simple_identifier] = STATE(2645), + [sym__basic_literal] = STATE(1600), + [sym_boolean_literal] = STATE(1600), + [sym__string_literal] = STATE(1600), + [sym_line_string_literal] = STATE(1600), + [sym_multi_line_string_literal] = STATE(1600), + [sym_raw_string_literal] = STATE(1600), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1600), + [sym__unary_expression] = STATE(1600), + [sym_postfix_expression] = STATE(1600), + [sym_constructor_expression] = STATE(1600), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1600), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1600), + [sym_prefix_expression] = STATE(1600), + [sym_as_expression] = STATE(1600), + [sym_selector_expression] = STATE(1600), + [sym__binary_expression] = STATE(1600), + [sym_multiplicative_expression] = STATE(1600), + [sym_additive_expression] = STATE(1600), + [sym_range_expression] = STATE(1600), + [sym_infix_expression] = STATE(1600), + [sym_nil_coalescing_expression] = STATE(1600), + [sym_check_expression] = STATE(1600), + [sym_comparison_expression] = STATE(1600), + [sym_equality_expression] = STATE(1600), + [sym_conjunction_expression] = STATE(1600), + [sym_disjunction_expression] = STATE(1600), + [sym_bitwise_operation] = STATE(1600), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1600), + [sym_await_expression] = STATE(1600), + [sym_ternary_expression] = STATE(1600), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1600), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1600), + [sym_dictionary_literal] = STATE(1600), + [sym__special_literal] = STATE(1600), + [sym__playground_literal] = STATE(1600), + [sym_lambda_literal] = STATE(1600), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1600), + [sym_key_path_expression] = STATE(1600), + [sym_key_path_string_expression] = STATE(1600), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1600), + [sym__comparison_operator] = STATE(1600), + [sym__additive_operator] = STATE(1600), + [sym__multiplicative_operator] = STATE(1600), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1600), + [sym__referenceable_operator] = STATE(1600), + [sym__eq_eq] = STATE(1600), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(2011), + [anon_sym_GT] = ACTIONS(2011), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(2011), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2011), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2011), + [anon_sym_LT_EQ] = ACTIONS(2011), + [anon_sym_GT_EQ] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_SLASH] = ACTIONS(2011), + [anon_sym_PERCENT] = ACTIONS(2011), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(2013), + [sym__plus_then_ws] = ACTIONS(2013), + [sym__minus_then_ws] = ACTIONS(2013), + [sym_bang] = ACTIONS(833), + }, + [467] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym__string_literal] = STATE(1932), + [sym_line_string_literal] = STATE(1932), + [sym_multi_line_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1932), + [sym__unary_expression] = STATE(1932), + [sym_postfix_expression] = STATE(1932), + [sym_constructor_expression] = STATE(1932), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1932), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1932), + [sym_prefix_expression] = STATE(1932), + [sym_as_expression] = STATE(1932), + [sym_selector_expression] = STATE(1932), + [sym__binary_expression] = STATE(1932), + [sym_multiplicative_expression] = STATE(1932), + [sym_additive_expression] = STATE(1932), + [sym_range_expression] = STATE(1932), + [sym_infix_expression] = STATE(1932), + [sym_nil_coalescing_expression] = STATE(1932), + [sym_check_expression] = STATE(1932), + [sym_comparison_expression] = STATE(1932), + [sym_equality_expression] = STATE(1932), + [sym_conjunction_expression] = STATE(1932), + [sym_disjunction_expression] = STATE(1932), + [sym_bitwise_operation] = STATE(1932), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1932), + [sym_await_expression] = STATE(1932), + [sym_ternary_expression] = STATE(1932), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1932), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1932), + [sym_dictionary_literal] = STATE(1932), + [sym__special_literal] = STATE(1932), + [sym__playground_literal] = STATE(1932), + [sym_lambda_literal] = STATE(1932), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1932), + [sym_key_path_expression] = STATE(1932), + [sym_key_path_string_expression] = STATE(1932), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1932), + [sym__comparison_operator] = STATE(1932), + [sym__additive_operator] = STATE(1932), + [sym__multiplicative_operator] = STATE(1932), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1932), + [sym__referenceable_operator] = STATE(1932), + [sym__eq_eq] = STATE(1932), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2015), + [anon_sym_GT] = ACTIONS(2015), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2015), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2015), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2015), + [anon_sym_LT_EQ] = ACTIONS(2015), + [anon_sym_GT_EQ] = ACTIONS(2015), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_SLASH] = ACTIONS(2015), + [anon_sym_PERCENT] = ACTIONS(2015), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2017), + [sym__plus_then_ws] = ACTIONS(2017), + [sym__minus_then_ws] = ACTIONS(2017), + [sym_bang] = ACTIONS(1069), + }, + [468] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2199), + [sym_boolean_literal] = STATE(2199), + [sym__string_literal] = STATE(2199), + [sym_line_string_literal] = STATE(2199), + [sym_multi_line_string_literal] = STATE(2199), + [sym_raw_string_literal] = STATE(2199), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2199), + [sym__unary_expression] = STATE(2199), + [sym_postfix_expression] = STATE(2199), + [sym_constructor_expression] = STATE(2199), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2199), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2199), + [sym_prefix_expression] = STATE(2199), + [sym_as_expression] = STATE(2199), + [sym_selector_expression] = STATE(2199), + [sym__binary_expression] = STATE(2199), + [sym_multiplicative_expression] = STATE(2199), + [sym_additive_expression] = STATE(2199), + [sym_range_expression] = STATE(2199), + [sym_infix_expression] = STATE(2199), + [sym_nil_coalescing_expression] = STATE(2199), + [sym_check_expression] = STATE(2199), + [sym_comparison_expression] = STATE(2199), + [sym_equality_expression] = STATE(2199), + [sym_conjunction_expression] = STATE(2199), + [sym_disjunction_expression] = STATE(2199), + [sym_bitwise_operation] = STATE(2199), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2199), + [sym_await_expression] = STATE(2199), + [sym_ternary_expression] = STATE(2199), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2199), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2199), + [sym_dictionary_literal] = STATE(2199), + [sym__special_literal] = STATE(2199), + [sym__playground_literal] = STATE(2199), + [sym_lambda_literal] = STATE(2199), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2199), + [sym_key_path_expression] = STATE(2199), + [sym_key_path_string_expression] = STATE(2199), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2199), + [sym__comparison_operator] = STATE(2199), + [sym__additive_operator] = STATE(2199), + [sym__multiplicative_operator] = STATE(2199), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2199), + [sym__referenceable_operator] = STATE(2199), + [sym__eq_eq] = STATE(2199), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(2019), + [anon_sym_GT] = ACTIONS(2019), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(2019), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2019), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2019), + [anon_sym_LT_EQ] = ACTIONS(2019), + [anon_sym_GT_EQ] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_SLASH] = ACTIONS(2019), + [anon_sym_PERCENT] = ACTIONS(2019), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(2021), + [sym__plus_then_ws] = ACTIONS(2021), + [sym__minus_then_ws] = ACTIONS(2021), + [sym_bang] = ACTIONS(833), + }, + [469] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1942), + [sym_boolean_literal] = STATE(1942), + [sym__string_literal] = STATE(1942), + [sym_line_string_literal] = STATE(1942), + [sym_multi_line_string_literal] = STATE(1942), + [sym_raw_string_literal] = STATE(1942), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1942), + [sym__unary_expression] = STATE(1942), + [sym_postfix_expression] = STATE(1942), + [sym_constructor_expression] = STATE(1942), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1942), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1942), + [sym_prefix_expression] = STATE(1942), + [sym_as_expression] = STATE(1942), + [sym_selector_expression] = STATE(1942), + [sym__binary_expression] = STATE(1942), + [sym_multiplicative_expression] = STATE(1942), + [sym_additive_expression] = STATE(1942), + [sym_range_expression] = STATE(1942), + [sym_infix_expression] = STATE(1942), + [sym_nil_coalescing_expression] = STATE(1942), + [sym_check_expression] = STATE(1942), + [sym_comparison_expression] = STATE(1942), + [sym_equality_expression] = STATE(1942), + [sym_conjunction_expression] = STATE(1942), + [sym_disjunction_expression] = STATE(1942), + [sym_bitwise_operation] = STATE(1942), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1942), + [sym_await_expression] = STATE(1942), + [sym_ternary_expression] = STATE(1942), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1942), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1942), + [sym_dictionary_literal] = STATE(1942), + [sym__special_literal] = STATE(1942), + [sym__playground_literal] = STATE(1942), + [sym_lambda_literal] = STATE(1942), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1942), + [sym_key_path_expression] = STATE(1942), + [sym_key_path_string_expression] = STATE(1942), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1942), + [sym__comparison_operator] = STATE(1942), + [sym__additive_operator] = STATE(1942), + [sym__multiplicative_operator] = STATE(1942), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1942), + [sym__referenceable_operator] = STATE(1942), + [sym__eq_eq] = STATE(1942), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2023), + [anon_sym_GT] = ACTIONS(2023), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2023), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2023), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2023), + [anon_sym_LT_EQ] = ACTIONS(2023), + [anon_sym_GT_EQ] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2023), + [anon_sym_SLASH] = ACTIONS(2023), + [anon_sym_PERCENT] = ACTIONS(2023), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2025), + [sym__plus_then_ws] = ACTIONS(2025), + [sym__minus_then_ws] = ACTIONS(2025), + [sym_bang] = ACTIONS(1069), + }, + [470] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1947), + [sym_boolean_literal] = STATE(1947), + [sym__string_literal] = STATE(1947), + [sym_line_string_literal] = STATE(1947), + [sym_multi_line_string_literal] = STATE(1947), + [sym_raw_string_literal] = STATE(1947), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1947), + [sym__unary_expression] = STATE(1947), + [sym_postfix_expression] = STATE(1947), + [sym_constructor_expression] = STATE(1947), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1947), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1947), + [sym_prefix_expression] = STATE(1947), + [sym_as_expression] = STATE(1947), + [sym_selector_expression] = STATE(1947), + [sym__binary_expression] = STATE(1947), + [sym_multiplicative_expression] = STATE(1947), + [sym_additive_expression] = STATE(1947), + [sym_range_expression] = STATE(1947), + [sym_infix_expression] = STATE(1947), + [sym_nil_coalescing_expression] = STATE(1947), + [sym_check_expression] = STATE(1947), + [sym_comparison_expression] = STATE(1947), + [sym_equality_expression] = STATE(1947), + [sym_conjunction_expression] = STATE(1947), + [sym_disjunction_expression] = STATE(1947), + [sym_bitwise_operation] = STATE(1947), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1947), + [sym_await_expression] = STATE(1947), + [sym_ternary_expression] = STATE(1947), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1947), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1947), + [sym_dictionary_literal] = STATE(1947), + [sym__special_literal] = STATE(1947), + [sym__playground_literal] = STATE(1947), + [sym_lambda_literal] = STATE(1947), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1947), + [sym_key_path_expression] = STATE(1947), + [sym_key_path_string_expression] = STATE(1947), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1947), + [sym__comparison_operator] = STATE(1947), + [sym__additive_operator] = STATE(1947), + [sym__multiplicative_operator] = STATE(1947), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1947), + [sym__referenceable_operator] = STATE(1947), + [sym__eq_eq] = STATE(1947), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_GT] = ACTIONS(2027), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2027), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2027), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2027), + [anon_sym_LT_EQ] = ACTIONS(2027), + [anon_sym_GT_EQ] = ACTIONS(2027), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_SLASH] = ACTIONS(2027), + [anon_sym_PERCENT] = ACTIONS(2027), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2029), + [sym__plus_then_ws] = ACTIONS(2029), + [sym__minus_then_ws] = ACTIONS(2029), + [sym_bang] = ACTIONS(1069), + }, + [471] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1775), + [sym_boolean_literal] = STATE(1775), + [sym__string_literal] = STATE(1775), + [sym_line_string_literal] = STATE(1775), + [sym_multi_line_string_literal] = STATE(1775), + [sym_raw_string_literal] = STATE(1775), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1775), + [sym__unary_expression] = STATE(1775), + [sym_postfix_expression] = STATE(1775), + [sym_constructor_expression] = STATE(1775), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1775), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1775), + [sym_prefix_expression] = STATE(1775), + [sym_as_expression] = STATE(1775), + [sym_selector_expression] = STATE(1775), + [sym__binary_expression] = STATE(1775), + [sym_multiplicative_expression] = STATE(1775), + [sym_additive_expression] = STATE(1775), + [sym_range_expression] = STATE(1775), + [sym_infix_expression] = STATE(1775), + [sym_nil_coalescing_expression] = STATE(1775), + [sym_check_expression] = STATE(1775), + [sym_comparison_expression] = STATE(1775), + [sym_equality_expression] = STATE(1775), + [sym_conjunction_expression] = STATE(1775), + [sym_disjunction_expression] = STATE(1775), + [sym_bitwise_operation] = STATE(1775), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1775), + [sym_await_expression] = STATE(1775), + [sym_ternary_expression] = STATE(1775), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1775), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1775), + [sym_dictionary_literal] = STATE(1775), + [sym__special_literal] = STATE(1775), + [sym__playground_literal] = STATE(1775), + [sym_lambda_literal] = STATE(1775), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1775), + [sym_key_path_expression] = STATE(1775), + [sym_key_path_string_expression] = STATE(1775), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1775), + [sym__comparison_operator] = STATE(1775), + [sym__additive_operator] = STATE(1775), + [sym__multiplicative_operator] = STATE(1775), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1775), + [sym__referenceable_operator] = STATE(1775), + [sym__eq_eq] = STATE(1775), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2031), + [anon_sym_GT] = ACTIONS(2031), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2031), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2031), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2031), + [anon_sym_LT_EQ] = ACTIONS(2031), + [anon_sym_GT_EQ] = ACTIONS(2031), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_SLASH] = ACTIONS(2031), + [anon_sym_PERCENT] = ACTIONS(2031), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2033), + [sym__plus_then_ws] = ACTIONS(2033), + [sym__minus_then_ws] = ACTIONS(2033), + [sym_bang] = ACTIONS(1069), + }, + [472] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1774), + [sym_boolean_literal] = STATE(1774), + [sym__string_literal] = STATE(1774), + [sym_line_string_literal] = STATE(1774), + [sym_multi_line_string_literal] = STATE(1774), + [sym_raw_string_literal] = STATE(1774), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1774), + [sym__unary_expression] = STATE(1774), + [sym_postfix_expression] = STATE(1774), + [sym_constructor_expression] = STATE(1774), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1774), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1774), + [sym_prefix_expression] = STATE(1774), + [sym_as_expression] = STATE(1774), + [sym_selector_expression] = STATE(1774), + [sym__binary_expression] = STATE(1774), + [sym_multiplicative_expression] = STATE(1774), + [sym_additive_expression] = STATE(1774), + [sym_range_expression] = STATE(1774), + [sym_infix_expression] = STATE(1774), + [sym_nil_coalescing_expression] = STATE(1774), + [sym_check_expression] = STATE(1774), + [sym_comparison_expression] = STATE(1774), + [sym_equality_expression] = STATE(1774), + [sym_conjunction_expression] = STATE(1774), + [sym_disjunction_expression] = STATE(1774), + [sym_bitwise_operation] = STATE(1774), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1774), + [sym_await_expression] = STATE(1774), + [sym_ternary_expression] = STATE(1774), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1774), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1774), + [sym_dictionary_literal] = STATE(1774), + [sym__special_literal] = STATE(1774), + [sym__playground_literal] = STATE(1774), + [sym_lambda_literal] = STATE(1774), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1774), + [sym_key_path_expression] = STATE(1774), + [sym_key_path_string_expression] = STATE(1774), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1774), + [sym__comparison_operator] = STATE(1774), + [sym__additive_operator] = STATE(1774), + [sym__multiplicative_operator] = STATE(1774), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1774), + [sym__referenceable_operator] = STATE(1774), + [sym__eq_eq] = STATE(1774), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2035), + [anon_sym_GT] = ACTIONS(2035), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2035), + [anon_sym_LT_EQ] = ACTIONS(2035), + [anon_sym_GT_EQ] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2035), + [anon_sym_SLASH] = ACTIONS(2035), + [anon_sym_PERCENT] = ACTIONS(2035), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2037), + [sym__plus_then_ws] = ACTIONS(2037), + [sym__minus_then_ws] = ACTIONS(2037), + [sym_bang] = ACTIONS(1069), + }, + [473] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1893), + [sym_boolean_literal] = STATE(1893), + [sym__string_literal] = STATE(1893), + [sym_line_string_literal] = STATE(1893), + [sym_multi_line_string_literal] = STATE(1893), + [sym_raw_string_literal] = STATE(1893), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1893), + [sym__unary_expression] = STATE(1893), + [sym_postfix_expression] = STATE(1893), + [sym_constructor_expression] = STATE(1893), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1893), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1893), + [sym_prefix_expression] = STATE(1893), + [sym_as_expression] = STATE(1893), + [sym_selector_expression] = STATE(1893), + [sym__binary_expression] = STATE(1893), + [sym_multiplicative_expression] = STATE(1893), + [sym_additive_expression] = STATE(1893), + [sym_range_expression] = STATE(1893), + [sym_infix_expression] = STATE(1893), + [sym_nil_coalescing_expression] = STATE(1893), + [sym_check_expression] = STATE(1893), + [sym_comparison_expression] = STATE(1893), + [sym_equality_expression] = STATE(1893), + [sym_conjunction_expression] = STATE(1893), + [sym_disjunction_expression] = STATE(1893), + [sym_bitwise_operation] = STATE(1893), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1893), + [sym_await_expression] = STATE(1893), + [sym_ternary_expression] = STATE(1893), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1893), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1893), + [sym_dictionary_literal] = STATE(1893), + [sym__special_literal] = STATE(1893), + [sym__playground_literal] = STATE(1893), + [sym_lambda_literal] = STATE(1893), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1893), + [sym_key_path_expression] = STATE(1893), + [sym_key_path_string_expression] = STATE(1893), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1893), + [sym__comparison_operator] = STATE(1893), + [sym__additive_operator] = STATE(1893), + [sym__multiplicative_operator] = STATE(1893), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1893), + [sym__referenceable_operator] = STATE(1893), + [sym__eq_eq] = STATE(1893), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_GT] = ACTIONS(2039), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2039), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2039), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2039), + [anon_sym_LT_EQ] = ACTIONS(2039), + [anon_sym_GT_EQ] = ACTIONS(2039), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2039), + [anon_sym_SLASH] = ACTIONS(2039), + [anon_sym_PERCENT] = ACTIONS(2039), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2041), + [sym__plus_then_ws] = ACTIONS(2041), + [sym__minus_then_ws] = ACTIONS(2041), + [sym_bang] = ACTIONS(1069), + }, + [474] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1894), + [sym_boolean_literal] = STATE(1894), + [sym__string_literal] = STATE(1894), + [sym_line_string_literal] = STATE(1894), + [sym_multi_line_string_literal] = STATE(1894), + [sym_raw_string_literal] = STATE(1894), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1894), + [sym__unary_expression] = STATE(1894), + [sym_postfix_expression] = STATE(1894), + [sym_constructor_expression] = STATE(1894), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1894), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1894), + [sym_prefix_expression] = STATE(1894), + [sym_as_expression] = STATE(1894), + [sym_selector_expression] = STATE(1894), + [sym__binary_expression] = STATE(1894), + [sym_multiplicative_expression] = STATE(1894), + [sym_additive_expression] = STATE(1894), + [sym_range_expression] = STATE(1894), + [sym_infix_expression] = STATE(1894), + [sym_nil_coalescing_expression] = STATE(1894), + [sym_check_expression] = STATE(1894), + [sym_comparison_expression] = STATE(1894), + [sym_equality_expression] = STATE(1894), + [sym_conjunction_expression] = STATE(1894), + [sym_disjunction_expression] = STATE(1894), + [sym_bitwise_operation] = STATE(1894), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1894), + [sym_await_expression] = STATE(1894), + [sym_ternary_expression] = STATE(1894), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1894), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1894), + [sym_dictionary_literal] = STATE(1894), + [sym__special_literal] = STATE(1894), + [sym__playground_literal] = STATE(1894), + [sym_lambda_literal] = STATE(1894), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1894), + [sym_key_path_expression] = STATE(1894), + [sym_key_path_string_expression] = STATE(1894), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1894), + [sym__comparison_operator] = STATE(1894), + [sym__additive_operator] = STATE(1894), + [sym__multiplicative_operator] = STATE(1894), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1894), + [sym__referenceable_operator] = STATE(1894), + [sym__eq_eq] = STATE(1894), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_GT] = ACTIONS(2043), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2043), + [anon_sym_LT_EQ] = ACTIONS(2043), + [anon_sym_GT_EQ] = ACTIONS(2043), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_SLASH] = ACTIONS(2043), + [anon_sym_PERCENT] = ACTIONS(2043), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2045), + [sym__plus_then_ws] = ACTIONS(2045), + [sym__minus_then_ws] = ACTIONS(2045), + [sym_bang] = ACTIONS(1069), + }, + [475] = { + [sym_simple_identifier] = STATE(2627), + [sym__basic_literal] = STATE(2113), + [sym_boolean_literal] = STATE(2113), + [sym__string_literal] = STATE(2113), + [sym_line_string_literal] = STATE(2113), + [sym_multi_line_string_literal] = STATE(2113), + [sym_raw_string_literal] = STATE(2113), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2113), + [sym__unary_expression] = STATE(2113), + [sym_postfix_expression] = STATE(2113), + [sym_constructor_expression] = STATE(2113), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2113), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2113), + [sym_prefix_expression] = STATE(2113), + [sym_as_expression] = STATE(2113), + [sym_selector_expression] = STATE(2113), + [sym__binary_expression] = STATE(2113), + [sym_multiplicative_expression] = STATE(2113), + [sym_additive_expression] = STATE(2113), + [sym_range_expression] = STATE(2113), + [sym_infix_expression] = STATE(2113), + [sym_nil_coalescing_expression] = STATE(2113), + [sym_check_expression] = STATE(2113), + [sym_comparison_expression] = STATE(2113), + [sym_equality_expression] = STATE(2113), + [sym_conjunction_expression] = STATE(2113), + [sym_disjunction_expression] = STATE(2113), + [sym_bitwise_operation] = STATE(2113), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2113), + [sym_await_expression] = STATE(2113), + [sym_ternary_expression] = STATE(2113), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2113), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2113), + [sym_dictionary_literal] = STATE(2113), + [sym__special_literal] = STATE(2113), + [sym__playground_literal] = STATE(2113), + [sym_lambda_literal] = STATE(2113), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2113), + [sym_key_path_expression] = STATE(2113), + [sym_key_path_string_expression] = STATE(2113), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2113), + [sym__comparison_operator] = STATE(2113), + [sym__additive_operator] = STATE(2113), + [sym__multiplicative_operator] = STATE(2113), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2113), + [sym__referenceable_operator] = STATE(2113), + [sym__eq_eq] = STATE(2113), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_GT] = ACTIONS(2047), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(2047), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2047), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2047), + [anon_sym_LT_EQ] = ACTIONS(2047), + [anon_sym_GT_EQ] = ACTIONS(2047), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2047), + [anon_sym_SLASH] = ACTIONS(2047), + [anon_sym_PERCENT] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(2049), + [sym__plus_then_ws] = ACTIONS(2049), + [sym__minus_then_ws] = ACTIONS(2049), + [sym_bang] = ACTIONS(833), + }, + [476] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2070), + [sym_boolean_literal] = STATE(2070), + [sym__string_literal] = STATE(2070), + [sym_line_string_literal] = STATE(2070), + [sym_multi_line_string_literal] = STATE(2070), + [sym_raw_string_literal] = STATE(2070), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2070), + [sym__unary_expression] = STATE(2070), + [sym_postfix_expression] = STATE(2070), + [sym_constructor_expression] = STATE(2070), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2070), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2070), + [sym_prefix_expression] = STATE(2070), + [sym_as_expression] = STATE(2070), + [sym_selector_expression] = STATE(2070), + [sym__binary_expression] = STATE(2070), + [sym_multiplicative_expression] = STATE(2070), + [sym_additive_expression] = STATE(2070), + [sym_range_expression] = STATE(2070), + [sym_infix_expression] = STATE(2070), + [sym_nil_coalescing_expression] = STATE(2070), + [sym_check_expression] = STATE(2070), + [sym_comparison_expression] = STATE(2070), + [sym_equality_expression] = STATE(2070), + [sym_conjunction_expression] = STATE(2070), + [sym_disjunction_expression] = STATE(2070), + [sym_bitwise_operation] = STATE(2070), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2070), + [sym_await_expression] = STATE(2070), + [sym_ternary_expression] = STATE(2070), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2070), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2070), + [sym_dictionary_literal] = STATE(2070), + [sym__special_literal] = STATE(2070), + [sym__playground_literal] = STATE(2070), + [sym_lambda_literal] = STATE(2070), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2070), + [sym_key_path_expression] = STATE(2070), + [sym_key_path_string_expression] = STATE(2070), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2070), + [sym__comparison_operator] = STATE(2070), + [sym__additive_operator] = STATE(2070), + [sym__multiplicative_operator] = STATE(2070), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2070), + [sym__referenceable_operator] = STATE(2070), + [sym__eq_eq] = STATE(2070), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2051), + [anon_sym_GT] = ACTIONS(2051), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2051), + [anon_sym_LT_EQ] = ACTIONS(2051), + [anon_sym_GT_EQ] = ACTIONS(2051), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_SLASH] = ACTIONS(2051), + [anon_sym_PERCENT] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2053), + [sym__plus_then_ws] = ACTIONS(2053), + [sym__minus_then_ws] = ACTIONS(2053), + [sym_bang] = ACTIONS(1069), + }, + [477] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1895), + [sym_boolean_literal] = STATE(1895), + [sym__string_literal] = STATE(1895), + [sym_line_string_literal] = STATE(1895), + [sym_multi_line_string_literal] = STATE(1895), + [sym_raw_string_literal] = STATE(1895), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1895), + [sym__unary_expression] = STATE(1895), + [sym_postfix_expression] = STATE(1895), + [sym_constructor_expression] = STATE(1895), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1895), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1895), + [sym_prefix_expression] = STATE(1895), + [sym_as_expression] = STATE(1895), + [sym_selector_expression] = STATE(1895), + [sym__binary_expression] = STATE(1895), + [sym_multiplicative_expression] = STATE(1895), + [sym_additive_expression] = STATE(1895), + [sym_range_expression] = STATE(1895), + [sym_infix_expression] = STATE(1895), + [sym_nil_coalescing_expression] = STATE(1895), + [sym_check_expression] = STATE(1895), + [sym_comparison_expression] = STATE(1895), + [sym_equality_expression] = STATE(1895), + [sym_conjunction_expression] = STATE(1895), + [sym_disjunction_expression] = STATE(1895), + [sym_bitwise_operation] = STATE(1895), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1895), + [sym_await_expression] = STATE(1895), + [sym_ternary_expression] = STATE(1895), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1895), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1895), + [sym_dictionary_literal] = STATE(1895), + [sym__special_literal] = STATE(1895), + [sym__playground_literal] = STATE(1895), + [sym_lambda_literal] = STATE(1895), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1895), + [sym_key_path_expression] = STATE(1895), + [sym_key_path_string_expression] = STATE(1895), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1895), + [sym__comparison_operator] = STATE(1895), + [sym__additive_operator] = STATE(1895), + [sym__multiplicative_operator] = STATE(1895), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1895), + [sym__referenceable_operator] = STATE(1895), + [sym__eq_eq] = STATE(1895), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2055), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2055), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2055), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2055), + [anon_sym_LT_EQ] = ACTIONS(2055), + [anon_sym_GT_EQ] = ACTIONS(2055), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_PERCENT] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2057), + [sym__plus_then_ws] = ACTIONS(2057), + [sym__minus_then_ws] = ACTIONS(2057), + [sym_bang] = ACTIONS(1069), + }, + [478] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1900), + [sym_boolean_literal] = STATE(1900), + [sym__string_literal] = STATE(1900), + [sym_line_string_literal] = STATE(1900), + [sym_multi_line_string_literal] = STATE(1900), + [sym_raw_string_literal] = STATE(1900), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1900), + [sym__unary_expression] = STATE(1900), + [sym_postfix_expression] = STATE(1900), + [sym_constructor_expression] = STATE(1900), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1900), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1900), + [sym_prefix_expression] = STATE(1900), + [sym_as_expression] = STATE(1900), + [sym_selector_expression] = STATE(1900), + [sym__binary_expression] = STATE(1900), + [sym_multiplicative_expression] = STATE(1900), + [sym_additive_expression] = STATE(1900), + [sym_range_expression] = STATE(1900), + [sym_infix_expression] = STATE(1900), + [sym_nil_coalescing_expression] = STATE(1900), + [sym_check_expression] = STATE(1900), + [sym_comparison_expression] = STATE(1900), + [sym_equality_expression] = STATE(1900), + [sym_conjunction_expression] = STATE(1900), + [sym_disjunction_expression] = STATE(1900), + [sym_bitwise_operation] = STATE(1900), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1900), + [sym_await_expression] = STATE(1900), + [sym_ternary_expression] = STATE(1900), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1900), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1900), + [sym_dictionary_literal] = STATE(1900), + [sym__special_literal] = STATE(1900), + [sym__playground_literal] = STATE(1900), + [sym_lambda_literal] = STATE(1900), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1900), + [sym_key_path_expression] = STATE(1900), + [sym_key_path_string_expression] = STATE(1900), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1900), + [sym__comparison_operator] = STATE(1900), + [sym__additive_operator] = STATE(1900), + [sym__multiplicative_operator] = STATE(1900), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1900), + [sym__referenceable_operator] = STATE(1900), + [sym__eq_eq] = STATE(1900), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2059), + [anon_sym_GT] = ACTIONS(2059), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2059), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2059), + [anon_sym_SLASH] = ACTIONS(2059), + [anon_sym_PERCENT] = ACTIONS(2059), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2061), + [sym__plus_then_ws] = ACTIONS(2061), + [sym__minus_then_ws] = ACTIONS(2061), + [sym_bang] = ACTIONS(1069), + }, + [479] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1926), + [sym_boolean_literal] = STATE(1926), + [sym__string_literal] = STATE(1926), + [sym_line_string_literal] = STATE(1926), + [sym_multi_line_string_literal] = STATE(1926), + [sym_raw_string_literal] = STATE(1926), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1926), + [sym__unary_expression] = STATE(1926), + [sym_postfix_expression] = STATE(1926), + [sym_constructor_expression] = STATE(1926), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1926), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1926), + [sym_prefix_expression] = STATE(1926), + [sym_as_expression] = STATE(1926), + [sym_selector_expression] = STATE(1926), + [sym__binary_expression] = STATE(1926), + [sym_multiplicative_expression] = STATE(1926), + [sym_additive_expression] = STATE(1926), + [sym_range_expression] = STATE(1926), + [sym_infix_expression] = STATE(1926), + [sym_nil_coalescing_expression] = STATE(1926), + [sym_check_expression] = STATE(1926), + [sym_comparison_expression] = STATE(1926), + [sym_equality_expression] = STATE(1926), + [sym_conjunction_expression] = STATE(1926), + [sym_disjunction_expression] = STATE(1926), + [sym_bitwise_operation] = STATE(1926), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1926), + [sym_await_expression] = STATE(1926), + [sym_ternary_expression] = STATE(1926), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1926), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1926), + [sym_dictionary_literal] = STATE(1926), + [sym__special_literal] = STATE(1926), + [sym__playground_literal] = STATE(1926), + [sym_lambda_literal] = STATE(1926), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1926), + [sym_key_path_expression] = STATE(1926), + [sym_key_path_string_expression] = STATE(1926), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1926), + [sym__comparison_operator] = STATE(1926), + [sym__additive_operator] = STATE(1926), + [sym__multiplicative_operator] = STATE(1926), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1926), + [sym__referenceable_operator] = STATE(1926), + [sym__eq_eq] = STATE(1926), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2063), + [anon_sym_GT] = ACTIONS(2063), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2063), + [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_GT_EQ] = ACTIONS(2063), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_SLASH] = ACTIONS(2063), + [anon_sym_PERCENT] = ACTIONS(2063), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2065), + [sym__plus_then_ws] = ACTIONS(2065), + [sym__minus_then_ws] = ACTIONS(2065), + [sym_bang] = ACTIONS(1069), + }, + [480] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2230), + [sym_boolean_literal] = STATE(2230), + [sym__string_literal] = STATE(2230), + [sym_line_string_literal] = STATE(2230), + [sym_multi_line_string_literal] = STATE(2230), + [sym_raw_string_literal] = STATE(2230), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2230), + [sym__unary_expression] = STATE(2230), + [sym_postfix_expression] = STATE(2230), + [sym_constructor_expression] = STATE(2230), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2230), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2230), + [sym_prefix_expression] = STATE(2230), + [sym_as_expression] = STATE(2230), + [sym_selector_expression] = STATE(2230), + [sym__binary_expression] = STATE(2230), + [sym_multiplicative_expression] = STATE(2230), + [sym_additive_expression] = STATE(2230), + [sym_range_expression] = STATE(2230), + [sym_infix_expression] = STATE(2230), + [sym_nil_coalescing_expression] = STATE(2230), + [sym_check_expression] = STATE(2230), + [sym_comparison_expression] = STATE(2230), + [sym_equality_expression] = STATE(2230), + [sym_conjunction_expression] = STATE(2230), + [sym_disjunction_expression] = STATE(2230), + [sym_bitwise_operation] = STATE(2230), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2230), + [sym_await_expression] = STATE(2230), + [sym_ternary_expression] = STATE(2230), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2230), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2230), + [sym_dictionary_literal] = STATE(2230), + [sym__special_literal] = STATE(2230), + [sym__playground_literal] = STATE(2230), + [sym_lambda_literal] = STATE(2230), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2230), + [sym_key_path_expression] = STATE(2230), + [sym_key_path_string_expression] = STATE(2230), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2230), + [sym__comparison_operator] = STATE(2230), + [sym__additive_operator] = STATE(2230), + [sym__multiplicative_operator] = STATE(2230), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2230), + [sym__referenceable_operator] = STATE(2230), + [sym__eq_eq] = STATE(2230), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2067), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_GT_EQ] = ACTIONS(2067), + [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), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(2069), + [sym__plus_then_ws] = ACTIONS(2069), + [sym__minus_then_ws] = ACTIONS(2069), + [sym_bang] = ACTIONS(833), + }, + [481] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1901), + [sym_boolean_literal] = STATE(1901), + [sym__string_literal] = STATE(1901), + [sym_line_string_literal] = STATE(1901), + [sym_multi_line_string_literal] = STATE(1901), + [sym_raw_string_literal] = STATE(1901), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1901), + [sym__unary_expression] = STATE(1901), + [sym_postfix_expression] = STATE(1901), + [sym_constructor_expression] = STATE(1901), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1901), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1901), + [sym_prefix_expression] = STATE(1901), + [sym_as_expression] = STATE(1901), + [sym_selector_expression] = STATE(1901), + [sym__binary_expression] = STATE(1901), + [sym_multiplicative_expression] = STATE(1901), + [sym_additive_expression] = STATE(1901), + [sym_range_expression] = STATE(1901), + [sym_infix_expression] = STATE(1901), + [sym_nil_coalescing_expression] = STATE(1901), + [sym_check_expression] = STATE(1901), + [sym_comparison_expression] = STATE(1901), + [sym_equality_expression] = STATE(1901), + [sym_conjunction_expression] = STATE(1901), + [sym_disjunction_expression] = STATE(1901), + [sym_bitwise_operation] = STATE(1901), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1901), + [sym_await_expression] = STATE(1901), + [sym_ternary_expression] = STATE(1901), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1901), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1901), + [sym_dictionary_literal] = STATE(1901), + [sym__special_literal] = STATE(1901), + [sym__playground_literal] = STATE(1901), + [sym_lambda_literal] = STATE(1901), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1901), + [sym_key_path_expression] = STATE(1901), + [sym_key_path_string_expression] = STATE(1901), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1901), + [sym__comparison_operator] = STATE(1901), + [sym__additive_operator] = STATE(1901), + [sym__multiplicative_operator] = STATE(1901), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1901), + [sym__referenceable_operator] = STATE(1901), + [sym__eq_eq] = STATE(1901), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2071), + [anon_sym_GT] = ACTIONS(2071), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2071), + [anon_sym_LT_EQ] = ACTIONS(2071), + [anon_sym_GT_EQ] = ACTIONS(2071), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2071), + [anon_sym_SLASH] = ACTIONS(2071), + [anon_sym_PERCENT] = ACTIONS(2071), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2073), + [sym__plus_then_ws] = ACTIONS(2073), + [sym__minus_then_ws] = ACTIONS(2073), + [sym_bang] = ACTIONS(1069), + }, + [482] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1903), + [sym_boolean_literal] = STATE(1903), + [sym__string_literal] = STATE(1903), + [sym_line_string_literal] = STATE(1903), + [sym_multi_line_string_literal] = STATE(1903), + [sym_raw_string_literal] = STATE(1903), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1903), + [sym__unary_expression] = STATE(1903), + [sym_postfix_expression] = STATE(1903), + [sym_constructor_expression] = STATE(1903), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1903), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1903), + [sym_prefix_expression] = STATE(1903), + [sym_as_expression] = STATE(1903), + [sym_selector_expression] = STATE(1903), + [sym__binary_expression] = STATE(1903), + [sym_multiplicative_expression] = STATE(1903), + [sym_additive_expression] = STATE(1903), + [sym_range_expression] = STATE(1903), + [sym_infix_expression] = STATE(1903), + [sym_nil_coalescing_expression] = STATE(1903), + [sym_check_expression] = STATE(1903), + [sym_comparison_expression] = STATE(1903), + [sym_equality_expression] = STATE(1903), + [sym_conjunction_expression] = STATE(1903), + [sym_disjunction_expression] = STATE(1903), + [sym_bitwise_operation] = STATE(1903), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1903), + [sym_await_expression] = STATE(1903), + [sym_ternary_expression] = STATE(1903), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1903), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1903), + [sym_dictionary_literal] = STATE(1903), + [sym__special_literal] = STATE(1903), + [sym__playground_literal] = STATE(1903), + [sym_lambda_literal] = STATE(1903), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1903), + [sym_key_path_expression] = STATE(1903), + [sym_key_path_string_expression] = STATE(1903), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1903), + [sym__comparison_operator] = STATE(1903), + [sym__additive_operator] = STATE(1903), + [sym__multiplicative_operator] = STATE(1903), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1903), + [sym__referenceable_operator] = STATE(1903), + [sym__eq_eq] = STATE(1903), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2075), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2075), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2075), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_SLASH] = ACTIONS(2075), + [anon_sym_PERCENT] = ACTIONS(2075), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2077), + [sym__plus_then_ws] = ACTIONS(2077), + [sym__minus_then_ws] = ACTIONS(2077), + [sym_bang] = ACTIONS(1069), + }, + [483] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1904), + [sym_boolean_literal] = STATE(1904), + [sym__string_literal] = STATE(1904), + [sym_line_string_literal] = STATE(1904), + [sym_multi_line_string_literal] = STATE(1904), + [sym_raw_string_literal] = STATE(1904), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1904), + [sym__unary_expression] = STATE(1904), + [sym_postfix_expression] = STATE(1904), + [sym_constructor_expression] = STATE(1904), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1904), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1904), + [sym_prefix_expression] = STATE(1904), + [sym_as_expression] = STATE(1904), + [sym_selector_expression] = STATE(1904), + [sym__binary_expression] = STATE(1904), + [sym_multiplicative_expression] = STATE(1904), + [sym_additive_expression] = STATE(1904), + [sym_range_expression] = STATE(1904), + [sym_infix_expression] = STATE(1904), + [sym_nil_coalescing_expression] = STATE(1904), + [sym_check_expression] = STATE(1904), + [sym_comparison_expression] = STATE(1904), + [sym_equality_expression] = STATE(1904), + [sym_conjunction_expression] = STATE(1904), + [sym_disjunction_expression] = STATE(1904), + [sym_bitwise_operation] = STATE(1904), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1904), + [sym_await_expression] = STATE(1904), + [sym_ternary_expression] = STATE(1904), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1904), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1904), + [sym_dictionary_literal] = STATE(1904), + [sym__special_literal] = STATE(1904), + [sym__playground_literal] = STATE(1904), + [sym_lambda_literal] = STATE(1904), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1904), + [sym_key_path_expression] = STATE(1904), + [sym_key_path_string_expression] = STATE(1904), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1904), + [sym__comparison_operator] = STATE(1904), + [sym__additive_operator] = STATE(1904), + [sym__multiplicative_operator] = STATE(1904), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1904), + [sym__referenceable_operator] = STATE(1904), + [sym__eq_eq] = STATE(1904), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_GT] = ACTIONS(2079), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2079), + [anon_sym_LT_EQ] = ACTIONS(2079), + [anon_sym_GT_EQ] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2079), + [anon_sym_SLASH] = ACTIONS(2079), + [anon_sym_PERCENT] = ACTIONS(2079), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2081), + [sym__plus_then_ws] = ACTIONS(2081), + [sym__minus_then_ws] = ACTIONS(2081), + [sym_bang] = ACTIONS(1069), + }, + [484] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1547), + [sym_boolean_literal] = STATE(1547), + [sym__string_literal] = STATE(1547), + [sym_line_string_literal] = STATE(1547), + [sym_multi_line_string_literal] = STATE(1547), + [sym_raw_string_literal] = STATE(1547), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1547), + [sym__unary_expression] = STATE(1547), + [sym_postfix_expression] = STATE(1547), + [sym_constructor_expression] = STATE(1547), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1547), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1547), + [sym_prefix_expression] = STATE(1547), + [sym_as_expression] = STATE(1547), + [sym_selector_expression] = STATE(1547), + [sym__binary_expression] = STATE(1547), + [sym_multiplicative_expression] = STATE(1547), + [sym_additive_expression] = STATE(1547), + [sym_range_expression] = STATE(1547), + [sym_infix_expression] = STATE(1547), + [sym_nil_coalescing_expression] = STATE(1547), + [sym_check_expression] = STATE(1547), + [sym_comparison_expression] = STATE(1547), + [sym_equality_expression] = STATE(1547), + [sym_conjunction_expression] = STATE(1547), + [sym_disjunction_expression] = STATE(1547), + [sym_bitwise_operation] = STATE(1547), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1547), + [sym_await_expression] = STATE(1547), + [sym_ternary_expression] = STATE(1547), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1547), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1547), + [sym_dictionary_literal] = STATE(1547), + [sym__special_literal] = STATE(1547), + [sym__playground_literal] = STATE(1547), + [sym_lambda_literal] = STATE(1547), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1547), + [sym_key_path_expression] = STATE(1547), + [sym_key_path_string_expression] = STATE(1547), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1547), + [sym__additive_operator] = STATE(1547), + [sym__multiplicative_operator] = STATE(1547), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1547), + [sym__referenceable_operator] = STATE(1547), + [sym__eq_eq] = STATE(1547), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_GT] = ACTIONS(2083), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2083), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2083), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2083), + [anon_sym_LT_EQ] = ACTIONS(2083), + [anon_sym_GT_EQ] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_PERCENT] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2085), + [sym__plus_then_ws] = ACTIONS(2085), + [sym__minus_then_ws] = ACTIONS(2085), + [sym_bang] = ACTIONS(1069), + }, + [485] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2175), + [sym_boolean_literal] = STATE(2175), + [sym__string_literal] = STATE(2175), + [sym_line_string_literal] = STATE(2175), + [sym_multi_line_string_literal] = STATE(2175), + [sym_raw_string_literal] = STATE(2175), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2175), + [sym__unary_expression] = STATE(2175), + [sym_postfix_expression] = STATE(2175), + [sym_constructor_expression] = STATE(2175), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2175), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2175), + [sym_prefix_expression] = STATE(2175), + [sym_as_expression] = STATE(2175), + [sym_selector_expression] = STATE(2175), + [sym__binary_expression] = STATE(2175), + [sym_multiplicative_expression] = STATE(2175), + [sym_additive_expression] = STATE(2175), + [sym_range_expression] = STATE(2175), + [sym_infix_expression] = STATE(2175), + [sym_nil_coalescing_expression] = STATE(2175), + [sym_check_expression] = STATE(2175), + [sym_comparison_expression] = STATE(2175), + [sym_equality_expression] = STATE(2175), + [sym_conjunction_expression] = STATE(2175), + [sym_disjunction_expression] = STATE(2175), + [sym_bitwise_operation] = STATE(2175), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2175), + [sym_await_expression] = STATE(2175), + [sym_ternary_expression] = STATE(2175), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2175), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2175), + [sym_dictionary_literal] = STATE(2175), + [sym__special_literal] = STATE(2175), + [sym__playground_literal] = STATE(2175), + [sym_lambda_literal] = STATE(2175), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2175), + [sym_key_path_expression] = STATE(2175), + [sym_key_path_string_expression] = STATE(2175), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2175), + [sym__comparison_operator] = STATE(2175), + [sym__additive_operator] = STATE(2175), + [sym__multiplicative_operator] = STATE(2175), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2175), + [sym__referenceable_operator] = STATE(2175), + [sym__eq_eq] = STATE(2175), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2087), + [anon_sym_GT] = ACTIONS(2087), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2087), + [anon_sym_LT_EQ] = ACTIONS(2087), + [anon_sym_GT_EQ] = ACTIONS(2087), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2087), + [anon_sym_SLASH] = ACTIONS(2087), + [anon_sym_PERCENT] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2089), + [sym__plus_then_ws] = ACTIONS(2089), + [sym__minus_then_ws] = ACTIONS(2089), + [sym_bang] = ACTIONS(1069), + }, + [486] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2174), + [sym_boolean_literal] = STATE(2174), + [sym__string_literal] = STATE(2174), + [sym_line_string_literal] = STATE(2174), + [sym_multi_line_string_literal] = STATE(2174), + [sym_raw_string_literal] = STATE(2174), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2174), + [sym__unary_expression] = STATE(2174), + [sym_postfix_expression] = STATE(2174), + [sym_constructor_expression] = STATE(2174), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2174), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2174), + [sym_prefix_expression] = STATE(2174), + [sym_as_expression] = STATE(2174), + [sym_selector_expression] = STATE(2174), + [sym__binary_expression] = STATE(2174), + [sym_multiplicative_expression] = STATE(2174), + [sym_additive_expression] = STATE(2174), + [sym_range_expression] = STATE(2174), + [sym_infix_expression] = STATE(2174), + [sym_nil_coalescing_expression] = STATE(2174), + [sym_check_expression] = STATE(2174), + [sym_comparison_expression] = STATE(2174), + [sym_equality_expression] = STATE(2174), + [sym_conjunction_expression] = STATE(2174), + [sym_disjunction_expression] = STATE(2174), + [sym_bitwise_operation] = STATE(2174), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2174), + [sym_await_expression] = STATE(2174), + [sym_ternary_expression] = STATE(2174), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2174), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2174), + [sym_dictionary_literal] = STATE(2174), + [sym__special_literal] = STATE(2174), + [sym__playground_literal] = STATE(2174), + [sym_lambda_literal] = STATE(2174), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2174), + [sym_key_path_expression] = STATE(2174), + [sym_key_path_string_expression] = STATE(2174), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2174), + [sym__comparison_operator] = STATE(2174), + [sym__additive_operator] = STATE(2174), + [sym__multiplicative_operator] = STATE(2174), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2174), + [sym__referenceable_operator] = STATE(2174), + [sym__eq_eq] = STATE(2174), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2091), + [anon_sym_GT] = ACTIONS(2091), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2091), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2091), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2091), + [anon_sym_LT_EQ] = ACTIONS(2091), + [anon_sym_GT_EQ] = ACTIONS(2091), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2091), + [anon_sym_SLASH] = ACTIONS(2091), + [anon_sym_PERCENT] = ACTIONS(2091), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2093), + [sym__plus_then_ws] = ACTIONS(2093), + [sym__minus_then_ws] = ACTIONS(2093), + [sym_bang] = ACTIONS(1069), + }, + [487] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2231), + [sym_boolean_literal] = STATE(2231), + [sym__string_literal] = STATE(2231), + [sym_line_string_literal] = STATE(2231), + [sym_multi_line_string_literal] = STATE(2231), + [sym_raw_string_literal] = STATE(2231), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2231), + [sym__unary_expression] = STATE(2231), + [sym_postfix_expression] = STATE(2231), + [sym_constructor_expression] = STATE(2231), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2231), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2231), + [sym_prefix_expression] = STATE(2231), + [sym_as_expression] = STATE(2231), + [sym_selector_expression] = STATE(2231), + [sym__binary_expression] = STATE(2231), + [sym_multiplicative_expression] = STATE(2231), + [sym_additive_expression] = STATE(2231), + [sym_range_expression] = STATE(2231), + [sym_infix_expression] = STATE(2231), + [sym_nil_coalescing_expression] = STATE(2231), + [sym_check_expression] = STATE(2231), + [sym_comparison_expression] = STATE(2231), + [sym_equality_expression] = STATE(2231), + [sym_conjunction_expression] = STATE(2231), + [sym_disjunction_expression] = STATE(2231), + [sym_bitwise_operation] = STATE(2231), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2231), + [sym_await_expression] = STATE(2231), + [sym_ternary_expression] = STATE(2231), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2231), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2231), + [sym_dictionary_literal] = STATE(2231), + [sym__special_literal] = STATE(2231), + [sym__playground_literal] = STATE(2231), + [sym_lambda_literal] = STATE(2231), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2231), + [sym_key_path_expression] = STATE(2231), + [sym_key_path_string_expression] = STATE(2231), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2231), + [sym__comparison_operator] = STATE(2231), + [sym__additive_operator] = STATE(2231), + [sym__multiplicative_operator] = STATE(2231), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2231), + [sym__referenceable_operator] = STATE(2231), + [sym__eq_eq] = STATE(2231), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(2095), + [anon_sym_GT] = ACTIONS(2095), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(2095), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2095), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2095), + [anon_sym_LT_EQ] = ACTIONS(2095), + [anon_sym_GT_EQ] = ACTIONS(2095), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_SLASH] = ACTIONS(2095), + [anon_sym_PERCENT] = ACTIONS(2095), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(2097), + [sym__plus_then_ws] = ACTIONS(2097), + [sym__minus_then_ws] = ACTIONS(2097), + [sym_bang] = ACTIONS(833), + }, + [488] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2055), + [sym_boolean_literal] = STATE(2055), + [sym__string_literal] = STATE(2055), + [sym_line_string_literal] = STATE(2055), + [sym_multi_line_string_literal] = STATE(2055), + [sym_raw_string_literal] = STATE(2055), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2055), + [sym__unary_expression] = STATE(2055), + [sym_postfix_expression] = STATE(2055), + [sym_constructor_expression] = STATE(2055), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2055), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2055), + [sym_prefix_expression] = STATE(2055), + [sym_as_expression] = STATE(2055), + [sym_selector_expression] = STATE(2055), + [sym__binary_expression] = STATE(2055), + [sym_multiplicative_expression] = STATE(2055), + [sym_additive_expression] = STATE(2055), + [sym_range_expression] = STATE(2055), + [sym_infix_expression] = STATE(2055), + [sym_nil_coalescing_expression] = STATE(2055), + [sym_check_expression] = STATE(2055), + [sym_comparison_expression] = STATE(2055), + [sym_equality_expression] = STATE(2055), + [sym_conjunction_expression] = STATE(2055), + [sym_disjunction_expression] = STATE(2055), + [sym_bitwise_operation] = STATE(2055), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2055), + [sym_await_expression] = STATE(2055), + [sym_ternary_expression] = STATE(2055), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2055), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2055), + [sym_dictionary_literal] = STATE(2055), + [sym__special_literal] = STATE(2055), + [sym__playground_literal] = STATE(2055), + [sym_lambda_literal] = STATE(2055), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2055), + [sym_key_path_expression] = STATE(2055), + [sym_key_path_string_expression] = STATE(2055), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2055), + [sym__comparison_operator] = STATE(2055), + [sym__additive_operator] = STATE(2055), + [sym__multiplicative_operator] = STATE(2055), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2055), + [sym__referenceable_operator] = STATE(2055), + [sym__eq_eq] = STATE(2055), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(2099), + [anon_sym_GT] = ACTIONS(2099), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(2099), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2099), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2099), + [anon_sym_LT_EQ] = ACTIONS(2099), + [anon_sym_GT_EQ] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_SLASH] = ACTIONS(2099), + [anon_sym_PERCENT] = ACTIONS(2099), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(2101), + [sym__plus_then_ws] = ACTIONS(2101), + [sym__minus_then_ws] = ACTIONS(2101), + [sym_bang] = ACTIONS(833), + }, + [489] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1906), + [sym_boolean_literal] = STATE(1906), + [sym__string_literal] = STATE(1906), + [sym_line_string_literal] = STATE(1906), + [sym_multi_line_string_literal] = STATE(1906), + [sym_raw_string_literal] = STATE(1906), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1906), + [sym__unary_expression] = STATE(1906), + [sym_postfix_expression] = STATE(1906), + [sym_constructor_expression] = STATE(1906), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1906), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1906), + [sym_prefix_expression] = STATE(1906), + [sym_as_expression] = STATE(1906), + [sym_selector_expression] = STATE(1906), + [sym__binary_expression] = STATE(1906), + [sym_multiplicative_expression] = STATE(1906), + [sym_additive_expression] = STATE(1906), + [sym_range_expression] = STATE(1906), + [sym_infix_expression] = STATE(1906), + [sym_nil_coalescing_expression] = STATE(1906), + [sym_check_expression] = STATE(1906), + [sym_comparison_expression] = STATE(1906), + [sym_equality_expression] = STATE(1906), + [sym_conjunction_expression] = STATE(1906), + [sym_disjunction_expression] = STATE(1906), + [sym_bitwise_operation] = STATE(1906), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1906), + [sym_await_expression] = STATE(1906), + [sym_ternary_expression] = STATE(1906), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1906), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1906), + [sym_dictionary_literal] = STATE(1906), + [sym__special_literal] = STATE(1906), + [sym__playground_literal] = STATE(1906), + [sym_lambda_literal] = STATE(1906), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1906), + [sym_key_path_expression] = STATE(1906), + [sym_key_path_string_expression] = STATE(1906), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1906), + [sym__comparison_operator] = STATE(1906), + [sym__additive_operator] = STATE(1906), + [sym__multiplicative_operator] = STATE(1906), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1906), + [sym__referenceable_operator] = STATE(1906), + [sym__eq_eq] = STATE(1906), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2103), + [anon_sym_GT] = ACTIONS(2103), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2103), + [anon_sym_LT_EQ] = ACTIONS(2103), + [anon_sym_GT_EQ] = ACTIONS(2103), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2103), + [anon_sym_SLASH] = ACTIONS(2103), + [anon_sym_PERCENT] = ACTIONS(2103), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2105), + [sym__plus_then_ws] = ACTIONS(2105), + [sym__minus_then_ws] = ACTIONS(2105), + [sym_bang] = ACTIONS(1069), + }, + [490] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2167), + [sym_boolean_literal] = STATE(2167), + [sym__string_literal] = STATE(2167), + [sym_line_string_literal] = STATE(2167), + [sym_multi_line_string_literal] = STATE(2167), + [sym_raw_string_literal] = STATE(2167), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2167), + [sym__unary_expression] = STATE(2167), + [sym_postfix_expression] = STATE(2167), + [sym_constructor_expression] = STATE(2167), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2167), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2167), + [sym_prefix_expression] = STATE(2167), + [sym_as_expression] = STATE(2167), + [sym_selector_expression] = STATE(2167), + [sym__binary_expression] = STATE(2167), + [sym_multiplicative_expression] = STATE(2167), + [sym_additive_expression] = STATE(2167), + [sym_range_expression] = STATE(2167), + [sym_infix_expression] = STATE(2167), + [sym_nil_coalescing_expression] = STATE(2167), + [sym_check_expression] = STATE(2167), + [sym_comparison_expression] = STATE(2167), + [sym_equality_expression] = STATE(2167), + [sym_conjunction_expression] = STATE(2167), + [sym_disjunction_expression] = STATE(2167), + [sym_bitwise_operation] = STATE(2167), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2167), + [sym_await_expression] = STATE(2167), + [sym_ternary_expression] = STATE(2167), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2167), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2167), + [sym_dictionary_literal] = STATE(2167), + [sym__special_literal] = STATE(2167), + [sym__playground_literal] = STATE(2167), + [sym_lambda_literal] = STATE(2167), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2167), + [sym_key_path_expression] = STATE(2167), + [sym_key_path_string_expression] = STATE(2167), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2167), + [sym__comparison_operator] = STATE(2167), + [sym__additive_operator] = STATE(2167), + [sym__multiplicative_operator] = STATE(2167), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2167), + [sym__referenceable_operator] = STATE(2167), + [sym__eq_eq] = STATE(2167), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2107), + [anon_sym_GT] = ACTIONS(2107), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2107), + [anon_sym_LT_EQ] = ACTIONS(2107), + [anon_sym_GT_EQ] = ACTIONS(2107), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2107), + [anon_sym_SLASH] = ACTIONS(2107), + [anon_sym_PERCENT] = ACTIONS(2107), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2109), + [sym__plus_then_ws] = ACTIONS(2109), + [sym__minus_then_ws] = ACTIONS(2109), + [sym_bang] = ACTIONS(1069), + }, + [491] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2166), + [sym_boolean_literal] = STATE(2166), + [sym__string_literal] = STATE(2166), + [sym_line_string_literal] = STATE(2166), + [sym_multi_line_string_literal] = STATE(2166), + [sym_raw_string_literal] = STATE(2166), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2166), + [sym__unary_expression] = STATE(2166), + [sym_postfix_expression] = STATE(2166), + [sym_constructor_expression] = STATE(2166), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2166), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2166), + [sym_prefix_expression] = STATE(2166), + [sym_as_expression] = STATE(2166), + [sym_selector_expression] = STATE(2166), + [sym__binary_expression] = STATE(2166), + [sym_multiplicative_expression] = STATE(2166), + [sym_additive_expression] = STATE(2166), + [sym_range_expression] = STATE(2166), + [sym_infix_expression] = STATE(2166), + [sym_nil_coalescing_expression] = STATE(2166), + [sym_check_expression] = STATE(2166), + [sym_comparison_expression] = STATE(2166), + [sym_equality_expression] = STATE(2166), + [sym_conjunction_expression] = STATE(2166), + [sym_disjunction_expression] = STATE(2166), + [sym_bitwise_operation] = STATE(2166), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2166), + [sym_await_expression] = STATE(2166), + [sym_ternary_expression] = STATE(2166), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2166), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2166), + [sym_dictionary_literal] = STATE(2166), + [sym__special_literal] = STATE(2166), + [sym__playground_literal] = STATE(2166), + [sym_lambda_literal] = STATE(2166), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2166), + [sym_key_path_expression] = STATE(2166), + [sym_key_path_string_expression] = STATE(2166), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2166), + [sym__comparison_operator] = STATE(2166), + [sym__additive_operator] = STATE(2166), + [sym__multiplicative_operator] = STATE(2166), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2166), + [sym__referenceable_operator] = STATE(2166), + [sym__eq_eq] = STATE(2166), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_GT] = ACTIONS(2111), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2111), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2111), + [anon_sym_LT_EQ] = ACTIONS(2111), + [anon_sym_GT_EQ] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_PERCENT] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2113), + [sym__plus_then_ws] = ACTIONS(2113), + [sym__minus_then_ws] = ACTIONS(2113), + [sym_bang] = ACTIONS(1069), + }, + [492] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2232), + [sym_boolean_literal] = STATE(2232), + [sym__string_literal] = STATE(2232), + [sym_line_string_literal] = STATE(2232), + [sym_multi_line_string_literal] = STATE(2232), + [sym_raw_string_literal] = STATE(2232), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2232), + [sym__unary_expression] = STATE(2232), + [sym_postfix_expression] = STATE(2232), + [sym_constructor_expression] = STATE(2232), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2232), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2232), + [sym_prefix_expression] = STATE(2232), + [sym_as_expression] = STATE(2232), + [sym_selector_expression] = STATE(2232), + [sym__binary_expression] = STATE(2232), + [sym_multiplicative_expression] = STATE(2232), + [sym_additive_expression] = STATE(2232), + [sym_range_expression] = STATE(2232), + [sym_infix_expression] = STATE(2232), + [sym_nil_coalescing_expression] = STATE(2232), + [sym_check_expression] = STATE(2232), + [sym_comparison_expression] = STATE(2232), + [sym_equality_expression] = STATE(2232), + [sym_conjunction_expression] = STATE(2232), + [sym_disjunction_expression] = STATE(2232), + [sym_bitwise_operation] = STATE(2232), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2232), + [sym_await_expression] = STATE(2232), + [sym_ternary_expression] = STATE(2232), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2232), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2232), + [sym_dictionary_literal] = STATE(2232), + [sym__special_literal] = STATE(2232), + [sym__playground_literal] = STATE(2232), + [sym_lambda_literal] = STATE(2232), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2232), + [sym_key_path_expression] = STATE(2232), + [sym_key_path_string_expression] = STATE(2232), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2232), + [sym__comparison_operator] = STATE(2232), + [sym__additive_operator] = STATE(2232), + [sym__multiplicative_operator] = STATE(2232), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2232), + [sym__referenceable_operator] = STATE(2232), + [sym__eq_eq] = STATE(2232), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(2115), + [anon_sym_GT] = ACTIONS(2115), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(2115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2115), + [anon_sym_LT_EQ] = ACTIONS(2115), + [anon_sym_GT_EQ] = ACTIONS(2115), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_SLASH] = ACTIONS(2115), + [anon_sym_PERCENT] = ACTIONS(2115), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(2117), + [sym__plus_then_ws] = ACTIONS(2117), + [sym__minus_then_ws] = ACTIONS(2117), + [sym_bang] = ACTIONS(833), + }, + [493] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1712), + [sym_boolean_literal] = STATE(1712), + [sym__string_literal] = STATE(1712), + [sym_line_string_literal] = STATE(1712), + [sym_multi_line_string_literal] = STATE(1712), + [sym_raw_string_literal] = STATE(1712), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1712), + [sym__unary_expression] = STATE(1712), + [sym_postfix_expression] = STATE(1712), + [sym_constructor_expression] = STATE(1712), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1712), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1712), + [sym_prefix_expression] = STATE(1712), + [sym_as_expression] = STATE(1712), + [sym_selector_expression] = STATE(1712), + [sym__binary_expression] = STATE(1712), + [sym_multiplicative_expression] = STATE(1712), + [sym_additive_expression] = STATE(1712), + [sym_range_expression] = STATE(1712), + [sym_infix_expression] = STATE(1712), + [sym_nil_coalescing_expression] = STATE(1712), + [sym_check_expression] = STATE(1712), + [sym_comparison_expression] = STATE(1712), + [sym_equality_expression] = STATE(1712), + [sym_conjunction_expression] = STATE(1712), + [sym_disjunction_expression] = STATE(1712), + [sym_bitwise_operation] = STATE(1712), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1712), + [sym_await_expression] = STATE(1712), + [sym_ternary_expression] = STATE(1712), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1712), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1712), + [sym_dictionary_literal] = STATE(1712), + [sym__special_literal] = STATE(1712), + [sym__playground_literal] = STATE(1712), + [sym_lambda_literal] = STATE(1712), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1712), + [sym_key_path_expression] = STATE(1712), + [sym_key_path_string_expression] = STATE(1712), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1712), + [sym__comparison_operator] = STATE(1712), + [sym__additive_operator] = STATE(1712), + [sym__multiplicative_operator] = STATE(1712), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1712), + [sym__referenceable_operator] = STATE(1712), + [sym__eq_eq] = STATE(1712), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_GT] = ACTIONS(2119), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2119), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2119), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2119), + [anon_sym_LT_EQ] = ACTIONS(2119), + [anon_sym_GT_EQ] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_SLASH] = ACTIONS(2119), + [anon_sym_PERCENT] = ACTIONS(2119), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2121), + [sym__plus_then_ws] = ACTIONS(2121), + [sym__minus_then_ws] = ACTIONS(2121), + [sym_bang] = ACTIONS(1069), + }, + [494] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2017), + [sym_boolean_literal] = STATE(2017), + [sym__string_literal] = STATE(2017), + [sym_line_string_literal] = STATE(2017), + [sym_multi_line_string_literal] = STATE(2017), + [sym_raw_string_literal] = STATE(2017), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2017), + [sym__unary_expression] = STATE(2017), + [sym_postfix_expression] = STATE(2017), + [sym_constructor_expression] = STATE(2017), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2017), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2017), + [sym_prefix_expression] = STATE(2017), + [sym_as_expression] = STATE(2017), + [sym_selector_expression] = STATE(2017), + [sym__binary_expression] = STATE(2017), + [sym_multiplicative_expression] = STATE(2017), + [sym_additive_expression] = STATE(2017), + [sym_range_expression] = STATE(2017), + [sym_infix_expression] = STATE(2017), + [sym_nil_coalescing_expression] = STATE(2017), + [sym_check_expression] = STATE(2017), + [sym_comparison_expression] = STATE(2017), + [sym_equality_expression] = STATE(2017), + [sym_conjunction_expression] = STATE(2017), + [sym_disjunction_expression] = STATE(2017), + [sym_bitwise_operation] = STATE(2017), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2017), + [sym_await_expression] = STATE(2017), + [sym_ternary_expression] = STATE(2017), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2017), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2017), + [sym_dictionary_literal] = STATE(2017), + [sym__special_literal] = STATE(2017), + [sym__playground_literal] = STATE(2017), + [sym_lambda_literal] = STATE(2017), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2017), + [sym_key_path_expression] = STATE(2017), + [sym_key_path_string_expression] = STATE(2017), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2017), + [sym__comparison_operator] = STATE(2017), + [sym__additive_operator] = STATE(2017), + [sym__multiplicative_operator] = STATE(2017), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2017), + [sym__referenceable_operator] = STATE(2017), + [sym__eq_eq] = STATE(2017), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(2123), + [anon_sym_GT] = ACTIONS(2123), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(2123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2123), + [anon_sym_LT_EQ] = ACTIONS(2123), + [anon_sym_GT_EQ] = ACTIONS(2123), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_SLASH] = ACTIONS(2123), + [anon_sym_PERCENT] = ACTIONS(2123), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(2125), + [sym__plus_then_ws] = ACTIONS(2125), + [sym__minus_then_ws] = ACTIONS(2125), + [sym_bang] = ACTIONS(833), + }, + [495] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1909), + [sym_boolean_literal] = STATE(1909), + [sym__string_literal] = STATE(1909), + [sym_line_string_literal] = STATE(1909), + [sym_multi_line_string_literal] = STATE(1909), + [sym_raw_string_literal] = STATE(1909), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1909), + [sym__unary_expression] = STATE(1909), + [sym_postfix_expression] = STATE(1909), + [sym_constructor_expression] = STATE(1909), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1909), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1909), + [sym_prefix_expression] = STATE(1909), + [sym_as_expression] = STATE(1909), + [sym_selector_expression] = STATE(1909), + [sym__binary_expression] = STATE(1909), + [sym_multiplicative_expression] = STATE(1909), + [sym_additive_expression] = STATE(1909), + [sym_range_expression] = STATE(1909), + [sym_infix_expression] = STATE(1909), + [sym_nil_coalescing_expression] = STATE(1909), + [sym_check_expression] = STATE(1909), + [sym_comparison_expression] = STATE(1909), + [sym_equality_expression] = STATE(1909), + [sym_conjunction_expression] = STATE(1909), + [sym_disjunction_expression] = STATE(1909), + [sym_bitwise_operation] = STATE(1909), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1909), + [sym_await_expression] = STATE(1909), + [sym_ternary_expression] = STATE(1909), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1909), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1909), + [sym_dictionary_literal] = STATE(1909), + [sym__special_literal] = STATE(1909), + [sym__playground_literal] = STATE(1909), + [sym_lambda_literal] = STATE(1909), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1909), + [sym_key_path_expression] = STATE(1909), + [sym_key_path_string_expression] = STATE(1909), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1909), + [sym__comparison_operator] = STATE(1909), + [sym__additive_operator] = STATE(1909), + [sym__multiplicative_operator] = STATE(1909), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1909), + [sym__referenceable_operator] = STATE(1909), + [sym__eq_eq] = STATE(1909), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2127), + [anon_sym_GT] = ACTIONS(2127), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2127), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2127), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2127), + [anon_sym_LT_EQ] = ACTIONS(2127), + [anon_sym_GT_EQ] = ACTIONS(2127), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_SLASH] = ACTIONS(2127), + [anon_sym_PERCENT] = ACTIONS(2127), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2129), + [sym__plus_then_ws] = ACTIONS(2129), + [sym__minus_then_ws] = ACTIONS(2129), + [sym_bang] = ACTIONS(1069), + }, + [496] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1910), + [sym_boolean_literal] = STATE(1910), + [sym__string_literal] = STATE(1910), + [sym_line_string_literal] = STATE(1910), + [sym_multi_line_string_literal] = STATE(1910), + [sym_raw_string_literal] = STATE(1910), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1910), + [sym__unary_expression] = STATE(1910), + [sym_postfix_expression] = STATE(1910), + [sym_constructor_expression] = STATE(1910), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1910), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1910), + [sym_prefix_expression] = STATE(1910), + [sym_as_expression] = STATE(1910), + [sym_selector_expression] = STATE(1910), + [sym__binary_expression] = STATE(1910), + [sym_multiplicative_expression] = STATE(1910), + [sym_additive_expression] = STATE(1910), + [sym_range_expression] = STATE(1910), + [sym_infix_expression] = STATE(1910), + [sym_nil_coalescing_expression] = STATE(1910), + [sym_check_expression] = STATE(1910), + [sym_comparison_expression] = STATE(1910), + [sym_equality_expression] = STATE(1910), + [sym_conjunction_expression] = STATE(1910), + [sym_disjunction_expression] = STATE(1910), + [sym_bitwise_operation] = STATE(1910), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1910), + [sym_await_expression] = STATE(1910), + [sym_ternary_expression] = STATE(1910), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1910), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1910), + [sym_dictionary_literal] = STATE(1910), + [sym__special_literal] = STATE(1910), + [sym__playground_literal] = STATE(1910), + [sym_lambda_literal] = STATE(1910), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1910), + [sym_key_path_expression] = STATE(1910), + [sym_key_path_string_expression] = STATE(1910), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1910), + [sym__comparison_operator] = STATE(1910), + [sym__additive_operator] = STATE(1910), + [sym__multiplicative_operator] = STATE(1910), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1910), + [sym__referenceable_operator] = STATE(1910), + [sym__eq_eq] = STATE(1910), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2131), + [anon_sym_GT] = ACTIONS(2131), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2131), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2131), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2131), + [anon_sym_LT_EQ] = ACTIONS(2131), + [anon_sym_GT_EQ] = ACTIONS(2131), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_SLASH] = ACTIONS(2131), + [anon_sym_PERCENT] = ACTIONS(2131), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2133), + [sym__plus_then_ws] = ACTIONS(2133), + [sym__minus_then_ws] = ACTIONS(2133), + [sym_bang] = ACTIONS(1069), + }, + [497] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1911), + [sym_boolean_literal] = STATE(1911), + [sym__string_literal] = STATE(1911), + [sym_line_string_literal] = STATE(1911), + [sym_multi_line_string_literal] = STATE(1911), + [sym_raw_string_literal] = STATE(1911), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1911), + [sym__unary_expression] = STATE(1911), + [sym_postfix_expression] = STATE(1911), + [sym_constructor_expression] = STATE(1911), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1911), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1911), + [sym_prefix_expression] = STATE(1911), + [sym_as_expression] = STATE(1911), + [sym_selector_expression] = STATE(1911), + [sym__binary_expression] = STATE(1911), + [sym_multiplicative_expression] = STATE(1911), + [sym_additive_expression] = STATE(1911), + [sym_range_expression] = STATE(1911), + [sym_infix_expression] = STATE(1911), + [sym_nil_coalescing_expression] = STATE(1911), + [sym_check_expression] = STATE(1911), + [sym_comparison_expression] = STATE(1911), + [sym_equality_expression] = STATE(1911), + [sym_conjunction_expression] = STATE(1911), + [sym_disjunction_expression] = STATE(1911), + [sym_bitwise_operation] = STATE(1911), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1911), + [sym_await_expression] = STATE(1911), + [sym_ternary_expression] = STATE(1911), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1911), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1911), + [sym_dictionary_literal] = STATE(1911), + [sym__special_literal] = STATE(1911), + [sym__playground_literal] = STATE(1911), + [sym_lambda_literal] = STATE(1911), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1911), + [sym_key_path_expression] = STATE(1911), + [sym_key_path_string_expression] = STATE(1911), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1911), + [sym__comparison_operator] = STATE(1911), + [sym__additive_operator] = STATE(1911), + [sym__multiplicative_operator] = STATE(1911), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1911), + [sym__referenceable_operator] = STATE(1911), + [sym__eq_eq] = STATE(1911), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2135), + [anon_sym_GT] = ACTIONS(2135), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2135), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2135), + [anon_sym_LT_EQ] = ACTIONS(2135), + [anon_sym_GT_EQ] = ACTIONS(2135), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2135), + [anon_sym_SLASH] = ACTIONS(2135), + [anon_sym_PERCENT] = ACTIONS(2135), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2137), + [sym__plus_then_ws] = ACTIONS(2137), + [sym__minus_then_ws] = ACTIONS(2137), + [sym_bang] = ACTIONS(1069), + }, + [498] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1912), + [sym_boolean_literal] = STATE(1912), + [sym__string_literal] = STATE(1912), + [sym_line_string_literal] = STATE(1912), + [sym_multi_line_string_literal] = STATE(1912), + [sym_raw_string_literal] = STATE(1912), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1912), + [sym__unary_expression] = STATE(1912), + [sym_postfix_expression] = STATE(1912), + [sym_constructor_expression] = STATE(1912), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1912), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1912), + [sym_prefix_expression] = STATE(1912), + [sym_as_expression] = STATE(1912), + [sym_selector_expression] = STATE(1912), + [sym__binary_expression] = STATE(1912), + [sym_multiplicative_expression] = STATE(1912), + [sym_additive_expression] = STATE(1912), + [sym_range_expression] = STATE(1912), + [sym_infix_expression] = STATE(1912), + [sym_nil_coalescing_expression] = STATE(1912), + [sym_check_expression] = STATE(1912), + [sym_comparison_expression] = STATE(1912), + [sym_equality_expression] = STATE(1912), + [sym_conjunction_expression] = STATE(1912), + [sym_disjunction_expression] = STATE(1912), + [sym_bitwise_operation] = STATE(1912), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1912), + [sym_await_expression] = STATE(1912), + [sym_ternary_expression] = STATE(1912), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1912), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1912), + [sym_dictionary_literal] = STATE(1912), + [sym__special_literal] = STATE(1912), + [sym__playground_literal] = STATE(1912), + [sym_lambda_literal] = STATE(1912), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1912), + [sym_key_path_expression] = STATE(1912), + [sym_key_path_string_expression] = STATE(1912), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1912), + [sym__comparison_operator] = STATE(1912), + [sym__additive_operator] = STATE(1912), + [sym__multiplicative_operator] = STATE(1912), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1912), + [sym__referenceable_operator] = STATE(1912), + [sym__eq_eq] = STATE(1912), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_GT] = ACTIONS(2139), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_SLASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2141), + [sym__plus_then_ws] = ACTIONS(2141), + [sym__minus_then_ws] = ACTIONS(2141), + [sym_bang] = ACTIONS(1069), + }, + [499] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1915), + [sym_boolean_literal] = STATE(1915), + [sym__string_literal] = STATE(1915), + [sym_line_string_literal] = STATE(1915), + [sym_multi_line_string_literal] = STATE(1915), + [sym_raw_string_literal] = STATE(1915), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1915), + [sym__unary_expression] = STATE(1915), + [sym_postfix_expression] = STATE(1915), + [sym_constructor_expression] = STATE(1915), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1915), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1915), + [sym_prefix_expression] = STATE(1915), + [sym_as_expression] = STATE(1915), + [sym_selector_expression] = STATE(1915), + [sym__binary_expression] = STATE(1915), + [sym_multiplicative_expression] = STATE(1915), + [sym_additive_expression] = STATE(1915), + [sym_range_expression] = STATE(1915), + [sym_infix_expression] = STATE(1915), + [sym_nil_coalescing_expression] = STATE(1915), + [sym_check_expression] = STATE(1915), + [sym_comparison_expression] = STATE(1915), + [sym_equality_expression] = STATE(1915), + [sym_conjunction_expression] = STATE(1915), + [sym_disjunction_expression] = STATE(1915), + [sym_bitwise_operation] = STATE(1915), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1915), + [sym_await_expression] = STATE(1915), + [sym_ternary_expression] = STATE(1915), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1915), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1915), + [sym_dictionary_literal] = STATE(1915), + [sym__special_literal] = STATE(1915), + [sym__playground_literal] = STATE(1915), + [sym_lambda_literal] = STATE(1915), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1915), + [sym_key_path_expression] = STATE(1915), + [sym_key_path_string_expression] = STATE(1915), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1915), + [sym__comparison_operator] = STATE(1915), + [sym__additive_operator] = STATE(1915), + [sym__multiplicative_operator] = STATE(1915), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1915), + [sym__referenceable_operator] = STATE(1915), + [sym__eq_eq] = STATE(1915), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2143), + [anon_sym_GT] = ACTIONS(2143), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2143), + [anon_sym_LT_EQ] = ACTIONS(2143), + [anon_sym_GT_EQ] = ACTIONS(2143), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2143), + [anon_sym_SLASH] = ACTIONS(2143), + [anon_sym_PERCENT] = ACTIONS(2143), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2145), + [sym__plus_then_ws] = ACTIONS(2145), + [sym__minus_then_ws] = ACTIONS(2145), + [sym_bang] = ACTIONS(1069), + }, + [500] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1754), + [sym_boolean_literal] = STATE(1754), + [sym__string_literal] = STATE(1754), + [sym_line_string_literal] = STATE(1754), + [sym_multi_line_string_literal] = STATE(1754), + [sym_raw_string_literal] = STATE(1754), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1754), + [sym__unary_expression] = STATE(1754), + [sym_postfix_expression] = STATE(1754), + [sym_constructor_expression] = STATE(1754), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1754), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1754), + [sym_prefix_expression] = STATE(1754), + [sym_as_expression] = STATE(1754), + [sym_selector_expression] = STATE(1754), + [sym__binary_expression] = STATE(1754), + [sym_multiplicative_expression] = STATE(1754), + [sym_additive_expression] = STATE(1754), + [sym_range_expression] = STATE(1754), + [sym_infix_expression] = STATE(1754), + [sym_nil_coalescing_expression] = STATE(1754), + [sym_check_expression] = STATE(1754), + [sym_comparison_expression] = STATE(1754), + [sym_equality_expression] = STATE(1754), + [sym_conjunction_expression] = STATE(1754), + [sym_disjunction_expression] = STATE(1754), + [sym_bitwise_operation] = STATE(1754), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1754), + [sym_await_expression] = STATE(1754), + [sym_ternary_expression] = STATE(1754), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1754), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1754), + [sym_dictionary_literal] = STATE(1754), + [sym__special_literal] = STATE(1754), + [sym__playground_literal] = STATE(1754), + [sym_lambda_literal] = STATE(1754), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1754), + [sym_key_path_expression] = STATE(1754), + [sym_key_path_string_expression] = STATE(1754), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1754), + [sym__comparison_operator] = STATE(1754), + [sym__additive_operator] = STATE(1754), + [sym__multiplicative_operator] = STATE(1754), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1754), + [sym__referenceable_operator] = STATE(1754), + [sym__eq_eq] = STATE(1754), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_GT] = ACTIONS(2147), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_SLASH] = ACTIONS(2147), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2149), + [sym__plus_then_ws] = ACTIONS(2149), + [sym__minus_then_ws] = ACTIONS(2149), + [sym_bang] = ACTIONS(1069), + }, + [501] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1916), + [sym_boolean_literal] = STATE(1916), + [sym__string_literal] = STATE(1916), + [sym_line_string_literal] = STATE(1916), + [sym_multi_line_string_literal] = STATE(1916), + [sym_raw_string_literal] = STATE(1916), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1916), + [sym__unary_expression] = STATE(1916), + [sym_postfix_expression] = STATE(1916), + [sym_constructor_expression] = STATE(1916), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1916), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1916), + [sym_prefix_expression] = STATE(1916), + [sym_as_expression] = STATE(1916), + [sym_selector_expression] = STATE(1916), + [sym__binary_expression] = STATE(1916), + [sym_multiplicative_expression] = STATE(1916), + [sym_additive_expression] = STATE(1916), + [sym_range_expression] = STATE(1916), + [sym_infix_expression] = STATE(1916), + [sym_nil_coalescing_expression] = STATE(1916), + [sym_check_expression] = STATE(1916), + [sym_comparison_expression] = STATE(1916), + [sym_equality_expression] = STATE(1916), + [sym_conjunction_expression] = STATE(1916), + [sym_disjunction_expression] = STATE(1916), + [sym_bitwise_operation] = STATE(1916), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1916), + [sym_await_expression] = STATE(1916), + [sym_ternary_expression] = STATE(1916), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1916), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1916), + [sym_dictionary_literal] = STATE(1916), + [sym__special_literal] = STATE(1916), + [sym__playground_literal] = STATE(1916), + [sym_lambda_literal] = STATE(1916), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1916), + [sym_key_path_expression] = STATE(1916), + [sym_key_path_string_expression] = STATE(1916), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1916), + [sym__comparison_operator] = STATE(1916), + [sym__additive_operator] = STATE(1916), + [sym__multiplicative_operator] = STATE(1916), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1916), + [sym__referenceable_operator] = STATE(1916), + [sym__eq_eq] = STATE(1916), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_GT] = ACTIONS(2151), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2151), + [anon_sym_LT_EQ] = ACTIONS(2151), + [anon_sym_GT_EQ] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_SLASH] = ACTIONS(2151), + [anon_sym_PERCENT] = ACTIONS(2151), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2153), + [sym__plus_then_ws] = ACTIONS(2153), + [sym__minus_then_ws] = ACTIONS(2153), + [sym_bang] = ACTIONS(1069), + }, + [502] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1607), + [sym_boolean_literal] = STATE(1607), + [sym__string_literal] = STATE(1607), + [sym_line_string_literal] = STATE(1607), + [sym_multi_line_string_literal] = STATE(1607), + [sym_raw_string_literal] = STATE(1607), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1607), + [sym__unary_expression] = STATE(1607), + [sym_postfix_expression] = STATE(1607), + [sym_constructor_expression] = STATE(1607), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1607), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1607), + [sym_prefix_expression] = STATE(1607), + [sym_as_expression] = STATE(1607), + [sym_selector_expression] = STATE(1607), + [sym__binary_expression] = STATE(1607), + [sym_multiplicative_expression] = STATE(1607), + [sym_additive_expression] = STATE(1607), + [sym_range_expression] = STATE(1607), + [sym_infix_expression] = STATE(1607), + [sym_nil_coalescing_expression] = STATE(1607), + [sym_check_expression] = STATE(1607), + [sym_comparison_expression] = STATE(1607), + [sym_equality_expression] = STATE(1607), + [sym_conjunction_expression] = STATE(1607), + [sym_disjunction_expression] = STATE(1607), + [sym_bitwise_operation] = STATE(1607), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1607), + [sym_await_expression] = STATE(1607), + [sym_ternary_expression] = STATE(1607), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1607), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1607), + [sym_dictionary_literal] = STATE(1607), + [sym__special_literal] = STATE(1607), + [sym__playground_literal] = STATE(1607), + [sym_lambda_literal] = STATE(1607), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1607), + [sym_key_path_expression] = STATE(1607), + [sym_key_path_string_expression] = STATE(1607), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1607), + [sym__comparison_operator] = STATE(1607), + [sym__additive_operator] = STATE(1607), + [sym__multiplicative_operator] = STATE(1607), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1607), + [sym__referenceable_operator] = STATE(1607), + [sym__eq_eq] = STATE(1607), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2155), + [anon_sym_GT] = ACTIONS(2155), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2155), + [anon_sym_LT_EQ] = ACTIONS(2155), + [anon_sym_GT_EQ] = ACTIONS(2155), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2155), + [anon_sym_SLASH] = ACTIONS(2155), + [anon_sym_PERCENT] = ACTIONS(2155), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2157), + [sym__plus_then_ws] = ACTIONS(2157), + [sym__minus_then_ws] = ACTIONS(2157), + [sym_bang] = ACTIONS(1069), + }, + [503] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1924), + [sym_boolean_literal] = STATE(1924), + [sym__string_literal] = STATE(1924), + [sym_line_string_literal] = STATE(1924), + [sym_multi_line_string_literal] = STATE(1924), + [sym_raw_string_literal] = STATE(1924), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1924), + [sym__unary_expression] = STATE(1924), + [sym_postfix_expression] = STATE(1924), + [sym_constructor_expression] = STATE(1924), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1924), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1924), + [sym_prefix_expression] = STATE(1924), + [sym_as_expression] = STATE(1924), + [sym_selector_expression] = STATE(1924), + [sym__binary_expression] = STATE(1924), + [sym_multiplicative_expression] = STATE(1924), + [sym_additive_expression] = STATE(1924), + [sym_range_expression] = STATE(1924), + [sym_infix_expression] = STATE(1924), + [sym_nil_coalescing_expression] = STATE(1924), + [sym_check_expression] = STATE(1924), + [sym_comparison_expression] = STATE(1924), + [sym_equality_expression] = STATE(1924), + [sym_conjunction_expression] = STATE(1924), + [sym_disjunction_expression] = STATE(1924), + [sym_bitwise_operation] = STATE(1924), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1924), + [sym_await_expression] = STATE(1924), + [sym_ternary_expression] = STATE(1924), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1924), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1924), + [sym_dictionary_literal] = STATE(1924), + [sym__special_literal] = STATE(1924), + [sym__playground_literal] = STATE(1924), + [sym_lambda_literal] = STATE(1924), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1924), + [sym_key_path_expression] = STATE(1924), + [sym_key_path_string_expression] = STATE(1924), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1924), + [sym__comparison_operator] = STATE(1924), + [sym__additive_operator] = STATE(1924), + [sym__multiplicative_operator] = STATE(1924), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1924), + [sym__referenceable_operator] = STATE(1924), + [sym__eq_eq] = STATE(1924), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_GT] = ACTIONS(2159), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2159), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2159), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2159), + [anon_sym_LT_EQ] = ACTIONS(2159), + [anon_sym_GT_EQ] = ACTIONS(2159), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2159), + [anon_sym_SLASH] = ACTIONS(2159), + [anon_sym_PERCENT] = ACTIONS(2159), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2161), + [sym__plus_then_ws] = ACTIONS(2161), + [sym__minus_then_ws] = ACTIONS(2161), + [sym_bang] = ACTIONS(1069), + }, + [504] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1928), + [sym_boolean_literal] = STATE(1928), + [sym__string_literal] = STATE(1928), + [sym_line_string_literal] = STATE(1928), + [sym_multi_line_string_literal] = STATE(1928), + [sym_raw_string_literal] = STATE(1928), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1928), + [sym__unary_expression] = STATE(1928), + [sym_postfix_expression] = STATE(1928), + [sym_constructor_expression] = STATE(1928), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1928), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1928), + [sym_prefix_expression] = STATE(1928), + [sym_as_expression] = STATE(1928), + [sym_selector_expression] = STATE(1928), + [sym__binary_expression] = STATE(1928), + [sym_multiplicative_expression] = STATE(1928), + [sym_additive_expression] = STATE(1928), + [sym_range_expression] = STATE(1928), + [sym_infix_expression] = STATE(1928), + [sym_nil_coalescing_expression] = STATE(1928), + [sym_check_expression] = STATE(1928), + [sym_comparison_expression] = STATE(1928), + [sym_equality_expression] = STATE(1928), + [sym_conjunction_expression] = STATE(1928), + [sym_disjunction_expression] = STATE(1928), + [sym_bitwise_operation] = STATE(1928), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1928), + [sym_await_expression] = STATE(1928), + [sym_ternary_expression] = STATE(1928), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1928), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1928), + [sym_dictionary_literal] = STATE(1928), + [sym__special_literal] = STATE(1928), + [sym__playground_literal] = STATE(1928), + [sym_lambda_literal] = STATE(1928), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1928), + [sym_key_path_expression] = STATE(1928), + [sym_key_path_string_expression] = STATE(1928), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1928), + [sym__comparison_operator] = STATE(1928), + [sym__additive_operator] = STATE(1928), + [sym__multiplicative_operator] = STATE(1928), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1928), + [sym__referenceable_operator] = STATE(1928), + [sym__eq_eq] = STATE(1928), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2163), + [anon_sym_GT] = ACTIONS(2163), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2163), + [anon_sym_LT_EQ] = ACTIONS(2163), + [anon_sym_GT_EQ] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2163), + [anon_sym_PERCENT] = ACTIONS(2163), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2165), + [sym__plus_then_ws] = ACTIONS(2165), + [sym__minus_then_ws] = ACTIONS(2165), + [sym_bang] = ACTIONS(1069), + }, + [505] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1931), + [sym_boolean_literal] = STATE(1931), + [sym__string_literal] = STATE(1931), + [sym_line_string_literal] = STATE(1931), + [sym_multi_line_string_literal] = STATE(1931), + [sym_raw_string_literal] = STATE(1931), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1931), + [sym__unary_expression] = STATE(1931), + [sym_postfix_expression] = STATE(1931), + [sym_constructor_expression] = STATE(1931), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1931), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1931), + [sym_prefix_expression] = STATE(1931), + [sym_as_expression] = STATE(1931), + [sym_selector_expression] = STATE(1931), + [sym__binary_expression] = STATE(1931), + [sym_multiplicative_expression] = STATE(1931), + [sym_additive_expression] = STATE(1931), + [sym_range_expression] = STATE(1931), + [sym_infix_expression] = STATE(1931), + [sym_nil_coalescing_expression] = STATE(1931), + [sym_check_expression] = STATE(1931), + [sym_comparison_expression] = STATE(1931), + [sym_equality_expression] = STATE(1931), + [sym_conjunction_expression] = STATE(1931), + [sym_disjunction_expression] = STATE(1931), + [sym_bitwise_operation] = STATE(1931), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1931), + [sym_await_expression] = STATE(1931), + [sym_ternary_expression] = STATE(1931), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1931), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1931), + [sym_dictionary_literal] = STATE(1931), + [sym__special_literal] = STATE(1931), + [sym__playground_literal] = STATE(1931), + [sym_lambda_literal] = STATE(1931), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1931), + [sym_key_path_expression] = STATE(1931), + [sym_key_path_string_expression] = STATE(1931), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1931), + [sym__comparison_operator] = STATE(1931), + [sym__additive_operator] = STATE(1931), + [sym__multiplicative_operator] = STATE(1931), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1931), + [sym__referenceable_operator] = STATE(1931), + [sym__eq_eq] = STATE(1931), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2167), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2167), + [anon_sym_LT_EQ] = ACTIONS(2167), + [anon_sym_GT_EQ] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_PERCENT] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2169), + [sym__plus_then_ws] = ACTIONS(2169), + [sym__minus_then_ws] = ACTIONS(2169), + [sym_bang] = ACTIONS(1069), + }, + [506] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1936), + [sym_boolean_literal] = STATE(1936), + [sym__string_literal] = STATE(1936), + [sym_line_string_literal] = STATE(1936), + [sym_multi_line_string_literal] = STATE(1936), + [sym_raw_string_literal] = STATE(1936), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1936), + [sym__unary_expression] = STATE(1936), + [sym_postfix_expression] = STATE(1936), + [sym_constructor_expression] = STATE(1936), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1936), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1936), + [sym_prefix_expression] = STATE(1936), + [sym_as_expression] = STATE(1936), + [sym_selector_expression] = STATE(1936), + [sym__binary_expression] = STATE(1936), + [sym_multiplicative_expression] = STATE(1936), + [sym_additive_expression] = STATE(1936), + [sym_range_expression] = STATE(1936), + [sym_infix_expression] = STATE(1936), + [sym_nil_coalescing_expression] = STATE(1936), + [sym_check_expression] = STATE(1936), + [sym_comparison_expression] = STATE(1936), + [sym_equality_expression] = STATE(1936), + [sym_conjunction_expression] = STATE(1936), + [sym_disjunction_expression] = STATE(1936), + [sym_bitwise_operation] = STATE(1936), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1936), + [sym_await_expression] = STATE(1936), + [sym_ternary_expression] = STATE(1936), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1936), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1936), + [sym_dictionary_literal] = STATE(1936), + [sym__special_literal] = STATE(1936), + [sym__playground_literal] = STATE(1936), + [sym_lambda_literal] = STATE(1936), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1936), + [sym_key_path_expression] = STATE(1936), + [sym_key_path_string_expression] = STATE(1936), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1936), + [sym__comparison_operator] = STATE(1936), + [sym__additive_operator] = STATE(1936), + [sym__multiplicative_operator] = STATE(1936), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1936), + [sym__referenceable_operator] = STATE(1936), + [sym__eq_eq] = STATE(1936), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_GT] = ACTIONS(2171), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2171), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2171), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2171), + [anon_sym_LT_EQ] = ACTIONS(2171), + [anon_sym_GT_EQ] = ACTIONS(2171), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_SLASH] = ACTIONS(2171), + [anon_sym_PERCENT] = ACTIONS(2171), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2173), + [sym__plus_then_ws] = ACTIONS(2173), + [sym__minus_then_ws] = ACTIONS(2173), + [sym_bang] = ACTIONS(1069), + }, + [507] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1937), + [sym_boolean_literal] = STATE(1937), + [sym__string_literal] = STATE(1937), + [sym_line_string_literal] = STATE(1937), + [sym_multi_line_string_literal] = STATE(1937), + [sym_raw_string_literal] = STATE(1937), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1937), + [sym__unary_expression] = STATE(1937), + [sym_postfix_expression] = STATE(1937), + [sym_constructor_expression] = STATE(1937), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1937), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1937), + [sym_prefix_expression] = STATE(1937), + [sym_as_expression] = STATE(1937), + [sym_selector_expression] = STATE(1937), + [sym__binary_expression] = STATE(1937), + [sym_multiplicative_expression] = STATE(1937), + [sym_additive_expression] = STATE(1937), + [sym_range_expression] = STATE(1937), + [sym_infix_expression] = STATE(1937), + [sym_nil_coalescing_expression] = STATE(1937), + [sym_check_expression] = STATE(1937), + [sym_comparison_expression] = STATE(1937), + [sym_equality_expression] = STATE(1937), + [sym_conjunction_expression] = STATE(1937), + [sym_disjunction_expression] = STATE(1937), + [sym_bitwise_operation] = STATE(1937), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1937), + [sym_await_expression] = STATE(1937), + [sym_ternary_expression] = STATE(1937), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1937), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1937), + [sym_dictionary_literal] = STATE(1937), + [sym__special_literal] = STATE(1937), + [sym__playground_literal] = STATE(1937), + [sym_lambda_literal] = STATE(1937), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1937), + [sym_key_path_expression] = STATE(1937), + [sym_key_path_string_expression] = STATE(1937), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1937), + [sym__comparison_operator] = STATE(1937), + [sym__additive_operator] = STATE(1937), + [sym__multiplicative_operator] = STATE(1937), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1937), + [sym__referenceable_operator] = STATE(1937), + [sym__eq_eq] = STATE(1937), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2177), + [sym__plus_then_ws] = ACTIONS(2177), + [sym__minus_then_ws] = ACTIONS(2177), + [sym_bang] = ACTIONS(1069), + }, + [508] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1927), + [sym_boolean_literal] = STATE(1927), + [sym__string_literal] = STATE(1927), + [sym_line_string_literal] = STATE(1927), + [sym_multi_line_string_literal] = STATE(1927), + [sym_raw_string_literal] = STATE(1927), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1927), + [sym__unary_expression] = STATE(1927), + [sym_postfix_expression] = STATE(1927), + [sym_constructor_expression] = STATE(1927), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1927), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1927), + [sym_prefix_expression] = STATE(1927), + [sym_as_expression] = STATE(1927), + [sym_selector_expression] = STATE(1927), + [sym__binary_expression] = STATE(1927), + [sym_multiplicative_expression] = STATE(1927), + [sym_additive_expression] = STATE(1927), + [sym_range_expression] = STATE(1927), + [sym_infix_expression] = STATE(1927), + [sym_nil_coalescing_expression] = STATE(1927), + [sym_check_expression] = STATE(1927), + [sym_comparison_expression] = STATE(1927), + [sym_equality_expression] = STATE(1927), + [sym_conjunction_expression] = STATE(1927), + [sym_disjunction_expression] = STATE(1927), + [sym_bitwise_operation] = STATE(1927), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1927), + [sym_await_expression] = STATE(1927), + [sym_ternary_expression] = STATE(1927), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1927), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1927), + [sym_dictionary_literal] = STATE(1927), + [sym__special_literal] = STATE(1927), + [sym__playground_literal] = STATE(1927), + [sym_lambda_literal] = STATE(1927), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1927), + [sym_key_path_expression] = STATE(1927), + [sym_key_path_string_expression] = STATE(1927), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1927), + [sym__comparison_operator] = STATE(1927), + [sym__additive_operator] = STATE(1927), + [sym__multiplicative_operator] = STATE(1927), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1927), + [sym__referenceable_operator] = STATE(1927), + [sym__eq_eq] = STATE(1927), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2179), + [anon_sym_GT] = ACTIONS(2179), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2179), + [anon_sym_LT_EQ] = ACTIONS(2179), + [anon_sym_GT_EQ] = ACTIONS(2179), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2179), + [anon_sym_SLASH] = ACTIONS(2179), + [anon_sym_PERCENT] = ACTIONS(2179), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2181), + [sym__plus_then_ws] = ACTIONS(2181), + [sym__minus_then_ws] = ACTIONS(2181), + [sym_bang] = ACTIONS(1069), + }, + [509] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1748), + [sym_boolean_literal] = STATE(1748), + [sym__string_literal] = STATE(1748), + [sym_line_string_literal] = STATE(1748), + [sym_multi_line_string_literal] = STATE(1748), + [sym_raw_string_literal] = STATE(1748), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1748), + [sym__unary_expression] = STATE(1748), + [sym_postfix_expression] = STATE(1748), + [sym_constructor_expression] = STATE(1748), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1748), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1748), + [sym_prefix_expression] = STATE(1748), + [sym_as_expression] = STATE(1748), + [sym_selector_expression] = STATE(1748), + [sym__binary_expression] = STATE(1748), + [sym_multiplicative_expression] = STATE(1748), + [sym_additive_expression] = STATE(1748), + [sym_range_expression] = STATE(1748), + [sym_infix_expression] = STATE(1748), + [sym_nil_coalescing_expression] = STATE(1748), + [sym_check_expression] = STATE(1748), + [sym_comparison_expression] = STATE(1748), + [sym_equality_expression] = STATE(1748), + [sym_conjunction_expression] = STATE(1748), + [sym_disjunction_expression] = STATE(1748), + [sym_bitwise_operation] = STATE(1748), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1748), + [sym_await_expression] = STATE(1748), + [sym_ternary_expression] = STATE(1748), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1748), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1748), + [sym_dictionary_literal] = STATE(1748), + [sym__special_literal] = STATE(1748), + [sym__playground_literal] = STATE(1748), + [sym_lambda_literal] = STATE(1748), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1748), + [sym_key_path_expression] = STATE(1748), + [sym_key_path_string_expression] = STATE(1748), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1748), + [sym__comparison_operator] = STATE(1748), + [sym__additive_operator] = STATE(1748), + [sym__multiplicative_operator] = STATE(1748), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1748), + [sym__referenceable_operator] = STATE(1748), + [sym__eq_eq] = STATE(1748), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2183), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2183), + [anon_sym_LT_EQ] = ACTIONS(2183), + [anon_sym_GT_EQ] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_PERCENT] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2185), + [sym__plus_then_ws] = ACTIONS(2185), + [sym__minus_then_ws] = ACTIONS(2185), + [sym_bang] = ACTIONS(1069), + }, + [510] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1575), + [sym_boolean_literal] = STATE(1575), + [sym__string_literal] = STATE(1575), + [sym_line_string_literal] = STATE(1575), + [sym_multi_line_string_literal] = STATE(1575), + [sym_raw_string_literal] = STATE(1575), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1575), + [sym__unary_expression] = STATE(1575), + [sym_postfix_expression] = STATE(1575), + [sym_constructor_expression] = STATE(1575), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1575), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1575), + [sym_prefix_expression] = STATE(1575), + [sym_as_expression] = STATE(1575), + [sym_selector_expression] = STATE(1575), + [sym__binary_expression] = STATE(1575), + [sym_multiplicative_expression] = STATE(1575), + [sym_additive_expression] = STATE(1575), + [sym_range_expression] = STATE(1575), + [sym_infix_expression] = STATE(1575), + [sym_nil_coalescing_expression] = STATE(1575), + [sym_check_expression] = STATE(1575), + [sym_comparison_expression] = STATE(1575), + [sym_equality_expression] = STATE(1575), + [sym_conjunction_expression] = STATE(1575), + [sym_disjunction_expression] = STATE(1575), + [sym_bitwise_operation] = STATE(1575), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1575), + [sym_await_expression] = STATE(1575), + [sym_ternary_expression] = STATE(1575), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1575), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1575), + [sym_dictionary_literal] = STATE(1575), + [sym__special_literal] = STATE(1575), + [sym__playground_literal] = STATE(1575), + [sym_lambda_literal] = STATE(1575), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1575), + [sym_key_path_expression] = STATE(1575), + [sym_key_path_string_expression] = STATE(1575), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1575), + [sym__comparison_operator] = STATE(1575), + [sym__additive_operator] = STATE(1575), + [sym__multiplicative_operator] = STATE(1575), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1575), + [sym__referenceable_operator] = STATE(1575), + [sym__eq_eq] = STATE(1575), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_GT] = ACTIONS(2187), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2187), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2187), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2187), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2189), + [sym__plus_then_ws] = ACTIONS(2189), + [sym__minus_then_ws] = ACTIONS(2189), + [sym_bang] = ACTIONS(1069), + }, + [511] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1747), + [sym_boolean_literal] = STATE(1747), + [sym__string_literal] = STATE(1747), + [sym_line_string_literal] = STATE(1747), + [sym_multi_line_string_literal] = STATE(1747), + [sym_raw_string_literal] = STATE(1747), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1747), + [sym__unary_expression] = STATE(1747), + [sym_postfix_expression] = STATE(1747), + [sym_constructor_expression] = STATE(1747), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1747), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1747), + [sym_prefix_expression] = STATE(1747), + [sym_as_expression] = STATE(1747), + [sym_selector_expression] = STATE(1747), + [sym__binary_expression] = STATE(1747), + [sym_multiplicative_expression] = STATE(1747), + [sym_additive_expression] = STATE(1747), + [sym_range_expression] = STATE(1747), + [sym_infix_expression] = STATE(1747), + [sym_nil_coalescing_expression] = STATE(1747), + [sym_check_expression] = STATE(1747), + [sym_comparison_expression] = STATE(1747), + [sym_equality_expression] = STATE(1747), + [sym_conjunction_expression] = STATE(1747), + [sym_disjunction_expression] = STATE(1747), + [sym_bitwise_operation] = STATE(1747), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1747), + [sym_await_expression] = STATE(1747), + [sym_ternary_expression] = STATE(1747), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1747), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1747), + [sym_dictionary_literal] = STATE(1747), + [sym__special_literal] = STATE(1747), + [sym__playground_literal] = STATE(1747), + [sym_lambda_literal] = STATE(1747), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1747), + [sym_key_path_expression] = STATE(1747), + [sym_key_path_string_expression] = STATE(1747), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1747), + [sym__comparison_operator] = STATE(1747), + [sym__additive_operator] = STATE(1747), + [sym__multiplicative_operator] = STATE(1747), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1747), + [sym__referenceable_operator] = STATE(1747), + [sym__eq_eq] = STATE(1747), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_GT] = ACTIONS(2191), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2191), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_SLASH] = ACTIONS(2191), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2193), + [sym__plus_then_ws] = ACTIONS(2193), + [sym__minus_then_ws] = ACTIONS(2193), + [sym_bang] = ACTIONS(1069), + }, + [512] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1940), + [sym_boolean_literal] = STATE(1940), + [sym__string_literal] = STATE(1940), + [sym_line_string_literal] = STATE(1940), + [sym_multi_line_string_literal] = STATE(1940), + [sym_raw_string_literal] = STATE(1940), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1940), + [sym__unary_expression] = STATE(1940), + [sym_postfix_expression] = STATE(1940), + [sym_constructor_expression] = STATE(1940), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1940), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1940), + [sym_prefix_expression] = STATE(1940), + [sym_as_expression] = STATE(1940), + [sym_selector_expression] = STATE(1940), + [sym__binary_expression] = STATE(1940), + [sym_multiplicative_expression] = STATE(1940), + [sym_additive_expression] = STATE(1940), + [sym_range_expression] = STATE(1940), + [sym_infix_expression] = STATE(1940), + [sym_nil_coalescing_expression] = STATE(1940), + [sym_check_expression] = STATE(1940), + [sym_comparison_expression] = STATE(1940), + [sym_equality_expression] = STATE(1940), + [sym_conjunction_expression] = STATE(1940), + [sym_disjunction_expression] = STATE(1940), + [sym_bitwise_operation] = STATE(1940), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1940), + [sym_await_expression] = STATE(1940), + [sym_ternary_expression] = STATE(1940), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1940), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1940), + [sym_dictionary_literal] = STATE(1940), + [sym__special_literal] = STATE(1940), + [sym__playground_literal] = STATE(1940), + [sym_lambda_literal] = STATE(1940), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1940), + [sym_key_path_expression] = STATE(1940), + [sym_key_path_string_expression] = STATE(1940), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1940), + [sym__comparison_operator] = STATE(1940), + [sym__additive_operator] = STATE(1940), + [sym__multiplicative_operator] = STATE(1940), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1940), + [sym__referenceable_operator] = STATE(1940), + [sym__eq_eq] = STATE(1940), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2195), + [anon_sym_GT] = ACTIONS(2195), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2195), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2195), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2195), + [anon_sym_LT_EQ] = ACTIONS(2195), + [anon_sym_GT_EQ] = ACTIONS(2195), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2195), + [anon_sym_SLASH] = ACTIONS(2195), + [anon_sym_PERCENT] = ACTIONS(2195), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2197), + [sym__plus_then_ws] = ACTIONS(2197), + [sym__minus_then_ws] = ACTIONS(2197), + [sym_bang] = ACTIONS(1069), + }, + [513] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1789), + [sym_boolean_literal] = STATE(1789), + [sym__string_literal] = STATE(1789), + [sym_line_string_literal] = STATE(1789), + [sym_multi_line_string_literal] = STATE(1789), + [sym_raw_string_literal] = STATE(1789), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1789), + [sym__unary_expression] = STATE(1789), + [sym_postfix_expression] = STATE(1789), + [sym_constructor_expression] = STATE(1789), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1789), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1789), + [sym_prefix_expression] = STATE(1789), + [sym_as_expression] = STATE(1789), + [sym_selector_expression] = STATE(1789), + [sym__binary_expression] = STATE(1789), + [sym_multiplicative_expression] = STATE(1789), + [sym_additive_expression] = STATE(1789), + [sym_range_expression] = STATE(1789), + [sym_infix_expression] = STATE(1789), + [sym_nil_coalescing_expression] = STATE(1789), + [sym_check_expression] = STATE(1789), + [sym_comparison_expression] = STATE(1789), + [sym_equality_expression] = STATE(1789), + [sym_conjunction_expression] = STATE(1789), + [sym_disjunction_expression] = STATE(1789), + [sym_bitwise_operation] = STATE(1789), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1789), + [sym_await_expression] = STATE(1789), + [sym_ternary_expression] = STATE(1789), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1789), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1789), + [sym_dictionary_literal] = STATE(1789), + [sym__special_literal] = STATE(1789), + [sym__playground_literal] = STATE(1789), + [sym_lambda_literal] = STATE(1789), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1789), + [sym_key_path_expression] = STATE(1789), + [sym_key_path_string_expression] = STATE(1789), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1789), + [sym__comparison_operator] = STATE(1789), + [sym__additive_operator] = STATE(1789), + [sym__multiplicative_operator] = STATE(1789), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1789), + [sym__referenceable_operator] = STATE(1789), + [sym__eq_eq] = STATE(1789), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(2199), + [anon_sym_GT] = ACTIONS(2199), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2199), + [anon_sym_GT_EQ] = ACTIONS(2199), + [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), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(2201), + [sym__plus_then_ws] = ACTIONS(2201), + [sym__minus_then_ws] = ACTIONS(2201), + [sym_bang] = ACTIONS(833), + }, + [514] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1776), + [sym_boolean_literal] = STATE(1776), + [sym__string_literal] = STATE(1776), + [sym_line_string_literal] = STATE(1776), + [sym_multi_line_string_literal] = STATE(1776), + [sym_raw_string_literal] = STATE(1776), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1776), + [sym__unary_expression] = STATE(1776), + [sym_postfix_expression] = STATE(1776), + [sym_constructor_expression] = STATE(1776), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1776), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1776), + [sym_prefix_expression] = STATE(1776), + [sym_as_expression] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym__binary_expression] = STATE(1776), + [sym_multiplicative_expression] = STATE(1776), + [sym_additive_expression] = STATE(1776), + [sym_range_expression] = STATE(1776), + [sym_infix_expression] = STATE(1776), + [sym_nil_coalescing_expression] = STATE(1776), + [sym_check_expression] = STATE(1776), + [sym_comparison_expression] = STATE(1776), + [sym_equality_expression] = STATE(1776), + [sym_conjunction_expression] = STATE(1776), + [sym_disjunction_expression] = STATE(1776), + [sym_bitwise_operation] = STATE(1776), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1776), + [sym_await_expression] = STATE(1776), + [sym_ternary_expression] = STATE(1776), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1776), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1776), + [sym_dictionary_literal] = STATE(1776), + [sym__special_literal] = STATE(1776), + [sym__playground_literal] = STATE(1776), + [sym_lambda_literal] = STATE(1776), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1776), + [sym_key_path_expression] = STATE(1776), + [sym_key_path_string_expression] = STATE(1776), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1776), + [sym__comparison_operator] = STATE(1776), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1776), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1776), + [sym__referenceable_operator] = STATE(1776), + [sym__eq_eq] = STATE(1776), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2203), + [anon_sym_GT] = ACTIONS(2203), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2203), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2203), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2203), + [anon_sym_LT_EQ] = ACTIONS(2203), + [anon_sym_GT_EQ] = ACTIONS(2203), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2203), + [anon_sym_SLASH] = ACTIONS(2203), + [anon_sym_PERCENT] = ACTIONS(2203), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2205), + [sym__plus_then_ws] = ACTIONS(2205), + [sym__minus_then_ws] = ACTIONS(2205), + [sym_bang] = ACTIONS(1069), + }, + [515] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1949), + [sym_boolean_literal] = STATE(1949), + [sym__string_literal] = STATE(1949), + [sym_line_string_literal] = STATE(1949), + [sym_multi_line_string_literal] = STATE(1949), + [sym_raw_string_literal] = STATE(1949), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1949), + [sym__unary_expression] = STATE(1949), + [sym_postfix_expression] = STATE(1949), + [sym_constructor_expression] = STATE(1949), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1949), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1949), + [sym_prefix_expression] = STATE(1949), + [sym_as_expression] = STATE(1949), + [sym_selector_expression] = STATE(1949), + [sym__binary_expression] = STATE(1949), + [sym_multiplicative_expression] = STATE(1949), + [sym_additive_expression] = STATE(1949), + [sym_range_expression] = STATE(1949), + [sym_infix_expression] = STATE(1949), + [sym_nil_coalescing_expression] = STATE(1949), + [sym_check_expression] = STATE(1949), + [sym_comparison_expression] = STATE(1949), + [sym_equality_expression] = STATE(1949), + [sym_conjunction_expression] = STATE(1949), + [sym_disjunction_expression] = STATE(1949), + [sym_bitwise_operation] = STATE(1949), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1949), + [sym_await_expression] = STATE(1949), + [sym_ternary_expression] = STATE(1949), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1949), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1949), + [sym_dictionary_literal] = STATE(1949), + [sym__special_literal] = STATE(1949), + [sym__playground_literal] = STATE(1949), + [sym_lambda_literal] = STATE(1949), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1949), + [sym_key_path_expression] = STATE(1949), + [sym_key_path_string_expression] = STATE(1949), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1949), + [sym__comparison_operator] = STATE(1949), + [sym__additive_operator] = STATE(1949), + [sym__multiplicative_operator] = STATE(1949), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1949), + [sym__referenceable_operator] = STATE(1949), + [sym__eq_eq] = STATE(1949), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2207), + [anon_sym_GT] = ACTIONS(2207), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2207), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2207), + [anon_sym_SLASH] = ACTIONS(2207), + [anon_sym_PERCENT] = ACTIONS(2207), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2209), + [sym__plus_then_ws] = ACTIONS(2209), + [sym__minus_then_ws] = ACTIONS(2209), + [sym_bang] = ACTIONS(1069), + }, + [516] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1773), + [sym_boolean_literal] = STATE(1773), + [sym__string_literal] = STATE(1773), + [sym_line_string_literal] = STATE(1773), + [sym_multi_line_string_literal] = STATE(1773), + [sym_raw_string_literal] = STATE(1773), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1773), + [sym__unary_expression] = STATE(1773), + [sym_postfix_expression] = STATE(1773), + [sym_constructor_expression] = STATE(1773), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1773), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1773), + [sym_prefix_expression] = STATE(1773), + [sym_as_expression] = STATE(1773), + [sym_selector_expression] = STATE(1773), + [sym__binary_expression] = STATE(1773), + [sym_multiplicative_expression] = STATE(1773), + [sym_additive_expression] = STATE(1773), + [sym_range_expression] = STATE(1773), + [sym_infix_expression] = STATE(1773), + [sym_nil_coalescing_expression] = STATE(1773), + [sym_check_expression] = STATE(1773), + [sym_comparison_expression] = STATE(1773), + [sym_equality_expression] = STATE(1773), + [sym_conjunction_expression] = STATE(1773), + [sym_disjunction_expression] = STATE(1773), + [sym_bitwise_operation] = STATE(1773), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1773), + [sym_await_expression] = STATE(1773), + [sym_ternary_expression] = STATE(1773), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1773), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1773), + [sym_dictionary_literal] = STATE(1773), + [sym__special_literal] = STATE(1773), + [sym__playground_literal] = STATE(1773), + [sym_lambda_literal] = STATE(1773), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1773), + [sym_key_path_expression] = STATE(1773), + [sym_key_path_string_expression] = STATE(1773), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1773), + [sym__comparison_operator] = STATE(1773), + [sym__additive_operator] = STATE(1773), + [sym__multiplicative_operator] = STATE(1773), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1773), + [sym__referenceable_operator] = STATE(1773), + [sym__eq_eq] = STATE(1773), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_GT] = ACTIONS(2211), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2211), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_SLASH] = ACTIONS(2211), + [anon_sym_PERCENT] = ACTIONS(2211), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2213), + [sym__plus_then_ws] = ACTIONS(2213), + [sym__minus_then_ws] = ACTIONS(2213), + [sym_bang] = ACTIONS(1069), + }, + [517] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1950), + [sym_boolean_literal] = STATE(1950), + [sym__string_literal] = STATE(1950), + [sym_line_string_literal] = STATE(1950), + [sym_multi_line_string_literal] = STATE(1950), + [sym_raw_string_literal] = STATE(1950), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1950), + [sym__unary_expression] = STATE(1950), + [sym_postfix_expression] = STATE(1950), + [sym_constructor_expression] = STATE(1950), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1950), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1950), + [sym_prefix_expression] = STATE(1950), + [sym_as_expression] = STATE(1950), + [sym_selector_expression] = STATE(1950), + [sym__binary_expression] = STATE(1950), + [sym_multiplicative_expression] = STATE(1950), + [sym_additive_expression] = STATE(1950), + [sym_range_expression] = STATE(1950), + [sym_infix_expression] = STATE(1950), + [sym_nil_coalescing_expression] = STATE(1950), + [sym_check_expression] = STATE(1950), + [sym_comparison_expression] = STATE(1950), + [sym_equality_expression] = STATE(1950), + [sym_conjunction_expression] = STATE(1950), + [sym_disjunction_expression] = STATE(1950), + [sym_bitwise_operation] = STATE(1950), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1950), + [sym_await_expression] = STATE(1950), + [sym_ternary_expression] = STATE(1950), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1950), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1950), + [sym_dictionary_literal] = STATE(1950), + [sym__special_literal] = STATE(1950), + [sym__playground_literal] = STATE(1950), + [sym_lambda_literal] = STATE(1950), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1950), + [sym_key_path_expression] = STATE(1950), + [sym_key_path_string_expression] = STATE(1950), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1950), + [sym__comparison_operator] = STATE(1950), + [sym__additive_operator] = STATE(1950), + [sym__multiplicative_operator] = STATE(1950), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1950), + [sym__referenceable_operator] = STATE(1950), + [sym__eq_eq] = STATE(1950), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_GT] = ACTIONS(2215), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2215), + [anon_sym_LT_EQ] = ACTIONS(2215), + [anon_sym_GT_EQ] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_PERCENT] = ACTIONS(2215), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2217), + [sym__plus_then_ws] = ACTIONS(2217), + [sym__minus_then_ws] = ACTIONS(2217), + [sym_bang] = ACTIONS(1069), + }, + [518] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1729), + [sym_boolean_literal] = STATE(1729), + [sym__string_literal] = STATE(1729), + [sym_line_string_literal] = STATE(1729), + [sym_multi_line_string_literal] = STATE(1729), + [sym_raw_string_literal] = STATE(1729), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1729), + [sym__unary_expression] = STATE(1729), + [sym_postfix_expression] = STATE(1729), + [sym_constructor_expression] = STATE(1729), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1729), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1729), + [sym_prefix_expression] = STATE(1729), + [sym_as_expression] = STATE(1729), + [sym_selector_expression] = STATE(1729), + [sym__binary_expression] = STATE(1729), + [sym_multiplicative_expression] = STATE(1729), + [sym_additive_expression] = STATE(1729), + [sym_range_expression] = STATE(1729), + [sym_infix_expression] = STATE(1729), + [sym_nil_coalescing_expression] = STATE(1729), + [sym_check_expression] = STATE(1729), + [sym_comparison_expression] = STATE(1729), + [sym_equality_expression] = STATE(1729), + [sym_conjunction_expression] = STATE(1729), + [sym_disjunction_expression] = STATE(1729), + [sym_bitwise_operation] = STATE(1729), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1729), + [sym_await_expression] = STATE(1729), + [sym_ternary_expression] = STATE(1729), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1729), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1729), + [sym_dictionary_literal] = STATE(1729), + [sym__special_literal] = STATE(1729), + [sym__playground_literal] = STATE(1729), + [sym_lambda_literal] = STATE(1729), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1729), + [sym_key_path_expression] = STATE(1729), + [sym_key_path_string_expression] = STATE(1729), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1729), + [sym__comparison_operator] = STATE(1729), + [sym__additive_operator] = STATE(1729), + [sym__multiplicative_operator] = STATE(1729), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1729), + [sym__referenceable_operator] = STATE(1729), + [sym__eq_eq] = STATE(1729), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_GT] = ACTIONS(2219), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2219), + [anon_sym_LT_EQ] = ACTIONS(2219), + [anon_sym_GT_EQ] = ACTIONS(2219), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_PERCENT] = ACTIONS(2219), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2221), + [sym__plus_then_ws] = ACTIONS(2221), + [sym__minus_then_ws] = ACTIONS(2221), + [sym_bang] = ACTIONS(1069), + }, + [519] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1728), + [sym_boolean_literal] = STATE(1728), + [sym__string_literal] = STATE(1728), + [sym_line_string_literal] = STATE(1728), + [sym_multi_line_string_literal] = STATE(1728), + [sym_raw_string_literal] = STATE(1728), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1728), + [sym__unary_expression] = STATE(1728), + [sym_postfix_expression] = STATE(1728), + [sym_constructor_expression] = STATE(1728), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1728), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1728), + [sym_prefix_expression] = STATE(1728), + [sym_as_expression] = STATE(1728), + [sym_selector_expression] = STATE(1728), + [sym__binary_expression] = STATE(1728), + [sym_multiplicative_expression] = STATE(1728), + [sym_additive_expression] = STATE(1728), + [sym_range_expression] = STATE(1728), + [sym_infix_expression] = STATE(1728), + [sym_nil_coalescing_expression] = STATE(1728), + [sym_check_expression] = STATE(1728), + [sym_comparison_expression] = STATE(1728), + [sym_equality_expression] = STATE(1728), + [sym_conjunction_expression] = STATE(1728), + [sym_disjunction_expression] = STATE(1728), + [sym_bitwise_operation] = STATE(1728), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1728), + [sym_await_expression] = STATE(1728), + [sym_ternary_expression] = STATE(1728), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1728), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1728), + [sym_dictionary_literal] = STATE(1728), + [sym__special_literal] = STATE(1728), + [sym__playground_literal] = STATE(1728), + [sym_lambda_literal] = STATE(1728), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1728), + [sym_key_path_expression] = STATE(1728), + [sym_key_path_string_expression] = STATE(1728), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1728), + [sym__comparison_operator] = STATE(1728), + [sym__additive_operator] = STATE(1728), + [sym__multiplicative_operator] = STATE(1728), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1728), + [sym__referenceable_operator] = STATE(1728), + [sym__eq_eq] = STATE(1728), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_GT] = ACTIONS(2223), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2223), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2223), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2223), + [anon_sym_LT_EQ] = ACTIONS(2223), + [anon_sym_GT_EQ] = ACTIONS(2223), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_SLASH] = ACTIONS(2223), + [anon_sym_PERCENT] = ACTIONS(2223), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2225), + [sym__plus_then_ws] = ACTIONS(2225), + [sym__minus_then_ws] = ACTIONS(2225), + [sym_bang] = ACTIONS(1069), + }, + [520] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1958), + [sym_boolean_literal] = STATE(1958), + [sym__string_literal] = STATE(1958), + [sym_line_string_literal] = STATE(1958), + [sym_multi_line_string_literal] = STATE(1958), + [sym_raw_string_literal] = STATE(1958), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1958), + [sym__unary_expression] = STATE(1958), + [sym_postfix_expression] = STATE(1958), + [sym_constructor_expression] = STATE(1958), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1958), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1958), + [sym_prefix_expression] = STATE(1958), + [sym_as_expression] = STATE(1958), + [sym_selector_expression] = STATE(1958), + [sym__binary_expression] = STATE(1958), + [sym_multiplicative_expression] = STATE(1958), + [sym_additive_expression] = STATE(1958), + [sym_range_expression] = STATE(1958), + [sym_infix_expression] = STATE(1958), + [sym_nil_coalescing_expression] = STATE(1958), + [sym_check_expression] = STATE(1958), + [sym_comparison_expression] = STATE(1958), + [sym_equality_expression] = STATE(1958), + [sym_conjunction_expression] = STATE(1958), + [sym_disjunction_expression] = STATE(1958), + [sym_bitwise_operation] = STATE(1958), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1958), + [sym_await_expression] = STATE(1958), + [sym_ternary_expression] = STATE(1958), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1958), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1958), + [sym_dictionary_literal] = STATE(1958), + [sym__special_literal] = STATE(1958), + [sym__playground_literal] = STATE(1958), + [sym_lambda_literal] = STATE(1958), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1958), + [sym_key_path_expression] = STATE(1958), + [sym_key_path_string_expression] = STATE(1958), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1958), + [sym__comparison_operator] = STATE(1958), + [sym__additive_operator] = STATE(1958), + [sym__multiplicative_operator] = STATE(1958), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1958), + [sym__referenceable_operator] = STATE(1958), + [sym__eq_eq] = STATE(1958), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2227), + [anon_sym_GT] = ACTIONS(2227), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2227), + [anon_sym_LT_EQ] = ACTIONS(2227), + [anon_sym_GT_EQ] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_SLASH] = ACTIONS(2227), + [anon_sym_PERCENT] = ACTIONS(2227), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2229), + [sym__plus_then_ws] = ACTIONS(2229), + [sym__minus_then_ws] = ACTIONS(2229), + [sym_bang] = ACTIONS(1069), + }, + [521] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1722), + [sym_boolean_literal] = STATE(1722), + [sym__string_literal] = STATE(1722), + [sym_line_string_literal] = STATE(1722), + [sym_multi_line_string_literal] = STATE(1722), + [sym_raw_string_literal] = STATE(1722), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1722), + [sym__unary_expression] = STATE(1722), + [sym_postfix_expression] = STATE(1722), + [sym_constructor_expression] = STATE(1722), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1722), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1722), + [sym_prefix_expression] = STATE(1722), + [sym_as_expression] = STATE(1722), + [sym_selector_expression] = STATE(1722), + [sym__binary_expression] = STATE(1722), + [sym_multiplicative_expression] = STATE(1722), + [sym_additive_expression] = STATE(1722), + [sym_range_expression] = STATE(1722), + [sym_infix_expression] = STATE(1722), + [sym_nil_coalescing_expression] = STATE(1722), + [sym_check_expression] = STATE(1722), + [sym_comparison_expression] = STATE(1722), + [sym_equality_expression] = STATE(1722), + [sym_conjunction_expression] = STATE(1722), + [sym_disjunction_expression] = STATE(1722), + [sym_bitwise_operation] = STATE(1722), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1722), + [sym_await_expression] = STATE(1722), + [sym_ternary_expression] = STATE(1722), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1722), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1722), + [sym_dictionary_literal] = STATE(1722), + [sym__special_literal] = STATE(1722), + [sym__playground_literal] = STATE(1722), + [sym_lambda_literal] = STATE(1722), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1722), + [sym_key_path_expression] = STATE(1722), + [sym_key_path_string_expression] = STATE(1722), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1722), + [sym__comparison_operator] = STATE(1722), + [sym__additive_operator] = STATE(1722), + [sym__multiplicative_operator] = STATE(1722), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1722), + [sym__referenceable_operator] = STATE(1722), + [sym__eq_eq] = STATE(1722), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2231), + [anon_sym_GT] = ACTIONS(2231), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2231), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2231), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2231), + [anon_sym_LT_EQ] = ACTIONS(2231), + [anon_sym_GT_EQ] = ACTIONS(2231), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2231), + [anon_sym_SLASH] = ACTIONS(2231), + [anon_sym_PERCENT] = ACTIONS(2231), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2233), + [sym__plus_then_ws] = ACTIONS(2233), + [sym__minus_then_ws] = ACTIONS(2233), + [sym_bang] = ACTIONS(1069), + }, + [522] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1721), + [sym_boolean_literal] = STATE(1721), + [sym__string_literal] = STATE(1721), + [sym_line_string_literal] = STATE(1721), + [sym_multi_line_string_literal] = STATE(1721), + [sym_raw_string_literal] = STATE(1721), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1721), + [sym__unary_expression] = STATE(1721), + [sym_postfix_expression] = STATE(1721), + [sym_constructor_expression] = STATE(1721), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1721), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1721), + [sym_prefix_expression] = STATE(1721), + [sym_as_expression] = STATE(1721), + [sym_selector_expression] = STATE(1721), + [sym__binary_expression] = STATE(1721), + [sym_multiplicative_expression] = STATE(1721), + [sym_additive_expression] = STATE(1721), + [sym_range_expression] = STATE(1721), + [sym_infix_expression] = STATE(1721), + [sym_nil_coalescing_expression] = STATE(1721), + [sym_check_expression] = STATE(1721), + [sym_comparison_expression] = STATE(1721), + [sym_equality_expression] = STATE(1721), + [sym_conjunction_expression] = STATE(1721), + [sym_disjunction_expression] = STATE(1721), + [sym_bitwise_operation] = STATE(1721), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1721), + [sym_await_expression] = STATE(1721), + [sym_ternary_expression] = STATE(1721), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1721), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1721), + [sym_dictionary_literal] = STATE(1721), + [sym__special_literal] = STATE(1721), + [sym__playground_literal] = STATE(1721), + [sym_lambda_literal] = STATE(1721), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1721), + [sym_key_path_expression] = STATE(1721), + [sym_key_path_string_expression] = STATE(1721), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1721), + [sym__comparison_operator] = STATE(1721), + [sym__additive_operator] = STATE(1721), + [sym__multiplicative_operator] = STATE(1721), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1721), + [sym__referenceable_operator] = STATE(1721), + [sym__eq_eq] = STATE(1721), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2235), + [anon_sym_GT] = ACTIONS(2235), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2235), + [anon_sym_LT_EQ] = ACTIONS(2235), + [anon_sym_GT_EQ] = ACTIONS(2235), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2235), + [anon_sym_SLASH] = ACTIONS(2235), + [anon_sym_PERCENT] = ACTIONS(2235), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2237), + [sym__plus_then_ws] = ACTIONS(2237), + [sym__minus_then_ws] = ACTIONS(2237), + [sym_bang] = ACTIONS(1069), + }, + [523] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1967), + [sym_boolean_literal] = STATE(1967), + [sym__string_literal] = STATE(1967), + [sym_line_string_literal] = STATE(1967), + [sym_multi_line_string_literal] = STATE(1967), + [sym_raw_string_literal] = STATE(1967), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1967), + [sym__unary_expression] = STATE(1967), + [sym_postfix_expression] = STATE(1967), + [sym_constructor_expression] = STATE(1967), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1967), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1967), + [sym_prefix_expression] = STATE(1967), + [sym_as_expression] = STATE(1967), + [sym_selector_expression] = STATE(1967), + [sym__binary_expression] = STATE(1967), + [sym_multiplicative_expression] = STATE(1967), + [sym_additive_expression] = STATE(1967), + [sym_range_expression] = STATE(1967), + [sym_infix_expression] = STATE(1967), + [sym_nil_coalescing_expression] = STATE(1967), + [sym_check_expression] = STATE(1967), + [sym_comparison_expression] = STATE(1967), + [sym_equality_expression] = STATE(1967), + [sym_conjunction_expression] = STATE(1967), + [sym_disjunction_expression] = STATE(1967), + [sym_bitwise_operation] = STATE(1967), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1967), + [sym_await_expression] = STATE(1967), + [sym_ternary_expression] = STATE(1967), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1967), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1967), + [sym_dictionary_literal] = STATE(1967), + [sym__special_literal] = STATE(1967), + [sym__playground_literal] = STATE(1967), + [sym_lambda_literal] = STATE(1967), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1967), + [sym_key_path_expression] = STATE(1967), + [sym_key_path_string_expression] = STATE(1967), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1967), + [sym__comparison_operator] = STATE(1967), + [sym__additive_operator] = STATE(1967), + [sym__multiplicative_operator] = STATE(1967), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1967), + [sym__referenceable_operator] = STATE(1967), + [sym__eq_eq] = STATE(1967), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2239), + [anon_sym_GT] = ACTIONS(2239), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2239), + [anon_sym_LT_EQ] = ACTIONS(2239), + [anon_sym_GT_EQ] = ACTIONS(2239), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2239), + [anon_sym_SLASH] = ACTIONS(2239), + [anon_sym_PERCENT] = ACTIONS(2239), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2241), + [sym__plus_then_ws] = ACTIONS(2241), + [sym__minus_then_ws] = ACTIONS(2241), + [sym_bang] = ACTIONS(1069), + }, + [524] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1714), + [sym_boolean_literal] = STATE(1714), + [sym__string_literal] = STATE(1714), + [sym_line_string_literal] = STATE(1714), + [sym_multi_line_string_literal] = STATE(1714), + [sym_raw_string_literal] = STATE(1714), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1714), + [sym__unary_expression] = STATE(1714), + [sym_postfix_expression] = STATE(1714), + [sym_constructor_expression] = STATE(1714), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1714), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1714), + [sym_prefix_expression] = STATE(1714), + [sym_as_expression] = STATE(1714), + [sym_selector_expression] = STATE(1714), + [sym__binary_expression] = STATE(1714), + [sym_multiplicative_expression] = STATE(1714), + [sym_additive_expression] = STATE(1714), + [sym_range_expression] = STATE(1714), + [sym_infix_expression] = STATE(1714), + [sym_nil_coalescing_expression] = STATE(1714), + [sym_check_expression] = STATE(1714), + [sym_comparison_expression] = STATE(1714), + [sym_equality_expression] = STATE(1714), + [sym_conjunction_expression] = STATE(1714), + [sym_disjunction_expression] = STATE(1714), + [sym_bitwise_operation] = STATE(1714), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_ternary_expression] = STATE(1714), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1714), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1714), + [sym_dictionary_literal] = STATE(1714), + [sym__special_literal] = STATE(1714), + [sym__playground_literal] = STATE(1714), + [sym_lambda_literal] = STATE(1714), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1714), + [sym_key_path_expression] = STATE(1714), + [sym_key_path_string_expression] = STATE(1714), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1714), + [sym__comparison_operator] = STATE(1714), + [sym__additive_operator] = STATE(1714), + [sym__multiplicative_operator] = STATE(1714), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1714), + [sym__referenceable_operator] = STATE(1714), + [sym__eq_eq] = STATE(1714), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2243), + [anon_sym_GT] = ACTIONS(2243), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2243), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2243), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2243), + [anon_sym_LT_EQ] = ACTIONS(2243), + [anon_sym_GT_EQ] = ACTIONS(2243), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2243), + [anon_sym_SLASH] = ACTIONS(2243), + [anon_sym_PERCENT] = ACTIONS(2243), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2245), + [sym__plus_then_ws] = ACTIONS(2245), + [sym__minus_then_ws] = ACTIONS(2245), + [sym_bang] = ACTIONS(1069), + }, + [525] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1713), + [sym_boolean_literal] = STATE(1713), + [sym__string_literal] = STATE(1713), + [sym_line_string_literal] = STATE(1713), + [sym_multi_line_string_literal] = STATE(1713), + [sym_raw_string_literal] = STATE(1713), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1713), + [sym__unary_expression] = STATE(1713), + [sym_postfix_expression] = STATE(1713), + [sym_constructor_expression] = STATE(1713), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1713), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1713), + [sym_prefix_expression] = STATE(1713), + [sym_as_expression] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym__binary_expression] = STATE(1713), + [sym_multiplicative_expression] = STATE(1713), + [sym_additive_expression] = STATE(1713), + [sym_range_expression] = STATE(1713), + [sym_infix_expression] = STATE(1713), + [sym_nil_coalescing_expression] = STATE(1713), + [sym_check_expression] = STATE(1713), + [sym_comparison_expression] = STATE(1713), + [sym_equality_expression] = STATE(1713), + [sym_conjunction_expression] = STATE(1713), + [sym_disjunction_expression] = STATE(1713), + [sym_bitwise_operation] = STATE(1713), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1713), + [sym_await_expression] = STATE(1713), + [sym_ternary_expression] = STATE(1713), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1713), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1713), + [sym_dictionary_literal] = STATE(1713), + [sym__special_literal] = STATE(1713), + [sym__playground_literal] = STATE(1713), + [sym_lambda_literal] = STATE(1713), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1713), + [sym_key_path_expression] = STATE(1713), + [sym_key_path_string_expression] = STATE(1713), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1713), + [sym__comparison_operator] = STATE(1713), + [sym__additive_operator] = STATE(1713), + [sym__multiplicative_operator] = STATE(1713), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1713), + [sym__referenceable_operator] = STATE(1713), + [sym__eq_eq] = STATE(1713), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(2247), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2247), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2247), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2247), + [anon_sym_LT_EQ] = ACTIONS(2247), + [anon_sym_GT_EQ] = ACTIONS(2247), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_SLASH] = ACTIONS(2247), + [anon_sym_PERCENT] = ACTIONS(2247), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2249), + [sym__plus_then_ws] = ACTIONS(2249), + [sym__minus_then_ws] = ACTIONS(2249), + [sym_bang] = ACTIONS(1069), + }, + [526] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1767), + [sym_boolean_literal] = STATE(1767), + [sym__string_literal] = STATE(1767), + [sym_line_string_literal] = STATE(1767), + [sym_multi_line_string_literal] = STATE(1767), + [sym_raw_string_literal] = STATE(1767), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1767), + [sym__unary_expression] = STATE(1767), + [sym_postfix_expression] = STATE(1767), + [sym_constructor_expression] = STATE(1767), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1767), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1767), + [sym_prefix_expression] = STATE(1767), + [sym_as_expression] = STATE(1767), + [sym_selector_expression] = STATE(1767), + [sym__binary_expression] = STATE(1767), + [sym_multiplicative_expression] = STATE(1767), + [sym_additive_expression] = STATE(1767), + [sym_range_expression] = STATE(1767), + [sym_infix_expression] = STATE(1767), + [sym_nil_coalescing_expression] = STATE(1767), + [sym_check_expression] = STATE(1767), + [sym_comparison_expression] = STATE(1767), + [sym_equality_expression] = STATE(1767), + [sym_conjunction_expression] = STATE(1767), + [sym_disjunction_expression] = STATE(1767), + [sym_bitwise_operation] = STATE(1767), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1767), + [sym_await_expression] = STATE(1767), + [sym_ternary_expression] = STATE(1767), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1767), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1767), + [sym_dictionary_literal] = STATE(1767), + [sym__special_literal] = STATE(1767), + [sym__playground_literal] = STATE(1767), + [sym_lambda_literal] = STATE(1767), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1767), + [sym_key_path_expression] = STATE(1767), + [sym_key_path_string_expression] = STATE(1767), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1767), + [sym__comparison_operator] = STATE(1767), + [sym__additive_operator] = STATE(1767), + [sym__multiplicative_operator] = STATE(1767), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1767), + [sym__referenceable_operator] = STATE(1767), + [sym__eq_eq] = STATE(1767), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_GT] = ACTIONS(2251), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2251), + [anon_sym_LT_EQ] = ACTIONS(2251), + [anon_sym_GT_EQ] = ACTIONS(2251), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2251), + [anon_sym_SLASH] = ACTIONS(2251), + [anon_sym_PERCENT] = ACTIONS(2251), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2253), + [sym__plus_then_ws] = ACTIONS(2253), + [sym__minus_then_ws] = ACTIONS(2253), + [sym_bang] = ACTIONS(1069), + }, + [527] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1978), + [sym_boolean_literal] = STATE(1978), + [sym__string_literal] = STATE(1978), + [sym_line_string_literal] = STATE(1978), + [sym_multi_line_string_literal] = STATE(1978), + [sym_raw_string_literal] = STATE(1978), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1978), + [sym__unary_expression] = STATE(1978), + [sym_postfix_expression] = STATE(1978), + [sym_constructor_expression] = STATE(1978), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1978), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1978), + [sym_prefix_expression] = STATE(1978), + [sym_as_expression] = STATE(1978), + [sym_selector_expression] = STATE(1978), + [sym__binary_expression] = STATE(1978), + [sym_multiplicative_expression] = STATE(1978), + [sym_additive_expression] = STATE(1978), + [sym_range_expression] = STATE(1978), + [sym_infix_expression] = STATE(1978), + [sym_nil_coalescing_expression] = STATE(1978), + [sym_check_expression] = STATE(1978), + [sym_comparison_expression] = STATE(1978), + [sym_equality_expression] = STATE(1978), + [sym_conjunction_expression] = STATE(1978), + [sym_disjunction_expression] = STATE(1978), + [sym_bitwise_operation] = STATE(1978), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1978), + [sym_await_expression] = STATE(1978), + [sym_ternary_expression] = STATE(1978), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1978), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1978), + [sym_dictionary_literal] = STATE(1978), + [sym__special_literal] = STATE(1978), + [sym__playground_literal] = STATE(1978), + [sym_lambda_literal] = STATE(1978), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1978), + [sym_key_path_expression] = STATE(1978), + [sym_key_path_string_expression] = STATE(1978), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1978), + [sym__comparison_operator] = STATE(1978), + [sym__additive_operator] = STATE(1978), + [sym__multiplicative_operator] = STATE(1978), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1978), + [sym__referenceable_operator] = STATE(1978), + [sym__eq_eq] = STATE(1978), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_GT] = ACTIONS(2255), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2255), + [anon_sym_LT_EQ] = ACTIONS(2255), + [anon_sym_GT_EQ] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(2255), + [anon_sym_PERCENT] = ACTIONS(2255), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2257), + [sym__plus_then_ws] = ACTIONS(2257), + [sym__minus_then_ws] = ACTIONS(2257), + [sym_bang] = ACTIONS(1069), + }, + [528] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1705), + [sym_boolean_literal] = STATE(1705), + [sym__string_literal] = STATE(1705), + [sym_line_string_literal] = STATE(1705), + [sym_multi_line_string_literal] = STATE(1705), + [sym_raw_string_literal] = STATE(1705), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1705), + [sym__unary_expression] = STATE(1705), + [sym_postfix_expression] = STATE(1705), + [sym_constructor_expression] = STATE(1705), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1705), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1705), + [sym_prefix_expression] = STATE(1705), + [sym_as_expression] = STATE(1705), + [sym_selector_expression] = STATE(1705), + [sym__binary_expression] = STATE(1705), + [sym_multiplicative_expression] = STATE(1705), + [sym_additive_expression] = STATE(1705), + [sym_range_expression] = STATE(1705), + [sym_infix_expression] = STATE(1705), + [sym_nil_coalescing_expression] = STATE(1705), + [sym_check_expression] = STATE(1705), + [sym_comparison_expression] = STATE(1705), + [sym_equality_expression] = STATE(1705), + [sym_conjunction_expression] = STATE(1705), + [sym_disjunction_expression] = STATE(1705), + [sym_bitwise_operation] = STATE(1705), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1705), + [sym_await_expression] = STATE(1705), + [sym_ternary_expression] = STATE(1705), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1705), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1705), + [sym_dictionary_literal] = STATE(1705), + [sym__special_literal] = STATE(1705), + [sym__playground_literal] = STATE(1705), + [sym_lambda_literal] = STATE(1705), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1705), + [sym_key_path_expression] = STATE(1705), + [sym_key_path_string_expression] = STATE(1705), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1705), + [sym__comparison_operator] = STATE(1705), + [sym__additive_operator] = STATE(1705), + [sym__multiplicative_operator] = STATE(1705), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1705), + [sym__referenceable_operator] = STATE(1705), + [sym__eq_eq] = STATE(1705), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_GT] = ACTIONS(2259), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2259), + [anon_sym_LT_EQ] = ACTIONS(2259), + [anon_sym_GT_EQ] = ACTIONS(2259), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_SLASH] = ACTIONS(2259), + [anon_sym_PERCENT] = ACTIONS(2259), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2261), + [sym__plus_then_ws] = ACTIONS(2261), + [sym__minus_then_ws] = ACTIONS(2261), + [sym_bang] = ACTIONS(1069), + }, + [529] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2035), + [sym_boolean_literal] = STATE(2035), + [sym__string_literal] = STATE(2035), + [sym_line_string_literal] = STATE(2035), + [sym_multi_line_string_literal] = STATE(2035), + [sym_raw_string_literal] = STATE(2035), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2035), + [sym__unary_expression] = STATE(2035), + [sym_postfix_expression] = STATE(2035), + [sym_constructor_expression] = STATE(2035), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2035), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2035), + [sym_prefix_expression] = STATE(2035), + [sym_as_expression] = STATE(2035), + [sym_selector_expression] = STATE(2035), + [sym__binary_expression] = STATE(2035), + [sym_multiplicative_expression] = STATE(2035), + [sym_additive_expression] = STATE(2035), + [sym_range_expression] = STATE(2035), + [sym_infix_expression] = STATE(2035), + [sym_nil_coalescing_expression] = STATE(2035), + [sym_check_expression] = STATE(2035), + [sym_comparison_expression] = STATE(2035), + [sym_equality_expression] = STATE(2035), + [sym_conjunction_expression] = STATE(2035), + [sym_disjunction_expression] = STATE(2035), + [sym_bitwise_operation] = STATE(2035), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2035), + [sym_await_expression] = STATE(2035), + [sym_ternary_expression] = STATE(2035), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2035), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2035), + [sym_dictionary_literal] = STATE(2035), + [sym__special_literal] = STATE(2035), + [sym__playground_literal] = STATE(2035), + [sym_lambda_literal] = STATE(2035), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2035), + [sym_key_path_expression] = STATE(2035), + [sym_key_path_string_expression] = STATE(2035), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2035), + [sym__comparison_operator] = STATE(2035), + [sym__additive_operator] = STATE(2035), + [sym__multiplicative_operator] = STATE(2035), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2035), + [sym__referenceable_operator] = STATE(2035), + [sym__eq_eq] = STATE(2035), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2263), + [anon_sym_GT] = ACTIONS(2263), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2263), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2263), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2263), + [anon_sym_LT_EQ] = ACTIONS(2263), + [anon_sym_GT_EQ] = ACTIONS(2263), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2263), + [anon_sym_SLASH] = ACTIONS(2263), + [anon_sym_PERCENT] = ACTIONS(2263), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2265), + [sym__plus_then_ws] = ACTIONS(2265), + [sym__minus_then_ws] = ACTIONS(2265), + [sym_bang] = ACTIONS(1069), + }, + [530] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2040), + [sym_boolean_literal] = STATE(2040), + [sym__string_literal] = STATE(2040), + [sym_line_string_literal] = STATE(2040), + [sym_multi_line_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2040), + [sym__unary_expression] = STATE(2040), + [sym_postfix_expression] = STATE(2040), + [sym_constructor_expression] = STATE(2040), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2040), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2040), + [sym_prefix_expression] = STATE(2040), + [sym_as_expression] = STATE(2040), + [sym_selector_expression] = STATE(2040), + [sym__binary_expression] = STATE(2040), + [sym_multiplicative_expression] = STATE(2040), + [sym_additive_expression] = STATE(2040), + [sym_range_expression] = STATE(2040), + [sym_infix_expression] = STATE(2040), + [sym_nil_coalescing_expression] = STATE(2040), + [sym_check_expression] = STATE(2040), + [sym_comparison_expression] = STATE(2040), + [sym_equality_expression] = STATE(2040), + [sym_conjunction_expression] = STATE(2040), + [sym_disjunction_expression] = STATE(2040), + [sym_bitwise_operation] = STATE(2040), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2040), + [sym_await_expression] = STATE(2040), + [sym_ternary_expression] = STATE(2040), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2040), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2040), + [sym_dictionary_literal] = STATE(2040), + [sym__special_literal] = STATE(2040), + [sym__playground_literal] = STATE(2040), + [sym_lambda_literal] = STATE(2040), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2040), + [sym_key_path_expression] = STATE(2040), + [sym_key_path_string_expression] = STATE(2040), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2040), + [sym__comparison_operator] = STATE(2040), + [sym__additive_operator] = STATE(2040), + [sym__multiplicative_operator] = STATE(2040), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2040), + [sym__referenceable_operator] = STATE(2040), + [sym__eq_eq] = STATE(2040), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2267), + [anon_sym_GT] = ACTIONS(2267), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2267), + [anon_sym_LT_EQ] = ACTIONS(2267), + [anon_sym_GT_EQ] = ACTIONS(2267), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2267), + [anon_sym_SLASH] = ACTIONS(2267), + [anon_sym_PERCENT] = ACTIONS(2267), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2269), + [sym__plus_then_ws] = ACTIONS(2269), + [sym__minus_then_ws] = ACTIONS(2269), + [sym_bang] = ACTIONS(1069), + }, + [531] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2045), + [sym_boolean_literal] = STATE(2045), + [sym__string_literal] = STATE(2045), + [sym_line_string_literal] = STATE(2045), + [sym_multi_line_string_literal] = STATE(2045), + [sym_raw_string_literal] = STATE(2045), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2045), + [sym__unary_expression] = STATE(2045), + [sym_postfix_expression] = STATE(2045), + [sym_constructor_expression] = STATE(2045), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2045), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2045), + [sym_prefix_expression] = STATE(2045), + [sym_as_expression] = STATE(2045), + [sym_selector_expression] = STATE(2045), + [sym__binary_expression] = STATE(2045), + [sym_multiplicative_expression] = STATE(2045), + [sym_additive_expression] = STATE(2045), + [sym_range_expression] = STATE(2045), + [sym_infix_expression] = STATE(2045), + [sym_nil_coalescing_expression] = STATE(2045), + [sym_check_expression] = STATE(2045), + [sym_comparison_expression] = STATE(2045), + [sym_equality_expression] = STATE(2045), + [sym_conjunction_expression] = STATE(2045), + [sym_disjunction_expression] = STATE(2045), + [sym_bitwise_operation] = STATE(2045), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2045), + [sym_await_expression] = STATE(2045), + [sym_ternary_expression] = STATE(2045), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2045), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2045), + [sym_dictionary_literal] = STATE(2045), + [sym__special_literal] = STATE(2045), + [sym__playground_literal] = STATE(2045), + [sym_lambda_literal] = STATE(2045), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2045), + [sym_key_path_expression] = STATE(2045), + [sym_key_path_string_expression] = STATE(2045), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2045), + [sym__comparison_operator] = STATE(2045), + [sym__additive_operator] = STATE(2045), + [sym__multiplicative_operator] = STATE(2045), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2045), + [sym__referenceable_operator] = STATE(2045), + [sym__eq_eq] = STATE(2045), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2271), + [anon_sym_GT] = ACTIONS(2271), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2271), + [anon_sym_LT_EQ] = ACTIONS(2271), + [anon_sym_GT_EQ] = ACTIONS(2271), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2271), + [anon_sym_SLASH] = ACTIONS(2271), + [anon_sym_PERCENT] = ACTIONS(2271), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2273), + [sym__plus_then_ws] = ACTIONS(2273), + [sym__minus_then_ws] = ACTIONS(2273), + [sym_bang] = ACTIONS(1069), + }, + [532] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2047), + [sym_boolean_literal] = STATE(2047), + [sym__string_literal] = STATE(2047), + [sym_line_string_literal] = STATE(2047), + [sym_multi_line_string_literal] = STATE(2047), + [sym_raw_string_literal] = STATE(2047), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2047), + [sym__unary_expression] = STATE(2047), + [sym_postfix_expression] = STATE(2047), + [sym_constructor_expression] = STATE(2047), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2047), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2047), + [sym_prefix_expression] = STATE(2047), + [sym_as_expression] = STATE(2047), + [sym_selector_expression] = STATE(2047), + [sym__binary_expression] = STATE(2047), + [sym_multiplicative_expression] = STATE(2047), + [sym_additive_expression] = STATE(2047), + [sym_range_expression] = STATE(2047), + [sym_infix_expression] = STATE(2047), + [sym_nil_coalescing_expression] = STATE(2047), + [sym_check_expression] = STATE(2047), + [sym_comparison_expression] = STATE(2047), + [sym_equality_expression] = STATE(2047), + [sym_conjunction_expression] = STATE(2047), + [sym_disjunction_expression] = STATE(2047), + [sym_bitwise_operation] = STATE(2047), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2047), + [sym_await_expression] = STATE(2047), + [sym_ternary_expression] = STATE(2047), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2047), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2047), + [sym_dictionary_literal] = STATE(2047), + [sym__special_literal] = STATE(2047), + [sym__playground_literal] = STATE(2047), + [sym_lambda_literal] = STATE(2047), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2047), + [sym_key_path_expression] = STATE(2047), + [sym_key_path_string_expression] = STATE(2047), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2047), + [sym__comparison_operator] = STATE(2047), + [sym__additive_operator] = STATE(2047), + [sym__multiplicative_operator] = STATE(2047), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2047), + [sym__referenceable_operator] = STATE(2047), + [sym__eq_eq] = STATE(2047), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_GT] = ACTIONS(2275), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2275), + [anon_sym_LT_EQ] = ACTIONS(2275), + [anon_sym_GT_EQ] = ACTIONS(2275), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2275), + [anon_sym_SLASH] = ACTIONS(2275), + [anon_sym_PERCENT] = ACTIONS(2275), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2277), + [sym__plus_then_ws] = ACTIONS(2277), + [sym__minus_then_ws] = ACTIONS(2277), + [sym_bang] = ACTIONS(1069), + }, + [533] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2049), + [sym_boolean_literal] = STATE(2049), + [sym__string_literal] = STATE(2049), + [sym_line_string_literal] = STATE(2049), + [sym_multi_line_string_literal] = STATE(2049), + [sym_raw_string_literal] = STATE(2049), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2049), + [sym__unary_expression] = STATE(2049), + [sym_postfix_expression] = STATE(2049), + [sym_constructor_expression] = STATE(2049), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2049), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2049), + [sym_prefix_expression] = STATE(2049), + [sym_as_expression] = STATE(2049), + [sym_selector_expression] = STATE(2049), + [sym__binary_expression] = STATE(2049), + [sym_multiplicative_expression] = STATE(2049), + [sym_additive_expression] = STATE(2049), + [sym_range_expression] = STATE(2049), + [sym_infix_expression] = STATE(2049), + [sym_nil_coalescing_expression] = STATE(2049), + [sym_check_expression] = STATE(2049), + [sym_comparison_expression] = STATE(2049), + [sym_equality_expression] = STATE(2049), + [sym_conjunction_expression] = STATE(2049), + [sym_disjunction_expression] = STATE(2049), + [sym_bitwise_operation] = STATE(2049), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2049), + [sym_await_expression] = STATE(2049), + [sym_ternary_expression] = STATE(2049), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2049), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2049), + [sym_dictionary_literal] = STATE(2049), + [sym__special_literal] = STATE(2049), + [sym__playground_literal] = STATE(2049), + [sym_lambda_literal] = STATE(2049), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2049), + [sym_key_path_expression] = STATE(2049), + [sym_key_path_string_expression] = STATE(2049), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2049), + [sym__comparison_operator] = STATE(2049), + [sym__additive_operator] = STATE(2049), + [sym__multiplicative_operator] = STATE(2049), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2049), + [sym__referenceable_operator] = STATE(2049), + [sym__eq_eq] = STATE(2049), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2279), + [anon_sym_GT] = ACTIONS(2279), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2279), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2279), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2279), + [anon_sym_LT_EQ] = ACTIONS(2279), + [anon_sym_GT_EQ] = ACTIONS(2279), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2279), + [anon_sym_SLASH] = ACTIONS(2279), + [anon_sym_PERCENT] = ACTIONS(2279), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2281), + [sym__plus_then_ws] = ACTIONS(2281), + [sym__minus_then_ws] = ACTIONS(2281), + [sym_bang] = ACTIONS(1069), + }, + [534] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2057), + [sym_boolean_literal] = STATE(2057), + [sym__string_literal] = STATE(2057), + [sym_line_string_literal] = STATE(2057), + [sym_multi_line_string_literal] = STATE(2057), + [sym_raw_string_literal] = STATE(2057), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2057), + [sym__unary_expression] = STATE(2057), + [sym_postfix_expression] = STATE(2057), + [sym_constructor_expression] = STATE(2057), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2057), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2057), + [sym_prefix_expression] = STATE(2057), + [sym_as_expression] = STATE(2057), + [sym_selector_expression] = STATE(2057), + [sym__binary_expression] = STATE(2057), + [sym_multiplicative_expression] = STATE(2057), + [sym_additive_expression] = STATE(2057), + [sym_range_expression] = STATE(2057), + [sym_infix_expression] = STATE(2057), + [sym_nil_coalescing_expression] = STATE(2057), + [sym_check_expression] = STATE(2057), + [sym_comparison_expression] = STATE(2057), + [sym_equality_expression] = STATE(2057), + [sym_conjunction_expression] = STATE(2057), + [sym_disjunction_expression] = STATE(2057), + [sym_bitwise_operation] = STATE(2057), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2057), + [sym_await_expression] = STATE(2057), + [sym_ternary_expression] = STATE(2057), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2057), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2057), + [sym_dictionary_literal] = STATE(2057), + [sym__special_literal] = STATE(2057), + [sym__playground_literal] = STATE(2057), + [sym_lambda_literal] = STATE(2057), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2057), + [sym_key_path_expression] = STATE(2057), + [sym_key_path_string_expression] = STATE(2057), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2057), + [sym__comparison_operator] = STATE(2057), + [sym__additive_operator] = STATE(2057), + [sym__multiplicative_operator] = STATE(2057), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2057), + [sym__referenceable_operator] = STATE(2057), + [sym__eq_eq] = STATE(2057), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2283), + [anon_sym_GT] = ACTIONS(2283), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2283), + [anon_sym_LT_EQ] = ACTIONS(2283), + [anon_sym_GT_EQ] = ACTIONS(2283), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2283), + [anon_sym_SLASH] = ACTIONS(2283), + [anon_sym_PERCENT] = ACTIONS(2283), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2285), + [sym__plus_then_ws] = ACTIONS(2285), + [sym__minus_then_ws] = ACTIONS(2285), + [sym_bang] = ACTIONS(1069), + }, + [535] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1695), + [sym_boolean_literal] = STATE(1695), + [sym__string_literal] = STATE(1695), + [sym_line_string_literal] = STATE(1695), + [sym_multi_line_string_literal] = STATE(1695), + [sym_raw_string_literal] = STATE(1695), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1695), + [sym__unary_expression] = STATE(1695), + [sym_postfix_expression] = STATE(1695), + [sym_constructor_expression] = STATE(1695), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1695), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1695), + [sym_prefix_expression] = STATE(1695), + [sym_as_expression] = STATE(1695), + [sym_selector_expression] = STATE(1695), + [sym__binary_expression] = STATE(1695), + [sym_multiplicative_expression] = STATE(1695), + [sym_additive_expression] = STATE(1695), + [sym_range_expression] = STATE(1695), + [sym_infix_expression] = STATE(1695), + [sym_nil_coalescing_expression] = STATE(1695), + [sym_check_expression] = STATE(1695), + [sym_comparison_expression] = STATE(1695), + [sym_equality_expression] = STATE(1695), + [sym_conjunction_expression] = STATE(1695), + [sym_disjunction_expression] = STATE(1695), + [sym_bitwise_operation] = STATE(1695), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1695), + [sym_await_expression] = STATE(1695), + [sym_ternary_expression] = STATE(1695), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1695), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1695), + [sym_dictionary_literal] = STATE(1695), + [sym__special_literal] = STATE(1695), + [sym__playground_literal] = STATE(1695), + [sym_lambda_literal] = STATE(1695), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1695), + [sym_key_path_expression] = STATE(1695), + [sym_key_path_string_expression] = STATE(1695), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1695), + [sym__comparison_operator] = STATE(1695), + [sym__additive_operator] = STATE(1695), + [sym__multiplicative_operator] = STATE(1695), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1695), + [sym__referenceable_operator] = STATE(1695), + [sym__eq_eq] = STATE(1695), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2287), + [anon_sym_GT] = ACTIONS(2287), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2287), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2287), + [anon_sym_LT_EQ] = ACTIONS(2287), + [anon_sym_GT_EQ] = ACTIONS(2287), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_SLASH] = ACTIONS(2287), + [anon_sym_PERCENT] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2289), + [sym__plus_then_ws] = ACTIONS(2289), + [sym__minus_then_ws] = ACTIONS(2289), + [sym_bang] = ACTIONS(1069), + }, + [536] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1671), + [sym_boolean_literal] = STATE(1671), + [sym__string_literal] = STATE(1671), + [sym_line_string_literal] = STATE(1671), + [sym_multi_line_string_literal] = STATE(1671), + [sym_raw_string_literal] = STATE(1671), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1671), + [sym__unary_expression] = STATE(1671), + [sym_postfix_expression] = STATE(1671), + [sym_constructor_expression] = STATE(1671), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1671), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1671), + [sym_prefix_expression] = STATE(1671), + [sym_as_expression] = STATE(1671), + [sym_selector_expression] = STATE(1671), + [sym__binary_expression] = STATE(1671), + [sym_multiplicative_expression] = STATE(1671), + [sym_additive_expression] = STATE(1671), + [sym_range_expression] = STATE(1671), + [sym_infix_expression] = STATE(1671), + [sym_nil_coalescing_expression] = STATE(1671), + [sym_check_expression] = STATE(1671), + [sym_comparison_expression] = STATE(1671), + [sym_equality_expression] = STATE(1671), + [sym_conjunction_expression] = STATE(1671), + [sym_disjunction_expression] = STATE(1671), + [sym_bitwise_operation] = STATE(1671), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1671), + [sym_await_expression] = STATE(1671), + [sym_ternary_expression] = STATE(1671), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1671), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1671), + [sym_dictionary_literal] = STATE(1671), + [sym__special_literal] = STATE(1671), + [sym__playground_literal] = STATE(1671), + [sym_lambda_literal] = STATE(1671), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1671), + [sym_key_path_expression] = STATE(1671), + [sym_key_path_string_expression] = STATE(1671), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1671), + [sym__comparison_operator] = STATE(1671), + [sym__additive_operator] = STATE(1671), + [sym__multiplicative_operator] = STATE(1671), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1671), + [sym__referenceable_operator] = STATE(1671), + [sym__eq_eq] = STATE(1671), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2291), + [anon_sym_GT] = ACTIONS(2291), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2291), + [anon_sym_LT_EQ] = ACTIONS(2291), + [anon_sym_GT_EQ] = ACTIONS(2291), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_SLASH] = ACTIONS(2291), + [anon_sym_PERCENT] = ACTIONS(2291), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2293), + [sym__plus_then_ws] = ACTIONS(2293), + [sym__minus_then_ws] = ACTIONS(2293), + [sym_bang] = ACTIONS(1069), + }, + [537] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2253), + [sym_boolean_literal] = STATE(2253), + [sym__string_literal] = STATE(2253), + [sym_line_string_literal] = STATE(2253), + [sym_multi_line_string_literal] = STATE(2253), + [sym_raw_string_literal] = STATE(2253), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2253), + [sym__unary_expression] = STATE(2253), + [sym_postfix_expression] = STATE(2253), + [sym_constructor_expression] = STATE(2253), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2253), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2253), + [sym_prefix_expression] = STATE(2253), + [sym_as_expression] = STATE(2253), + [sym_selector_expression] = STATE(2253), + [sym__binary_expression] = STATE(2253), + [sym_multiplicative_expression] = STATE(2253), + [sym_additive_expression] = STATE(2253), + [sym_range_expression] = STATE(2253), + [sym_infix_expression] = STATE(2253), + [sym_nil_coalescing_expression] = STATE(2253), + [sym_check_expression] = STATE(2253), + [sym_comparison_expression] = STATE(2253), + [sym_equality_expression] = STATE(2253), + [sym_conjunction_expression] = STATE(2253), + [sym_disjunction_expression] = STATE(2253), + [sym_bitwise_operation] = STATE(2253), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2253), + [sym_await_expression] = STATE(2253), + [sym_ternary_expression] = STATE(2253), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2253), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2253), + [sym_dictionary_literal] = STATE(2253), + [sym__special_literal] = STATE(2253), + [sym__playground_literal] = STATE(2253), + [sym_lambda_literal] = STATE(2253), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2253), + [sym_key_path_expression] = STATE(2253), + [sym_key_path_string_expression] = STATE(2253), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2253), + [sym__comparison_operator] = STATE(2253), + [sym__additive_operator] = STATE(2253), + [sym__multiplicative_operator] = STATE(2253), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2253), + [sym__referenceable_operator] = STATE(2253), + [sym__eq_eq] = STATE(2253), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [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(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(2295), + [anon_sym_GT] = ACTIONS(2295), + [sym__await_operator] = ACTIONS(797), + [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(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(2295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2295), + [anon_sym_LT_EQ] = ACTIONS(2295), + [anon_sym_GT_EQ] = ACTIONS(2295), + [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), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(2297), + [sym__plus_then_ws] = ACTIONS(2297), + [sym__minus_then_ws] = ACTIONS(2297), + [sym_bang] = ACTIONS(833), + }, + [538] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1665), + [sym_boolean_literal] = STATE(1665), + [sym__string_literal] = STATE(1665), + [sym_line_string_literal] = STATE(1665), + [sym_multi_line_string_literal] = STATE(1665), + [sym_raw_string_literal] = STATE(1665), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1665), + [sym__unary_expression] = STATE(1665), + [sym_postfix_expression] = STATE(1665), + [sym_constructor_expression] = STATE(1665), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1665), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1665), + [sym_prefix_expression] = STATE(1665), + [sym_as_expression] = STATE(1665), + [sym_selector_expression] = STATE(1665), + [sym__binary_expression] = STATE(1665), + [sym_multiplicative_expression] = STATE(1665), + [sym_additive_expression] = STATE(1665), + [sym_range_expression] = STATE(1665), + [sym_infix_expression] = STATE(1665), + [sym_nil_coalescing_expression] = STATE(1665), + [sym_check_expression] = STATE(1665), + [sym_comparison_expression] = STATE(1665), + [sym_equality_expression] = STATE(1665), + [sym_conjunction_expression] = STATE(1665), + [sym_disjunction_expression] = STATE(1665), + [sym_bitwise_operation] = STATE(1665), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1665), + [sym_await_expression] = STATE(1665), + [sym_ternary_expression] = STATE(1665), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1665), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1665), + [sym_dictionary_literal] = STATE(1665), + [sym__special_literal] = STATE(1665), + [sym__playground_literal] = STATE(1665), + [sym_lambda_literal] = STATE(1665), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1665), + [sym_key_path_expression] = STATE(1665), + [sym_key_path_string_expression] = STATE(1665), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1665), + [sym__comparison_operator] = STATE(1665), + [sym__additive_operator] = STATE(1665), + [sym__multiplicative_operator] = STATE(1665), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1665), + [sym__referenceable_operator] = STATE(1665), + [sym__eq_eq] = STATE(1665), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2299), + [anon_sym_GT] = ACTIONS(2299), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2299), + [anon_sym_LT_EQ] = ACTIONS(2299), + [anon_sym_GT_EQ] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2299), + [anon_sym_SLASH] = ACTIONS(2299), + [anon_sym_PERCENT] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2301), + [sym__plus_then_ws] = ACTIONS(2301), + [sym__minus_then_ws] = ACTIONS(2301), + [sym_bang] = ACTIONS(1069), + }, + [539] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1694), + [sym_boolean_literal] = STATE(1694), + [sym__string_literal] = STATE(1694), + [sym_line_string_literal] = STATE(1694), + [sym_multi_line_string_literal] = STATE(1694), + [sym_raw_string_literal] = STATE(1694), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1694), + [sym__unary_expression] = STATE(1694), + [sym_postfix_expression] = STATE(1694), + [sym_constructor_expression] = STATE(1694), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1694), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1694), + [sym_prefix_expression] = STATE(1694), + [sym_as_expression] = STATE(1694), + [sym_selector_expression] = STATE(1694), + [sym__binary_expression] = STATE(1694), + [sym_multiplicative_expression] = STATE(1694), + [sym_additive_expression] = STATE(1694), + [sym_range_expression] = STATE(1694), + [sym_infix_expression] = STATE(1694), + [sym_nil_coalescing_expression] = STATE(1694), + [sym_check_expression] = STATE(1694), + [sym_comparison_expression] = STATE(1694), + [sym_equality_expression] = STATE(1694), + [sym_conjunction_expression] = STATE(1694), + [sym_disjunction_expression] = STATE(1694), + [sym_bitwise_operation] = STATE(1694), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1694), + [sym_await_expression] = STATE(1694), + [sym_ternary_expression] = STATE(1694), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1694), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1694), + [sym_dictionary_literal] = STATE(1694), + [sym__special_literal] = STATE(1694), + [sym__playground_literal] = STATE(1694), + [sym_lambda_literal] = STATE(1694), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1694), + [sym_key_path_expression] = STATE(1694), + [sym_key_path_string_expression] = STATE(1694), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1694), + [sym__comparison_operator] = STATE(1694), + [sym__additive_operator] = STATE(1694), + [sym__multiplicative_operator] = STATE(1694), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1694), + [sym__referenceable_operator] = STATE(1694), + [sym__eq_eq] = STATE(1694), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2303), + [anon_sym_GT] = ACTIONS(2303), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2303), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2303), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2303), + [anon_sym_LT_EQ] = ACTIONS(2303), + [anon_sym_GT_EQ] = ACTIONS(2303), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2303), + [anon_sym_SLASH] = ACTIONS(2303), + [anon_sym_PERCENT] = ACTIONS(2303), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2305), + [sym__plus_then_ws] = ACTIONS(2305), + [sym__minus_then_ws] = ACTIONS(2305), + [sym_bang] = ACTIONS(1069), + }, + [540] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), + [sym__string_literal] = STATE(1766), + [sym_line_string_literal] = STATE(1766), + [sym_multi_line_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1766), + [sym__unary_expression] = STATE(1766), + [sym_postfix_expression] = STATE(1766), + [sym_constructor_expression] = STATE(1766), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1766), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1766), + [sym_prefix_expression] = STATE(1766), + [sym_as_expression] = STATE(1766), + [sym_selector_expression] = STATE(1766), + [sym__binary_expression] = STATE(1766), + [sym_multiplicative_expression] = STATE(1766), + [sym_additive_expression] = STATE(1766), + [sym_range_expression] = STATE(1766), + [sym_infix_expression] = STATE(1766), + [sym_nil_coalescing_expression] = STATE(1766), + [sym_check_expression] = STATE(1766), + [sym_comparison_expression] = STATE(1766), + [sym_equality_expression] = STATE(1766), + [sym_conjunction_expression] = STATE(1766), + [sym_disjunction_expression] = STATE(1766), + [sym_bitwise_operation] = STATE(1766), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1766), + [sym_await_expression] = STATE(1766), + [sym_ternary_expression] = STATE(1766), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1766), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1766), + [sym_dictionary_literal] = STATE(1766), + [sym__special_literal] = STATE(1766), + [sym__playground_literal] = STATE(1766), + [sym_lambda_literal] = STATE(1766), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1766), + [sym_key_path_expression] = STATE(1766), + [sym_key_path_string_expression] = STATE(1766), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1766), + [sym__comparison_operator] = STATE(1766), + [sym__additive_operator] = STATE(1766), + [sym__multiplicative_operator] = STATE(1766), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1766), + [sym__referenceable_operator] = STATE(1766), + [sym__eq_eq] = STATE(1766), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2307), + [anon_sym_GT] = ACTIONS(2307), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2307), + [anon_sym_LT_EQ] = ACTIONS(2307), + [anon_sym_GT_EQ] = ACTIONS(2307), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2307), + [anon_sym_SLASH] = ACTIONS(2307), + [anon_sym_PERCENT] = ACTIONS(2307), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2309), + [sym__plus_then_ws] = ACTIONS(2309), + [sym__minus_then_ws] = ACTIONS(2309), + [sym_bang] = ACTIONS(1069), + }, + [541] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1582), + [sym_boolean_literal] = STATE(1582), + [sym__string_literal] = STATE(1582), + [sym_line_string_literal] = STATE(1582), + [sym_multi_line_string_literal] = STATE(1582), + [sym_raw_string_literal] = STATE(1582), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1582), + [sym__unary_expression] = STATE(1582), + [sym_postfix_expression] = STATE(1582), + [sym_constructor_expression] = STATE(1582), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1582), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1582), + [sym_prefix_expression] = STATE(1582), + [sym_as_expression] = STATE(1582), + [sym_selector_expression] = STATE(1582), + [sym__binary_expression] = STATE(1582), + [sym_multiplicative_expression] = STATE(1582), + [sym_additive_expression] = STATE(1582), + [sym_range_expression] = STATE(1582), + [sym_infix_expression] = STATE(1582), + [sym_nil_coalescing_expression] = STATE(1582), + [sym_check_expression] = STATE(1582), + [sym_comparison_expression] = STATE(1582), + [sym_equality_expression] = STATE(1582), + [sym_conjunction_expression] = STATE(1582), + [sym_disjunction_expression] = STATE(1582), + [sym_bitwise_operation] = STATE(1582), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1582), + [sym_await_expression] = STATE(1582), + [sym_ternary_expression] = STATE(1582), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1582), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1582), + [sym_dictionary_literal] = STATE(1582), + [sym__special_literal] = STATE(1582), + [sym__playground_literal] = STATE(1582), + [sym_lambda_literal] = STATE(1582), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1582), + [sym_key_path_expression] = STATE(1582), + [sym_key_path_string_expression] = STATE(1582), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1582), + [sym__comparison_operator] = STATE(1582), + [sym__additive_operator] = STATE(1582), + [sym__multiplicative_operator] = STATE(1582), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1582), + [sym__referenceable_operator] = STATE(1582), + [sym__eq_eq] = STATE(1582), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2311), + [anon_sym_GT] = ACTIONS(2311), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2311), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2311), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2311), + [anon_sym_LT_EQ] = ACTIONS(2311), + [anon_sym_GT_EQ] = ACTIONS(2311), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2311), + [anon_sym_SLASH] = ACTIONS(2311), + [anon_sym_PERCENT] = ACTIONS(2311), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2313), + [sym__plus_then_ws] = ACTIONS(2313), + [sym__minus_then_ws] = ACTIONS(2313), + [sym_bang] = ACTIONS(1069), + }, + [542] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1711), + [sym_boolean_literal] = STATE(1711), + [sym__string_literal] = STATE(1711), + [sym_line_string_literal] = STATE(1711), + [sym_multi_line_string_literal] = STATE(1711), + [sym_raw_string_literal] = STATE(1711), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1711), + [sym__unary_expression] = STATE(1711), + [sym_postfix_expression] = STATE(1711), + [sym_constructor_expression] = STATE(1711), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1711), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1711), + [sym_prefix_expression] = STATE(1711), + [sym_as_expression] = STATE(1711), + [sym_selector_expression] = STATE(1711), + [sym__binary_expression] = STATE(1711), + [sym_multiplicative_expression] = STATE(1711), + [sym_additive_expression] = STATE(1711), + [sym_range_expression] = STATE(1711), + [sym_infix_expression] = STATE(1711), + [sym_nil_coalescing_expression] = STATE(1711), + [sym_check_expression] = STATE(1711), + [sym_comparison_expression] = STATE(1711), + [sym_equality_expression] = STATE(1711), + [sym_conjunction_expression] = STATE(1711), + [sym_disjunction_expression] = STATE(1711), + [sym_bitwise_operation] = STATE(1711), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_ternary_expression] = STATE(1711), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1711), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1711), + [sym_dictionary_literal] = STATE(1711), + [sym__special_literal] = STATE(1711), + [sym__playground_literal] = STATE(1711), + [sym_lambda_literal] = STATE(1711), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1711), + [sym_key_path_expression] = STATE(1711), + [sym_key_path_string_expression] = STATE(1711), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1711), + [sym__comparison_operator] = STATE(1711), + [sym__additive_operator] = STATE(1711), + [sym__multiplicative_operator] = STATE(1711), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1711), + [sym__referenceable_operator] = STATE(1711), + [sym__eq_eq] = STATE(1711), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2315), + [anon_sym_GT] = ACTIONS(2315), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2315), + [anon_sym_LT_EQ] = ACTIONS(2315), + [anon_sym_GT_EQ] = ACTIONS(2315), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2315), + [anon_sym_SLASH] = ACTIONS(2315), + [anon_sym_PERCENT] = ACTIONS(2315), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2317), + [sym__plus_then_ws] = ACTIONS(2317), + [sym__minus_then_ws] = ACTIONS(2317), + [sym_bang] = ACTIONS(1069), + }, + [543] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2122), + [sym_boolean_literal] = STATE(2122), + [sym__string_literal] = STATE(2122), + [sym_line_string_literal] = STATE(2122), + [sym_multi_line_string_literal] = STATE(2122), + [sym_raw_string_literal] = STATE(2122), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2122), + [sym__unary_expression] = STATE(2122), + [sym_postfix_expression] = STATE(2122), + [sym_constructor_expression] = STATE(2122), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2122), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2122), + [sym_prefix_expression] = STATE(2122), + [sym_as_expression] = STATE(2122), + [sym_selector_expression] = STATE(2122), + [sym__binary_expression] = STATE(2122), + [sym_multiplicative_expression] = STATE(2122), + [sym_additive_expression] = STATE(2122), + [sym_range_expression] = STATE(2122), + [sym_infix_expression] = STATE(2122), + [sym_nil_coalescing_expression] = STATE(2122), + [sym_check_expression] = STATE(2122), + [sym_comparison_expression] = STATE(2122), + [sym_equality_expression] = STATE(2122), + [sym_conjunction_expression] = STATE(2122), + [sym_disjunction_expression] = STATE(2122), + [sym_bitwise_operation] = STATE(2122), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2122), + [sym_await_expression] = STATE(2122), + [sym_ternary_expression] = STATE(2122), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2122), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2122), + [sym_dictionary_literal] = STATE(2122), + [sym__special_literal] = STATE(2122), + [sym__playground_literal] = STATE(2122), + [sym_lambda_literal] = STATE(2122), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2122), + [sym_key_path_expression] = STATE(2122), + [sym_key_path_string_expression] = STATE(2122), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2122), + [sym__comparison_operator] = STATE(2122), + [sym__additive_operator] = STATE(2122), + [sym__multiplicative_operator] = STATE(2122), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2122), + [sym__referenceable_operator] = STATE(2122), + [sym__eq_eq] = STATE(2122), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2319), + [anon_sym_GT] = ACTIONS(2319), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2319), + [anon_sym_LT_EQ] = ACTIONS(2319), + [anon_sym_GT_EQ] = ACTIONS(2319), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2319), + [anon_sym_SLASH] = ACTIONS(2319), + [anon_sym_PERCENT] = ACTIONS(2319), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2321), + [sym__plus_then_ws] = ACTIONS(2321), + [sym__minus_then_ws] = ACTIONS(2321), + [sym_bang] = ACTIONS(1069), + }, + [544] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2158), + [sym_boolean_literal] = STATE(2158), + [sym__string_literal] = STATE(2158), + [sym_line_string_literal] = STATE(2158), + [sym_multi_line_string_literal] = STATE(2158), + [sym_raw_string_literal] = STATE(2158), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2158), + [sym__unary_expression] = STATE(2158), + [sym_postfix_expression] = STATE(2158), + [sym_constructor_expression] = STATE(2158), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2158), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2158), + [sym_prefix_expression] = STATE(2158), + [sym_as_expression] = STATE(2158), + [sym_selector_expression] = STATE(2158), + [sym__binary_expression] = STATE(2158), + [sym_multiplicative_expression] = STATE(2158), + [sym_additive_expression] = STATE(2158), + [sym_range_expression] = STATE(2158), + [sym_infix_expression] = STATE(2158), + [sym_nil_coalescing_expression] = STATE(2158), + [sym_check_expression] = STATE(2158), + [sym_comparison_expression] = STATE(2158), + [sym_equality_expression] = STATE(2158), + [sym_conjunction_expression] = STATE(2158), + [sym_disjunction_expression] = STATE(2158), + [sym_bitwise_operation] = STATE(2158), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2158), + [sym_await_expression] = STATE(2158), + [sym_ternary_expression] = STATE(2158), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2158), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2158), + [sym_dictionary_literal] = STATE(2158), + [sym__special_literal] = STATE(2158), + [sym__playground_literal] = STATE(2158), + [sym_lambda_literal] = STATE(2158), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2158), + [sym_key_path_expression] = STATE(2158), + [sym_key_path_string_expression] = STATE(2158), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2158), + [sym__comparison_operator] = STATE(2158), + [sym__additive_operator] = STATE(2158), + [sym__multiplicative_operator] = STATE(2158), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2158), + [sym__referenceable_operator] = STATE(2158), + [sym__eq_eq] = STATE(2158), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2323), + [anon_sym_GT] = ACTIONS(2323), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2323), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2323), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2323), + [anon_sym_LT_EQ] = ACTIONS(2323), + [anon_sym_GT_EQ] = ACTIONS(2323), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_SLASH] = ACTIONS(2323), + [anon_sym_PERCENT] = ACTIONS(2323), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2325), + [sym__plus_then_ws] = ACTIONS(2325), + [sym__minus_then_ws] = ACTIONS(2325), + [sym_bang] = ACTIONS(1069), + }, + [545] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1758), + [sym_boolean_literal] = STATE(1758), + [sym__string_literal] = STATE(1758), + [sym_line_string_literal] = STATE(1758), + [sym_multi_line_string_literal] = STATE(1758), + [sym_raw_string_literal] = STATE(1758), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1758), + [sym__unary_expression] = STATE(1758), + [sym_postfix_expression] = STATE(1758), + [sym_constructor_expression] = STATE(1758), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1758), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1758), + [sym_prefix_expression] = STATE(1758), + [sym_as_expression] = STATE(1758), + [sym_selector_expression] = STATE(1758), + [sym__binary_expression] = STATE(1758), + [sym_multiplicative_expression] = STATE(1758), + [sym_additive_expression] = STATE(1758), + [sym_range_expression] = STATE(1758), + [sym_infix_expression] = STATE(1758), + [sym_nil_coalescing_expression] = STATE(1758), + [sym_check_expression] = STATE(1758), + [sym_comparison_expression] = STATE(1758), + [sym_equality_expression] = STATE(1758), + [sym_conjunction_expression] = STATE(1758), + [sym_disjunction_expression] = STATE(1758), + [sym_bitwise_operation] = STATE(1758), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1758), + [sym_await_expression] = STATE(1758), + [sym_ternary_expression] = STATE(1758), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1758), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1758), + [sym_dictionary_literal] = STATE(1758), + [sym__special_literal] = STATE(1758), + [sym__playground_literal] = STATE(1758), + [sym_lambda_literal] = STATE(1758), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1758), + [sym_key_path_expression] = STATE(1758), + [sym_key_path_string_expression] = STATE(1758), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1758), + [sym__comparison_operator] = STATE(1758), + [sym__additive_operator] = STATE(1758), + [sym__multiplicative_operator] = STATE(1758), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1758), + [sym__referenceable_operator] = STATE(1758), + [sym__eq_eq] = STATE(1758), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2327), + [sym_real_literal] = ACTIONS(2329), + [sym_integer_literal] = ACTIONS(2327), + [sym_hex_literal] = ACTIONS(2329), + [sym_oct_literal] = ACTIONS(2329), + [sym_bin_literal] = ACTIONS(2329), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2327), + [anon_sym_GT] = ACTIONS(2327), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2327), + [anon_sym_POUNDfileID] = ACTIONS(2329), + [anon_sym_POUNDfilePath] = ACTIONS(2329), + [anon_sym_POUNDline] = ACTIONS(2329), + [anon_sym_POUNDcolumn] = ACTIONS(2329), + [anon_sym_POUNDfunction] = ACTIONS(2329), + [anon_sym_POUNDdsohandle] = ACTIONS(2329), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2327), + [anon_sym_LT_EQ] = ACTIONS(2327), + [anon_sym_GT_EQ] = ACTIONS(2327), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2327), + [anon_sym_SLASH] = ACTIONS(2327), + [anon_sym_PERCENT] = ACTIONS(2327), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2329), + [sym__plus_then_ws] = ACTIONS(2329), + [sym__minus_then_ws] = ACTIONS(2329), + [sym_bang] = ACTIONS(1069), + }, + [546] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2177), + [sym_boolean_literal] = STATE(2177), + [sym__string_literal] = STATE(2177), + [sym_line_string_literal] = STATE(2177), + [sym_multi_line_string_literal] = STATE(2177), + [sym_raw_string_literal] = STATE(2177), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2177), + [sym__unary_expression] = STATE(2177), + [sym_postfix_expression] = STATE(2177), + [sym_constructor_expression] = STATE(2177), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2177), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2177), + [sym_prefix_expression] = STATE(2177), + [sym_as_expression] = STATE(2177), + [sym_selector_expression] = STATE(2177), + [sym__binary_expression] = STATE(2177), + [sym_multiplicative_expression] = STATE(2177), + [sym_additive_expression] = STATE(2177), + [sym_range_expression] = STATE(2177), + [sym_infix_expression] = STATE(2177), + [sym_nil_coalescing_expression] = STATE(2177), + [sym_check_expression] = STATE(2177), + [sym_comparison_expression] = STATE(2177), + [sym_equality_expression] = STATE(2177), + [sym_conjunction_expression] = STATE(2177), + [sym_disjunction_expression] = STATE(2177), + [sym_bitwise_operation] = STATE(2177), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2177), + [sym_await_expression] = STATE(2177), + [sym_ternary_expression] = STATE(2177), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2177), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2177), + [sym_dictionary_literal] = STATE(2177), + [sym__special_literal] = STATE(2177), + [sym__playground_literal] = STATE(2177), + [sym_lambda_literal] = STATE(2177), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2177), + [sym_key_path_expression] = STATE(2177), + [sym_key_path_string_expression] = STATE(2177), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2177), + [sym__comparison_operator] = STATE(2177), + [sym__additive_operator] = STATE(2177), + [sym__multiplicative_operator] = STATE(2177), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2177), + [sym__referenceable_operator] = STATE(2177), + [sym__eq_eq] = STATE(2177), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2331), + [sym_real_literal] = ACTIONS(2333), + [sym_integer_literal] = ACTIONS(2331), + [sym_hex_literal] = ACTIONS(2333), + [sym_oct_literal] = ACTIONS(2333), + [sym_bin_literal] = ACTIONS(2333), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2331), + [anon_sym_GT] = ACTIONS(2331), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2331), + [anon_sym_POUNDfileID] = ACTIONS(2333), + [anon_sym_POUNDfilePath] = ACTIONS(2333), + [anon_sym_POUNDline] = ACTIONS(2333), + [anon_sym_POUNDcolumn] = ACTIONS(2333), + [anon_sym_POUNDfunction] = ACTIONS(2333), + [anon_sym_POUNDdsohandle] = ACTIONS(2333), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2331), + [anon_sym_LT_EQ] = ACTIONS(2331), + [anon_sym_GT_EQ] = ACTIONS(2331), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2331), + [anon_sym_SLASH] = ACTIONS(2331), + [anon_sym_PERCENT] = ACTIONS(2331), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2333), + [sym__plus_then_ws] = ACTIONS(2333), + [sym__minus_then_ws] = ACTIONS(2333), + [sym_bang] = ACTIONS(1069), + }, + [547] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2247), + [sym_boolean_literal] = STATE(2247), + [sym__string_literal] = STATE(2247), + [sym_line_string_literal] = STATE(2247), + [sym_multi_line_string_literal] = STATE(2247), + [sym_raw_string_literal] = STATE(2247), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2247), + [sym__unary_expression] = STATE(2247), + [sym_postfix_expression] = STATE(2247), + [sym_constructor_expression] = STATE(2247), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2247), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2247), + [sym_prefix_expression] = STATE(2247), + [sym_as_expression] = STATE(2247), + [sym_selector_expression] = STATE(2247), + [sym__binary_expression] = STATE(2247), + [sym_multiplicative_expression] = STATE(2247), + [sym_additive_expression] = STATE(2247), + [sym_range_expression] = STATE(2247), + [sym_infix_expression] = STATE(2247), + [sym_nil_coalescing_expression] = STATE(2247), + [sym_check_expression] = STATE(2247), + [sym_comparison_expression] = STATE(2247), + [sym_equality_expression] = STATE(2247), + [sym_conjunction_expression] = STATE(2247), + [sym_disjunction_expression] = STATE(2247), + [sym_bitwise_operation] = STATE(2247), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2247), + [sym_await_expression] = STATE(2247), + [sym_ternary_expression] = STATE(2247), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2247), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2247), + [sym_dictionary_literal] = STATE(2247), + [sym__special_literal] = STATE(2247), + [sym__playground_literal] = STATE(2247), + [sym_lambda_literal] = STATE(2247), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2247), + [sym_key_path_expression] = STATE(2247), + [sym_key_path_string_expression] = STATE(2247), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2247), + [sym__comparison_operator] = STATE(2247), + [sym__additive_operator] = STATE(2247), + [sym__multiplicative_operator] = STATE(2247), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2247), + [sym__referenceable_operator] = STATE(2247), + [sym__eq_eq] = STATE(2247), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(2335), + [sym_real_literal] = ACTIONS(2337), + [sym_integer_literal] = ACTIONS(2335), + [sym_hex_literal] = ACTIONS(2337), + [sym_oct_literal] = ACTIONS(2337), + [sym_bin_literal] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(2335), + [anon_sym_GT] = ACTIONS(2335), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(2335), + [anon_sym_POUNDfileID] = ACTIONS(2337), + [anon_sym_POUNDfilePath] = ACTIONS(2337), + [anon_sym_POUNDline] = ACTIONS(2337), + [anon_sym_POUNDcolumn] = ACTIONS(2337), + [anon_sym_POUNDfunction] = ACTIONS(2337), + [anon_sym_POUNDdsohandle] = ACTIONS(2337), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(2335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2335), + [anon_sym_LT_EQ] = ACTIONS(2335), + [anon_sym_GT_EQ] = ACTIONS(2335), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2335), + [anon_sym_SLASH] = ACTIONS(2335), + [anon_sym_PERCENT] = ACTIONS(2335), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(2337), + [sym__plus_then_ws] = ACTIONS(2337), + [sym__minus_then_ws] = ACTIONS(2337), + [sym_bang] = ACTIONS(833), + }, + [548] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1686), + [sym_boolean_literal] = STATE(1686), + [sym__string_literal] = STATE(1686), + [sym_line_string_literal] = STATE(1686), + [sym_multi_line_string_literal] = STATE(1686), + [sym_raw_string_literal] = STATE(1686), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1686), + [sym__unary_expression] = STATE(1686), + [sym_postfix_expression] = STATE(1686), + [sym_constructor_expression] = STATE(1686), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1686), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1686), + [sym_prefix_expression] = STATE(1686), + [sym_as_expression] = STATE(1686), + [sym_selector_expression] = STATE(1686), + [sym__binary_expression] = STATE(1686), + [sym_multiplicative_expression] = STATE(1686), + [sym_additive_expression] = STATE(1686), + [sym_range_expression] = STATE(1686), + [sym_infix_expression] = STATE(1686), + [sym_nil_coalescing_expression] = STATE(1686), + [sym_check_expression] = STATE(1686), + [sym_comparison_expression] = STATE(1686), + [sym_equality_expression] = STATE(1686), + [sym_conjunction_expression] = STATE(1686), + [sym_disjunction_expression] = STATE(1686), + [sym_bitwise_operation] = STATE(1686), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1686), + [sym_await_expression] = STATE(1686), + [sym_ternary_expression] = STATE(1686), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1686), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1686), + [sym_dictionary_literal] = STATE(1686), + [sym__special_literal] = STATE(1686), + [sym__playground_literal] = STATE(1686), + [sym_lambda_literal] = STATE(1686), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1686), + [sym_key_path_expression] = STATE(1686), + [sym_key_path_string_expression] = STATE(1686), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1686), + [sym__comparison_operator] = STATE(1686), + [sym__additive_operator] = STATE(1686), + [sym__multiplicative_operator] = STATE(1686), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1686), + [sym__referenceable_operator] = STATE(1686), + [sym__eq_eq] = STATE(1686), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2339), + [sym_real_literal] = ACTIONS(2341), + [sym_integer_literal] = ACTIONS(2339), + [sym_hex_literal] = ACTIONS(2341), + [sym_oct_literal] = ACTIONS(2341), + [sym_bin_literal] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2339), + [anon_sym_GT] = ACTIONS(2339), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2339), + [anon_sym_POUNDfileID] = ACTIONS(2341), + [anon_sym_POUNDfilePath] = ACTIONS(2341), + [anon_sym_POUNDline] = ACTIONS(2341), + [anon_sym_POUNDcolumn] = ACTIONS(2341), + [anon_sym_POUNDfunction] = ACTIONS(2341), + [anon_sym_POUNDdsohandle] = ACTIONS(2341), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2339), + [anon_sym_LT_EQ] = ACTIONS(2339), + [anon_sym_GT_EQ] = ACTIONS(2339), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2339), + [anon_sym_SLASH] = ACTIONS(2339), + [anon_sym_PERCENT] = ACTIONS(2339), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2341), + [sym__plus_then_ws] = ACTIONS(2341), + [sym__minus_then_ws] = ACTIONS(2341), + [sym_bang] = ACTIONS(1069), + }, + [549] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1685), + [sym_boolean_literal] = STATE(1685), + [sym__string_literal] = STATE(1685), + [sym_line_string_literal] = STATE(1685), + [sym_multi_line_string_literal] = STATE(1685), + [sym_raw_string_literal] = STATE(1685), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1685), + [sym__unary_expression] = STATE(1685), + [sym_postfix_expression] = STATE(1685), + [sym_constructor_expression] = STATE(1685), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1685), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1685), + [sym_prefix_expression] = STATE(1685), + [sym_as_expression] = STATE(1685), + [sym_selector_expression] = STATE(1685), + [sym__binary_expression] = STATE(1685), + [sym_multiplicative_expression] = STATE(1685), + [sym_additive_expression] = STATE(1685), + [sym_range_expression] = STATE(1685), + [sym_infix_expression] = STATE(1685), + [sym_nil_coalescing_expression] = STATE(1685), + [sym_check_expression] = STATE(1685), + [sym_comparison_expression] = STATE(1685), + [sym_equality_expression] = STATE(1685), + [sym_conjunction_expression] = STATE(1685), + [sym_disjunction_expression] = STATE(1685), + [sym_bitwise_operation] = STATE(1685), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_ternary_expression] = STATE(1685), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1685), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1685), + [sym_dictionary_literal] = STATE(1685), + [sym__special_literal] = STATE(1685), + [sym__playground_literal] = STATE(1685), + [sym_lambda_literal] = STATE(1685), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1685), + [sym_key_path_expression] = STATE(1685), + [sym_key_path_string_expression] = STATE(1685), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1685), + [sym__comparison_operator] = STATE(1685), + [sym__additive_operator] = STATE(1685), + [sym__multiplicative_operator] = STATE(1685), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1685), + [sym__referenceable_operator] = STATE(1685), + [sym__eq_eq] = STATE(1685), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2343), + [sym_real_literal] = ACTIONS(2345), + [sym_integer_literal] = ACTIONS(2343), + [sym_hex_literal] = ACTIONS(2345), + [sym_oct_literal] = ACTIONS(2345), + [sym_bin_literal] = ACTIONS(2345), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2343), + [anon_sym_GT] = ACTIONS(2343), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2343), + [anon_sym_POUNDfileID] = ACTIONS(2345), + [anon_sym_POUNDfilePath] = ACTIONS(2345), + [anon_sym_POUNDline] = ACTIONS(2345), + [anon_sym_POUNDcolumn] = ACTIONS(2345), + [anon_sym_POUNDfunction] = ACTIONS(2345), + [anon_sym_POUNDdsohandle] = ACTIONS(2345), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2343), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2343), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2343), + [anon_sym_LT_EQ] = ACTIONS(2343), + [anon_sym_GT_EQ] = ACTIONS(2343), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2343), + [anon_sym_SLASH] = ACTIONS(2343), + [anon_sym_PERCENT] = ACTIONS(2343), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2345), + [sym__plus_then_ws] = ACTIONS(2345), + [sym__minus_then_ws] = ACTIONS(2345), + [sym_bang] = ACTIONS(1069), + }, + [550] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2173), + [sym_boolean_literal] = STATE(2173), + [sym__string_literal] = STATE(2173), + [sym_line_string_literal] = STATE(2173), + [sym_multi_line_string_literal] = STATE(2173), + [sym_raw_string_literal] = STATE(2173), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2173), + [sym__unary_expression] = STATE(2173), + [sym_postfix_expression] = STATE(2173), + [sym_constructor_expression] = STATE(2173), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2173), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2173), + [sym_prefix_expression] = STATE(2173), + [sym_as_expression] = STATE(2173), + [sym_selector_expression] = STATE(2173), + [sym__binary_expression] = STATE(2173), + [sym_multiplicative_expression] = STATE(2173), + [sym_additive_expression] = STATE(2173), + [sym_range_expression] = STATE(2173), + [sym_infix_expression] = STATE(2173), + [sym_nil_coalescing_expression] = STATE(2173), + [sym_check_expression] = STATE(2173), + [sym_comparison_expression] = STATE(2173), + [sym_equality_expression] = STATE(2173), + [sym_conjunction_expression] = STATE(2173), + [sym_disjunction_expression] = STATE(2173), + [sym_bitwise_operation] = STATE(2173), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2173), + [sym_await_expression] = STATE(2173), + [sym_ternary_expression] = STATE(2173), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2173), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2173), + [sym_dictionary_literal] = STATE(2173), + [sym__special_literal] = STATE(2173), + [sym__playground_literal] = STATE(2173), + [sym_lambda_literal] = STATE(2173), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2173), + [sym_key_path_expression] = STATE(2173), + [sym_key_path_string_expression] = STATE(2173), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2173), + [sym__comparison_operator] = STATE(2173), + [sym__additive_operator] = STATE(2173), + [sym__multiplicative_operator] = STATE(2173), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2173), + [sym__referenceable_operator] = STATE(2173), + [sym__eq_eq] = STATE(2173), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2347), + [anon_sym_GT] = ACTIONS(2347), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2347), + [anon_sym_LT_EQ] = ACTIONS(2347), + [anon_sym_GT_EQ] = ACTIONS(2347), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2347), + [anon_sym_SLASH] = ACTIONS(2347), + [anon_sym_PERCENT] = ACTIONS(2347), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2349), + [sym__plus_then_ws] = ACTIONS(2349), + [sym__minus_then_ws] = ACTIONS(2349), + [sym_bang] = ACTIONS(1069), + }, + [551] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2204), + [sym_boolean_literal] = STATE(2204), + [sym__string_literal] = STATE(2204), + [sym_line_string_literal] = STATE(2204), + [sym_multi_line_string_literal] = STATE(2204), + [sym_raw_string_literal] = STATE(2204), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2204), + [sym__unary_expression] = STATE(2204), + [sym_postfix_expression] = STATE(2204), + [sym_constructor_expression] = STATE(2204), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2204), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2204), + [sym_prefix_expression] = STATE(2204), + [sym_as_expression] = STATE(2204), + [sym_selector_expression] = STATE(2204), + [sym__binary_expression] = STATE(2204), + [sym_multiplicative_expression] = STATE(2204), + [sym_additive_expression] = STATE(2204), + [sym_range_expression] = STATE(2204), + [sym_infix_expression] = STATE(2204), + [sym_nil_coalescing_expression] = STATE(2204), + [sym_check_expression] = STATE(2204), + [sym_comparison_expression] = STATE(2204), + [sym_equality_expression] = STATE(2204), + [sym_conjunction_expression] = STATE(2204), + [sym_disjunction_expression] = STATE(2204), + [sym_bitwise_operation] = STATE(2204), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2204), + [sym_await_expression] = STATE(2204), + [sym_ternary_expression] = STATE(2204), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2204), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2204), + [sym_dictionary_literal] = STATE(2204), + [sym__special_literal] = STATE(2204), + [sym__playground_literal] = STATE(2204), + [sym_lambda_literal] = STATE(2204), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2204), + [sym_key_path_expression] = STATE(2204), + [sym_key_path_string_expression] = STATE(2204), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2204), + [sym__comparison_operator] = STATE(2204), + [sym__additive_operator] = STATE(2204), + [sym__multiplicative_operator] = STATE(2204), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2204), + [sym__referenceable_operator] = STATE(2204), + [sym__eq_eq] = STATE(2204), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(2351), + [sym_real_literal] = ACTIONS(2353), + [sym_integer_literal] = ACTIONS(2351), + [sym_hex_literal] = ACTIONS(2353), + [sym_oct_literal] = ACTIONS(2353), + [sym_bin_literal] = ACTIONS(2353), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(2351), + [anon_sym_GT] = ACTIONS(2351), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(2351), + [anon_sym_POUNDfileID] = ACTIONS(2353), + [anon_sym_POUNDfilePath] = ACTIONS(2353), + [anon_sym_POUNDline] = ACTIONS(2353), + [anon_sym_POUNDcolumn] = ACTIONS(2353), + [anon_sym_POUNDfunction] = ACTIONS(2353), + [anon_sym_POUNDdsohandle] = ACTIONS(2353), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(2351), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2351), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2351), + [anon_sym_LT_EQ] = ACTIONS(2351), + [anon_sym_GT_EQ] = ACTIONS(2351), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2351), + [anon_sym_SLASH] = ACTIONS(2351), + [anon_sym_PERCENT] = ACTIONS(2351), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(2353), + [sym__plus_then_ws] = ACTIONS(2353), + [sym__minus_then_ws] = ACTIONS(2353), + [sym_bang] = ACTIONS(833), + }, + [552] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2114), + [sym_boolean_literal] = STATE(2114), + [sym__string_literal] = STATE(2114), + [sym_line_string_literal] = STATE(2114), + [sym_multi_line_string_literal] = STATE(2114), + [sym_raw_string_literal] = STATE(2114), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2114), + [sym__unary_expression] = STATE(2114), + [sym_postfix_expression] = STATE(2114), + [sym_constructor_expression] = STATE(2114), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2114), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2114), + [sym_prefix_expression] = STATE(2114), + [sym_as_expression] = STATE(2114), + [sym_selector_expression] = STATE(2114), + [sym__binary_expression] = STATE(2114), + [sym_multiplicative_expression] = STATE(2114), + [sym_additive_expression] = STATE(2114), + [sym_range_expression] = STATE(2114), + [sym_infix_expression] = STATE(2114), + [sym_nil_coalescing_expression] = STATE(2114), + [sym_check_expression] = STATE(2114), + [sym_comparison_expression] = STATE(2114), + [sym_equality_expression] = STATE(2114), + [sym_conjunction_expression] = STATE(2114), + [sym_disjunction_expression] = STATE(2114), + [sym_bitwise_operation] = STATE(2114), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2114), + [sym_await_expression] = STATE(2114), + [sym_ternary_expression] = STATE(2114), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2114), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2114), + [sym_dictionary_literal] = STATE(2114), + [sym__special_literal] = STATE(2114), + [sym__playground_literal] = STATE(2114), + [sym_lambda_literal] = STATE(2114), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2114), + [sym_key_path_expression] = STATE(2114), + [sym_key_path_string_expression] = STATE(2114), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2114), + [sym__comparison_operator] = STATE(2114), + [sym__additive_operator] = STATE(2114), + [sym__multiplicative_operator] = STATE(2114), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2114), + [sym__referenceable_operator] = STATE(2114), + [sym__eq_eq] = STATE(2114), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2355), + [anon_sym_GT] = ACTIONS(2355), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2355), + [anon_sym_LT_EQ] = ACTIONS(2355), + [anon_sym_GT_EQ] = ACTIONS(2355), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_SLASH] = ACTIONS(2355), + [anon_sym_PERCENT] = ACTIONS(2355), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2357), + [sym__plus_then_ws] = ACTIONS(2357), + [sym__minus_then_ws] = ACTIONS(2357), + [sym_bang] = ACTIONS(1069), + }, + [553] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1762), + [sym_boolean_literal] = STATE(1762), + [sym__string_literal] = STATE(1762), + [sym_line_string_literal] = STATE(1762), + [sym_multi_line_string_literal] = STATE(1762), + [sym_raw_string_literal] = STATE(1762), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1762), + [sym__unary_expression] = STATE(1762), + [sym_postfix_expression] = STATE(1762), + [sym_constructor_expression] = STATE(1762), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1762), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1762), + [sym_prefix_expression] = STATE(1762), + [sym_as_expression] = STATE(1762), + [sym_selector_expression] = STATE(1762), + [sym__binary_expression] = STATE(1762), + [sym_multiplicative_expression] = STATE(1762), + [sym_additive_expression] = STATE(1762), + [sym_range_expression] = STATE(1762), + [sym_infix_expression] = STATE(1762), + [sym_nil_coalescing_expression] = STATE(1762), + [sym_check_expression] = STATE(1762), + [sym_comparison_expression] = STATE(1762), + [sym_equality_expression] = STATE(1762), + [sym_conjunction_expression] = STATE(1762), + [sym_disjunction_expression] = STATE(1762), + [sym_bitwise_operation] = STATE(1762), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1762), + [sym_await_expression] = STATE(1762), + [sym_ternary_expression] = STATE(1762), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1762), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1762), + [sym_dictionary_literal] = STATE(1762), + [sym__special_literal] = STATE(1762), + [sym__playground_literal] = STATE(1762), + [sym_lambda_literal] = STATE(1762), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1762), + [sym_key_path_expression] = STATE(1762), + [sym_key_path_string_expression] = STATE(1762), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1762), + [sym__comparison_operator] = STATE(1762), + [sym__additive_operator] = STATE(1762), + [sym__multiplicative_operator] = STATE(1762), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1762), + [sym__referenceable_operator] = STATE(1762), + [sym__eq_eq] = STATE(1762), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2359), + [sym_real_literal] = ACTIONS(2361), + [sym_integer_literal] = ACTIONS(2359), + [sym_hex_literal] = ACTIONS(2361), + [sym_oct_literal] = ACTIONS(2361), + [sym_bin_literal] = ACTIONS(2361), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2359), + [anon_sym_GT] = ACTIONS(2359), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2359), + [anon_sym_POUNDfileID] = ACTIONS(2361), + [anon_sym_POUNDfilePath] = ACTIONS(2361), + [anon_sym_POUNDline] = ACTIONS(2361), + [anon_sym_POUNDcolumn] = ACTIONS(2361), + [anon_sym_POUNDfunction] = ACTIONS(2361), + [anon_sym_POUNDdsohandle] = ACTIONS(2361), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2359), + [anon_sym_LT_EQ] = ACTIONS(2359), + [anon_sym_GT_EQ] = ACTIONS(2359), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2359), + [anon_sym_SLASH] = ACTIONS(2359), + [anon_sym_PERCENT] = ACTIONS(2359), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2361), + [sym__plus_then_ws] = ACTIONS(2361), + [sym__minus_then_ws] = ACTIONS(2361), + [sym_bang] = ACTIONS(1069), + }, + [554] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1749), + [sym_boolean_literal] = STATE(1749), + [sym__string_literal] = STATE(1749), + [sym_line_string_literal] = STATE(1749), + [sym_multi_line_string_literal] = STATE(1749), + [sym_raw_string_literal] = STATE(1749), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1749), + [sym__unary_expression] = STATE(1749), + [sym_postfix_expression] = STATE(1749), + [sym_constructor_expression] = STATE(1749), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1749), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1749), + [sym_prefix_expression] = STATE(1749), + [sym_as_expression] = STATE(1749), + [sym_selector_expression] = STATE(1749), + [sym__binary_expression] = STATE(1749), + [sym_multiplicative_expression] = STATE(1749), + [sym_additive_expression] = STATE(1749), + [sym_range_expression] = STATE(1749), + [sym_infix_expression] = STATE(1749), + [sym_nil_coalescing_expression] = STATE(1749), + [sym_check_expression] = STATE(1749), + [sym_comparison_expression] = STATE(1749), + [sym_equality_expression] = STATE(1749), + [sym_conjunction_expression] = STATE(1749), + [sym_disjunction_expression] = STATE(1749), + [sym_bitwise_operation] = STATE(1749), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1749), + [sym_await_expression] = STATE(1749), + [sym_ternary_expression] = STATE(1749), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1749), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1749), + [sym_dictionary_literal] = STATE(1749), + [sym__special_literal] = STATE(1749), + [sym__playground_literal] = STATE(1749), + [sym_lambda_literal] = STATE(1749), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1749), + [sym_key_path_expression] = STATE(1749), + [sym_key_path_string_expression] = STATE(1749), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1749), + [sym__comparison_operator] = STATE(1749), + [sym__additive_operator] = STATE(1749), + [sym__multiplicative_operator] = STATE(1749), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1749), + [sym__referenceable_operator] = STATE(1749), + [sym__eq_eq] = STATE(1749), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2363), + [sym_real_literal] = ACTIONS(2365), + [sym_integer_literal] = ACTIONS(2363), + [sym_hex_literal] = ACTIONS(2365), + [sym_oct_literal] = ACTIONS(2365), + [sym_bin_literal] = ACTIONS(2365), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2363), + [anon_sym_GT] = ACTIONS(2363), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2363), + [anon_sym_POUNDfileID] = ACTIONS(2365), + [anon_sym_POUNDfilePath] = ACTIONS(2365), + [anon_sym_POUNDline] = ACTIONS(2365), + [anon_sym_POUNDcolumn] = ACTIONS(2365), + [anon_sym_POUNDfunction] = ACTIONS(2365), + [anon_sym_POUNDdsohandle] = ACTIONS(2365), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2363), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2363), + [anon_sym_SLASH] = ACTIONS(2363), + [anon_sym_PERCENT] = ACTIONS(2363), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2365), + [sym__plus_then_ws] = ACTIONS(2365), + [sym__minus_then_ws] = ACTIONS(2365), + [sym_bang] = ACTIONS(1069), + }, + [555] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2172), + [sym_boolean_literal] = STATE(2172), + [sym__string_literal] = STATE(2172), + [sym_line_string_literal] = STATE(2172), + [sym_multi_line_string_literal] = STATE(2172), + [sym_raw_string_literal] = STATE(2172), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2172), + [sym__unary_expression] = STATE(2172), + [sym_postfix_expression] = STATE(2172), + [sym_constructor_expression] = STATE(2172), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2172), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2172), + [sym_prefix_expression] = STATE(2172), + [sym_as_expression] = STATE(2172), + [sym_selector_expression] = STATE(2172), + [sym__binary_expression] = STATE(2172), + [sym_multiplicative_expression] = STATE(2172), + [sym_additive_expression] = STATE(2172), + [sym_range_expression] = STATE(2172), + [sym_infix_expression] = STATE(2172), + [sym_nil_coalescing_expression] = STATE(2172), + [sym_check_expression] = STATE(2172), + [sym_comparison_expression] = STATE(2172), + [sym_equality_expression] = STATE(2172), + [sym_conjunction_expression] = STATE(2172), + [sym_disjunction_expression] = STATE(2172), + [sym_bitwise_operation] = STATE(2172), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2172), + [sym_await_expression] = STATE(2172), + [sym_ternary_expression] = STATE(2172), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2172), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2172), + [sym_dictionary_literal] = STATE(2172), + [sym__special_literal] = STATE(2172), + [sym__playground_literal] = STATE(2172), + [sym_lambda_literal] = STATE(2172), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2172), + [sym_key_path_expression] = STATE(2172), + [sym_key_path_string_expression] = STATE(2172), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2172), + [sym__comparison_operator] = STATE(2172), + [sym__additive_operator] = STATE(2172), + [sym__multiplicative_operator] = STATE(2172), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2172), + [sym__referenceable_operator] = STATE(2172), + [sym__eq_eq] = STATE(2172), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2367), + [sym_real_literal] = ACTIONS(2369), + [sym_integer_literal] = ACTIONS(2367), + [sym_hex_literal] = ACTIONS(2369), + [sym_oct_literal] = ACTIONS(2369), + [sym_bin_literal] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2367), + [anon_sym_GT] = ACTIONS(2367), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2367), + [anon_sym_POUNDfileID] = ACTIONS(2369), + [anon_sym_POUNDfilePath] = ACTIONS(2369), + [anon_sym_POUNDline] = ACTIONS(2369), + [anon_sym_POUNDcolumn] = ACTIONS(2369), + [anon_sym_POUNDfunction] = ACTIONS(2369), + [anon_sym_POUNDdsohandle] = ACTIONS(2369), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2367), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2367), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2367), + [anon_sym_LT_EQ] = ACTIONS(2367), + [anon_sym_GT_EQ] = ACTIONS(2367), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2367), + [anon_sym_SLASH] = ACTIONS(2367), + [anon_sym_PERCENT] = ACTIONS(2367), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2369), + [sym__plus_then_ws] = ACTIONS(2369), + [sym__minus_then_ws] = ACTIONS(2369), + [sym_bang] = ACTIONS(1069), + }, + [556] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1742), + [sym_boolean_literal] = STATE(1742), + [sym__string_literal] = STATE(1742), + [sym_line_string_literal] = STATE(1742), + [sym_multi_line_string_literal] = STATE(1742), + [sym_raw_string_literal] = STATE(1742), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1742), + [sym__unary_expression] = STATE(1742), + [sym_postfix_expression] = STATE(1742), + [sym_constructor_expression] = STATE(1742), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1742), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1742), + [sym_prefix_expression] = STATE(1742), + [sym_as_expression] = STATE(1742), + [sym_selector_expression] = STATE(1742), + [sym__binary_expression] = STATE(1742), + [sym_multiplicative_expression] = STATE(1742), + [sym_additive_expression] = STATE(1742), + [sym_range_expression] = STATE(1742), + [sym_infix_expression] = STATE(1742), + [sym_nil_coalescing_expression] = STATE(1742), + [sym_check_expression] = STATE(1742), + [sym_comparison_expression] = STATE(1742), + [sym_equality_expression] = STATE(1742), + [sym_conjunction_expression] = STATE(1742), + [sym_disjunction_expression] = STATE(1742), + [sym_bitwise_operation] = STATE(1742), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1742), + [sym_await_expression] = STATE(1742), + [sym_ternary_expression] = STATE(1742), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1742), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1742), + [sym_dictionary_literal] = STATE(1742), + [sym__special_literal] = STATE(1742), + [sym__playground_literal] = STATE(1742), + [sym_lambda_literal] = STATE(1742), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1742), + [sym_key_path_expression] = STATE(1742), + [sym_key_path_string_expression] = STATE(1742), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1742), + [sym__comparison_operator] = STATE(1742), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1742), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1742), + [sym__referenceable_operator] = STATE(1742), + [sym__eq_eq] = STATE(1742), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2371), + [sym_real_literal] = ACTIONS(2373), + [sym_integer_literal] = ACTIONS(2371), + [sym_hex_literal] = ACTIONS(2373), + [sym_oct_literal] = ACTIONS(2373), + [sym_bin_literal] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2371), + [anon_sym_GT] = ACTIONS(2371), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2371), + [anon_sym_POUNDfileID] = ACTIONS(2373), + [anon_sym_POUNDfilePath] = ACTIONS(2373), + [anon_sym_POUNDline] = ACTIONS(2373), + [anon_sym_POUNDcolumn] = ACTIONS(2373), + [anon_sym_POUNDfunction] = ACTIONS(2373), + [anon_sym_POUNDdsohandle] = ACTIONS(2373), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2371), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2371), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2371), + [anon_sym_LT_EQ] = ACTIONS(2371), + [anon_sym_GT_EQ] = ACTIONS(2371), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_SLASH] = ACTIONS(2371), + [anon_sym_PERCENT] = ACTIONS(2371), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2373), + [sym__plus_then_ws] = ACTIONS(2373), + [sym__minus_then_ws] = ACTIONS(2373), + [sym_bang] = ACTIONS(1069), + }, + [557] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1745), + [sym_boolean_literal] = STATE(1745), + [sym__string_literal] = STATE(1745), + [sym_line_string_literal] = STATE(1745), + [sym_multi_line_string_literal] = STATE(1745), + [sym_raw_string_literal] = STATE(1745), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1745), + [sym__unary_expression] = STATE(1745), + [sym_postfix_expression] = STATE(1745), + [sym_constructor_expression] = STATE(1745), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1745), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1745), + [sym_prefix_expression] = STATE(1745), + [sym_as_expression] = STATE(1745), + [sym_selector_expression] = STATE(1745), + [sym__binary_expression] = STATE(1745), + [sym_multiplicative_expression] = STATE(1745), + [sym_additive_expression] = STATE(1745), + [sym_range_expression] = STATE(1745), + [sym_infix_expression] = STATE(1745), + [sym_nil_coalescing_expression] = STATE(1745), + [sym_check_expression] = STATE(1745), + [sym_comparison_expression] = STATE(1745), + [sym_equality_expression] = STATE(1745), + [sym_conjunction_expression] = STATE(1745), + [sym_disjunction_expression] = STATE(1745), + [sym_bitwise_operation] = STATE(1745), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1745), + [sym_await_expression] = STATE(1745), + [sym_ternary_expression] = STATE(1745), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1745), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1745), + [sym_dictionary_literal] = STATE(1745), + [sym__special_literal] = STATE(1745), + [sym__playground_literal] = STATE(1745), + [sym_lambda_literal] = STATE(1745), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1745), + [sym_key_path_expression] = STATE(1745), + [sym_key_path_string_expression] = STATE(1745), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1745), + [sym__additive_operator] = STATE(1745), + [sym__multiplicative_operator] = STATE(1745), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1745), + [sym__referenceable_operator] = STATE(1745), + [sym__eq_eq] = STATE(1745), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2375), + [sym_real_literal] = ACTIONS(2377), + [sym_integer_literal] = ACTIONS(2375), + [sym_hex_literal] = ACTIONS(2377), + [sym_oct_literal] = ACTIONS(2377), + [sym_bin_literal] = ACTIONS(2377), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2375), + [anon_sym_GT] = ACTIONS(2375), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2375), + [anon_sym_POUNDfileID] = ACTIONS(2377), + [anon_sym_POUNDfilePath] = ACTIONS(2377), + [anon_sym_POUNDline] = ACTIONS(2377), + [anon_sym_POUNDcolumn] = ACTIONS(2377), + [anon_sym_POUNDfunction] = ACTIONS(2377), + [anon_sym_POUNDdsohandle] = ACTIONS(2377), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2375), + [anon_sym_LT_EQ] = ACTIONS(2375), + [anon_sym_GT_EQ] = ACTIONS(2375), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2375), + [anon_sym_SLASH] = ACTIONS(2375), + [anon_sym_PERCENT] = ACTIONS(2375), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2377), + [sym__plus_then_ws] = ACTIONS(2377), + [sym__minus_then_ws] = ACTIONS(2377), + [sym_bang] = ACTIONS(1069), + }, + [558] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1757), + [sym_boolean_literal] = STATE(1757), + [sym__string_literal] = STATE(1757), + [sym_line_string_literal] = STATE(1757), + [sym_multi_line_string_literal] = STATE(1757), + [sym_raw_string_literal] = STATE(1757), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1757), + [sym__unary_expression] = STATE(1757), + [sym_postfix_expression] = STATE(1757), + [sym_constructor_expression] = STATE(1757), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1757), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1757), + [sym_prefix_expression] = STATE(1757), + [sym_as_expression] = STATE(1757), + [sym_selector_expression] = STATE(1757), + [sym__binary_expression] = STATE(1757), + [sym_multiplicative_expression] = STATE(1757), + [sym_additive_expression] = STATE(1757), + [sym_range_expression] = STATE(1757), + [sym_infix_expression] = STATE(1757), + [sym_nil_coalescing_expression] = STATE(1757), + [sym_check_expression] = STATE(1757), + [sym_comparison_expression] = STATE(1757), + [sym_equality_expression] = STATE(1757), + [sym_conjunction_expression] = STATE(1757), + [sym_disjunction_expression] = STATE(1757), + [sym_bitwise_operation] = STATE(1757), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1757), + [sym_await_expression] = STATE(1757), + [sym_ternary_expression] = STATE(1757), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1757), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1757), + [sym_dictionary_literal] = STATE(1757), + [sym__special_literal] = STATE(1757), + [sym__playground_literal] = STATE(1757), + [sym_lambda_literal] = STATE(1757), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1757), + [sym_key_path_expression] = STATE(1757), + [sym_key_path_string_expression] = STATE(1757), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1757), + [sym__comparison_operator] = STATE(1757), + [sym__additive_operator] = STATE(1757), + [sym__multiplicative_operator] = STATE(1757), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1757), + [sym__referenceable_operator] = STATE(1757), + [sym__eq_eq] = STATE(1757), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2379), + [sym_real_literal] = ACTIONS(2381), + [sym_integer_literal] = ACTIONS(2379), + [sym_hex_literal] = ACTIONS(2381), + [sym_oct_literal] = ACTIONS(2381), + [sym_bin_literal] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2379), + [anon_sym_GT] = ACTIONS(2379), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2379), + [anon_sym_POUNDfileID] = ACTIONS(2381), + [anon_sym_POUNDfilePath] = ACTIONS(2381), + [anon_sym_POUNDline] = ACTIONS(2381), + [anon_sym_POUNDcolumn] = ACTIONS(2381), + [anon_sym_POUNDfunction] = ACTIONS(2381), + [anon_sym_POUNDdsohandle] = ACTIONS(2381), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2379), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2379), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2379), + [anon_sym_LT_EQ] = ACTIONS(2379), + [anon_sym_GT_EQ] = ACTIONS(2379), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2379), + [anon_sym_SLASH] = ACTIONS(2379), + [anon_sym_PERCENT] = ACTIONS(2379), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2381), + [sym__plus_then_ws] = ACTIONS(2381), + [sym__minus_then_ws] = ACTIONS(2381), + [sym_bang] = ACTIONS(1069), + }, + [559] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1746), + [sym_boolean_literal] = STATE(1746), + [sym__string_literal] = STATE(1746), + [sym_line_string_literal] = STATE(1746), + [sym_multi_line_string_literal] = STATE(1746), + [sym_raw_string_literal] = STATE(1746), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1746), + [sym__unary_expression] = STATE(1746), + [sym_postfix_expression] = STATE(1746), + [sym_constructor_expression] = STATE(1746), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1746), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1746), + [sym_prefix_expression] = STATE(1746), + [sym_as_expression] = STATE(1746), + [sym_selector_expression] = STATE(1746), + [sym__binary_expression] = STATE(1746), + [sym_multiplicative_expression] = STATE(1746), + [sym_additive_expression] = STATE(1746), + [sym_range_expression] = STATE(1746), + [sym_infix_expression] = STATE(1746), + [sym_nil_coalescing_expression] = STATE(1746), + [sym_check_expression] = STATE(1746), + [sym_comparison_expression] = STATE(1746), + [sym_equality_expression] = STATE(1746), + [sym_conjunction_expression] = STATE(1746), + [sym_disjunction_expression] = STATE(1746), + [sym_bitwise_operation] = STATE(1746), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1746), + [sym_await_expression] = STATE(1746), + [sym_ternary_expression] = STATE(1746), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1746), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1746), + [sym_dictionary_literal] = STATE(1746), + [sym__special_literal] = STATE(1746), + [sym__playground_literal] = STATE(1746), + [sym_lambda_literal] = STATE(1746), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1746), + [sym_key_path_expression] = STATE(1746), + [sym_key_path_string_expression] = STATE(1746), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1746), + [sym__comparison_operator] = STATE(1746), + [sym__additive_operator] = STATE(1746), + [sym__multiplicative_operator] = STATE(1746), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1746), + [sym__referenceable_operator] = STATE(1746), + [sym__eq_eq] = STATE(1746), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2383), + [sym_real_literal] = ACTIONS(2385), + [sym_integer_literal] = ACTIONS(2383), + [sym_hex_literal] = ACTIONS(2385), + [sym_oct_literal] = ACTIONS(2385), + [sym_bin_literal] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2383), + [anon_sym_GT] = ACTIONS(2383), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2383), + [anon_sym_POUNDfileID] = ACTIONS(2385), + [anon_sym_POUNDfilePath] = ACTIONS(2385), + [anon_sym_POUNDline] = ACTIONS(2385), + [anon_sym_POUNDcolumn] = ACTIONS(2385), + [anon_sym_POUNDfunction] = ACTIONS(2385), + [anon_sym_POUNDdsohandle] = ACTIONS(2385), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2383), + [anon_sym_LT_EQ] = ACTIONS(2383), + [anon_sym_GT_EQ] = ACTIONS(2383), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2383), + [anon_sym_SLASH] = ACTIONS(2383), + [anon_sym_PERCENT] = ACTIONS(2383), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2385), + [sym__plus_then_ws] = ACTIONS(2385), + [sym__minus_then_ws] = ACTIONS(2385), + [sym_bang] = ACTIONS(1069), + }, + [560] = { + [sym_simple_identifier] = STATE(2632), + [sym__basic_literal] = STATE(2191), + [sym_boolean_literal] = STATE(2191), + [sym__string_literal] = STATE(2191), + [sym_line_string_literal] = STATE(2191), + [sym_multi_line_string_literal] = STATE(2191), + [sym_raw_string_literal] = STATE(2191), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2191), + [sym__unary_expression] = STATE(2191), + [sym_postfix_expression] = STATE(2191), + [sym_constructor_expression] = STATE(2191), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2191), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2191), + [sym_prefix_expression] = STATE(2191), + [sym_as_expression] = STATE(2191), + [sym_selector_expression] = STATE(2191), + [sym__binary_expression] = STATE(2191), + [sym_multiplicative_expression] = STATE(2191), + [sym_additive_expression] = STATE(2191), + [sym_range_expression] = STATE(2191), + [sym_infix_expression] = STATE(2191), + [sym_nil_coalescing_expression] = STATE(2191), + [sym_check_expression] = STATE(2191), + [sym_comparison_expression] = STATE(2191), + [sym_equality_expression] = STATE(2191), + [sym_conjunction_expression] = STATE(2191), + [sym_disjunction_expression] = STATE(2191), + [sym_bitwise_operation] = STATE(2191), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2191), + [sym_await_expression] = STATE(2191), + [sym_ternary_expression] = STATE(2191), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2191), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2191), + [sym_dictionary_literal] = STATE(2191), + [sym__special_literal] = STATE(2191), + [sym__playground_literal] = STATE(2191), + [sym_lambda_literal] = STATE(2191), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2191), + [sym_key_path_expression] = STATE(2191), + [sym_key_path_string_expression] = STATE(2191), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2191), + [sym__comparison_operator] = STATE(2191), + [sym__additive_operator] = STATE(2191), + [sym__multiplicative_operator] = STATE(2191), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2191), + [sym__referenceable_operator] = STATE(2191), + [sym__eq_eq] = STATE(2191), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(2387), + [sym_real_literal] = ACTIONS(2389), + [sym_integer_literal] = ACTIONS(2387), + [sym_hex_literal] = ACTIONS(2389), + [sym_oct_literal] = ACTIONS(2389), + [sym_bin_literal] = ACTIONS(2389), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(2387), + [anon_sym_GT] = ACTIONS(2387), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(2387), + [anon_sym_POUNDfileID] = ACTIONS(2389), + [anon_sym_POUNDfilePath] = ACTIONS(2389), + [anon_sym_POUNDline] = ACTIONS(2389), + [anon_sym_POUNDcolumn] = ACTIONS(2389), + [anon_sym_POUNDfunction] = ACTIONS(2389), + [anon_sym_POUNDdsohandle] = ACTIONS(2389), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(2387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2387), + [anon_sym_LT_EQ] = ACTIONS(2387), + [anon_sym_GT_EQ] = ACTIONS(2387), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2387), + [anon_sym_SLASH] = ACTIONS(2387), + [anon_sym_PERCENT] = ACTIONS(2387), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(2389), + [sym__plus_then_ws] = ACTIONS(2389), + [sym__minus_then_ws] = ACTIONS(2389), + [sym_bang] = ACTIONS(833), + }, + [561] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1763), + [sym_boolean_literal] = STATE(1763), + [sym__string_literal] = STATE(1763), + [sym_line_string_literal] = STATE(1763), + [sym_multi_line_string_literal] = STATE(1763), + [sym_raw_string_literal] = STATE(1763), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1763), + [sym__unary_expression] = STATE(1763), + [sym_postfix_expression] = STATE(1763), + [sym_constructor_expression] = STATE(1763), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1763), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1763), + [sym_prefix_expression] = STATE(1763), + [sym_as_expression] = STATE(1763), + [sym_selector_expression] = STATE(1763), + [sym__binary_expression] = STATE(1763), + [sym_multiplicative_expression] = STATE(1763), + [sym_additive_expression] = STATE(1763), + [sym_range_expression] = STATE(1763), + [sym_infix_expression] = STATE(1763), + [sym_nil_coalescing_expression] = STATE(1763), + [sym_check_expression] = STATE(1763), + [sym_comparison_expression] = STATE(1763), + [sym_equality_expression] = STATE(1763), + [sym_conjunction_expression] = STATE(1763), + [sym_disjunction_expression] = STATE(1763), + [sym_bitwise_operation] = STATE(1763), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1763), + [sym_await_expression] = STATE(1763), + [sym_ternary_expression] = STATE(1763), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1763), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1763), + [sym_dictionary_literal] = STATE(1763), + [sym__special_literal] = STATE(1763), + [sym__playground_literal] = STATE(1763), + [sym_lambda_literal] = STATE(1763), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1763), + [sym_key_path_expression] = STATE(1763), + [sym_key_path_string_expression] = STATE(1763), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1763), + [sym__comparison_operator] = STATE(1763), + [sym__additive_operator] = STATE(1763), + [sym__multiplicative_operator] = STATE(1763), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1763), + [sym__referenceable_operator] = STATE(1763), + [sym__eq_eq] = STATE(1763), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2391), + [sym_real_literal] = ACTIONS(2393), + [sym_integer_literal] = ACTIONS(2391), + [sym_hex_literal] = ACTIONS(2393), + [sym_oct_literal] = ACTIONS(2393), + [sym_bin_literal] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2391), + [anon_sym_GT] = ACTIONS(2391), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2391), + [anon_sym_POUNDfileID] = ACTIONS(2393), + [anon_sym_POUNDfilePath] = ACTIONS(2393), + [anon_sym_POUNDline] = ACTIONS(2393), + [anon_sym_POUNDcolumn] = ACTIONS(2393), + [anon_sym_POUNDfunction] = ACTIONS(2393), + [anon_sym_POUNDdsohandle] = ACTIONS(2393), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2391), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2391), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2391), + [anon_sym_LT_EQ] = ACTIONS(2391), + [anon_sym_GT_EQ] = ACTIONS(2391), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2391), + [anon_sym_SLASH] = ACTIONS(2391), + [anon_sym_PERCENT] = ACTIONS(2391), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2393), + [sym__plus_then_ws] = ACTIONS(2393), + [sym__minus_then_ws] = ACTIONS(2393), + [sym_bang] = ACTIONS(1069), + }, + [562] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2171), + [sym_boolean_literal] = STATE(2171), + [sym__string_literal] = STATE(2171), + [sym_line_string_literal] = STATE(2171), + [sym_multi_line_string_literal] = STATE(2171), + [sym_raw_string_literal] = STATE(2171), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2171), + [sym__unary_expression] = STATE(2171), + [sym_postfix_expression] = STATE(2171), + [sym_constructor_expression] = STATE(2171), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2171), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2171), + [sym_prefix_expression] = STATE(2171), + [sym_as_expression] = STATE(2171), + [sym_selector_expression] = STATE(2171), + [sym__binary_expression] = STATE(2171), + [sym_multiplicative_expression] = STATE(2171), + [sym_additive_expression] = STATE(2171), + [sym_range_expression] = STATE(2171), + [sym_infix_expression] = STATE(2171), + [sym_nil_coalescing_expression] = STATE(2171), + [sym_check_expression] = STATE(2171), + [sym_comparison_expression] = STATE(2171), + [sym_equality_expression] = STATE(2171), + [sym_conjunction_expression] = STATE(2171), + [sym_disjunction_expression] = STATE(2171), + [sym_bitwise_operation] = STATE(2171), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2171), + [sym_await_expression] = STATE(2171), + [sym_ternary_expression] = STATE(2171), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2171), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2171), + [sym_dictionary_literal] = STATE(2171), + [sym__special_literal] = STATE(2171), + [sym__playground_literal] = STATE(2171), + [sym_lambda_literal] = STATE(2171), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2171), + [sym_key_path_expression] = STATE(2171), + [sym_key_path_string_expression] = STATE(2171), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2171), + [sym__comparison_operator] = STATE(2171), + [sym__additive_operator] = STATE(2171), + [sym__multiplicative_operator] = STATE(2171), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2171), + [sym__referenceable_operator] = STATE(2171), + [sym__eq_eq] = STATE(2171), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2395), + [sym_real_literal] = ACTIONS(2397), + [sym_integer_literal] = ACTIONS(2395), + [sym_hex_literal] = ACTIONS(2397), + [sym_oct_literal] = ACTIONS(2397), + [sym_bin_literal] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2395), + [anon_sym_GT] = ACTIONS(2395), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2395), + [anon_sym_POUNDfileID] = ACTIONS(2397), + [anon_sym_POUNDfilePath] = ACTIONS(2397), + [anon_sym_POUNDline] = ACTIONS(2397), + [anon_sym_POUNDcolumn] = ACTIONS(2397), + [anon_sym_POUNDfunction] = ACTIONS(2397), + [anon_sym_POUNDdsohandle] = ACTIONS(2397), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2395), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2395), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2395), + [anon_sym_LT_EQ] = ACTIONS(2395), + [anon_sym_GT_EQ] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_SLASH] = ACTIONS(2395), + [anon_sym_PERCENT] = ACTIONS(2395), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2397), + [sym__plus_then_ws] = ACTIONS(2397), + [sym__minus_then_ws] = ACTIONS(2397), + [sym_bang] = ACTIONS(1069), + }, + [563] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1970), + [sym_boolean_literal] = STATE(1970), + [sym__string_literal] = STATE(1970), + [sym_line_string_literal] = STATE(1970), + [sym_multi_line_string_literal] = STATE(1970), + [sym_raw_string_literal] = STATE(1970), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1970), + [sym__unary_expression] = STATE(1970), + [sym_postfix_expression] = STATE(1970), + [sym_constructor_expression] = STATE(1970), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1970), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1970), + [sym_prefix_expression] = STATE(1970), + [sym_as_expression] = STATE(1970), + [sym_selector_expression] = STATE(1970), + [sym__binary_expression] = STATE(1970), + [sym_multiplicative_expression] = STATE(1970), + [sym_additive_expression] = STATE(1970), + [sym_range_expression] = STATE(1970), + [sym_infix_expression] = STATE(1970), + [sym_nil_coalescing_expression] = STATE(1970), + [sym_check_expression] = STATE(1970), + [sym_comparison_expression] = STATE(1970), + [sym_equality_expression] = STATE(1970), + [sym_conjunction_expression] = STATE(1970), + [sym_disjunction_expression] = STATE(1970), + [sym_bitwise_operation] = STATE(1970), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1970), + [sym_await_expression] = STATE(1970), + [sym_ternary_expression] = STATE(1970), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1970), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1970), + [sym_dictionary_literal] = STATE(1970), + [sym__special_literal] = STATE(1970), + [sym__playground_literal] = STATE(1970), + [sym_lambda_literal] = STATE(1970), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1970), + [sym_key_path_expression] = STATE(1970), + [sym_key_path_string_expression] = STATE(1970), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1970), + [sym__comparison_operator] = STATE(1970), + [sym__additive_operator] = STATE(1970), + [sym__multiplicative_operator] = STATE(1970), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1970), + [sym__referenceable_operator] = STATE(1970), + [sym__eq_eq] = STATE(1970), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(855), + [sym_real_literal] = ACTIONS(857), + [sym_integer_literal] = ACTIONS(855), + [sym_hex_literal] = ACTIONS(857), + [sym_oct_literal] = ACTIONS(857), + [sym_bin_literal] = ACTIONS(857), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(855), + [anon_sym_POUNDfileID] = ACTIONS(857), + [anon_sym_POUNDfilePath] = ACTIONS(857), + [anon_sym_POUNDline] = ACTIONS(857), + [anon_sym_POUNDcolumn] = ACTIONS(857), + [anon_sym_POUNDfunction] = ACTIONS(857), + [anon_sym_POUNDdsohandle] = ACTIONS(857), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(855), + [anon_sym_BANG_EQ_EQ] = ACTIONS(855), + [anon_sym_EQ_EQ_EQ] = ACTIONS(855), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(855), + [anon_sym_SLASH] = ACTIONS(855), + [anon_sym_PERCENT] = ACTIONS(855), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(857), + [sym__plus_then_ws] = ACTIONS(857), + [sym__minus_then_ws] = ACTIONS(857), + [sym_bang] = ACTIONS(833), + }, + [564] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2170), + [sym_boolean_literal] = STATE(2170), + [sym__string_literal] = STATE(2170), + [sym_line_string_literal] = STATE(2170), + [sym_multi_line_string_literal] = STATE(2170), + [sym_raw_string_literal] = STATE(2170), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2170), + [sym__unary_expression] = STATE(2170), + [sym_postfix_expression] = STATE(2170), + [sym_constructor_expression] = STATE(2170), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2170), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2170), + [sym_prefix_expression] = STATE(2170), + [sym_as_expression] = STATE(2170), + [sym_selector_expression] = STATE(2170), + [sym__binary_expression] = STATE(2170), + [sym_multiplicative_expression] = STATE(2170), + [sym_additive_expression] = STATE(2170), + [sym_range_expression] = STATE(2170), + [sym_infix_expression] = STATE(2170), + [sym_nil_coalescing_expression] = STATE(2170), + [sym_check_expression] = STATE(2170), + [sym_comparison_expression] = STATE(2170), + [sym_equality_expression] = STATE(2170), + [sym_conjunction_expression] = STATE(2170), + [sym_disjunction_expression] = STATE(2170), + [sym_bitwise_operation] = STATE(2170), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2170), + [sym_await_expression] = STATE(2170), + [sym_ternary_expression] = STATE(2170), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2170), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2170), + [sym_dictionary_literal] = STATE(2170), + [sym__special_literal] = STATE(2170), + [sym__playground_literal] = STATE(2170), + [sym_lambda_literal] = STATE(2170), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2170), + [sym_key_path_expression] = STATE(2170), + [sym_key_path_string_expression] = STATE(2170), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2170), + [sym__comparison_operator] = STATE(2170), + [sym__additive_operator] = STATE(2170), + [sym__multiplicative_operator] = STATE(2170), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2170), + [sym__referenceable_operator] = STATE(2170), + [sym__eq_eq] = STATE(2170), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2399), + [sym_real_literal] = ACTIONS(2401), + [sym_integer_literal] = ACTIONS(2399), + [sym_hex_literal] = ACTIONS(2401), + [sym_oct_literal] = ACTIONS(2401), + [sym_bin_literal] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2399), + [anon_sym_GT] = ACTIONS(2399), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2399), + [anon_sym_POUNDfileID] = ACTIONS(2401), + [anon_sym_POUNDfilePath] = ACTIONS(2401), + [anon_sym_POUNDline] = ACTIONS(2401), + [anon_sym_POUNDcolumn] = ACTIONS(2401), + [anon_sym_POUNDfunction] = ACTIONS(2401), + [anon_sym_POUNDdsohandle] = ACTIONS(2401), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2399), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2399), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2399), + [anon_sym_LT_EQ] = ACTIONS(2399), + [anon_sym_GT_EQ] = ACTIONS(2399), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2399), + [anon_sym_SLASH] = ACTIONS(2399), + [anon_sym_PERCENT] = ACTIONS(2399), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2401), + [sym__plus_then_ws] = ACTIONS(2401), + [sym__minus_then_ws] = ACTIONS(2401), + [sym_bang] = ACTIONS(1069), + }, + [565] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1520), + [sym_boolean_literal] = STATE(1520), + [sym__string_literal] = STATE(1520), + [sym_line_string_literal] = STATE(1520), + [sym_multi_line_string_literal] = STATE(1520), + [sym_raw_string_literal] = STATE(1520), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1520), + [sym__unary_expression] = STATE(1520), + [sym_postfix_expression] = STATE(1520), + [sym_constructor_expression] = STATE(1520), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1520), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1520), + [sym_prefix_expression] = STATE(1520), + [sym_as_expression] = STATE(1520), + [sym_selector_expression] = STATE(1520), + [sym__binary_expression] = STATE(1520), + [sym_multiplicative_expression] = STATE(1520), + [sym_additive_expression] = STATE(1520), + [sym_range_expression] = STATE(1520), + [sym_infix_expression] = STATE(1520), + [sym_nil_coalescing_expression] = STATE(1520), + [sym_check_expression] = STATE(1520), + [sym_comparison_expression] = STATE(1520), + [sym_equality_expression] = STATE(1520), + [sym_conjunction_expression] = STATE(1520), + [sym_disjunction_expression] = STATE(1520), + [sym_bitwise_operation] = STATE(1520), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1520), + [sym_await_expression] = STATE(1520), + [sym_ternary_expression] = STATE(1520), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1520), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1520), + [sym_dictionary_literal] = STATE(1520), + [sym__special_literal] = STATE(1520), + [sym__playground_literal] = STATE(1520), + [sym_lambda_literal] = STATE(1520), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1520), + [sym_key_path_expression] = STATE(1520), + [sym_key_path_string_expression] = STATE(1520), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1520), + [sym__comparison_operator] = STATE(1520), + [sym__additive_operator] = STATE(1520), + [sym__multiplicative_operator] = STATE(1520), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1520), + [sym__referenceable_operator] = STATE(1520), + [sym__eq_eq] = STATE(1520), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2403), + [sym_real_literal] = ACTIONS(2405), + [sym_integer_literal] = ACTIONS(2403), + [sym_hex_literal] = ACTIONS(2405), + [sym_oct_literal] = ACTIONS(2405), + [sym_bin_literal] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2403), + [anon_sym_GT] = ACTIONS(2403), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2403), + [anon_sym_POUNDfileID] = ACTIONS(2405), + [anon_sym_POUNDfilePath] = ACTIONS(2405), + [anon_sym_POUNDline] = ACTIONS(2405), + [anon_sym_POUNDcolumn] = ACTIONS(2405), + [anon_sym_POUNDfunction] = ACTIONS(2405), + [anon_sym_POUNDdsohandle] = ACTIONS(2405), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2403), + [anon_sym_LT_EQ] = ACTIONS(2403), + [anon_sym_GT_EQ] = ACTIONS(2403), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_SLASH] = ACTIONS(2403), + [anon_sym_PERCENT] = ACTIONS(2403), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2405), + [sym__plus_then_ws] = ACTIONS(2405), + [sym__minus_then_ws] = ACTIONS(2405), + [sym_bang] = ACTIONS(1069), + }, + [566] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2163), + [sym_boolean_literal] = STATE(2163), + [sym__string_literal] = STATE(2163), + [sym_line_string_literal] = STATE(2163), + [sym_multi_line_string_literal] = STATE(2163), + [sym_raw_string_literal] = STATE(2163), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2163), + [sym__unary_expression] = STATE(2163), + [sym_postfix_expression] = STATE(2163), + [sym_constructor_expression] = STATE(2163), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2163), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2163), + [sym_prefix_expression] = STATE(2163), + [sym_as_expression] = STATE(2163), + [sym_selector_expression] = STATE(2163), + [sym__binary_expression] = STATE(2163), + [sym_multiplicative_expression] = STATE(2163), + [sym_additive_expression] = STATE(2163), + [sym_range_expression] = STATE(2163), + [sym_infix_expression] = STATE(2163), + [sym_nil_coalescing_expression] = STATE(2163), + [sym_check_expression] = STATE(2163), + [sym_comparison_expression] = STATE(2163), + [sym_equality_expression] = STATE(2163), + [sym_conjunction_expression] = STATE(2163), + [sym_disjunction_expression] = STATE(2163), + [sym_bitwise_operation] = STATE(2163), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2163), + [sym_await_expression] = STATE(2163), + [sym_ternary_expression] = STATE(2163), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2163), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2163), + [sym_dictionary_literal] = STATE(2163), + [sym__special_literal] = STATE(2163), + [sym__playground_literal] = STATE(2163), + [sym_lambda_literal] = STATE(2163), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2163), + [sym_key_path_expression] = STATE(2163), + [sym_key_path_string_expression] = STATE(2163), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2163), + [sym__comparison_operator] = STATE(2163), + [sym__additive_operator] = STATE(2163), + [sym__multiplicative_operator] = STATE(2163), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2163), + [sym__referenceable_operator] = STATE(2163), + [sym__eq_eq] = STATE(2163), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2407), + [sym_real_literal] = ACTIONS(2409), + [sym_integer_literal] = ACTIONS(2407), + [sym_hex_literal] = ACTIONS(2409), + [sym_oct_literal] = ACTIONS(2409), + [sym_bin_literal] = ACTIONS(2409), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2407), + [anon_sym_GT] = ACTIONS(2407), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2407), + [anon_sym_POUNDfileID] = ACTIONS(2409), + [anon_sym_POUNDfilePath] = ACTIONS(2409), + [anon_sym_POUNDline] = ACTIONS(2409), + [anon_sym_POUNDcolumn] = ACTIONS(2409), + [anon_sym_POUNDfunction] = ACTIONS(2409), + [anon_sym_POUNDdsohandle] = ACTIONS(2409), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2407), + [anon_sym_LT_EQ] = ACTIONS(2407), + [anon_sym_GT_EQ] = ACTIONS(2407), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_SLASH] = ACTIONS(2407), + [anon_sym_PERCENT] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2409), + [sym__plus_then_ws] = ACTIONS(2409), + [sym__minus_then_ws] = ACTIONS(2409), + [sym_bang] = ACTIONS(1069), + }, + [567] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym__string_literal] = STATE(1741), + [sym_line_string_literal] = STATE(1741), + [sym_multi_line_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1741), + [sym__unary_expression] = STATE(1741), + [sym_postfix_expression] = STATE(1741), + [sym_constructor_expression] = STATE(1741), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1741), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1741), + [sym_prefix_expression] = STATE(1741), + [sym_as_expression] = STATE(1741), + [sym_selector_expression] = STATE(1741), + [sym__binary_expression] = STATE(1741), + [sym_multiplicative_expression] = STATE(1741), + [sym_additive_expression] = STATE(1741), + [sym_range_expression] = STATE(1741), + [sym_infix_expression] = STATE(1741), + [sym_nil_coalescing_expression] = STATE(1741), + [sym_check_expression] = STATE(1741), + [sym_comparison_expression] = STATE(1741), + [sym_equality_expression] = STATE(1741), + [sym_conjunction_expression] = STATE(1741), + [sym_disjunction_expression] = STATE(1741), + [sym_bitwise_operation] = STATE(1741), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1741), + [sym_await_expression] = STATE(1741), + [sym_ternary_expression] = STATE(1741), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1741), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1741), + [sym_dictionary_literal] = STATE(1741), + [sym__special_literal] = STATE(1741), + [sym__playground_literal] = STATE(1741), + [sym_lambda_literal] = STATE(1741), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1741), + [sym_key_path_expression] = STATE(1741), + [sym_key_path_string_expression] = STATE(1741), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1741), + [sym__comparison_operator] = STATE(1741), + [sym__additive_operator] = STATE(1741), + [sym__multiplicative_operator] = STATE(1741), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1741), + [sym__referenceable_operator] = STATE(1741), + [sym__eq_eq] = STATE(1741), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2411), + [sym_real_literal] = ACTIONS(2413), + [sym_integer_literal] = ACTIONS(2411), + [sym_hex_literal] = ACTIONS(2413), + [sym_oct_literal] = ACTIONS(2413), + [sym_bin_literal] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2411), + [anon_sym_GT] = ACTIONS(2411), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2411), + [anon_sym_POUNDfileID] = ACTIONS(2413), + [anon_sym_POUNDfilePath] = ACTIONS(2413), + [anon_sym_POUNDline] = ACTIONS(2413), + [anon_sym_POUNDcolumn] = ACTIONS(2413), + [anon_sym_POUNDfunction] = ACTIONS(2413), + [anon_sym_POUNDdsohandle] = ACTIONS(2413), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2411), + [anon_sym_LT_EQ] = ACTIONS(2411), + [anon_sym_GT_EQ] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2411), + [anon_sym_SLASH] = ACTIONS(2411), + [anon_sym_PERCENT] = ACTIONS(2411), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2413), + [sym__plus_then_ws] = ACTIONS(2413), + [sym__minus_then_ws] = ACTIONS(2413), + [sym_bang] = ACTIONS(1069), + }, + [568] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1768), + [sym_boolean_literal] = STATE(1768), + [sym__string_literal] = STATE(1768), + [sym_line_string_literal] = STATE(1768), + [sym_multi_line_string_literal] = STATE(1768), + [sym_raw_string_literal] = STATE(1768), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1768), + [sym__unary_expression] = STATE(1768), + [sym_postfix_expression] = STATE(1768), + [sym_constructor_expression] = STATE(1768), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1768), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1768), + [sym_prefix_expression] = STATE(1768), + [sym_as_expression] = STATE(1768), + [sym_selector_expression] = STATE(1768), + [sym__binary_expression] = STATE(1768), + [sym_multiplicative_expression] = STATE(1768), + [sym_additive_expression] = STATE(1768), + [sym_range_expression] = STATE(1768), + [sym_infix_expression] = STATE(1768), + [sym_nil_coalescing_expression] = STATE(1768), + [sym_check_expression] = STATE(1768), + [sym_comparison_expression] = STATE(1768), + [sym_equality_expression] = STATE(1768), + [sym_conjunction_expression] = STATE(1768), + [sym_disjunction_expression] = STATE(1768), + [sym_bitwise_operation] = STATE(1768), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1768), + [sym_await_expression] = STATE(1768), + [sym_ternary_expression] = STATE(1768), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1768), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1768), + [sym_dictionary_literal] = STATE(1768), + [sym__special_literal] = STATE(1768), + [sym__playground_literal] = STATE(1768), + [sym_lambda_literal] = STATE(1768), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1768), + [sym_key_path_expression] = STATE(1768), + [sym_key_path_string_expression] = STATE(1768), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1768), + [sym__comparison_operator] = STATE(1768), + [sym__additive_operator] = STATE(1768), + [sym__multiplicative_operator] = STATE(1768), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1768), + [sym__referenceable_operator] = STATE(1768), + [sym__eq_eq] = STATE(1768), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(2415), + [sym_real_literal] = ACTIONS(2417), + [sym_integer_literal] = ACTIONS(2415), + [sym_hex_literal] = ACTIONS(2417), + [sym_oct_literal] = ACTIONS(2417), + [sym_bin_literal] = ACTIONS(2417), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(2415), + [anon_sym_GT] = ACTIONS(2415), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(2415), + [anon_sym_POUNDfileID] = ACTIONS(2417), + [anon_sym_POUNDfilePath] = ACTIONS(2417), + [anon_sym_POUNDline] = ACTIONS(2417), + [anon_sym_POUNDcolumn] = ACTIONS(2417), + [anon_sym_POUNDfunction] = ACTIONS(2417), + [anon_sym_POUNDdsohandle] = ACTIONS(2417), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(2415), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2415), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2415), + [anon_sym_LT_EQ] = ACTIONS(2415), + [anon_sym_GT_EQ] = ACTIONS(2415), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2415), + [anon_sym_SLASH] = ACTIONS(2415), + [anon_sym_PERCENT] = ACTIONS(2415), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(2417), + [sym__plus_then_ws] = ACTIONS(2417), + [sym__minus_then_ws] = ACTIONS(2417), + [sym_bang] = ACTIONS(833), + }, + [569] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2161), + [sym_boolean_literal] = STATE(2161), + [sym__string_literal] = STATE(2161), + [sym_line_string_literal] = STATE(2161), + [sym_multi_line_string_literal] = STATE(2161), + [sym_raw_string_literal] = STATE(2161), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2161), + [sym__unary_expression] = STATE(2161), + [sym_postfix_expression] = STATE(2161), + [sym_constructor_expression] = STATE(2161), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2161), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2161), + [sym_prefix_expression] = STATE(2161), + [sym_as_expression] = STATE(2161), + [sym_selector_expression] = STATE(2161), + [sym__binary_expression] = STATE(2161), + [sym_multiplicative_expression] = STATE(2161), + [sym_additive_expression] = STATE(2161), + [sym_range_expression] = STATE(2161), + [sym_infix_expression] = STATE(2161), + [sym_nil_coalescing_expression] = STATE(2161), + [sym_check_expression] = STATE(2161), + [sym_comparison_expression] = STATE(2161), + [sym_equality_expression] = STATE(2161), + [sym_conjunction_expression] = STATE(2161), + [sym_disjunction_expression] = STATE(2161), + [sym_bitwise_operation] = STATE(2161), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2161), + [sym_await_expression] = STATE(2161), + [sym_ternary_expression] = STATE(2161), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2161), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2161), + [sym_dictionary_literal] = STATE(2161), + [sym__special_literal] = STATE(2161), + [sym__playground_literal] = STATE(2161), + [sym_lambda_literal] = STATE(2161), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2161), + [sym_key_path_expression] = STATE(2161), + [sym_key_path_string_expression] = STATE(2161), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2161), + [sym__comparison_operator] = STATE(2161), + [sym__additive_operator] = STATE(2161), + [sym__multiplicative_operator] = STATE(2161), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2161), + [sym__referenceable_operator] = STATE(2161), + [sym__eq_eq] = STATE(2161), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2419), + [sym_real_literal] = ACTIONS(2421), + [sym_integer_literal] = ACTIONS(2419), + [sym_hex_literal] = ACTIONS(2421), + [sym_oct_literal] = ACTIONS(2421), + [sym_bin_literal] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2419), + [anon_sym_GT] = ACTIONS(2419), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2419), + [anon_sym_POUNDfileID] = ACTIONS(2421), + [anon_sym_POUNDfilePath] = ACTIONS(2421), + [anon_sym_POUNDline] = ACTIONS(2421), + [anon_sym_POUNDcolumn] = ACTIONS(2421), + [anon_sym_POUNDfunction] = ACTIONS(2421), + [anon_sym_POUNDdsohandle] = ACTIONS(2421), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2419), + [anon_sym_LT_EQ] = ACTIONS(2419), + [anon_sym_GT_EQ] = ACTIONS(2419), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_SLASH] = ACTIONS(2419), + [anon_sym_PERCENT] = ACTIONS(2419), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2421), + [sym__plus_then_ws] = ACTIONS(2421), + [sym__minus_then_ws] = ACTIONS(2421), + [sym_bang] = ACTIONS(1069), + }, + [570] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1740), + [sym_boolean_literal] = STATE(1740), + [sym__string_literal] = STATE(1740), + [sym_line_string_literal] = STATE(1740), + [sym_multi_line_string_literal] = STATE(1740), + [sym_raw_string_literal] = STATE(1740), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1740), + [sym__unary_expression] = STATE(1740), + [sym_postfix_expression] = STATE(1740), + [sym_constructor_expression] = STATE(1740), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1740), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1740), + [sym_prefix_expression] = STATE(1740), + [sym_as_expression] = STATE(1740), + [sym_selector_expression] = STATE(1740), + [sym__binary_expression] = STATE(1740), + [sym_multiplicative_expression] = STATE(1740), + [sym_additive_expression] = STATE(1740), + [sym_range_expression] = STATE(1740), + [sym_infix_expression] = STATE(1740), + [sym_nil_coalescing_expression] = STATE(1740), + [sym_check_expression] = STATE(1740), + [sym_comparison_expression] = STATE(1740), + [sym_equality_expression] = STATE(1740), + [sym_conjunction_expression] = STATE(1740), + [sym_disjunction_expression] = STATE(1740), + [sym_bitwise_operation] = STATE(1740), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1740), + [sym_await_expression] = STATE(1740), + [sym_ternary_expression] = STATE(1740), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1740), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1740), + [sym_dictionary_literal] = STATE(1740), + [sym__special_literal] = STATE(1740), + [sym__playground_literal] = STATE(1740), + [sym_lambda_literal] = STATE(1740), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1740), + [sym_key_path_expression] = STATE(1740), + [sym_key_path_string_expression] = STATE(1740), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1740), + [sym__comparison_operator] = STATE(1740), + [sym__additive_operator] = STATE(1740), + [sym__multiplicative_operator] = STATE(1740), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1740), + [sym__referenceable_operator] = STATE(1740), + [sym__eq_eq] = STATE(1740), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2423), + [sym_real_literal] = ACTIONS(2425), + [sym_integer_literal] = ACTIONS(2423), + [sym_hex_literal] = ACTIONS(2425), + [sym_oct_literal] = ACTIONS(2425), + [sym_bin_literal] = ACTIONS(2425), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2423), + [anon_sym_GT] = ACTIONS(2423), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2423), + [anon_sym_POUNDfileID] = ACTIONS(2425), + [anon_sym_POUNDfilePath] = ACTIONS(2425), + [anon_sym_POUNDline] = ACTIONS(2425), + [anon_sym_POUNDcolumn] = ACTIONS(2425), + [anon_sym_POUNDfunction] = ACTIONS(2425), + [anon_sym_POUNDdsohandle] = ACTIONS(2425), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2423), + [anon_sym_LT_EQ] = ACTIONS(2423), + [anon_sym_GT_EQ] = ACTIONS(2423), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_PERCENT] = ACTIONS(2423), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2425), + [sym__plus_then_ws] = ACTIONS(2425), + [sym__minus_then_ws] = ACTIONS(2425), + [sym_bang] = ACTIONS(1069), + }, + [571] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1739), + [sym_boolean_literal] = STATE(1739), + [sym__string_literal] = STATE(1739), + [sym_line_string_literal] = STATE(1739), + [sym_multi_line_string_literal] = STATE(1739), + [sym_raw_string_literal] = STATE(1739), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1739), + [sym__unary_expression] = STATE(1739), + [sym_postfix_expression] = STATE(1739), + [sym_constructor_expression] = STATE(1739), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1739), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1739), + [sym_prefix_expression] = STATE(1739), + [sym_as_expression] = STATE(1739), + [sym_selector_expression] = STATE(1739), + [sym__binary_expression] = STATE(1739), + [sym_multiplicative_expression] = STATE(1739), + [sym_additive_expression] = STATE(1739), + [sym_range_expression] = STATE(1739), + [sym_infix_expression] = STATE(1739), + [sym_nil_coalescing_expression] = STATE(1739), + [sym_check_expression] = STATE(1739), + [sym_comparison_expression] = STATE(1739), + [sym_equality_expression] = STATE(1739), + [sym_conjunction_expression] = STATE(1739), + [sym_disjunction_expression] = STATE(1739), + [sym_bitwise_operation] = STATE(1739), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1739), + [sym_await_expression] = STATE(1739), + [sym_ternary_expression] = STATE(1739), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1739), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1739), + [sym_dictionary_literal] = STATE(1739), + [sym__special_literal] = STATE(1739), + [sym__playground_literal] = STATE(1739), + [sym_lambda_literal] = STATE(1739), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1739), + [sym_key_path_expression] = STATE(1739), + [sym_key_path_string_expression] = STATE(1739), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1739), + [sym__comparison_operator] = STATE(1739), + [sym__additive_operator] = STATE(1739), + [sym__multiplicative_operator] = STATE(1739), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1739), + [sym__referenceable_operator] = STATE(1739), + [sym__eq_eq] = STATE(1739), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2427), + [sym_real_literal] = ACTIONS(2429), + [sym_integer_literal] = ACTIONS(2427), + [sym_hex_literal] = ACTIONS(2429), + [sym_oct_literal] = ACTIONS(2429), + [sym_bin_literal] = ACTIONS(2429), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2427), + [anon_sym_GT] = ACTIONS(2427), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2427), + [anon_sym_POUNDfileID] = ACTIONS(2429), + [anon_sym_POUNDfilePath] = ACTIONS(2429), + [anon_sym_POUNDline] = ACTIONS(2429), + [anon_sym_POUNDcolumn] = ACTIONS(2429), + [anon_sym_POUNDfunction] = ACTIONS(2429), + [anon_sym_POUNDdsohandle] = ACTIONS(2429), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2427), + [anon_sym_LT_EQ] = ACTIONS(2427), + [anon_sym_GT_EQ] = ACTIONS(2427), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_SLASH] = ACTIONS(2427), + [anon_sym_PERCENT] = ACTIONS(2427), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2429), + [sym__plus_then_ws] = ACTIONS(2429), + [sym__minus_then_ws] = ACTIONS(2429), + [sym_bang] = ACTIONS(1069), + }, + [572] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1738), + [sym_boolean_literal] = STATE(1738), + [sym__string_literal] = STATE(1738), + [sym_line_string_literal] = STATE(1738), + [sym_multi_line_string_literal] = STATE(1738), + [sym_raw_string_literal] = STATE(1738), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1738), + [sym__unary_expression] = STATE(1738), + [sym_postfix_expression] = STATE(1738), + [sym_constructor_expression] = STATE(1738), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1738), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1738), + [sym_prefix_expression] = STATE(1738), + [sym_as_expression] = STATE(1738), + [sym_selector_expression] = STATE(1738), + [sym__binary_expression] = STATE(1738), + [sym_multiplicative_expression] = STATE(1738), + [sym_additive_expression] = STATE(1738), + [sym_range_expression] = STATE(1738), + [sym_infix_expression] = STATE(1738), + [sym_nil_coalescing_expression] = STATE(1738), + [sym_check_expression] = STATE(1738), + [sym_comparison_expression] = STATE(1738), + [sym_equality_expression] = STATE(1738), + [sym_conjunction_expression] = STATE(1738), + [sym_disjunction_expression] = STATE(1738), + [sym_bitwise_operation] = STATE(1738), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1738), + [sym_await_expression] = STATE(1738), + [sym_ternary_expression] = STATE(1738), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1738), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1738), + [sym_dictionary_literal] = STATE(1738), + [sym__special_literal] = STATE(1738), + [sym__playground_literal] = STATE(1738), + [sym_lambda_literal] = STATE(1738), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1738), + [sym_key_path_expression] = STATE(1738), + [sym_key_path_string_expression] = STATE(1738), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1738), + [sym__comparison_operator] = STATE(1738), + [sym__additive_operator] = STATE(1738), + [sym__multiplicative_operator] = STATE(1738), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1738), + [sym__referenceable_operator] = STATE(1738), + [sym__eq_eq] = STATE(1738), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2431), + [sym_real_literal] = ACTIONS(2433), + [sym_integer_literal] = ACTIONS(2431), + [sym_hex_literal] = ACTIONS(2433), + [sym_oct_literal] = ACTIONS(2433), + [sym_bin_literal] = ACTIONS(2433), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_GT] = ACTIONS(2431), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2431), + [anon_sym_POUNDfileID] = ACTIONS(2433), + [anon_sym_POUNDfilePath] = ACTIONS(2433), + [anon_sym_POUNDline] = ACTIONS(2433), + [anon_sym_POUNDcolumn] = ACTIONS(2433), + [anon_sym_POUNDfunction] = ACTIONS(2433), + [anon_sym_POUNDdsohandle] = ACTIONS(2433), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2431), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2431), + [anon_sym_SLASH] = ACTIONS(2431), + [anon_sym_PERCENT] = ACTIONS(2431), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2433), + [sym__plus_then_ws] = ACTIONS(2433), + [sym__minus_then_ws] = ACTIONS(2433), + [sym_bang] = ACTIONS(1069), + }, + [573] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2160), + [sym_boolean_literal] = STATE(2160), + [sym__string_literal] = STATE(2160), + [sym_line_string_literal] = STATE(2160), + [sym_multi_line_string_literal] = STATE(2160), + [sym_raw_string_literal] = STATE(2160), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2160), + [sym__unary_expression] = STATE(2160), + [sym_postfix_expression] = STATE(2160), + [sym_constructor_expression] = STATE(2160), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2160), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2160), + [sym_prefix_expression] = STATE(2160), + [sym_as_expression] = STATE(2160), + [sym_selector_expression] = STATE(2160), + [sym__binary_expression] = STATE(2160), + [sym_multiplicative_expression] = STATE(2160), + [sym_additive_expression] = STATE(2160), + [sym_range_expression] = STATE(2160), + [sym_infix_expression] = STATE(2160), + [sym_nil_coalescing_expression] = STATE(2160), + [sym_check_expression] = STATE(2160), + [sym_comparison_expression] = STATE(2160), + [sym_equality_expression] = STATE(2160), + [sym_conjunction_expression] = STATE(2160), + [sym_disjunction_expression] = STATE(2160), + [sym_bitwise_operation] = STATE(2160), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2160), + [sym_await_expression] = STATE(2160), + [sym_ternary_expression] = STATE(2160), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2160), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2160), + [sym_dictionary_literal] = STATE(2160), + [sym__special_literal] = STATE(2160), + [sym__playground_literal] = STATE(2160), + [sym_lambda_literal] = STATE(2160), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2160), + [sym_key_path_expression] = STATE(2160), + [sym_key_path_string_expression] = STATE(2160), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2160), + [sym__comparison_operator] = STATE(2160), + [sym__additive_operator] = STATE(2160), + [sym__multiplicative_operator] = STATE(2160), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2160), + [sym__referenceable_operator] = STATE(2160), + [sym__eq_eq] = STATE(2160), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2435), + [sym_real_literal] = ACTIONS(2437), + [sym_integer_literal] = ACTIONS(2435), + [sym_hex_literal] = ACTIONS(2437), + [sym_oct_literal] = ACTIONS(2437), + [sym_bin_literal] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2435), + [anon_sym_GT] = ACTIONS(2435), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2435), + [anon_sym_POUNDfileID] = ACTIONS(2437), + [anon_sym_POUNDfilePath] = ACTIONS(2437), + [anon_sym_POUNDline] = ACTIONS(2437), + [anon_sym_POUNDcolumn] = ACTIONS(2437), + [anon_sym_POUNDfunction] = ACTIONS(2437), + [anon_sym_POUNDdsohandle] = ACTIONS(2437), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2435), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_SLASH] = ACTIONS(2435), + [anon_sym_PERCENT] = ACTIONS(2435), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2437), + [sym__plus_then_ws] = ACTIONS(2437), + [sym__minus_then_ws] = ACTIONS(2437), + [sym_bang] = ACTIONS(1069), + }, + [574] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2184), + [sym_boolean_literal] = STATE(2184), + [sym__string_literal] = STATE(2184), + [sym_line_string_literal] = STATE(2184), + [sym_multi_line_string_literal] = STATE(2184), + [sym_raw_string_literal] = STATE(2184), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2184), + [sym__unary_expression] = STATE(2184), + [sym_postfix_expression] = STATE(2184), + [sym_constructor_expression] = STATE(2184), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2184), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2184), + [sym_prefix_expression] = STATE(2184), + [sym_as_expression] = STATE(2184), + [sym_selector_expression] = STATE(2184), + [sym__binary_expression] = STATE(2184), + [sym_multiplicative_expression] = STATE(2184), + [sym_additive_expression] = STATE(2184), + [sym_range_expression] = STATE(2184), + [sym_infix_expression] = STATE(2184), + [sym_nil_coalescing_expression] = STATE(2184), + [sym_check_expression] = STATE(2184), + [sym_comparison_expression] = STATE(2184), + [sym_equality_expression] = STATE(2184), + [sym_conjunction_expression] = STATE(2184), + [sym_disjunction_expression] = STATE(2184), + [sym_bitwise_operation] = STATE(2184), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2184), + [sym_await_expression] = STATE(2184), + [sym_ternary_expression] = STATE(2184), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2184), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2184), + [sym_dictionary_literal] = STATE(2184), + [sym__special_literal] = STATE(2184), + [sym__playground_literal] = STATE(2184), + [sym_lambda_literal] = STATE(2184), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2184), + [sym_key_path_expression] = STATE(2184), + [sym_key_path_string_expression] = STATE(2184), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2184), + [sym__comparison_operator] = STATE(2184), + [sym__additive_operator] = STATE(2184), + [sym__multiplicative_operator] = STATE(2184), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2184), + [sym__referenceable_operator] = STATE(2184), + [sym__eq_eq] = STATE(2184), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(2439), + [sym_real_literal] = ACTIONS(2441), + [sym_integer_literal] = ACTIONS(2439), + [sym_hex_literal] = ACTIONS(2441), + [sym_oct_literal] = ACTIONS(2441), + [sym_bin_literal] = ACTIONS(2441), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(2439), + [anon_sym_GT] = ACTIONS(2439), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(2439), + [anon_sym_POUNDfileID] = ACTIONS(2441), + [anon_sym_POUNDfilePath] = ACTIONS(2441), + [anon_sym_POUNDline] = ACTIONS(2441), + [anon_sym_POUNDcolumn] = ACTIONS(2441), + [anon_sym_POUNDfunction] = ACTIONS(2441), + [anon_sym_POUNDdsohandle] = ACTIONS(2441), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(2439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2439), + [anon_sym_LT_EQ] = ACTIONS(2439), + [anon_sym_GT_EQ] = ACTIONS(2439), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2439), + [anon_sym_SLASH] = ACTIONS(2439), + [anon_sym_PERCENT] = ACTIONS(2439), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(2441), + [sym__plus_then_ws] = ACTIONS(2441), + [sym__minus_then_ws] = ACTIONS(2441), + [sym_bang] = ACTIONS(833), + }, + [575] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2197), + [sym_boolean_literal] = STATE(2197), + [sym__string_literal] = STATE(2197), + [sym_line_string_literal] = STATE(2197), + [sym_multi_line_string_literal] = STATE(2197), + [sym_raw_string_literal] = STATE(2197), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2197), + [sym__unary_expression] = STATE(2197), + [sym_postfix_expression] = STATE(2197), + [sym_constructor_expression] = STATE(2197), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2197), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2197), + [sym_prefix_expression] = STATE(2197), + [sym_as_expression] = STATE(2197), + [sym_selector_expression] = STATE(2197), + [sym__binary_expression] = STATE(2197), + [sym_multiplicative_expression] = STATE(2197), + [sym_additive_expression] = STATE(2197), + [sym_range_expression] = STATE(2197), + [sym_infix_expression] = STATE(2197), + [sym_nil_coalescing_expression] = STATE(2197), + [sym_check_expression] = STATE(2197), + [sym_comparison_expression] = STATE(2197), + [sym_equality_expression] = STATE(2197), + [sym_conjunction_expression] = STATE(2197), + [sym_disjunction_expression] = STATE(2197), + [sym_bitwise_operation] = STATE(2197), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2197), + [sym_await_expression] = STATE(2197), + [sym_ternary_expression] = STATE(2197), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2197), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2197), + [sym_dictionary_literal] = STATE(2197), + [sym__special_literal] = STATE(2197), + [sym__playground_literal] = STATE(2197), + [sym_lambda_literal] = STATE(2197), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2197), + [sym_key_path_expression] = STATE(2197), + [sym_key_path_string_expression] = STATE(2197), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2197), + [sym__comparison_operator] = STATE(2197), + [sym__additive_operator] = STATE(2197), + [sym__multiplicative_operator] = STATE(2197), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2197), + [sym__referenceable_operator] = STATE(2197), + [sym__eq_eq] = STATE(2197), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(2443), + [sym_real_literal] = ACTIONS(2445), + [sym_integer_literal] = ACTIONS(2443), + [sym_hex_literal] = ACTIONS(2445), + [sym_oct_literal] = ACTIONS(2445), + [sym_bin_literal] = ACTIONS(2445), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(2443), + [anon_sym_GT] = ACTIONS(2443), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(2443), + [anon_sym_POUNDfileID] = ACTIONS(2445), + [anon_sym_POUNDfilePath] = ACTIONS(2445), + [anon_sym_POUNDline] = ACTIONS(2445), + [anon_sym_POUNDcolumn] = ACTIONS(2445), + [anon_sym_POUNDfunction] = ACTIONS(2445), + [anon_sym_POUNDdsohandle] = ACTIONS(2445), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(2443), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2443), + [anon_sym_SLASH] = ACTIONS(2443), + [anon_sym_PERCENT] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(2445), + [sym__plus_then_ws] = ACTIONS(2445), + [sym__minus_then_ws] = ACTIONS(2445), + [sym_bang] = ACTIONS(833), + }, + [576] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1977), + [sym_boolean_literal] = STATE(1977), + [sym__string_literal] = STATE(1977), + [sym_line_string_literal] = STATE(1977), + [sym_multi_line_string_literal] = STATE(1977), + [sym_raw_string_literal] = STATE(1977), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1977), + [sym__unary_expression] = STATE(1977), + [sym_postfix_expression] = STATE(1977), + [sym_constructor_expression] = STATE(1977), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1977), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1977), + [sym_prefix_expression] = STATE(1977), + [sym_as_expression] = STATE(1977), + [sym_selector_expression] = STATE(1977), + [sym__binary_expression] = STATE(1977), + [sym_multiplicative_expression] = STATE(1977), + [sym_additive_expression] = STATE(1977), + [sym_range_expression] = STATE(1977), + [sym_infix_expression] = STATE(1977), + [sym_nil_coalescing_expression] = STATE(1977), + [sym_check_expression] = STATE(1977), + [sym_comparison_expression] = STATE(1977), + [sym_equality_expression] = STATE(1977), + [sym_conjunction_expression] = STATE(1977), + [sym_disjunction_expression] = STATE(1977), + [sym_bitwise_operation] = STATE(1977), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1977), + [sym_await_expression] = STATE(1977), + [sym_ternary_expression] = STATE(1977), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1977), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1977), + [sym_dictionary_literal] = STATE(1977), + [sym__special_literal] = STATE(1977), + [sym__playground_literal] = STATE(1977), + [sym_lambda_literal] = STATE(1977), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1977), + [sym_key_path_expression] = STATE(1977), + [sym_key_path_string_expression] = STATE(1977), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1977), + [sym__comparison_operator] = STATE(1977), + [sym__additive_operator] = STATE(1977), + [sym__multiplicative_operator] = STATE(1977), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1977), + [sym__referenceable_operator] = STATE(1977), + [sym__eq_eq] = STATE(1977), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2447), + [sym_real_literal] = ACTIONS(2449), + [sym_integer_literal] = ACTIONS(2447), + [sym_hex_literal] = ACTIONS(2449), + [sym_oct_literal] = ACTIONS(2449), + [sym_bin_literal] = ACTIONS(2449), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2447), + [anon_sym_GT] = ACTIONS(2447), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2447), + [anon_sym_POUNDfileID] = ACTIONS(2449), + [anon_sym_POUNDfilePath] = ACTIONS(2449), + [anon_sym_POUNDline] = ACTIONS(2449), + [anon_sym_POUNDcolumn] = ACTIONS(2449), + [anon_sym_POUNDfunction] = ACTIONS(2449), + [anon_sym_POUNDdsohandle] = ACTIONS(2449), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2447), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2447), + [anon_sym_SLASH] = ACTIONS(2447), + [anon_sym_PERCENT] = ACTIONS(2447), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2449), + [sym__plus_then_ws] = ACTIONS(2449), + [sym__minus_then_ws] = ACTIONS(2449), + [sym_bang] = ACTIONS(1069), + }, + [577] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1669), + [sym_boolean_literal] = STATE(1669), + [sym__string_literal] = STATE(1669), + [sym_line_string_literal] = STATE(1669), + [sym_multi_line_string_literal] = STATE(1669), + [sym_raw_string_literal] = STATE(1669), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1669), + [sym__unary_expression] = STATE(1669), + [sym_postfix_expression] = STATE(1669), + [sym_constructor_expression] = STATE(1669), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1669), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1669), + [sym_prefix_expression] = STATE(1669), + [sym_as_expression] = STATE(1669), + [sym_selector_expression] = STATE(1669), + [sym__binary_expression] = STATE(1669), + [sym_multiplicative_expression] = STATE(1669), + [sym_additive_expression] = STATE(1669), + [sym_range_expression] = STATE(1669), + [sym_infix_expression] = STATE(1669), + [sym_nil_coalescing_expression] = STATE(1669), + [sym_check_expression] = STATE(1669), + [sym_comparison_expression] = STATE(1669), + [sym_equality_expression] = STATE(1669), + [sym_conjunction_expression] = STATE(1669), + [sym_disjunction_expression] = STATE(1669), + [sym_bitwise_operation] = STATE(1669), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1669), + [sym_await_expression] = STATE(1669), + [sym_ternary_expression] = STATE(1669), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1669), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1669), + [sym_dictionary_literal] = STATE(1669), + [sym__special_literal] = STATE(1669), + [sym__playground_literal] = STATE(1669), + [sym_lambda_literal] = STATE(1669), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1669), + [sym_key_path_expression] = STATE(1669), + [sym_key_path_string_expression] = STATE(1669), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1669), + [sym__comparison_operator] = STATE(1669), + [sym__additive_operator] = STATE(1669), + [sym__multiplicative_operator] = STATE(1669), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1669), + [sym__referenceable_operator] = STATE(1669), + [sym__eq_eq] = STATE(1669), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2451), + [sym_real_literal] = ACTIONS(2453), + [sym_integer_literal] = ACTIONS(2451), + [sym_hex_literal] = ACTIONS(2453), + [sym_oct_literal] = ACTIONS(2453), + [sym_bin_literal] = ACTIONS(2453), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2451), + [anon_sym_GT] = ACTIONS(2451), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2451), + [anon_sym_POUNDfileID] = ACTIONS(2453), + [anon_sym_POUNDfilePath] = ACTIONS(2453), + [anon_sym_POUNDline] = ACTIONS(2453), + [anon_sym_POUNDcolumn] = ACTIONS(2453), + [anon_sym_POUNDfunction] = ACTIONS(2453), + [anon_sym_POUNDdsohandle] = ACTIONS(2453), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2451), + [anon_sym_LT_EQ] = ACTIONS(2451), + [anon_sym_GT_EQ] = ACTIONS(2451), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2451), + [anon_sym_SLASH] = ACTIONS(2451), + [anon_sym_PERCENT] = ACTIONS(2451), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2453), + [sym__plus_then_ws] = ACTIONS(2453), + [sym__minus_then_ws] = ACTIONS(2453), + [sym_bang] = ACTIONS(1069), + }, + [578] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1668), + [sym_boolean_literal] = STATE(1668), + [sym__string_literal] = STATE(1668), + [sym_line_string_literal] = STATE(1668), + [sym_multi_line_string_literal] = STATE(1668), + [sym_raw_string_literal] = STATE(1668), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1668), + [sym__unary_expression] = STATE(1668), + [sym_postfix_expression] = STATE(1668), + [sym_constructor_expression] = STATE(1668), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1668), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1668), + [sym_prefix_expression] = STATE(1668), + [sym_as_expression] = STATE(1668), + [sym_selector_expression] = STATE(1668), + [sym__binary_expression] = STATE(1668), + [sym_multiplicative_expression] = STATE(1668), + [sym_additive_expression] = STATE(1668), + [sym_range_expression] = STATE(1668), + [sym_infix_expression] = STATE(1668), + [sym_nil_coalescing_expression] = STATE(1668), + [sym_check_expression] = STATE(1668), + [sym_comparison_expression] = STATE(1668), + [sym_equality_expression] = STATE(1668), + [sym_conjunction_expression] = STATE(1668), + [sym_disjunction_expression] = STATE(1668), + [sym_bitwise_operation] = STATE(1668), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1668), + [sym_await_expression] = STATE(1668), + [sym_ternary_expression] = STATE(1668), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1668), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1668), + [sym_dictionary_literal] = STATE(1668), + [sym__special_literal] = STATE(1668), + [sym__playground_literal] = STATE(1668), + [sym_lambda_literal] = STATE(1668), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1668), + [sym_key_path_expression] = STATE(1668), + [sym_key_path_string_expression] = STATE(1668), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1668), + [sym__comparison_operator] = STATE(1668), + [sym__additive_operator] = STATE(1668), + [sym__multiplicative_operator] = STATE(1668), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1668), + [sym__referenceable_operator] = STATE(1668), + [sym__eq_eq] = STATE(1668), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2455), + [sym_real_literal] = ACTIONS(2457), + [sym_integer_literal] = ACTIONS(2455), + [sym_hex_literal] = ACTIONS(2457), + [sym_oct_literal] = ACTIONS(2457), + [sym_bin_literal] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2455), + [anon_sym_GT] = ACTIONS(2455), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2455), + [anon_sym_POUNDfileID] = ACTIONS(2457), + [anon_sym_POUNDfilePath] = ACTIONS(2457), + [anon_sym_POUNDline] = ACTIONS(2457), + [anon_sym_POUNDcolumn] = ACTIONS(2457), + [anon_sym_POUNDfunction] = ACTIONS(2457), + [anon_sym_POUNDdsohandle] = ACTIONS(2457), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2455), + [anon_sym_LT_EQ] = ACTIONS(2455), + [anon_sym_GT_EQ] = ACTIONS(2455), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2455), + [anon_sym_SLASH] = ACTIONS(2455), + [anon_sym_PERCENT] = ACTIONS(2455), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2457), + [sym__plus_then_ws] = ACTIONS(2457), + [sym__minus_then_ws] = ACTIONS(2457), + [sym_bang] = ACTIONS(1069), + }, + [579] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1751), + [sym_boolean_literal] = STATE(1751), + [sym__string_literal] = STATE(1751), + [sym_line_string_literal] = STATE(1751), + [sym_multi_line_string_literal] = STATE(1751), + [sym_raw_string_literal] = STATE(1751), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1751), + [sym__unary_expression] = STATE(1751), + [sym_postfix_expression] = STATE(1751), + [sym_constructor_expression] = STATE(1751), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1751), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1751), + [sym_prefix_expression] = STATE(1751), + [sym_as_expression] = STATE(1751), + [sym_selector_expression] = STATE(1751), + [sym__binary_expression] = STATE(1751), + [sym_multiplicative_expression] = STATE(1751), + [sym_additive_expression] = STATE(1751), + [sym_range_expression] = STATE(1751), + [sym_infix_expression] = STATE(1751), + [sym_nil_coalescing_expression] = STATE(1751), + [sym_check_expression] = STATE(1751), + [sym_comparison_expression] = STATE(1751), + [sym_equality_expression] = STATE(1751), + [sym_conjunction_expression] = STATE(1751), + [sym_disjunction_expression] = STATE(1751), + [sym_bitwise_operation] = STATE(1751), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1751), + [sym_await_expression] = STATE(1751), + [sym_ternary_expression] = STATE(1751), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1751), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1751), + [sym_dictionary_literal] = STATE(1751), + [sym__special_literal] = STATE(1751), + [sym__playground_literal] = STATE(1751), + [sym_lambda_literal] = STATE(1751), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1751), + [sym_key_path_expression] = STATE(1751), + [sym_key_path_string_expression] = STATE(1751), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1751), + [sym__comparison_operator] = STATE(1751), + [sym__additive_operator] = STATE(1751), + [sym__multiplicative_operator] = STATE(1751), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1751), + [sym__referenceable_operator] = STATE(1751), + [sym__eq_eq] = STATE(1751), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2459), + [sym_real_literal] = ACTIONS(2461), + [sym_integer_literal] = ACTIONS(2459), + [sym_hex_literal] = ACTIONS(2461), + [sym_oct_literal] = ACTIONS(2461), + [sym_bin_literal] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2459), + [anon_sym_GT] = ACTIONS(2459), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2459), + [anon_sym_POUNDfileID] = ACTIONS(2461), + [anon_sym_POUNDfilePath] = ACTIONS(2461), + [anon_sym_POUNDline] = ACTIONS(2461), + [anon_sym_POUNDcolumn] = ACTIONS(2461), + [anon_sym_POUNDfunction] = ACTIONS(2461), + [anon_sym_POUNDdsohandle] = ACTIONS(2461), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2459), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2459), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2459), + [anon_sym_LT_EQ] = ACTIONS(2459), + [anon_sym_GT_EQ] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2459), + [anon_sym_SLASH] = ACTIONS(2459), + [anon_sym_PERCENT] = ACTIONS(2459), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2461), + [sym__plus_then_ws] = ACTIONS(2461), + [sym__minus_then_ws] = ACTIONS(2461), + [sym_bang] = ACTIONS(1069), + }, + [580] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1744), + [sym_boolean_literal] = STATE(1744), + [sym__string_literal] = STATE(1744), + [sym_line_string_literal] = STATE(1744), + [sym_multi_line_string_literal] = STATE(1744), + [sym_raw_string_literal] = STATE(1744), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1744), + [sym__unary_expression] = STATE(1744), + [sym_postfix_expression] = STATE(1744), + [sym_constructor_expression] = STATE(1744), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1744), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1744), + [sym_prefix_expression] = STATE(1744), + [sym_as_expression] = STATE(1744), + [sym_selector_expression] = STATE(1744), + [sym__binary_expression] = STATE(1744), + [sym_multiplicative_expression] = STATE(1744), + [sym_additive_expression] = STATE(1744), + [sym_range_expression] = STATE(1744), + [sym_infix_expression] = STATE(1744), + [sym_nil_coalescing_expression] = STATE(1744), + [sym_check_expression] = STATE(1744), + [sym_comparison_expression] = STATE(1744), + [sym_equality_expression] = STATE(1744), + [sym_conjunction_expression] = STATE(1744), + [sym_disjunction_expression] = STATE(1744), + [sym_bitwise_operation] = STATE(1744), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1744), + [sym_await_expression] = STATE(1744), + [sym_ternary_expression] = STATE(1744), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1744), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1744), + [sym_dictionary_literal] = STATE(1744), + [sym__special_literal] = STATE(1744), + [sym__playground_literal] = STATE(1744), + [sym_lambda_literal] = STATE(1744), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1744), + [sym_key_path_expression] = STATE(1744), + [sym_key_path_string_expression] = STATE(1744), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1744), + [sym__comparison_operator] = STATE(1744), + [sym__additive_operator] = STATE(1744), + [sym__multiplicative_operator] = STATE(1744), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1744), + [sym__referenceable_operator] = STATE(1744), + [sym__eq_eq] = STATE(1744), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2463), + [anon_sym_GT] = ACTIONS(2463), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2463), + [anon_sym_LT_EQ] = ACTIONS(2463), + [anon_sym_GT_EQ] = ACTIONS(2463), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2463), + [anon_sym_SLASH] = ACTIONS(2463), + [anon_sym_PERCENT] = ACTIONS(2463), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2465), + [sym__plus_then_ws] = ACTIONS(2465), + [sym__minus_then_ws] = ACTIONS(2465), + [sym_bang] = ACTIONS(1069), + }, + [581] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1798), + [sym_boolean_literal] = STATE(1798), + [sym__string_literal] = STATE(1798), + [sym_line_string_literal] = STATE(1798), + [sym_multi_line_string_literal] = STATE(1798), + [sym_raw_string_literal] = STATE(1798), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1798), + [sym__unary_expression] = STATE(1798), + [sym_postfix_expression] = STATE(1798), + [sym_constructor_expression] = STATE(1798), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1798), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1798), + [sym_prefix_expression] = STATE(1798), + [sym_as_expression] = STATE(1798), + [sym_selector_expression] = STATE(1798), + [sym__binary_expression] = STATE(1798), + [sym_multiplicative_expression] = STATE(1798), + [sym_additive_expression] = STATE(1798), + [sym_range_expression] = STATE(1798), + [sym_infix_expression] = STATE(1798), + [sym_nil_coalescing_expression] = STATE(1798), + [sym_check_expression] = STATE(1798), + [sym_comparison_expression] = STATE(1798), + [sym_equality_expression] = STATE(1798), + [sym_conjunction_expression] = STATE(1798), + [sym_disjunction_expression] = STATE(1798), + [sym_bitwise_operation] = STATE(1798), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1798), + [sym_await_expression] = STATE(1798), + [sym_ternary_expression] = STATE(1798), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1798), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1798), + [sym_dictionary_literal] = STATE(1798), + [sym__special_literal] = STATE(1798), + [sym__playground_literal] = STATE(1798), + [sym_lambda_literal] = STATE(1798), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1798), + [sym_key_path_expression] = STATE(1798), + [sym_key_path_string_expression] = STATE(1798), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1798), + [sym__comparison_operator] = STATE(1798), + [sym__additive_operator] = STATE(1798), + [sym__multiplicative_operator] = STATE(1798), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1798), + [sym__referenceable_operator] = STATE(1798), + [sym__eq_eq] = STATE(1798), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2467), + [anon_sym_GT] = ACTIONS(2467), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2467), + [anon_sym_LT_EQ] = ACTIONS(2467), + [anon_sym_GT_EQ] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2467), + [anon_sym_SLASH] = ACTIONS(2467), + [anon_sym_PERCENT] = ACTIONS(2467), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2469), + [sym__plus_then_ws] = ACTIONS(2469), + [sym__minus_then_ws] = ACTIONS(2469), + [sym_bang] = ACTIONS(1069), + }, + [582] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2094), + [sym_boolean_literal] = STATE(2094), + [sym__string_literal] = STATE(2094), + [sym_line_string_literal] = STATE(2094), + [sym_multi_line_string_literal] = STATE(2094), + [sym_raw_string_literal] = STATE(2094), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2094), + [sym__unary_expression] = STATE(2094), + [sym_postfix_expression] = STATE(2094), + [sym_constructor_expression] = STATE(2094), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2094), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2094), + [sym_prefix_expression] = STATE(2094), + [sym_as_expression] = STATE(2094), + [sym_selector_expression] = STATE(2094), + [sym__binary_expression] = STATE(2094), + [sym_multiplicative_expression] = STATE(2094), + [sym_additive_expression] = STATE(2094), + [sym_range_expression] = STATE(2094), + [sym_infix_expression] = STATE(2094), + [sym_nil_coalescing_expression] = STATE(2094), + [sym_check_expression] = STATE(2094), + [sym_comparison_expression] = STATE(2094), + [sym_equality_expression] = STATE(2094), + [sym_conjunction_expression] = STATE(2094), + [sym_disjunction_expression] = STATE(2094), + [sym_bitwise_operation] = STATE(2094), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2094), + [sym_await_expression] = STATE(2094), + [sym_ternary_expression] = STATE(2094), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2094), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2094), + [sym_dictionary_literal] = STATE(2094), + [sym__special_literal] = STATE(2094), + [sym__playground_literal] = STATE(2094), + [sym_lambda_literal] = STATE(2094), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2094), + [sym_key_path_expression] = STATE(2094), + [sym_key_path_string_expression] = STATE(2094), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2094), + [sym__comparison_operator] = STATE(2094), + [sym__additive_operator] = STATE(2094), + [sym__multiplicative_operator] = STATE(2094), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2094), + [sym__referenceable_operator] = STATE(2094), + [sym__eq_eq] = STATE(2094), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(2471), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2471), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2471), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2471), + [anon_sym_LT_EQ] = ACTIONS(2471), + [anon_sym_GT_EQ] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_SLASH] = ACTIONS(2471), + [anon_sym_PERCENT] = ACTIONS(2471), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2473), + [sym__plus_then_ws] = ACTIONS(2473), + [sym__minus_then_ws] = ACTIONS(2473), + [sym_bang] = ACTIONS(1069), + }, + [583] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1800), + [sym_boolean_literal] = STATE(1800), + [sym__string_literal] = STATE(1800), + [sym_line_string_literal] = STATE(1800), + [sym_multi_line_string_literal] = STATE(1800), + [sym_raw_string_literal] = STATE(1800), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1800), + [sym__unary_expression] = STATE(1800), + [sym_postfix_expression] = STATE(1800), + [sym_constructor_expression] = STATE(1800), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1800), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1800), + [sym_prefix_expression] = STATE(1800), + [sym_as_expression] = STATE(1800), + [sym_selector_expression] = STATE(1800), + [sym__binary_expression] = STATE(1800), + [sym_multiplicative_expression] = STATE(1800), + [sym_additive_expression] = STATE(1800), + [sym_range_expression] = STATE(1800), + [sym_infix_expression] = STATE(1800), + [sym_nil_coalescing_expression] = STATE(1800), + [sym_check_expression] = STATE(1800), + [sym_comparison_expression] = STATE(1800), + [sym_equality_expression] = STATE(1800), + [sym_conjunction_expression] = STATE(1800), + [sym_disjunction_expression] = STATE(1800), + [sym_bitwise_operation] = STATE(1800), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1800), + [sym_await_expression] = STATE(1800), + [sym_ternary_expression] = STATE(1800), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1800), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1800), + [sym_dictionary_literal] = STATE(1800), + [sym__special_literal] = STATE(1800), + [sym__playground_literal] = STATE(1800), + [sym_lambda_literal] = STATE(1800), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1800), + [sym_key_path_expression] = STATE(1800), + [sym_key_path_string_expression] = STATE(1800), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1800), + [sym__comparison_operator] = STATE(1800), + [sym__additive_operator] = STATE(1800), + [sym__multiplicative_operator] = STATE(1800), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1800), + [sym__referenceable_operator] = STATE(1800), + [sym__eq_eq] = STATE(1800), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2475), + [anon_sym_GT] = ACTIONS(2475), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2475), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2475), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2475), + [anon_sym_LT_EQ] = ACTIONS(2475), + [anon_sym_GT_EQ] = ACTIONS(2475), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2475), + [anon_sym_SLASH] = ACTIONS(2475), + [anon_sym_PERCENT] = ACTIONS(2475), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2477), + [sym__plus_then_ws] = ACTIONS(2477), + [sym__minus_then_ws] = ACTIONS(2477), + [sym_bang] = ACTIONS(1069), + }, + [584] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1723), + [sym_boolean_literal] = STATE(1723), + [sym__string_literal] = STATE(1723), + [sym_line_string_literal] = STATE(1723), + [sym_multi_line_string_literal] = STATE(1723), + [sym_raw_string_literal] = STATE(1723), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1723), + [sym__unary_expression] = STATE(1723), + [sym_postfix_expression] = STATE(1723), + [sym_constructor_expression] = STATE(1723), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1723), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1723), + [sym_prefix_expression] = STATE(1723), + [sym_as_expression] = STATE(1723), + [sym_selector_expression] = STATE(1723), + [sym__binary_expression] = STATE(1723), + [sym_multiplicative_expression] = STATE(1723), + [sym_additive_expression] = STATE(1723), + [sym_range_expression] = STATE(1723), + [sym_infix_expression] = STATE(1723), + [sym_nil_coalescing_expression] = STATE(1723), + [sym_check_expression] = STATE(1723), + [sym_comparison_expression] = STATE(1723), + [sym_equality_expression] = STATE(1723), + [sym_conjunction_expression] = STATE(1723), + [sym_disjunction_expression] = STATE(1723), + [sym_bitwise_operation] = STATE(1723), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1723), + [sym_await_expression] = STATE(1723), + [sym_ternary_expression] = STATE(1723), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1723), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1723), + [sym_dictionary_literal] = STATE(1723), + [sym__special_literal] = STATE(1723), + [sym__playground_literal] = STATE(1723), + [sym_lambda_literal] = STATE(1723), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1723), + [sym_key_path_expression] = STATE(1723), + [sym_key_path_string_expression] = STATE(1723), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1723), + [sym__additive_operator] = STATE(1723), + [sym__multiplicative_operator] = STATE(1723), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1723), + [sym__referenceable_operator] = STATE(1723), + [sym__eq_eq] = STATE(1723), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_GT] = ACTIONS(2479), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2479), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2479), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2479), + [anon_sym_LT_EQ] = ACTIONS(2479), + [anon_sym_GT_EQ] = ACTIONS(2479), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2479), + [anon_sym_SLASH] = ACTIONS(2479), + [anon_sym_PERCENT] = ACTIONS(2479), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2481), + [sym__plus_then_ws] = ACTIONS(2481), + [sym__minus_then_ws] = ACTIONS(2481), + [sym_bang] = ACTIONS(1069), + }, + [585] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1659), + [sym_boolean_literal] = STATE(1659), + [sym__string_literal] = STATE(1659), + [sym_line_string_literal] = STATE(1659), + [sym_multi_line_string_literal] = STATE(1659), + [sym_raw_string_literal] = STATE(1659), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1659), + [sym__unary_expression] = STATE(1659), + [sym_postfix_expression] = STATE(1659), + [sym_constructor_expression] = STATE(1659), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1659), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1659), + [sym_prefix_expression] = STATE(1659), + [sym_as_expression] = STATE(1659), + [sym_selector_expression] = STATE(1659), + [sym__binary_expression] = STATE(1659), + [sym_multiplicative_expression] = STATE(1659), + [sym_additive_expression] = STATE(1659), + [sym_range_expression] = STATE(1659), + [sym_infix_expression] = STATE(1659), + [sym_nil_coalescing_expression] = STATE(1659), + [sym_check_expression] = STATE(1659), + [sym_comparison_expression] = STATE(1659), + [sym_equality_expression] = STATE(1659), + [sym_conjunction_expression] = STATE(1659), + [sym_disjunction_expression] = STATE(1659), + [sym_bitwise_operation] = STATE(1659), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1659), + [sym_await_expression] = STATE(1659), + [sym_ternary_expression] = STATE(1659), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1659), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1659), + [sym_dictionary_literal] = STATE(1659), + [sym__special_literal] = STATE(1659), + [sym__playground_literal] = STATE(1659), + [sym_lambda_literal] = STATE(1659), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1659), + [sym_key_path_expression] = STATE(1659), + [sym_key_path_string_expression] = STATE(1659), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1659), + [sym__comparison_operator] = STATE(1659), + [sym__additive_operator] = STATE(1659), + [sym__multiplicative_operator] = STATE(1659), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1659), + [sym__referenceable_operator] = STATE(1659), + [sym__eq_eq] = STATE(1659), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2483), + [anon_sym_GT] = ACTIONS(2483), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2483), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2483), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2483), + [anon_sym_LT_EQ] = ACTIONS(2483), + [anon_sym_GT_EQ] = ACTIONS(2483), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2483), + [anon_sym_SLASH] = ACTIONS(2483), + [anon_sym_PERCENT] = ACTIONS(2483), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2485), + [sym__plus_then_ws] = ACTIONS(2485), + [sym__minus_then_ws] = ACTIONS(2485), + [sym_bang] = ACTIONS(1069), + }, + [586] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1743), + [sym_boolean_literal] = STATE(1743), + [sym__string_literal] = STATE(1743), + [sym_line_string_literal] = STATE(1743), + [sym_multi_line_string_literal] = STATE(1743), + [sym_raw_string_literal] = STATE(1743), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1743), + [sym__unary_expression] = STATE(1743), + [sym_postfix_expression] = STATE(1743), + [sym_constructor_expression] = STATE(1743), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1743), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1743), + [sym_prefix_expression] = STATE(1743), + [sym_as_expression] = STATE(1743), + [sym_selector_expression] = STATE(1743), + [sym__binary_expression] = STATE(1743), + [sym_multiplicative_expression] = STATE(1743), + [sym_additive_expression] = STATE(1743), + [sym_range_expression] = STATE(1743), + [sym_infix_expression] = STATE(1743), + [sym_nil_coalescing_expression] = STATE(1743), + [sym_check_expression] = STATE(1743), + [sym_comparison_expression] = STATE(1743), + [sym_equality_expression] = STATE(1743), + [sym_conjunction_expression] = STATE(1743), + [sym_disjunction_expression] = STATE(1743), + [sym_bitwise_operation] = STATE(1743), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1743), + [sym_await_expression] = STATE(1743), + [sym_ternary_expression] = STATE(1743), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1743), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1743), + [sym_dictionary_literal] = STATE(1743), + [sym__special_literal] = STATE(1743), + [sym__playground_literal] = STATE(1743), + [sym_lambda_literal] = STATE(1743), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1743), + [sym_key_path_expression] = STATE(1743), + [sym_key_path_string_expression] = STATE(1743), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1743), + [sym__comparison_operator] = STATE(1743), + [sym__additive_operator] = STATE(1743), + [sym__multiplicative_operator] = STATE(1743), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1743), + [sym__referenceable_operator] = STATE(1743), + [sym__eq_eq] = STATE(1743), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_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(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2487), + [anon_sym_GT] = ACTIONS(2487), + [sym__await_operator] = ACTIONS(1037), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2487), + [anon_sym_LT_EQ] = ACTIONS(2487), + [anon_sym_GT_EQ] = ACTIONS(2487), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2487), + [anon_sym_SLASH] = ACTIONS(2487), + [anon_sym_PERCENT] = ACTIONS(2487), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2489), + [sym__plus_then_ws] = ACTIONS(2489), + [sym__minus_then_ws] = ACTIONS(2489), + [sym_bang] = ACTIONS(1069), + }, + [587] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1161), + [sym__unary_expression] = STATE(1161), + [sym_postfix_expression] = STATE(1161), + [sym_constructor_expression] = STATE(1161), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1161), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1161), + [sym_await_expression] = STATE(1161), + [sym_ternary_expression] = STATE(1161), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1161), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1161), + [sym_key_path_expression] = STATE(1161), + [sym_key_path_string_expression] = STATE(1161), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1161), + [sym__comparison_operator] = STATE(1161), + [sym__additive_operator] = STATE(1161), + [sym__multiplicative_operator] = STATE(1161), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1161), + [sym__referenceable_operator] = STATE(1161), + [sym__eq_eq] = STATE(1161), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(2491), + [sym_real_literal] = ACTIONS(2493), + [sym_integer_literal] = ACTIONS(2491), + [sym_hex_literal] = ACTIONS(2493), + [sym_oct_literal] = ACTIONS(2493), + [sym_bin_literal] = ACTIONS(2493), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_GT] = ACTIONS(2491), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(2491), + [anon_sym_POUNDfileID] = ACTIONS(2493), + [anon_sym_POUNDfilePath] = ACTIONS(2493), + [anon_sym_POUNDline] = ACTIONS(2493), + [anon_sym_POUNDcolumn] = ACTIONS(2493), + [anon_sym_POUNDfunction] = ACTIONS(2493), + [anon_sym_POUNDdsohandle] = ACTIONS(2493), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(2491), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2491), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2491), + [anon_sym_LT_EQ] = ACTIONS(2491), + [anon_sym_GT_EQ] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_SLASH] = ACTIONS(2491), + [anon_sym_PERCENT] = ACTIONS(2491), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(2493), + [sym__plus_then_ws] = ACTIONS(2493), + [sym__minus_then_ws] = ACTIONS(2493), + [sym_bang] = ACTIONS(481), + }, + [588] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1147), + [sym__unary_expression] = STATE(1147), + [sym_postfix_expression] = STATE(1147), + [sym_constructor_expression] = STATE(1147), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1147), + [sym__range_operator] = STATE(1037), + [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(1147), + [sym_multiplicative_expression] = STATE(1147), + [sym_additive_expression] = STATE(1147), + [sym_range_expression] = STATE(1147), + [sym_infix_expression] = STATE(1147), + [sym_nil_coalescing_expression] = STATE(1147), + [sym_check_expression] = STATE(1147), + [sym_comparison_expression] = STATE(1147), + [sym_equality_expression] = STATE(1147), + [sym_conjunction_expression] = STATE(1147), + [sym_disjunction_expression] = STATE(1147), + [sym_bitwise_operation] = STATE(1147), + [sym_custom_operator] = STATE(1134), + [sym_try_expression] = STATE(1147), + [sym_await_expression] = STATE(1147), + [sym_ternary_expression] = STATE(1147), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1147), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1147), + [sym_key_path_expression] = STATE(1147), + [sym_key_path_string_expression] = STATE(1147), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1147), + [sym__comparison_operator] = STATE(1147), + [sym__additive_operator] = STATE(1147), + [sym__multiplicative_operator] = STATE(1147), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1147), + [sym__referenceable_operator] = STATE(1147), + [sym__eq_eq] = STATE(1147), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(2495), + [sym_real_literal] = ACTIONS(2497), + [sym_integer_literal] = ACTIONS(2495), + [sym_hex_literal] = ACTIONS(2497), + [sym_oct_literal] = ACTIONS(2497), + [sym_bin_literal] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(2495), + [anon_sym_GT] = ACTIONS(2495), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(2495), + [anon_sym_POUNDfileID] = ACTIONS(2497), + [anon_sym_POUNDfilePath] = ACTIONS(2497), + [anon_sym_POUNDline] = ACTIONS(2497), + [anon_sym_POUNDcolumn] = ACTIONS(2497), + [anon_sym_POUNDfunction] = ACTIONS(2497), + [anon_sym_POUNDdsohandle] = ACTIONS(2497), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(2495), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2495), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2495), + [anon_sym_LT_EQ] = ACTIONS(2495), + [anon_sym_GT_EQ] = ACTIONS(2495), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_SLASH] = ACTIONS(2495), + [anon_sym_PERCENT] = ACTIONS(2495), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(2497), + [sym__plus_then_ws] = ACTIONS(2497), + [sym__minus_then_ws] = ACTIONS(2497), + [sym_bang] = ACTIONS(481), + }, + [589] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1563), + [sym_boolean_literal] = STATE(1563), + [sym__string_literal] = STATE(1563), + [sym_line_string_literal] = STATE(1563), + [sym_multi_line_string_literal] = STATE(1563), + [sym_raw_string_literal] = STATE(1563), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1563), + [sym__unary_expression] = STATE(1563), + [sym_postfix_expression] = STATE(1563), + [sym_constructor_expression] = STATE(1563), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1563), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1563), + [sym_prefix_expression] = STATE(1563), + [sym_as_expression] = STATE(1563), + [sym_selector_expression] = STATE(1563), + [sym__binary_expression] = STATE(1563), + [sym_multiplicative_expression] = STATE(1563), + [sym_additive_expression] = STATE(1563), + [sym_range_expression] = STATE(1563), + [sym_infix_expression] = STATE(1563), + [sym_nil_coalescing_expression] = STATE(1563), + [sym_check_expression] = STATE(1563), + [sym_comparison_expression] = STATE(1563), + [sym_equality_expression] = STATE(1563), + [sym_conjunction_expression] = STATE(1563), + [sym_disjunction_expression] = STATE(1563), + [sym_bitwise_operation] = STATE(1563), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1563), + [sym_await_expression] = STATE(1563), + [sym_ternary_expression] = STATE(1563), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1563), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1563), + [sym_dictionary_literal] = STATE(1563), + [sym__special_literal] = STATE(1563), + [sym__playground_literal] = STATE(1563), + [sym_lambda_literal] = STATE(1563), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1563), + [sym_key_path_expression] = STATE(1563), + [sym_key_path_string_expression] = STATE(1563), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1563), + [sym__comparison_operator] = STATE(1563), + [sym__additive_operator] = STATE(1563), + [sym__multiplicative_operator] = STATE(1563), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1563), + [sym__referenceable_operator] = STATE(1563), + [sym__eq_eq] = STATE(1563), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2499), + [sym_real_literal] = ACTIONS(2501), + [sym_integer_literal] = ACTIONS(2499), + [sym_hex_literal] = ACTIONS(2501), + [sym_oct_literal] = ACTIONS(2501), + [sym_bin_literal] = ACTIONS(2501), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_GT] = ACTIONS(2499), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2499), + [anon_sym_POUNDfileID] = ACTIONS(2501), + [anon_sym_POUNDfilePath] = ACTIONS(2501), + [anon_sym_POUNDline] = ACTIONS(2501), + [anon_sym_POUNDcolumn] = ACTIONS(2501), + [anon_sym_POUNDfunction] = ACTIONS(2501), + [anon_sym_POUNDdsohandle] = ACTIONS(2501), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2499), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2499), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2499), + [anon_sym_LT_EQ] = ACTIONS(2499), + [anon_sym_GT_EQ] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2499), + [anon_sym_SLASH] = ACTIONS(2499), + [anon_sym_PERCENT] = ACTIONS(2499), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2501), + [sym__plus_then_ws] = ACTIONS(2501), + [sym__minus_then_ws] = ACTIONS(2501), + [sym_bang] = ACTIONS(1069), + }, + [590] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1658), + [sym_boolean_literal] = STATE(1658), + [sym__string_literal] = STATE(1658), + [sym_line_string_literal] = STATE(1658), + [sym_multi_line_string_literal] = STATE(1658), + [sym_raw_string_literal] = STATE(1658), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1658), + [sym__unary_expression] = STATE(1658), + [sym_postfix_expression] = STATE(1658), + [sym_constructor_expression] = STATE(1658), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1658), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1658), + [sym_prefix_expression] = STATE(1658), + [sym_as_expression] = STATE(1658), + [sym_selector_expression] = STATE(1658), + [sym__binary_expression] = STATE(1658), + [sym_multiplicative_expression] = STATE(1658), + [sym_additive_expression] = STATE(1658), + [sym_range_expression] = STATE(1658), + [sym_infix_expression] = STATE(1658), + [sym_nil_coalescing_expression] = STATE(1658), + [sym_check_expression] = STATE(1658), + [sym_comparison_expression] = STATE(1658), + [sym_equality_expression] = STATE(1658), + [sym_conjunction_expression] = STATE(1658), + [sym_disjunction_expression] = STATE(1658), + [sym_bitwise_operation] = STATE(1658), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1658), + [sym_await_expression] = STATE(1658), + [sym_ternary_expression] = STATE(1658), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1658), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1658), + [sym_dictionary_literal] = STATE(1658), + [sym__special_literal] = STATE(1658), + [sym__playground_literal] = STATE(1658), + [sym_lambda_literal] = STATE(1658), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1658), + [sym_key_path_expression] = STATE(1658), + [sym_key_path_string_expression] = STATE(1658), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1658), + [sym__comparison_operator] = STATE(1658), + [sym__additive_operator] = STATE(1658), + [sym__multiplicative_operator] = STATE(1658), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1658), + [sym__referenceable_operator] = STATE(1658), + [sym__eq_eq] = STATE(1658), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2503), + [sym_real_literal] = ACTIONS(2505), + [sym_integer_literal] = ACTIONS(2503), + [sym_hex_literal] = ACTIONS(2505), + [sym_oct_literal] = ACTIONS(2505), + [sym_bin_literal] = ACTIONS(2505), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2503), + [anon_sym_GT] = ACTIONS(2503), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2503), + [anon_sym_POUNDfileID] = ACTIONS(2505), + [anon_sym_POUNDfilePath] = ACTIONS(2505), + [anon_sym_POUNDline] = ACTIONS(2505), + [anon_sym_POUNDcolumn] = ACTIONS(2505), + [anon_sym_POUNDfunction] = ACTIONS(2505), + [anon_sym_POUNDdsohandle] = ACTIONS(2505), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2503), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2503), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2503), + [anon_sym_LT_EQ] = ACTIONS(2503), + [anon_sym_GT_EQ] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2503), + [anon_sym_SLASH] = ACTIONS(2503), + [anon_sym_PERCENT] = ACTIONS(2503), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2505), + [sym__plus_then_ws] = ACTIONS(2505), + [sym__minus_then_ws] = ACTIONS(2505), + [sym_bang] = ACTIONS(1069), + }, + [591] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1809), + [sym_boolean_literal] = STATE(1809), + [sym__string_literal] = STATE(1809), + [sym_line_string_literal] = STATE(1809), + [sym_multi_line_string_literal] = STATE(1809), + [sym_raw_string_literal] = STATE(1809), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1809), + [sym__unary_expression] = STATE(1809), + [sym_postfix_expression] = STATE(1809), + [sym_constructor_expression] = STATE(1809), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1809), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1809), + [sym_prefix_expression] = STATE(1809), + [sym_as_expression] = STATE(1809), + [sym_selector_expression] = STATE(1809), + [sym__binary_expression] = STATE(1809), + [sym_multiplicative_expression] = STATE(1809), + [sym_additive_expression] = STATE(1809), + [sym_range_expression] = STATE(1809), + [sym_infix_expression] = STATE(1809), + [sym_nil_coalescing_expression] = STATE(1809), + [sym_check_expression] = STATE(1809), + [sym_comparison_expression] = STATE(1809), + [sym_equality_expression] = STATE(1809), + [sym_conjunction_expression] = STATE(1809), + [sym_disjunction_expression] = STATE(1809), + [sym_bitwise_operation] = STATE(1809), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1809), + [sym_await_expression] = STATE(1809), + [sym_ternary_expression] = STATE(1809), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1809), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1809), + [sym_dictionary_literal] = STATE(1809), + [sym__special_literal] = STATE(1809), + [sym__playground_literal] = STATE(1809), + [sym_lambda_literal] = STATE(1809), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1809), + [sym_key_path_expression] = STATE(1809), + [sym_key_path_string_expression] = STATE(1809), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1809), + [sym__comparison_operator] = STATE(1809), + [sym__additive_operator] = STATE(1809), + [sym__multiplicative_operator] = STATE(1809), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1809), + [sym__referenceable_operator] = STATE(1809), + [sym__eq_eq] = STATE(1809), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2507), + [sym_real_literal] = ACTIONS(2509), + [sym_integer_literal] = ACTIONS(2507), + [sym_hex_literal] = ACTIONS(2509), + [sym_oct_literal] = ACTIONS(2509), + [sym_bin_literal] = ACTIONS(2509), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_GT] = ACTIONS(2507), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2507), + [anon_sym_POUNDfileID] = ACTIONS(2509), + [anon_sym_POUNDfilePath] = ACTIONS(2509), + [anon_sym_POUNDline] = ACTIONS(2509), + [anon_sym_POUNDcolumn] = ACTIONS(2509), + [anon_sym_POUNDfunction] = ACTIONS(2509), + [anon_sym_POUNDdsohandle] = ACTIONS(2509), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2507), + [anon_sym_LT_EQ] = ACTIONS(2507), + [anon_sym_GT_EQ] = ACTIONS(2507), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2509), + [sym__plus_then_ws] = ACTIONS(2509), + [sym__minus_then_ws] = ACTIONS(2509), + [sym_bang] = ACTIONS(1069), + }, + [592] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1810), + [sym_boolean_literal] = STATE(1810), + [sym__string_literal] = STATE(1810), + [sym_line_string_literal] = STATE(1810), + [sym_multi_line_string_literal] = STATE(1810), + [sym_raw_string_literal] = STATE(1810), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1810), + [sym__unary_expression] = STATE(1810), + [sym_postfix_expression] = STATE(1810), + [sym_constructor_expression] = STATE(1810), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1810), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1810), + [sym_prefix_expression] = STATE(1810), + [sym_as_expression] = STATE(1810), + [sym_selector_expression] = STATE(1810), + [sym__binary_expression] = STATE(1810), + [sym_multiplicative_expression] = STATE(1810), + [sym_additive_expression] = STATE(1810), + [sym_range_expression] = STATE(1810), + [sym_infix_expression] = STATE(1810), + [sym_nil_coalescing_expression] = STATE(1810), + [sym_check_expression] = STATE(1810), + [sym_comparison_expression] = STATE(1810), + [sym_equality_expression] = STATE(1810), + [sym_conjunction_expression] = STATE(1810), + [sym_disjunction_expression] = STATE(1810), + [sym_bitwise_operation] = STATE(1810), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1810), + [sym_await_expression] = STATE(1810), + [sym_ternary_expression] = STATE(1810), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1810), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1810), + [sym_dictionary_literal] = STATE(1810), + [sym__special_literal] = STATE(1810), + [sym__playground_literal] = STATE(1810), + [sym_lambda_literal] = STATE(1810), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1810), + [sym_key_path_expression] = STATE(1810), + [sym_key_path_string_expression] = STATE(1810), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1810), + [sym__comparison_operator] = STATE(1810), + [sym__additive_operator] = STATE(1810), + [sym__multiplicative_operator] = STATE(1810), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1810), + [sym__referenceable_operator] = STATE(1810), + [sym__eq_eq] = STATE(1810), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2511), + [sym_real_literal] = ACTIONS(2513), + [sym_integer_literal] = ACTIONS(2511), + [sym_hex_literal] = ACTIONS(2513), + [sym_oct_literal] = ACTIONS(2513), + [sym_bin_literal] = ACTIONS(2513), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2511), + [anon_sym_GT] = ACTIONS(2511), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2511), + [anon_sym_POUNDfileID] = ACTIONS(2513), + [anon_sym_POUNDfilePath] = ACTIONS(2513), + [anon_sym_POUNDline] = ACTIONS(2513), + [anon_sym_POUNDcolumn] = ACTIONS(2513), + [anon_sym_POUNDfunction] = ACTIONS(2513), + [anon_sym_POUNDdsohandle] = ACTIONS(2513), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2511), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2511), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2511), + [anon_sym_LT_EQ] = ACTIONS(2511), + [anon_sym_GT_EQ] = ACTIONS(2511), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2511), + [anon_sym_SLASH] = ACTIONS(2511), + [anon_sym_PERCENT] = ACTIONS(2511), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2513), + [sym__plus_then_ws] = ACTIONS(2513), + [sym__minus_then_ws] = ACTIONS(2513), + [sym_bang] = ACTIONS(1069), + }, + [593] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1715), + [sym_boolean_literal] = STATE(1715), + [sym__string_literal] = STATE(1715), + [sym_line_string_literal] = STATE(1715), + [sym_multi_line_string_literal] = STATE(1715), + [sym_raw_string_literal] = STATE(1715), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1715), + [sym__unary_expression] = STATE(1715), + [sym_postfix_expression] = STATE(1715), + [sym_constructor_expression] = STATE(1715), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1715), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1715), + [sym_prefix_expression] = STATE(1715), + [sym_as_expression] = STATE(1715), + [sym_selector_expression] = STATE(1715), + [sym__binary_expression] = STATE(1715), + [sym_multiplicative_expression] = STATE(1715), + [sym_additive_expression] = STATE(1715), + [sym_range_expression] = STATE(1715), + [sym_infix_expression] = STATE(1715), + [sym_nil_coalescing_expression] = STATE(1715), + [sym_check_expression] = STATE(1715), + [sym_comparison_expression] = STATE(1715), + [sym_equality_expression] = STATE(1715), + [sym_conjunction_expression] = STATE(1715), + [sym_disjunction_expression] = STATE(1715), + [sym_bitwise_operation] = STATE(1715), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1715), + [sym_await_expression] = STATE(1715), + [sym_ternary_expression] = STATE(1715), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1715), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1715), + [sym_dictionary_literal] = STATE(1715), + [sym__special_literal] = STATE(1715), + [sym__playground_literal] = STATE(1715), + [sym_lambda_literal] = STATE(1715), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1715), + [sym_key_path_expression] = STATE(1715), + [sym_key_path_string_expression] = STATE(1715), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1715), + [sym__comparison_operator] = STATE(1715), + [sym__additive_operator] = STATE(1715), + [sym__multiplicative_operator] = STATE(1715), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1715), + [sym__referenceable_operator] = STATE(1715), + [sym__eq_eq] = STATE(1715), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2515), + [sym_real_literal] = ACTIONS(2517), + [sym_integer_literal] = ACTIONS(2515), + [sym_hex_literal] = ACTIONS(2517), + [sym_oct_literal] = ACTIONS(2517), + [sym_bin_literal] = ACTIONS(2517), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(2515), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2515), + [anon_sym_POUNDfileID] = ACTIONS(2517), + [anon_sym_POUNDfilePath] = ACTIONS(2517), + [anon_sym_POUNDline] = ACTIONS(2517), + [anon_sym_POUNDcolumn] = ACTIONS(2517), + [anon_sym_POUNDfunction] = ACTIONS(2517), + [anon_sym_POUNDdsohandle] = ACTIONS(2517), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2515), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2515), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2515), + [anon_sym_LT_EQ] = ACTIONS(2515), + [anon_sym_GT_EQ] = ACTIONS(2515), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_SLASH] = ACTIONS(2515), + [anon_sym_PERCENT] = ACTIONS(2515), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2517), + [sym__plus_then_ws] = ACTIONS(2517), + [sym__minus_then_ws] = ACTIONS(2517), + [sym_bang] = ACTIONS(1069), + }, + [594] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2157), + [sym_boolean_literal] = STATE(2157), + [sym__string_literal] = STATE(2157), + [sym_line_string_literal] = STATE(2157), + [sym_multi_line_string_literal] = STATE(2157), + [sym_raw_string_literal] = STATE(2157), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2157), + [sym__unary_expression] = STATE(2157), + [sym_postfix_expression] = STATE(2157), + [sym_constructor_expression] = STATE(2157), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2157), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2157), + [sym_prefix_expression] = STATE(2157), + [sym_as_expression] = STATE(2157), + [sym_selector_expression] = STATE(2157), + [sym__binary_expression] = STATE(2157), + [sym_multiplicative_expression] = STATE(2157), + [sym_additive_expression] = STATE(2157), + [sym_range_expression] = STATE(2157), + [sym_infix_expression] = STATE(2157), + [sym_nil_coalescing_expression] = STATE(2157), + [sym_check_expression] = STATE(2157), + [sym_comparison_expression] = STATE(2157), + [sym_equality_expression] = STATE(2157), + [sym_conjunction_expression] = STATE(2157), + [sym_disjunction_expression] = STATE(2157), + [sym_bitwise_operation] = STATE(2157), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2157), + [sym_await_expression] = STATE(2157), + [sym_ternary_expression] = STATE(2157), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2157), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2157), + [sym_dictionary_literal] = STATE(2157), + [sym__special_literal] = STATE(2157), + [sym__playground_literal] = STATE(2157), + [sym_lambda_literal] = STATE(2157), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2157), + [sym_key_path_expression] = STATE(2157), + [sym_key_path_string_expression] = STATE(2157), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2157), + [sym__comparison_operator] = STATE(2157), + [sym__additive_operator] = STATE(2157), + [sym__multiplicative_operator] = STATE(2157), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2157), + [sym__referenceable_operator] = STATE(2157), + [sym__eq_eq] = STATE(2157), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2519), + [sym_real_literal] = ACTIONS(2521), + [sym_integer_literal] = ACTIONS(2519), + [sym_hex_literal] = ACTIONS(2521), + [sym_oct_literal] = ACTIONS(2521), + [sym_bin_literal] = ACTIONS(2521), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2519), + [anon_sym_GT] = ACTIONS(2519), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2519), + [anon_sym_POUNDfileID] = ACTIONS(2521), + [anon_sym_POUNDfilePath] = ACTIONS(2521), + [anon_sym_POUNDline] = ACTIONS(2521), + [anon_sym_POUNDcolumn] = ACTIONS(2521), + [anon_sym_POUNDfunction] = ACTIONS(2521), + [anon_sym_POUNDdsohandle] = ACTIONS(2521), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2519), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2519), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2519), + [anon_sym_LT_EQ] = ACTIONS(2519), + [anon_sym_GT_EQ] = ACTIONS(2519), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2519), + [anon_sym_SLASH] = ACTIONS(2519), + [anon_sym_PERCENT] = ACTIONS(2519), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2521), + [sym__plus_then_ws] = ACTIONS(2521), + [sym__minus_then_ws] = ACTIONS(2521), + [sym_bang] = ACTIONS(1069), + }, + [595] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1951), + [sym_boolean_literal] = STATE(1951), + [sym__string_literal] = STATE(1951), + [sym_line_string_literal] = STATE(1951), + [sym_multi_line_string_literal] = STATE(1951), + [sym_raw_string_literal] = STATE(1951), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1951), + [sym__unary_expression] = STATE(1951), + [sym_postfix_expression] = STATE(1951), + [sym_constructor_expression] = STATE(1951), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1951), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1951), + [sym_prefix_expression] = STATE(1951), + [sym_as_expression] = STATE(1951), + [sym_selector_expression] = STATE(1951), + [sym__binary_expression] = STATE(1951), + [sym_multiplicative_expression] = STATE(1951), + [sym_additive_expression] = STATE(1951), + [sym_range_expression] = STATE(1951), + [sym_infix_expression] = STATE(1951), + [sym_nil_coalescing_expression] = STATE(1951), + [sym_check_expression] = STATE(1951), + [sym_comparison_expression] = STATE(1951), + [sym_equality_expression] = STATE(1951), + [sym_conjunction_expression] = STATE(1951), + [sym_disjunction_expression] = STATE(1951), + [sym_bitwise_operation] = STATE(1951), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1951), + [sym_await_expression] = STATE(1951), + [sym_ternary_expression] = STATE(1951), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1951), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1951), + [sym_dictionary_literal] = STATE(1951), + [sym__special_literal] = STATE(1951), + [sym__playground_literal] = STATE(1951), + [sym_lambda_literal] = STATE(1951), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1951), + [sym_key_path_expression] = STATE(1951), + [sym_key_path_string_expression] = STATE(1951), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1951), + [sym__comparison_operator] = STATE(1951), + [sym__additive_operator] = STATE(1951), + [sym__multiplicative_operator] = STATE(1951), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1951), + [sym__referenceable_operator] = STATE(1951), + [sym__eq_eq] = STATE(1951), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2523), + [sym_real_literal] = ACTIONS(2525), + [sym_integer_literal] = ACTIONS(2523), + [sym_hex_literal] = ACTIONS(2525), + [sym_oct_literal] = ACTIONS(2525), + [sym_bin_literal] = ACTIONS(2525), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2523), + [anon_sym_GT] = ACTIONS(2523), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2523), + [anon_sym_POUNDfileID] = ACTIONS(2525), + [anon_sym_POUNDfilePath] = ACTIONS(2525), + [anon_sym_POUNDline] = ACTIONS(2525), + [anon_sym_POUNDcolumn] = ACTIONS(2525), + [anon_sym_POUNDfunction] = ACTIONS(2525), + [anon_sym_POUNDdsohandle] = ACTIONS(2525), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2523), + [anon_sym_LT_EQ] = ACTIONS(2523), + [anon_sym_GT_EQ] = ACTIONS(2523), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2523), + [anon_sym_SLASH] = ACTIONS(2523), + [anon_sym_PERCENT] = ACTIONS(2523), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2525), + [sym__plus_then_ws] = ACTIONS(2525), + [sym__minus_then_ws] = ACTIONS(2525), + [sym_bang] = ACTIONS(1069), + }, + [596] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2131), + [sym_boolean_literal] = STATE(2131), + [sym__string_literal] = STATE(2131), + [sym_line_string_literal] = STATE(2131), + [sym_multi_line_string_literal] = STATE(2131), + [sym_raw_string_literal] = STATE(2131), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2131), + [sym__unary_expression] = STATE(2131), + [sym_postfix_expression] = STATE(2131), + [sym_constructor_expression] = STATE(2131), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2131), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2131), + [sym_prefix_expression] = STATE(2131), + [sym_as_expression] = STATE(2131), + [sym_selector_expression] = STATE(2131), + [sym__binary_expression] = STATE(2131), + [sym_multiplicative_expression] = STATE(2131), + [sym_additive_expression] = STATE(2131), + [sym_range_expression] = STATE(2131), + [sym_infix_expression] = STATE(2131), + [sym_nil_coalescing_expression] = STATE(2131), + [sym_check_expression] = STATE(2131), + [sym_comparison_expression] = STATE(2131), + [sym_equality_expression] = STATE(2131), + [sym_conjunction_expression] = STATE(2131), + [sym_disjunction_expression] = STATE(2131), + [sym_bitwise_operation] = STATE(2131), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2131), + [sym_await_expression] = STATE(2131), + [sym_ternary_expression] = STATE(2131), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2131), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2131), + [sym_dictionary_literal] = STATE(2131), + [sym__special_literal] = STATE(2131), + [sym__playground_literal] = STATE(2131), + [sym_lambda_literal] = STATE(2131), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2131), + [sym_key_path_expression] = STATE(2131), + [sym_key_path_string_expression] = STATE(2131), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2131), + [sym__comparison_operator] = STATE(2131), + [sym__additive_operator] = STATE(2131), + [sym__multiplicative_operator] = STATE(2131), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2131), + [sym__referenceable_operator] = STATE(2131), + [sym__eq_eq] = STATE(2131), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2527), + [sym_real_literal] = ACTIONS(2529), + [sym_integer_literal] = ACTIONS(2527), + [sym_hex_literal] = ACTIONS(2529), + [sym_oct_literal] = ACTIONS(2529), + [sym_bin_literal] = ACTIONS(2529), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2527), + [anon_sym_POUNDfileID] = ACTIONS(2529), + [anon_sym_POUNDfilePath] = ACTIONS(2529), + [anon_sym_POUNDline] = ACTIONS(2529), + [anon_sym_POUNDcolumn] = ACTIONS(2529), + [anon_sym_POUNDfunction] = ACTIONS(2529), + [anon_sym_POUNDdsohandle] = ACTIONS(2529), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2527), + [anon_sym_LT_EQ] = ACTIONS(2527), + [anon_sym_GT_EQ] = ACTIONS(2527), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_SLASH] = ACTIONS(2527), + [anon_sym_PERCENT] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2529), + [sym__plus_then_ws] = ACTIONS(2529), + [sym__minus_then_ws] = ACTIONS(2529), + [sym_bang] = ACTIONS(1069), + }, + [597] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1952), + [sym_boolean_literal] = STATE(1952), + [sym__string_literal] = STATE(1952), + [sym_line_string_literal] = STATE(1952), + [sym_multi_line_string_literal] = STATE(1952), + [sym_raw_string_literal] = STATE(1952), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1952), + [sym__unary_expression] = STATE(1952), + [sym_postfix_expression] = STATE(1952), + [sym_constructor_expression] = STATE(1952), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1952), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1952), + [sym_prefix_expression] = STATE(1952), + [sym_as_expression] = STATE(1952), + [sym_selector_expression] = STATE(1952), + [sym__binary_expression] = STATE(1952), + [sym_multiplicative_expression] = STATE(1952), + [sym_additive_expression] = STATE(1952), + [sym_range_expression] = STATE(1952), + [sym_infix_expression] = STATE(1952), + [sym_nil_coalescing_expression] = STATE(1952), + [sym_check_expression] = STATE(1952), + [sym_comparison_expression] = STATE(1952), + [sym_equality_expression] = STATE(1952), + [sym_conjunction_expression] = STATE(1952), + [sym_disjunction_expression] = STATE(1952), + [sym_bitwise_operation] = STATE(1952), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1952), + [sym_await_expression] = STATE(1952), + [sym_ternary_expression] = STATE(1952), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1952), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1952), + [sym_dictionary_literal] = STATE(1952), + [sym__special_literal] = STATE(1952), + [sym__playground_literal] = STATE(1952), + [sym_lambda_literal] = STATE(1952), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1952), + [sym_key_path_expression] = STATE(1952), + [sym_key_path_string_expression] = STATE(1952), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1952), + [sym__comparison_operator] = STATE(1952), + [sym__additive_operator] = STATE(1952), + [sym__multiplicative_operator] = STATE(1952), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1952), + [sym__referenceable_operator] = STATE(1952), + [sym__eq_eq] = STATE(1952), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2531), + [sym_real_literal] = ACTIONS(2533), + [sym_integer_literal] = ACTIONS(2531), + [sym_hex_literal] = ACTIONS(2533), + [sym_oct_literal] = ACTIONS(2533), + [sym_bin_literal] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2531), + [anon_sym_GT] = ACTIONS(2531), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2531), + [anon_sym_POUNDfileID] = ACTIONS(2533), + [anon_sym_POUNDfilePath] = ACTIONS(2533), + [anon_sym_POUNDline] = ACTIONS(2533), + [anon_sym_POUNDcolumn] = ACTIONS(2533), + [anon_sym_POUNDfunction] = ACTIONS(2533), + [anon_sym_POUNDdsohandle] = ACTIONS(2533), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2531), + [anon_sym_LT_EQ] = ACTIONS(2531), + [anon_sym_GT_EQ] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2531), + [anon_sym_SLASH] = ACTIONS(2531), + [anon_sym_PERCENT] = ACTIONS(2531), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2533), + [sym__plus_then_ws] = ACTIONS(2533), + [sym__minus_then_ws] = ACTIONS(2533), + [sym_bang] = ACTIONS(1069), + }, + [598] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1710), + [sym_boolean_literal] = STATE(1710), + [sym__string_literal] = STATE(1710), + [sym_line_string_literal] = STATE(1710), + [sym_multi_line_string_literal] = STATE(1710), + [sym_raw_string_literal] = STATE(1710), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1710), + [sym__unary_expression] = STATE(1710), + [sym_postfix_expression] = STATE(1710), + [sym_constructor_expression] = STATE(1710), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1710), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1710), + [sym_prefix_expression] = STATE(1710), + [sym_as_expression] = STATE(1710), + [sym_selector_expression] = STATE(1710), + [sym__binary_expression] = STATE(1710), + [sym_multiplicative_expression] = STATE(1710), + [sym_additive_expression] = STATE(1710), + [sym_range_expression] = STATE(1710), + [sym_infix_expression] = STATE(1710), + [sym_nil_coalescing_expression] = STATE(1710), + [sym_check_expression] = STATE(1710), + [sym_comparison_expression] = STATE(1710), + [sym_equality_expression] = STATE(1710), + [sym_conjunction_expression] = STATE(1710), + [sym_disjunction_expression] = STATE(1710), + [sym_bitwise_operation] = STATE(1710), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1710), + [sym_await_expression] = STATE(1710), + [sym_ternary_expression] = STATE(1710), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1710), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1710), + [sym_dictionary_literal] = STATE(1710), + [sym__special_literal] = STATE(1710), + [sym__playground_literal] = STATE(1710), + [sym_lambda_literal] = STATE(1710), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1710), + [sym_key_path_expression] = STATE(1710), + [sym_key_path_string_expression] = STATE(1710), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1710), + [sym__comparison_operator] = STATE(1710), + [sym__additive_operator] = STATE(1710), + [sym__multiplicative_operator] = STATE(1710), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1710), + [sym__referenceable_operator] = STATE(1710), + [sym__eq_eq] = STATE(1710), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2535), + [sym_real_literal] = ACTIONS(2537), + [sym_integer_literal] = ACTIONS(2535), + [sym_hex_literal] = ACTIONS(2537), + [sym_oct_literal] = ACTIONS(2537), + [sym_bin_literal] = ACTIONS(2537), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2535), + [anon_sym_GT] = ACTIONS(2535), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2535), + [anon_sym_POUNDfileID] = ACTIONS(2537), + [anon_sym_POUNDfilePath] = ACTIONS(2537), + [anon_sym_POUNDline] = ACTIONS(2537), + [anon_sym_POUNDcolumn] = ACTIONS(2537), + [anon_sym_POUNDfunction] = ACTIONS(2537), + [anon_sym_POUNDdsohandle] = ACTIONS(2537), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2535), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2535), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2535), + [anon_sym_LT_EQ] = ACTIONS(2535), + [anon_sym_GT_EQ] = ACTIONS(2535), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2535), + [anon_sym_SLASH] = ACTIONS(2535), + [anon_sym_PERCENT] = ACTIONS(2535), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2537), + [sym__plus_then_ws] = ACTIONS(2537), + [sym__minus_then_ws] = ACTIONS(2537), + [sym_bang] = ACTIONS(1069), + }, + [599] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1963), + [sym_boolean_literal] = STATE(1963), + [sym__string_literal] = STATE(1963), + [sym_line_string_literal] = STATE(1963), + [sym_multi_line_string_literal] = STATE(1963), + [sym_raw_string_literal] = STATE(1963), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1963), + [sym__unary_expression] = STATE(1963), + [sym_postfix_expression] = STATE(1963), + [sym_constructor_expression] = STATE(1963), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1963), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1963), + [sym_prefix_expression] = STATE(1963), + [sym_as_expression] = STATE(1963), + [sym_selector_expression] = STATE(1963), + [sym__binary_expression] = STATE(1963), + [sym_multiplicative_expression] = STATE(1963), + [sym_additive_expression] = STATE(1963), + [sym_range_expression] = STATE(1963), + [sym_infix_expression] = STATE(1963), + [sym_nil_coalescing_expression] = STATE(1963), + [sym_check_expression] = STATE(1963), + [sym_comparison_expression] = STATE(1963), + [sym_equality_expression] = STATE(1963), + [sym_conjunction_expression] = STATE(1963), + [sym_disjunction_expression] = STATE(1963), + [sym_bitwise_operation] = STATE(1963), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1963), + [sym_await_expression] = STATE(1963), + [sym_ternary_expression] = STATE(1963), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1963), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1963), + [sym_dictionary_literal] = STATE(1963), + [sym__special_literal] = STATE(1963), + [sym__playground_literal] = STATE(1963), + [sym_lambda_literal] = STATE(1963), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1963), + [sym_key_path_expression] = STATE(1963), + [sym_key_path_string_expression] = STATE(1963), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1963), + [sym__comparison_operator] = STATE(1963), + [sym__additive_operator] = STATE(1963), + [sym__multiplicative_operator] = STATE(1963), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1963), + [sym__referenceable_operator] = STATE(1963), + [sym__eq_eq] = STATE(1963), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2539), + [sym_real_literal] = ACTIONS(2541), + [sym_integer_literal] = ACTIONS(2539), + [sym_hex_literal] = ACTIONS(2541), + [sym_oct_literal] = ACTIONS(2541), + [sym_bin_literal] = ACTIONS(2541), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2539), + [anon_sym_GT] = ACTIONS(2539), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2539), + [anon_sym_POUNDfileID] = ACTIONS(2541), + [anon_sym_POUNDfilePath] = ACTIONS(2541), + [anon_sym_POUNDline] = ACTIONS(2541), + [anon_sym_POUNDcolumn] = ACTIONS(2541), + [anon_sym_POUNDfunction] = ACTIONS(2541), + [anon_sym_POUNDdsohandle] = ACTIONS(2541), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2539), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2539), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2539), + [anon_sym_LT_EQ] = ACTIONS(2539), + [anon_sym_GT_EQ] = ACTIONS(2539), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2539), + [anon_sym_SLASH] = ACTIONS(2539), + [anon_sym_PERCENT] = ACTIONS(2539), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2541), + [sym__plus_then_ws] = ACTIONS(2541), + [sym__minus_then_ws] = ACTIONS(2541), + [sym_bang] = ACTIONS(1069), + }, + [600] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1964), + [sym_boolean_literal] = STATE(1964), + [sym__string_literal] = STATE(1964), + [sym_line_string_literal] = STATE(1964), + [sym_multi_line_string_literal] = STATE(1964), + [sym_raw_string_literal] = STATE(1964), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1964), + [sym__unary_expression] = STATE(1964), + [sym_postfix_expression] = STATE(1964), + [sym_constructor_expression] = STATE(1964), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1964), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1964), + [sym_prefix_expression] = STATE(1964), + [sym_as_expression] = STATE(1964), + [sym_selector_expression] = STATE(1964), + [sym__binary_expression] = STATE(1964), + [sym_multiplicative_expression] = STATE(1964), + [sym_additive_expression] = STATE(1964), + [sym_range_expression] = STATE(1964), + [sym_infix_expression] = STATE(1964), + [sym_nil_coalescing_expression] = STATE(1964), + [sym_check_expression] = STATE(1964), + [sym_comparison_expression] = STATE(1964), + [sym_equality_expression] = STATE(1964), + [sym_conjunction_expression] = STATE(1964), + [sym_disjunction_expression] = STATE(1964), + [sym_bitwise_operation] = STATE(1964), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1964), + [sym_await_expression] = STATE(1964), + [sym_ternary_expression] = STATE(1964), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1964), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1964), + [sym_dictionary_literal] = STATE(1964), + [sym__special_literal] = STATE(1964), + [sym__playground_literal] = STATE(1964), + [sym_lambda_literal] = STATE(1964), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1964), + [sym_key_path_expression] = STATE(1964), + [sym_key_path_string_expression] = STATE(1964), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1964), + [sym__comparison_operator] = STATE(1964), + [sym__additive_operator] = STATE(1964), + [sym__multiplicative_operator] = STATE(1964), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1964), + [sym__referenceable_operator] = STATE(1964), + [sym__eq_eq] = STATE(1964), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2543), + [sym_real_literal] = ACTIONS(2545), + [sym_integer_literal] = ACTIONS(2543), + [sym_hex_literal] = ACTIONS(2545), + [sym_oct_literal] = ACTIONS(2545), + [sym_bin_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2543), + [anon_sym_GT] = ACTIONS(2543), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2543), + [anon_sym_POUNDfileID] = ACTIONS(2545), + [anon_sym_POUNDfilePath] = ACTIONS(2545), + [anon_sym_POUNDline] = ACTIONS(2545), + [anon_sym_POUNDcolumn] = ACTIONS(2545), + [anon_sym_POUNDfunction] = ACTIONS(2545), + [anon_sym_POUNDdsohandle] = ACTIONS(2545), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2543), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2543), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2543), + [anon_sym_LT_EQ] = ACTIONS(2543), + [anon_sym_GT_EQ] = ACTIONS(2543), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_SLASH] = ACTIONS(2543), + [anon_sym_PERCENT] = ACTIONS(2543), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2545), + [sym__plus_then_ws] = ACTIONS(2545), + [sym__minus_then_ws] = ACTIONS(2545), + [sym_bang] = ACTIONS(1069), + }, + [601] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1566), + [sym_boolean_literal] = STATE(1566), + [sym__string_literal] = STATE(1566), + [sym_line_string_literal] = STATE(1566), + [sym_multi_line_string_literal] = STATE(1566), + [sym_raw_string_literal] = STATE(1566), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1566), + [sym__unary_expression] = STATE(1566), + [sym_postfix_expression] = STATE(1566), + [sym_constructor_expression] = STATE(1566), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1566), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1566), + [sym_prefix_expression] = STATE(1566), + [sym_as_expression] = STATE(1566), + [sym_selector_expression] = STATE(1566), + [sym__binary_expression] = STATE(1566), + [sym_multiplicative_expression] = STATE(1566), + [sym_additive_expression] = STATE(1566), + [sym_range_expression] = STATE(1566), + [sym_infix_expression] = STATE(1566), + [sym_nil_coalescing_expression] = STATE(1566), + [sym_check_expression] = STATE(1566), + [sym_comparison_expression] = STATE(1566), + [sym_equality_expression] = STATE(1566), + [sym_conjunction_expression] = STATE(1566), + [sym_disjunction_expression] = STATE(1566), + [sym_bitwise_operation] = STATE(1566), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1566), + [sym_await_expression] = STATE(1566), + [sym_ternary_expression] = STATE(1566), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1566), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1566), + [sym_dictionary_literal] = STATE(1566), + [sym__special_literal] = STATE(1566), + [sym__playground_literal] = STATE(1566), + [sym_lambda_literal] = STATE(1566), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1566), + [sym_key_path_expression] = STATE(1566), + [sym_key_path_string_expression] = STATE(1566), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1566), + [sym__comparison_operator] = STATE(1566), + [sym__additive_operator] = STATE(1566), + [sym__multiplicative_operator] = STATE(1566), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1566), + [sym__referenceable_operator] = STATE(1566), + [sym__eq_eq] = STATE(1566), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2547), + [sym_real_literal] = ACTIONS(2549), + [sym_integer_literal] = ACTIONS(2547), + [sym_hex_literal] = ACTIONS(2549), + [sym_oct_literal] = ACTIONS(2549), + [sym_bin_literal] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2547), + [anon_sym_POUNDfileID] = ACTIONS(2549), + [anon_sym_POUNDfilePath] = ACTIONS(2549), + [anon_sym_POUNDline] = ACTIONS(2549), + [anon_sym_POUNDcolumn] = ACTIONS(2549), + [anon_sym_POUNDfunction] = ACTIONS(2549), + [anon_sym_POUNDdsohandle] = ACTIONS(2549), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2547), + [anon_sym_LT_EQ] = ACTIONS(2547), + [anon_sym_GT_EQ] = ACTIONS(2547), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_SLASH] = ACTIONS(2547), + [anon_sym_PERCENT] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2549), + [sym__plus_then_ws] = ACTIONS(2549), + [sym__minus_then_ws] = ACTIONS(2549), + [sym_bang] = ACTIONS(1069), + }, + [602] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1730), + [sym_boolean_literal] = STATE(1730), + [sym__string_literal] = STATE(1730), + [sym_line_string_literal] = STATE(1730), + [sym_multi_line_string_literal] = STATE(1730), + [sym_raw_string_literal] = STATE(1730), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1730), + [sym__unary_expression] = STATE(1730), + [sym_postfix_expression] = STATE(1730), + [sym_constructor_expression] = STATE(1730), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1730), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1730), + [sym_prefix_expression] = STATE(1730), + [sym_as_expression] = STATE(1730), + [sym_selector_expression] = STATE(1730), + [sym__binary_expression] = STATE(1730), + [sym_multiplicative_expression] = STATE(1730), + [sym_additive_expression] = STATE(1730), + [sym_range_expression] = STATE(1730), + [sym_infix_expression] = STATE(1730), + [sym_nil_coalescing_expression] = STATE(1730), + [sym_check_expression] = STATE(1730), + [sym_comparison_expression] = STATE(1730), + [sym_equality_expression] = STATE(1730), + [sym_conjunction_expression] = STATE(1730), + [sym_disjunction_expression] = STATE(1730), + [sym_bitwise_operation] = STATE(1730), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1730), + [sym_await_expression] = STATE(1730), + [sym_ternary_expression] = STATE(1730), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1730), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1730), + [sym_dictionary_literal] = STATE(1730), + [sym__special_literal] = STATE(1730), + [sym__playground_literal] = STATE(1730), + [sym_lambda_literal] = STATE(1730), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1730), + [sym_key_path_expression] = STATE(1730), + [sym_key_path_string_expression] = STATE(1730), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1730), + [sym__comparison_operator] = STATE(1730), + [sym__additive_operator] = STATE(1730), + [sym__multiplicative_operator] = STATE(1730), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1730), + [sym__referenceable_operator] = STATE(1730), + [sym__eq_eq] = STATE(1730), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2551), + [sym_real_literal] = ACTIONS(2553), + [sym_integer_literal] = ACTIONS(2551), + [sym_hex_literal] = ACTIONS(2553), + [sym_oct_literal] = ACTIONS(2553), + [sym_bin_literal] = ACTIONS(2553), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2551), + [anon_sym_POUNDfileID] = ACTIONS(2553), + [anon_sym_POUNDfilePath] = ACTIONS(2553), + [anon_sym_POUNDline] = ACTIONS(2553), + [anon_sym_POUNDcolumn] = ACTIONS(2553), + [anon_sym_POUNDfunction] = ACTIONS(2553), + [anon_sym_POUNDdsohandle] = ACTIONS(2553), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2553), + [sym__plus_then_ws] = ACTIONS(2553), + [sym__minus_then_ws] = ACTIONS(2553), + [sym_bang] = ACTIONS(1069), + }, + [603] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1567), + [sym_boolean_literal] = STATE(1567), + [sym__string_literal] = STATE(1567), + [sym_line_string_literal] = STATE(1567), + [sym_multi_line_string_literal] = STATE(1567), + [sym_raw_string_literal] = STATE(1567), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1567), + [sym__unary_expression] = STATE(1567), + [sym_postfix_expression] = STATE(1567), + [sym_constructor_expression] = STATE(1567), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1567), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1567), + [sym_prefix_expression] = STATE(1567), + [sym_as_expression] = STATE(1567), + [sym_selector_expression] = STATE(1567), + [sym__binary_expression] = STATE(1567), + [sym_multiplicative_expression] = STATE(1567), + [sym_additive_expression] = STATE(1567), + [sym_range_expression] = STATE(1567), + [sym_infix_expression] = STATE(1567), + [sym_nil_coalescing_expression] = STATE(1567), + [sym_check_expression] = STATE(1567), + [sym_comparison_expression] = STATE(1567), + [sym_equality_expression] = STATE(1567), + [sym_conjunction_expression] = STATE(1567), + [sym_disjunction_expression] = STATE(1567), + [sym_bitwise_operation] = STATE(1567), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1567), + [sym_await_expression] = STATE(1567), + [sym_ternary_expression] = STATE(1567), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1567), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1567), + [sym_dictionary_literal] = STATE(1567), + [sym__special_literal] = STATE(1567), + [sym__playground_literal] = STATE(1567), + [sym_lambda_literal] = STATE(1567), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1567), + [sym_key_path_expression] = STATE(1567), + [sym_key_path_string_expression] = STATE(1567), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1567), + [sym__comparison_operator] = STATE(1567), + [sym__additive_operator] = STATE(1567), + [sym__multiplicative_operator] = STATE(1567), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1567), + [sym__referenceable_operator] = STATE(1567), + [sym__eq_eq] = STATE(1567), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2555), + [sym_real_literal] = ACTIONS(2557), + [sym_integer_literal] = ACTIONS(2555), + [sym_hex_literal] = ACTIONS(2557), + [sym_oct_literal] = ACTIONS(2557), + [sym_bin_literal] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2555), + [anon_sym_GT] = ACTIONS(2555), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2555), + [anon_sym_POUNDfileID] = ACTIONS(2557), + [anon_sym_POUNDfilePath] = ACTIONS(2557), + [anon_sym_POUNDline] = ACTIONS(2557), + [anon_sym_POUNDcolumn] = ACTIONS(2557), + [anon_sym_POUNDfunction] = ACTIONS(2557), + [anon_sym_POUNDdsohandle] = ACTIONS(2557), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2555), + [anon_sym_LT_EQ] = ACTIONS(2555), + [anon_sym_GT_EQ] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_SLASH] = ACTIONS(2555), + [anon_sym_PERCENT] = ACTIONS(2555), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2557), + [sym__plus_then_ws] = ACTIONS(2557), + [sym__minus_then_ws] = ACTIONS(2557), + [sym_bang] = ACTIONS(1069), + }, + [604] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2132), + [sym_boolean_literal] = STATE(2132), + [sym__string_literal] = STATE(2132), + [sym_line_string_literal] = STATE(2132), + [sym_multi_line_string_literal] = STATE(2132), + [sym_raw_string_literal] = STATE(2132), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2132), + [sym__unary_expression] = STATE(2132), + [sym_postfix_expression] = STATE(2132), + [sym_constructor_expression] = STATE(2132), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2132), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2132), + [sym_prefix_expression] = STATE(2132), + [sym_as_expression] = STATE(2132), + [sym_selector_expression] = STATE(2132), + [sym__binary_expression] = STATE(2132), + [sym_multiplicative_expression] = STATE(2132), + [sym_additive_expression] = STATE(2132), + [sym_range_expression] = STATE(2132), + [sym_infix_expression] = STATE(2132), + [sym_nil_coalescing_expression] = STATE(2132), + [sym_check_expression] = STATE(2132), + [sym_comparison_expression] = STATE(2132), + [sym_equality_expression] = STATE(2132), + [sym_conjunction_expression] = STATE(2132), + [sym_disjunction_expression] = STATE(2132), + [sym_bitwise_operation] = STATE(2132), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2132), + [sym_await_expression] = STATE(2132), + [sym_ternary_expression] = STATE(2132), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2132), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2132), + [sym_dictionary_literal] = STATE(2132), + [sym__special_literal] = STATE(2132), + [sym__playground_literal] = STATE(2132), + [sym_lambda_literal] = STATE(2132), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2132), + [sym_key_path_expression] = STATE(2132), + [sym_key_path_string_expression] = STATE(2132), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2132), + [sym__comparison_operator] = STATE(2132), + [sym__additive_operator] = STATE(2132), + [sym__multiplicative_operator] = STATE(2132), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2132), + [sym__referenceable_operator] = STATE(2132), + [sym__eq_eq] = STATE(2132), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2559), + [sym_real_literal] = ACTIONS(2561), + [sym_integer_literal] = ACTIONS(2559), + [sym_hex_literal] = ACTIONS(2561), + [sym_oct_literal] = ACTIONS(2561), + [sym_bin_literal] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2559), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2559), + [anon_sym_POUNDfileID] = ACTIONS(2561), + [anon_sym_POUNDfilePath] = ACTIONS(2561), + [anon_sym_POUNDline] = ACTIONS(2561), + [anon_sym_POUNDcolumn] = ACTIONS(2561), + [anon_sym_POUNDfunction] = ACTIONS(2561), + [anon_sym_POUNDdsohandle] = ACTIONS(2561), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2559), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2559), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2559), + [anon_sym_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_EQ] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_SLASH] = ACTIONS(2559), + [anon_sym_PERCENT] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2561), + [sym__plus_then_ws] = ACTIONS(2561), + [sym__minus_then_ws] = ACTIONS(2561), + [sym_bang] = ACTIONS(1069), + }, + [605] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1823), + [sym_boolean_literal] = STATE(1823), + [sym__string_literal] = STATE(1823), + [sym_line_string_literal] = STATE(1823), + [sym_multi_line_string_literal] = STATE(1823), + [sym_raw_string_literal] = STATE(1823), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1823), + [sym__unary_expression] = STATE(1823), + [sym_postfix_expression] = STATE(1823), + [sym_constructor_expression] = STATE(1823), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1823), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1823), + [sym_prefix_expression] = STATE(1823), + [sym_as_expression] = STATE(1823), + [sym_selector_expression] = STATE(1823), + [sym__binary_expression] = STATE(1823), + [sym_multiplicative_expression] = STATE(1823), + [sym_additive_expression] = STATE(1823), + [sym_range_expression] = STATE(1823), + [sym_infix_expression] = STATE(1823), + [sym_nil_coalescing_expression] = STATE(1823), + [sym_check_expression] = STATE(1823), + [sym_comparison_expression] = STATE(1823), + [sym_equality_expression] = STATE(1823), + [sym_conjunction_expression] = STATE(1823), + [sym_disjunction_expression] = STATE(1823), + [sym_bitwise_operation] = STATE(1823), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1823), + [sym_await_expression] = STATE(1823), + [sym_ternary_expression] = STATE(1823), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1823), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1823), + [sym_dictionary_literal] = STATE(1823), + [sym__special_literal] = STATE(1823), + [sym__playground_literal] = STATE(1823), + [sym_lambda_literal] = STATE(1823), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1823), + [sym_key_path_expression] = STATE(1823), + [sym_key_path_string_expression] = STATE(1823), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1823), + [sym__comparison_operator] = STATE(1823), + [sym__additive_operator] = STATE(1823), + [sym__multiplicative_operator] = STATE(1823), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1823), + [sym__referenceable_operator] = STATE(1823), + [sym__eq_eq] = STATE(1823), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2563), + [sym_real_literal] = ACTIONS(2565), + [sym_integer_literal] = ACTIONS(2563), + [sym_hex_literal] = ACTIONS(2565), + [sym_oct_literal] = ACTIONS(2565), + [sym_bin_literal] = ACTIONS(2565), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_GT] = ACTIONS(2563), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2563), + [anon_sym_POUNDfileID] = ACTIONS(2565), + [anon_sym_POUNDfilePath] = ACTIONS(2565), + [anon_sym_POUNDline] = ACTIONS(2565), + [anon_sym_POUNDcolumn] = ACTIONS(2565), + [anon_sym_POUNDfunction] = ACTIONS(2565), + [anon_sym_POUNDdsohandle] = ACTIONS(2565), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2563), + [anon_sym_LT_EQ] = ACTIONS(2563), + [anon_sym_GT_EQ] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_SLASH] = ACTIONS(2563), + [anon_sym_PERCENT] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2565), + [sym__plus_then_ws] = ACTIONS(2565), + [sym__minus_then_ws] = ACTIONS(2565), + [sym_bang] = ACTIONS(1069), + }, + [606] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1824), + [sym_boolean_literal] = STATE(1824), + [sym__string_literal] = STATE(1824), + [sym_line_string_literal] = STATE(1824), + [sym_multi_line_string_literal] = STATE(1824), + [sym_raw_string_literal] = STATE(1824), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1824), + [sym__unary_expression] = STATE(1824), + [sym_postfix_expression] = STATE(1824), + [sym_constructor_expression] = STATE(1824), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1824), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1824), + [sym_prefix_expression] = STATE(1824), + [sym_as_expression] = STATE(1824), + [sym_selector_expression] = STATE(1824), + [sym__binary_expression] = STATE(1824), + [sym_multiplicative_expression] = STATE(1824), + [sym_additive_expression] = STATE(1824), + [sym_range_expression] = STATE(1824), + [sym_infix_expression] = STATE(1824), + [sym_nil_coalescing_expression] = STATE(1824), + [sym_check_expression] = STATE(1824), + [sym_comparison_expression] = STATE(1824), + [sym_equality_expression] = STATE(1824), + [sym_conjunction_expression] = STATE(1824), + [sym_disjunction_expression] = STATE(1824), + [sym_bitwise_operation] = STATE(1824), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1824), + [sym_await_expression] = STATE(1824), + [sym_ternary_expression] = STATE(1824), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1824), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1824), + [sym_dictionary_literal] = STATE(1824), + [sym__special_literal] = STATE(1824), + [sym__playground_literal] = STATE(1824), + [sym_lambda_literal] = STATE(1824), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1824), + [sym_key_path_expression] = STATE(1824), + [sym_key_path_string_expression] = STATE(1824), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1824), + [sym__comparison_operator] = STATE(1824), + [sym__additive_operator] = STATE(1824), + [sym__multiplicative_operator] = STATE(1824), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1824), + [sym__referenceable_operator] = STATE(1824), + [sym__eq_eq] = STATE(1824), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2567), + [sym_real_literal] = ACTIONS(2569), + [sym_integer_literal] = ACTIONS(2567), + [sym_hex_literal] = ACTIONS(2569), + [sym_oct_literal] = ACTIONS(2569), + [sym_bin_literal] = ACTIONS(2569), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2567), + [anon_sym_GT] = ACTIONS(2567), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2567), + [anon_sym_POUNDfileID] = ACTIONS(2569), + [anon_sym_POUNDfilePath] = ACTIONS(2569), + [anon_sym_POUNDline] = ACTIONS(2569), + [anon_sym_POUNDcolumn] = ACTIONS(2569), + [anon_sym_POUNDfunction] = ACTIONS(2569), + [anon_sym_POUNDdsohandle] = ACTIONS(2569), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2567), + [anon_sym_LT_EQ] = ACTIONS(2567), + [anon_sym_GT_EQ] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2567), + [anon_sym_SLASH] = ACTIONS(2567), + [anon_sym_PERCENT] = ACTIONS(2567), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2569), + [sym__plus_then_ws] = ACTIONS(2569), + [sym__minus_then_ws] = ACTIONS(2569), + [sym_bang] = ACTIONS(1069), + }, + [607] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2083), + [sym_boolean_literal] = STATE(2083), + [sym__string_literal] = STATE(2083), + [sym_line_string_literal] = STATE(2083), + [sym_multi_line_string_literal] = STATE(2083), + [sym_raw_string_literal] = STATE(2083), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2083), + [sym__unary_expression] = STATE(2083), + [sym_postfix_expression] = STATE(2083), + [sym_constructor_expression] = STATE(2083), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2083), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2083), + [sym_prefix_expression] = STATE(2083), + [sym_as_expression] = STATE(2083), + [sym_selector_expression] = STATE(2083), + [sym__binary_expression] = STATE(2083), + [sym_multiplicative_expression] = STATE(2083), + [sym_additive_expression] = STATE(2083), + [sym_range_expression] = STATE(2083), + [sym_infix_expression] = STATE(2083), + [sym_nil_coalescing_expression] = STATE(2083), + [sym_check_expression] = STATE(2083), + [sym_comparison_expression] = STATE(2083), + [sym_equality_expression] = STATE(2083), + [sym_conjunction_expression] = STATE(2083), + [sym_disjunction_expression] = STATE(2083), + [sym_bitwise_operation] = STATE(2083), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2083), + [sym_await_expression] = STATE(2083), + [sym_ternary_expression] = STATE(2083), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2083), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2083), + [sym_dictionary_literal] = STATE(2083), + [sym__special_literal] = STATE(2083), + [sym__playground_literal] = STATE(2083), + [sym_lambda_literal] = STATE(2083), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2083), + [sym_key_path_expression] = STATE(2083), + [sym_key_path_string_expression] = STATE(2083), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2083), + [sym__comparison_operator] = STATE(2083), + [sym__additive_operator] = STATE(2083), + [sym__multiplicative_operator] = STATE(2083), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2083), + [sym__referenceable_operator] = STATE(2083), + [sym__eq_eq] = STATE(2083), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2571), + [sym_real_literal] = ACTIONS(2573), + [sym_integer_literal] = ACTIONS(2571), + [sym_hex_literal] = ACTIONS(2573), + [sym_oct_literal] = ACTIONS(2573), + [sym_bin_literal] = ACTIONS(2573), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2571), + [anon_sym_POUNDfileID] = ACTIONS(2573), + [anon_sym_POUNDfilePath] = ACTIONS(2573), + [anon_sym_POUNDline] = ACTIONS(2573), + [anon_sym_POUNDcolumn] = ACTIONS(2573), + [anon_sym_POUNDfunction] = ACTIONS(2573), + [anon_sym_POUNDdsohandle] = ACTIONS(2573), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2571), + [anon_sym_LT_EQ] = ACTIONS(2571), + [anon_sym_GT_EQ] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2573), + [sym__plus_then_ws] = ACTIONS(2573), + [sym__minus_then_ws] = ACTIONS(2573), + [sym_bang] = ACTIONS(1069), + }, + [608] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1570), + [sym_boolean_literal] = STATE(1570), + [sym__string_literal] = STATE(1570), + [sym_line_string_literal] = STATE(1570), + [sym_multi_line_string_literal] = STATE(1570), + [sym_raw_string_literal] = STATE(1570), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1570), + [sym__unary_expression] = STATE(1570), + [sym_postfix_expression] = STATE(1570), + [sym_constructor_expression] = STATE(1570), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1570), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1570), + [sym_prefix_expression] = STATE(1570), + [sym_as_expression] = STATE(1570), + [sym_selector_expression] = STATE(1570), + [sym__binary_expression] = STATE(1570), + [sym_multiplicative_expression] = STATE(1570), + [sym_additive_expression] = STATE(1570), + [sym_range_expression] = STATE(1570), + [sym_infix_expression] = STATE(1570), + [sym_nil_coalescing_expression] = STATE(1570), + [sym_check_expression] = STATE(1570), + [sym_comparison_expression] = STATE(1570), + [sym_equality_expression] = STATE(1570), + [sym_conjunction_expression] = STATE(1570), + [sym_disjunction_expression] = STATE(1570), + [sym_bitwise_operation] = STATE(1570), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1570), + [sym_await_expression] = STATE(1570), + [sym_ternary_expression] = STATE(1570), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1570), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1570), + [sym_dictionary_literal] = STATE(1570), + [sym__special_literal] = STATE(1570), + [sym__playground_literal] = STATE(1570), + [sym_lambda_literal] = STATE(1570), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1570), + [sym_key_path_expression] = STATE(1570), + [sym_key_path_string_expression] = STATE(1570), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1570), + [sym__comparison_operator] = STATE(1570), + [sym__additive_operator] = STATE(1570), + [sym__multiplicative_operator] = STATE(1570), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1570), + [sym__referenceable_operator] = STATE(1570), + [sym__eq_eq] = STATE(1570), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2575), + [sym_real_literal] = ACTIONS(2577), + [sym_integer_literal] = ACTIONS(2575), + [sym_hex_literal] = ACTIONS(2577), + [sym_oct_literal] = ACTIONS(2577), + [sym_bin_literal] = ACTIONS(2577), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2575), + [anon_sym_GT] = ACTIONS(2575), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2575), + [anon_sym_POUNDfileID] = ACTIONS(2577), + [anon_sym_POUNDfilePath] = ACTIONS(2577), + [anon_sym_POUNDline] = ACTIONS(2577), + [anon_sym_POUNDcolumn] = ACTIONS(2577), + [anon_sym_POUNDfunction] = ACTIONS(2577), + [anon_sym_POUNDdsohandle] = ACTIONS(2577), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2575), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_SLASH] = ACTIONS(2575), + [anon_sym_PERCENT] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2577), + [sym__plus_then_ws] = ACTIONS(2577), + [sym__minus_then_ws] = ACTIONS(2577), + [sym_bang] = ACTIONS(1069), + }, + [609] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1574), + [sym_boolean_literal] = STATE(1574), + [sym__string_literal] = STATE(1574), + [sym_line_string_literal] = STATE(1574), + [sym_multi_line_string_literal] = STATE(1574), + [sym_raw_string_literal] = STATE(1574), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1574), + [sym__unary_expression] = STATE(1574), + [sym_postfix_expression] = STATE(1574), + [sym_constructor_expression] = STATE(1574), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1574), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1574), + [sym_prefix_expression] = STATE(1574), + [sym_as_expression] = STATE(1574), + [sym_selector_expression] = STATE(1574), + [sym__binary_expression] = STATE(1574), + [sym_multiplicative_expression] = STATE(1574), + [sym_additive_expression] = STATE(1574), + [sym_range_expression] = STATE(1574), + [sym_infix_expression] = STATE(1574), + [sym_nil_coalescing_expression] = STATE(1574), + [sym_check_expression] = STATE(1574), + [sym_comparison_expression] = STATE(1574), + [sym_equality_expression] = STATE(1574), + [sym_conjunction_expression] = STATE(1574), + [sym_disjunction_expression] = STATE(1574), + [sym_bitwise_operation] = STATE(1574), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1574), + [sym_await_expression] = STATE(1574), + [sym_ternary_expression] = STATE(1574), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1574), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1574), + [sym_dictionary_literal] = STATE(1574), + [sym__special_literal] = STATE(1574), + [sym__playground_literal] = STATE(1574), + [sym_lambda_literal] = STATE(1574), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1574), + [sym_key_path_expression] = STATE(1574), + [sym_key_path_string_expression] = STATE(1574), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1574), + [sym__comparison_operator] = STATE(1574), + [sym__additive_operator] = STATE(1574), + [sym__multiplicative_operator] = STATE(1574), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1574), + [sym__referenceable_operator] = STATE(1574), + [sym__eq_eq] = STATE(1574), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2579), + [sym_real_literal] = ACTIONS(2581), + [sym_integer_literal] = ACTIONS(2579), + [sym_hex_literal] = ACTIONS(2581), + [sym_oct_literal] = ACTIONS(2581), + [sym_bin_literal] = ACTIONS(2581), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2579), + [anon_sym_GT] = ACTIONS(2579), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2579), + [anon_sym_POUNDfileID] = ACTIONS(2581), + [anon_sym_POUNDfilePath] = ACTIONS(2581), + [anon_sym_POUNDline] = ACTIONS(2581), + [anon_sym_POUNDcolumn] = ACTIONS(2581), + [anon_sym_POUNDfunction] = ACTIONS(2581), + [anon_sym_POUNDdsohandle] = ACTIONS(2581), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2579), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2579), + [anon_sym_LT_EQ] = ACTIONS(2579), + [anon_sym_GT_EQ] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2579), + [anon_sym_PERCENT] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2581), + [sym__plus_then_ws] = ACTIONS(2581), + [sym__minus_then_ws] = ACTIONS(2581), + [sym_bang] = ACTIONS(1069), + }, + [610] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2154), + [sym_boolean_literal] = STATE(2154), + [sym__string_literal] = STATE(2154), + [sym_line_string_literal] = STATE(2154), + [sym_multi_line_string_literal] = STATE(2154), + [sym_raw_string_literal] = STATE(2154), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2154), + [sym__unary_expression] = STATE(2154), + [sym_postfix_expression] = STATE(2154), + [sym_constructor_expression] = STATE(2154), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2154), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2154), + [sym_prefix_expression] = STATE(2154), + [sym_as_expression] = STATE(2154), + [sym_selector_expression] = STATE(2154), + [sym__binary_expression] = STATE(2154), + [sym_multiplicative_expression] = STATE(2154), + [sym_additive_expression] = STATE(2154), + [sym_range_expression] = STATE(2154), + [sym_infix_expression] = STATE(2154), + [sym_nil_coalescing_expression] = STATE(2154), + [sym_check_expression] = STATE(2154), + [sym_comparison_expression] = STATE(2154), + [sym_equality_expression] = STATE(2154), + [sym_conjunction_expression] = STATE(2154), + [sym_disjunction_expression] = STATE(2154), + [sym_bitwise_operation] = STATE(2154), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2154), + [sym_await_expression] = STATE(2154), + [sym_ternary_expression] = STATE(2154), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2154), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2154), + [sym_dictionary_literal] = STATE(2154), + [sym__special_literal] = STATE(2154), + [sym__playground_literal] = STATE(2154), + [sym_lambda_literal] = STATE(2154), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2154), + [sym_key_path_expression] = STATE(2154), + [sym_key_path_string_expression] = STATE(2154), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2154), + [sym__comparison_operator] = STATE(2154), + [sym__additive_operator] = STATE(2154), + [sym__multiplicative_operator] = STATE(2154), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2154), + [sym__referenceable_operator] = STATE(2154), + [sym__eq_eq] = STATE(2154), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2583), + [sym_real_literal] = ACTIONS(2585), + [sym_integer_literal] = ACTIONS(2583), + [sym_hex_literal] = ACTIONS(2585), + [sym_oct_literal] = ACTIONS(2585), + [sym_bin_literal] = ACTIONS(2585), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_GT] = ACTIONS(2583), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2583), + [anon_sym_POUNDfileID] = ACTIONS(2585), + [anon_sym_POUNDfilePath] = ACTIONS(2585), + [anon_sym_POUNDline] = ACTIONS(2585), + [anon_sym_POUNDcolumn] = ACTIONS(2585), + [anon_sym_POUNDfunction] = ACTIONS(2585), + [anon_sym_POUNDdsohandle] = ACTIONS(2585), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2583), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2583), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2583), + [anon_sym_LT_EQ] = ACTIONS(2583), + [anon_sym_GT_EQ] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2583), + [anon_sym_SLASH] = ACTIONS(2583), + [anon_sym_PERCENT] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2585), + [sym__plus_then_ws] = ACTIONS(2585), + [sym__minus_then_ws] = ACTIONS(2585), + [sym_bang] = ACTIONS(1069), + }, + [611] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2153), + [sym_boolean_literal] = STATE(2153), + [sym__string_literal] = STATE(2153), + [sym_line_string_literal] = STATE(2153), + [sym_multi_line_string_literal] = STATE(2153), + [sym_raw_string_literal] = STATE(2153), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2153), + [sym__unary_expression] = STATE(2153), + [sym_postfix_expression] = STATE(2153), + [sym_constructor_expression] = STATE(2153), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2153), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2153), + [sym_prefix_expression] = STATE(2153), + [sym_as_expression] = STATE(2153), + [sym_selector_expression] = STATE(2153), + [sym__binary_expression] = STATE(2153), + [sym_multiplicative_expression] = STATE(2153), + [sym_additive_expression] = STATE(2153), + [sym_range_expression] = STATE(2153), + [sym_infix_expression] = STATE(2153), + [sym_nil_coalescing_expression] = STATE(2153), + [sym_check_expression] = STATE(2153), + [sym_comparison_expression] = STATE(2153), + [sym_equality_expression] = STATE(2153), + [sym_conjunction_expression] = STATE(2153), + [sym_disjunction_expression] = STATE(2153), + [sym_bitwise_operation] = STATE(2153), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2153), + [sym_await_expression] = STATE(2153), + [sym_ternary_expression] = STATE(2153), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2153), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2153), + [sym_dictionary_literal] = STATE(2153), + [sym__special_literal] = STATE(2153), + [sym__playground_literal] = STATE(2153), + [sym_lambda_literal] = STATE(2153), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2153), + [sym_key_path_expression] = STATE(2153), + [sym_key_path_string_expression] = STATE(2153), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2153), + [sym__comparison_operator] = STATE(2153), + [sym__additive_operator] = STATE(2153), + [sym__multiplicative_operator] = STATE(2153), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2153), + [sym__referenceable_operator] = STATE(2153), + [sym__eq_eq] = STATE(2153), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2587), + [sym_real_literal] = ACTIONS(2589), + [sym_integer_literal] = ACTIONS(2587), + [sym_hex_literal] = ACTIONS(2589), + [sym_oct_literal] = ACTIONS(2589), + [sym_bin_literal] = ACTIONS(2589), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2587), + [anon_sym_GT] = ACTIONS(2587), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2587), + [anon_sym_POUNDfileID] = ACTIONS(2589), + [anon_sym_POUNDfilePath] = ACTIONS(2589), + [anon_sym_POUNDline] = ACTIONS(2589), + [anon_sym_POUNDcolumn] = ACTIONS(2589), + [anon_sym_POUNDfunction] = ACTIONS(2589), + [anon_sym_POUNDdsohandle] = ACTIONS(2589), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2587), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2587), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2587), + [anon_sym_LT_EQ] = ACTIONS(2587), + [anon_sym_GT_EQ] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_SLASH] = ACTIONS(2587), + [anon_sym_PERCENT] = ACTIONS(2587), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2589), + [sym__plus_then_ws] = ACTIONS(2589), + [sym__minus_then_ws] = ACTIONS(2589), + [sym_bang] = ACTIONS(1069), + }, + [612] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1577), + [sym_boolean_literal] = STATE(1577), + [sym__string_literal] = STATE(1577), + [sym_line_string_literal] = STATE(1577), + [sym_multi_line_string_literal] = STATE(1577), + [sym_raw_string_literal] = STATE(1577), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1577), + [sym__unary_expression] = STATE(1577), + [sym_postfix_expression] = STATE(1577), + [sym_constructor_expression] = STATE(1577), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1577), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1577), + [sym_prefix_expression] = STATE(1577), + [sym_as_expression] = STATE(1577), + [sym_selector_expression] = STATE(1577), + [sym__binary_expression] = STATE(1577), + [sym_multiplicative_expression] = STATE(1577), + [sym_additive_expression] = STATE(1577), + [sym_range_expression] = STATE(1577), + [sym_infix_expression] = STATE(1577), + [sym_nil_coalescing_expression] = STATE(1577), + [sym_check_expression] = STATE(1577), + [sym_comparison_expression] = STATE(1577), + [sym_equality_expression] = STATE(1577), + [sym_conjunction_expression] = STATE(1577), + [sym_disjunction_expression] = STATE(1577), + [sym_bitwise_operation] = STATE(1577), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1577), + [sym_await_expression] = STATE(1577), + [sym_ternary_expression] = STATE(1577), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1577), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1577), + [sym_dictionary_literal] = STATE(1577), + [sym__special_literal] = STATE(1577), + [sym__playground_literal] = STATE(1577), + [sym_lambda_literal] = STATE(1577), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1577), + [sym_key_path_expression] = STATE(1577), + [sym_key_path_string_expression] = STATE(1577), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1577), + [sym__comparison_operator] = STATE(1577), + [sym__additive_operator] = STATE(1577), + [sym__multiplicative_operator] = STATE(1577), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1577), + [sym__referenceable_operator] = STATE(1577), + [sym__eq_eq] = STATE(1577), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2591), + [sym_real_literal] = ACTIONS(2593), + [sym_integer_literal] = ACTIONS(2591), + [sym_hex_literal] = ACTIONS(2593), + [sym_oct_literal] = ACTIONS(2593), + [sym_bin_literal] = ACTIONS(2593), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2591), + [anon_sym_GT] = ACTIONS(2591), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2591), + [anon_sym_POUNDfileID] = ACTIONS(2593), + [anon_sym_POUNDfilePath] = ACTIONS(2593), + [anon_sym_POUNDline] = ACTIONS(2593), + [anon_sym_POUNDcolumn] = ACTIONS(2593), + [anon_sym_POUNDfunction] = ACTIONS(2593), + [anon_sym_POUNDdsohandle] = ACTIONS(2593), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2591), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2591), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2591), + [anon_sym_LT_EQ] = ACTIONS(2591), + [anon_sym_GT_EQ] = ACTIONS(2591), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_SLASH] = ACTIONS(2591), + [anon_sym_PERCENT] = ACTIONS(2591), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2593), + [sym__plus_then_ws] = ACTIONS(2593), + [sym__minus_then_ws] = ACTIONS(2593), + [sym_bang] = ACTIONS(1069), + }, + [613] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2152), + [sym_boolean_literal] = STATE(2152), + [sym__string_literal] = STATE(2152), + [sym_line_string_literal] = STATE(2152), + [sym_multi_line_string_literal] = STATE(2152), + [sym_raw_string_literal] = STATE(2152), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2152), + [sym__unary_expression] = STATE(2152), + [sym_postfix_expression] = STATE(2152), + [sym_constructor_expression] = STATE(2152), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2152), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2152), + [sym_prefix_expression] = STATE(2152), + [sym_as_expression] = STATE(2152), + [sym_selector_expression] = STATE(2152), + [sym__binary_expression] = STATE(2152), + [sym_multiplicative_expression] = STATE(2152), + [sym_additive_expression] = STATE(2152), + [sym_range_expression] = STATE(2152), + [sym_infix_expression] = STATE(2152), + [sym_nil_coalescing_expression] = STATE(2152), + [sym_check_expression] = STATE(2152), + [sym_comparison_expression] = STATE(2152), + [sym_equality_expression] = STATE(2152), + [sym_conjunction_expression] = STATE(2152), + [sym_disjunction_expression] = STATE(2152), + [sym_bitwise_operation] = STATE(2152), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2152), + [sym_await_expression] = STATE(2152), + [sym_ternary_expression] = STATE(2152), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2152), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2152), + [sym_dictionary_literal] = STATE(2152), + [sym__special_literal] = STATE(2152), + [sym__playground_literal] = STATE(2152), + [sym_lambda_literal] = STATE(2152), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2152), + [sym_key_path_expression] = STATE(2152), + [sym_key_path_string_expression] = STATE(2152), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2152), + [sym__comparison_operator] = STATE(2152), + [sym__additive_operator] = STATE(2152), + [sym__multiplicative_operator] = STATE(2152), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2152), + [sym__referenceable_operator] = STATE(2152), + [sym__eq_eq] = STATE(2152), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2595), + [sym_real_literal] = ACTIONS(2597), + [sym_integer_literal] = ACTIONS(2595), + [sym_hex_literal] = ACTIONS(2597), + [sym_oct_literal] = ACTIONS(2597), + [sym_bin_literal] = ACTIONS(2597), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2595), + [anon_sym_GT] = ACTIONS(2595), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2595), + [anon_sym_POUNDfileID] = ACTIONS(2597), + [anon_sym_POUNDfilePath] = ACTIONS(2597), + [anon_sym_POUNDline] = ACTIONS(2597), + [anon_sym_POUNDcolumn] = ACTIONS(2597), + [anon_sym_POUNDfunction] = ACTIONS(2597), + [anon_sym_POUNDdsohandle] = ACTIONS(2597), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2595), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2595), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2595), + [anon_sym_LT_EQ] = ACTIONS(2595), + [anon_sym_GT_EQ] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2595), + [anon_sym_SLASH] = ACTIONS(2595), + [anon_sym_PERCENT] = ACTIONS(2595), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2597), + [sym__plus_then_ws] = ACTIONS(2597), + [sym__minus_then_ws] = ACTIONS(2597), + [sym_bang] = ACTIONS(1069), + }, + [614] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1583), + [sym_boolean_literal] = STATE(1583), + [sym__string_literal] = STATE(1583), + [sym_line_string_literal] = STATE(1583), + [sym_multi_line_string_literal] = STATE(1583), + [sym_raw_string_literal] = STATE(1583), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1583), + [sym__unary_expression] = STATE(1583), + [sym_postfix_expression] = STATE(1583), + [sym_constructor_expression] = STATE(1583), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1583), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1583), + [sym_prefix_expression] = STATE(1583), + [sym_as_expression] = STATE(1583), + [sym_selector_expression] = STATE(1583), + [sym__binary_expression] = STATE(1583), + [sym_multiplicative_expression] = STATE(1583), + [sym_additive_expression] = STATE(1583), + [sym_range_expression] = STATE(1583), + [sym_infix_expression] = STATE(1583), + [sym_nil_coalescing_expression] = STATE(1583), + [sym_check_expression] = STATE(1583), + [sym_comparison_expression] = STATE(1583), + [sym_equality_expression] = STATE(1583), + [sym_conjunction_expression] = STATE(1583), + [sym_disjunction_expression] = STATE(1583), + [sym_bitwise_operation] = STATE(1583), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1583), + [sym_await_expression] = STATE(1583), + [sym_ternary_expression] = STATE(1583), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1583), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1583), + [sym_dictionary_literal] = STATE(1583), + [sym__special_literal] = STATE(1583), + [sym__playground_literal] = STATE(1583), + [sym_lambda_literal] = STATE(1583), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1583), + [sym_key_path_expression] = STATE(1583), + [sym_key_path_string_expression] = STATE(1583), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1583), + [sym__comparison_operator] = STATE(1583), + [sym__additive_operator] = STATE(1583), + [sym__multiplicative_operator] = STATE(1583), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1583), + [sym__referenceable_operator] = STATE(1583), + [sym__eq_eq] = STATE(1583), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2599), + [sym_real_literal] = ACTIONS(2601), + [sym_integer_literal] = ACTIONS(2599), + [sym_hex_literal] = ACTIONS(2601), + [sym_oct_literal] = ACTIONS(2601), + [sym_bin_literal] = ACTIONS(2601), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_GT] = ACTIONS(2599), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2599), + [anon_sym_POUNDfileID] = ACTIONS(2601), + [anon_sym_POUNDfilePath] = ACTIONS(2601), + [anon_sym_POUNDline] = ACTIONS(2601), + [anon_sym_POUNDcolumn] = ACTIONS(2601), + [anon_sym_POUNDfunction] = ACTIONS(2601), + [anon_sym_POUNDdsohandle] = ACTIONS(2601), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2599), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2599), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2599), + [anon_sym_LT_EQ] = ACTIONS(2599), + [anon_sym_GT_EQ] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2599), + [anon_sym_SLASH] = ACTIONS(2599), + [anon_sym_PERCENT] = ACTIONS(2599), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2601), + [sym__plus_then_ws] = ACTIONS(2601), + [sym__minus_then_ws] = ACTIONS(2601), + [sym_bang] = ACTIONS(1069), + }, + [615] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2150), + [sym_boolean_literal] = STATE(2150), + [sym__string_literal] = STATE(2150), + [sym_line_string_literal] = STATE(2150), + [sym_multi_line_string_literal] = STATE(2150), + [sym_raw_string_literal] = STATE(2150), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2150), + [sym__unary_expression] = STATE(2150), + [sym_postfix_expression] = STATE(2150), + [sym_constructor_expression] = STATE(2150), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2150), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2150), + [sym_prefix_expression] = STATE(2150), + [sym_as_expression] = STATE(2150), + [sym_selector_expression] = STATE(2150), + [sym__binary_expression] = STATE(2150), + [sym_multiplicative_expression] = STATE(2150), + [sym_additive_expression] = STATE(2150), + [sym_range_expression] = STATE(2150), + [sym_infix_expression] = STATE(2150), + [sym_nil_coalescing_expression] = STATE(2150), + [sym_check_expression] = STATE(2150), + [sym_comparison_expression] = STATE(2150), + [sym_equality_expression] = STATE(2150), + [sym_conjunction_expression] = STATE(2150), + [sym_disjunction_expression] = STATE(2150), + [sym_bitwise_operation] = STATE(2150), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2150), + [sym_await_expression] = STATE(2150), + [sym_ternary_expression] = STATE(2150), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2150), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2150), + [sym_dictionary_literal] = STATE(2150), + [sym__special_literal] = STATE(2150), + [sym__playground_literal] = STATE(2150), + [sym_lambda_literal] = STATE(2150), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2150), + [sym_key_path_expression] = STATE(2150), + [sym_key_path_string_expression] = STATE(2150), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2150), + [sym__comparison_operator] = STATE(2150), + [sym__additive_operator] = STATE(2150), + [sym__multiplicative_operator] = STATE(2150), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2150), + [sym__referenceable_operator] = STATE(2150), + [sym__eq_eq] = STATE(2150), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2603), + [sym_real_literal] = ACTIONS(2605), + [sym_integer_literal] = ACTIONS(2603), + [sym_hex_literal] = ACTIONS(2605), + [sym_oct_literal] = ACTIONS(2605), + [sym_bin_literal] = ACTIONS(2605), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2603), + [anon_sym_GT] = ACTIONS(2603), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2603), + [anon_sym_POUNDfileID] = ACTIONS(2605), + [anon_sym_POUNDfilePath] = ACTIONS(2605), + [anon_sym_POUNDline] = ACTIONS(2605), + [anon_sym_POUNDcolumn] = ACTIONS(2605), + [anon_sym_POUNDfunction] = ACTIONS(2605), + [anon_sym_POUNDdsohandle] = ACTIONS(2605), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2603), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2603), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2603), + [anon_sym_LT_EQ] = ACTIONS(2603), + [anon_sym_GT_EQ] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_SLASH] = ACTIONS(2603), + [anon_sym_PERCENT] = ACTIONS(2603), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2605), + [sym__plus_then_ws] = ACTIONS(2605), + [sym__minus_then_ws] = ACTIONS(2605), + [sym_bang] = ACTIONS(1069), + }, + [616] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1584), + [sym_boolean_literal] = STATE(1584), + [sym__string_literal] = STATE(1584), + [sym_line_string_literal] = STATE(1584), + [sym_multi_line_string_literal] = STATE(1584), + [sym_raw_string_literal] = STATE(1584), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1584), + [sym__unary_expression] = STATE(1584), + [sym_postfix_expression] = STATE(1584), + [sym_constructor_expression] = STATE(1584), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1584), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1584), + [sym_prefix_expression] = STATE(1584), + [sym_as_expression] = STATE(1584), + [sym_selector_expression] = STATE(1584), + [sym__binary_expression] = STATE(1584), + [sym_multiplicative_expression] = STATE(1584), + [sym_additive_expression] = STATE(1584), + [sym_range_expression] = STATE(1584), + [sym_infix_expression] = STATE(1584), + [sym_nil_coalescing_expression] = STATE(1584), + [sym_check_expression] = STATE(1584), + [sym_comparison_expression] = STATE(1584), + [sym_equality_expression] = STATE(1584), + [sym_conjunction_expression] = STATE(1584), + [sym_disjunction_expression] = STATE(1584), + [sym_bitwise_operation] = STATE(1584), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1584), + [sym_await_expression] = STATE(1584), + [sym_ternary_expression] = STATE(1584), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1584), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1584), + [sym_dictionary_literal] = STATE(1584), + [sym__special_literal] = STATE(1584), + [sym__playground_literal] = STATE(1584), + [sym_lambda_literal] = STATE(1584), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1584), + [sym_key_path_expression] = STATE(1584), + [sym_key_path_string_expression] = STATE(1584), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1584), + [sym__comparison_operator] = STATE(1584), + [sym__additive_operator] = STATE(1584), + [sym__multiplicative_operator] = STATE(1584), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1584), + [sym__referenceable_operator] = STATE(1584), + [sym__eq_eq] = STATE(1584), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2607), + [sym_real_literal] = ACTIONS(2609), + [sym_integer_literal] = ACTIONS(2607), + [sym_hex_literal] = ACTIONS(2609), + [sym_oct_literal] = ACTIONS(2609), + [sym_bin_literal] = ACTIONS(2609), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2607), + [anon_sym_GT] = ACTIONS(2607), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2607), + [anon_sym_POUNDfileID] = ACTIONS(2609), + [anon_sym_POUNDfilePath] = ACTIONS(2609), + [anon_sym_POUNDline] = ACTIONS(2609), + [anon_sym_POUNDcolumn] = ACTIONS(2609), + [anon_sym_POUNDfunction] = ACTIONS(2609), + [anon_sym_POUNDdsohandle] = ACTIONS(2609), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2607), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_SLASH] = ACTIONS(2607), + [anon_sym_PERCENT] = ACTIONS(2607), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2609), + [sym__plus_then_ws] = ACTIONS(2609), + [sym__minus_then_ws] = ACTIONS(2609), + [sym_bang] = ACTIONS(1069), + }, + [617] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1992), + [sym_boolean_literal] = STATE(1992), + [sym__string_literal] = STATE(1992), + [sym_line_string_literal] = STATE(1992), + [sym_multi_line_string_literal] = STATE(1992), + [sym_raw_string_literal] = STATE(1992), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1992), + [sym__unary_expression] = STATE(1992), + [sym_postfix_expression] = STATE(1992), + [sym_constructor_expression] = STATE(1992), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1992), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1992), + [sym_prefix_expression] = STATE(1992), + [sym_as_expression] = STATE(1992), + [sym_selector_expression] = STATE(1992), + [sym__binary_expression] = STATE(1992), + [sym_multiplicative_expression] = STATE(1992), + [sym_additive_expression] = STATE(1992), + [sym_range_expression] = STATE(1992), + [sym_infix_expression] = STATE(1992), + [sym_nil_coalescing_expression] = STATE(1992), + [sym_check_expression] = STATE(1992), + [sym_comparison_expression] = STATE(1992), + [sym_equality_expression] = STATE(1992), + [sym_conjunction_expression] = STATE(1992), + [sym_disjunction_expression] = STATE(1992), + [sym_bitwise_operation] = STATE(1992), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1992), + [sym_await_expression] = STATE(1992), + [sym_ternary_expression] = STATE(1992), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1992), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1992), + [sym_dictionary_literal] = STATE(1992), + [sym__special_literal] = STATE(1992), + [sym__playground_literal] = STATE(1992), + [sym_lambda_literal] = STATE(1992), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1992), + [sym_key_path_expression] = STATE(1992), + [sym_key_path_string_expression] = STATE(1992), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1992), + [sym__comparison_operator] = STATE(1992), + [sym__additive_operator] = STATE(1992), + [sym__multiplicative_operator] = STATE(1992), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1992), + [sym__referenceable_operator] = STATE(1992), + [sym__eq_eq] = STATE(1992), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2611), + [sym_real_literal] = ACTIONS(2613), + [sym_integer_literal] = ACTIONS(2611), + [sym_hex_literal] = ACTIONS(2613), + [sym_oct_literal] = ACTIONS(2613), + [sym_bin_literal] = ACTIONS(2613), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2611), + [anon_sym_GT] = ACTIONS(2611), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2611), + [anon_sym_POUNDfileID] = ACTIONS(2613), + [anon_sym_POUNDfilePath] = ACTIONS(2613), + [anon_sym_POUNDline] = ACTIONS(2613), + [anon_sym_POUNDcolumn] = ACTIONS(2613), + [anon_sym_POUNDfunction] = ACTIONS(2613), + [anon_sym_POUNDdsohandle] = ACTIONS(2613), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2611), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2611), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2611), + [anon_sym_LT_EQ] = ACTIONS(2611), + [anon_sym_GT_EQ] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2611), + [anon_sym_SLASH] = ACTIONS(2611), + [anon_sym_PERCENT] = ACTIONS(2611), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2613), + [sym__plus_then_ws] = ACTIONS(2613), + [sym__minus_then_ws] = ACTIONS(2613), + [sym_bang] = ACTIONS(1069), + }, + [618] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1585), + [sym_boolean_literal] = STATE(1585), + [sym__string_literal] = STATE(1585), + [sym_line_string_literal] = STATE(1585), + [sym_multi_line_string_literal] = STATE(1585), + [sym_raw_string_literal] = STATE(1585), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1585), + [sym__unary_expression] = STATE(1585), + [sym_postfix_expression] = STATE(1585), + [sym_constructor_expression] = STATE(1585), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1585), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1585), + [sym_prefix_expression] = STATE(1585), + [sym_as_expression] = STATE(1585), + [sym_selector_expression] = STATE(1585), + [sym__binary_expression] = STATE(1585), + [sym_multiplicative_expression] = STATE(1585), + [sym_additive_expression] = STATE(1585), + [sym_range_expression] = STATE(1585), + [sym_infix_expression] = STATE(1585), + [sym_nil_coalescing_expression] = STATE(1585), + [sym_check_expression] = STATE(1585), + [sym_comparison_expression] = STATE(1585), + [sym_equality_expression] = STATE(1585), + [sym_conjunction_expression] = STATE(1585), + [sym_disjunction_expression] = STATE(1585), + [sym_bitwise_operation] = STATE(1585), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1585), + [sym_await_expression] = STATE(1585), + [sym_ternary_expression] = STATE(1585), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1585), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1585), + [sym_dictionary_literal] = STATE(1585), + [sym__special_literal] = STATE(1585), + [sym__playground_literal] = STATE(1585), + [sym_lambda_literal] = STATE(1585), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1585), + [sym_key_path_expression] = STATE(1585), + [sym_key_path_string_expression] = STATE(1585), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1585), + [sym__comparison_operator] = STATE(1585), + [sym__additive_operator] = STATE(1585), + [sym__multiplicative_operator] = STATE(1585), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1585), + [sym__referenceable_operator] = STATE(1585), + [sym__eq_eq] = STATE(1585), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2615), + [sym_real_literal] = ACTIONS(2617), + [sym_integer_literal] = ACTIONS(2615), + [sym_hex_literal] = ACTIONS(2617), + [sym_oct_literal] = ACTIONS(2617), + [sym_bin_literal] = ACTIONS(2617), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2615), + [anon_sym_GT] = ACTIONS(2615), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2615), + [anon_sym_POUNDfileID] = ACTIONS(2617), + [anon_sym_POUNDfilePath] = ACTIONS(2617), + [anon_sym_POUNDline] = ACTIONS(2617), + [anon_sym_POUNDcolumn] = ACTIONS(2617), + [anon_sym_POUNDfunction] = ACTIONS(2617), + [anon_sym_POUNDdsohandle] = ACTIONS(2617), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2615), + [anon_sym_LT_EQ] = ACTIONS(2615), + [anon_sym_GT_EQ] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_SLASH] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2617), + [sym__plus_then_ws] = ACTIONS(2617), + [sym__minus_then_ws] = ACTIONS(2617), + [sym_bang] = ACTIONS(1069), + }, + [619] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2149), + [sym_boolean_literal] = STATE(2149), + [sym__string_literal] = STATE(2149), + [sym_line_string_literal] = STATE(2149), + [sym_multi_line_string_literal] = STATE(2149), + [sym_raw_string_literal] = STATE(2149), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2149), + [sym__unary_expression] = STATE(2149), + [sym_postfix_expression] = STATE(2149), + [sym_constructor_expression] = STATE(2149), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2149), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2149), + [sym_prefix_expression] = STATE(2149), + [sym_as_expression] = STATE(2149), + [sym_selector_expression] = STATE(2149), + [sym__binary_expression] = STATE(2149), + [sym_multiplicative_expression] = STATE(2149), + [sym_additive_expression] = STATE(2149), + [sym_range_expression] = STATE(2149), + [sym_infix_expression] = STATE(2149), + [sym_nil_coalescing_expression] = STATE(2149), + [sym_check_expression] = STATE(2149), + [sym_comparison_expression] = STATE(2149), + [sym_equality_expression] = STATE(2149), + [sym_conjunction_expression] = STATE(2149), + [sym_disjunction_expression] = STATE(2149), + [sym_bitwise_operation] = STATE(2149), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2149), + [sym_await_expression] = STATE(2149), + [sym_ternary_expression] = STATE(2149), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2149), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2149), + [sym_dictionary_literal] = STATE(2149), + [sym__special_literal] = STATE(2149), + [sym__playground_literal] = STATE(2149), + [sym_lambda_literal] = STATE(2149), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2149), + [sym_key_path_expression] = STATE(2149), + [sym_key_path_string_expression] = STATE(2149), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2149), + [sym__comparison_operator] = STATE(2149), + [sym__additive_operator] = STATE(2149), + [sym__multiplicative_operator] = STATE(2149), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2149), + [sym__referenceable_operator] = STATE(2149), + [sym__eq_eq] = STATE(2149), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2619), + [sym_real_literal] = ACTIONS(2621), + [sym_integer_literal] = ACTIONS(2619), + [sym_hex_literal] = ACTIONS(2621), + [sym_oct_literal] = ACTIONS(2621), + [sym_bin_literal] = ACTIONS(2621), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2619), + [anon_sym_GT] = ACTIONS(2619), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2619), + [anon_sym_POUNDfileID] = ACTIONS(2621), + [anon_sym_POUNDfilePath] = ACTIONS(2621), + [anon_sym_POUNDline] = ACTIONS(2621), + [anon_sym_POUNDcolumn] = ACTIONS(2621), + [anon_sym_POUNDfunction] = ACTIONS(2621), + [anon_sym_POUNDdsohandle] = ACTIONS(2621), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2619), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2619), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2619), + [anon_sym_LT_EQ] = ACTIONS(2619), + [anon_sym_GT_EQ] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2619), + [anon_sym_SLASH] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2621), + [sym__plus_then_ws] = ACTIONS(2621), + [sym__minus_then_ws] = ACTIONS(2621), + [sym_bang] = ACTIONS(1069), + }, + [620] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1700), + [sym_boolean_literal] = STATE(1700), + [sym__string_literal] = STATE(1700), + [sym_line_string_literal] = STATE(1700), + [sym_multi_line_string_literal] = STATE(1700), + [sym_raw_string_literal] = STATE(1700), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1700), + [sym__unary_expression] = STATE(1700), + [sym_postfix_expression] = STATE(1700), + [sym_constructor_expression] = STATE(1700), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1700), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1700), + [sym_prefix_expression] = STATE(1700), + [sym_as_expression] = STATE(1700), + [sym_selector_expression] = STATE(1700), + [sym__binary_expression] = STATE(1700), + [sym_multiplicative_expression] = STATE(1700), + [sym_additive_expression] = STATE(1700), + [sym_range_expression] = STATE(1700), + [sym_infix_expression] = STATE(1700), + [sym_nil_coalescing_expression] = STATE(1700), + [sym_check_expression] = STATE(1700), + [sym_comparison_expression] = STATE(1700), + [sym_equality_expression] = STATE(1700), + [sym_conjunction_expression] = STATE(1700), + [sym_disjunction_expression] = STATE(1700), + [sym_bitwise_operation] = STATE(1700), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1700), + [sym_await_expression] = STATE(1700), + [sym_ternary_expression] = STATE(1700), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1700), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1700), + [sym_dictionary_literal] = STATE(1700), + [sym__special_literal] = STATE(1700), + [sym__playground_literal] = STATE(1700), + [sym_lambda_literal] = STATE(1700), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1700), + [sym_key_path_expression] = STATE(1700), + [sym_key_path_string_expression] = STATE(1700), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1700), + [sym__comparison_operator] = STATE(1700), + [sym__additive_operator] = STATE(1700), + [sym__multiplicative_operator] = STATE(1700), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1700), + [sym__referenceable_operator] = STATE(1700), + [sym__eq_eq] = STATE(1700), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2623), + [sym_real_literal] = ACTIONS(2625), + [sym_integer_literal] = ACTIONS(2623), + [sym_hex_literal] = ACTIONS(2625), + [sym_oct_literal] = ACTIONS(2625), + [sym_bin_literal] = ACTIONS(2625), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2623), + [anon_sym_GT] = ACTIONS(2623), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2623), + [anon_sym_POUNDfileID] = ACTIONS(2625), + [anon_sym_POUNDfilePath] = ACTIONS(2625), + [anon_sym_POUNDline] = ACTIONS(2625), + [anon_sym_POUNDcolumn] = ACTIONS(2625), + [anon_sym_POUNDfunction] = ACTIONS(2625), + [anon_sym_POUNDdsohandle] = ACTIONS(2625), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2623), + [anon_sym_LT_EQ] = ACTIONS(2623), + [anon_sym_GT_EQ] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2623), + [anon_sym_SLASH] = ACTIONS(2623), + [anon_sym_PERCENT] = ACTIONS(2623), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2625), + [sym__plus_then_ws] = ACTIONS(2625), + [sym__minus_then_ws] = ACTIONS(2625), + [sym_bang] = ACTIONS(1069), + }, + [621] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2074), + [sym_boolean_literal] = STATE(2074), + [sym__string_literal] = STATE(2074), + [sym_line_string_literal] = STATE(2074), + [sym_multi_line_string_literal] = STATE(2074), + [sym_raw_string_literal] = STATE(2074), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2074), + [sym__unary_expression] = STATE(2074), + [sym_postfix_expression] = STATE(2074), + [sym_constructor_expression] = STATE(2074), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2074), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2074), + [sym_prefix_expression] = STATE(2074), + [sym_as_expression] = STATE(2074), + [sym_selector_expression] = STATE(2074), + [sym__binary_expression] = STATE(2074), + [sym_multiplicative_expression] = STATE(2074), + [sym_additive_expression] = STATE(2074), + [sym_range_expression] = STATE(2074), + [sym_infix_expression] = STATE(2074), + [sym_nil_coalescing_expression] = STATE(2074), + [sym_check_expression] = STATE(2074), + [sym_comparison_expression] = STATE(2074), + [sym_equality_expression] = STATE(2074), + [sym_conjunction_expression] = STATE(2074), + [sym_disjunction_expression] = STATE(2074), + [sym_bitwise_operation] = STATE(2074), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2074), + [sym_await_expression] = STATE(2074), + [sym_ternary_expression] = STATE(2074), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2074), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2074), + [sym_dictionary_literal] = STATE(2074), + [sym__special_literal] = STATE(2074), + [sym__playground_literal] = STATE(2074), + [sym_lambda_literal] = STATE(2074), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2074), + [sym_key_path_expression] = STATE(2074), + [sym_key_path_string_expression] = STATE(2074), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2074), + [sym__comparison_operator] = STATE(2074), + [sym__additive_operator] = STATE(2074), + [sym__multiplicative_operator] = STATE(2074), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2074), + [sym__referenceable_operator] = STATE(2074), + [sym__eq_eq] = STATE(2074), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2627), + [sym_real_literal] = ACTIONS(2629), + [sym_integer_literal] = ACTIONS(2627), + [sym_hex_literal] = ACTIONS(2629), + [sym_oct_literal] = ACTIONS(2629), + [sym_bin_literal] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2627), + [anon_sym_POUNDfileID] = ACTIONS(2629), + [anon_sym_POUNDfilePath] = ACTIONS(2629), + [anon_sym_POUNDline] = ACTIONS(2629), + [anon_sym_POUNDcolumn] = ACTIONS(2629), + [anon_sym_POUNDfunction] = ACTIONS(2629), + [anon_sym_POUNDdsohandle] = ACTIONS(2629), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2629), + [sym__plus_then_ws] = ACTIONS(2629), + [sym__minus_then_ws] = ACTIONS(2629), + [sym_bang] = ACTIONS(1069), + }, + [622] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2148), + [sym_boolean_literal] = STATE(2148), + [sym__string_literal] = STATE(2148), + [sym_line_string_literal] = STATE(2148), + [sym_multi_line_string_literal] = STATE(2148), + [sym_raw_string_literal] = STATE(2148), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2148), + [sym__unary_expression] = STATE(2148), + [sym_postfix_expression] = STATE(2148), + [sym_constructor_expression] = STATE(2148), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2148), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2148), + [sym_prefix_expression] = STATE(2148), + [sym_as_expression] = STATE(2148), + [sym_selector_expression] = STATE(2148), + [sym__binary_expression] = STATE(2148), + [sym_multiplicative_expression] = STATE(2148), + [sym_additive_expression] = STATE(2148), + [sym_range_expression] = STATE(2148), + [sym_infix_expression] = STATE(2148), + [sym_nil_coalescing_expression] = STATE(2148), + [sym_check_expression] = STATE(2148), + [sym_comparison_expression] = STATE(2148), + [sym_equality_expression] = STATE(2148), + [sym_conjunction_expression] = STATE(2148), + [sym_disjunction_expression] = STATE(2148), + [sym_bitwise_operation] = STATE(2148), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2148), + [sym_await_expression] = STATE(2148), + [sym_ternary_expression] = STATE(2148), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2148), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2148), + [sym_dictionary_literal] = STATE(2148), + [sym__special_literal] = STATE(2148), + [sym__playground_literal] = STATE(2148), + [sym_lambda_literal] = STATE(2148), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2148), + [sym_key_path_expression] = STATE(2148), + [sym_key_path_string_expression] = STATE(2148), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2148), + [sym__comparison_operator] = STATE(2148), + [sym__additive_operator] = STATE(2148), + [sym__multiplicative_operator] = STATE(2148), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2148), + [sym__referenceable_operator] = STATE(2148), + [sym__eq_eq] = STATE(2148), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2631), + [sym_real_literal] = ACTIONS(2633), + [sym_integer_literal] = ACTIONS(2631), + [sym_hex_literal] = ACTIONS(2633), + [sym_oct_literal] = ACTIONS(2633), + [sym_bin_literal] = ACTIONS(2633), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2631), + [anon_sym_POUNDfileID] = ACTIONS(2633), + [anon_sym_POUNDfilePath] = ACTIONS(2633), + [anon_sym_POUNDline] = ACTIONS(2633), + [anon_sym_POUNDcolumn] = ACTIONS(2633), + [anon_sym_POUNDfunction] = ACTIONS(2633), + [anon_sym_POUNDdsohandle] = ACTIONS(2633), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2633), + [sym__plus_then_ws] = ACTIONS(2633), + [sym__minus_then_ws] = ACTIONS(2633), + [sym_bang] = ACTIONS(1069), + }, + [623] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1699), + [sym_boolean_literal] = STATE(1699), + [sym__string_literal] = STATE(1699), + [sym_line_string_literal] = STATE(1699), + [sym_multi_line_string_literal] = STATE(1699), + [sym_raw_string_literal] = STATE(1699), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1699), + [sym__unary_expression] = STATE(1699), + [sym_postfix_expression] = STATE(1699), + [sym_constructor_expression] = STATE(1699), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1699), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1699), + [sym_prefix_expression] = STATE(1699), + [sym_as_expression] = STATE(1699), + [sym_selector_expression] = STATE(1699), + [sym__binary_expression] = STATE(1699), + [sym_multiplicative_expression] = STATE(1699), + [sym_additive_expression] = STATE(1699), + [sym_range_expression] = STATE(1699), + [sym_infix_expression] = STATE(1699), + [sym_nil_coalescing_expression] = STATE(1699), + [sym_check_expression] = STATE(1699), + [sym_comparison_expression] = STATE(1699), + [sym_equality_expression] = STATE(1699), + [sym_conjunction_expression] = STATE(1699), + [sym_disjunction_expression] = STATE(1699), + [sym_bitwise_operation] = STATE(1699), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1699), + [sym_await_expression] = STATE(1699), + [sym_ternary_expression] = STATE(1699), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1699), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1699), + [sym_dictionary_literal] = STATE(1699), + [sym__special_literal] = STATE(1699), + [sym__playground_literal] = STATE(1699), + [sym_lambda_literal] = STATE(1699), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1699), + [sym_key_path_expression] = STATE(1699), + [sym_key_path_string_expression] = STATE(1699), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1699), + [sym__comparison_operator] = STATE(1699), + [sym__additive_operator] = STATE(1699), + [sym__multiplicative_operator] = STATE(1699), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1699), + [sym__referenceable_operator] = STATE(1699), + [sym__eq_eq] = STATE(1699), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2635), + [sym_real_literal] = ACTIONS(2637), + [sym_integer_literal] = ACTIONS(2635), + [sym_hex_literal] = ACTIONS(2637), + [sym_oct_literal] = ACTIONS(2637), + [sym_bin_literal] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2635), + [anon_sym_POUNDfileID] = ACTIONS(2637), + [anon_sym_POUNDfilePath] = ACTIONS(2637), + [anon_sym_POUNDline] = ACTIONS(2637), + [anon_sym_POUNDcolumn] = ACTIONS(2637), + [anon_sym_POUNDfunction] = ACTIONS(2637), + [anon_sym_POUNDdsohandle] = ACTIONS(2637), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2635), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2637), + [sym__plus_then_ws] = ACTIONS(2637), + [sym__minus_then_ws] = ACTIONS(2637), + [sym_bang] = ACTIONS(1069), + }, + [624] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1976), + [sym_boolean_literal] = STATE(1976), + [sym__string_literal] = STATE(1976), + [sym_line_string_literal] = STATE(1976), + [sym_multi_line_string_literal] = STATE(1976), + [sym_raw_string_literal] = STATE(1976), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1976), + [sym__unary_expression] = STATE(1976), + [sym_postfix_expression] = STATE(1976), + [sym_constructor_expression] = STATE(1976), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1976), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1976), + [sym_prefix_expression] = STATE(1976), + [sym_as_expression] = STATE(1976), + [sym_selector_expression] = STATE(1976), + [sym__binary_expression] = STATE(1976), + [sym_multiplicative_expression] = STATE(1976), + [sym_additive_expression] = STATE(1976), + [sym_range_expression] = STATE(1976), + [sym_infix_expression] = STATE(1976), + [sym_nil_coalescing_expression] = STATE(1976), + [sym_check_expression] = STATE(1976), + [sym_comparison_expression] = STATE(1976), + [sym_equality_expression] = STATE(1976), + [sym_conjunction_expression] = STATE(1976), + [sym_disjunction_expression] = STATE(1976), + [sym_bitwise_operation] = STATE(1976), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1976), + [sym_await_expression] = STATE(1976), + [sym_ternary_expression] = STATE(1976), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1976), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1976), + [sym_dictionary_literal] = STATE(1976), + [sym__special_literal] = STATE(1976), + [sym__playground_literal] = STATE(1976), + [sym_lambda_literal] = STATE(1976), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1976), + [sym_key_path_expression] = STATE(1976), + [sym_key_path_string_expression] = STATE(1976), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1976), + [sym__comparison_operator] = STATE(1976), + [sym__additive_operator] = STATE(1976), + [sym__multiplicative_operator] = STATE(1976), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1976), + [sym__referenceable_operator] = STATE(1976), + [sym__eq_eq] = STATE(1976), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2639), + [sym_real_literal] = ACTIONS(2641), + [sym_integer_literal] = ACTIONS(2639), + [sym_hex_literal] = ACTIONS(2641), + [sym_oct_literal] = ACTIONS(2641), + [sym_bin_literal] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_GT] = ACTIONS(2639), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2639), + [anon_sym_POUNDfileID] = ACTIONS(2641), + [anon_sym_POUNDfilePath] = ACTIONS(2641), + [anon_sym_POUNDline] = ACTIONS(2641), + [anon_sym_POUNDcolumn] = ACTIONS(2641), + [anon_sym_POUNDfunction] = ACTIONS(2641), + [anon_sym_POUNDdsohandle] = ACTIONS(2641), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2639), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_PERCENT] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2641), + [sym__plus_then_ws] = ACTIONS(2641), + [sym__minus_then_ws] = ACTIONS(2641), + [sym_bang] = ACTIONS(1069), + }, + [625] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2069), + [sym_boolean_literal] = STATE(2069), + [sym__string_literal] = STATE(2069), + [sym_line_string_literal] = STATE(2069), + [sym_multi_line_string_literal] = STATE(2069), + [sym_raw_string_literal] = STATE(2069), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2069), + [sym__unary_expression] = STATE(2069), + [sym_postfix_expression] = STATE(2069), + [sym_constructor_expression] = STATE(2069), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2069), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2069), + [sym_prefix_expression] = STATE(2069), + [sym_as_expression] = STATE(2069), + [sym_selector_expression] = STATE(2069), + [sym__binary_expression] = STATE(2069), + [sym_multiplicative_expression] = STATE(2069), + [sym_additive_expression] = STATE(2069), + [sym_range_expression] = STATE(2069), + [sym_infix_expression] = STATE(2069), + [sym_nil_coalescing_expression] = STATE(2069), + [sym_check_expression] = STATE(2069), + [sym_comparison_expression] = STATE(2069), + [sym_equality_expression] = STATE(2069), + [sym_conjunction_expression] = STATE(2069), + [sym_disjunction_expression] = STATE(2069), + [sym_bitwise_operation] = STATE(2069), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2069), + [sym_await_expression] = STATE(2069), + [sym_ternary_expression] = STATE(2069), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2069), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2069), + [sym_dictionary_literal] = STATE(2069), + [sym__special_literal] = STATE(2069), + [sym__playground_literal] = STATE(2069), + [sym_lambda_literal] = STATE(2069), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2069), + [sym_key_path_expression] = STATE(2069), + [sym_key_path_string_expression] = STATE(2069), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2069), + [sym__comparison_operator] = STATE(2069), + [sym__additive_operator] = STATE(2069), + [sym__multiplicative_operator] = STATE(2069), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2069), + [sym__referenceable_operator] = STATE(2069), + [sym__eq_eq] = STATE(2069), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2643), + [sym_real_literal] = ACTIONS(2645), + [sym_integer_literal] = ACTIONS(2643), + [sym_hex_literal] = ACTIONS(2645), + [sym_oct_literal] = ACTIONS(2645), + [sym_bin_literal] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2643), + [anon_sym_GT] = ACTIONS(2643), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2643), + [anon_sym_POUNDfileID] = ACTIONS(2645), + [anon_sym_POUNDfilePath] = ACTIONS(2645), + [anon_sym_POUNDline] = ACTIONS(2645), + [anon_sym_POUNDcolumn] = ACTIONS(2645), + [anon_sym_POUNDfunction] = ACTIONS(2645), + [anon_sym_POUNDdsohandle] = ACTIONS(2645), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2643), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_SLASH] = ACTIONS(2643), + [anon_sym_PERCENT] = ACTIONS(2643), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2645), + [sym__plus_then_ws] = ACTIONS(2645), + [sym__minus_then_ws] = ACTIONS(2645), + [sym_bang] = ACTIONS(1069), + }, + [626] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2068), + [sym_boolean_literal] = STATE(2068), + [sym__string_literal] = STATE(2068), + [sym_line_string_literal] = STATE(2068), + [sym_multi_line_string_literal] = STATE(2068), + [sym_raw_string_literal] = STATE(2068), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2068), + [sym__unary_expression] = STATE(2068), + [sym_postfix_expression] = STATE(2068), + [sym_constructor_expression] = STATE(2068), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2068), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2068), + [sym_prefix_expression] = STATE(2068), + [sym_as_expression] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym__binary_expression] = STATE(2068), + [sym_multiplicative_expression] = STATE(2068), + [sym_additive_expression] = STATE(2068), + [sym_range_expression] = STATE(2068), + [sym_infix_expression] = STATE(2068), + [sym_nil_coalescing_expression] = STATE(2068), + [sym_check_expression] = STATE(2068), + [sym_comparison_expression] = STATE(2068), + [sym_equality_expression] = STATE(2068), + [sym_conjunction_expression] = STATE(2068), + [sym_disjunction_expression] = STATE(2068), + [sym_bitwise_operation] = STATE(2068), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2068), + [sym_await_expression] = STATE(2068), + [sym_ternary_expression] = STATE(2068), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2068), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2068), + [sym_dictionary_literal] = STATE(2068), + [sym__special_literal] = STATE(2068), + [sym__playground_literal] = STATE(2068), + [sym_lambda_literal] = STATE(2068), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2068), + [sym_key_path_expression] = STATE(2068), + [sym_key_path_string_expression] = STATE(2068), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2068), + [sym__comparison_operator] = STATE(2068), + [sym__additive_operator] = STATE(2068), + [sym__multiplicative_operator] = STATE(2068), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2068), + [sym__referenceable_operator] = STATE(2068), + [sym__eq_eq] = STATE(2068), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2647), + [sym_real_literal] = ACTIONS(2649), + [sym_integer_literal] = ACTIONS(2647), + [sym_hex_literal] = ACTIONS(2649), + [sym_oct_literal] = ACTIONS(2649), + [sym_bin_literal] = ACTIONS(2649), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_GT] = ACTIONS(2647), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2647), + [anon_sym_POUNDfileID] = ACTIONS(2649), + [anon_sym_POUNDfilePath] = ACTIONS(2649), + [anon_sym_POUNDline] = ACTIONS(2649), + [anon_sym_POUNDcolumn] = ACTIONS(2649), + [anon_sym_POUNDfunction] = ACTIONS(2649), + [anon_sym_POUNDdsohandle] = ACTIONS(2649), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2647), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2647), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_PERCENT] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2649), + [sym__plus_then_ws] = ACTIONS(2649), + [sym__minus_then_ws] = ACTIONS(2649), + [sym_bang] = ACTIONS(1069), + }, + [627] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1649), + [sym_boolean_literal] = STATE(1649), + [sym__string_literal] = STATE(1649), + [sym_line_string_literal] = STATE(1649), + [sym_multi_line_string_literal] = STATE(1649), + [sym_raw_string_literal] = STATE(1649), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1649), + [sym__unary_expression] = STATE(1649), + [sym_postfix_expression] = STATE(1649), + [sym_constructor_expression] = STATE(1649), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1649), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1649), + [sym_prefix_expression] = STATE(1649), + [sym_as_expression] = STATE(1649), + [sym_selector_expression] = STATE(1649), + [sym__binary_expression] = STATE(1649), + [sym_multiplicative_expression] = STATE(1649), + [sym_additive_expression] = STATE(1649), + [sym_range_expression] = STATE(1649), + [sym_infix_expression] = STATE(1649), + [sym_nil_coalescing_expression] = STATE(1649), + [sym_check_expression] = STATE(1649), + [sym_comparison_expression] = STATE(1649), + [sym_equality_expression] = STATE(1649), + [sym_conjunction_expression] = STATE(1649), + [sym_disjunction_expression] = STATE(1649), + [sym_bitwise_operation] = STATE(1649), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1649), + [sym_await_expression] = STATE(1649), + [sym_ternary_expression] = STATE(1649), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1649), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1649), + [sym_dictionary_literal] = STATE(1649), + [sym__special_literal] = STATE(1649), + [sym__playground_literal] = STATE(1649), + [sym_lambda_literal] = STATE(1649), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1649), + [sym_key_path_expression] = STATE(1649), + [sym_key_path_string_expression] = STATE(1649), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1649), + [sym__comparison_operator] = STATE(1649), + [sym__additive_operator] = STATE(1649), + [sym__multiplicative_operator] = STATE(1649), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1649), + [sym__referenceable_operator] = STATE(1649), + [sym__eq_eq] = STATE(1649), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2651), + [sym_real_literal] = ACTIONS(2653), + [sym_integer_literal] = ACTIONS(2651), + [sym_hex_literal] = ACTIONS(2653), + [sym_oct_literal] = ACTIONS(2653), + [sym_bin_literal] = ACTIONS(2653), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2651), + [anon_sym_GT] = ACTIONS(2651), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2651), + [anon_sym_POUNDfileID] = ACTIONS(2653), + [anon_sym_POUNDfilePath] = ACTIONS(2653), + [anon_sym_POUNDline] = ACTIONS(2653), + [anon_sym_POUNDcolumn] = ACTIONS(2653), + [anon_sym_POUNDfunction] = ACTIONS(2653), + [anon_sym_POUNDdsohandle] = ACTIONS(2653), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2651), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2651), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2651), + [anon_sym_LT_EQ] = ACTIONS(2651), + [anon_sym_GT_EQ] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_SLASH] = ACTIONS(2651), + [anon_sym_PERCENT] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2653), + [sym__plus_then_ws] = ACTIONS(2653), + [sym__minus_then_ws] = ACTIONS(2653), + [sym_bang] = ACTIONS(1069), + }, + [628] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1588), + [sym_boolean_literal] = STATE(1588), + [sym__string_literal] = STATE(1588), + [sym_line_string_literal] = STATE(1588), + [sym_multi_line_string_literal] = STATE(1588), + [sym_raw_string_literal] = STATE(1588), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1588), + [sym__unary_expression] = STATE(1588), + [sym_postfix_expression] = STATE(1588), + [sym_constructor_expression] = STATE(1588), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1588), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1588), + [sym_prefix_expression] = STATE(1588), + [sym_as_expression] = STATE(1588), + [sym_selector_expression] = STATE(1588), + [sym__binary_expression] = STATE(1588), + [sym_multiplicative_expression] = STATE(1588), + [sym_additive_expression] = STATE(1588), + [sym_range_expression] = STATE(1588), + [sym_infix_expression] = STATE(1588), + [sym_nil_coalescing_expression] = STATE(1588), + [sym_check_expression] = STATE(1588), + [sym_comparison_expression] = STATE(1588), + [sym_equality_expression] = STATE(1588), + [sym_conjunction_expression] = STATE(1588), + [sym_disjunction_expression] = STATE(1588), + [sym_bitwise_operation] = STATE(1588), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1588), + [sym_await_expression] = STATE(1588), + [sym_ternary_expression] = STATE(1588), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1588), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1588), + [sym_dictionary_literal] = STATE(1588), + [sym__special_literal] = STATE(1588), + [sym__playground_literal] = STATE(1588), + [sym_lambda_literal] = STATE(1588), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1588), + [sym_key_path_expression] = STATE(1588), + [sym_key_path_string_expression] = STATE(1588), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1588), + [sym__comparison_operator] = STATE(1588), + [sym__additive_operator] = STATE(1588), + [sym__multiplicative_operator] = STATE(1588), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1588), + [sym__referenceable_operator] = STATE(1588), + [sym__eq_eq] = STATE(1588), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2655), + [sym_real_literal] = ACTIONS(2657), + [sym_integer_literal] = ACTIONS(2655), + [sym_hex_literal] = ACTIONS(2657), + [sym_oct_literal] = ACTIONS(2657), + [sym_bin_literal] = ACTIONS(2657), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2655), + [anon_sym_GT] = ACTIONS(2655), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2655), + [anon_sym_POUNDfileID] = ACTIONS(2657), + [anon_sym_POUNDfilePath] = ACTIONS(2657), + [anon_sym_POUNDline] = ACTIONS(2657), + [anon_sym_POUNDcolumn] = ACTIONS(2657), + [anon_sym_POUNDfunction] = ACTIONS(2657), + [anon_sym_POUNDdsohandle] = ACTIONS(2657), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2655), + [anon_sym_LT_EQ] = ACTIONS(2655), + [anon_sym_GT_EQ] = ACTIONS(2655), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_SLASH] = ACTIONS(2655), + [anon_sym_PERCENT] = ACTIONS(2655), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2657), + [sym__plus_then_ws] = ACTIONS(2657), + [sym__minus_then_ws] = ACTIONS(2657), + [sym_bang] = ACTIONS(1069), + }, + [629] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2266), + [sym_boolean_literal] = STATE(2266), + [sym__string_literal] = STATE(2266), + [sym_line_string_literal] = STATE(2266), + [sym_multi_line_string_literal] = STATE(2266), + [sym_raw_string_literal] = STATE(2266), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2266), + [sym__unary_expression] = STATE(2266), + [sym_postfix_expression] = STATE(2266), + [sym_constructor_expression] = STATE(2266), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2266), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2266), + [sym_prefix_expression] = STATE(2266), + [sym_as_expression] = STATE(2266), + [sym_selector_expression] = STATE(2266), + [sym__binary_expression] = STATE(2266), + [sym_multiplicative_expression] = STATE(2266), + [sym_additive_expression] = STATE(2266), + [sym_range_expression] = STATE(2266), + [sym_infix_expression] = STATE(2266), + [sym_nil_coalescing_expression] = STATE(2266), + [sym_check_expression] = STATE(2266), + [sym_comparison_expression] = STATE(2266), + [sym_equality_expression] = STATE(2266), + [sym_conjunction_expression] = STATE(2266), + [sym_disjunction_expression] = STATE(2266), + [sym_bitwise_operation] = STATE(2266), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2266), + [sym_await_expression] = STATE(2266), + [sym_ternary_expression] = STATE(2266), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2266), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2266), + [sym_dictionary_literal] = STATE(2266), + [sym__special_literal] = STATE(2266), + [sym__playground_literal] = STATE(2266), + [sym_lambda_literal] = STATE(2266), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2266), + [sym_key_path_expression] = STATE(2266), + [sym_key_path_string_expression] = STATE(2266), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2266), + [sym__comparison_operator] = STATE(2266), + [sym__additive_operator] = STATE(2266), + [sym__multiplicative_operator] = STATE(2266), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2266), + [sym__referenceable_operator] = STATE(2266), + [sym__eq_eq] = STATE(2266), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(2659), + [sym_real_literal] = ACTIONS(2661), + [sym_integer_literal] = ACTIONS(2659), + [sym_hex_literal] = ACTIONS(2661), + [sym_oct_literal] = ACTIONS(2661), + [sym_bin_literal] = ACTIONS(2661), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_GT] = ACTIONS(2659), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(2659), + [anon_sym_POUNDfileID] = ACTIONS(2661), + [anon_sym_POUNDfilePath] = ACTIONS(2661), + [anon_sym_POUNDline] = ACTIONS(2661), + [anon_sym_POUNDcolumn] = ACTIONS(2661), + [anon_sym_POUNDfunction] = ACTIONS(2661), + [anon_sym_POUNDdsohandle] = ACTIONS(2661), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(2659), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2659), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2659), + [anon_sym_LT_EQ] = ACTIONS(2659), + [anon_sym_GT_EQ] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_SLASH] = ACTIONS(2659), + [anon_sym_PERCENT] = ACTIONS(2659), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(2661), + [sym__plus_then_ws] = ACTIONS(2661), + [sym__minus_then_ws] = ACTIONS(2661), + [sym_bang] = ACTIONS(833), + }, + [630] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1939), + [sym_boolean_literal] = STATE(1939), + [sym__string_literal] = STATE(1939), + [sym_line_string_literal] = STATE(1939), + [sym_multi_line_string_literal] = STATE(1939), + [sym_raw_string_literal] = STATE(1939), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1939), + [sym__unary_expression] = STATE(1939), + [sym_postfix_expression] = STATE(1939), + [sym_constructor_expression] = STATE(1939), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1939), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1939), + [sym_prefix_expression] = STATE(1939), + [sym_as_expression] = STATE(1939), + [sym_selector_expression] = STATE(1939), + [sym__binary_expression] = STATE(1939), + [sym_multiplicative_expression] = STATE(1939), + [sym_additive_expression] = STATE(1939), + [sym_range_expression] = STATE(1939), + [sym_infix_expression] = STATE(1939), + [sym_nil_coalescing_expression] = STATE(1939), + [sym_check_expression] = STATE(1939), + [sym_comparison_expression] = STATE(1939), + [sym_equality_expression] = STATE(1939), + [sym_conjunction_expression] = STATE(1939), + [sym_disjunction_expression] = STATE(1939), + [sym_bitwise_operation] = STATE(1939), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1939), + [sym_await_expression] = STATE(1939), + [sym_ternary_expression] = STATE(1939), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1939), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1939), + [sym_dictionary_literal] = STATE(1939), + [sym__special_literal] = STATE(1939), + [sym__playground_literal] = STATE(1939), + [sym_lambda_literal] = STATE(1939), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1939), + [sym_key_path_expression] = STATE(1939), + [sym_key_path_string_expression] = STATE(1939), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1939), + [sym__comparison_operator] = STATE(1939), + [sym__additive_operator] = STATE(1939), + [sym__multiplicative_operator] = STATE(1939), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1939), + [sym__referenceable_operator] = STATE(1939), + [sym__eq_eq] = STATE(1939), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2663), + [sym_real_literal] = ACTIONS(2665), + [sym_integer_literal] = ACTIONS(2663), + [sym_hex_literal] = ACTIONS(2665), + [sym_oct_literal] = ACTIONS(2665), + [sym_bin_literal] = ACTIONS(2665), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2663), + [anon_sym_GT] = ACTIONS(2663), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2663), + [anon_sym_POUNDfileID] = ACTIONS(2665), + [anon_sym_POUNDfilePath] = ACTIONS(2665), + [anon_sym_POUNDline] = ACTIONS(2665), + [anon_sym_POUNDcolumn] = ACTIONS(2665), + [anon_sym_POUNDfunction] = ACTIONS(2665), + [anon_sym_POUNDdsohandle] = ACTIONS(2665), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2663), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2663), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2663), + [anon_sym_LT_EQ] = ACTIONS(2663), + [anon_sym_GT_EQ] = ACTIONS(2663), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2663), + [anon_sym_SLASH] = ACTIONS(2663), + [anon_sym_PERCENT] = ACTIONS(2663), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2665), + [sym__plus_then_ws] = ACTIONS(2665), + [sym__minus_then_ws] = ACTIONS(2665), + [sym_bang] = ACTIONS(1069), + }, + [631] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1709), + [sym_boolean_literal] = STATE(1709), + [sym__string_literal] = STATE(1709), + [sym_line_string_literal] = STATE(1709), + [sym_multi_line_string_literal] = STATE(1709), + [sym_raw_string_literal] = STATE(1709), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1709), + [sym__unary_expression] = STATE(1709), + [sym_postfix_expression] = STATE(1709), + [sym_constructor_expression] = STATE(1709), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1709), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1709), + [sym_prefix_expression] = STATE(1709), + [sym_as_expression] = STATE(1709), + [sym_selector_expression] = STATE(1709), + [sym__binary_expression] = STATE(1709), + [sym_multiplicative_expression] = STATE(1709), + [sym_additive_expression] = STATE(1709), + [sym_range_expression] = STATE(1709), + [sym_infix_expression] = STATE(1709), + [sym_nil_coalescing_expression] = STATE(1709), + [sym_check_expression] = STATE(1709), + [sym_comparison_expression] = STATE(1709), + [sym_equality_expression] = STATE(1709), + [sym_conjunction_expression] = STATE(1709), + [sym_disjunction_expression] = STATE(1709), + [sym_bitwise_operation] = STATE(1709), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1709), + [sym_await_expression] = STATE(1709), + [sym_ternary_expression] = STATE(1709), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1709), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1709), + [sym_dictionary_literal] = STATE(1709), + [sym__special_literal] = STATE(1709), + [sym__playground_literal] = STATE(1709), + [sym_lambda_literal] = STATE(1709), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1709), + [sym_key_path_expression] = STATE(1709), + [sym_key_path_string_expression] = STATE(1709), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1709), + [sym__comparison_operator] = STATE(1709), + [sym__additive_operator] = STATE(1709), + [sym__multiplicative_operator] = STATE(1709), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1709), + [sym__referenceable_operator] = STATE(1709), + [sym__eq_eq] = STATE(1709), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2667), + [sym_real_literal] = ACTIONS(2669), + [sym_integer_literal] = ACTIONS(2667), + [sym_hex_literal] = ACTIONS(2669), + [sym_oct_literal] = ACTIONS(2669), + [sym_bin_literal] = ACTIONS(2669), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_GT] = ACTIONS(2667), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2667), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_SLASH] = ACTIONS(2667), + [anon_sym_PERCENT] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2669), + [sym__plus_then_ws] = ACTIONS(2669), + [sym__minus_then_ws] = ACTIONS(2669), + [sym_bang] = ACTIONS(1069), + }, + [632] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2147), + [sym_boolean_literal] = STATE(2147), + [sym__string_literal] = STATE(2147), + [sym_line_string_literal] = STATE(2147), + [sym_multi_line_string_literal] = STATE(2147), + [sym_raw_string_literal] = STATE(2147), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2147), + [sym__unary_expression] = STATE(2147), + [sym_postfix_expression] = STATE(2147), + [sym_constructor_expression] = STATE(2147), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2147), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2147), + [sym_prefix_expression] = STATE(2147), + [sym_as_expression] = STATE(2147), + [sym_selector_expression] = STATE(2147), + [sym__binary_expression] = STATE(2147), + [sym_multiplicative_expression] = STATE(2147), + [sym_additive_expression] = STATE(2147), + [sym_range_expression] = STATE(2147), + [sym_infix_expression] = STATE(2147), + [sym_nil_coalescing_expression] = STATE(2147), + [sym_check_expression] = STATE(2147), + [sym_comparison_expression] = STATE(2147), + [sym_equality_expression] = STATE(2147), + [sym_conjunction_expression] = STATE(2147), + [sym_disjunction_expression] = STATE(2147), + [sym_bitwise_operation] = STATE(2147), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2147), + [sym_await_expression] = STATE(2147), + [sym_ternary_expression] = STATE(2147), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2147), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2147), + [sym_dictionary_literal] = STATE(2147), + [sym__special_literal] = STATE(2147), + [sym__playground_literal] = STATE(2147), + [sym_lambda_literal] = STATE(2147), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2147), + [sym_key_path_expression] = STATE(2147), + [sym_key_path_string_expression] = STATE(2147), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2147), + [sym__comparison_operator] = STATE(2147), + [sym__additive_operator] = STATE(2147), + [sym__multiplicative_operator] = STATE(2147), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2147), + [sym__referenceable_operator] = STATE(2147), + [sym__eq_eq] = STATE(2147), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2671), + [sym_real_literal] = ACTIONS(2673), + [sym_integer_literal] = ACTIONS(2671), + [sym_hex_literal] = ACTIONS(2673), + [sym_oct_literal] = ACTIONS(2673), + [sym_bin_literal] = ACTIONS(2673), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2671), + [anon_sym_GT] = ACTIONS(2671), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2671), + [anon_sym_POUNDfileID] = ACTIONS(2673), + [anon_sym_POUNDfilePath] = ACTIONS(2673), + [anon_sym_POUNDline] = ACTIONS(2673), + [anon_sym_POUNDcolumn] = ACTIONS(2673), + [anon_sym_POUNDfunction] = ACTIONS(2673), + [anon_sym_POUNDdsohandle] = ACTIONS(2673), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2671), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2671), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2671), + [anon_sym_LT_EQ] = ACTIONS(2671), + [anon_sym_GT_EQ] = ACTIONS(2671), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_SLASH] = ACTIONS(2671), + [anon_sym_PERCENT] = ACTIONS(2671), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2673), + [sym__plus_then_ws] = ACTIONS(2673), + [sym__minus_then_ws] = ACTIONS(2673), + [sym_bang] = ACTIONS(1069), + }, + [633] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2146), + [sym_boolean_literal] = STATE(2146), + [sym__string_literal] = STATE(2146), + [sym_line_string_literal] = STATE(2146), + [sym_multi_line_string_literal] = STATE(2146), + [sym_raw_string_literal] = STATE(2146), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2146), + [sym__unary_expression] = STATE(2146), + [sym_postfix_expression] = STATE(2146), + [sym_constructor_expression] = STATE(2146), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2146), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2146), + [sym_prefix_expression] = STATE(2146), + [sym_as_expression] = STATE(2146), + [sym_selector_expression] = STATE(2146), + [sym__binary_expression] = STATE(2146), + [sym_multiplicative_expression] = STATE(2146), + [sym_additive_expression] = STATE(2146), + [sym_range_expression] = STATE(2146), + [sym_infix_expression] = STATE(2146), + [sym_nil_coalescing_expression] = STATE(2146), + [sym_check_expression] = STATE(2146), + [sym_comparison_expression] = STATE(2146), + [sym_equality_expression] = STATE(2146), + [sym_conjunction_expression] = STATE(2146), + [sym_disjunction_expression] = STATE(2146), + [sym_bitwise_operation] = STATE(2146), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2146), + [sym_await_expression] = STATE(2146), + [sym_ternary_expression] = STATE(2146), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2146), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2146), + [sym_dictionary_literal] = STATE(2146), + [sym__special_literal] = STATE(2146), + [sym__playground_literal] = STATE(2146), + [sym_lambda_literal] = STATE(2146), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2146), + [sym_key_path_expression] = STATE(2146), + [sym_key_path_string_expression] = STATE(2146), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2146), + [sym__comparison_operator] = STATE(2146), + [sym__additive_operator] = STATE(2146), + [sym__multiplicative_operator] = STATE(2146), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2146), + [sym__referenceable_operator] = STATE(2146), + [sym__eq_eq] = STATE(2146), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2675), + [sym_real_literal] = ACTIONS(2677), + [sym_integer_literal] = ACTIONS(2675), + [sym_hex_literal] = ACTIONS(2677), + [sym_oct_literal] = ACTIONS(2677), + [sym_bin_literal] = ACTIONS(2677), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2675), + [anon_sym_GT] = ACTIONS(2675), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2675), + [anon_sym_POUNDfileID] = ACTIONS(2677), + [anon_sym_POUNDfilePath] = ACTIONS(2677), + [anon_sym_POUNDline] = ACTIONS(2677), + [anon_sym_POUNDcolumn] = ACTIONS(2677), + [anon_sym_POUNDfunction] = ACTIONS(2677), + [anon_sym_POUNDdsohandle] = ACTIONS(2677), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2675), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2675), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2675), + [anon_sym_LT_EQ] = ACTIONS(2675), + [anon_sym_GT_EQ] = ACTIONS(2675), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_SLASH] = ACTIONS(2675), + [anon_sym_PERCENT] = ACTIONS(2675), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2677), + [sym__plus_then_ws] = ACTIONS(2677), + [sym__minus_then_ws] = ACTIONS(2677), + [sym_bang] = ACTIONS(1069), + }, + [634] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2054), + [sym_boolean_literal] = STATE(2054), + [sym__string_literal] = STATE(2054), + [sym_line_string_literal] = STATE(2054), + [sym_multi_line_string_literal] = STATE(2054), + [sym_raw_string_literal] = STATE(2054), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2054), + [sym__unary_expression] = STATE(2054), + [sym_postfix_expression] = STATE(2054), + [sym_constructor_expression] = STATE(2054), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2054), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2054), + [sym_prefix_expression] = STATE(2054), + [sym_as_expression] = STATE(2054), + [sym_selector_expression] = STATE(2054), + [sym__binary_expression] = STATE(2054), + [sym_multiplicative_expression] = STATE(2054), + [sym_additive_expression] = STATE(2054), + [sym_range_expression] = STATE(2054), + [sym_infix_expression] = STATE(2054), + [sym_nil_coalescing_expression] = STATE(2054), + [sym_check_expression] = STATE(2054), + [sym_comparison_expression] = STATE(2054), + [sym_equality_expression] = STATE(2054), + [sym_conjunction_expression] = STATE(2054), + [sym_disjunction_expression] = STATE(2054), + [sym_bitwise_operation] = STATE(2054), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2054), + [sym_await_expression] = STATE(2054), + [sym_ternary_expression] = STATE(2054), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2054), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2054), + [sym_dictionary_literal] = STATE(2054), + [sym__special_literal] = STATE(2054), + [sym__playground_literal] = STATE(2054), + [sym_lambda_literal] = STATE(2054), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2054), + [sym_key_path_expression] = STATE(2054), + [sym_key_path_string_expression] = STATE(2054), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2054), + [sym__comparison_operator] = STATE(2054), + [sym__additive_operator] = STATE(2054), + [sym__multiplicative_operator] = STATE(2054), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2054), + [sym__referenceable_operator] = STATE(2054), + [sym__eq_eq] = STATE(2054), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2679), + [sym_real_literal] = ACTIONS(2681), + [sym_integer_literal] = ACTIONS(2679), + [sym_hex_literal] = ACTIONS(2681), + [sym_oct_literal] = ACTIONS(2681), + [sym_bin_literal] = ACTIONS(2681), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2679), + [anon_sym_POUNDfileID] = ACTIONS(2681), + [anon_sym_POUNDfilePath] = ACTIONS(2681), + [anon_sym_POUNDline] = ACTIONS(2681), + [anon_sym_POUNDcolumn] = ACTIONS(2681), + [anon_sym_POUNDfunction] = ACTIONS(2681), + [anon_sym_POUNDdsohandle] = ACTIONS(2681), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2679), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2679), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2681), + [sym__plus_then_ws] = ACTIONS(2681), + [sym__minus_then_ws] = ACTIONS(2681), + [sym_bang] = ACTIONS(1069), + }, + [635] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2145), + [sym_boolean_literal] = STATE(2145), + [sym__string_literal] = STATE(2145), + [sym_line_string_literal] = STATE(2145), + [sym_multi_line_string_literal] = STATE(2145), + [sym_raw_string_literal] = STATE(2145), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2145), + [sym__unary_expression] = STATE(2145), + [sym_postfix_expression] = STATE(2145), + [sym_constructor_expression] = STATE(2145), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2145), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2145), + [sym_prefix_expression] = STATE(2145), + [sym_as_expression] = STATE(2145), + [sym_selector_expression] = STATE(2145), + [sym__binary_expression] = STATE(2145), + [sym_multiplicative_expression] = STATE(2145), + [sym_additive_expression] = STATE(2145), + [sym_range_expression] = STATE(2145), + [sym_infix_expression] = STATE(2145), + [sym_nil_coalescing_expression] = STATE(2145), + [sym_check_expression] = STATE(2145), + [sym_comparison_expression] = STATE(2145), + [sym_equality_expression] = STATE(2145), + [sym_conjunction_expression] = STATE(2145), + [sym_disjunction_expression] = STATE(2145), + [sym_bitwise_operation] = STATE(2145), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2145), + [sym_await_expression] = STATE(2145), + [sym_ternary_expression] = STATE(2145), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2145), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2145), + [sym_dictionary_literal] = STATE(2145), + [sym__special_literal] = STATE(2145), + [sym__playground_literal] = STATE(2145), + [sym_lambda_literal] = STATE(2145), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2145), + [sym_key_path_expression] = STATE(2145), + [sym_key_path_string_expression] = STATE(2145), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2145), + [sym__comparison_operator] = STATE(2145), + [sym__additive_operator] = STATE(2145), + [sym__multiplicative_operator] = STATE(2145), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2145), + [sym__referenceable_operator] = STATE(2145), + [sym__eq_eq] = STATE(2145), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2683), + [sym_real_literal] = ACTIONS(2685), + [sym_integer_literal] = ACTIONS(2683), + [sym_hex_literal] = ACTIONS(2685), + [sym_oct_literal] = ACTIONS(2685), + [sym_bin_literal] = ACTIONS(2685), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_GT] = ACTIONS(2683), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2683), + [anon_sym_POUNDfileID] = ACTIONS(2685), + [anon_sym_POUNDfilePath] = ACTIONS(2685), + [anon_sym_POUNDline] = ACTIONS(2685), + [anon_sym_POUNDcolumn] = ACTIONS(2685), + [anon_sym_POUNDfunction] = ACTIONS(2685), + [anon_sym_POUNDdsohandle] = ACTIONS(2685), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2683), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2683), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2683), + [anon_sym_LT_EQ] = ACTIONS(2683), + [anon_sym_GT_EQ] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_SLASH] = ACTIONS(2683), + [anon_sym_PERCENT] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2685), + [sym__plus_then_ws] = ACTIONS(2685), + [sym__minus_then_ws] = ACTIONS(2685), + [sym_bang] = ACTIONS(1069), + }, + [636] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2144), + [sym_boolean_literal] = STATE(2144), + [sym__string_literal] = STATE(2144), + [sym_line_string_literal] = STATE(2144), + [sym_multi_line_string_literal] = STATE(2144), + [sym_raw_string_literal] = STATE(2144), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2144), + [sym__unary_expression] = STATE(2144), + [sym_postfix_expression] = STATE(2144), + [sym_constructor_expression] = STATE(2144), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2144), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2144), + [sym_prefix_expression] = STATE(2144), + [sym_as_expression] = STATE(2144), + [sym_selector_expression] = STATE(2144), + [sym__binary_expression] = STATE(2144), + [sym_multiplicative_expression] = STATE(2144), + [sym_additive_expression] = STATE(2144), + [sym_range_expression] = STATE(2144), + [sym_infix_expression] = STATE(2144), + [sym_nil_coalescing_expression] = STATE(2144), + [sym_check_expression] = STATE(2144), + [sym_comparison_expression] = STATE(2144), + [sym_equality_expression] = STATE(2144), + [sym_conjunction_expression] = STATE(2144), + [sym_disjunction_expression] = STATE(2144), + [sym_bitwise_operation] = STATE(2144), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2144), + [sym_await_expression] = STATE(2144), + [sym_ternary_expression] = STATE(2144), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2144), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2144), + [sym_dictionary_literal] = STATE(2144), + [sym__special_literal] = STATE(2144), + [sym__playground_literal] = STATE(2144), + [sym_lambda_literal] = STATE(2144), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2144), + [sym_key_path_expression] = STATE(2144), + [sym_key_path_string_expression] = STATE(2144), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2144), + [sym__comparison_operator] = STATE(2144), + [sym__additive_operator] = STATE(2144), + [sym__multiplicative_operator] = STATE(2144), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2144), + [sym__referenceable_operator] = STATE(2144), + [sym__eq_eq] = STATE(2144), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2687), + [sym_real_literal] = ACTIONS(2689), + [sym_integer_literal] = ACTIONS(2687), + [sym_hex_literal] = ACTIONS(2689), + [sym_oct_literal] = ACTIONS(2689), + [sym_bin_literal] = ACTIONS(2689), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_GT] = ACTIONS(2687), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2687), + [anon_sym_POUNDfileID] = ACTIONS(2689), + [anon_sym_POUNDfilePath] = ACTIONS(2689), + [anon_sym_POUNDline] = ACTIONS(2689), + [anon_sym_POUNDcolumn] = ACTIONS(2689), + [anon_sym_POUNDfunction] = ACTIONS(2689), + [anon_sym_POUNDdsohandle] = ACTIONS(2689), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2687), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2687), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2687), + [anon_sym_LT_EQ] = ACTIONS(2687), + [anon_sym_GT_EQ] = ACTIONS(2687), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_SLASH] = ACTIONS(2687), + [anon_sym_PERCENT] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2689), + [sym__plus_then_ws] = ACTIONS(2689), + [sym__minus_then_ws] = ACTIONS(2689), + [sym_bang] = ACTIONS(1069), + }, + [637] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1641), + [sym_boolean_literal] = STATE(1641), + [sym__string_literal] = STATE(1641), + [sym_line_string_literal] = STATE(1641), + [sym_multi_line_string_literal] = STATE(1641), + [sym_raw_string_literal] = STATE(1641), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1641), + [sym__unary_expression] = STATE(1641), + [sym_postfix_expression] = STATE(1641), + [sym_constructor_expression] = STATE(1641), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1641), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1641), + [sym_prefix_expression] = STATE(1641), + [sym_as_expression] = STATE(1641), + [sym_selector_expression] = STATE(1641), + [sym__binary_expression] = STATE(1641), + [sym_multiplicative_expression] = STATE(1641), + [sym_additive_expression] = STATE(1641), + [sym_range_expression] = STATE(1641), + [sym_infix_expression] = STATE(1641), + [sym_nil_coalescing_expression] = STATE(1641), + [sym_check_expression] = STATE(1641), + [sym_comparison_expression] = STATE(1641), + [sym_equality_expression] = STATE(1641), + [sym_conjunction_expression] = STATE(1641), + [sym_disjunction_expression] = STATE(1641), + [sym_bitwise_operation] = STATE(1641), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1641), + [sym_await_expression] = STATE(1641), + [sym_ternary_expression] = STATE(1641), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1641), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1641), + [sym_dictionary_literal] = STATE(1641), + [sym__special_literal] = STATE(1641), + [sym__playground_literal] = STATE(1641), + [sym_lambda_literal] = STATE(1641), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1641), + [sym_key_path_expression] = STATE(1641), + [sym_key_path_string_expression] = STATE(1641), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1641), + [sym__comparison_operator] = STATE(1641), + [sym__additive_operator] = STATE(1641), + [sym__multiplicative_operator] = STATE(1641), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1641), + [sym__referenceable_operator] = STATE(1641), + [sym__eq_eq] = STATE(1641), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2691), + [sym_real_literal] = ACTIONS(2693), + [sym_integer_literal] = ACTIONS(2691), + [sym_hex_literal] = ACTIONS(2693), + [sym_oct_literal] = ACTIONS(2693), + [sym_bin_literal] = ACTIONS(2693), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2691), + [anon_sym_GT] = ACTIONS(2691), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2691), + [anon_sym_POUNDfileID] = ACTIONS(2693), + [anon_sym_POUNDfilePath] = ACTIONS(2693), + [anon_sym_POUNDline] = ACTIONS(2693), + [anon_sym_POUNDcolumn] = ACTIONS(2693), + [anon_sym_POUNDfunction] = ACTIONS(2693), + [anon_sym_POUNDdsohandle] = ACTIONS(2693), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2691), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2691), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2691), + [anon_sym_LT_EQ] = ACTIONS(2691), + [anon_sym_GT_EQ] = ACTIONS(2691), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2691), + [anon_sym_SLASH] = ACTIONS(2691), + [anon_sym_PERCENT] = ACTIONS(2691), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2693), + [sym__plus_then_ws] = ACTIONS(2693), + [sym__minus_then_ws] = ACTIONS(2693), + [sym_bang] = ACTIONS(1069), + }, + [638] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1835), + [sym_boolean_literal] = STATE(1835), + [sym__string_literal] = STATE(1835), + [sym_line_string_literal] = STATE(1835), + [sym_multi_line_string_literal] = STATE(1835), + [sym_raw_string_literal] = STATE(1835), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1835), + [sym__unary_expression] = STATE(1835), + [sym_postfix_expression] = STATE(1835), + [sym_constructor_expression] = STATE(1835), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1835), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1835), + [sym_prefix_expression] = STATE(1835), + [sym_as_expression] = STATE(1835), + [sym_selector_expression] = STATE(1835), + [sym__binary_expression] = STATE(1835), + [sym_multiplicative_expression] = STATE(1835), + [sym_additive_expression] = STATE(1835), + [sym_range_expression] = STATE(1835), + [sym_infix_expression] = STATE(1835), + [sym_nil_coalescing_expression] = STATE(1835), + [sym_check_expression] = STATE(1835), + [sym_comparison_expression] = STATE(1835), + [sym_equality_expression] = STATE(1835), + [sym_conjunction_expression] = STATE(1835), + [sym_disjunction_expression] = STATE(1835), + [sym_bitwise_operation] = STATE(1835), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1835), + [sym_await_expression] = STATE(1835), + [sym_ternary_expression] = STATE(1835), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1835), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1835), + [sym_dictionary_literal] = STATE(1835), + [sym__special_literal] = STATE(1835), + [sym__playground_literal] = STATE(1835), + [sym_lambda_literal] = STATE(1835), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1835), + [sym_key_path_expression] = STATE(1835), + [sym_key_path_string_expression] = STATE(1835), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1835), + [sym__comparison_operator] = STATE(1835), + [sym__additive_operator] = STATE(1835), + [sym__multiplicative_operator] = STATE(1835), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1835), + [sym__referenceable_operator] = STATE(1835), + [sym__eq_eq] = STATE(1835), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2695), + [sym_real_literal] = ACTIONS(2697), + [sym_integer_literal] = ACTIONS(2695), + [sym_hex_literal] = ACTIONS(2697), + [sym_oct_literal] = ACTIONS(2697), + [sym_bin_literal] = ACTIONS(2697), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_GT] = ACTIONS(2695), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2695), + [anon_sym_POUNDfileID] = ACTIONS(2697), + [anon_sym_POUNDfilePath] = ACTIONS(2697), + [anon_sym_POUNDline] = ACTIONS(2697), + [anon_sym_POUNDcolumn] = ACTIONS(2697), + [anon_sym_POUNDfunction] = ACTIONS(2697), + [anon_sym_POUNDdsohandle] = ACTIONS(2697), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2695), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2695), + [anon_sym_LT_EQ] = ACTIONS(2695), + [anon_sym_GT_EQ] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_SLASH] = ACTIONS(2695), + [anon_sym_PERCENT] = ACTIONS(2695), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2697), + [sym__plus_then_ws] = ACTIONS(2697), + [sym__minus_then_ws] = ACTIONS(2697), + [sym_bang] = ACTIONS(1069), + }, + [639] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1640), + [sym_boolean_literal] = STATE(1640), + [sym__string_literal] = STATE(1640), + [sym_line_string_literal] = STATE(1640), + [sym_multi_line_string_literal] = STATE(1640), + [sym_raw_string_literal] = STATE(1640), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1640), + [sym__unary_expression] = STATE(1640), + [sym_postfix_expression] = STATE(1640), + [sym_constructor_expression] = STATE(1640), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1640), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1640), + [sym_prefix_expression] = STATE(1640), + [sym_as_expression] = STATE(1640), + [sym_selector_expression] = STATE(1640), + [sym__binary_expression] = STATE(1640), + [sym_multiplicative_expression] = STATE(1640), + [sym_additive_expression] = STATE(1640), + [sym_range_expression] = STATE(1640), + [sym_infix_expression] = STATE(1640), + [sym_nil_coalescing_expression] = STATE(1640), + [sym_check_expression] = STATE(1640), + [sym_comparison_expression] = STATE(1640), + [sym_equality_expression] = STATE(1640), + [sym_conjunction_expression] = STATE(1640), + [sym_disjunction_expression] = STATE(1640), + [sym_bitwise_operation] = STATE(1640), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1640), + [sym_await_expression] = STATE(1640), + [sym_ternary_expression] = STATE(1640), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1640), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1640), + [sym_dictionary_literal] = STATE(1640), + [sym__special_literal] = STATE(1640), + [sym__playground_literal] = STATE(1640), + [sym_lambda_literal] = STATE(1640), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1640), + [sym_key_path_expression] = STATE(1640), + [sym_key_path_string_expression] = STATE(1640), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1640), + [sym__comparison_operator] = STATE(1640), + [sym__additive_operator] = STATE(1640), + [sym__multiplicative_operator] = STATE(1640), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1640), + [sym__referenceable_operator] = STATE(1640), + [sym__eq_eq] = STATE(1640), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2699), + [sym_real_literal] = ACTIONS(2701), + [sym_integer_literal] = ACTIONS(2699), + [sym_hex_literal] = ACTIONS(2701), + [sym_oct_literal] = ACTIONS(2701), + [sym_bin_literal] = ACTIONS(2701), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2699), + [anon_sym_GT] = ACTIONS(2699), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2699), + [anon_sym_POUNDfileID] = ACTIONS(2701), + [anon_sym_POUNDfilePath] = ACTIONS(2701), + [anon_sym_POUNDline] = ACTIONS(2701), + [anon_sym_POUNDcolumn] = ACTIONS(2701), + [anon_sym_POUNDfunction] = ACTIONS(2701), + [anon_sym_POUNDdsohandle] = ACTIONS(2701), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2699), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2699), + [anon_sym_SLASH] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2701), + [sym__plus_then_ws] = ACTIONS(2701), + [sym__minus_then_ws] = ACTIONS(2701), + [sym_bang] = ACTIONS(1069), + }, + [640] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1693), + [sym_boolean_literal] = STATE(1693), + [sym__string_literal] = STATE(1693), + [sym_line_string_literal] = STATE(1693), + [sym_multi_line_string_literal] = STATE(1693), + [sym_raw_string_literal] = STATE(1693), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1693), + [sym__unary_expression] = STATE(1693), + [sym_postfix_expression] = STATE(1693), + [sym_constructor_expression] = STATE(1693), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1693), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1693), + [sym_prefix_expression] = STATE(1693), + [sym_as_expression] = STATE(1693), + [sym_selector_expression] = STATE(1693), + [sym__binary_expression] = STATE(1693), + [sym_multiplicative_expression] = STATE(1693), + [sym_additive_expression] = STATE(1693), + [sym_range_expression] = STATE(1693), + [sym_infix_expression] = STATE(1693), + [sym_nil_coalescing_expression] = STATE(1693), + [sym_check_expression] = STATE(1693), + [sym_comparison_expression] = STATE(1693), + [sym_equality_expression] = STATE(1693), + [sym_conjunction_expression] = STATE(1693), + [sym_disjunction_expression] = STATE(1693), + [sym_bitwise_operation] = STATE(1693), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1693), + [sym_await_expression] = STATE(1693), + [sym_ternary_expression] = STATE(1693), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1693), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1693), + [sym_dictionary_literal] = STATE(1693), + [sym__special_literal] = STATE(1693), + [sym__playground_literal] = STATE(1693), + [sym_lambda_literal] = STATE(1693), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1693), + [sym_key_path_expression] = STATE(1693), + [sym_key_path_string_expression] = STATE(1693), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1693), + [sym__comparison_operator] = STATE(1693), + [sym__additive_operator] = STATE(1693), + [sym__multiplicative_operator] = STATE(1693), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1693), + [sym__referenceable_operator] = STATE(1693), + [sym__eq_eq] = STATE(1693), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2703), + [sym_real_literal] = ACTIONS(2705), + [sym_integer_literal] = ACTIONS(2703), + [sym_hex_literal] = ACTIONS(2705), + [sym_oct_literal] = ACTIONS(2705), + [sym_bin_literal] = ACTIONS(2705), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2703), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2703), + [anon_sym_POUNDfileID] = ACTIONS(2705), + [anon_sym_POUNDfilePath] = ACTIONS(2705), + [anon_sym_POUNDline] = ACTIONS(2705), + [anon_sym_POUNDcolumn] = ACTIONS(2705), + [anon_sym_POUNDfunction] = ACTIONS(2705), + [anon_sym_POUNDdsohandle] = ACTIONS(2705), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2703), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2703), + [anon_sym_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_EQ] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_SLASH] = ACTIONS(2703), + [anon_sym_PERCENT] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2705), + [sym__plus_then_ws] = ACTIONS(2705), + [sym__minus_then_ws] = ACTIONS(2705), + [sym_bang] = ACTIONS(1069), + }, + [641] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1639), + [sym_boolean_literal] = STATE(1639), + [sym__string_literal] = STATE(1639), + [sym_line_string_literal] = STATE(1639), + [sym_multi_line_string_literal] = STATE(1639), + [sym_raw_string_literal] = STATE(1639), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1639), + [sym__unary_expression] = STATE(1639), + [sym_postfix_expression] = STATE(1639), + [sym_constructor_expression] = STATE(1639), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1639), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1639), + [sym_prefix_expression] = STATE(1639), + [sym_as_expression] = STATE(1639), + [sym_selector_expression] = STATE(1639), + [sym__binary_expression] = STATE(1639), + [sym_multiplicative_expression] = STATE(1639), + [sym_additive_expression] = STATE(1639), + [sym_range_expression] = STATE(1639), + [sym_infix_expression] = STATE(1639), + [sym_nil_coalescing_expression] = STATE(1639), + [sym_check_expression] = STATE(1639), + [sym_comparison_expression] = STATE(1639), + [sym_equality_expression] = STATE(1639), + [sym_conjunction_expression] = STATE(1639), + [sym_disjunction_expression] = STATE(1639), + [sym_bitwise_operation] = STATE(1639), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1639), + [sym_await_expression] = STATE(1639), + [sym_ternary_expression] = STATE(1639), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1639), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1639), + [sym_dictionary_literal] = STATE(1639), + [sym__special_literal] = STATE(1639), + [sym__playground_literal] = STATE(1639), + [sym_lambda_literal] = STATE(1639), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1639), + [sym_key_path_expression] = STATE(1639), + [sym_key_path_string_expression] = STATE(1639), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1639), + [sym__comparison_operator] = STATE(1639), + [sym__additive_operator] = STATE(1639), + [sym__multiplicative_operator] = STATE(1639), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1639), + [sym__referenceable_operator] = STATE(1639), + [sym__eq_eq] = STATE(1639), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2707), + [sym_real_literal] = ACTIONS(2709), + [sym_integer_literal] = ACTIONS(2707), + [sym_hex_literal] = ACTIONS(2709), + [sym_oct_literal] = ACTIONS(2709), + [sym_bin_literal] = ACTIONS(2709), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2707), + [anon_sym_GT] = ACTIONS(2707), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2707), + [anon_sym_POUNDfileID] = ACTIONS(2709), + [anon_sym_POUNDfilePath] = ACTIONS(2709), + [anon_sym_POUNDline] = ACTIONS(2709), + [anon_sym_POUNDcolumn] = ACTIONS(2709), + [anon_sym_POUNDfunction] = ACTIONS(2709), + [anon_sym_POUNDdsohandle] = ACTIONS(2709), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2707), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2707), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2707), + [anon_sym_LT_EQ] = ACTIONS(2707), + [anon_sym_GT_EQ] = ACTIONS(2707), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_SLASH] = ACTIONS(2707), + [anon_sym_PERCENT] = ACTIONS(2707), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2709), + [sym__plus_then_ws] = ACTIONS(2709), + [sym__minus_then_ws] = ACTIONS(2709), + [sym_bang] = ACTIONS(1069), + }, + [642] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1980), + [sym_boolean_literal] = STATE(1980), + [sym__string_literal] = STATE(1980), + [sym_line_string_literal] = STATE(1980), + [sym_multi_line_string_literal] = STATE(1980), + [sym_raw_string_literal] = STATE(1980), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1980), + [sym__unary_expression] = STATE(1980), + [sym_postfix_expression] = STATE(1980), + [sym_constructor_expression] = STATE(1980), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1980), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1980), + [sym_prefix_expression] = STATE(1980), + [sym_as_expression] = STATE(1980), + [sym_selector_expression] = STATE(1980), + [sym__binary_expression] = STATE(1980), + [sym_multiplicative_expression] = STATE(1980), + [sym_additive_expression] = STATE(1980), + [sym_range_expression] = STATE(1980), + [sym_infix_expression] = STATE(1980), + [sym_nil_coalescing_expression] = STATE(1980), + [sym_check_expression] = STATE(1980), + [sym_comparison_expression] = STATE(1980), + [sym_equality_expression] = STATE(1980), + [sym_conjunction_expression] = STATE(1980), + [sym_disjunction_expression] = STATE(1980), + [sym_bitwise_operation] = STATE(1980), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1980), + [sym_await_expression] = STATE(1980), + [sym_ternary_expression] = STATE(1980), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1980), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1980), + [sym_dictionary_literal] = STATE(1980), + [sym__special_literal] = STATE(1980), + [sym__playground_literal] = STATE(1980), + [sym_lambda_literal] = STATE(1980), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1980), + [sym_key_path_expression] = STATE(1980), + [sym_key_path_string_expression] = STATE(1980), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1980), + [sym__comparison_operator] = STATE(1980), + [sym__additive_operator] = STATE(1980), + [sym__multiplicative_operator] = STATE(1980), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1980), + [sym__referenceable_operator] = STATE(1980), + [sym__eq_eq] = STATE(1980), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2711), + [sym_real_literal] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2711), + [sym_hex_literal] = ACTIONS(2713), + [sym_oct_literal] = ACTIONS(2713), + [sym_bin_literal] = ACTIONS(2713), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2711), + [anon_sym_GT] = ACTIONS(2711), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2711), + [anon_sym_POUNDfileID] = ACTIONS(2713), + [anon_sym_POUNDfilePath] = ACTIONS(2713), + [anon_sym_POUNDline] = ACTIONS(2713), + [anon_sym_POUNDcolumn] = ACTIONS(2713), + [anon_sym_POUNDfunction] = ACTIONS(2713), + [anon_sym_POUNDdsohandle] = ACTIONS(2713), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2711), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_SLASH] = ACTIONS(2711), + [anon_sym_PERCENT] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2713), + [sym__plus_then_ws] = ACTIONS(2713), + [sym__minus_then_ws] = ACTIONS(2713), + [sym_bang] = ACTIONS(1069), + }, + [643] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1692), + [sym_boolean_literal] = STATE(1692), + [sym__string_literal] = STATE(1692), + [sym_line_string_literal] = STATE(1692), + [sym_multi_line_string_literal] = STATE(1692), + [sym_raw_string_literal] = STATE(1692), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1692), + [sym__unary_expression] = STATE(1692), + [sym_postfix_expression] = STATE(1692), + [sym_constructor_expression] = STATE(1692), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1692), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1692), + [sym_prefix_expression] = STATE(1692), + [sym_as_expression] = STATE(1692), + [sym_selector_expression] = STATE(1692), + [sym__binary_expression] = STATE(1692), + [sym_multiplicative_expression] = STATE(1692), + [sym_additive_expression] = STATE(1692), + [sym_range_expression] = STATE(1692), + [sym_infix_expression] = STATE(1692), + [sym_nil_coalescing_expression] = STATE(1692), + [sym_check_expression] = STATE(1692), + [sym_comparison_expression] = STATE(1692), + [sym_equality_expression] = STATE(1692), + [sym_conjunction_expression] = STATE(1692), + [sym_disjunction_expression] = STATE(1692), + [sym_bitwise_operation] = STATE(1692), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1692), + [sym_await_expression] = STATE(1692), + [sym_ternary_expression] = STATE(1692), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1692), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1692), + [sym_dictionary_literal] = STATE(1692), + [sym__special_literal] = STATE(1692), + [sym__playground_literal] = STATE(1692), + [sym_lambda_literal] = STATE(1692), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1692), + [sym_key_path_expression] = STATE(1692), + [sym_key_path_string_expression] = STATE(1692), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1692), + [sym__comparison_operator] = STATE(1692), + [sym__additive_operator] = STATE(1692), + [sym__multiplicative_operator] = STATE(1692), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1692), + [sym__referenceable_operator] = STATE(1692), + [sym__eq_eq] = STATE(1692), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2715), + [sym_real_literal] = ACTIONS(2717), + [sym_integer_literal] = ACTIONS(2715), + [sym_hex_literal] = ACTIONS(2717), + [sym_oct_literal] = ACTIONS(2717), + [sym_bin_literal] = ACTIONS(2717), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_GT] = ACTIONS(2715), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2715), + [anon_sym_POUNDfileID] = ACTIONS(2717), + [anon_sym_POUNDfilePath] = ACTIONS(2717), + [anon_sym_POUNDline] = ACTIONS(2717), + [anon_sym_POUNDcolumn] = ACTIONS(2717), + [anon_sym_POUNDfunction] = ACTIONS(2717), + [anon_sym_POUNDdsohandle] = ACTIONS(2717), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2715), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2715), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2715), + [anon_sym_LT_EQ] = ACTIONS(2715), + [anon_sym_GT_EQ] = ACTIONS(2715), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_SLASH] = ACTIONS(2715), + [anon_sym_PERCENT] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2717), + [sym__plus_then_ws] = ACTIONS(2717), + [sym__minus_then_ws] = ACTIONS(2717), + [sym_bang] = ACTIONS(1069), + }, + [644] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1984), + [sym_boolean_literal] = STATE(1984), + [sym__string_literal] = STATE(1984), + [sym_line_string_literal] = STATE(1984), + [sym_multi_line_string_literal] = STATE(1984), + [sym_raw_string_literal] = STATE(1984), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1984), + [sym__unary_expression] = STATE(1984), + [sym_postfix_expression] = STATE(1984), + [sym_constructor_expression] = STATE(1984), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1984), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1984), + [sym_prefix_expression] = STATE(1984), + [sym_as_expression] = STATE(1984), + [sym_selector_expression] = STATE(1984), + [sym__binary_expression] = STATE(1984), + [sym_multiplicative_expression] = STATE(1984), + [sym_additive_expression] = STATE(1984), + [sym_range_expression] = STATE(1984), + [sym_infix_expression] = STATE(1984), + [sym_nil_coalescing_expression] = STATE(1984), + [sym_check_expression] = STATE(1984), + [sym_comparison_expression] = STATE(1984), + [sym_equality_expression] = STATE(1984), + [sym_conjunction_expression] = STATE(1984), + [sym_disjunction_expression] = STATE(1984), + [sym_bitwise_operation] = STATE(1984), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1984), + [sym_await_expression] = STATE(1984), + [sym_ternary_expression] = STATE(1984), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1984), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1984), + [sym_dictionary_literal] = STATE(1984), + [sym__special_literal] = STATE(1984), + [sym__playground_literal] = STATE(1984), + [sym_lambda_literal] = STATE(1984), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1984), + [sym_key_path_expression] = STATE(1984), + [sym_key_path_string_expression] = STATE(1984), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1984), + [sym__additive_operator] = STATE(1984), + [sym__multiplicative_operator] = STATE(1984), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1984), + [sym__referenceable_operator] = STATE(1984), + [sym__eq_eq] = STATE(1984), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2719), + [sym_real_literal] = ACTIONS(2721), + [sym_integer_literal] = ACTIONS(2719), + [sym_hex_literal] = ACTIONS(2721), + [sym_oct_literal] = ACTIONS(2721), + [sym_bin_literal] = ACTIONS(2721), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_GT] = ACTIONS(2719), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2719), + [anon_sym_POUNDfileID] = ACTIONS(2721), + [anon_sym_POUNDfilePath] = ACTIONS(2721), + [anon_sym_POUNDline] = ACTIONS(2721), + [anon_sym_POUNDcolumn] = ACTIONS(2721), + [anon_sym_POUNDfunction] = ACTIONS(2721), + [anon_sym_POUNDdsohandle] = ACTIONS(2721), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2719), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2719), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2719), + [anon_sym_LT_EQ] = ACTIONS(2719), + [anon_sym_GT_EQ] = ACTIONS(2719), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_SLASH] = ACTIONS(2719), + [anon_sym_PERCENT] = ACTIONS(2719), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2721), + [sym__plus_then_ws] = ACTIONS(2721), + [sym__minus_then_ws] = ACTIONS(2721), + [sym_bang] = ACTIONS(1069), + }, + [645] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1761), + [sym_boolean_literal] = STATE(1761), + [sym__string_literal] = STATE(1761), + [sym_line_string_literal] = STATE(1761), + [sym_multi_line_string_literal] = STATE(1761), + [sym_raw_string_literal] = STATE(1761), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1761), + [sym__unary_expression] = STATE(1761), + [sym_postfix_expression] = STATE(1761), + [sym_constructor_expression] = STATE(1761), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1761), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1761), + [sym_prefix_expression] = STATE(1761), + [sym_as_expression] = STATE(1761), + [sym_selector_expression] = STATE(1761), + [sym__binary_expression] = STATE(1761), + [sym_multiplicative_expression] = STATE(1761), + [sym_additive_expression] = STATE(1761), + [sym_range_expression] = STATE(1761), + [sym_infix_expression] = STATE(1761), + [sym_nil_coalescing_expression] = STATE(1761), + [sym_check_expression] = STATE(1761), + [sym_comparison_expression] = STATE(1761), + [sym_equality_expression] = STATE(1761), + [sym_conjunction_expression] = STATE(1761), + [sym_disjunction_expression] = STATE(1761), + [sym_bitwise_operation] = STATE(1761), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1761), + [sym_await_expression] = STATE(1761), + [sym_ternary_expression] = STATE(1761), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1761), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1761), + [sym_dictionary_literal] = STATE(1761), + [sym__special_literal] = STATE(1761), + [sym__playground_literal] = STATE(1761), + [sym_lambda_literal] = STATE(1761), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1761), + [sym_key_path_expression] = STATE(1761), + [sym_key_path_string_expression] = STATE(1761), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1761), + [sym__comparison_operator] = STATE(1761), + [sym__additive_operator] = STATE(1761), + [sym__multiplicative_operator] = STATE(1761), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1761), + [sym__referenceable_operator] = STATE(1761), + [sym__eq_eq] = STATE(1761), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2723), + [sym_real_literal] = ACTIONS(2725), + [sym_integer_literal] = ACTIONS(2723), + [sym_hex_literal] = ACTIONS(2725), + [sym_oct_literal] = ACTIONS(2725), + [sym_bin_literal] = ACTIONS(2725), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2723), + [anon_sym_GT] = ACTIONS(2723), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2723), + [anon_sym_POUNDfileID] = ACTIONS(2725), + [anon_sym_POUNDfilePath] = ACTIONS(2725), + [anon_sym_POUNDline] = ACTIONS(2725), + [anon_sym_POUNDcolumn] = ACTIONS(2725), + [anon_sym_POUNDfunction] = ACTIONS(2725), + [anon_sym_POUNDdsohandle] = ACTIONS(2725), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2723), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2723), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2723), + [anon_sym_LT_EQ] = ACTIONS(2723), + [anon_sym_GT_EQ] = ACTIONS(2723), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_SLASH] = ACTIONS(2723), + [anon_sym_PERCENT] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2725), + [sym__plus_then_ws] = ACTIONS(2725), + [sym__minus_then_ws] = ACTIONS(2725), + [sym_bang] = ACTIONS(1069), + }, + [646] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2141), + [sym_boolean_literal] = STATE(2141), + [sym__string_literal] = STATE(2141), + [sym_line_string_literal] = STATE(2141), + [sym_multi_line_string_literal] = STATE(2141), + [sym_raw_string_literal] = STATE(2141), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2141), + [sym__unary_expression] = STATE(2141), + [sym_postfix_expression] = STATE(2141), + [sym_constructor_expression] = STATE(2141), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2141), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2141), + [sym_prefix_expression] = STATE(2141), + [sym_as_expression] = STATE(2141), + [sym_selector_expression] = STATE(2141), + [sym__binary_expression] = STATE(2141), + [sym_multiplicative_expression] = STATE(2141), + [sym_additive_expression] = STATE(2141), + [sym_range_expression] = STATE(2141), + [sym_infix_expression] = STATE(2141), + [sym_nil_coalescing_expression] = STATE(2141), + [sym_check_expression] = STATE(2141), + [sym_comparison_expression] = STATE(2141), + [sym_equality_expression] = STATE(2141), + [sym_conjunction_expression] = STATE(2141), + [sym_disjunction_expression] = STATE(2141), + [sym_bitwise_operation] = STATE(2141), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2141), + [sym_await_expression] = STATE(2141), + [sym_ternary_expression] = STATE(2141), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2141), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2141), + [sym_dictionary_literal] = STATE(2141), + [sym__special_literal] = STATE(2141), + [sym__playground_literal] = STATE(2141), + [sym_lambda_literal] = STATE(2141), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2141), + [sym_key_path_expression] = STATE(2141), + [sym_key_path_string_expression] = STATE(2141), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2141), + [sym__comparison_operator] = STATE(2141), + [sym__additive_operator] = STATE(2141), + [sym__multiplicative_operator] = STATE(2141), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2141), + [sym__referenceable_operator] = STATE(2141), + [sym__eq_eq] = STATE(2141), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2727), + [sym_real_literal] = ACTIONS(2729), + [sym_integer_literal] = ACTIONS(2727), + [sym_hex_literal] = ACTIONS(2729), + [sym_oct_literal] = ACTIONS(2729), + [sym_bin_literal] = ACTIONS(2729), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2727), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2727), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_SLASH] = ACTIONS(2727), + [anon_sym_PERCENT] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2729), + [sym__plus_then_ws] = ACTIONS(2729), + [sym__minus_then_ws] = ACTIONS(2729), + [sym_bang] = ACTIONS(1069), + }, + [647] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2138), + [sym_boolean_literal] = STATE(2138), + [sym__string_literal] = STATE(2138), + [sym_line_string_literal] = STATE(2138), + [sym_multi_line_string_literal] = STATE(2138), + [sym_raw_string_literal] = STATE(2138), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2138), + [sym__unary_expression] = STATE(2138), + [sym_postfix_expression] = STATE(2138), + [sym_constructor_expression] = STATE(2138), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2138), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2138), + [sym_prefix_expression] = STATE(2138), + [sym_as_expression] = STATE(2138), + [sym_selector_expression] = STATE(2138), + [sym__binary_expression] = STATE(2138), + [sym_multiplicative_expression] = STATE(2138), + [sym_additive_expression] = STATE(2138), + [sym_range_expression] = STATE(2138), + [sym_infix_expression] = STATE(2138), + [sym_nil_coalescing_expression] = STATE(2138), + [sym_check_expression] = STATE(2138), + [sym_comparison_expression] = STATE(2138), + [sym_equality_expression] = STATE(2138), + [sym_conjunction_expression] = STATE(2138), + [sym_disjunction_expression] = STATE(2138), + [sym_bitwise_operation] = STATE(2138), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2138), + [sym_await_expression] = STATE(2138), + [sym_ternary_expression] = STATE(2138), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2138), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2138), + [sym_dictionary_literal] = STATE(2138), + [sym__special_literal] = STATE(2138), + [sym__playground_literal] = STATE(2138), + [sym_lambda_literal] = STATE(2138), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2138), + [sym_key_path_expression] = STATE(2138), + [sym_key_path_string_expression] = STATE(2138), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2138), + [sym__comparison_operator] = STATE(2138), + [sym__additive_operator] = STATE(2138), + [sym__multiplicative_operator] = STATE(2138), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2138), + [sym__referenceable_operator] = STATE(2138), + [sym__eq_eq] = STATE(2138), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2731), + [sym_real_literal] = ACTIONS(2733), + [sym_integer_literal] = ACTIONS(2731), + [sym_hex_literal] = ACTIONS(2733), + [sym_oct_literal] = ACTIONS(2733), + [sym_bin_literal] = ACTIONS(2733), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2731), + [anon_sym_GT] = ACTIONS(2731), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2731), + [anon_sym_POUNDfileID] = ACTIONS(2733), + [anon_sym_POUNDfilePath] = ACTIONS(2733), + [anon_sym_POUNDline] = ACTIONS(2733), + [anon_sym_POUNDcolumn] = ACTIONS(2733), + [anon_sym_POUNDfunction] = ACTIONS(2733), + [anon_sym_POUNDdsohandle] = ACTIONS(2733), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2731), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2731), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2731), + [anon_sym_LT_EQ] = ACTIONS(2731), + [anon_sym_GT_EQ] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_SLASH] = ACTIONS(2731), + [anon_sym_PERCENT] = ACTIONS(2731), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2733), + [sym__plus_then_ws] = ACTIONS(2733), + [sym__minus_then_ws] = ACTIONS(2733), + [sym_bang] = ACTIONS(1069), + }, + [648] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1760), + [sym_boolean_literal] = STATE(1760), + [sym__string_literal] = STATE(1760), + [sym_line_string_literal] = STATE(1760), + [sym_multi_line_string_literal] = STATE(1760), + [sym_raw_string_literal] = STATE(1760), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1760), + [sym__unary_expression] = STATE(1760), + [sym_postfix_expression] = STATE(1760), + [sym_constructor_expression] = STATE(1760), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1760), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1760), + [sym_prefix_expression] = STATE(1760), + [sym_as_expression] = STATE(1760), + [sym_selector_expression] = STATE(1760), + [sym__binary_expression] = STATE(1760), + [sym_multiplicative_expression] = STATE(1760), + [sym_additive_expression] = STATE(1760), + [sym_range_expression] = STATE(1760), + [sym_infix_expression] = STATE(1760), + [sym_nil_coalescing_expression] = STATE(1760), + [sym_check_expression] = STATE(1760), + [sym_comparison_expression] = STATE(1760), + [sym_equality_expression] = STATE(1760), + [sym_conjunction_expression] = STATE(1760), + [sym_disjunction_expression] = STATE(1760), + [sym_bitwise_operation] = STATE(1760), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1760), + [sym_await_expression] = STATE(1760), + [sym_ternary_expression] = STATE(1760), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1760), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1760), + [sym_dictionary_literal] = STATE(1760), + [sym__special_literal] = STATE(1760), + [sym__playground_literal] = STATE(1760), + [sym_lambda_literal] = STATE(1760), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1760), + [sym_key_path_expression] = STATE(1760), + [sym_key_path_string_expression] = STATE(1760), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1760), + [sym__comparison_operator] = STATE(1760), + [sym__additive_operator] = STATE(1760), + [sym__multiplicative_operator] = STATE(1760), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1760), + [sym__referenceable_operator] = STATE(1760), + [sym__eq_eq] = STATE(1760), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2735), + [sym_real_literal] = ACTIONS(2737), + [sym_integer_literal] = ACTIONS(2735), + [sym_hex_literal] = ACTIONS(2737), + [sym_oct_literal] = ACTIONS(2737), + [sym_bin_literal] = ACTIONS(2737), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2735), + [anon_sym_GT] = ACTIONS(2735), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2735), + [anon_sym_POUNDfileID] = ACTIONS(2737), + [anon_sym_POUNDfilePath] = ACTIONS(2737), + [anon_sym_POUNDline] = ACTIONS(2737), + [anon_sym_POUNDcolumn] = ACTIONS(2737), + [anon_sym_POUNDfunction] = ACTIONS(2737), + [anon_sym_POUNDdsohandle] = ACTIONS(2737), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2735), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2735), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2735), + [anon_sym_LT_EQ] = ACTIONS(2735), + [anon_sym_GT_EQ] = ACTIONS(2735), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_SLASH] = ACTIONS(2735), + [anon_sym_PERCENT] = ACTIONS(2735), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2737), + [sym__plus_then_ws] = ACTIONS(2737), + [sym__minus_then_ws] = ACTIONS(2737), + [sym_bang] = ACTIONS(1069), + }, + [649] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1708), + [sym_boolean_literal] = STATE(1708), + [sym__string_literal] = STATE(1708), + [sym_line_string_literal] = STATE(1708), + [sym_multi_line_string_literal] = STATE(1708), + [sym_raw_string_literal] = STATE(1708), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1708), + [sym__unary_expression] = STATE(1708), + [sym_postfix_expression] = STATE(1708), + [sym_constructor_expression] = STATE(1708), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1708), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1708), + [sym_prefix_expression] = STATE(1708), + [sym_as_expression] = STATE(1708), + [sym_selector_expression] = STATE(1708), + [sym__binary_expression] = STATE(1708), + [sym_multiplicative_expression] = STATE(1708), + [sym_additive_expression] = STATE(1708), + [sym_range_expression] = STATE(1708), + [sym_infix_expression] = STATE(1708), + [sym_nil_coalescing_expression] = STATE(1708), + [sym_check_expression] = STATE(1708), + [sym_comparison_expression] = STATE(1708), + [sym_equality_expression] = STATE(1708), + [sym_conjunction_expression] = STATE(1708), + [sym_disjunction_expression] = STATE(1708), + [sym_bitwise_operation] = STATE(1708), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1708), + [sym_await_expression] = STATE(1708), + [sym_ternary_expression] = STATE(1708), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1708), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1708), + [sym_dictionary_literal] = STATE(1708), + [sym__special_literal] = STATE(1708), + [sym__playground_literal] = STATE(1708), + [sym_lambda_literal] = STATE(1708), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1708), + [sym_key_path_expression] = STATE(1708), + [sym_key_path_string_expression] = STATE(1708), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1708), + [sym__comparison_operator] = STATE(1708), + [sym__additive_operator] = STATE(1708), + [sym__multiplicative_operator] = STATE(1708), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1708), + [sym__referenceable_operator] = STATE(1708), + [sym__eq_eq] = STATE(1708), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2739), + [sym_real_literal] = ACTIONS(2741), + [sym_integer_literal] = ACTIONS(2739), + [sym_hex_literal] = ACTIONS(2741), + [sym_oct_literal] = ACTIONS(2741), + [sym_bin_literal] = ACTIONS(2741), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2739), + [anon_sym_GT] = ACTIONS(2739), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2739), + [anon_sym_POUNDfileID] = ACTIONS(2741), + [anon_sym_POUNDfilePath] = ACTIONS(2741), + [anon_sym_POUNDline] = ACTIONS(2741), + [anon_sym_POUNDcolumn] = ACTIONS(2741), + [anon_sym_POUNDfunction] = ACTIONS(2741), + [anon_sym_POUNDdsohandle] = ACTIONS(2741), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2739), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2739), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2739), + [anon_sym_LT_EQ] = ACTIONS(2739), + [anon_sym_GT_EQ] = ACTIONS(2739), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2739), + [anon_sym_SLASH] = ACTIONS(2739), + [anon_sym_PERCENT] = ACTIONS(2739), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2741), + [sym__plus_then_ws] = ACTIONS(2741), + [sym__minus_then_ws] = ACTIONS(2741), + [sym_bang] = ACTIONS(1069), + }, + [650] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1590), + [sym_boolean_literal] = STATE(1590), + [sym__string_literal] = STATE(1590), + [sym_line_string_literal] = STATE(1590), + [sym_multi_line_string_literal] = STATE(1590), + [sym_raw_string_literal] = STATE(1590), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1590), + [sym__unary_expression] = STATE(1590), + [sym_postfix_expression] = STATE(1590), + [sym_constructor_expression] = STATE(1590), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1590), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1590), + [sym_prefix_expression] = STATE(1590), + [sym_as_expression] = STATE(1590), + [sym_selector_expression] = STATE(1590), + [sym__binary_expression] = STATE(1590), + [sym_multiplicative_expression] = STATE(1590), + [sym_additive_expression] = STATE(1590), + [sym_range_expression] = STATE(1590), + [sym_infix_expression] = STATE(1590), + [sym_nil_coalescing_expression] = STATE(1590), + [sym_check_expression] = STATE(1590), + [sym_comparison_expression] = STATE(1590), + [sym_equality_expression] = STATE(1590), + [sym_conjunction_expression] = STATE(1590), + [sym_disjunction_expression] = STATE(1590), + [sym_bitwise_operation] = STATE(1590), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1590), + [sym_await_expression] = STATE(1590), + [sym_ternary_expression] = STATE(1590), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1590), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1590), + [sym_dictionary_literal] = STATE(1590), + [sym__special_literal] = STATE(1590), + [sym__playground_literal] = STATE(1590), + [sym_lambda_literal] = STATE(1590), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1590), + [sym_key_path_expression] = STATE(1590), + [sym_key_path_string_expression] = STATE(1590), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1590), + [sym__comparison_operator] = STATE(1590), + [sym__additive_operator] = STATE(1590), + [sym__multiplicative_operator] = STATE(1590), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1590), + [sym__referenceable_operator] = STATE(1590), + [sym__eq_eq] = STATE(1590), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2743), + [sym_real_literal] = ACTIONS(2745), + [sym_integer_literal] = ACTIONS(2743), + [sym_hex_literal] = ACTIONS(2745), + [sym_oct_literal] = ACTIONS(2745), + [sym_bin_literal] = ACTIONS(2745), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_GT] = ACTIONS(2743), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2743), + [anon_sym_POUNDfileID] = ACTIONS(2745), + [anon_sym_POUNDfilePath] = ACTIONS(2745), + [anon_sym_POUNDline] = ACTIONS(2745), + [anon_sym_POUNDcolumn] = ACTIONS(2745), + [anon_sym_POUNDfunction] = ACTIONS(2745), + [anon_sym_POUNDdsohandle] = ACTIONS(2745), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2743), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2743), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2743), + [anon_sym_LT_EQ] = ACTIONS(2743), + [anon_sym_GT_EQ] = ACTIONS(2743), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_SLASH] = ACTIONS(2743), + [anon_sym_PERCENT] = ACTIONS(2743), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2745), + [sym__plus_then_ws] = ACTIONS(2745), + [sym__minus_then_ws] = ACTIONS(2745), + [sym_bang] = ACTIONS(1069), + }, + [651] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1525), + [sym_boolean_literal] = STATE(1525), + [sym__string_literal] = STATE(1525), + [sym_line_string_literal] = STATE(1525), + [sym_multi_line_string_literal] = STATE(1525), + [sym_raw_string_literal] = STATE(1525), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1525), + [sym__unary_expression] = STATE(1525), + [sym_postfix_expression] = STATE(1525), + [sym_constructor_expression] = STATE(1525), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1525), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1525), + [sym_prefix_expression] = STATE(1525), + [sym_as_expression] = STATE(1525), + [sym_selector_expression] = STATE(1525), + [sym__binary_expression] = STATE(1525), + [sym_multiplicative_expression] = STATE(1525), + [sym_additive_expression] = STATE(1525), + [sym_range_expression] = STATE(1525), + [sym_infix_expression] = STATE(1525), + [sym_nil_coalescing_expression] = STATE(1525), + [sym_check_expression] = STATE(1525), + [sym_comparison_expression] = STATE(1525), + [sym_equality_expression] = STATE(1525), + [sym_conjunction_expression] = STATE(1525), + [sym_disjunction_expression] = STATE(1525), + [sym_bitwise_operation] = STATE(1525), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1525), + [sym_await_expression] = STATE(1525), + [sym_ternary_expression] = STATE(1525), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1525), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1525), + [sym_dictionary_literal] = STATE(1525), + [sym__special_literal] = STATE(1525), + [sym__playground_literal] = STATE(1525), + [sym_lambda_literal] = STATE(1525), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1525), + [sym_key_path_expression] = STATE(1525), + [sym_key_path_string_expression] = STATE(1525), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1525), + [sym__comparison_operator] = STATE(1525), + [sym__additive_operator] = STATE(1525), + [sym__multiplicative_operator] = STATE(1525), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1525), + [sym__referenceable_operator] = STATE(1525), + [sym__eq_eq] = STATE(1525), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2747), + [sym_real_literal] = ACTIONS(2749), + [sym_integer_literal] = ACTIONS(2747), + [sym_hex_literal] = ACTIONS(2749), + [sym_oct_literal] = ACTIONS(2749), + [sym_bin_literal] = ACTIONS(2749), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2747), + [anon_sym_GT] = ACTIONS(2747), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2747), + [anon_sym_POUNDfileID] = ACTIONS(2749), + [anon_sym_POUNDfilePath] = ACTIONS(2749), + [anon_sym_POUNDline] = ACTIONS(2749), + [anon_sym_POUNDcolumn] = ACTIONS(2749), + [anon_sym_POUNDfunction] = ACTIONS(2749), + [anon_sym_POUNDdsohandle] = ACTIONS(2749), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2747), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2747), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2747), + [anon_sym_LT_EQ] = ACTIONS(2747), + [anon_sym_GT_EQ] = ACTIONS(2747), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_SLASH] = ACTIONS(2747), + [anon_sym_PERCENT] = ACTIONS(2747), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2749), + [sym__plus_then_ws] = ACTIONS(2749), + [sym__minus_then_ws] = ACTIONS(2749), + [sym_bang] = ACTIONS(1069), + }, + [652] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1534), + [sym_boolean_literal] = STATE(1534), + [sym__string_literal] = STATE(1534), + [sym_line_string_literal] = STATE(1534), + [sym_multi_line_string_literal] = STATE(1534), + [sym_raw_string_literal] = STATE(1534), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1534), + [sym__unary_expression] = STATE(1534), + [sym_postfix_expression] = STATE(1534), + [sym_constructor_expression] = STATE(1534), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1534), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1534), + [sym_prefix_expression] = STATE(1534), + [sym_as_expression] = STATE(1534), + [sym_selector_expression] = STATE(1534), + [sym__binary_expression] = STATE(1534), + [sym_multiplicative_expression] = STATE(1534), + [sym_additive_expression] = STATE(1534), + [sym_range_expression] = STATE(1534), + [sym_infix_expression] = STATE(1534), + [sym_nil_coalescing_expression] = STATE(1534), + [sym_check_expression] = STATE(1534), + [sym_comparison_expression] = STATE(1534), + [sym_equality_expression] = STATE(1534), + [sym_conjunction_expression] = STATE(1534), + [sym_disjunction_expression] = STATE(1534), + [sym_bitwise_operation] = STATE(1534), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1534), + [sym_await_expression] = STATE(1534), + [sym_ternary_expression] = STATE(1534), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1534), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1534), + [sym_dictionary_literal] = STATE(1534), + [sym__special_literal] = STATE(1534), + [sym__playground_literal] = STATE(1534), + [sym_lambda_literal] = STATE(1534), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1534), + [sym_key_path_expression] = STATE(1534), + [sym_key_path_string_expression] = STATE(1534), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1534), + [sym__comparison_operator] = STATE(1534), + [sym__additive_operator] = STATE(1534), + [sym__multiplicative_operator] = STATE(1534), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1534), + [sym__referenceable_operator] = STATE(1534), + [sym__eq_eq] = STATE(1534), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2751), + [sym_real_literal] = ACTIONS(2753), + [sym_integer_literal] = ACTIONS(2751), + [sym_hex_literal] = ACTIONS(2753), + [sym_oct_literal] = ACTIONS(2753), + [sym_bin_literal] = ACTIONS(2753), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2751), + [anon_sym_GT] = ACTIONS(2751), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2751), + [anon_sym_POUNDfileID] = ACTIONS(2753), + [anon_sym_POUNDfilePath] = ACTIONS(2753), + [anon_sym_POUNDline] = ACTIONS(2753), + [anon_sym_POUNDcolumn] = ACTIONS(2753), + [anon_sym_POUNDfunction] = ACTIONS(2753), + [anon_sym_POUNDdsohandle] = ACTIONS(2753), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2751), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2751), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2751), + [anon_sym_LT_EQ] = ACTIONS(2751), + [anon_sym_GT_EQ] = ACTIONS(2751), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_SLASH] = ACTIONS(2751), + [anon_sym_PERCENT] = ACTIONS(2751), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2753), + [sym__plus_then_ws] = ACTIONS(2753), + [sym__minus_then_ws] = ACTIONS(2753), + [sym_bang] = ACTIONS(1069), + }, + [653] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1536), + [sym_boolean_literal] = STATE(1536), + [sym__string_literal] = STATE(1536), + [sym_line_string_literal] = STATE(1536), + [sym_multi_line_string_literal] = STATE(1536), + [sym_raw_string_literal] = STATE(1536), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1536), + [sym__unary_expression] = STATE(1536), + [sym_postfix_expression] = STATE(1536), + [sym_constructor_expression] = STATE(1536), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1536), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1536), + [sym_prefix_expression] = STATE(1536), + [sym_as_expression] = STATE(1536), + [sym_selector_expression] = STATE(1536), + [sym__binary_expression] = STATE(1536), + [sym_multiplicative_expression] = STATE(1536), + [sym_additive_expression] = STATE(1536), + [sym_range_expression] = STATE(1536), + [sym_infix_expression] = STATE(1536), + [sym_nil_coalescing_expression] = STATE(1536), + [sym_check_expression] = STATE(1536), + [sym_comparison_expression] = STATE(1536), + [sym_equality_expression] = STATE(1536), + [sym_conjunction_expression] = STATE(1536), + [sym_disjunction_expression] = STATE(1536), + [sym_bitwise_operation] = STATE(1536), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1536), + [sym_await_expression] = STATE(1536), + [sym_ternary_expression] = STATE(1536), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1536), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1536), + [sym_dictionary_literal] = STATE(1536), + [sym__special_literal] = STATE(1536), + [sym__playground_literal] = STATE(1536), + [sym_lambda_literal] = STATE(1536), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1536), + [sym_key_path_expression] = STATE(1536), + [sym_key_path_string_expression] = STATE(1536), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1536), + [sym__comparison_operator] = STATE(1536), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1536), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1536), + [sym__referenceable_operator] = STATE(1536), + [sym__eq_eq] = STATE(1536), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2755), + [sym_real_literal] = ACTIONS(2757), + [sym_integer_literal] = ACTIONS(2755), + [sym_hex_literal] = ACTIONS(2757), + [sym_oct_literal] = ACTIONS(2757), + [sym_bin_literal] = ACTIONS(2757), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2755), + [anon_sym_GT] = ACTIONS(2755), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2755), + [anon_sym_POUNDfileID] = ACTIONS(2757), + [anon_sym_POUNDfilePath] = ACTIONS(2757), + [anon_sym_POUNDline] = ACTIONS(2757), + [anon_sym_POUNDcolumn] = ACTIONS(2757), + [anon_sym_POUNDfunction] = ACTIONS(2757), + [anon_sym_POUNDdsohandle] = ACTIONS(2757), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2755), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2755), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2755), + [anon_sym_LT_EQ] = ACTIONS(2755), + [anon_sym_GT_EQ] = ACTIONS(2755), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_SLASH] = ACTIONS(2755), + [anon_sym_PERCENT] = ACTIONS(2755), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2757), + [sym__plus_then_ws] = ACTIONS(2757), + [sym__minus_then_ws] = ACTIONS(2757), + [sym_bang] = ACTIONS(1069), + }, + [654] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1539), + [sym_boolean_literal] = STATE(1539), + [sym__string_literal] = STATE(1539), + [sym_line_string_literal] = STATE(1539), + [sym_multi_line_string_literal] = STATE(1539), + [sym_raw_string_literal] = STATE(1539), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1539), + [sym__unary_expression] = STATE(1539), + [sym_postfix_expression] = STATE(1539), + [sym_constructor_expression] = STATE(1539), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1539), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1539), + [sym_prefix_expression] = STATE(1539), + [sym_as_expression] = STATE(1539), + [sym_selector_expression] = STATE(1539), + [sym__binary_expression] = STATE(1539), + [sym_multiplicative_expression] = STATE(1539), + [sym_additive_expression] = STATE(1539), + [sym_range_expression] = STATE(1539), + [sym_infix_expression] = STATE(1539), + [sym_nil_coalescing_expression] = STATE(1539), + [sym_check_expression] = STATE(1539), + [sym_comparison_expression] = STATE(1539), + [sym_equality_expression] = STATE(1539), + [sym_conjunction_expression] = STATE(1539), + [sym_disjunction_expression] = STATE(1539), + [sym_bitwise_operation] = STATE(1539), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1539), + [sym_await_expression] = STATE(1539), + [sym_ternary_expression] = STATE(1539), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1539), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1539), + [sym_dictionary_literal] = STATE(1539), + [sym__special_literal] = STATE(1539), + [sym__playground_literal] = STATE(1539), + [sym_lambda_literal] = STATE(1539), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1539), + [sym_key_path_expression] = STATE(1539), + [sym_key_path_string_expression] = STATE(1539), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1539), + [sym__additive_operator] = STATE(1539), + [sym__multiplicative_operator] = STATE(1539), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1539), + [sym__referenceable_operator] = STATE(1539), + [sym__eq_eq] = STATE(1539), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2759), + [sym_real_literal] = ACTIONS(2761), + [sym_integer_literal] = ACTIONS(2759), + [sym_hex_literal] = ACTIONS(2761), + [sym_oct_literal] = ACTIONS(2761), + [sym_bin_literal] = ACTIONS(2761), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2759), + [anon_sym_GT] = ACTIONS(2759), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2759), + [anon_sym_POUNDfileID] = ACTIONS(2761), + [anon_sym_POUNDfilePath] = ACTIONS(2761), + [anon_sym_POUNDline] = ACTIONS(2761), + [anon_sym_POUNDcolumn] = ACTIONS(2761), + [anon_sym_POUNDfunction] = ACTIONS(2761), + [anon_sym_POUNDdsohandle] = ACTIONS(2761), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2759), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2759), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2759), + [anon_sym_LT_EQ] = ACTIONS(2759), + [anon_sym_GT_EQ] = ACTIONS(2759), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_SLASH] = ACTIONS(2759), + [anon_sym_PERCENT] = ACTIONS(2759), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2761), + [sym__plus_then_ws] = ACTIONS(2761), + [sym__minus_then_ws] = ACTIONS(2761), + [sym_bang] = ACTIONS(1069), + }, + [655] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1985), + [sym_boolean_literal] = STATE(1985), + [sym__string_literal] = STATE(1985), + [sym_line_string_literal] = STATE(1985), + [sym_multi_line_string_literal] = STATE(1985), + [sym_raw_string_literal] = STATE(1985), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1985), + [sym__unary_expression] = STATE(1985), + [sym_postfix_expression] = STATE(1985), + [sym_constructor_expression] = STATE(1985), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1985), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1985), + [sym_prefix_expression] = STATE(1985), + [sym_as_expression] = STATE(1985), + [sym_selector_expression] = STATE(1985), + [sym__binary_expression] = STATE(1985), + [sym_multiplicative_expression] = STATE(1985), + [sym_additive_expression] = STATE(1985), + [sym_range_expression] = STATE(1985), + [sym_infix_expression] = STATE(1985), + [sym_nil_coalescing_expression] = STATE(1985), + [sym_check_expression] = STATE(1985), + [sym_comparison_expression] = STATE(1985), + [sym_equality_expression] = STATE(1985), + [sym_conjunction_expression] = STATE(1985), + [sym_disjunction_expression] = STATE(1985), + [sym_bitwise_operation] = STATE(1985), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1985), + [sym_await_expression] = STATE(1985), + [sym_ternary_expression] = STATE(1985), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1985), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1985), + [sym_dictionary_literal] = STATE(1985), + [sym__special_literal] = STATE(1985), + [sym__playground_literal] = STATE(1985), + [sym_lambda_literal] = STATE(1985), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1985), + [sym_key_path_expression] = STATE(1985), + [sym_key_path_string_expression] = STATE(1985), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1985), + [sym__comparison_operator] = STATE(1985), + [sym__additive_operator] = STATE(1985), + [sym__multiplicative_operator] = STATE(1985), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1985), + [sym__referenceable_operator] = STATE(1985), + [sym__eq_eq] = STATE(1985), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2763), + [sym_real_literal] = ACTIONS(2765), + [sym_integer_literal] = ACTIONS(2763), + [sym_hex_literal] = ACTIONS(2765), + [sym_oct_literal] = ACTIONS(2765), + [sym_bin_literal] = ACTIONS(2765), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2763), + [anon_sym_GT] = ACTIONS(2763), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2763), + [anon_sym_POUNDfileID] = ACTIONS(2765), + [anon_sym_POUNDfilePath] = ACTIONS(2765), + [anon_sym_POUNDline] = ACTIONS(2765), + [anon_sym_POUNDcolumn] = ACTIONS(2765), + [anon_sym_POUNDfunction] = ACTIONS(2765), + [anon_sym_POUNDdsohandle] = ACTIONS(2765), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2763), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2763), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2763), + [anon_sym_LT_EQ] = ACTIONS(2763), + [anon_sym_GT_EQ] = ACTIONS(2763), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_SLASH] = ACTIONS(2763), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2765), + [sym__plus_then_ws] = ACTIONS(2765), + [sym__minus_then_ws] = ACTIONS(2765), + [sym_bang] = ACTIONS(1069), + }, + [656] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1759), + [sym_boolean_literal] = STATE(1759), + [sym__string_literal] = STATE(1759), + [sym_line_string_literal] = STATE(1759), + [sym_multi_line_string_literal] = STATE(1759), + [sym_raw_string_literal] = STATE(1759), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1759), + [sym__unary_expression] = STATE(1759), + [sym_postfix_expression] = STATE(1759), + [sym_constructor_expression] = STATE(1759), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1759), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1759), + [sym_prefix_expression] = STATE(1759), + [sym_as_expression] = STATE(1759), + [sym_selector_expression] = STATE(1759), + [sym__binary_expression] = STATE(1759), + [sym_multiplicative_expression] = STATE(1759), + [sym_additive_expression] = STATE(1759), + [sym_range_expression] = STATE(1759), + [sym_infix_expression] = STATE(1759), + [sym_nil_coalescing_expression] = STATE(1759), + [sym_check_expression] = STATE(1759), + [sym_comparison_expression] = STATE(1759), + [sym_equality_expression] = STATE(1759), + [sym_conjunction_expression] = STATE(1759), + [sym_disjunction_expression] = STATE(1759), + [sym_bitwise_operation] = STATE(1759), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1759), + [sym_await_expression] = STATE(1759), + [sym_ternary_expression] = STATE(1759), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1759), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1759), + [sym_dictionary_literal] = STATE(1759), + [sym__special_literal] = STATE(1759), + [sym__playground_literal] = STATE(1759), + [sym_lambda_literal] = STATE(1759), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1759), + [sym_key_path_expression] = STATE(1759), + [sym_key_path_string_expression] = STATE(1759), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1759), + [sym__comparison_operator] = STATE(1759), + [sym__additive_operator] = STATE(1759), + [sym__multiplicative_operator] = STATE(1759), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1759), + [sym__referenceable_operator] = STATE(1759), + [sym__eq_eq] = STATE(1759), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2767), + [sym_real_literal] = ACTIONS(2769), + [sym_integer_literal] = ACTIONS(2767), + [sym_hex_literal] = ACTIONS(2769), + [sym_oct_literal] = ACTIONS(2769), + [sym_bin_literal] = ACTIONS(2769), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2767), + [anon_sym_GT] = ACTIONS(2767), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2767), + [anon_sym_POUNDfileID] = ACTIONS(2769), + [anon_sym_POUNDfilePath] = ACTIONS(2769), + [anon_sym_POUNDline] = ACTIONS(2769), + [anon_sym_POUNDcolumn] = ACTIONS(2769), + [anon_sym_POUNDfunction] = ACTIONS(2769), + [anon_sym_POUNDdsohandle] = ACTIONS(2769), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2767), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2767), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2767), + [anon_sym_LT_EQ] = ACTIONS(2767), + [anon_sym_GT_EQ] = ACTIONS(2767), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_SLASH] = ACTIONS(2767), + [anon_sym_PERCENT] = ACTIONS(2767), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2769), + [sym__plus_then_ws] = ACTIONS(2769), + [sym__minus_then_ws] = ACTIONS(2769), + [sym_bang] = ACTIONS(1069), + }, + [657] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1591), + [sym_boolean_literal] = STATE(1591), + [sym__string_literal] = STATE(1591), + [sym_line_string_literal] = STATE(1591), + [sym_multi_line_string_literal] = STATE(1591), + [sym_raw_string_literal] = STATE(1591), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1591), + [sym__unary_expression] = STATE(1591), + [sym_postfix_expression] = STATE(1591), + [sym_constructor_expression] = STATE(1591), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1591), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1591), + [sym_prefix_expression] = STATE(1591), + [sym_as_expression] = STATE(1591), + [sym_selector_expression] = STATE(1591), + [sym__binary_expression] = STATE(1591), + [sym_multiplicative_expression] = STATE(1591), + [sym_additive_expression] = STATE(1591), + [sym_range_expression] = STATE(1591), + [sym_infix_expression] = STATE(1591), + [sym_nil_coalescing_expression] = STATE(1591), + [sym_check_expression] = STATE(1591), + [sym_comparison_expression] = STATE(1591), + [sym_equality_expression] = STATE(1591), + [sym_conjunction_expression] = STATE(1591), + [sym_disjunction_expression] = STATE(1591), + [sym_bitwise_operation] = STATE(1591), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1591), + [sym_await_expression] = STATE(1591), + [sym_ternary_expression] = STATE(1591), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1591), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1591), + [sym_dictionary_literal] = STATE(1591), + [sym__special_literal] = STATE(1591), + [sym__playground_literal] = STATE(1591), + [sym_lambda_literal] = STATE(1591), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1591), + [sym_key_path_expression] = STATE(1591), + [sym_key_path_string_expression] = STATE(1591), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1591), + [sym__comparison_operator] = STATE(1591), + [sym__additive_operator] = STATE(1591), + [sym__multiplicative_operator] = STATE(1591), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1591), + [sym__referenceable_operator] = STATE(1591), + [sym__eq_eq] = STATE(1591), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2771), + [sym_real_literal] = ACTIONS(2773), + [sym_integer_literal] = ACTIONS(2771), + [sym_hex_literal] = ACTIONS(2773), + [sym_oct_literal] = ACTIONS(2773), + [sym_bin_literal] = ACTIONS(2773), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_GT] = ACTIONS(2771), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2771), + [anon_sym_POUNDfileID] = ACTIONS(2773), + [anon_sym_POUNDfilePath] = ACTIONS(2773), + [anon_sym_POUNDline] = ACTIONS(2773), + [anon_sym_POUNDcolumn] = ACTIONS(2773), + [anon_sym_POUNDfunction] = ACTIONS(2773), + [anon_sym_POUNDdsohandle] = ACTIONS(2773), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2771), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2771), + [anon_sym_LT_EQ] = ACTIONS(2771), + [anon_sym_GT_EQ] = ACTIONS(2771), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_PERCENT] = ACTIONS(2771), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2773), + [sym__plus_then_ws] = ACTIONS(2773), + [sym__minus_then_ws] = ACTIONS(2773), + [sym_bang] = ACTIONS(1069), + }, + [658] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2039), + [sym_boolean_literal] = STATE(2039), + [sym__string_literal] = STATE(2039), + [sym_line_string_literal] = STATE(2039), + [sym_multi_line_string_literal] = STATE(2039), + [sym_raw_string_literal] = STATE(2039), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2039), + [sym__unary_expression] = STATE(2039), + [sym_postfix_expression] = STATE(2039), + [sym_constructor_expression] = STATE(2039), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2039), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2039), + [sym_prefix_expression] = STATE(2039), + [sym_as_expression] = STATE(2039), + [sym_selector_expression] = STATE(2039), + [sym__binary_expression] = STATE(2039), + [sym_multiplicative_expression] = STATE(2039), + [sym_additive_expression] = STATE(2039), + [sym_range_expression] = STATE(2039), + [sym_infix_expression] = STATE(2039), + [sym_nil_coalescing_expression] = STATE(2039), + [sym_check_expression] = STATE(2039), + [sym_comparison_expression] = STATE(2039), + [sym_equality_expression] = STATE(2039), + [sym_conjunction_expression] = STATE(2039), + [sym_disjunction_expression] = STATE(2039), + [sym_bitwise_operation] = STATE(2039), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2039), + [sym_await_expression] = STATE(2039), + [sym_ternary_expression] = STATE(2039), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2039), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2039), + [sym_dictionary_literal] = STATE(2039), + [sym__special_literal] = STATE(2039), + [sym__playground_literal] = STATE(2039), + [sym_lambda_literal] = STATE(2039), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2039), + [sym_key_path_expression] = STATE(2039), + [sym_key_path_string_expression] = STATE(2039), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2039), + [sym__comparison_operator] = STATE(2039), + [sym__additive_operator] = STATE(2039), + [sym__multiplicative_operator] = STATE(2039), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2039), + [sym__referenceable_operator] = STATE(2039), + [sym__eq_eq] = STATE(2039), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2775), + [sym_real_literal] = ACTIONS(2777), + [sym_integer_literal] = ACTIONS(2775), + [sym_hex_literal] = ACTIONS(2777), + [sym_oct_literal] = ACTIONS(2777), + [sym_bin_literal] = ACTIONS(2777), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_GT] = ACTIONS(2775), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2775), + [anon_sym_POUNDfileID] = ACTIONS(2777), + [anon_sym_POUNDfilePath] = ACTIONS(2777), + [anon_sym_POUNDline] = ACTIONS(2777), + [anon_sym_POUNDcolumn] = ACTIONS(2777), + [anon_sym_POUNDfunction] = ACTIONS(2777), + [anon_sym_POUNDdsohandle] = ACTIONS(2777), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2775), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2775), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2775), + [anon_sym_LT_EQ] = ACTIONS(2775), + [anon_sym_GT_EQ] = ACTIONS(2775), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_SLASH] = ACTIONS(2775), + [anon_sym_PERCENT] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2777), + [sym__plus_then_ws] = ACTIONS(2777), + [sym__minus_then_ws] = ACTIONS(2777), + [sym_bang] = ACTIONS(1069), + }, + [659] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2136), + [sym_boolean_literal] = STATE(2136), + [sym__string_literal] = STATE(2136), + [sym_line_string_literal] = STATE(2136), + [sym_multi_line_string_literal] = STATE(2136), + [sym_raw_string_literal] = STATE(2136), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2136), + [sym__unary_expression] = STATE(2136), + [sym_postfix_expression] = STATE(2136), + [sym_constructor_expression] = STATE(2136), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2136), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2136), + [sym_prefix_expression] = STATE(2136), + [sym_as_expression] = STATE(2136), + [sym_selector_expression] = STATE(2136), + [sym__binary_expression] = STATE(2136), + [sym_multiplicative_expression] = STATE(2136), + [sym_additive_expression] = STATE(2136), + [sym_range_expression] = STATE(2136), + [sym_infix_expression] = STATE(2136), + [sym_nil_coalescing_expression] = STATE(2136), + [sym_check_expression] = STATE(2136), + [sym_comparison_expression] = STATE(2136), + [sym_equality_expression] = STATE(2136), + [sym_conjunction_expression] = STATE(2136), + [sym_disjunction_expression] = STATE(2136), + [sym_bitwise_operation] = STATE(2136), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2136), + [sym_await_expression] = STATE(2136), + [sym_ternary_expression] = STATE(2136), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2136), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2136), + [sym_dictionary_literal] = STATE(2136), + [sym__special_literal] = STATE(2136), + [sym__playground_literal] = STATE(2136), + [sym_lambda_literal] = STATE(2136), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2136), + [sym_key_path_expression] = STATE(2136), + [sym_key_path_string_expression] = STATE(2136), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2136), + [sym__comparison_operator] = STATE(2136), + [sym__additive_operator] = STATE(2136), + [sym__multiplicative_operator] = STATE(2136), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2136), + [sym__referenceable_operator] = STATE(2136), + [sym__eq_eq] = STATE(2136), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2779), + [sym_real_literal] = ACTIONS(2781), + [sym_integer_literal] = ACTIONS(2779), + [sym_hex_literal] = ACTIONS(2781), + [sym_oct_literal] = ACTIONS(2781), + [sym_bin_literal] = ACTIONS(2781), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2779), + [anon_sym_GT] = ACTIONS(2779), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2779), + [anon_sym_POUNDfileID] = ACTIONS(2781), + [anon_sym_POUNDfilePath] = ACTIONS(2781), + [anon_sym_POUNDline] = ACTIONS(2781), + [anon_sym_POUNDcolumn] = ACTIONS(2781), + [anon_sym_POUNDfunction] = ACTIONS(2781), + [anon_sym_POUNDdsohandle] = ACTIONS(2781), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2779), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_SLASH] = ACTIONS(2779), + [anon_sym_PERCENT] = ACTIONS(2779), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2781), + [sym__plus_then_ws] = ACTIONS(2781), + [sym__minus_then_ws] = ACTIONS(2781), + [sym_bang] = ACTIONS(1069), + }, + [660] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1756), + [sym_boolean_literal] = STATE(1756), + [sym__string_literal] = STATE(1756), + [sym_line_string_literal] = STATE(1756), + [sym_multi_line_string_literal] = STATE(1756), + [sym_raw_string_literal] = STATE(1756), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1756), + [sym__unary_expression] = STATE(1756), + [sym_postfix_expression] = STATE(1756), + [sym_constructor_expression] = STATE(1756), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1756), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1756), + [sym_prefix_expression] = STATE(1756), + [sym_as_expression] = STATE(1756), + [sym_selector_expression] = STATE(1756), + [sym__binary_expression] = STATE(1756), + [sym_multiplicative_expression] = STATE(1756), + [sym_additive_expression] = STATE(1756), + [sym_range_expression] = STATE(1756), + [sym_infix_expression] = STATE(1756), + [sym_nil_coalescing_expression] = STATE(1756), + [sym_check_expression] = STATE(1756), + [sym_comparison_expression] = STATE(1756), + [sym_equality_expression] = STATE(1756), + [sym_conjunction_expression] = STATE(1756), + [sym_disjunction_expression] = STATE(1756), + [sym_bitwise_operation] = STATE(1756), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1756), + [sym_await_expression] = STATE(1756), + [sym_ternary_expression] = STATE(1756), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1756), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1756), + [sym_dictionary_literal] = STATE(1756), + [sym__special_literal] = STATE(1756), + [sym__playground_literal] = STATE(1756), + [sym_lambda_literal] = STATE(1756), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1756), + [sym_key_path_expression] = STATE(1756), + [sym_key_path_string_expression] = STATE(1756), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1756), + [sym__comparison_operator] = STATE(1756), + [sym__additive_operator] = STATE(1756), + [sym__multiplicative_operator] = STATE(1756), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1756), + [sym__referenceable_operator] = STATE(1756), + [sym__eq_eq] = STATE(1756), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2783), + [sym_real_literal] = ACTIONS(2785), + [sym_integer_literal] = ACTIONS(2783), + [sym_hex_literal] = ACTIONS(2785), + [sym_oct_literal] = ACTIONS(2785), + [sym_bin_literal] = ACTIONS(2785), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(2783), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2783), + [anon_sym_POUNDfileID] = ACTIONS(2785), + [anon_sym_POUNDfilePath] = ACTIONS(2785), + [anon_sym_POUNDline] = ACTIONS(2785), + [anon_sym_POUNDcolumn] = ACTIONS(2785), + [anon_sym_POUNDfunction] = ACTIONS(2785), + [anon_sym_POUNDdsohandle] = ACTIONS(2785), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2783), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2783), + [anon_sym_SLASH] = ACTIONS(2783), + [anon_sym_PERCENT] = ACTIONS(2783), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2785), + [sym__plus_then_ws] = ACTIONS(2785), + [sym__minus_then_ws] = ACTIONS(2785), + [sym_bang] = ACTIONS(1069), + }, + [661] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1753), + [sym_boolean_literal] = STATE(1753), + [sym__string_literal] = STATE(1753), + [sym_line_string_literal] = STATE(1753), + [sym_multi_line_string_literal] = STATE(1753), + [sym_raw_string_literal] = STATE(1753), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1753), + [sym__unary_expression] = STATE(1753), + [sym_postfix_expression] = STATE(1753), + [sym_constructor_expression] = STATE(1753), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1753), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1753), + [sym_prefix_expression] = STATE(1753), + [sym_as_expression] = STATE(1753), + [sym_selector_expression] = STATE(1753), + [sym__binary_expression] = STATE(1753), + [sym_multiplicative_expression] = STATE(1753), + [sym_additive_expression] = STATE(1753), + [sym_range_expression] = STATE(1753), + [sym_infix_expression] = STATE(1753), + [sym_nil_coalescing_expression] = STATE(1753), + [sym_check_expression] = STATE(1753), + [sym_comparison_expression] = STATE(1753), + [sym_equality_expression] = STATE(1753), + [sym_conjunction_expression] = STATE(1753), + [sym_disjunction_expression] = STATE(1753), + [sym_bitwise_operation] = STATE(1753), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1753), + [sym_await_expression] = STATE(1753), + [sym_ternary_expression] = STATE(1753), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1753), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1753), + [sym_dictionary_literal] = STATE(1753), + [sym__special_literal] = STATE(1753), + [sym__playground_literal] = STATE(1753), + [sym_lambda_literal] = STATE(1753), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1753), + [sym_key_path_expression] = STATE(1753), + [sym_key_path_string_expression] = STATE(1753), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1753), + [sym__additive_operator] = STATE(1753), + [sym__multiplicative_operator] = STATE(1753), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1753), + [sym__referenceable_operator] = STATE(1753), + [sym__eq_eq] = STATE(1753), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2787), + [sym_real_literal] = ACTIONS(2789), + [sym_integer_literal] = ACTIONS(2787), + [sym_hex_literal] = ACTIONS(2789), + [sym_oct_literal] = ACTIONS(2789), + [sym_bin_literal] = ACTIONS(2789), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2787), + [anon_sym_GT] = ACTIONS(2787), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2787), + [anon_sym_POUNDfileID] = ACTIONS(2789), + [anon_sym_POUNDfilePath] = ACTIONS(2789), + [anon_sym_POUNDline] = ACTIONS(2789), + [anon_sym_POUNDcolumn] = ACTIONS(2789), + [anon_sym_POUNDfunction] = ACTIONS(2789), + [anon_sym_POUNDdsohandle] = ACTIONS(2789), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2787), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_SLASH] = ACTIONS(2787), + [anon_sym_PERCENT] = ACTIONS(2787), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2789), + [sym__plus_then_ws] = ACTIONS(2789), + [sym__minus_then_ws] = ACTIONS(2789), + [sym_bang] = ACTIONS(1069), + }, + [662] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2135), + [sym_boolean_literal] = STATE(2135), + [sym__string_literal] = STATE(2135), + [sym_line_string_literal] = STATE(2135), + [sym_multi_line_string_literal] = STATE(2135), + [sym_raw_string_literal] = STATE(2135), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2135), + [sym__unary_expression] = STATE(2135), + [sym_postfix_expression] = STATE(2135), + [sym_constructor_expression] = STATE(2135), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2135), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2135), + [sym_prefix_expression] = STATE(2135), + [sym_as_expression] = STATE(2135), + [sym_selector_expression] = STATE(2135), + [sym__binary_expression] = STATE(2135), + [sym_multiplicative_expression] = STATE(2135), + [sym_additive_expression] = STATE(2135), + [sym_range_expression] = STATE(2135), + [sym_infix_expression] = STATE(2135), + [sym_nil_coalescing_expression] = STATE(2135), + [sym_check_expression] = STATE(2135), + [sym_comparison_expression] = STATE(2135), + [sym_equality_expression] = STATE(2135), + [sym_conjunction_expression] = STATE(2135), + [sym_disjunction_expression] = STATE(2135), + [sym_bitwise_operation] = STATE(2135), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2135), + [sym_await_expression] = STATE(2135), + [sym_ternary_expression] = STATE(2135), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2135), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2135), + [sym_dictionary_literal] = STATE(2135), + [sym__special_literal] = STATE(2135), + [sym__playground_literal] = STATE(2135), + [sym_lambda_literal] = STATE(2135), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2135), + [sym_key_path_expression] = STATE(2135), + [sym_key_path_string_expression] = STATE(2135), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2135), + [sym__comparison_operator] = STATE(2135), + [sym__additive_operator] = STATE(2135), + [sym__multiplicative_operator] = STATE(2135), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2135), + [sym__referenceable_operator] = STATE(2135), + [sym__eq_eq] = STATE(2135), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2791), + [sym_real_literal] = ACTIONS(2793), + [sym_integer_literal] = ACTIONS(2791), + [sym_hex_literal] = ACTIONS(2793), + [sym_oct_literal] = ACTIONS(2793), + [sym_bin_literal] = ACTIONS(2793), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2791), + [anon_sym_GT] = ACTIONS(2791), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2791), + [anon_sym_POUNDfileID] = ACTIONS(2793), + [anon_sym_POUNDfilePath] = ACTIONS(2793), + [anon_sym_POUNDline] = ACTIONS(2793), + [anon_sym_POUNDcolumn] = ACTIONS(2793), + [anon_sym_POUNDfunction] = ACTIONS(2793), + [anon_sym_POUNDdsohandle] = ACTIONS(2793), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2791), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_SLASH] = ACTIONS(2791), + [anon_sym_PERCENT] = ACTIONS(2791), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2793), + [sym__plus_then_ws] = ACTIONS(2793), + [sym__minus_then_ws] = ACTIONS(2793), + [sym_bang] = ACTIONS(1069), + }, + [663] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2134), + [sym_boolean_literal] = STATE(2134), + [sym__string_literal] = STATE(2134), + [sym_line_string_literal] = STATE(2134), + [sym_multi_line_string_literal] = STATE(2134), + [sym_raw_string_literal] = STATE(2134), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2134), + [sym__unary_expression] = STATE(2134), + [sym_postfix_expression] = STATE(2134), + [sym_constructor_expression] = STATE(2134), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2134), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2134), + [sym_prefix_expression] = STATE(2134), + [sym_as_expression] = STATE(2134), + [sym_selector_expression] = STATE(2134), + [sym__binary_expression] = STATE(2134), + [sym_multiplicative_expression] = STATE(2134), + [sym_additive_expression] = STATE(2134), + [sym_range_expression] = STATE(2134), + [sym_infix_expression] = STATE(2134), + [sym_nil_coalescing_expression] = STATE(2134), + [sym_check_expression] = STATE(2134), + [sym_comparison_expression] = STATE(2134), + [sym_equality_expression] = STATE(2134), + [sym_conjunction_expression] = STATE(2134), + [sym_disjunction_expression] = STATE(2134), + [sym_bitwise_operation] = STATE(2134), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2134), + [sym_await_expression] = STATE(2134), + [sym_ternary_expression] = STATE(2134), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2134), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2134), + [sym_dictionary_literal] = STATE(2134), + [sym__special_literal] = STATE(2134), + [sym__playground_literal] = STATE(2134), + [sym_lambda_literal] = STATE(2134), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2134), + [sym_key_path_expression] = STATE(2134), + [sym_key_path_string_expression] = STATE(2134), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2134), + [sym__comparison_operator] = STATE(2134), + [sym__additive_operator] = STATE(2134), + [sym__multiplicative_operator] = STATE(2134), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2134), + [sym__referenceable_operator] = STATE(2134), + [sym__eq_eq] = STATE(2134), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2795), + [sym_real_literal] = ACTIONS(2797), + [sym_integer_literal] = ACTIONS(2795), + [sym_hex_literal] = ACTIONS(2797), + [sym_oct_literal] = ACTIONS(2797), + [sym_bin_literal] = ACTIONS(2797), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_GT] = ACTIONS(2795), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2795), + [anon_sym_POUNDfileID] = ACTIONS(2797), + [anon_sym_POUNDfilePath] = ACTIONS(2797), + [anon_sym_POUNDline] = ACTIONS(2797), + [anon_sym_POUNDcolumn] = ACTIONS(2797), + [anon_sym_POUNDfunction] = ACTIONS(2797), + [anon_sym_POUNDdsohandle] = ACTIONS(2797), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2795), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_SLASH] = ACTIONS(2795), + [anon_sym_PERCENT] = ACTIONS(2795), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2797), + [sym__plus_then_ws] = ACTIONS(2797), + [sym__minus_then_ws] = ACTIONS(2797), + [sym_bang] = ACTIONS(1069), + }, + [664] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1752), + [sym_boolean_literal] = STATE(1752), + [sym__string_literal] = STATE(1752), + [sym_line_string_literal] = STATE(1752), + [sym_multi_line_string_literal] = STATE(1752), + [sym_raw_string_literal] = STATE(1752), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1752), + [sym__unary_expression] = STATE(1752), + [sym_postfix_expression] = STATE(1752), + [sym_constructor_expression] = STATE(1752), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1752), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1752), + [sym_prefix_expression] = STATE(1752), + [sym_as_expression] = STATE(1752), + [sym_selector_expression] = STATE(1752), + [sym__binary_expression] = STATE(1752), + [sym_multiplicative_expression] = STATE(1752), + [sym_additive_expression] = STATE(1752), + [sym_range_expression] = STATE(1752), + [sym_infix_expression] = STATE(1752), + [sym_nil_coalescing_expression] = STATE(1752), + [sym_check_expression] = STATE(1752), + [sym_comparison_expression] = STATE(1752), + [sym_equality_expression] = STATE(1752), + [sym_conjunction_expression] = STATE(1752), + [sym_disjunction_expression] = STATE(1752), + [sym_bitwise_operation] = STATE(1752), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1752), + [sym_await_expression] = STATE(1752), + [sym_ternary_expression] = STATE(1752), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1752), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1752), + [sym_dictionary_literal] = STATE(1752), + [sym__special_literal] = STATE(1752), + [sym__playground_literal] = STATE(1752), + [sym_lambda_literal] = STATE(1752), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1752), + [sym_key_path_expression] = STATE(1752), + [sym_key_path_string_expression] = STATE(1752), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1752), + [sym__comparison_operator] = STATE(1752), + [sym__additive_operator] = STATE(1752), + [sym__multiplicative_operator] = STATE(1752), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1752), + [sym__referenceable_operator] = STATE(1752), + [sym__eq_eq] = STATE(1752), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2799), + [sym_real_literal] = ACTIONS(2801), + [sym_integer_literal] = ACTIONS(2799), + [sym_hex_literal] = ACTIONS(2801), + [sym_oct_literal] = ACTIONS(2801), + [sym_bin_literal] = ACTIONS(2801), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2799), + [anon_sym_GT] = ACTIONS(2799), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2799), + [anon_sym_POUNDfileID] = ACTIONS(2801), + [anon_sym_POUNDfilePath] = ACTIONS(2801), + [anon_sym_POUNDline] = ACTIONS(2801), + [anon_sym_POUNDcolumn] = ACTIONS(2801), + [anon_sym_POUNDfunction] = ACTIONS(2801), + [anon_sym_POUNDdsohandle] = ACTIONS(2801), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2799), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2799), + [anon_sym_PERCENT] = ACTIONS(2799), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2801), + [sym__plus_then_ws] = ACTIONS(2801), + [sym__minus_then_ws] = ACTIONS(2801), + [sym_bang] = ACTIONS(1069), + }, + [665] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1750), + [sym_boolean_literal] = STATE(1750), + [sym__string_literal] = STATE(1750), + [sym_line_string_literal] = STATE(1750), + [sym_multi_line_string_literal] = STATE(1750), + [sym_raw_string_literal] = STATE(1750), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1750), + [sym__unary_expression] = STATE(1750), + [sym_postfix_expression] = STATE(1750), + [sym_constructor_expression] = STATE(1750), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1750), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1750), + [sym_prefix_expression] = STATE(1750), + [sym_as_expression] = STATE(1750), + [sym_selector_expression] = STATE(1750), + [sym__binary_expression] = STATE(1750), + [sym_multiplicative_expression] = STATE(1750), + [sym_additive_expression] = STATE(1750), + [sym_range_expression] = STATE(1750), + [sym_infix_expression] = STATE(1750), + [sym_nil_coalescing_expression] = STATE(1750), + [sym_check_expression] = STATE(1750), + [sym_comparison_expression] = STATE(1750), + [sym_equality_expression] = STATE(1750), + [sym_conjunction_expression] = STATE(1750), + [sym_disjunction_expression] = STATE(1750), + [sym_bitwise_operation] = STATE(1750), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1750), + [sym_await_expression] = STATE(1750), + [sym_ternary_expression] = STATE(1750), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1750), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1750), + [sym_dictionary_literal] = STATE(1750), + [sym__special_literal] = STATE(1750), + [sym__playground_literal] = STATE(1750), + [sym_lambda_literal] = STATE(1750), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1750), + [sym_key_path_expression] = STATE(1750), + [sym_key_path_string_expression] = STATE(1750), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1750), + [sym__comparison_operator] = STATE(1750), + [sym__additive_operator] = STATE(1750), + [sym__multiplicative_operator] = STATE(1750), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1750), + [sym__referenceable_operator] = STATE(1750), + [sym__eq_eq] = STATE(1750), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2803), + [sym_real_literal] = ACTIONS(2805), + [sym_integer_literal] = ACTIONS(2803), + [sym_hex_literal] = ACTIONS(2805), + [sym_oct_literal] = ACTIONS(2805), + [sym_bin_literal] = ACTIONS(2805), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2803), + [anon_sym_GT] = ACTIONS(2803), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2803), + [anon_sym_POUNDfileID] = ACTIONS(2805), + [anon_sym_POUNDfilePath] = ACTIONS(2805), + [anon_sym_POUNDline] = ACTIONS(2805), + [anon_sym_POUNDcolumn] = ACTIONS(2805), + [anon_sym_POUNDfunction] = ACTIONS(2805), + [anon_sym_POUNDdsohandle] = ACTIONS(2805), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2803), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2803), + [anon_sym_LT_EQ] = ACTIONS(2803), + [anon_sym_GT_EQ] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_SLASH] = ACTIONS(2803), + [anon_sym_PERCENT] = ACTIONS(2803), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2805), + [sym__plus_then_ws] = ACTIONS(2805), + [sym__minus_then_ws] = ACTIONS(2805), + [sym_bang] = ACTIONS(1069), + }, + [666] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1542), + [sym_boolean_literal] = STATE(1542), + [sym__string_literal] = STATE(1542), + [sym_line_string_literal] = STATE(1542), + [sym_multi_line_string_literal] = STATE(1542), + [sym_raw_string_literal] = STATE(1542), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1542), + [sym__unary_expression] = STATE(1542), + [sym_postfix_expression] = STATE(1542), + [sym_constructor_expression] = STATE(1542), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1542), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1542), + [sym_prefix_expression] = STATE(1542), + [sym_as_expression] = STATE(1542), + [sym_selector_expression] = STATE(1542), + [sym__binary_expression] = STATE(1542), + [sym_multiplicative_expression] = STATE(1542), + [sym_additive_expression] = STATE(1542), + [sym_range_expression] = STATE(1542), + [sym_infix_expression] = STATE(1542), + [sym_nil_coalescing_expression] = STATE(1542), + [sym_check_expression] = STATE(1542), + [sym_comparison_expression] = STATE(1542), + [sym_equality_expression] = STATE(1542), + [sym_conjunction_expression] = STATE(1542), + [sym_disjunction_expression] = STATE(1542), + [sym_bitwise_operation] = STATE(1542), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_ternary_expression] = STATE(1542), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1542), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1542), + [sym_dictionary_literal] = STATE(1542), + [sym__special_literal] = STATE(1542), + [sym__playground_literal] = STATE(1542), + [sym_lambda_literal] = STATE(1542), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1542), + [sym_key_path_expression] = STATE(1542), + [sym_key_path_string_expression] = STATE(1542), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1542), + [sym__comparison_operator] = STATE(1542), + [sym__additive_operator] = STATE(1542), + [sym__multiplicative_operator] = STATE(1542), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1542), + [sym__referenceable_operator] = STATE(1542), + [sym__eq_eq] = STATE(1542), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2807), + [sym_real_literal] = ACTIONS(2809), + [sym_integer_literal] = ACTIONS(2807), + [sym_hex_literal] = ACTIONS(2809), + [sym_oct_literal] = ACTIONS(2809), + [sym_bin_literal] = ACTIONS(2809), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2807), + [anon_sym_GT] = ACTIONS(2807), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2807), + [anon_sym_POUNDfileID] = ACTIONS(2809), + [anon_sym_POUNDfilePath] = ACTIONS(2809), + [anon_sym_POUNDline] = ACTIONS(2809), + [anon_sym_POUNDcolumn] = ACTIONS(2809), + [anon_sym_POUNDfunction] = ACTIONS(2809), + [anon_sym_POUNDdsohandle] = ACTIONS(2809), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2807), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2807), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2807), + [anon_sym_LT_EQ] = ACTIONS(2807), + [anon_sym_GT_EQ] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_SLASH] = ACTIONS(2807), + [anon_sym_PERCENT] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2809), + [sym__plus_then_ws] = ACTIONS(2809), + [sym__minus_then_ws] = ACTIONS(2809), + [sym_bang] = ACTIONS(1069), + }, + [667] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1543), + [sym_boolean_literal] = STATE(1543), + [sym__string_literal] = STATE(1543), + [sym_line_string_literal] = STATE(1543), + [sym_multi_line_string_literal] = STATE(1543), + [sym_raw_string_literal] = STATE(1543), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1543), + [sym__unary_expression] = STATE(1543), + [sym_postfix_expression] = STATE(1543), + [sym_constructor_expression] = STATE(1543), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1543), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1543), + [sym_prefix_expression] = STATE(1543), + [sym_as_expression] = STATE(1543), + [sym_selector_expression] = STATE(1543), + [sym__binary_expression] = STATE(1543), + [sym_multiplicative_expression] = STATE(1543), + [sym_additive_expression] = STATE(1543), + [sym_range_expression] = STATE(1543), + [sym_infix_expression] = STATE(1543), + [sym_nil_coalescing_expression] = STATE(1543), + [sym_check_expression] = STATE(1543), + [sym_comparison_expression] = STATE(1543), + [sym_equality_expression] = STATE(1543), + [sym_conjunction_expression] = STATE(1543), + [sym_disjunction_expression] = STATE(1543), + [sym_bitwise_operation] = STATE(1543), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1543), + [sym_await_expression] = STATE(1543), + [sym_ternary_expression] = STATE(1543), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1543), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1543), + [sym_dictionary_literal] = STATE(1543), + [sym__special_literal] = STATE(1543), + [sym__playground_literal] = STATE(1543), + [sym_lambda_literal] = STATE(1543), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1543), + [sym_key_path_expression] = STATE(1543), + [sym_key_path_string_expression] = STATE(1543), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1543), + [sym__comparison_operator] = STATE(1543), + [sym__additive_operator] = STATE(1543), + [sym__multiplicative_operator] = STATE(1543), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1543), + [sym__referenceable_operator] = STATE(1543), + [sym__eq_eq] = STATE(1543), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2811), + [sym_real_literal] = ACTIONS(2813), + [sym_integer_literal] = ACTIONS(2811), + [sym_hex_literal] = ACTIONS(2813), + [sym_oct_literal] = ACTIONS(2813), + [sym_bin_literal] = ACTIONS(2813), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2811), + [anon_sym_GT] = ACTIONS(2811), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2811), + [anon_sym_POUNDfileID] = ACTIONS(2813), + [anon_sym_POUNDfilePath] = ACTIONS(2813), + [anon_sym_POUNDline] = ACTIONS(2813), + [anon_sym_POUNDcolumn] = ACTIONS(2813), + [anon_sym_POUNDfunction] = ACTIONS(2813), + [anon_sym_POUNDdsohandle] = ACTIONS(2813), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2811), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2811), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2811), + [anon_sym_LT_EQ] = ACTIONS(2811), + [anon_sym_GT_EQ] = ACTIONS(2811), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2811), + [anon_sym_PERCENT] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2813), + [sym__plus_then_ws] = ACTIONS(2813), + [sym__minus_then_ws] = ACTIONS(2813), + [sym_bang] = ACTIONS(1069), + }, + [668] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1594), + [sym_boolean_literal] = STATE(1594), + [sym__string_literal] = STATE(1594), + [sym_line_string_literal] = STATE(1594), + [sym_multi_line_string_literal] = STATE(1594), + [sym_raw_string_literal] = STATE(1594), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1594), + [sym__unary_expression] = STATE(1594), + [sym_postfix_expression] = STATE(1594), + [sym_constructor_expression] = STATE(1594), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1594), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1594), + [sym_prefix_expression] = STATE(1594), + [sym_as_expression] = STATE(1594), + [sym_selector_expression] = STATE(1594), + [sym__binary_expression] = STATE(1594), + [sym_multiplicative_expression] = STATE(1594), + [sym_additive_expression] = STATE(1594), + [sym_range_expression] = STATE(1594), + [sym_infix_expression] = STATE(1594), + [sym_nil_coalescing_expression] = STATE(1594), + [sym_check_expression] = STATE(1594), + [sym_comparison_expression] = STATE(1594), + [sym_equality_expression] = STATE(1594), + [sym_conjunction_expression] = STATE(1594), + [sym_disjunction_expression] = STATE(1594), + [sym_bitwise_operation] = STATE(1594), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1594), + [sym_await_expression] = STATE(1594), + [sym_ternary_expression] = STATE(1594), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1594), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1594), + [sym_dictionary_literal] = STATE(1594), + [sym__special_literal] = STATE(1594), + [sym__playground_literal] = STATE(1594), + [sym_lambda_literal] = STATE(1594), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1594), + [sym_key_path_expression] = STATE(1594), + [sym_key_path_string_expression] = STATE(1594), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1594), + [sym__comparison_operator] = STATE(1594), + [sym__additive_operator] = STATE(1594), + [sym__multiplicative_operator] = STATE(1594), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1594), + [sym__referenceable_operator] = STATE(1594), + [sym__eq_eq] = STATE(1594), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2815), + [sym_real_literal] = ACTIONS(2817), + [sym_integer_literal] = ACTIONS(2815), + [sym_hex_literal] = ACTIONS(2817), + [sym_oct_literal] = ACTIONS(2817), + [sym_bin_literal] = ACTIONS(2817), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2815), + [anon_sym_GT] = ACTIONS(2815), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2815), + [anon_sym_POUNDfileID] = ACTIONS(2817), + [anon_sym_POUNDfilePath] = ACTIONS(2817), + [anon_sym_POUNDline] = ACTIONS(2817), + [anon_sym_POUNDcolumn] = ACTIONS(2817), + [anon_sym_POUNDfunction] = ACTIONS(2817), + [anon_sym_POUNDdsohandle] = ACTIONS(2817), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2815), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2815), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2815), + [anon_sym_LT_EQ] = ACTIONS(2815), + [anon_sym_GT_EQ] = ACTIONS(2815), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_SLASH] = ACTIONS(2815), + [anon_sym_PERCENT] = ACTIONS(2815), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2817), + [sym__plus_then_ws] = ACTIONS(2817), + [sym__minus_then_ws] = ACTIONS(2817), + [sym_bang] = ACTIONS(1069), + }, + [669] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1697), + [sym_boolean_literal] = STATE(1697), + [sym__string_literal] = STATE(1697), + [sym_line_string_literal] = STATE(1697), + [sym_multi_line_string_literal] = STATE(1697), + [sym_raw_string_literal] = STATE(1697), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1697), + [sym__unary_expression] = STATE(1697), + [sym_postfix_expression] = STATE(1697), + [sym_constructor_expression] = STATE(1697), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1697), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1697), + [sym_prefix_expression] = STATE(1697), + [sym_as_expression] = STATE(1697), + [sym_selector_expression] = STATE(1697), + [sym__binary_expression] = STATE(1697), + [sym_multiplicative_expression] = STATE(1697), + [sym_additive_expression] = STATE(1697), + [sym_range_expression] = STATE(1697), + [sym_infix_expression] = STATE(1697), + [sym_nil_coalescing_expression] = STATE(1697), + [sym_check_expression] = STATE(1697), + [sym_comparison_expression] = STATE(1697), + [sym_equality_expression] = STATE(1697), + [sym_conjunction_expression] = STATE(1697), + [sym_disjunction_expression] = STATE(1697), + [sym_bitwise_operation] = STATE(1697), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1697), + [sym_await_expression] = STATE(1697), + [sym_ternary_expression] = STATE(1697), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1697), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1697), + [sym_dictionary_literal] = STATE(1697), + [sym__special_literal] = STATE(1697), + [sym__playground_literal] = STATE(1697), + [sym_lambda_literal] = STATE(1697), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1697), + [sym_key_path_expression] = STATE(1697), + [sym_key_path_string_expression] = STATE(1697), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1697), + [sym__comparison_operator] = STATE(1697), + [sym__additive_operator] = STATE(1697), + [sym__multiplicative_operator] = STATE(1697), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1697), + [sym__referenceable_operator] = STATE(1697), + [sym__eq_eq] = STATE(1697), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2819), + [sym_real_literal] = ACTIONS(2821), + [sym_integer_literal] = ACTIONS(2819), + [sym_hex_literal] = ACTIONS(2821), + [sym_oct_literal] = ACTIONS(2821), + [sym_bin_literal] = ACTIONS(2821), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2819), + [anon_sym_GT] = ACTIONS(2819), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2819), + [anon_sym_POUNDfileID] = ACTIONS(2821), + [anon_sym_POUNDfilePath] = ACTIONS(2821), + [anon_sym_POUNDline] = ACTIONS(2821), + [anon_sym_POUNDcolumn] = ACTIONS(2821), + [anon_sym_POUNDfunction] = ACTIONS(2821), + [anon_sym_POUNDdsohandle] = ACTIONS(2821), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2819), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2819), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2819), + [anon_sym_LT_EQ] = ACTIONS(2819), + [anon_sym_GT_EQ] = ACTIONS(2819), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2819), + [anon_sym_SLASH] = ACTIONS(2819), + [anon_sym_PERCENT] = ACTIONS(2819), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2821), + [sym__plus_then_ws] = ACTIONS(2821), + [sym__minus_then_ws] = ACTIONS(2821), + [sym_bang] = ACTIONS(1069), + }, + [670] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1852), + [sym_boolean_literal] = STATE(1852), + [sym__string_literal] = STATE(1852), + [sym_line_string_literal] = STATE(1852), + [sym_multi_line_string_literal] = STATE(1852), + [sym_raw_string_literal] = STATE(1852), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1852), + [sym__unary_expression] = STATE(1852), + [sym_postfix_expression] = STATE(1852), + [sym_constructor_expression] = STATE(1852), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1852), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1852), + [sym_prefix_expression] = STATE(1852), + [sym_as_expression] = STATE(1852), + [sym_selector_expression] = STATE(1852), + [sym__binary_expression] = STATE(1852), + [sym_multiplicative_expression] = STATE(1852), + [sym_additive_expression] = STATE(1852), + [sym_range_expression] = STATE(1852), + [sym_infix_expression] = STATE(1852), + [sym_nil_coalescing_expression] = STATE(1852), + [sym_check_expression] = STATE(1852), + [sym_comparison_expression] = STATE(1852), + [sym_equality_expression] = STATE(1852), + [sym_conjunction_expression] = STATE(1852), + [sym_disjunction_expression] = STATE(1852), + [sym_bitwise_operation] = STATE(1852), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1852), + [sym_await_expression] = STATE(1852), + [sym_ternary_expression] = STATE(1852), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1852), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1852), + [sym_dictionary_literal] = STATE(1852), + [sym__special_literal] = STATE(1852), + [sym__playground_literal] = STATE(1852), + [sym_lambda_literal] = STATE(1852), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1852), + [sym_key_path_expression] = STATE(1852), + [sym_key_path_string_expression] = STATE(1852), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1852), + [sym__comparison_operator] = STATE(1852), + [sym__additive_operator] = STATE(1852), + [sym__multiplicative_operator] = STATE(1852), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1852), + [sym__referenceable_operator] = STATE(1852), + [sym__eq_eq] = STATE(1852), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2823), + [sym_real_literal] = ACTIONS(2825), + [sym_integer_literal] = ACTIONS(2823), + [sym_hex_literal] = ACTIONS(2825), + [sym_oct_literal] = ACTIONS(2825), + [sym_bin_literal] = ACTIONS(2825), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2823), + [anon_sym_GT] = ACTIONS(2823), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2823), + [anon_sym_POUNDfileID] = ACTIONS(2825), + [anon_sym_POUNDfilePath] = ACTIONS(2825), + [anon_sym_POUNDline] = ACTIONS(2825), + [anon_sym_POUNDcolumn] = ACTIONS(2825), + [anon_sym_POUNDfunction] = ACTIONS(2825), + [anon_sym_POUNDdsohandle] = ACTIONS(2825), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2823), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2823), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2823), + [anon_sym_LT_EQ] = ACTIONS(2823), + [anon_sym_GT_EQ] = ACTIONS(2823), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2823), + [anon_sym_SLASH] = ACTIONS(2823), + [anon_sym_PERCENT] = ACTIONS(2823), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2825), + [sym__plus_then_ws] = ACTIONS(2825), + [sym__minus_then_ws] = ACTIONS(2825), + [sym_bang] = ACTIONS(1069), + }, + [671] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2133), + [sym_boolean_literal] = STATE(2133), + [sym__string_literal] = STATE(2133), + [sym_line_string_literal] = STATE(2133), + [sym_multi_line_string_literal] = STATE(2133), + [sym_raw_string_literal] = STATE(2133), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2133), + [sym__unary_expression] = STATE(2133), + [sym_postfix_expression] = STATE(2133), + [sym_constructor_expression] = STATE(2133), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2133), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2133), + [sym_prefix_expression] = STATE(2133), + [sym_as_expression] = STATE(2133), + [sym_selector_expression] = STATE(2133), + [sym__binary_expression] = STATE(2133), + [sym_multiplicative_expression] = STATE(2133), + [sym_additive_expression] = STATE(2133), + [sym_range_expression] = STATE(2133), + [sym_infix_expression] = STATE(2133), + [sym_nil_coalescing_expression] = STATE(2133), + [sym_check_expression] = STATE(2133), + [sym_comparison_expression] = STATE(2133), + [sym_equality_expression] = STATE(2133), + [sym_conjunction_expression] = STATE(2133), + [sym_disjunction_expression] = STATE(2133), + [sym_bitwise_operation] = STATE(2133), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2133), + [sym_await_expression] = STATE(2133), + [sym_ternary_expression] = STATE(2133), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2133), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2133), + [sym_dictionary_literal] = STATE(2133), + [sym__special_literal] = STATE(2133), + [sym__playground_literal] = STATE(2133), + [sym_lambda_literal] = STATE(2133), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2133), + [sym_key_path_expression] = STATE(2133), + [sym_key_path_string_expression] = STATE(2133), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2133), + [sym__comparison_operator] = STATE(2133), + [sym__additive_operator] = STATE(2133), + [sym__multiplicative_operator] = STATE(2133), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2133), + [sym__referenceable_operator] = STATE(2133), + [sym__eq_eq] = STATE(2133), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2827), + [sym_real_literal] = ACTIONS(2829), + [sym_integer_literal] = ACTIONS(2827), + [sym_hex_literal] = ACTIONS(2829), + [sym_oct_literal] = ACTIONS(2829), + [sym_bin_literal] = ACTIONS(2829), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2827), + [anon_sym_GT] = ACTIONS(2827), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2827), + [anon_sym_POUNDfileID] = ACTIONS(2829), + [anon_sym_POUNDfilePath] = ACTIONS(2829), + [anon_sym_POUNDline] = ACTIONS(2829), + [anon_sym_POUNDcolumn] = ACTIONS(2829), + [anon_sym_POUNDfunction] = ACTIONS(2829), + [anon_sym_POUNDdsohandle] = ACTIONS(2829), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2827), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2827), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2827), + [anon_sym_LT_EQ] = ACTIONS(2827), + [anon_sym_GT_EQ] = ACTIONS(2827), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2827), + [anon_sym_SLASH] = ACTIONS(2827), + [anon_sym_PERCENT] = ACTIONS(2827), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2829), + [sym__plus_then_ws] = ACTIONS(2829), + [sym__minus_then_ws] = ACTIONS(2829), + [sym_bang] = ACTIONS(1069), + }, + [672] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1553), + [sym_boolean_literal] = STATE(1553), + [sym__string_literal] = STATE(1553), + [sym_line_string_literal] = STATE(1553), + [sym_multi_line_string_literal] = STATE(1553), + [sym_raw_string_literal] = STATE(1553), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1553), + [sym__unary_expression] = STATE(1553), + [sym_postfix_expression] = STATE(1553), + [sym_constructor_expression] = STATE(1553), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1553), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1553), + [sym_prefix_expression] = STATE(1553), + [sym_as_expression] = STATE(1553), + [sym_selector_expression] = STATE(1553), + [sym__binary_expression] = STATE(1553), + [sym_multiplicative_expression] = STATE(1553), + [sym_additive_expression] = STATE(1553), + [sym_range_expression] = STATE(1553), + [sym_infix_expression] = STATE(1553), + [sym_nil_coalescing_expression] = STATE(1553), + [sym_check_expression] = STATE(1553), + [sym_comparison_expression] = STATE(1553), + [sym_equality_expression] = STATE(1553), + [sym_conjunction_expression] = STATE(1553), + [sym_disjunction_expression] = STATE(1553), + [sym_bitwise_operation] = STATE(1553), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1553), + [sym_await_expression] = STATE(1553), + [sym_ternary_expression] = STATE(1553), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1553), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1553), + [sym_dictionary_literal] = STATE(1553), + [sym__special_literal] = STATE(1553), + [sym__playground_literal] = STATE(1553), + [sym_lambda_literal] = STATE(1553), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1553), + [sym_key_path_expression] = STATE(1553), + [sym_key_path_string_expression] = STATE(1553), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1553), + [sym__comparison_operator] = STATE(1553), + [sym__additive_operator] = STATE(1553), + [sym__multiplicative_operator] = STATE(1553), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1553), + [sym__referenceable_operator] = STATE(1553), + [sym__eq_eq] = STATE(1553), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2831), + [sym_real_literal] = ACTIONS(2833), + [sym_integer_literal] = ACTIONS(2831), + [sym_hex_literal] = ACTIONS(2833), + [sym_oct_literal] = ACTIONS(2833), + [sym_bin_literal] = ACTIONS(2833), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2831), + [anon_sym_GT] = ACTIONS(2831), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2831), + [anon_sym_POUNDfileID] = ACTIONS(2833), + [anon_sym_POUNDfilePath] = ACTIONS(2833), + [anon_sym_POUNDline] = ACTIONS(2833), + [anon_sym_POUNDcolumn] = ACTIONS(2833), + [anon_sym_POUNDfunction] = ACTIONS(2833), + [anon_sym_POUNDdsohandle] = ACTIONS(2833), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2831), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2831), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2831), + [anon_sym_LT_EQ] = ACTIONS(2831), + [anon_sym_GT_EQ] = ACTIONS(2831), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_SLASH] = ACTIONS(2831), + [anon_sym_PERCENT] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2833), + [sym__plus_then_ws] = ACTIONS(2833), + [sym__minus_then_ws] = ACTIONS(2833), + [sym_bang] = ACTIONS(1069), + }, + [673] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1557), + [sym_boolean_literal] = STATE(1557), + [sym__string_literal] = STATE(1557), + [sym_line_string_literal] = STATE(1557), + [sym_multi_line_string_literal] = STATE(1557), + [sym_raw_string_literal] = STATE(1557), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1557), + [sym__unary_expression] = STATE(1557), + [sym_postfix_expression] = STATE(1557), + [sym_constructor_expression] = STATE(1557), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1557), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1557), + [sym_prefix_expression] = STATE(1557), + [sym_as_expression] = STATE(1557), + [sym_selector_expression] = STATE(1557), + [sym__binary_expression] = STATE(1557), + [sym_multiplicative_expression] = STATE(1557), + [sym_additive_expression] = STATE(1557), + [sym_range_expression] = STATE(1557), + [sym_infix_expression] = STATE(1557), + [sym_nil_coalescing_expression] = STATE(1557), + [sym_check_expression] = STATE(1557), + [sym_comparison_expression] = STATE(1557), + [sym_equality_expression] = STATE(1557), + [sym_conjunction_expression] = STATE(1557), + [sym_disjunction_expression] = STATE(1557), + [sym_bitwise_operation] = STATE(1557), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_ternary_expression] = STATE(1557), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1557), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1557), + [sym_dictionary_literal] = STATE(1557), + [sym__special_literal] = STATE(1557), + [sym__playground_literal] = STATE(1557), + [sym_lambda_literal] = STATE(1557), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1557), + [sym_key_path_expression] = STATE(1557), + [sym_key_path_string_expression] = STATE(1557), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1557), + [sym__comparison_operator] = STATE(1557), + [sym__additive_operator] = STATE(1557), + [sym__multiplicative_operator] = STATE(1557), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1557), + [sym__referenceable_operator] = STATE(1557), + [sym__eq_eq] = STATE(1557), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2835), + [sym_real_literal] = ACTIONS(2837), + [sym_integer_literal] = ACTIONS(2835), + [sym_hex_literal] = ACTIONS(2837), + [sym_oct_literal] = ACTIONS(2837), + [sym_bin_literal] = ACTIONS(2837), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2835), + [anon_sym_GT] = ACTIONS(2835), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2835), + [anon_sym_POUNDfileID] = ACTIONS(2837), + [anon_sym_POUNDfilePath] = ACTIONS(2837), + [anon_sym_POUNDline] = ACTIONS(2837), + [anon_sym_POUNDcolumn] = ACTIONS(2837), + [anon_sym_POUNDfunction] = ACTIONS(2837), + [anon_sym_POUNDdsohandle] = ACTIONS(2837), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2835), + [anon_sym_LT_EQ] = ACTIONS(2835), + [anon_sym_GT_EQ] = ACTIONS(2835), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_SLASH] = ACTIONS(2835), + [anon_sym_PERCENT] = ACTIONS(2835), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2837), + [sym__plus_then_ws] = ACTIONS(2837), + [sym__minus_then_ws] = ACTIONS(2837), + [sym_bang] = ACTIONS(1069), + }, + [674] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1596), + [sym_boolean_literal] = STATE(1596), + [sym__string_literal] = STATE(1596), + [sym_line_string_literal] = STATE(1596), + [sym_multi_line_string_literal] = STATE(1596), + [sym_raw_string_literal] = STATE(1596), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1596), + [sym__unary_expression] = STATE(1596), + [sym_postfix_expression] = STATE(1596), + [sym_constructor_expression] = STATE(1596), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1596), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1596), + [sym_prefix_expression] = STATE(1596), + [sym_as_expression] = STATE(1596), + [sym_selector_expression] = STATE(1596), + [sym__binary_expression] = STATE(1596), + [sym_multiplicative_expression] = STATE(1596), + [sym_additive_expression] = STATE(1596), + [sym_range_expression] = STATE(1596), + [sym_infix_expression] = STATE(1596), + [sym_nil_coalescing_expression] = STATE(1596), + [sym_check_expression] = STATE(1596), + [sym_comparison_expression] = STATE(1596), + [sym_equality_expression] = STATE(1596), + [sym_conjunction_expression] = STATE(1596), + [sym_disjunction_expression] = STATE(1596), + [sym_bitwise_operation] = STATE(1596), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1596), + [sym_await_expression] = STATE(1596), + [sym_ternary_expression] = STATE(1596), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1596), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1596), + [sym_dictionary_literal] = STATE(1596), + [sym__special_literal] = STATE(1596), + [sym__playground_literal] = STATE(1596), + [sym_lambda_literal] = STATE(1596), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1596), + [sym_key_path_expression] = STATE(1596), + [sym_key_path_string_expression] = STATE(1596), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1596), + [sym__comparison_operator] = STATE(1596), + [sym__additive_operator] = STATE(1596), + [sym__multiplicative_operator] = STATE(1596), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1596), + [sym__referenceable_operator] = STATE(1596), + [sym__eq_eq] = STATE(1596), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2839), + [sym_real_literal] = ACTIONS(2841), + [sym_integer_literal] = ACTIONS(2839), + [sym_hex_literal] = ACTIONS(2841), + [sym_oct_literal] = ACTIONS(2841), + [sym_bin_literal] = ACTIONS(2841), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2839), + [anon_sym_GT] = ACTIONS(2839), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2839), + [anon_sym_POUNDfileID] = ACTIONS(2841), + [anon_sym_POUNDfilePath] = ACTIONS(2841), + [anon_sym_POUNDline] = ACTIONS(2841), + [anon_sym_POUNDcolumn] = ACTIONS(2841), + [anon_sym_POUNDfunction] = ACTIONS(2841), + [anon_sym_POUNDdsohandle] = ACTIONS(2841), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2839), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2839), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2839), + [anon_sym_LT_EQ] = ACTIONS(2839), + [anon_sym_GT_EQ] = ACTIONS(2839), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2839), + [anon_sym_SLASH] = ACTIONS(2839), + [anon_sym_PERCENT] = ACTIONS(2839), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2841), + [sym__plus_then_ws] = ACTIONS(2841), + [sym__minus_then_ws] = ACTIONS(2841), + [sym_bang] = ACTIONS(1069), + }, + [675] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1853), + [sym_boolean_literal] = STATE(1853), + [sym__string_literal] = STATE(1853), + [sym_line_string_literal] = STATE(1853), + [sym_multi_line_string_literal] = STATE(1853), + [sym_raw_string_literal] = STATE(1853), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1853), + [sym__unary_expression] = STATE(1853), + [sym_postfix_expression] = STATE(1853), + [sym_constructor_expression] = STATE(1853), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1853), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1853), + [sym_prefix_expression] = STATE(1853), + [sym_as_expression] = STATE(1853), + [sym_selector_expression] = STATE(1853), + [sym__binary_expression] = STATE(1853), + [sym_multiplicative_expression] = STATE(1853), + [sym_additive_expression] = STATE(1853), + [sym_range_expression] = STATE(1853), + [sym_infix_expression] = STATE(1853), + [sym_nil_coalescing_expression] = STATE(1853), + [sym_check_expression] = STATE(1853), + [sym_comparison_expression] = STATE(1853), + [sym_equality_expression] = STATE(1853), + [sym_conjunction_expression] = STATE(1853), + [sym_disjunction_expression] = STATE(1853), + [sym_bitwise_operation] = STATE(1853), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1853), + [sym_await_expression] = STATE(1853), + [sym_ternary_expression] = STATE(1853), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1853), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1853), + [sym_dictionary_literal] = STATE(1853), + [sym__special_literal] = STATE(1853), + [sym__playground_literal] = STATE(1853), + [sym_lambda_literal] = STATE(1853), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1853), + [sym_key_path_expression] = STATE(1853), + [sym_key_path_string_expression] = STATE(1853), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1853), + [sym__comparison_operator] = STATE(1853), + [sym__additive_operator] = STATE(1853), + [sym__multiplicative_operator] = STATE(1853), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1853), + [sym__referenceable_operator] = STATE(1853), + [sym__eq_eq] = STATE(1853), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2843), + [sym_real_literal] = ACTIONS(2845), + [sym_integer_literal] = ACTIONS(2843), + [sym_hex_literal] = ACTIONS(2845), + [sym_oct_literal] = ACTIONS(2845), + [sym_bin_literal] = ACTIONS(2845), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2843), + [anon_sym_GT] = ACTIONS(2843), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2843), + [anon_sym_POUNDfileID] = ACTIONS(2845), + [anon_sym_POUNDfilePath] = ACTIONS(2845), + [anon_sym_POUNDline] = ACTIONS(2845), + [anon_sym_POUNDcolumn] = ACTIONS(2845), + [anon_sym_POUNDfunction] = ACTIONS(2845), + [anon_sym_POUNDdsohandle] = ACTIONS(2845), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2843), + [anon_sym_LT_EQ] = ACTIONS(2843), + [anon_sym_GT_EQ] = ACTIONS(2843), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_SLASH] = ACTIONS(2843), + [anon_sym_PERCENT] = ACTIONS(2843), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2845), + [sym__plus_then_ws] = ACTIONS(2845), + [sym__minus_then_ws] = ACTIONS(2845), + [sym_bang] = ACTIONS(1069), + }, + [676] = { + [sym_simple_identifier] = STATE(2634), + [sym__basic_literal] = STATE(1913), + [sym_boolean_literal] = STATE(1913), + [sym__string_literal] = STATE(1913), + [sym_line_string_literal] = STATE(1913), + [sym_multi_line_string_literal] = STATE(1913), + [sym_raw_string_literal] = STATE(1913), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1913), + [sym__unary_expression] = STATE(1913), + [sym_postfix_expression] = STATE(1913), + [sym_constructor_expression] = STATE(1913), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1913), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1913), + [sym_prefix_expression] = STATE(1913), + [sym_as_expression] = STATE(1913), + [sym_selector_expression] = STATE(1913), + [sym__binary_expression] = STATE(1913), + [sym_multiplicative_expression] = STATE(1913), + [sym_additive_expression] = STATE(1913), + [sym_range_expression] = STATE(1913), + [sym_infix_expression] = STATE(1913), + [sym_nil_coalescing_expression] = STATE(1913), + [sym_check_expression] = STATE(1913), + [sym_comparison_expression] = STATE(1913), + [sym_equality_expression] = STATE(1913), + [sym_conjunction_expression] = STATE(1913), + [sym_disjunction_expression] = STATE(1913), + [sym_bitwise_operation] = STATE(1913), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1913), + [sym_await_expression] = STATE(1913), + [sym_ternary_expression] = STATE(1913), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1913), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1913), + [sym_dictionary_literal] = STATE(1913), + [sym__special_literal] = STATE(1913), + [sym__playground_literal] = STATE(1913), + [sym_lambda_literal] = STATE(1913), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1913), + [sym_key_path_expression] = STATE(1913), + [sym_key_path_string_expression] = STATE(1913), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1913), + [sym__comparison_operator] = STATE(1913), + [sym__additive_operator] = STATE(1913), + [sym__multiplicative_operator] = STATE(1913), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1913), + [sym__referenceable_operator] = STATE(1913), + [sym__eq_eq] = STATE(1913), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(769), + [sym_real_literal] = ACTIONS(771), + [sym_integer_literal] = ACTIONS(769), + [sym_hex_literal] = ACTIONS(771), + [sym_oct_literal] = ACTIONS(771), + [sym_bin_literal] = ACTIONS(771), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(769), + [anon_sym_POUNDfileID] = ACTIONS(771), + [anon_sym_POUNDfilePath] = ACTIONS(771), + [anon_sym_POUNDline] = ACTIONS(771), + [anon_sym_POUNDcolumn] = ACTIONS(771), + [anon_sym_POUNDfunction] = ACTIONS(771), + [anon_sym_POUNDdsohandle] = ACTIONS(771), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ_EQ] = ACTIONS(769), + [anon_sym_EQ_EQ_EQ] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_PERCENT] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(771), + [sym__plus_then_ws] = ACTIONS(771), + [sym__minus_then_ws] = ACTIONS(771), + [sym_bang] = ACTIONS(833), + }, + [677] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1630), + [sym_boolean_literal] = STATE(1630), + [sym__string_literal] = STATE(1630), + [sym_line_string_literal] = STATE(1630), + [sym_multi_line_string_literal] = STATE(1630), + [sym_raw_string_literal] = STATE(1630), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1630), + [sym__unary_expression] = STATE(1630), + [sym_postfix_expression] = STATE(1630), + [sym_constructor_expression] = STATE(1630), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1630), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1630), + [sym_prefix_expression] = STATE(1630), + [sym_as_expression] = STATE(1630), + [sym_selector_expression] = STATE(1630), + [sym__binary_expression] = STATE(1630), + [sym_multiplicative_expression] = STATE(1630), + [sym_additive_expression] = STATE(1630), + [sym_range_expression] = STATE(1630), + [sym_infix_expression] = STATE(1630), + [sym_nil_coalescing_expression] = STATE(1630), + [sym_check_expression] = STATE(1630), + [sym_comparison_expression] = STATE(1630), + [sym_equality_expression] = STATE(1630), + [sym_conjunction_expression] = STATE(1630), + [sym_disjunction_expression] = STATE(1630), + [sym_bitwise_operation] = STATE(1630), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1630), + [sym_await_expression] = STATE(1630), + [sym_ternary_expression] = STATE(1630), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1630), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1630), + [sym_dictionary_literal] = STATE(1630), + [sym__special_literal] = STATE(1630), + [sym__playground_literal] = STATE(1630), + [sym_lambda_literal] = STATE(1630), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1630), + [sym_key_path_expression] = STATE(1630), + [sym_key_path_string_expression] = STATE(1630), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1630), + [sym__comparison_operator] = STATE(1630), + [sym__additive_operator] = STATE(1630), + [sym__multiplicative_operator] = STATE(1630), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1630), + [sym__referenceable_operator] = STATE(1630), + [sym__eq_eq] = STATE(1630), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2847), + [sym_real_literal] = ACTIONS(2849), + [sym_integer_literal] = ACTIONS(2847), + [sym_hex_literal] = ACTIONS(2849), + [sym_oct_literal] = ACTIONS(2849), + [sym_bin_literal] = ACTIONS(2849), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2847), + [anon_sym_GT] = ACTIONS(2847), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2847), + [anon_sym_POUNDfileID] = ACTIONS(2849), + [anon_sym_POUNDfilePath] = ACTIONS(2849), + [anon_sym_POUNDline] = ACTIONS(2849), + [anon_sym_POUNDcolumn] = ACTIONS(2849), + [anon_sym_POUNDfunction] = ACTIONS(2849), + [anon_sym_POUNDdsohandle] = ACTIONS(2849), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2847), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2847), + [anon_sym_SLASH] = ACTIONS(2847), + [anon_sym_PERCENT] = ACTIONS(2847), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2849), + [sym__plus_then_ws] = ACTIONS(2849), + [sym__minus_then_ws] = ACTIONS(2849), + [sym_bang] = ACTIONS(1069), + }, + [678] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1930), + [sym_boolean_literal] = STATE(1930), + [sym__string_literal] = STATE(1930), + [sym_line_string_literal] = STATE(1930), + [sym_multi_line_string_literal] = STATE(1930), + [sym_raw_string_literal] = STATE(1930), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1930), + [sym__unary_expression] = STATE(1930), + [sym_postfix_expression] = STATE(1930), + [sym_constructor_expression] = STATE(1930), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1930), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1930), + [sym_prefix_expression] = STATE(1930), + [sym_as_expression] = STATE(1930), + [sym_selector_expression] = STATE(1930), + [sym__binary_expression] = STATE(1930), + [sym_multiplicative_expression] = STATE(1930), + [sym_additive_expression] = STATE(1930), + [sym_range_expression] = STATE(1930), + [sym_infix_expression] = STATE(1930), + [sym_nil_coalescing_expression] = STATE(1930), + [sym_check_expression] = STATE(1930), + [sym_comparison_expression] = STATE(1930), + [sym_equality_expression] = STATE(1930), + [sym_conjunction_expression] = STATE(1930), + [sym_disjunction_expression] = STATE(1930), + [sym_bitwise_operation] = STATE(1930), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1930), + [sym_await_expression] = STATE(1930), + [sym_ternary_expression] = STATE(1930), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1930), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1930), + [sym_dictionary_literal] = STATE(1930), + [sym__special_literal] = STATE(1930), + [sym__playground_literal] = STATE(1930), + [sym_lambda_literal] = STATE(1930), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1930), + [sym_key_path_expression] = STATE(1930), + [sym_key_path_string_expression] = STATE(1930), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1930), + [sym__comparison_operator] = STATE(1930), + [sym__additive_operator] = STATE(1930), + [sym__multiplicative_operator] = STATE(1930), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1930), + [sym__referenceable_operator] = STATE(1930), + [sym__eq_eq] = STATE(1930), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2851), + [sym_real_literal] = ACTIONS(2853), + [sym_integer_literal] = ACTIONS(2851), + [sym_hex_literal] = ACTIONS(2853), + [sym_oct_literal] = ACTIONS(2853), + [sym_bin_literal] = ACTIONS(2853), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2851), + [anon_sym_GT] = ACTIONS(2851), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2851), + [anon_sym_POUNDfileID] = ACTIONS(2853), + [anon_sym_POUNDfilePath] = ACTIONS(2853), + [anon_sym_POUNDline] = ACTIONS(2853), + [anon_sym_POUNDcolumn] = ACTIONS(2853), + [anon_sym_POUNDfunction] = ACTIONS(2853), + [anon_sym_POUNDdsohandle] = ACTIONS(2853), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2851), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2851), + [anon_sym_SLASH] = ACTIONS(2851), + [anon_sym_PERCENT] = ACTIONS(2851), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2853), + [sym__plus_then_ws] = ACTIONS(2853), + [sym__minus_then_ws] = ACTIONS(2853), + [sym_bang] = ACTIONS(1069), + }, + [679] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1561), + [sym_boolean_literal] = STATE(1561), + [sym__string_literal] = STATE(1561), + [sym_line_string_literal] = STATE(1561), + [sym_multi_line_string_literal] = STATE(1561), + [sym_raw_string_literal] = STATE(1561), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1561), + [sym__unary_expression] = STATE(1561), + [sym_postfix_expression] = STATE(1561), + [sym_constructor_expression] = STATE(1561), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1561), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1561), + [sym_prefix_expression] = STATE(1561), + [sym_as_expression] = STATE(1561), + [sym_selector_expression] = STATE(1561), + [sym__binary_expression] = STATE(1561), + [sym_multiplicative_expression] = STATE(1561), + [sym_additive_expression] = STATE(1561), + [sym_range_expression] = STATE(1561), + [sym_infix_expression] = STATE(1561), + [sym_nil_coalescing_expression] = STATE(1561), + [sym_check_expression] = STATE(1561), + [sym_comparison_expression] = STATE(1561), + [sym_equality_expression] = STATE(1561), + [sym_conjunction_expression] = STATE(1561), + [sym_disjunction_expression] = STATE(1561), + [sym_bitwise_operation] = STATE(1561), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1561), + [sym_await_expression] = STATE(1561), + [sym_ternary_expression] = STATE(1561), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1561), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1561), + [sym_dictionary_literal] = STATE(1561), + [sym__special_literal] = STATE(1561), + [sym__playground_literal] = STATE(1561), + [sym_lambda_literal] = STATE(1561), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1561), + [sym_key_path_expression] = STATE(1561), + [sym_key_path_string_expression] = STATE(1561), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1561), + [sym__comparison_operator] = STATE(1561), + [sym__additive_operator] = STATE(1561), + [sym__multiplicative_operator] = STATE(1561), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1561), + [sym__referenceable_operator] = STATE(1561), + [sym__eq_eq] = STATE(1561), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2855), + [sym_real_literal] = ACTIONS(2857), + [sym_integer_literal] = ACTIONS(2855), + [sym_hex_literal] = ACTIONS(2857), + [sym_oct_literal] = ACTIONS(2857), + [sym_bin_literal] = ACTIONS(2857), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2855), + [anon_sym_GT] = ACTIONS(2855), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2855), + [anon_sym_POUNDfileID] = ACTIONS(2857), + [anon_sym_POUNDfilePath] = ACTIONS(2857), + [anon_sym_POUNDline] = ACTIONS(2857), + [anon_sym_POUNDcolumn] = ACTIONS(2857), + [anon_sym_POUNDfunction] = ACTIONS(2857), + [anon_sym_POUNDdsohandle] = ACTIONS(2857), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2855), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2855), + [anon_sym_SLASH] = ACTIONS(2855), + [anon_sym_PERCENT] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2857), + [sym__plus_then_ws] = ACTIONS(2857), + [sym__minus_then_ws] = ACTIONS(2857), + [sym_bang] = ACTIONS(1069), + }, + [680] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1603), + [sym_boolean_literal] = STATE(1603), + [sym__string_literal] = STATE(1603), + [sym_line_string_literal] = STATE(1603), + [sym_multi_line_string_literal] = STATE(1603), + [sym_raw_string_literal] = STATE(1603), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1603), + [sym__unary_expression] = STATE(1603), + [sym_postfix_expression] = STATE(1603), + [sym_constructor_expression] = STATE(1603), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1603), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1603), + [sym_prefix_expression] = STATE(1603), + [sym_as_expression] = STATE(1603), + [sym_selector_expression] = STATE(1603), + [sym__binary_expression] = STATE(1603), + [sym_multiplicative_expression] = STATE(1603), + [sym_additive_expression] = STATE(1603), + [sym_range_expression] = STATE(1603), + [sym_infix_expression] = STATE(1603), + [sym_nil_coalescing_expression] = STATE(1603), + [sym_check_expression] = STATE(1603), + [sym_comparison_expression] = STATE(1603), + [sym_equality_expression] = STATE(1603), + [sym_conjunction_expression] = STATE(1603), + [sym_disjunction_expression] = STATE(1603), + [sym_bitwise_operation] = STATE(1603), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1603), + [sym_await_expression] = STATE(1603), + [sym_ternary_expression] = STATE(1603), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1603), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1603), + [sym_dictionary_literal] = STATE(1603), + [sym__special_literal] = STATE(1603), + [sym__playground_literal] = STATE(1603), + [sym_lambda_literal] = STATE(1603), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1603), + [sym_key_path_expression] = STATE(1603), + [sym_key_path_string_expression] = STATE(1603), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1603), + [sym__additive_operator] = STATE(1603), + [sym__multiplicative_operator] = STATE(1603), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1603), + [sym__referenceable_operator] = STATE(1603), + [sym__eq_eq] = STATE(1603), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2859), + [sym_real_literal] = ACTIONS(2861), + [sym_integer_literal] = ACTIONS(2859), + [sym_hex_literal] = ACTIONS(2861), + [sym_oct_literal] = ACTIONS(2861), + [sym_bin_literal] = ACTIONS(2861), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2859), + [anon_sym_GT] = ACTIONS(2859), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2859), + [anon_sym_POUNDfileID] = ACTIONS(2861), + [anon_sym_POUNDfilePath] = ACTIONS(2861), + [anon_sym_POUNDline] = ACTIONS(2861), + [anon_sym_POUNDcolumn] = ACTIONS(2861), + [anon_sym_POUNDfunction] = ACTIONS(2861), + [anon_sym_POUNDdsohandle] = ACTIONS(2861), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2859), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_SLASH] = ACTIONS(2859), + [anon_sym_PERCENT] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2861), + [sym__plus_then_ws] = ACTIONS(2861), + [sym__minus_then_ws] = ACTIONS(2861), + [sym_bang] = ACTIONS(1069), + }, + [681] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1925), + [sym_boolean_literal] = STATE(1925), + [sym__string_literal] = STATE(1925), + [sym_line_string_literal] = STATE(1925), + [sym_multi_line_string_literal] = STATE(1925), + [sym_raw_string_literal] = STATE(1925), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1925), + [sym__unary_expression] = STATE(1925), + [sym_postfix_expression] = STATE(1925), + [sym_constructor_expression] = STATE(1925), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1925), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1925), + [sym_prefix_expression] = STATE(1925), + [sym_as_expression] = STATE(1925), + [sym_selector_expression] = STATE(1925), + [sym__binary_expression] = STATE(1925), + [sym_multiplicative_expression] = STATE(1925), + [sym_additive_expression] = STATE(1925), + [sym_range_expression] = STATE(1925), + [sym_infix_expression] = STATE(1925), + [sym_nil_coalescing_expression] = STATE(1925), + [sym_check_expression] = STATE(1925), + [sym_comparison_expression] = STATE(1925), + [sym_equality_expression] = STATE(1925), + [sym_conjunction_expression] = STATE(1925), + [sym_disjunction_expression] = STATE(1925), + [sym_bitwise_operation] = STATE(1925), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1925), + [sym_await_expression] = STATE(1925), + [sym_ternary_expression] = STATE(1925), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1925), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1925), + [sym_dictionary_literal] = STATE(1925), + [sym__special_literal] = STATE(1925), + [sym__playground_literal] = STATE(1925), + [sym_lambda_literal] = STATE(1925), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1925), + [sym_key_path_expression] = STATE(1925), + [sym_key_path_string_expression] = STATE(1925), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1925), + [sym__additive_operator] = STATE(1925), + [sym__multiplicative_operator] = STATE(1925), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1925), + [sym__referenceable_operator] = STATE(1925), + [sym__eq_eq] = STATE(1925), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2863), + [sym_real_literal] = ACTIONS(2865), + [sym_integer_literal] = ACTIONS(2863), + [sym_hex_literal] = ACTIONS(2865), + [sym_oct_literal] = ACTIONS(2865), + [sym_bin_literal] = ACTIONS(2865), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2863), + [anon_sym_GT] = ACTIONS(2863), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2863), + [anon_sym_POUNDfileID] = ACTIONS(2865), + [anon_sym_POUNDfilePath] = ACTIONS(2865), + [anon_sym_POUNDline] = ACTIONS(2865), + [anon_sym_POUNDcolumn] = ACTIONS(2865), + [anon_sym_POUNDfunction] = ACTIONS(2865), + [anon_sym_POUNDdsohandle] = ACTIONS(2865), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2863), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2863), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2863), + [anon_sym_LT_EQ] = ACTIONS(2863), + [anon_sym_GT_EQ] = ACTIONS(2863), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_SLASH] = ACTIONS(2863), + [anon_sym_PERCENT] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2865), + [sym__plus_then_ws] = ACTIONS(2865), + [sym__minus_then_ws] = ACTIONS(2865), + [sym_bang] = ACTIONS(1069), + }, + [682] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1691), + [sym_boolean_literal] = STATE(1691), + [sym__string_literal] = STATE(1691), + [sym_line_string_literal] = STATE(1691), + [sym_multi_line_string_literal] = STATE(1691), + [sym_raw_string_literal] = STATE(1691), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1691), + [sym__unary_expression] = STATE(1691), + [sym_postfix_expression] = STATE(1691), + [sym_constructor_expression] = STATE(1691), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1691), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1691), + [sym_prefix_expression] = STATE(1691), + [sym_as_expression] = STATE(1691), + [sym_selector_expression] = STATE(1691), + [sym__binary_expression] = STATE(1691), + [sym_multiplicative_expression] = STATE(1691), + [sym_additive_expression] = STATE(1691), + [sym_range_expression] = STATE(1691), + [sym_infix_expression] = STATE(1691), + [sym_nil_coalescing_expression] = STATE(1691), + [sym_check_expression] = STATE(1691), + [sym_comparison_expression] = STATE(1691), + [sym_equality_expression] = STATE(1691), + [sym_conjunction_expression] = STATE(1691), + [sym_disjunction_expression] = STATE(1691), + [sym_bitwise_operation] = STATE(1691), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1691), + [sym_await_expression] = STATE(1691), + [sym_ternary_expression] = STATE(1691), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1691), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1691), + [sym_dictionary_literal] = STATE(1691), + [sym__special_literal] = STATE(1691), + [sym__playground_literal] = STATE(1691), + [sym_lambda_literal] = STATE(1691), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1691), + [sym_key_path_expression] = STATE(1691), + [sym_key_path_string_expression] = STATE(1691), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1691), + [sym__comparison_operator] = STATE(1691), + [sym__additive_operator] = STATE(1691), + [sym__multiplicative_operator] = STATE(1691), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1691), + [sym__referenceable_operator] = STATE(1691), + [sym__eq_eq] = STATE(1691), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2867), + [sym_real_literal] = ACTIONS(2869), + [sym_integer_literal] = ACTIONS(2867), + [sym_hex_literal] = ACTIONS(2869), + [sym_oct_literal] = ACTIONS(2869), + [sym_bin_literal] = ACTIONS(2869), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2867), + [anon_sym_GT] = ACTIONS(2867), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2867), + [anon_sym_POUNDfileID] = ACTIONS(2869), + [anon_sym_POUNDfilePath] = ACTIONS(2869), + [anon_sym_POUNDline] = ACTIONS(2869), + [anon_sym_POUNDcolumn] = ACTIONS(2869), + [anon_sym_POUNDfunction] = ACTIONS(2869), + [anon_sym_POUNDdsohandle] = ACTIONS(2869), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2867), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2867), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2867), + [anon_sym_LT_EQ] = ACTIONS(2867), + [anon_sym_GT_EQ] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_SLASH] = ACTIONS(2867), + [anon_sym_PERCENT] = ACTIONS(2867), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2869), + [sym__plus_then_ws] = ACTIONS(2869), + [sym__minus_then_ws] = ACTIONS(2869), + [sym_bang] = ACTIONS(1069), + }, + [683] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2139), + [sym_boolean_literal] = STATE(2139), + [sym__string_literal] = STATE(2139), + [sym_line_string_literal] = STATE(2139), + [sym_multi_line_string_literal] = STATE(2139), + [sym_raw_string_literal] = STATE(2139), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2139), + [sym__unary_expression] = STATE(2139), + [sym_postfix_expression] = STATE(2139), + [sym_constructor_expression] = STATE(2139), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2139), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2139), + [sym_prefix_expression] = STATE(2139), + [sym_as_expression] = STATE(2139), + [sym_selector_expression] = STATE(2139), + [sym__binary_expression] = STATE(2139), + [sym_multiplicative_expression] = STATE(2139), + [sym_additive_expression] = STATE(2139), + [sym_range_expression] = STATE(2139), + [sym_infix_expression] = STATE(2139), + [sym_nil_coalescing_expression] = STATE(2139), + [sym_check_expression] = STATE(2139), + [sym_comparison_expression] = STATE(2139), + [sym_equality_expression] = STATE(2139), + [sym_conjunction_expression] = STATE(2139), + [sym_disjunction_expression] = STATE(2139), + [sym_bitwise_operation] = STATE(2139), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2139), + [sym_await_expression] = STATE(2139), + [sym_ternary_expression] = STATE(2139), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2139), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2139), + [sym_dictionary_literal] = STATE(2139), + [sym__special_literal] = STATE(2139), + [sym__playground_literal] = STATE(2139), + [sym_lambda_literal] = STATE(2139), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2139), + [sym_key_path_expression] = STATE(2139), + [sym_key_path_string_expression] = STATE(2139), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2139), + [sym__comparison_operator] = STATE(2139), + [sym__additive_operator] = STATE(2139), + [sym__multiplicative_operator] = STATE(2139), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2139), + [sym__referenceable_operator] = STATE(2139), + [sym__eq_eq] = STATE(2139), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2871), + [sym_real_literal] = ACTIONS(2873), + [sym_integer_literal] = ACTIONS(2871), + [sym_hex_literal] = ACTIONS(2873), + [sym_oct_literal] = ACTIONS(2873), + [sym_bin_literal] = ACTIONS(2873), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2871), + [anon_sym_GT] = ACTIONS(2871), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2871), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2871), + [anon_sym_LT_EQ] = ACTIONS(2871), + [anon_sym_GT_EQ] = ACTIONS(2871), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2871), + [anon_sym_SLASH] = ACTIONS(2871), + [anon_sym_PERCENT] = ACTIONS(2871), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2873), + [sym__plus_then_ws] = ACTIONS(2873), + [sym__minus_then_ws] = ACTIONS(2873), + [sym_bang] = ACTIONS(1069), + }, + [684] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2140), + [sym_boolean_literal] = STATE(2140), + [sym__string_literal] = STATE(2140), + [sym_line_string_literal] = STATE(2140), + [sym_multi_line_string_literal] = STATE(2140), + [sym_raw_string_literal] = STATE(2140), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2140), + [sym__unary_expression] = STATE(2140), + [sym_postfix_expression] = STATE(2140), + [sym_constructor_expression] = STATE(2140), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2140), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2140), + [sym_prefix_expression] = STATE(2140), + [sym_as_expression] = STATE(2140), + [sym_selector_expression] = STATE(2140), + [sym__binary_expression] = STATE(2140), + [sym_multiplicative_expression] = STATE(2140), + [sym_additive_expression] = STATE(2140), + [sym_range_expression] = STATE(2140), + [sym_infix_expression] = STATE(2140), + [sym_nil_coalescing_expression] = STATE(2140), + [sym_check_expression] = STATE(2140), + [sym_comparison_expression] = STATE(2140), + [sym_equality_expression] = STATE(2140), + [sym_conjunction_expression] = STATE(2140), + [sym_disjunction_expression] = STATE(2140), + [sym_bitwise_operation] = STATE(2140), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2140), + [sym_await_expression] = STATE(2140), + [sym_ternary_expression] = STATE(2140), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2140), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2140), + [sym_dictionary_literal] = STATE(2140), + [sym__special_literal] = STATE(2140), + [sym__playground_literal] = STATE(2140), + [sym_lambda_literal] = STATE(2140), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2140), + [sym_key_path_expression] = STATE(2140), + [sym_key_path_string_expression] = STATE(2140), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2140), + [sym__comparison_operator] = STATE(2140), + [sym__additive_operator] = STATE(2140), + [sym__multiplicative_operator] = STATE(2140), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2140), + [sym__referenceable_operator] = STATE(2140), + [sym__eq_eq] = STATE(2140), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2875), + [sym_real_literal] = ACTIONS(2877), + [sym_integer_literal] = ACTIONS(2875), + [sym_hex_literal] = ACTIONS(2877), + [sym_oct_literal] = ACTIONS(2877), + [sym_bin_literal] = ACTIONS(2877), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2875), + [anon_sym_GT] = ACTIONS(2875), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2875), + [anon_sym_POUNDfileID] = ACTIONS(2877), + [anon_sym_POUNDfilePath] = ACTIONS(2877), + [anon_sym_POUNDline] = ACTIONS(2877), + [anon_sym_POUNDcolumn] = ACTIONS(2877), + [anon_sym_POUNDfunction] = ACTIONS(2877), + [anon_sym_POUNDdsohandle] = ACTIONS(2877), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2875), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2875), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2875), + [anon_sym_LT_EQ] = ACTIONS(2875), + [anon_sym_GT_EQ] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2875), + [anon_sym_SLASH] = ACTIONS(2875), + [anon_sym_PERCENT] = ACTIONS(2875), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2877), + [sym__plus_then_ws] = ACTIONS(2877), + [sym__minus_then_ws] = ACTIONS(2877), + [sym_bang] = ACTIONS(1069), + }, + [685] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1629), + [sym_boolean_literal] = STATE(1629), + [sym__string_literal] = STATE(1629), + [sym_line_string_literal] = STATE(1629), + [sym_multi_line_string_literal] = STATE(1629), + [sym_raw_string_literal] = STATE(1629), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1629), + [sym__unary_expression] = STATE(1629), + [sym_postfix_expression] = STATE(1629), + [sym_constructor_expression] = STATE(1629), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1629), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1629), + [sym_prefix_expression] = STATE(1629), + [sym_as_expression] = STATE(1629), + [sym_selector_expression] = STATE(1629), + [sym__binary_expression] = STATE(1629), + [sym_multiplicative_expression] = STATE(1629), + [sym_additive_expression] = STATE(1629), + [sym_range_expression] = STATE(1629), + [sym_infix_expression] = STATE(1629), + [sym_nil_coalescing_expression] = STATE(1629), + [sym_check_expression] = STATE(1629), + [sym_comparison_expression] = STATE(1629), + [sym_equality_expression] = STATE(1629), + [sym_conjunction_expression] = STATE(1629), + [sym_disjunction_expression] = STATE(1629), + [sym_bitwise_operation] = STATE(1629), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1629), + [sym_await_expression] = STATE(1629), + [sym_ternary_expression] = STATE(1629), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1629), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1629), + [sym_dictionary_literal] = STATE(1629), + [sym__special_literal] = STATE(1629), + [sym__playground_literal] = STATE(1629), + [sym_lambda_literal] = STATE(1629), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1629), + [sym_key_path_expression] = STATE(1629), + [sym_key_path_string_expression] = STATE(1629), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1629), + [sym__comparison_operator] = STATE(1629), + [sym__additive_operator] = STATE(1629), + [sym__multiplicative_operator] = STATE(1629), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1629), + [sym__referenceable_operator] = STATE(1629), + [sym__eq_eq] = STATE(1629), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2879), + [sym_real_literal] = ACTIONS(2881), + [sym_integer_literal] = ACTIONS(2879), + [sym_hex_literal] = ACTIONS(2881), + [sym_oct_literal] = ACTIONS(2881), + [sym_bin_literal] = ACTIONS(2881), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2879), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2879), + [anon_sym_POUNDfileID] = ACTIONS(2881), + [anon_sym_POUNDfilePath] = ACTIONS(2881), + [anon_sym_POUNDline] = ACTIONS(2881), + [anon_sym_POUNDcolumn] = ACTIONS(2881), + [anon_sym_POUNDfunction] = ACTIONS(2881), + [anon_sym_POUNDdsohandle] = ACTIONS(2881), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2879), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2879), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2879), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2879), + [anon_sym_PERCENT] = ACTIONS(2879), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2881), + [sym__plus_then_ws] = ACTIONS(2881), + [sym__minus_then_ws] = ACTIONS(2881), + [sym_bang] = ACTIONS(1069), + }, + [686] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2130), + [sym_boolean_literal] = STATE(2130), + [sym__string_literal] = STATE(2130), + [sym_line_string_literal] = STATE(2130), + [sym_multi_line_string_literal] = STATE(2130), + [sym_raw_string_literal] = STATE(2130), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2130), + [sym__unary_expression] = STATE(2130), + [sym_postfix_expression] = STATE(2130), + [sym_constructor_expression] = STATE(2130), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2130), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2130), + [sym_prefix_expression] = STATE(2130), + [sym_as_expression] = STATE(2130), + [sym_selector_expression] = STATE(2130), + [sym__binary_expression] = STATE(2130), + [sym_multiplicative_expression] = STATE(2130), + [sym_additive_expression] = STATE(2130), + [sym_range_expression] = STATE(2130), + [sym_infix_expression] = STATE(2130), + [sym_nil_coalescing_expression] = STATE(2130), + [sym_check_expression] = STATE(2130), + [sym_comparison_expression] = STATE(2130), + [sym_equality_expression] = STATE(2130), + [sym_conjunction_expression] = STATE(2130), + [sym_disjunction_expression] = STATE(2130), + [sym_bitwise_operation] = STATE(2130), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2130), + [sym_await_expression] = STATE(2130), + [sym_ternary_expression] = STATE(2130), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2130), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2130), + [sym_dictionary_literal] = STATE(2130), + [sym__special_literal] = STATE(2130), + [sym__playground_literal] = STATE(2130), + [sym_lambda_literal] = STATE(2130), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2130), + [sym_key_path_expression] = STATE(2130), + [sym_key_path_string_expression] = STATE(2130), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2130), + [sym__comparison_operator] = STATE(2130), + [sym__additive_operator] = STATE(2130), + [sym__multiplicative_operator] = STATE(2130), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2130), + [sym__referenceable_operator] = STATE(2130), + [sym__eq_eq] = STATE(2130), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2883), + [sym_real_literal] = ACTIONS(2885), + [sym_integer_literal] = ACTIONS(2883), + [sym_hex_literal] = ACTIONS(2885), + [sym_oct_literal] = ACTIONS(2885), + [sym_bin_literal] = ACTIONS(2885), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2883), + [anon_sym_GT] = ACTIONS(2883), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2883), + [anon_sym_POUNDfileID] = ACTIONS(2885), + [anon_sym_POUNDfilePath] = ACTIONS(2885), + [anon_sym_POUNDline] = ACTIONS(2885), + [anon_sym_POUNDcolumn] = ACTIONS(2885), + [anon_sym_POUNDfunction] = ACTIONS(2885), + [anon_sym_POUNDdsohandle] = ACTIONS(2885), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2883), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2883), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2883), + [anon_sym_LT_EQ] = ACTIONS(2883), + [anon_sym_GT_EQ] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_SLASH] = ACTIONS(2883), + [anon_sym_PERCENT] = ACTIONS(2883), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2885), + [sym__plus_then_ws] = ACTIONS(2885), + [sym__minus_then_ws] = ACTIONS(2885), + [sym_bang] = ACTIONS(1069), + }, + [687] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2129), + [sym_boolean_literal] = STATE(2129), + [sym__string_literal] = STATE(2129), + [sym_line_string_literal] = STATE(2129), + [sym_multi_line_string_literal] = STATE(2129), + [sym_raw_string_literal] = STATE(2129), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2129), + [sym__unary_expression] = STATE(2129), + [sym_postfix_expression] = STATE(2129), + [sym_constructor_expression] = STATE(2129), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2129), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2129), + [sym_prefix_expression] = STATE(2129), + [sym_as_expression] = STATE(2129), + [sym_selector_expression] = STATE(2129), + [sym__binary_expression] = STATE(2129), + [sym_multiplicative_expression] = STATE(2129), + [sym_additive_expression] = STATE(2129), + [sym_range_expression] = STATE(2129), + [sym_infix_expression] = STATE(2129), + [sym_nil_coalescing_expression] = STATE(2129), + [sym_check_expression] = STATE(2129), + [sym_comparison_expression] = STATE(2129), + [sym_equality_expression] = STATE(2129), + [sym_conjunction_expression] = STATE(2129), + [sym_disjunction_expression] = STATE(2129), + [sym_bitwise_operation] = STATE(2129), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2129), + [sym_await_expression] = STATE(2129), + [sym_ternary_expression] = STATE(2129), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2129), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2129), + [sym_dictionary_literal] = STATE(2129), + [sym__special_literal] = STATE(2129), + [sym__playground_literal] = STATE(2129), + [sym_lambda_literal] = STATE(2129), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2129), + [sym_key_path_expression] = STATE(2129), + [sym_key_path_string_expression] = STATE(2129), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2129), + [sym__comparison_operator] = STATE(2129), + [sym__additive_operator] = STATE(2129), + [sym__multiplicative_operator] = STATE(2129), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2129), + [sym__referenceable_operator] = STATE(2129), + [sym__eq_eq] = STATE(2129), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2887), + [sym_real_literal] = ACTIONS(2889), + [sym_integer_literal] = ACTIONS(2887), + [sym_hex_literal] = ACTIONS(2889), + [sym_oct_literal] = ACTIONS(2889), + [sym_bin_literal] = ACTIONS(2889), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2887), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2887), + [anon_sym_POUNDfileID] = ACTIONS(2889), + [anon_sym_POUNDfilePath] = ACTIONS(2889), + [anon_sym_POUNDline] = ACTIONS(2889), + [anon_sym_POUNDcolumn] = ACTIONS(2889), + [anon_sym_POUNDfunction] = ACTIONS(2889), + [anon_sym_POUNDdsohandle] = ACTIONS(2889), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2887), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2887), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2887), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_GT_EQ] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2889), + [sym__plus_then_ws] = ACTIONS(2889), + [sym__minus_then_ws] = ACTIONS(2889), + [sym_bang] = ACTIONS(1069), + }, + [688] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2237), + [sym_boolean_literal] = STATE(2237), + [sym__string_literal] = STATE(2237), + [sym_line_string_literal] = STATE(2237), + [sym_multi_line_string_literal] = STATE(2237), + [sym_raw_string_literal] = STATE(2237), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2237), + [sym__unary_expression] = STATE(2237), + [sym_postfix_expression] = STATE(2237), + [sym_constructor_expression] = STATE(2237), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2237), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2237), + [sym_prefix_expression] = STATE(2237), + [sym_as_expression] = STATE(2237), + [sym_selector_expression] = STATE(2237), + [sym__binary_expression] = STATE(2237), + [sym_multiplicative_expression] = STATE(2237), + [sym_additive_expression] = STATE(2237), + [sym_range_expression] = STATE(2237), + [sym_infix_expression] = STATE(2237), + [sym_nil_coalescing_expression] = STATE(2237), + [sym_check_expression] = STATE(2237), + [sym_comparison_expression] = STATE(2237), + [sym_equality_expression] = STATE(2237), + [sym_conjunction_expression] = STATE(2237), + [sym_disjunction_expression] = STATE(2237), + [sym_bitwise_operation] = STATE(2237), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2237), + [sym_await_expression] = STATE(2237), + [sym_ternary_expression] = STATE(2237), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2237), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2237), + [sym_dictionary_literal] = STATE(2237), + [sym__special_literal] = STATE(2237), + [sym__playground_literal] = STATE(2237), + [sym_lambda_literal] = STATE(2237), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2237), + [sym_key_path_expression] = STATE(2237), + [sym_key_path_string_expression] = STATE(2237), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2237), + [sym__comparison_operator] = STATE(2237), + [sym__additive_operator] = STATE(2237), + [sym__multiplicative_operator] = STATE(2237), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2237), + [sym__referenceable_operator] = STATE(2237), + [sym__eq_eq] = STATE(2237), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(2891), + [sym_real_literal] = ACTIONS(2893), + [sym_integer_literal] = ACTIONS(2891), + [sym_hex_literal] = ACTIONS(2893), + [sym_oct_literal] = ACTIONS(2893), + [sym_bin_literal] = ACTIONS(2893), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(2891), + [anon_sym_GT] = ACTIONS(2891), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(2891), + [anon_sym_POUNDfileID] = ACTIONS(2893), + [anon_sym_POUNDfilePath] = ACTIONS(2893), + [anon_sym_POUNDline] = ACTIONS(2893), + [anon_sym_POUNDcolumn] = ACTIONS(2893), + [anon_sym_POUNDfunction] = ACTIONS(2893), + [anon_sym_POUNDdsohandle] = ACTIONS(2893), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(2891), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2891), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2891), + [anon_sym_LT_EQ] = ACTIONS(2891), + [anon_sym_GT_EQ] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2891), + [anon_sym_SLASH] = ACTIONS(2891), + [anon_sym_PERCENT] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(2893), + [sym__plus_then_ws] = ACTIONS(2893), + [sym__minus_then_ws] = ACTIONS(2893), + [sym_bang] = ACTIONS(833), + }, + [689] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2128), + [sym_boolean_literal] = STATE(2128), + [sym__string_literal] = STATE(2128), + [sym_line_string_literal] = STATE(2128), + [sym_multi_line_string_literal] = STATE(2128), + [sym_raw_string_literal] = STATE(2128), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2128), + [sym__unary_expression] = STATE(2128), + [sym_postfix_expression] = STATE(2128), + [sym_constructor_expression] = STATE(2128), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2128), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2128), + [sym_prefix_expression] = STATE(2128), + [sym_as_expression] = STATE(2128), + [sym_selector_expression] = STATE(2128), + [sym__binary_expression] = STATE(2128), + [sym_multiplicative_expression] = STATE(2128), + [sym_additive_expression] = STATE(2128), + [sym_range_expression] = STATE(2128), + [sym_infix_expression] = STATE(2128), + [sym_nil_coalescing_expression] = STATE(2128), + [sym_check_expression] = STATE(2128), + [sym_comparison_expression] = STATE(2128), + [sym_equality_expression] = STATE(2128), + [sym_conjunction_expression] = STATE(2128), + [sym_disjunction_expression] = STATE(2128), + [sym_bitwise_operation] = STATE(2128), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2128), + [sym_await_expression] = STATE(2128), + [sym_ternary_expression] = STATE(2128), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2128), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2128), + [sym_dictionary_literal] = STATE(2128), + [sym__special_literal] = STATE(2128), + [sym__playground_literal] = STATE(2128), + [sym_lambda_literal] = STATE(2128), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2128), + [sym_key_path_expression] = STATE(2128), + [sym_key_path_string_expression] = STATE(2128), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2128), + [sym__comparison_operator] = STATE(2128), + [sym__additive_operator] = STATE(2128), + [sym__multiplicative_operator] = STATE(2128), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2128), + [sym__referenceable_operator] = STATE(2128), + [sym__eq_eq] = STATE(2128), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2895), + [sym_real_literal] = ACTIONS(2897), + [sym_integer_literal] = ACTIONS(2895), + [sym_hex_literal] = ACTIONS(2897), + [sym_oct_literal] = ACTIONS(2897), + [sym_bin_literal] = ACTIONS(2897), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2895), + [anon_sym_GT] = ACTIONS(2895), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2895), + [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(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2895), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2895), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2895), + [anon_sym_LT_EQ] = ACTIONS(2895), + [anon_sym_GT_EQ] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2895), + [anon_sym_SLASH] = ACTIONS(2895), + [anon_sym_PERCENT] = ACTIONS(2895), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2897), + [sym__plus_then_ws] = ACTIONS(2897), + [sym__minus_then_ws] = ACTIONS(2897), + [sym_bang] = ACTIONS(1069), + }, + [690] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2023), + [sym_boolean_literal] = STATE(2023), + [sym__string_literal] = STATE(2023), + [sym_line_string_literal] = STATE(2023), + [sym_multi_line_string_literal] = STATE(2023), + [sym_raw_string_literal] = STATE(2023), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2023), + [sym__unary_expression] = STATE(2023), + [sym_postfix_expression] = STATE(2023), + [sym_constructor_expression] = STATE(2023), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2023), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2023), + [sym_prefix_expression] = STATE(2023), + [sym_as_expression] = STATE(2023), + [sym_selector_expression] = STATE(2023), + [sym__binary_expression] = STATE(2023), + [sym_multiplicative_expression] = STATE(2023), + [sym_additive_expression] = STATE(2023), + [sym_range_expression] = STATE(2023), + [sym_infix_expression] = STATE(2023), + [sym_nil_coalescing_expression] = STATE(2023), + [sym_check_expression] = STATE(2023), + [sym_comparison_expression] = STATE(2023), + [sym_equality_expression] = STATE(2023), + [sym_conjunction_expression] = STATE(2023), + [sym_disjunction_expression] = STATE(2023), + [sym_bitwise_operation] = STATE(2023), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2023), + [sym_await_expression] = STATE(2023), + [sym_ternary_expression] = STATE(2023), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2023), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2023), + [sym_dictionary_literal] = STATE(2023), + [sym__special_literal] = STATE(2023), + [sym__playground_literal] = STATE(2023), + [sym_lambda_literal] = STATE(2023), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2023), + [sym_key_path_expression] = STATE(2023), + [sym_key_path_string_expression] = STATE(2023), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2023), + [sym__comparison_operator] = STATE(2023), + [sym__additive_operator] = STATE(2023), + [sym__multiplicative_operator] = STATE(2023), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2023), + [sym__referenceable_operator] = STATE(2023), + [sym__eq_eq] = STATE(2023), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2899), + [sym_real_literal] = ACTIONS(2901), + [sym_integer_literal] = ACTIONS(2899), + [sym_hex_literal] = ACTIONS(2901), + [sym_oct_literal] = ACTIONS(2901), + [sym_bin_literal] = ACTIONS(2901), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2899), + [anon_sym_GT] = ACTIONS(2899), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2899), + [anon_sym_POUNDfileID] = ACTIONS(2901), + [anon_sym_POUNDfilePath] = ACTIONS(2901), + [anon_sym_POUNDline] = ACTIONS(2901), + [anon_sym_POUNDcolumn] = ACTIONS(2901), + [anon_sym_POUNDfunction] = ACTIONS(2901), + [anon_sym_POUNDdsohandle] = ACTIONS(2901), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2899), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2899), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2899), + [anon_sym_LT_EQ] = ACTIONS(2899), + [anon_sym_GT_EQ] = ACTIONS(2899), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_SLASH] = ACTIONS(2899), + [anon_sym_PERCENT] = ACTIONS(2899), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2901), + [sym__plus_then_ws] = ACTIONS(2901), + [sym__minus_then_ws] = ACTIONS(2901), + [sym_bang] = ACTIONS(1069), + }, + [691] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1683), + [sym_boolean_literal] = STATE(1683), + [sym__string_literal] = STATE(1683), + [sym_line_string_literal] = STATE(1683), + [sym_multi_line_string_literal] = STATE(1683), + [sym_raw_string_literal] = STATE(1683), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1683), + [sym__unary_expression] = STATE(1683), + [sym_postfix_expression] = STATE(1683), + [sym_constructor_expression] = STATE(1683), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1683), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1683), + [sym_prefix_expression] = STATE(1683), + [sym_as_expression] = STATE(1683), + [sym_selector_expression] = STATE(1683), + [sym__binary_expression] = STATE(1683), + [sym_multiplicative_expression] = STATE(1683), + [sym_additive_expression] = STATE(1683), + [sym_range_expression] = STATE(1683), + [sym_infix_expression] = STATE(1683), + [sym_nil_coalescing_expression] = STATE(1683), + [sym_check_expression] = STATE(1683), + [sym_comparison_expression] = STATE(1683), + [sym_equality_expression] = STATE(1683), + [sym_conjunction_expression] = STATE(1683), + [sym_disjunction_expression] = STATE(1683), + [sym_bitwise_operation] = STATE(1683), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1683), + [sym_await_expression] = STATE(1683), + [sym_ternary_expression] = STATE(1683), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1683), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1683), + [sym_dictionary_literal] = STATE(1683), + [sym__special_literal] = STATE(1683), + [sym__playground_literal] = STATE(1683), + [sym_lambda_literal] = STATE(1683), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1683), + [sym_key_path_expression] = STATE(1683), + [sym_key_path_string_expression] = STATE(1683), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1683), + [sym__comparison_operator] = STATE(1683), + [sym__additive_operator] = STATE(1683), + [sym__multiplicative_operator] = STATE(1683), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1683), + [sym__referenceable_operator] = STATE(1683), + [sym__eq_eq] = STATE(1683), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2903), + [sym_real_literal] = ACTIONS(2905), + [sym_integer_literal] = ACTIONS(2903), + [sym_hex_literal] = ACTIONS(2905), + [sym_oct_literal] = ACTIONS(2905), + [sym_bin_literal] = ACTIONS(2905), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_GT] = ACTIONS(2903), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2903), + [anon_sym_POUNDfileID] = ACTIONS(2905), + [anon_sym_POUNDfilePath] = ACTIONS(2905), + [anon_sym_POUNDline] = ACTIONS(2905), + [anon_sym_POUNDcolumn] = ACTIONS(2905), + [anon_sym_POUNDfunction] = ACTIONS(2905), + [anon_sym_POUNDdsohandle] = ACTIONS(2905), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2903), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2903), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2903), + [anon_sym_LT_EQ] = ACTIONS(2903), + [anon_sym_GT_EQ] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_SLASH] = ACTIONS(2903), + [anon_sym_PERCENT] = ACTIONS(2903), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2905), + [sym__plus_then_ws] = ACTIONS(2905), + [sym__minus_then_ws] = ACTIONS(2905), + [sym_bang] = ACTIONS(1069), + }, + [692] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2022), + [sym_boolean_literal] = STATE(2022), + [sym__string_literal] = STATE(2022), + [sym_line_string_literal] = STATE(2022), + [sym_multi_line_string_literal] = STATE(2022), + [sym_raw_string_literal] = STATE(2022), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2022), + [sym__unary_expression] = STATE(2022), + [sym_postfix_expression] = STATE(2022), + [sym_constructor_expression] = STATE(2022), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2022), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2022), + [sym_prefix_expression] = STATE(2022), + [sym_as_expression] = STATE(2022), + [sym_selector_expression] = STATE(2022), + [sym__binary_expression] = STATE(2022), + [sym_multiplicative_expression] = STATE(2022), + [sym_additive_expression] = STATE(2022), + [sym_range_expression] = STATE(2022), + [sym_infix_expression] = STATE(2022), + [sym_nil_coalescing_expression] = STATE(2022), + [sym_check_expression] = STATE(2022), + [sym_comparison_expression] = STATE(2022), + [sym_equality_expression] = STATE(2022), + [sym_conjunction_expression] = STATE(2022), + [sym_disjunction_expression] = STATE(2022), + [sym_bitwise_operation] = STATE(2022), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2022), + [sym_await_expression] = STATE(2022), + [sym_ternary_expression] = STATE(2022), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2022), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2022), + [sym_dictionary_literal] = STATE(2022), + [sym__special_literal] = STATE(2022), + [sym__playground_literal] = STATE(2022), + [sym_lambda_literal] = STATE(2022), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2022), + [sym_key_path_expression] = STATE(2022), + [sym_key_path_string_expression] = STATE(2022), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2022), + [sym__comparison_operator] = STATE(2022), + [sym__additive_operator] = STATE(2022), + [sym__multiplicative_operator] = STATE(2022), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2022), + [sym__referenceable_operator] = STATE(2022), + [sym__eq_eq] = STATE(2022), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2907), + [sym_real_literal] = ACTIONS(2909), + [sym_integer_literal] = ACTIONS(2907), + [sym_hex_literal] = ACTIONS(2909), + [sym_oct_literal] = ACTIONS(2909), + [sym_bin_literal] = ACTIONS(2909), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2907), + [anon_sym_GT] = ACTIONS(2907), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2907), + [anon_sym_POUNDfileID] = ACTIONS(2909), + [anon_sym_POUNDfilePath] = ACTIONS(2909), + [anon_sym_POUNDline] = ACTIONS(2909), + [anon_sym_POUNDcolumn] = ACTIONS(2909), + [anon_sym_POUNDfunction] = ACTIONS(2909), + [anon_sym_POUNDdsohandle] = ACTIONS(2909), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2907), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2907), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2907), + [anon_sym_LT_EQ] = ACTIONS(2907), + [anon_sym_GT_EQ] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2907), + [anon_sym_SLASH] = ACTIONS(2907), + [anon_sym_PERCENT] = ACTIONS(2907), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2909), + [sym__plus_then_ws] = ACTIONS(2909), + [sym__minus_then_ws] = ACTIONS(2909), + [sym_bang] = ACTIONS(1069), + }, + [693] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1863), + [sym_boolean_literal] = STATE(1863), + [sym__string_literal] = STATE(1863), + [sym_line_string_literal] = STATE(1863), + [sym_multi_line_string_literal] = STATE(1863), + [sym_raw_string_literal] = STATE(1863), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1863), + [sym__unary_expression] = STATE(1863), + [sym_postfix_expression] = STATE(1863), + [sym_constructor_expression] = STATE(1863), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1863), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1863), + [sym_prefix_expression] = STATE(1863), + [sym_as_expression] = STATE(1863), + [sym_selector_expression] = STATE(1863), + [sym__binary_expression] = STATE(1863), + [sym_multiplicative_expression] = STATE(1863), + [sym_additive_expression] = STATE(1863), + [sym_range_expression] = STATE(1863), + [sym_infix_expression] = STATE(1863), + [sym_nil_coalescing_expression] = STATE(1863), + [sym_check_expression] = STATE(1863), + [sym_comparison_expression] = STATE(1863), + [sym_equality_expression] = STATE(1863), + [sym_conjunction_expression] = STATE(1863), + [sym_disjunction_expression] = STATE(1863), + [sym_bitwise_operation] = STATE(1863), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1863), + [sym_await_expression] = STATE(1863), + [sym_ternary_expression] = STATE(1863), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1863), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1863), + [sym_dictionary_literal] = STATE(1863), + [sym__special_literal] = STATE(1863), + [sym__playground_literal] = STATE(1863), + [sym_lambda_literal] = STATE(1863), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1863), + [sym_key_path_expression] = STATE(1863), + [sym_key_path_string_expression] = STATE(1863), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1863), + [sym__comparison_operator] = STATE(1863), + [sym__additive_operator] = STATE(1863), + [sym__multiplicative_operator] = STATE(1863), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1863), + [sym__referenceable_operator] = STATE(1863), + [sym__eq_eq] = STATE(1863), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2911), + [sym_real_literal] = ACTIONS(2913), + [sym_integer_literal] = ACTIONS(2911), + [sym_hex_literal] = ACTIONS(2913), + [sym_oct_literal] = ACTIONS(2913), + [sym_bin_literal] = ACTIONS(2913), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2911), + [anon_sym_GT] = ACTIONS(2911), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2911), + [anon_sym_POUNDfileID] = ACTIONS(2913), + [anon_sym_POUNDfilePath] = ACTIONS(2913), + [anon_sym_POUNDline] = ACTIONS(2913), + [anon_sym_POUNDcolumn] = ACTIONS(2913), + [anon_sym_POUNDfunction] = ACTIONS(2913), + [anon_sym_POUNDdsohandle] = ACTIONS(2913), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2911), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2911), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2911), + [anon_sym_LT_EQ] = ACTIONS(2911), + [anon_sym_GT_EQ] = ACTIONS(2911), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2911), + [anon_sym_SLASH] = ACTIONS(2911), + [anon_sym_PERCENT] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2913), + [sym__plus_then_ws] = ACTIONS(2913), + [sym__minus_then_ws] = ACTIONS(2913), + [sym_bang] = ACTIONS(1069), + }, + [694] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1682), + [sym_boolean_literal] = STATE(1682), + [sym__string_literal] = STATE(1682), + [sym_line_string_literal] = STATE(1682), + [sym_multi_line_string_literal] = STATE(1682), + [sym_raw_string_literal] = STATE(1682), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1682), + [sym__unary_expression] = STATE(1682), + [sym_postfix_expression] = STATE(1682), + [sym_constructor_expression] = STATE(1682), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1682), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1682), + [sym_prefix_expression] = STATE(1682), + [sym_as_expression] = STATE(1682), + [sym_selector_expression] = STATE(1682), + [sym__binary_expression] = STATE(1682), + [sym_multiplicative_expression] = STATE(1682), + [sym_additive_expression] = STATE(1682), + [sym_range_expression] = STATE(1682), + [sym_infix_expression] = STATE(1682), + [sym_nil_coalescing_expression] = STATE(1682), + [sym_check_expression] = STATE(1682), + [sym_comparison_expression] = STATE(1682), + [sym_equality_expression] = STATE(1682), + [sym_conjunction_expression] = STATE(1682), + [sym_disjunction_expression] = STATE(1682), + [sym_bitwise_operation] = STATE(1682), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1682), + [sym_await_expression] = STATE(1682), + [sym_ternary_expression] = STATE(1682), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1682), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1682), + [sym_dictionary_literal] = STATE(1682), + [sym__special_literal] = STATE(1682), + [sym__playground_literal] = STATE(1682), + [sym_lambda_literal] = STATE(1682), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1682), + [sym_key_path_expression] = STATE(1682), + [sym_key_path_string_expression] = STATE(1682), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1682), + [sym__comparison_operator] = STATE(1682), + [sym__additive_operator] = STATE(1682), + [sym__multiplicative_operator] = STATE(1682), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1682), + [sym__referenceable_operator] = STATE(1682), + [sym__eq_eq] = STATE(1682), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2915), + [sym_real_literal] = ACTIONS(2917), + [sym_integer_literal] = ACTIONS(2915), + [sym_hex_literal] = ACTIONS(2917), + [sym_oct_literal] = ACTIONS(2917), + [sym_bin_literal] = ACTIONS(2917), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2915), + [anon_sym_GT] = ACTIONS(2915), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2915), + [anon_sym_POUNDfileID] = ACTIONS(2917), + [anon_sym_POUNDfilePath] = ACTIONS(2917), + [anon_sym_POUNDline] = ACTIONS(2917), + [anon_sym_POUNDcolumn] = ACTIONS(2917), + [anon_sym_POUNDfunction] = ACTIONS(2917), + [anon_sym_POUNDdsohandle] = ACTIONS(2917), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2915), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2915), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2915), + [anon_sym_LT_EQ] = ACTIONS(2915), + [anon_sym_GT_EQ] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_SLASH] = ACTIONS(2915), + [anon_sym_PERCENT] = ACTIONS(2915), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2917), + [sym__plus_then_ws] = ACTIONS(2917), + [sym__minus_then_ws] = ACTIONS(2917), + [sym_bang] = ACTIONS(1069), + }, + [695] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2021), + [sym_boolean_literal] = STATE(2021), + [sym__string_literal] = STATE(2021), + [sym_line_string_literal] = STATE(2021), + [sym_multi_line_string_literal] = STATE(2021), + [sym_raw_string_literal] = STATE(2021), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2021), + [sym__unary_expression] = STATE(2021), + [sym_postfix_expression] = STATE(2021), + [sym_constructor_expression] = STATE(2021), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2021), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2021), + [sym_prefix_expression] = STATE(2021), + [sym_as_expression] = STATE(2021), + [sym_selector_expression] = STATE(2021), + [sym__binary_expression] = STATE(2021), + [sym_multiplicative_expression] = STATE(2021), + [sym_additive_expression] = STATE(2021), + [sym_range_expression] = STATE(2021), + [sym_infix_expression] = STATE(2021), + [sym_nil_coalescing_expression] = STATE(2021), + [sym_check_expression] = STATE(2021), + [sym_comparison_expression] = STATE(2021), + [sym_equality_expression] = STATE(2021), + [sym_conjunction_expression] = STATE(2021), + [sym_disjunction_expression] = STATE(2021), + [sym_bitwise_operation] = STATE(2021), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2021), + [sym_await_expression] = STATE(2021), + [sym_ternary_expression] = STATE(2021), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2021), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2021), + [sym_dictionary_literal] = STATE(2021), + [sym__special_literal] = STATE(2021), + [sym__playground_literal] = STATE(2021), + [sym_lambda_literal] = STATE(2021), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2021), + [sym_key_path_expression] = STATE(2021), + [sym_key_path_string_expression] = STATE(2021), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2021), + [sym__comparison_operator] = STATE(2021), + [sym__additive_operator] = STATE(2021), + [sym__multiplicative_operator] = STATE(2021), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(2021), + [sym__referenceable_operator] = STATE(2021), + [sym__eq_eq] = STATE(2021), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(2919), + [sym_real_literal] = ACTIONS(2921), + [sym_integer_literal] = ACTIONS(2919), + [sym_hex_literal] = ACTIONS(2921), + [sym_oct_literal] = ACTIONS(2921), + [sym_bin_literal] = ACTIONS(2921), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(2919), + [anon_sym_GT] = ACTIONS(2919), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(2919), + [anon_sym_POUNDfileID] = ACTIONS(2921), + [anon_sym_POUNDfilePath] = ACTIONS(2921), + [anon_sym_POUNDline] = ACTIONS(2921), + [anon_sym_POUNDcolumn] = ACTIONS(2921), + [anon_sym_POUNDfunction] = ACTIONS(2921), + [anon_sym_POUNDdsohandle] = ACTIONS(2921), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(2919), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2919), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2919), + [anon_sym_LT_EQ] = ACTIONS(2919), + [anon_sym_GT_EQ] = ACTIONS(2919), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(2919), + [anon_sym_SLASH] = ACTIONS(2919), + [anon_sym_PERCENT] = ACTIONS(2919), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(2921), + [sym__plus_then_ws] = ACTIONS(2921), + [sym__minus_then_ws] = ACTIONS(2921), + [sym_bang] = ACTIONS(137), + }, + [696] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1689), + [sym_boolean_literal] = STATE(1689), + [sym__string_literal] = STATE(1689), + [sym_line_string_literal] = STATE(1689), + [sym_multi_line_string_literal] = STATE(1689), + [sym_raw_string_literal] = STATE(1689), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1689), + [sym__unary_expression] = STATE(1689), + [sym_postfix_expression] = STATE(1689), + [sym_constructor_expression] = STATE(1689), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1689), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1689), + [sym_prefix_expression] = STATE(1689), + [sym_as_expression] = STATE(1689), + [sym_selector_expression] = STATE(1689), + [sym__binary_expression] = STATE(1689), + [sym_multiplicative_expression] = STATE(1689), + [sym_additive_expression] = STATE(1689), + [sym_range_expression] = STATE(1689), + [sym_infix_expression] = STATE(1689), + [sym_nil_coalescing_expression] = STATE(1689), + [sym_check_expression] = STATE(1689), + [sym_comparison_expression] = STATE(1689), + [sym_equality_expression] = STATE(1689), + [sym_conjunction_expression] = STATE(1689), + [sym_disjunction_expression] = STATE(1689), + [sym_bitwise_operation] = STATE(1689), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1689), + [sym_await_expression] = STATE(1689), + [sym_ternary_expression] = STATE(1689), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1689), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1689), + [sym_dictionary_literal] = STATE(1689), + [sym__special_literal] = STATE(1689), + [sym__playground_literal] = STATE(1689), + [sym_lambda_literal] = STATE(1689), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1689), + [sym_key_path_expression] = STATE(1689), + [sym_key_path_string_expression] = STATE(1689), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1689), + [sym__comparison_operator] = STATE(1689), + [sym__additive_operator] = STATE(1689), + [sym__multiplicative_operator] = STATE(1689), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1689), + [sym__referenceable_operator] = STATE(1689), + [sym__eq_eq] = STATE(1689), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2923), + [sym_real_literal] = ACTIONS(2925), + [sym_integer_literal] = ACTIONS(2923), + [sym_hex_literal] = ACTIONS(2925), + [sym_oct_literal] = ACTIONS(2925), + [sym_bin_literal] = ACTIONS(2925), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2923), + [anon_sym_GT] = ACTIONS(2923), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2923), + [anon_sym_POUNDfileID] = ACTIONS(2925), + [anon_sym_POUNDfilePath] = ACTIONS(2925), + [anon_sym_POUNDline] = ACTIONS(2925), + [anon_sym_POUNDcolumn] = ACTIONS(2925), + [anon_sym_POUNDfunction] = ACTIONS(2925), + [anon_sym_POUNDdsohandle] = ACTIONS(2925), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2923), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2923), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2923), + [anon_sym_LT_EQ] = ACTIONS(2923), + [anon_sym_GT_EQ] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_SLASH] = ACTIONS(2923), + [anon_sym_PERCENT] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2925), + [sym__plus_then_ws] = ACTIONS(2925), + [sym__minus_then_ws] = ACTIONS(2925), + [sym_bang] = ACTIONS(1069), + }, + [697] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2015), + [sym_boolean_literal] = STATE(2015), + [sym__string_literal] = STATE(2015), + [sym_line_string_literal] = STATE(2015), + [sym_multi_line_string_literal] = STATE(2015), + [sym_raw_string_literal] = STATE(2015), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2015), + [sym__unary_expression] = STATE(2015), + [sym_postfix_expression] = STATE(2015), + [sym_constructor_expression] = STATE(2015), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2015), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2015), + [sym_prefix_expression] = STATE(2015), + [sym_as_expression] = STATE(2015), + [sym_selector_expression] = STATE(2015), + [sym__binary_expression] = STATE(2015), + [sym_multiplicative_expression] = STATE(2015), + [sym_additive_expression] = STATE(2015), + [sym_range_expression] = STATE(2015), + [sym_infix_expression] = STATE(2015), + [sym_nil_coalescing_expression] = STATE(2015), + [sym_check_expression] = STATE(2015), + [sym_comparison_expression] = STATE(2015), + [sym_equality_expression] = STATE(2015), + [sym_conjunction_expression] = STATE(2015), + [sym_disjunction_expression] = STATE(2015), + [sym_bitwise_operation] = STATE(2015), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2015), + [sym_await_expression] = STATE(2015), + [sym_ternary_expression] = STATE(2015), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2015), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2015), + [sym_dictionary_literal] = STATE(2015), + [sym__special_literal] = STATE(2015), + [sym__playground_literal] = STATE(2015), + [sym_lambda_literal] = STATE(2015), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2015), + [sym_key_path_expression] = STATE(2015), + [sym_key_path_string_expression] = STATE(2015), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2015), + [sym__comparison_operator] = STATE(2015), + [sym__additive_operator] = STATE(2015), + [sym__multiplicative_operator] = STATE(2015), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2015), + [sym__referenceable_operator] = STATE(2015), + [sym__eq_eq] = STATE(2015), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2927), + [sym_real_literal] = ACTIONS(2929), + [sym_integer_literal] = ACTIONS(2927), + [sym_hex_literal] = ACTIONS(2929), + [sym_oct_literal] = ACTIONS(2929), + [sym_bin_literal] = ACTIONS(2929), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2927), + [anon_sym_GT] = ACTIONS(2927), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2927), + [anon_sym_POUNDfileID] = ACTIONS(2929), + [anon_sym_POUNDfilePath] = ACTIONS(2929), + [anon_sym_POUNDline] = ACTIONS(2929), + [anon_sym_POUNDcolumn] = ACTIONS(2929), + [anon_sym_POUNDfunction] = ACTIONS(2929), + [anon_sym_POUNDdsohandle] = ACTIONS(2929), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2927), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2927), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2927), + [anon_sym_LT_EQ] = ACTIONS(2927), + [anon_sym_GT_EQ] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_SLASH] = ACTIONS(2927), + [anon_sym_PERCENT] = ACTIONS(2927), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2929), + [sym__plus_then_ws] = ACTIONS(2929), + [sym__minus_then_ws] = ACTIONS(2929), + [sym_bang] = ACTIONS(1069), + }, + [698] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2014), + [sym_boolean_literal] = STATE(2014), + [sym__string_literal] = STATE(2014), + [sym_line_string_literal] = STATE(2014), + [sym_multi_line_string_literal] = STATE(2014), + [sym_raw_string_literal] = STATE(2014), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2014), + [sym__unary_expression] = STATE(2014), + [sym_postfix_expression] = STATE(2014), + [sym_constructor_expression] = STATE(2014), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2014), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2014), + [sym_prefix_expression] = STATE(2014), + [sym_as_expression] = STATE(2014), + [sym_selector_expression] = STATE(2014), + [sym__binary_expression] = STATE(2014), + [sym_multiplicative_expression] = STATE(2014), + [sym_additive_expression] = STATE(2014), + [sym_range_expression] = STATE(2014), + [sym_infix_expression] = STATE(2014), + [sym_nil_coalescing_expression] = STATE(2014), + [sym_check_expression] = STATE(2014), + [sym_comparison_expression] = STATE(2014), + [sym_equality_expression] = STATE(2014), + [sym_conjunction_expression] = STATE(2014), + [sym_disjunction_expression] = STATE(2014), + [sym_bitwise_operation] = STATE(2014), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2014), + [sym_await_expression] = STATE(2014), + [sym_ternary_expression] = STATE(2014), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2014), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2014), + [sym_dictionary_literal] = STATE(2014), + [sym__special_literal] = STATE(2014), + [sym__playground_literal] = STATE(2014), + [sym_lambda_literal] = STATE(2014), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2014), + [sym_key_path_expression] = STATE(2014), + [sym_key_path_string_expression] = STATE(2014), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2014), + [sym__comparison_operator] = STATE(2014), + [sym__additive_operator] = STATE(2014), + [sym__multiplicative_operator] = STATE(2014), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2014), + [sym__referenceable_operator] = STATE(2014), + [sym__eq_eq] = STATE(2014), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2931), + [sym_real_literal] = ACTIONS(2933), + [sym_integer_literal] = ACTIONS(2931), + [sym_hex_literal] = ACTIONS(2933), + [sym_oct_literal] = ACTIONS(2933), + [sym_bin_literal] = ACTIONS(2933), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2931), + [anon_sym_GT] = ACTIONS(2931), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2931), + [anon_sym_POUNDfileID] = ACTIONS(2933), + [anon_sym_POUNDfilePath] = ACTIONS(2933), + [anon_sym_POUNDline] = ACTIONS(2933), + [anon_sym_POUNDcolumn] = ACTIONS(2933), + [anon_sym_POUNDfunction] = ACTIONS(2933), + [anon_sym_POUNDdsohandle] = ACTIONS(2933), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2931), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2931), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2931), + [anon_sym_LT_EQ] = ACTIONS(2931), + [anon_sym_GT_EQ] = ACTIONS(2931), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2931), + [anon_sym_SLASH] = ACTIONS(2931), + [anon_sym_PERCENT] = ACTIONS(2931), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2933), + [sym__plus_then_ws] = ACTIONS(2933), + [sym__minus_then_ws] = ACTIONS(2933), + [sym_bang] = ACTIONS(1069), + }, + [699] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1627), + [sym_boolean_literal] = STATE(1627), + [sym__string_literal] = STATE(1627), + [sym_line_string_literal] = STATE(1627), + [sym_multi_line_string_literal] = STATE(1627), + [sym_raw_string_literal] = STATE(1627), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1627), + [sym__unary_expression] = STATE(1627), + [sym_postfix_expression] = STATE(1627), + [sym_constructor_expression] = STATE(1627), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1627), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1627), + [sym_prefix_expression] = STATE(1627), + [sym_as_expression] = STATE(1627), + [sym_selector_expression] = STATE(1627), + [sym__binary_expression] = STATE(1627), + [sym_multiplicative_expression] = STATE(1627), + [sym_additive_expression] = STATE(1627), + [sym_range_expression] = STATE(1627), + [sym_infix_expression] = STATE(1627), + [sym_nil_coalescing_expression] = STATE(1627), + [sym_check_expression] = STATE(1627), + [sym_comparison_expression] = STATE(1627), + [sym_equality_expression] = STATE(1627), + [sym_conjunction_expression] = STATE(1627), + [sym_disjunction_expression] = STATE(1627), + [sym_bitwise_operation] = STATE(1627), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_ternary_expression] = STATE(1627), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1627), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1627), + [sym_dictionary_literal] = STATE(1627), + [sym__special_literal] = STATE(1627), + [sym__playground_literal] = STATE(1627), + [sym_lambda_literal] = STATE(1627), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1627), + [sym_key_path_expression] = STATE(1627), + [sym_key_path_string_expression] = STATE(1627), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1627), + [sym__comparison_operator] = STATE(1627), + [sym__additive_operator] = STATE(1627), + [sym__multiplicative_operator] = STATE(1627), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1627), + [sym__referenceable_operator] = STATE(1627), + [sym__eq_eq] = STATE(1627), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2935), + [sym_real_literal] = ACTIONS(2937), + [sym_integer_literal] = ACTIONS(2935), + [sym_hex_literal] = ACTIONS(2937), + [sym_oct_literal] = ACTIONS(2937), + [sym_bin_literal] = ACTIONS(2937), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2935), + [anon_sym_GT] = ACTIONS(2935), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2935), + [anon_sym_POUNDfileID] = ACTIONS(2937), + [anon_sym_POUNDfilePath] = ACTIONS(2937), + [anon_sym_POUNDline] = ACTIONS(2937), + [anon_sym_POUNDcolumn] = ACTIONS(2937), + [anon_sym_POUNDfunction] = ACTIONS(2937), + [anon_sym_POUNDdsohandle] = ACTIONS(2937), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2935), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2935), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2935), + [anon_sym_LT_EQ] = ACTIONS(2935), + [anon_sym_GT_EQ] = ACTIONS(2935), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_SLASH] = ACTIONS(2935), + [anon_sym_PERCENT] = ACTIONS(2935), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2937), + [sym__plus_then_ws] = ACTIONS(2937), + [sym__minus_then_ws] = ACTIONS(2937), + [sym_bang] = ACTIONS(1069), + }, + [700] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1626), + [sym_boolean_literal] = STATE(1626), + [sym__string_literal] = STATE(1626), + [sym_line_string_literal] = STATE(1626), + [sym_multi_line_string_literal] = STATE(1626), + [sym_raw_string_literal] = STATE(1626), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1626), + [sym__unary_expression] = STATE(1626), + [sym_postfix_expression] = STATE(1626), + [sym_constructor_expression] = STATE(1626), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1626), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1626), + [sym_prefix_expression] = STATE(1626), + [sym_as_expression] = STATE(1626), + [sym_selector_expression] = STATE(1626), + [sym__binary_expression] = STATE(1626), + [sym_multiplicative_expression] = STATE(1626), + [sym_additive_expression] = STATE(1626), + [sym_range_expression] = STATE(1626), + [sym_infix_expression] = STATE(1626), + [sym_nil_coalescing_expression] = STATE(1626), + [sym_check_expression] = STATE(1626), + [sym_comparison_expression] = STATE(1626), + [sym_equality_expression] = STATE(1626), + [sym_conjunction_expression] = STATE(1626), + [sym_disjunction_expression] = STATE(1626), + [sym_bitwise_operation] = STATE(1626), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1626), + [sym_await_expression] = STATE(1626), + [sym_ternary_expression] = STATE(1626), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1626), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1626), + [sym_dictionary_literal] = STATE(1626), + [sym__special_literal] = STATE(1626), + [sym__playground_literal] = STATE(1626), + [sym_lambda_literal] = STATE(1626), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1626), + [sym_key_path_expression] = STATE(1626), + [sym_key_path_string_expression] = STATE(1626), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1626), + [sym__comparison_operator] = STATE(1626), + [sym__additive_operator] = STATE(1626), + [sym__multiplicative_operator] = STATE(1626), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1626), + [sym__referenceable_operator] = STATE(1626), + [sym__eq_eq] = STATE(1626), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2939), + [sym_real_literal] = ACTIONS(2941), + [sym_integer_literal] = ACTIONS(2939), + [sym_hex_literal] = ACTIONS(2941), + [sym_oct_literal] = ACTIONS(2941), + [sym_bin_literal] = ACTIONS(2941), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2939), + [anon_sym_GT] = ACTIONS(2939), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2939), + [anon_sym_POUNDfileID] = ACTIONS(2941), + [anon_sym_POUNDfilePath] = ACTIONS(2941), + [anon_sym_POUNDline] = ACTIONS(2941), + [anon_sym_POUNDcolumn] = ACTIONS(2941), + [anon_sym_POUNDfunction] = ACTIONS(2941), + [anon_sym_POUNDdsohandle] = ACTIONS(2941), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2939), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2939), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2939), + [anon_sym_LT_EQ] = ACTIONS(2939), + [anon_sym_GT_EQ] = ACTIONS(2939), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2939), + [anon_sym_SLASH] = ACTIONS(2939), + [anon_sym_PERCENT] = ACTIONS(2939), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2941), + [sym__plus_then_ws] = ACTIONS(2941), + [sym__minus_then_ws] = ACTIONS(2941), + [sym_bang] = ACTIONS(1069), + }, + [701] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2126), + [sym_boolean_literal] = STATE(2126), + [sym__string_literal] = STATE(2126), + [sym_line_string_literal] = STATE(2126), + [sym_multi_line_string_literal] = STATE(2126), + [sym_raw_string_literal] = STATE(2126), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2126), + [sym__unary_expression] = STATE(2126), + [sym_postfix_expression] = STATE(2126), + [sym_constructor_expression] = STATE(2126), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2126), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2126), + [sym_prefix_expression] = STATE(2126), + [sym_as_expression] = STATE(2126), + [sym_selector_expression] = STATE(2126), + [sym__binary_expression] = STATE(2126), + [sym_multiplicative_expression] = STATE(2126), + [sym_additive_expression] = STATE(2126), + [sym_range_expression] = STATE(2126), + [sym_infix_expression] = STATE(2126), + [sym_nil_coalescing_expression] = STATE(2126), + [sym_check_expression] = STATE(2126), + [sym_comparison_expression] = STATE(2126), + [sym_equality_expression] = STATE(2126), + [sym_conjunction_expression] = STATE(2126), + [sym_disjunction_expression] = STATE(2126), + [sym_bitwise_operation] = STATE(2126), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2126), + [sym_await_expression] = STATE(2126), + [sym_ternary_expression] = STATE(2126), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2126), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2126), + [sym_dictionary_literal] = STATE(2126), + [sym__special_literal] = STATE(2126), + [sym__playground_literal] = STATE(2126), + [sym_lambda_literal] = STATE(2126), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2126), + [sym_key_path_expression] = STATE(2126), + [sym_key_path_string_expression] = STATE(2126), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2126), + [sym__comparison_operator] = STATE(2126), + [sym__additive_operator] = STATE(2126), + [sym__multiplicative_operator] = STATE(2126), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2126), + [sym__referenceable_operator] = STATE(2126), + [sym__eq_eq] = STATE(2126), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2943), + [sym_real_literal] = ACTIONS(2945), + [sym_integer_literal] = ACTIONS(2943), + [sym_hex_literal] = ACTIONS(2945), + [sym_oct_literal] = ACTIONS(2945), + [sym_bin_literal] = ACTIONS(2945), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2943), + [anon_sym_GT] = ACTIONS(2943), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2943), + [anon_sym_POUNDfileID] = ACTIONS(2945), + [anon_sym_POUNDfilePath] = ACTIONS(2945), + [anon_sym_POUNDline] = ACTIONS(2945), + [anon_sym_POUNDcolumn] = ACTIONS(2945), + [anon_sym_POUNDfunction] = ACTIONS(2945), + [anon_sym_POUNDdsohandle] = ACTIONS(2945), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2943), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2943), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2943), + [anon_sym_LT_EQ] = ACTIONS(2943), + [anon_sym_GT_EQ] = ACTIONS(2943), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_SLASH] = ACTIONS(2943), + [anon_sym_PERCENT] = ACTIONS(2943), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2945), + [sym__plus_then_ws] = ACTIONS(2945), + [sym__minus_then_ws] = ACTIONS(2945), + [sym_bang] = ACTIONS(1069), + }, + [702] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2125), + [sym_boolean_literal] = STATE(2125), + [sym__string_literal] = STATE(2125), + [sym_line_string_literal] = STATE(2125), + [sym_multi_line_string_literal] = STATE(2125), + [sym_raw_string_literal] = STATE(2125), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2125), + [sym__unary_expression] = STATE(2125), + [sym_postfix_expression] = STATE(2125), + [sym_constructor_expression] = STATE(2125), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2125), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2125), + [sym_prefix_expression] = STATE(2125), + [sym_as_expression] = STATE(2125), + [sym_selector_expression] = STATE(2125), + [sym__binary_expression] = STATE(2125), + [sym_multiplicative_expression] = STATE(2125), + [sym_additive_expression] = STATE(2125), + [sym_range_expression] = STATE(2125), + [sym_infix_expression] = STATE(2125), + [sym_nil_coalescing_expression] = STATE(2125), + [sym_check_expression] = STATE(2125), + [sym_comparison_expression] = STATE(2125), + [sym_equality_expression] = STATE(2125), + [sym_conjunction_expression] = STATE(2125), + [sym_disjunction_expression] = STATE(2125), + [sym_bitwise_operation] = STATE(2125), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2125), + [sym_await_expression] = STATE(2125), + [sym_ternary_expression] = STATE(2125), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2125), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2125), + [sym_dictionary_literal] = STATE(2125), + [sym__special_literal] = STATE(2125), + [sym__playground_literal] = STATE(2125), + [sym_lambda_literal] = STATE(2125), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2125), + [sym_key_path_expression] = STATE(2125), + [sym_key_path_string_expression] = STATE(2125), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2125), + [sym__comparison_operator] = STATE(2125), + [sym__additive_operator] = STATE(2125), + [sym__multiplicative_operator] = STATE(2125), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2125), + [sym__referenceable_operator] = STATE(2125), + [sym__eq_eq] = STATE(2125), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2947), + [sym_real_literal] = ACTIONS(2949), + [sym_integer_literal] = ACTIONS(2947), + [sym_hex_literal] = ACTIONS(2949), + [sym_oct_literal] = ACTIONS(2949), + [sym_bin_literal] = ACTIONS(2949), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2947), + [anon_sym_GT] = ACTIONS(2947), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2947), + [anon_sym_POUNDfileID] = ACTIONS(2949), + [anon_sym_POUNDfilePath] = ACTIONS(2949), + [anon_sym_POUNDline] = ACTIONS(2949), + [anon_sym_POUNDcolumn] = ACTIONS(2949), + [anon_sym_POUNDfunction] = ACTIONS(2949), + [anon_sym_POUNDdsohandle] = ACTIONS(2949), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2947), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2947), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2947), + [anon_sym_LT_EQ] = ACTIONS(2947), + [anon_sym_GT_EQ] = ACTIONS(2947), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_SLASH] = ACTIONS(2947), + [anon_sym_PERCENT] = ACTIONS(2947), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2949), + [sym__plus_then_ws] = ACTIONS(2949), + [sym__minus_then_ws] = ACTIONS(2949), + [sym_bang] = ACTIONS(1069), + }, + [703] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2124), + [sym_boolean_literal] = STATE(2124), + [sym__string_literal] = STATE(2124), + [sym_line_string_literal] = STATE(2124), + [sym_multi_line_string_literal] = STATE(2124), + [sym_raw_string_literal] = STATE(2124), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2124), + [sym__unary_expression] = STATE(2124), + [sym_postfix_expression] = STATE(2124), + [sym_constructor_expression] = STATE(2124), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2124), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2124), + [sym_prefix_expression] = STATE(2124), + [sym_as_expression] = STATE(2124), + [sym_selector_expression] = STATE(2124), + [sym__binary_expression] = STATE(2124), + [sym_multiplicative_expression] = STATE(2124), + [sym_additive_expression] = STATE(2124), + [sym_range_expression] = STATE(2124), + [sym_infix_expression] = STATE(2124), + [sym_nil_coalescing_expression] = STATE(2124), + [sym_check_expression] = STATE(2124), + [sym_comparison_expression] = STATE(2124), + [sym_equality_expression] = STATE(2124), + [sym_conjunction_expression] = STATE(2124), + [sym_disjunction_expression] = STATE(2124), + [sym_bitwise_operation] = STATE(2124), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2124), + [sym_await_expression] = STATE(2124), + [sym_ternary_expression] = STATE(2124), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2124), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2124), + [sym_dictionary_literal] = STATE(2124), + [sym__special_literal] = STATE(2124), + [sym__playground_literal] = STATE(2124), + [sym_lambda_literal] = STATE(2124), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2124), + [sym_key_path_expression] = STATE(2124), + [sym_key_path_string_expression] = STATE(2124), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2124), + [sym__comparison_operator] = STATE(2124), + [sym__additive_operator] = STATE(2124), + [sym__multiplicative_operator] = STATE(2124), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2124), + [sym__referenceable_operator] = STATE(2124), + [sym__eq_eq] = STATE(2124), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2951), + [sym_real_literal] = ACTIONS(2953), + [sym_integer_literal] = ACTIONS(2951), + [sym_hex_literal] = ACTIONS(2953), + [sym_oct_literal] = ACTIONS(2953), + [sym_bin_literal] = ACTIONS(2953), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2951), + [anon_sym_GT] = ACTIONS(2951), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2951), + [anon_sym_POUNDfileID] = ACTIONS(2953), + [anon_sym_POUNDfilePath] = ACTIONS(2953), + [anon_sym_POUNDline] = ACTIONS(2953), + [anon_sym_POUNDcolumn] = ACTIONS(2953), + [anon_sym_POUNDfunction] = ACTIONS(2953), + [anon_sym_POUNDdsohandle] = ACTIONS(2953), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2951), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2951), + [anon_sym_LT_EQ] = ACTIONS(2951), + [anon_sym_GT_EQ] = ACTIONS(2951), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2951), + [anon_sym_PERCENT] = ACTIONS(2951), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2953), + [sym__plus_then_ws] = ACTIONS(2953), + [sym__minus_then_ws] = ACTIONS(2953), + [sym_bang] = ACTIONS(1069), + }, + [704] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2064), + [sym_boolean_literal] = STATE(2064), + [sym__string_literal] = STATE(2064), + [sym_line_string_literal] = STATE(2064), + [sym_multi_line_string_literal] = STATE(2064), + [sym_raw_string_literal] = STATE(2064), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2064), + [sym__unary_expression] = STATE(2064), + [sym_postfix_expression] = STATE(2064), + [sym_constructor_expression] = STATE(2064), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2064), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2064), + [sym_prefix_expression] = STATE(2064), + [sym_as_expression] = STATE(2064), + [sym_selector_expression] = STATE(2064), + [sym__binary_expression] = STATE(2064), + [sym_multiplicative_expression] = STATE(2064), + [sym_additive_expression] = STATE(2064), + [sym_range_expression] = STATE(2064), + [sym_infix_expression] = STATE(2064), + [sym_nil_coalescing_expression] = STATE(2064), + [sym_check_expression] = STATE(2064), + [sym_comparison_expression] = STATE(2064), + [sym_equality_expression] = STATE(2064), + [sym_conjunction_expression] = STATE(2064), + [sym_disjunction_expression] = STATE(2064), + [sym_bitwise_operation] = STATE(2064), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2064), + [sym_await_expression] = STATE(2064), + [sym_ternary_expression] = STATE(2064), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2064), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2064), + [sym_dictionary_literal] = STATE(2064), + [sym__special_literal] = STATE(2064), + [sym__playground_literal] = STATE(2064), + [sym_lambda_literal] = STATE(2064), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2064), + [sym_key_path_expression] = STATE(2064), + [sym_key_path_string_expression] = STATE(2064), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2064), + [sym__comparison_operator] = STATE(2064), + [sym__additive_operator] = STATE(2064), + [sym__multiplicative_operator] = STATE(2064), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2064), + [sym__referenceable_operator] = STATE(2064), + [sym__eq_eq] = STATE(2064), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(2955), + [sym_real_literal] = ACTIONS(2957), + [sym_integer_literal] = ACTIONS(2955), + [sym_hex_literal] = ACTIONS(2957), + [sym_oct_literal] = ACTIONS(2957), + [sym_bin_literal] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(2955), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(2955), + [anon_sym_POUNDfileID] = ACTIONS(2957), + [anon_sym_POUNDfilePath] = ACTIONS(2957), + [anon_sym_POUNDline] = ACTIONS(2957), + [anon_sym_POUNDcolumn] = ACTIONS(2957), + [anon_sym_POUNDfunction] = ACTIONS(2957), + [anon_sym_POUNDdsohandle] = ACTIONS(2957), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(2955), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2955), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2955), + [anon_sym_LT_EQ] = ACTIONS(2955), + [anon_sym_GT_EQ] = ACTIONS(2955), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_SLASH] = ACTIONS(2955), + [anon_sym_PERCENT] = ACTIONS(2955), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(2957), + [sym__plus_then_ws] = ACTIONS(2957), + [sym__minus_then_ws] = ACTIONS(2957), + [sym_bang] = ACTIONS(833), + }, + [705] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2123), + [sym_boolean_literal] = STATE(2123), + [sym__string_literal] = STATE(2123), + [sym_line_string_literal] = STATE(2123), + [sym_multi_line_string_literal] = STATE(2123), + [sym_raw_string_literal] = STATE(2123), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2123), + [sym__unary_expression] = STATE(2123), + [sym_postfix_expression] = STATE(2123), + [sym_constructor_expression] = STATE(2123), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2123), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2123), + [sym_prefix_expression] = STATE(2123), + [sym_as_expression] = STATE(2123), + [sym_selector_expression] = STATE(2123), + [sym__binary_expression] = STATE(2123), + [sym_multiplicative_expression] = STATE(2123), + [sym_additive_expression] = STATE(2123), + [sym_range_expression] = STATE(2123), + [sym_infix_expression] = STATE(2123), + [sym_nil_coalescing_expression] = STATE(2123), + [sym_check_expression] = STATE(2123), + [sym_comparison_expression] = STATE(2123), + [sym_equality_expression] = STATE(2123), + [sym_conjunction_expression] = STATE(2123), + [sym_disjunction_expression] = STATE(2123), + [sym_bitwise_operation] = STATE(2123), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2123), + [sym_await_expression] = STATE(2123), + [sym_ternary_expression] = STATE(2123), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2123), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2123), + [sym_dictionary_literal] = STATE(2123), + [sym__special_literal] = STATE(2123), + [sym__playground_literal] = STATE(2123), + [sym_lambda_literal] = STATE(2123), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2123), + [sym_key_path_expression] = STATE(2123), + [sym_key_path_string_expression] = STATE(2123), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2123), + [sym__comparison_operator] = STATE(2123), + [sym__additive_operator] = STATE(2123), + [sym__multiplicative_operator] = STATE(2123), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2123), + [sym__referenceable_operator] = STATE(2123), + [sym__eq_eq] = STATE(2123), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2959), + [sym_real_literal] = ACTIONS(2961), + [sym_integer_literal] = ACTIONS(2959), + [sym_hex_literal] = ACTIONS(2961), + [sym_oct_literal] = ACTIONS(2961), + [sym_bin_literal] = ACTIONS(2961), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2959), + [anon_sym_GT] = ACTIONS(2959), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2959), + [anon_sym_POUNDfileID] = ACTIONS(2961), + [anon_sym_POUNDfilePath] = ACTIONS(2961), + [anon_sym_POUNDline] = ACTIONS(2961), + [anon_sym_POUNDcolumn] = ACTIONS(2961), + [anon_sym_POUNDfunction] = ACTIONS(2961), + [anon_sym_POUNDdsohandle] = ACTIONS(2961), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2959), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_SLASH] = ACTIONS(2959), + [anon_sym_PERCENT] = ACTIONS(2959), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2961), + [sym__plus_then_ws] = ACTIONS(2961), + [sym__minus_then_ws] = ACTIONS(2961), + [sym_bang] = ACTIONS(1069), + }, + [706] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2107), + [sym_boolean_literal] = STATE(2107), + [sym__string_literal] = STATE(2107), + [sym_line_string_literal] = STATE(2107), + [sym_multi_line_string_literal] = STATE(2107), + [sym_raw_string_literal] = STATE(2107), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2107), + [sym__unary_expression] = STATE(2107), + [sym_postfix_expression] = STATE(2107), + [sym_constructor_expression] = STATE(2107), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2107), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2107), + [sym_prefix_expression] = STATE(2107), + [sym_as_expression] = STATE(2107), + [sym_selector_expression] = STATE(2107), + [sym__binary_expression] = STATE(2107), + [sym_multiplicative_expression] = STATE(2107), + [sym_additive_expression] = STATE(2107), + [sym_range_expression] = STATE(2107), + [sym_infix_expression] = STATE(2107), + [sym_nil_coalescing_expression] = STATE(2107), + [sym_check_expression] = STATE(2107), + [sym_comparison_expression] = STATE(2107), + [sym_equality_expression] = STATE(2107), + [sym_conjunction_expression] = STATE(2107), + [sym_disjunction_expression] = STATE(2107), + [sym_bitwise_operation] = STATE(2107), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2107), + [sym_await_expression] = STATE(2107), + [sym_ternary_expression] = STATE(3172), + [sym_call_expression] = STATE(2670), + [sym__primary_expression] = STATE(2107), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2107), + [sym_dictionary_literal] = STATE(2107), + [sym__special_literal] = STATE(2107), + [sym__playground_literal] = STATE(2107), + [sym_lambda_literal] = STATE(2107), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2107), + [sym_key_path_expression] = STATE(2107), + [sym_key_path_string_expression] = STATE(2107), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2107), + [sym__comparison_operator] = STATE(2107), + [sym__additive_operator] = STATE(2107), + [sym__multiplicative_operator] = STATE(2107), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(2107), + [sym__referenceable_operator] = STATE(2107), + [sym__eq_eq] = STATE(2107), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(2963), + [sym_real_literal] = ACTIONS(2965), + [sym_integer_literal] = ACTIONS(2963), + [sym_hex_literal] = ACTIONS(2965), + [sym_oct_literal] = ACTIONS(2965), + [sym_bin_literal] = ACTIONS(2965), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(2963), + [anon_sym_GT] = ACTIONS(2963), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(2963), + [anon_sym_POUNDfileID] = ACTIONS(2965), + [anon_sym_POUNDfilePath] = ACTIONS(2965), + [anon_sym_POUNDline] = ACTIONS(2965), + [anon_sym_POUNDcolumn] = ACTIONS(2965), + [anon_sym_POUNDfunction] = ACTIONS(2965), + [anon_sym_POUNDdsohandle] = ACTIONS(2965), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(2963), + [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_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_SLASH] = ACTIONS(2963), + [anon_sym_PERCENT] = ACTIONS(2963), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(2965), + [sym__plus_then_ws] = ACTIONS(2965), + [sym__minus_then_ws] = ACTIONS(2965), + [sym_bang] = ACTIONS(137), + }, + [707] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), + [sym__string_literal] = STATE(2119), + [sym_line_string_literal] = STATE(2119), + [sym_multi_line_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2119), + [sym__unary_expression] = STATE(2119), + [sym_postfix_expression] = STATE(2119), + [sym_constructor_expression] = STATE(2119), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2119), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2119), + [sym_prefix_expression] = STATE(2119), + [sym_as_expression] = STATE(2119), + [sym_selector_expression] = STATE(2119), + [sym__binary_expression] = STATE(2119), + [sym_multiplicative_expression] = STATE(2119), + [sym_additive_expression] = STATE(2119), + [sym_range_expression] = STATE(2119), + [sym_infix_expression] = STATE(2119), + [sym_nil_coalescing_expression] = STATE(2119), + [sym_check_expression] = STATE(2119), + [sym_comparison_expression] = STATE(2119), + [sym_equality_expression] = STATE(2119), + [sym_conjunction_expression] = STATE(2119), + [sym_disjunction_expression] = STATE(2119), + [sym_bitwise_operation] = STATE(2119), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2119), + [sym_await_expression] = STATE(2119), + [sym_ternary_expression] = STATE(2119), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2119), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2119), + [sym_dictionary_literal] = STATE(2119), + [sym__special_literal] = STATE(2119), + [sym__playground_literal] = STATE(2119), + [sym_lambda_literal] = STATE(2119), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2119), + [sym_key_path_expression] = STATE(2119), + [sym_key_path_string_expression] = STATE(2119), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2119), + [sym__comparison_operator] = STATE(2119), + [sym__additive_operator] = STATE(2119), + [sym__multiplicative_operator] = STATE(2119), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2119), + [sym__referenceable_operator] = STATE(2119), + [sym__eq_eq] = STATE(2119), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2967), + [sym_real_literal] = ACTIONS(2969), + [sym_integer_literal] = ACTIONS(2967), + [sym_hex_literal] = ACTIONS(2969), + [sym_oct_literal] = ACTIONS(2969), + [sym_bin_literal] = ACTIONS(2969), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2967), + [anon_sym_GT] = ACTIONS(2967), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2967), + [anon_sym_POUNDfileID] = ACTIONS(2969), + [anon_sym_POUNDfilePath] = ACTIONS(2969), + [anon_sym_POUNDline] = ACTIONS(2969), + [anon_sym_POUNDcolumn] = ACTIONS(2969), + [anon_sym_POUNDfunction] = ACTIONS(2969), + [anon_sym_POUNDdsohandle] = ACTIONS(2969), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2967), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_SLASH] = ACTIONS(2967), + [anon_sym_PERCENT] = ACTIONS(2967), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2969), + [sym__plus_then_ws] = ACTIONS(2969), + [sym__minus_then_ws] = ACTIONS(2969), + [sym_bang] = ACTIONS(1069), + }, + [708] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2118), + [sym_boolean_literal] = STATE(2118), + [sym__string_literal] = STATE(2118), + [sym_line_string_literal] = STATE(2118), + [sym_multi_line_string_literal] = STATE(2118), + [sym_raw_string_literal] = STATE(2118), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2118), + [sym__unary_expression] = STATE(2118), + [sym_postfix_expression] = STATE(2118), + [sym_constructor_expression] = STATE(2118), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2118), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2118), + [sym_prefix_expression] = STATE(2118), + [sym_as_expression] = STATE(2118), + [sym_selector_expression] = STATE(2118), + [sym__binary_expression] = STATE(2118), + [sym_multiplicative_expression] = STATE(2118), + [sym_additive_expression] = STATE(2118), + [sym_range_expression] = STATE(2118), + [sym_infix_expression] = STATE(2118), + [sym_nil_coalescing_expression] = STATE(2118), + [sym_check_expression] = STATE(2118), + [sym_comparison_expression] = STATE(2118), + [sym_equality_expression] = STATE(2118), + [sym_conjunction_expression] = STATE(2118), + [sym_disjunction_expression] = STATE(2118), + [sym_bitwise_operation] = STATE(2118), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2118), + [sym_await_expression] = STATE(2118), + [sym_ternary_expression] = STATE(2118), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2118), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2118), + [sym_dictionary_literal] = STATE(2118), + [sym__special_literal] = STATE(2118), + [sym__playground_literal] = STATE(2118), + [sym_lambda_literal] = STATE(2118), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2118), + [sym_key_path_expression] = STATE(2118), + [sym_key_path_string_expression] = STATE(2118), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2118), + [sym__comparison_operator] = STATE(2118), + [sym__additive_operator] = STATE(2118), + [sym__multiplicative_operator] = STATE(2118), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2118), + [sym__referenceable_operator] = STATE(2118), + [sym__eq_eq] = STATE(2118), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2971), + [sym_real_literal] = ACTIONS(2973), + [sym_integer_literal] = ACTIONS(2971), + [sym_hex_literal] = ACTIONS(2973), + [sym_oct_literal] = ACTIONS(2973), + [sym_bin_literal] = ACTIONS(2973), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2971), + [anon_sym_GT] = ACTIONS(2971), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2971), + [anon_sym_POUNDfileID] = ACTIONS(2973), + [anon_sym_POUNDfilePath] = ACTIONS(2973), + [anon_sym_POUNDline] = ACTIONS(2973), + [anon_sym_POUNDcolumn] = ACTIONS(2973), + [anon_sym_POUNDfunction] = ACTIONS(2973), + [anon_sym_POUNDdsohandle] = ACTIONS(2973), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2971), + [anon_sym_SLASH] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2973), + [sym__plus_then_ws] = ACTIONS(2973), + [sym__minus_then_ws] = ACTIONS(2973), + [sym_bang] = ACTIONS(1069), + }, + [709] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2117), + [sym_boolean_literal] = STATE(2117), + [sym__string_literal] = STATE(2117), + [sym_line_string_literal] = STATE(2117), + [sym_multi_line_string_literal] = STATE(2117), + [sym_raw_string_literal] = STATE(2117), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2117), + [sym__unary_expression] = STATE(2117), + [sym_postfix_expression] = STATE(2117), + [sym_constructor_expression] = STATE(2117), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2117), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2117), + [sym_prefix_expression] = STATE(2117), + [sym_as_expression] = STATE(2117), + [sym_selector_expression] = STATE(2117), + [sym__binary_expression] = STATE(2117), + [sym_multiplicative_expression] = STATE(2117), + [sym_additive_expression] = STATE(2117), + [sym_range_expression] = STATE(2117), + [sym_infix_expression] = STATE(2117), + [sym_nil_coalescing_expression] = STATE(2117), + [sym_check_expression] = STATE(2117), + [sym_comparison_expression] = STATE(2117), + [sym_equality_expression] = STATE(2117), + [sym_conjunction_expression] = STATE(2117), + [sym_disjunction_expression] = STATE(2117), + [sym_bitwise_operation] = STATE(2117), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2117), + [sym_await_expression] = STATE(2117), + [sym_ternary_expression] = STATE(2117), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2117), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2117), + [sym_dictionary_literal] = STATE(2117), + [sym__special_literal] = STATE(2117), + [sym__playground_literal] = STATE(2117), + [sym_lambda_literal] = STATE(2117), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2117), + [sym_key_path_expression] = STATE(2117), + [sym_key_path_string_expression] = STATE(2117), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2117), + [sym__comparison_operator] = STATE(2117), + [sym__additive_operator] = STATE(2117), + [sym__multiplicative_operator] = STATE(2117), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2117), + [sym__referenceable_operator] = STATE(2117), + [sym__eq_eq] = STATE(2117), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2975), + [sym_real_literal] = ACTIONS(2977), + [sym_integer_literal] = ACTIONS(2975), + [sym_hex_literal] = ACTIONS(2977), + [sym_oct_literal] = ACTIONS(2977), + [sym_bin_literal] = ACTIONS(2977), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_GT] = ACTIONS(2975), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2975), + [anon_sym_POUNDfileID] = ACTIONS(2977), + [anon_sym_POUNDfilePath] = ACTIONS(2977), + [anon_sym_POUNDline] = ACTIONS(2977), + [anon_sym_POUNDcolumn] = ACTIONS(2977), + [anon_sym_POUNDfunction] = ACTIONS(2977), + [anon_sym_POUNDdsohandle] = ACTIONS(2977), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2975), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2975), + [anon_sym_SLASH] = ACTIONS(2975), + [anon_sym_PERCENT] = ACTIONS(2975), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2977), + [sym__plus_then_ws] = ACTIONS(2977), + [sym__minus_then_ws] = ACTIONS(2977), + [sym_bang] = ACTIONS(1069), + }, + [710] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2115), + [sym_boolean_literal] = STATE(2115), + [sym__string_literal] = STATE(2115), + [sym_line_string_literal] = STATE(2115), + [sym_multi_line_string_literal] = STATE(2115), + [sym_raw_string_literal] = STATE(2115), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2115), + [sym__unary_expression] = STATE(2115), + [sym_postfix_expression] = STATE(2115), + [sym_constructor_expression] = STATE(2115), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2115), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2115), + [sym_prefix_expression] = STATE(2115), + [sym_as_expression] = STATE(2115), + [sym_selector_expression] = STATE(2115), + [sym__binary_expression] = STATE(2115), + [sym_multiplicative_expression] = STATE(2115), + [sym_additive_expression] = STATE(2115), + [sym_range_expression] = STATE(2115), + [sym_infix_expression] = STATE(2115), + [sym_nil_coalescing_expression] = STATE(2115), + [sym_check_expression] = STATE(2115), + [sym_comparison_expression] = STATE(2115), + [sym_equality_expression] = STATE(2115), + [sym_conjunction_expression] = STATE(2115), + [sym_disjunction_expression] = STATE(2115), + [sym_bitwise_operation] = STATE(2115), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2115), + [sym_await_expression] = STATE(2115), + [sym_ternary_expression] = STATE(2115), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2115), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2115), + [sym_dictionary_literal] = STATE(2115), + [sym__special_literal] = STATE(2115), + [sym__playground_literal] = STATE(2115), + [sym_lambda_literal] = STATE(2115), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2115), + [sym_key_path_expression] = STATE(2115), + [sym_key_path_string_expression] = STATE(2115), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2115), + [sym__comparison_operator] = STATE(2115), + [sym__additive_operator] = STATE(2115), + [sym__multiplicative_operator] = STATE(2115), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2115), + [sym__referenceable_operator] = STATE(2115), + [sym__eq_eq] = STATE(2115), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2979), + [sym_real_literal] = ACTIONS(2981), + [sym_integer_literal] = ACTIONS(2979), + [sym_hex_literal] = ACTIONS(2981), + [sym_oct_literal] = ACTIONS(2981), + [sym_bin_literal] = ACTIONS(2981), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2979), + [anon_sym_GT] = ACTIONS(2979), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2979), + [anon_sym_POUNDfileID] = ACTIONS(2981), + [anon_sym_POUNDfilePath] = ACTIONS(2981), + [anon_sym_POUNDline] = ACTIONS(2981), + [anon_sym_POUNDcolumn] = ACTIONS(2981), + [anon_sym_POUNDfunction] = ACTIONS(2981), + [anon_sym_POUNDdsohandle] = ACTIONS(2981), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2981), + [sym__plus_then_ws] = ACTIONS(2981), + [sym__minus_then_ws] = ACTIONS(2981), + [sym_bang] = ACTIONS(1069), + }, + [711] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2238), + [sym_boolean_literal] = STATE(2238), + [sym__string_literal] = STATE(2238), + [sym_line_string_literal] = STATE(2238), + [sym_multi_line_string_literal] = STATE(2238), + [sym_raw_string_literal] = STATE(2238), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2238), + [sym__unary_expression] = STATE(2238), + [sym_postfix_expression] = STATE(2238), + [sym_constructor_expression] = STATE(2238), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2238), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2238), + [sym_prefix_expression] = STATE(2238), + [sym_as_expression] = STATE(2238), + [sym_selector_expression] = STATE(2238), + [sym__binary_expression] = STATE(2238), + [sym_multiplicative_expression] = STATE(2238), + [sym_additive_expression] = STATE(2238), + [sym_range_expression] = STATE(2238), + [sym_infix_expression] = STATE(2238), + [sym_nil_coalescing_expression] = STATE(2238), + [sym_check_expression] = STATE(2238), + [sym_comparison_expression] = STATE(2238), + [sym_equality_expression] = STATE(2238), + [sym_conjunction_expression] = STATE(2238), + [sym_disjunction_expression] = STATE(2238), + [sym_bitwise_operation] = STATE(2238), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2238), + [sym_await_expression] = STATE(2238), + [sym_ternary_expression] = STATE(2238), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2238), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2238), + [sym_dictionary_literal] = STATE(2238), + [sym__special_literal] = STATE(2238), + [sym__playground_literal] = STATE(2238), + [sym_lambda_literal] = STATE(2238), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2238), + [sym_key_path_expression] = STATE(2238), + [sym_key_path_string_expression] = STATE(2238), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2238), + [sym__comparison_operator] = STATE(2238), + [sym__additive_operator] = STATE(2238), + [sym__multiplicative_operator] = STATE(2238), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2238), + [sym__referenceable_operator] = STATE(2238), + [sym__eq_eq] = STATE(2238), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1183), + [sym_real_literal] = ACTIONS(1185), + [sym_integer_literal] = ACTIONS(1183), + [sym_hex_literal] = ACTIONS(1185), + [sym_oct_literal] = ACTIONS(1185), + [sym_bin_literal] = ACTIONS(1185), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1183), + [anon_sym_GT] = ACTIONS(1183), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1183), + [anon_sym_POUNDfileID] = ACTIONS(1185), + [anon_sym_POUNDfilePath] = ACTIONS(1185), + [anon_sym_POUNDline] = ACTIONS(1185), + [anon_sym_POUNDcolumn] = ACTIONS(1185), + [anon_sym_POUNDfunction] = ACTIONS(1185), + [anon_sym_POUNDdsohandle] = ACTIONS(1185), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1183), + [anon_sym_LT_EQ] = ACTIONS(1183), + [anon_sym_GT_EQ] = ACTIONS(1183), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1183), + [anon_sym_SLASH] = ACTIONS(1183), + [anon_sym_PERCENT] = ACTIONS(1183), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1185), + [sym__plus_then_ws] = ACTIONS(1185), + [sym__minus_then_ws] = ACTIONS(1185), + [sym_bang] = ACTIONS(833), + }, + [712] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2112), + [sym_boolean_literal] = STATE(2112), + [sym__string_literal] = STATE(2112), + [sym_line_string_literal] = STATE(2112), + [sym_multi_line_string_literal] = STATE(2112), + [sym_raw_string_literal] = STATE(2112), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2112), + [sym__unary_expression] = STATE(2112), + [sym_postfix_expression] = STATE(2112), + [sym_constructor_expression] = STATE(2112), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2112), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2112), + [sym_prefix_expression] = STATE(2112), + [sym_as_expression] = STATE(2112), + [sym_selector_expression] = STATE(2112), + [sym__binary_expression] = STATE(2112), + [sym_multiplicative_expression] = STATE(2112), + [sym_additive_expression] = STATE(2112), + [sym_range_expression] = STATE(2112), + [sym_infix_expression] = STATE(2112), + [sym_nil_coalescing_expression] = STATE(2112), + [sym_check_expression] = STATE(2112), + [sym_comparison_expression] = STATE(2112), + [sym_equality_expression] = STATE(2112), + [sym_conjunction_expression] = STATE(2112), + [sym_disjunction_expression] = STATE(2112), + [sym_bitwise_operation] = STATE(2112), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2112), + [sym_await_expression] = STATE(2112), + [sym_ternary_expression] = STATE(2112), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2112), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2112), + [sym_dictionary_literal] = STATE(2112), + [sym__special_literal] = STATE(2112), + [sym__playground_literal] = STATE(2112), + [sym_lambda_literal] = STATE(2112), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2112), + [sym_key_path_expression] = STATE(2112), + [sym_key_path_string_expression] = STATE(2112), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2112), + [sym__comparison_operator] = STATE(2112), + [sym__additive_operator] = STATE(2112), + [sym__multiplicative_operator] = STATE(2112), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2112), + [sym__referenceable_operator] = STATE(2112), + [sym__eq_eq] = STATE(2112), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2983), + [sym_real_literal] = ACTIONS(2985), + [sym_integer_literal] = ACTIONS(2983), + [sym_hex_literal] = ACTIONS(2985), + [sym_oct_literal] = ACTIONS(2985), + [sym_bin_literal] = ACTIONS(2985), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2983), + [anon_sym_GT] = ACTIONS(2983), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2983), + [anon_sym_POUNDfileID] = ACTIONS(2985), + [anon_sym_POUNDfilePath] = ACTIONS(2985), + [anon_sym_POUNDline] = ACTIONS(2985), + [anon_sym_POUNDcolumn] = ACTIONS(2985), + [anon_sym_POUNDfunction] = ACTIONS(2985), + [anon_sym_POUNDdsohandle] = ACTIONS(2985), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2983), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_SLASH] = ACTIONS(2983), + [anon_sym_PERCENT] = ACTIONS(2983), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2985), + [sym__plus_then_ws] = ACTIONS(2985), + [sym__minus_then_ws] = ACTIONS(2985), + [sym_bang] = ACTIONS(1069), + }, + [713] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2111), + [sym_boolean_literal] = STATE(2111), + [sym__string_literal] = STATE(2111), + [sym_line_string_literal] = STATE(2111), + [sym_multi_line_string_literal] = STATE(2111), + [sym_raw_string_literal] = STATE(2111), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2111), + [sym__unary_expression] = STATE(2111), + [sym_postfix_expression] = STATE(2111), + [sym_constructor_expression] = STATE(2111), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2111), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2111), + [sym_prefix_expression] = STATE(2111), + [sym_as_expression] = STATE(2111), + [sym_selector_expression] = STATE(2111), + [sym__binary_expression] = STATE(2111), + [sym_multiplicative_expression] = STATE(2111), + [sym_additive_expression] = STATE(2111), + [sym_range_expression] = STATE(2111), + [sym_infix_expression] = STATE(2111), + [sym_nil_coalescing_expression] = STATE(2111), + [sym_check_expression] = STATE(2111), + [sym_comparison_expression] = STATE(2111), + [sym_equality_expression] = STATE(2111), + [sym_conjunction_expression] = STATE(2111), + [sym_disjunction_expression] = STATE(2111), + [sym_bitwise_operation] = STATE(2111), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2111), + [sym_await_expression] = STATE(2111), + [sym_ternary_expression] = STATE(2111), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2111), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2111), + [sym_dictionary_literal] = STATE(2111), + [sym__special_literal] = STATE(2111), + [sym__playground_literal] = STATE(2111), + [sym_lambda_literal] = STATE(2111), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2111), + [sym_key_path_expression] = STATE(2111), + [sym_key_path_string_expression] = STATE(2111), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2111), + [sym__comparison_operator] = STATE(2111), + [sym__additive_operator] = STATE(2111), + [sym__multiplicative_operator] = STATE(2111), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2111), + [sym__referenceable_operator] = STATE(2111), + [sym__eq_eq] = STATE(2111), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2987), + [sym_real_literal] = ACTIONS(2989), + [sym_integer_literal] = ACTIONS(2987), + [sym_hex_literal] = ACTIONS(2989), + [sym_oct_literal] = ACTIONS(2989), + [sym_bin_literal] = ACTIONS(2989), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2987), + [anon_sym_GT] = ACTIONS(2987), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2987), + [anon_sym_POUNDfileID] = ACTIONS(2989), + [anon_sym_POUNDfilePath] = ACTIONS(2989), + [anon_sym_POUNDline] = ACTIONS(2989), + [anon_sym_POUNDcolumn] = ACTIONS(2989), + [anon_sym_POUNDfunction] = ACTIONS(2989), + [anon_sym_POUNDdsohandle] = ACTIONS(2989), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2987), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_SLASH] = ACTIONS(2987), + [anon_sym_PERCENT] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2989), + [sym__plus_then_ws] = ACTIONS(2989), + [sym__minus_then_ws] = ACTIONS(2989), + [sym_bang] = ACTIONS(1069), + }, + [714] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2110), + [sym_boolean_literal] = STATE(2110), + [sym__string_literal] = STATE(2110), + [sym_line_string_literal] = STATE(2110), + [sym_multi_line_string_literal] = STATE(2110), + [sym_raw_string_literal] = STATE(2110), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2110), + [sym__unary_expression] = STATE(2110), + [sym_postfix_expression] = STATE(2110), + [sym_constructor_expression] = STATE(2110), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2110), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2110), + [sym_prefix_expression] = STATE(2110), + [sym_as_expression] = STATE(2110), + [sym_selector_expression] = STATE(2110), + [sym__binary_expression] = STATE(2110), + [sym_multiplicative_expression] = STATE(2110), + [sym_additive_expression] = STATE(2110), + [sym_range_expression] = STATE(2110), + [sym_infix_expression] = STATE(2110), + [sym_nil_coalescing_expression] = STATE(2110), + [sym_check_expression] = STATE(2110), + [sym_comparison_expression] = STATE(2110), + [sym_equality_expression] = STATE(2110), + [sym_conjunction_expression] = STATE(2110), + [sym_disjunction_expression] = STATE(2110), + [sym_bitwise_operation] = STATE(2110), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2110), + [sym_await_expression] = STATE(2110), + [sym_ternary_expression] = STATE(2110), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2110), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2110), + [sym_dictionary_literal] = STATE(2110), + [sym__special_literal] = STATE(2110), + [sym__playground_literal] = STATE(2110), + [sym_lambda_literal] = STATE(2110), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2110), + [sym_key_path_expression] = STATE(2110), + [sym_key_path_string_expression] = STATE(2110), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2110), + [sym__comparison_operator] = STATE(2110), + [sym__additive_operator] = STATE(2110), + [sym__multiplicative_operator] = STATE(2110), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2110), + [sym__referenceable_operator] = STATE(2110), + [sym__eq_eq] = STATE(2110), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2991), + [sym_real_literal] = ACTIONS(2993), + [sym_integer_literal] = ACTIONS(2991), + [sym_hex_literal] = ACTIONS(2993), + [sym_oct_literal] = ACTIONS(2993), + [sym_bin_literal] = ACTIONS(2993), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2991), + [anon_sym_GT] = ACTIONS(2991), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2991), + [anon_sym_POUNDfileID] = ACTIONS(2993), + [anon_sym_POUNDfilePath] = ACTIONS(2993), + [anon_sym_POUNDline] = ACTIONS(2993), + [anon_sym_POUNDcolumn] = ACTIONS(2993), + [anon_sym_POUNDfunction] = ACTIONS(2993), + [anon_sym_POUNDdsohandle] = ACTIONS(2993), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2991), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_SLASH] = ACTIONS(2991), + [anon_sym_PERCENT] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2993), + [sym__plus_then_ws] = ACTIONS(2993), + [sym__minus_then_ws] = ACTIONS(2993), + [sym_bang] = ACTIONS(1069), + }, + [715] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2109), + [sym_boolean_literal] = STATE(2109), + [sym__string_literal] = STATE(2109), + [sym_line_string_literal] = STATE(2109), + [sym_multi_line_string_literal] = STATE(2109), + [sym_raw_string_literal] = STATE(2109), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2109), + [sym__unary_expression] = STATE(2109), + [sym_postfix_expression] = STATE(2109), + [sym_constructor_expression] = STATE(2109), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2109), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2109), + [sym_prefix_expression] = STATE(2109), + [sym_as_expression] = STATE(2109), + [sym_selector_expression] = STATE(2109), + [sym__binary_expression] = STATE(2109), + [sym_multiplicative_expression] = STATE(2109), + [sym_additive_expression] = STATE(2109), + [sym_range_expression] = STATE(2109), + [sym_infix_expression] = STATE(2109), + [sym_nil_coalescing_expression] = STATE(2109), + [sym_check_expression] = STATE(2109), + [sym_comparison_expression] = STATE(2109), + [sym_equality_expression] = STATE(2109), + [sym_conjunction_expression] = STATE(2109), + [sym_disjunction_expression] = STATE(2109), + [sym_bitwise_operation] = STATE(2109), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2109), + [sym_await_expression] = STATE(2109), + [sym_ternary_expression] = STATE(2109), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2109), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2109), + [sym_dictionary_literal] = STATE(2109), + [sym__special_literal] = STATE(2109), + [sym__playground_literal] = STATE(2109), + [sym_lambda_literal] = STATE(2109), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2109), + [sym_key_path_expression] = STATE(2109), + [sym_key_path_string_expression] = STATE(2109), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2109), + [sym__comparison_operator] = STATE(2109), + [sym__additive_operator] = STATE(2109), + [sym__multiplicative_operator] = STATE(2109), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2109), + [sym__referenceable_operator] = STATE(2109), + [sym__eq_eq] = STATE(2109), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2995), + [sym_real_literal] = ACTIONS(2997), + [sym_integer_literal] = ACTIONS(2995), + [sym_hex_literal] = ACTIONS(2997), + [sym_oct_literal] = ACTIONS(2997), + [sym_bin_literal] = ACTIONS(2997), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2995), + [anon_sym_GT] = ACTIONS(2995), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2995), + [anon_sym_POUNDfileID] = ACTIONS(2997), + [anon_sym_POUNDfilePath] = ACTIONS(2997), + [anon_sym_POUNDline] = ACTIONS(2997), + [anon_sym_POUNDcolumn] = ACTIONS(2997), + [anon_sym_POUNDfunction] = ACTIONS(2997), + [anon_sym_POUNDdsohandle] = ACTIONS(2997), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_SLASH] = ACTIONS(2995), + [anon_sym_PERCENT] = ACTIONS(2995), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(2997), + [sym__plus_then_ws] = ACTIONS(2997), + [sym__minus_then_ws] = ACTIONS(2997), + [sym_bang] = ACTIONS(1069), + }, + [716] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2108), + [sym_boolean_literal] = STATE(2108), + [sym__string_literal] = STATE(2108), + [sym_line_string_literal] = STATE(2108), + [sym_multi_line_string_literal] = STATE(2108), + [sym_raw_string_literal] = STATE(2108), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2108), + [sym__unary_expression] = STATE(2108), + [sym_postfix_expression] = STATE(2108), + [sym_constructor_expression] = STATE(2108), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2108), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2108), + [sym_prefix_expression] = STATE(2108), + [sym_as_expression] = STATE(2108), + [sym_selector_expression] = STATE(2108), + [sym__binary_expression] = STATE(2108), + [sym_multiplicative_expression] = STATE(2108), + [sym_additive_expression] = STATE(2108), + [sym_range_expression] = STATE(2108), + [sym_infix_expression] = STATE(2108), + [sym_nil_coalescing_expression] = STATE(2108), + [sym_check_expression] = STATE(2108), + [sym_comparison_expression] = STATE(2108), + [sym_equality_expression] = STATE(2108), + [sym_conjunction_expression] = STATE(2108), + [sym_disjunction_expression] = STATE(2108), + [sym_bitwise_operation] = STATE(2108), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2108), + [sym_await_expression] = STATE(2108), + [sym_ternary_expression] = STATE(2108), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2108), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2108), + [sym_dictionary_literal] = STATE(2108), + [sym__special_literal] = STATE(2108), + [sym__playground_literal] = STATE(2108), + [sym_lambda_literal] = STATE(2108), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2108), + [sym_key_path_expression] = STATE(2108), + [sym_key_path_string_expression] = STATE(2108), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2108), + [sym__comparison_operator] = STATE(2108), + [sym__additive_operator] = STATE(2108), + [sym__multiplicative_operator] = STATE(2108), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2108), + [sym__referenceable_operator] = STATE(2108), + [sym__eq_eq] = STATE(2108), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(2999), + [sym_real_literal] = ACTIONS(3001), + [sym_integer_literal] = ACTIONS(2999), + [sym_hex_literal] = ACTIONS(3001), + [sym_oct_literal] = ACTIONS(3001), + [sym_bin_literal] = ACTIONS(3001), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2999), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(2999), + [anon_sym_POUNDfileID] = ACTIONS(3001), + [anon_sym_POUNDfilePath] = ACTIONS(3001), + [anon_sym_POUNDline] = ACTIONS(3001), + [anon_sym_POUNDcolumn] = ACTIONS(3001), + [anon_sym_POUNDfunction] = ACTIONS(3001), + [anon_sym_POUNDdsohandle] = ACTIONS(3001), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(2999), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_SLASH] = ACTIONS(2999), + [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3001), + [sym__plus_then_ws] = ACTIONS(3001), + [sym__minus_then_ws] = ACTIONS(3001), + [sym_bang] = ACTIONS(1069), + }, + [717] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1617), + [sym_boolean_literal] = STATE(1617), + [sym__string_literal] = STATE(1617), + [sym_line_string_literal] = STATE(1617), + [sym_multi_line_string_literal] = STATE(1617), + [sym_raw_string_literal] = STATE(1617), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1617), + [sym__unary_expression] = STATE(1617), + [sym_postfix_expression] = STATE(1617), + [sym_constructor_expression] = STATE(1617), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1617), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1617), + [sym_prefix_expression] = STATE(1617), + [sym_as_expression] = STATE(1617), + [sym_selector_expression] = STATE(1617), + [sym__binary_expression] = STATE(1617), + [sym_multiplicative_expression] = STATE(1617), + [sym_additive_expression] = STATE(1617), + [sym_range_expression] = STATE(1617), + [sym_infix_expression] = STATE(1617), + [sym_nil_coalescing_expression] = STATE(1617), + [sym_check_expression] = STATE(1617), + [sym_comparison_expression] = STATE(1617), + [sym_equality_expression] = STATE(1617), + [sym_conjunction_expression] = STATE(1617), + [sym_disjunction_expression] = STATE(1617), + [sym_bitwise_operation] = STATE(1617), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1617), + [sym_await_expression] = STATE(1617), + [sym_ternary_expression] = STATE(1617), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1617), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1617), + [sym_dictionary_literal] = STATE(1617), + [sym__special_literal] = STATE(1617), + [sym__playground_literal] = STATE(1617), + [sym_lambda_literal] = STATE(1617), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1617), + [sym_key_path_expression] = STATE(1617), + [sym_key_path_string_expression] = STATE(1617), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1617), + [sym__comparison_operator] = STATE(1617), + [sym__additive_operator] = STATE(1617), + [sym__multiplicative_operator] = STATE(1617), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1617), + [sym__referenceable_operator] = STATE(1617), + [sym__eq_eq] = STATE(1617), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3003), + [sym_real_literal] = ACTIONS(3005), + [sym_integer_literal] = ACTIONS(3003), + [sym_hex_literal] = ACTIONS(3005), + [sym_oct_literal] = ACTIONS(3005), + [sym_bin_literal] = ACTIONS(3005), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3003), + [anon_sym_GT] = ACTIONS(3003), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3003), + [anon_sym_POUNDfileID] = ACTIONS(3005), + [anon_sym_POUNDfilePath] = ACTIONS(3005), + [anon_sym_POUNDline] = ACTIONS(3005), + [anon_sym_POUNDcolumn] = ACTIONS(3005), + [anon_sym_POUNDfunction] = ACTIONS(3005), + [anon_sym_POUNDdsohandle] = ACTIONS(3005), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3005), + [sym__plus_then_ws] = ACTIONS(3005), + [sym__minus_then_ws] = ACTIONS(3005), + [sym_bang] = ACTIONS(1069), + }, + [718] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1675), + [sym_boolean_literal] = STATE(1675), + [sym__string_literal] = STATE(1675), + [sym_line_string_literal] = STATE(1675), + [sym_multi_line_string_literal] = STATE(1675), + [sym_raw_string_literal] = STATE(1675), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1675), + [sym__unary_expression] = STATE(1675), + [sym_postfix_expression] = STATE(1675), + [sym_constructor_expression] = STATE(1675), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1675), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1675), + [sym_prefix_expression] = STATE(1675), + [sym_as_expression] = STATE(1675), + [sym_selector_expression] = STATE(1675), + [sym__binary_expression] = STATE(1675), + [sym_multiplicative_expression] = STATE(1675), + [sym_additive_expression] = STATE(1675), + [sym_range_expression] = STATE(1675), + [sym_infix_expression] = STATE(1675), + [sym_nil_coalescing_expression] = STATE(1675), + [sym_check_expression] = STATE(1675), + [sym_comparison_expression] = STATE(1675), + [sym_equality_expression] = STATE(1675), + [sym_conjunction_expression] = STATE(1675), + [sym_disjunction_expression] = STATE(1675), + [sym_bitwise_operation] = STATE(1675), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1675), + [sym_await_expression] = STATE(1675), + [sym_ternary_expression] = STATE(1675), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1675), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1675), + [sym_dictionary_literal] = STATE(1675), + [sym__special_literal] = STATE(1675), + [sym__playground_literal] = STATE(1675), + [sym_lambda_literal] = STATE(1675), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1675), + [sym_key_path_expression] = STATE(1675), + [sym_key_path_string_expression] = STATE(1675), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1675), + [sym__comparison_operator] = STATE(1675), + [sym__additive_operator] = STATE(1675), + [sym__multiplicative_operator] = STATE(1675), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1675), + [sym__referenceable_operator] = STATE(1675), + [sym__eq_eq] = STATE(1675), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3007), + [sym_real_literal] = ACTIONS(3009), + [sym_integer_literal] = ACTIONS(3007), + [sym_hex_literal] = ACTIONS(3009), + [sym_oct_literal] = ACTIONS(3009), + [sym_bin_literal] = ACTIONS(3009), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3007), + [anon_sym_GT] = ACTIONS(3007), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3007), + [anon_sym_POUNDfileID] = ACTIONS(3009), + [anon_sym_POUNDfilePath] = ACTIONS(3009), + [anon_sym_POUNDline] = ACTIONS(3009), + [anon_sym_POUNDcolumn] = ACTIONS(3009), + [anon_sym_POUNDfunction] = ACTIONS(3009), + [anon_sym_POUNDdsohandle] = ACTIONS(3009), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3007), + [anon_sym_SLASH] = ACTIONS(3007), + [anon_sym_PERCENT] = ACTIONS(3007), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3009), + [sym__plus_then_ws] = ACTIONS(3009), + [sym__minus_then_ws] = ACTIONS(3009), + [sym_bang] = ACTIONS(1069), + }, + [719] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1999), + [sym_boolean_literal] = STATE(1999), + [sym__string_literal] = STATE(1999), + [sym_line_string_literal] = STATE(1999), + [sym_multi_line_string_literal] = STATE(1999), + [sym_raw_string_literal] = STATE(1999), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1999), + [sym__unary_expression] = STATE(1999), + [sym_postfix_expression] = STATE(1999), + [sym_constructor_expression] = STATE(1999), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1999), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1999), + [sym_prefix_expression] = STATE(1999), + [sym_as_expression] = STATE(1999), + [sym_selector_expression] = STATE(1999), + [sym__binary_expression] = STATE(1999), + [sym_multiplicative_expression] = STATE(1999), + [sym_additive_expression] = STATE(1999), + [sym_range_expression] = STATE(1999), + [sym_infix_expression] = STATE(1999), + [sym_nil_coalescing_expression] = STATE(1999), + [sym_check_expression] = STATE(1999), + [sym_comparison_expression] = STATE(1999), + [sym_equality_expression] = STATE(1999), + [sym_conjunction_expression] = STATE(1999), + [sym_disjunction_expression] = STATE(1999), + [sym_bitwise_operation] = STATE(1999), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1999), + [sym_await_expression] = STATE(1999), + [sym_ternary_expression] = STATE(1999), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1999), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1999), + [sym_dictionary_literal] = STATE(1999), + [sym__special_literal] = STATE(1999), + [sym__playground_literal] = STATE(1999), + [sym_lambda_literal] = STATE(1999), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1999), + [sym_key_path_expression] = STATE(1999), + [sym_key_path_string_expression] = STATE(1999), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1999), + [sym__comparison_operator] = STATE(1999), + [sym__additive_operator] = STATE(1999), + [sym__multiplicative_operator] = STATE(1999), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1999), + [sym__referenceable_operator] = STATE(1999), + [sym__eq_eq] = STATE(1999), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3011), + [sym_real_literal] = ACTIONS(3013), + [sym_integer_literal] = ACTIONS(3011), + [sym_hex_literal] = ACTIONS(3013), + [sym_oct_literal] = ACTIONS(3013), + [sym_bin_literal] = ACTIONS(3013), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(3011), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3011), + [anon_sym_POUNDfileID] = ACTIONS(3013), + [anon_sym_POUNDfilePath] = ACTIONS(3013), + [anon_sym_POUNDline] = ACTIONS(3013), + [anon_sym_POUNDcolumn] = ACTIONS(3013), + [anon_sym_POUNDfunction] = ACTIONS(3013), + [anon_sym_POUNDdsohandle] = ACTIONS(3013), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_SLASH] = ACTIONS(3011), + [anon_sym_PERCENT] = ACTIONS(3011), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3013), + [sym__plus_then_ws] = ACTIONS(3013), + [sym__minus_then_ws] = ACTIONS(3013), + [sym_bang] = ACTIONS(1069), + }, + [720] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(1802), + [sym_boolean_literal] = STATE(1802), + [sym__string_literal] = STATE(1802), + [sym_line_string_literal] = STATE(1802), + [sym_multi_line_string_literal] = STATE(1802), + [sym_raw_string_literal] = STATE(1802), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(1802), + [sym__unary_expression] = STATE(1802), + [sym_postfix_expression] = STATE(1802), + [sym_constructor_expression] = STATE(1802), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(1802), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(1802), + [sym_prefix_expression] = STATE(1802), + [sym_as_expression] = STATE(1802), + [sym_selector_expression] = STATE(1802), + [sym__binary_expression] = STATE(1802), + [sym_multiplicative_expression] = STATE(1802), + [sym_additive_expression] = STATE(1802), + [sym_range_expression] = STATE(1802), + [sym_infix_expression] = STATE(1802), + [sym_nil_coalescing_expression] = STATE(1802), + [sym_check_expression] = STATE(1802), + [sym_comparison_expression] = STATE(1802), + [sym_equality_expression] = STATE(1802), + [sym_conjunction_expression] = STATE(1802), + [sym_disjunction_expression] = STATE(1802), + [sym_bitwise_operation] = STATE(1802), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_ternary_expression] = STATE(1802), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(1802), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(1802), + [sym_dictionary_literal] = STATE(1802), + [sym__special_literal] = STATE(1802), + [sym__playground_literal] = STATE(1802), + [sym_lambda_literal] = STATE(1802), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(1802), + [sym_key_path_expression] = STATE(1802), + [sym_key_path_string_expression] = STATE(1802), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(1802), + [sym__comparison_operator] = STATE(1802), + [sym__additive_operator] = STATE(1802), + [sym__multiplicative_operator] = STATE(1802), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(1802), + [sym__referenceable_operator] = STATE(1802), + [sym__eq_eq] = STATE(1802), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(3015), + [sym_real_literal] = ACTIONS(3017), + [sym_integer_literal] = ACTIONS(3015), + [sym_hex_literal] = ACTIONS(3017), + [sym_oct_literal] = ACTIONS(3017), + [sym_bin_literal] = ACTIONS(3017), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(3015), + [anon_sym_GT] = ACTIONS(3015), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(3015), + [anon_sym_POUNDfileID] = ACTIONS(3017), + [anon_sym_POUNDfilePath] = ACTIONS(3017), + [anon_sym_POUNDline] = ACTIONS(3017), + [anon_sym_POUNDcolumn] = ACTIONS(3017), + [anon_sym_POUNDfunction] = ACTIONS(3017), + [anon_sym_POUNDdsohandle] = ACTIONS(3017), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(3015), + [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_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(3015), + [anon_sym_SLASH] = ACTIONS(3015), + [anon_sym_PERCENT] = ACTIONS(3015), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(3017), + [sym__plus_then_ws] = ACTIONS(3017), + [sym__minus_then_ws] = ACTIONS(3017), + [sym_bang] = ACTIONS(137), + }, + [721] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1929), + [sym_boolean_literal] = STATE(1929), + [sym__string_literal] = STATE(1929), + [sym_line_string_literal] = STATE(1929), + [sym_multi_line_string_literal] = STATE(1929), + [sym_raw_string_literal] = STATE(1929), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1929), + [sym__unary_expression] = STATE(1929), + [sym_postfix_expression] = STATE(1929), + [sym_constructor_expression] = STATE(1929), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1929), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1929), + [sym_prefix_expression] = STATE(1929), + [sym_as_expression] = STATE(1929), + [sym_selector_expression] = STATE(1929), + [sym__binary_expression] = STATE(1929), + [sym_multiplicative_expression] = STATE(1929), + [sym_additive_expression] = STATE(1929), + [sym_range_expression] = STATE(1929), + [sym_infix_expression] = STATE(1929), + [sym_nil_coalescing_expression] = STATE(1929), + [sym_check_expression] = STATE(1929), + [sym_comparison_expression] = STATE(1929), + [sym_equality_expression] = STATE(1929), + [sym_conjunction_expression] = STATE(1929), + [sym_disjunction_expression] = STATE(1929), + [sym_bitwise_operation] = STATE(1929), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1929), + [sym_await_expression] = STATE(1929), + [sym_ternary_expression] = STATE(1929), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1929), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1929), + [sym_dictionary_literal] = STATE(1929), + [sym__special_literal] = STATE(1929), + [sym__playground_literal] = STATE(1929), + [sym_lambda_literal] = STATE(1929), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1929), + [sym_key_path_expression] = STATE(1929), + [sym_key_path_string_expression] = STATE(1929), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1929), + [sym__comparison_operator] = STATE(1929), + [sym__additive_operator] = STATE(1929), + [sym__multiplicative_operator] = STATE(1929), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1929), + [sym__referenceable_operator] = STATE(1929), + [sym__eq_eq] = STATE(1929), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1149), + [sym_real_literal] = ACTIONS(1151), + [sym_integer_literal] = ACTIONS(1149), + [sym_hex_literal] = ACTIONS(1151), + [sym_oct_literal] = ACTIONS(1151), + [sym_bin_literal] = ACTIONS(1151), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1149), + [anon_sym_GT] = ACTIONS(1149), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1149), + [anon_sym_POUNDfileID] = ACTIONS(1151), + [anon_sym_POUNDfilePath] = ACTIONS(1151), + [anon_sym_POUNDline] = ACTIONS(1151), + [anon_sym_POUNDcolumn] = ACTIONS(1151), + [anon_sym_POUNDfunction] = ACTIONS(1151), + [anon_sym_POUNDdsohandle] = ACTIONS(1151), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1149), + [anon_sym_LT_EQ] = ACTIONS(1149), + [anon_sym_GT_EQ] = ACTIONS(1149), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1149), + [anon_sym_SLASH] = ACTIONS(1149), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1151), + [sym__plus_then_ws] = ACTIONS(1151), + [sym__minus_then_ws] = ACTIONS(1151), + [sym_bang] = ACTIONS(833), + }, + [722] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1612), + [sym_boolean_literal] = STATE(1612), + [sym__string_literal] = STATE(1612), + [sym_line_string_literal] = STATE(1612), + [sym_multi_line_string_literal] = STATE(1612), + [sym_raw_string_literal] = STATE(1612), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1612), + [sym__unary_expression] = STATE(1612), + [sym_postfix_expression] = STATE(1612), + [sym_constructor_expression] = STATE(1612), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1612), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1612), + [sym_prefix_expression] = STATE(1612), + [sym_as_expression] = STATE(1612), + [sym_selector_expression] = STATE(1612), + [sym__binary_expression] = STATE(1612), + [sym_multiplicative_expression] = STATE(1612), + [sym_additive_expression] = STATE(1612), + [sym_range_expression] = STATE(1612), + [sym_infix_expression] = STATE(1612), + [sym_nil_coalescing_expression] = STATE(1612), + [sym_check_expression] = STATE(1612), + [sym_comparison_expression] = STATE(1612), + [sym_equality_expression] = STATE(1612), + [sym_conjunction_expression] = STATE(1612), + [sym_disjunction_expression] = STATE(1612), + [sym_bitwise_operation] = STATE(1612), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1612), + [sym_await_expression] = STATE(1612), + [sym_ternary_expression] = STATE(1612), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1612), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1612), + [sym_dictionary_literal] = STATE(1612), + [sym__special_literal] = STATE(1612), + [sym__playground_literal] = STATE(1612), + [sym_lambda_literal] = STATE(1612), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1612), + [sym_key_path_expression] = STATE(1612), + [sym_key_path_string_expression] = STATE(1612), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1612), + [sym__comparison_operator] = STATE(1612), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1612), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1612), + [sym__referenceable_operator] = STATE(1612), + [sym__eq_eq] = STATE(1612), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3019), + [sym_real_literal] = ACTIONS(3021), + [sym_integer_literal] = ACTIONS(3019), + [sym_hex_literal] = ACTIONS(3021), + [sym_oct_literal] = ACTIONS(3021), + [sym_bin_literal] = ACTIONS(3021), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3019), + [anon_sym_GT] = ACTIONS(3019), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3019), + [anon_sym_POUNDfileID] = ACTIONS(3021), + [anon_sym_POUNDfilePath] = ACTIONS(3021), + [anon_sym_POUNDline] = ACTIONS(3021), + [anon_sym_POUNDcolumn] = ACTIONS(3021), + [anon_sym_POUNDfunction] = ACTIONS(3021), + [anon_sym_POUNDdsohandle] = ACTIONS(3021), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3019), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_SLASH] = ACTIONS(3019), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3021), + [sym__plus_then_ws] = ACTIONS(3021), + [sym__minus_then_ws] = ACTIONS(3021), + [sym_bang] = ACTIONS(1069), + }, + [723] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2239), + [sym_boolean_literal] = STATE(2239), + [sym__string_literal] = STATE(2239), + [sym_line_string_literal] = STATE(2239), + [sym_multi_line_string_literal] = STATE(2239), + [sym_raw_string_literal] = STATE(2239), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2239), + [sym__unary_expression] = STATE(2239), + [sym_postfix_expression] = STATE(2239), + [sym_constructor_expression] = STATE(2239), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2239), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2239), + [sym_prefix_expression] = STATE(2239), + [sym_as_expression] = STATE(2239), + [sym_selector_expression] = STATE(2239), + [sym__binary_expression] = STATE(2239), + [sym_multiplicative_expression] = STATE(2239), + [sym_additive_expression] = STATE(2239), + [sym_range_expression] = STATE(2239), + [sym_infix_expression] = STATE(2239), + [sym_nil_coalescing_expression] = STATE(2239), + [sym_check_expression] = STATE(2239), + [sym_comparison_expression] = STATE(2239), + [sym_equality_expression] = STATE(2239), + [sym_conjunction_expression] = STATE(2239), + [sym_disjunction_expression] = STATE(2239), + [sym_bitwise_operation] = STATE(2239), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2239), + [sym_await_expression] = STATE(2239), + [sym_ternary_expression] = STATE(2239), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2239), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2239), + [sym_dictionary_literal] = STATE(2239), + [sym__special_literal] = STATE(2239), + [sym__playground_literal] = STATE(2239), + [sym_lambda_literal] = STATE(2239), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2239), + [sym_key_path_expression] = STATE(2239), + [sym_key_path_string_expression] = STATE(2239), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2239), + [sym__comparison_operator] = STATE(2239), + [sym__additive_operator] = STATE(2239), + [sym__multiplicative_operator] = STATE(2239), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2239), + [sym__referenceable_operator] = STATE(2239), + [sym__eq_eq] = STATE(2239), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3023), + [sym_real_literal] = ACTIONS(3025), + [sym_integer_literal] = ACTIONS(3023), + [sym_hex_literal] = ACTIONS(3025), + [sym_oct_literal] = ACTIONS(3025), + [sym_bin_literal] = ACTIONS(3025), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_GT] = ACTIONS(3023), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3023), + [anon_sym_POUNDfileID] = ACTIONS(3025), + [anon_sym_POUNDfilePath] = ACTIONS(3025), + [anon_sym_POUNDline] = ACTIONS(3025), + [anon_sym_POUNDcolumn] = ACTIONS(3025), + [anon_sym_POUNDfunction] = ACTIONS(3025), + [anon_sym_POUNDdsohandle] = ACTIONS(3025), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_SLASH] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3025), + [sym__plus_then_ws] = ACTIONS(3025), + [sym__minus_then_ws] = ACTIONS(3025), + [sym_bang] = ACTIONS(833), + }, + [724] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1935), + [sym_boolean_literal] = STATE(1935), + [sym__string_literal] = STATE(1935), + [sym_line_string_literal] = STATE(1935), + [sym_multi_line_string_literal] = STATE(1935), + [sym_raw_string_literal] = STATE(1935), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1935), + [sym__unary_expression] = STATE(1935), + [sym_postfix_expression] = STATE(1935), + [sym_constructor_expression] = STATE(1935), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1935), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1935), + [sym_prefix_expression] = STATE(1935), + [sym_as_expression] = STATE(1935), + [sym_selector_expression] = STATE(1935), + [sym__binary_expression] = STATE(1935), + [sym_multiplicative_expression] = STATE(1935), + [sym_additive_expression] = STATE(1935), + [sym_range_expression] = STATE(1935), + [sym_infix_expression] = STATE(1935), + [sym_nil_coalescing_expression] = STATE(1935), + [sym_check_expression] = STATE(1935), + [sym_comparison_expression] = STATE(1935), + [sym_equality_expression] = STATE(1935), + [sym_conjunction_expression] = STATE(1935), + [sym_disjunction_expression] = STATE(1935), + [sym_bitwise_operation] = STATE(1935), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1935), + [sym_await_expression] = STATE(1935), + [sym_ternary_expression] = STATE(1935), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1935), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1935), + [sym_dictionary_literal] = STATE(1935), + [sym__special_literal] = STATE(1935), + [sym__playground_literal] = STATE(1935), + [sym_lambda_literal] = STATE(1935), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1935), + [sym_key_path_expression] = STATE(1935), + [sym_key_path_string_expression] = STATE(1935), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1935), + [sym__comparison_operator] = STATE(1935), + [sym__additive_operator] = STATE(1935), + [sym__multiplicative_operator] = STATE(1935), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1935), + [sym__referenceable_operator] = STATE(1935), + [sym__eq_eq] = STATE(1935), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3027), + [sym_real_literal] = ACTIONS(3029), + [sym_integer_literal] = ACTIONS(3027), + [sym_hex_literal] = ACTIONS(3029), + [sym_oct_literal] = ACTIONS(3029), + [sym_bin_literal] = ACTIONS(3029), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3027), + [anon_sym_GT] = ACTIONS(3027), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3027), + [anon_sym_POUNDfileID] = ACTIONS(3029), + [anon_sym_POUNDfilePath] = ACTIONS(3029), + [anon_sym_POUNDline] = ACTIONS(3029), + [anon_sym_POUNDcolumn] = ACTIONS(3029), + [anon_sym_POUNDfunction] = ACTIONS(3029), + [anon_sym_POUNDdsohandle] = ACTIONS(3029), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3027), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3027), + [anon_sym_SLASH] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3029), + [sym__plus_then_ws] = ACTIONS(3029), + [sym__minus_then_ws] = ACTIONS(3029), + [sym_bang] = ACTIONS(1069), + }, + [725] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1938), + [sym_boolean_literal] = STATE(1938), + [sym__string_literal] = STATE(1938), + [sym_line_string_literal] = STATE(1938), + [sym_multi_line_string_literal] = STATE(1938), + [sym_raw_string_literal] = STATE(1938), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1938), + [sym__unary_expression] = STATE(1938), + [sym_postfix_expression] = STATE(1938), + [sym_constructor_expression] = STATE(1938), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1938), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1938), + [sym_prefix_expression] = STATE(1938), + [sym_as_expression] = STATE(1938), + [sym_selector_expression] = STATE(1938), + [sym__binary_expression] = STATE(1938), + [sym_multiplicative_expression] = STATE(1938), + [sym_additive_expression] = STATE(1938), + [sym_range_expression] = STATE(1938), + [sym_infix_expression] = STATE(1938), + [sym_nil_coalescing_expression] = STATE(1938), + [sym_check_expression] = STATE(1938), + [sym_comparison_expression] = STATE(1938), + [sym_equality_expression] = STATE(1938), + [sym_conjunction_expression] = STATE(1938), + [sym_disjunction_expression] = STATE(1938), + [sym_bitwise_operation] = STATE(1938), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1938), + [sym_await_expression] = STATE(1938), + [sym_ternary_expression] = STATE(1938), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1938), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1938), + [sym_dictionary_literal] = STATE(1938), + [sym__special_literal] = STATE(1938), + [sym__playground_literal] = STATE(1938), + [sym_lambda_literal] = STATE(1938), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1938), + [sym_key_path_expression] = STATE(1938), + [sym_key_path_string_expression] = STATE(1938), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1938), + [sym__comparison_operator] = STATE(1938), + [sym__additive_operator] = STATE(1938), + [sym__multiplicative_operator] = STATE(1938), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1938), + [sym__referenceable_operator] = STATE(1938), + [sym__eq_eq] = STATE(1938), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3031), + [sym_real_literal] = ACTIONS(3033), + [sym_integer_literal] = ACTIONS(3031), + [sym_hex_literal] = ACTIONS(3033), + [sym_oct_literal] = ACTIONS(3033), + [sym_bin_literal] = ACTIONS(3033), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3031), + [anon_sym_GT] = ACTIONS(3031), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3031), + [anon_sym_POUNDfileID] = ACTIONS(3033), + [anon_sym_POUNDfilePath] = ACTIONS(3033), + [anon_sym_POUNDline] = ACTIONS(3033), + [anon_sym_POUNDcolumn] = ACTIONS(3033), + [anon_sym_POUNDfunction] = ACTIONS(3033), + [anon_sym_POUNDdsohandle] = ACTIONS(3033), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3031), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3031), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3033), + [sym__plus_then_ws] = ACTIONS(3033), + [sym__minus_then_ws] = ACTIONS(3033), + [sym_bang] = ACTIONS(1069), + }, + [726] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2252), + [sym_boolean_literal] = STATE(2252), + [sym__string_literal] = STATE(2252), + [sym_line_string_literal] = STATE(2252), + [sym_multi_line_string_literal] = STATE(2252), + [sym_raw_string_literal] = STATE(2252), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2252), + [sym__unary_expression] = STATE(2252), + [sym_postfix_expression] = STATE(2252), + [sym_constructor_expression] = STATE(2252), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2252), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2252), + [sym_prefix_expression] = STATE(2252), + [sym_as_expression] = STATE(2252), + [sym_selector_expression] = STATE(2252), + [sym__binary_expression] = STATE(2252), + [sym_multiplicative_expression] = STATE(2252), + [sym_additive_expression] = STATE(2252), + [sym_range_expression] = STATE(2252), + [sym_infix_expression] = STATE(2252), + [sym_nil_coalescing_expression] = STATE(2252), + [sym_check_expression] = STATE(2252), + [sym_comparison_expression] = STATE(2252), + [sym_equality_expression] = STATE(2252), + [sym_conjunction_expression] = STATE(2252), + [sym_disjunction_expression] = STATE(2252), + [sym_bitwise_operation] = STATE(2252), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2252), + [sym_await_expression] = STATE(2252), + [sym_ternary_expression] = STATE(2252), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2252), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2252), + [sym_dictionary_literal] = STATE(2252), + [sym__special_literal] = STATE(2252), + [sym__playground_literal] = STATE(2252), + [sym_lambda_literal] = STATE(2252), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2252), + [sym_key_path_expression] = STATE(2252), + [sym_key_path_string_expression] = STATE(2252), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2252), + [sym__comparison_operator] = STATE(2252), + [sym__additive_operator] = STATE(2252), + [sym__multiplicative_operator] = STATE(2252), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2252), + [sym__referenceable_operator] = STATE(2252), + [sym__eq_eq] = STATE(2252), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3035), + [sym_real_literal] = ACTIONS(3037), + [sym_integer_literal] = ACTIONS(3035), + [sym_hex_literal] = ACTIONS(3037), + [sym_oct_literal] = ACTIONS(3037), + [sym_bin_literal] = ACTIONS(3037), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3035), + [anon_sym_GT] = ACTIONS(3035), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3035), + [anon_sym_POUNDfileID] = ACTIONS(3037), + [anon_sym_POUNDfilePath] = ACTIONS(3037), + [anon_sym_POUNDline] = ACTIONS(3037), + [anon_sym_POUNDcolumn] = ACTIONS(3037), + [anon_sym_POUNDfunction] = ACTIONS(3037), + [anon_sym_POUNDdsohandle] = ACTIONS(3037), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3035), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3035), + [anon_sym_SLASH] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3037), + [sym__plus_then_ws] = ACTIONS(3037), + [sym__minus_then_ws] = ACTIONS(3037), + [sym_bang] = ACTIONS(833), + }, + [727] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1664), + [sym_boolean_literal] = STATE(1664), + [sym__string_literal] = STATE(1664), + [sym_line_string_literal] = STATE(1664), + [sym_multi_line_string_literal] = STATE(1664), + [sym_raw_string_literal] = STATE(1664), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1664), + [sym__unary_expression] = STATE(1664), + [sym_postfix_expression] = STATE(1664), + [sym_constructor_expression] = STATE(1664), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1664), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1664), + [sym_prefix_expression] = STATE(1664), + [sym_as_expression] = STATE(1664), + [sym_selector_expression] = STATE(1664), + [sym__binary_expression] = STATE(1664), + [sym_multiplicative_expression] = STATE(1664), + [sym_additive_expression] = STATE(1664), + [sym_range_expression] = STATE(1664), + [sym_infix_expression] = STATE(1664), + [sym_nil_coalescing_expression] = STATE(1664), + [sym_check_expression] = STATE(1664), + [sym_comparison_expression] = STATE(1664), + [sym_equality_expression] = STATE(1664), + [sym_conjunction_expression] = STATE(1664), + [sym_disjunction_expression] = STATE(1664), + [sym_bitwise_operation] = STATE(1664), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1664), + [sym_await_expression] = STATE(1664), + [sym_ternary_expression] = STATE(1664), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1664), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1664), + [sym_dictionary_literal] = STATE(1664), + [sym__special_literal] = STATE(1664), + [sym__playground_literal] = STATE(1664), + [sym_lambda_literal] = STATE(1664), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1664), + [sym_key_path_expression] = STATE(1664), + [sym_key_path_string_expression] = STATE(1664), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1664), + [sym__comparison_operator] = STATE(1664), + [sym__additive_operator] = STATE(1664), + [sym__multiplicative_operator] = STATE(1664), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1664), + [sym__referenceable_operator] = STATE(1664), + [sym__eq_eq] = STATE(1664), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3039), + [sym_real_literal] = ACTIONS(3041), + [sym_integer_literal] = ACTIONS(3039), + [sym_hex_literal] = ACTIONS(3041), + [sym_oct_literal] = ACTIONS(3041), + [sym_bin_literal] = ACTIONS(3041), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3039), + [anon_sym_GT] = ACTIONS(3039), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3039), + [anon_sym_POUNDfileID] = ACTIONS(3041), + [anon_sym_POUNDfilePath] = ACTIONS(3041), + [anon_sym_POUNDline] = ACTIONS(3041), + [anon_sym_POUNDcolumn] = ACTIONS(3041), + [anon_sym_POUNDfunction] = ACTIONS(3041), + [anon_sym_POUNDdsohandle] = ACTIONS(3041), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3039), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3039), + [anon_sym_SLASH] = ACTIONS(3039), + [anon_sym_PERCENT] = ACTIONS(3039), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3041), + [sym__plus_then_ws] = ACTIONS(3041), + [sym__minus_then_ws] = ACTIONS(3041), + [sym_bang] = ACTIONS(1069), + }, + [728] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1663), + [sym_boolean_literal] = STATE(1663), + [sym__string_literal] = STATE(1663), + [sym_line_string_literal] = STATE(1663), + [sym_multi_line_string_literal] = STATE(1663), + [sym_raw_string_literal] = STATE(1663), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1663), + [sym__unary_expression] = STATE(1663), + [sym_postfix_expression] = STATE(1663), + [sym_constructor_expression] = STATE(1663), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1663), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1663), + [sym_prefix_expression] = STATE(1663), + [sym_as_expression] = STATE(1663), + [sym_selector_expression] = STATE(1663), + [sym__binary_expression] = STATE(1663), + [sym_multiplicative_expression] = STATE(1663), + [sym_additive_expression] = STATE(1663), + [sym_range_expression] = STATE(1663), + [sym_infix_expression] = STATE(1663), + [sym_nil_coalescing_expression] = STATE(1663), + [sym_check_expression] = STATE(1663), + [sym_comparison_expression] = STATE(1663), + [sym_equality_expression] = STATE(1663), + [sym_conjunction_expression] = STATE(1663), + [sym_disjunction_expression] = STATE(1663), + [sym_bitwise_operation] = STATE(1663), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1663), + [sym_await_expression] = STATE(1663), + [sym_ternary_expression] = STATE(1663), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1663), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1663), + [sym_dictionary_literal] = STATE(1663), + [sym__special_literal] = STATE(1663), + [sym__playground_literal] = STATE(1663), + [sym_lambda_literal] = STATE(1663), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1663), + [sym_key_path_expression] = STATE(1663), + [sym_key_path_string_expression] = STATE(1663), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1663), + [sym__comparison_operator] = STATE(1663), + [sym__additive_operator] = STATE(1663), + [sym__multiplicative_operator] = STATE(1663), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1663), + [sym__referenceable_operator] = STATE(1663), + [sym__eq_eq] = STATE(1663), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3043), + [sym_real_literal] = ACTIONS(3045), + [sym_integer_literal] = ACTIONS(3043), + [sym_hex_literal] = ACTIONS(3045), + [sym_oct_literal] = ACTIONS(3045), + [sym_bin_literal] = ACTIONS(3045), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3043), + [anon_sym_GT] = ACTIONS(3043), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3043), + [anon_sym_POUNDfileID] = ACTIONS(3045), + [anon_sym_POUNDfilePath] = ACTIONS(3045), + [anon_sym_POUNDline] = ACTIONS(3045), + [anon_sym_POUNDcolumn] = ACTIONS(3045), + [anon_sym_POUNDfunction] = ACTIONS(3045), + [anon_sym_POUNDdsohandle] = ACTIONS(3045), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_SLASH] = ACTIONS(3043), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3045), + [sym__plus_then_ws] = ACTIONS(3045), + [sym__minus_then_ws] = ACTIONS(3045), + [sym_bang] = ACTIONS(833), + }, + [729] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1923), + [sym_boolean_literal] = STATE(1923), + [sym__string_literal] = STATE(1923), + [sym_line_string_literal] = STATE(1923), + [sym_multi_line_string_literal] = STATE(1923), + [sym_raw_string_literal] = STATE(1923), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1923), + [sym__unary_expression] = STATE(1923), + [sym_postfix_expression] = STATE(1923), + [sym_constructor_expression] = STATE(1923), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1923), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1923), + [sym_prefix_expression] = STATE(1923), + [sym_as_expression] = STATE(1923), + [sym_selector_expression] = STATE(1923), + [sym__binary_expression] = STATE(1923), + [sym_multiplicative_expression] = STATE(1923), + [sym_additive_expression] = STATE(1923), + [sym_range_expression] = STATE(1923), + [sym_infix_expression] = STATE(1923), + [sym_nil_coalescing_expression] = STATE(1923), + [sym_check_expression] = STATE(1923), + [sym_comparison_expression] = STATE(1923), + [sym_equality_expression] = STATE(1923), + [sym_conjunction_expression] = STATE(1923), + [sym_disjunction_expression] = STATE(1923), + [sym_bitwise_operation] = STATE(1923), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1923), + [sym_await_expression] = STATE(1923), + [sym_ternary_expression] = STATE(1923), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1923), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1923), + [sym_dictionary_literal] = STATE(1923), + [sym__special_literal] = STATE(1923), + [sym__playground_literal] = STATE(1923), + [sym_lambda_literal] = STATE(1923), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1923), + [sym_key_path_expression] = STATE(1923), + [sym_key_path_string_expression] = STATE(1923), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1923), + [sym__comparison_operator] = STATE(1923), + [sym__additive_operator] = STATE(1923), + [sym__multiplicative_operator] = STATE(1923), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1923), + [sym__referenceable_operator] = STATE(1923), + [sym__eq_eq] = STATE(1923), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3047), + [sym_real_literal] = ACTIONS(3049), + [sym_integer_literal] = ACTIONS(3047), + [sym_hex_literal] = ACTIONS(3049), + [sym_oct_literal] = ACTIONS(3049), + [sym_bin_literal] = ACTIONS(3049), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3047), + [anon_sym_GT] = ACTIONS(3047), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3047), + [anon_sym_POUNDfileID] = ACTIONS(3049), + [anon_sym_POUNDfilePath] = ACTIONS(3049), + [anon_sym_POUNDline] = ACTIONS(3049), + [anon_sym_POUNDcolumn] = ACTIONS(3049), + [anon_sym_POUNDfunction] = ACTIONS(3049), + [anon_sym_POUNDdsohandle] = ACTIONS(3049), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3047), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_SLASH] = ACTIONS(3047), + [anon_sym_PERCENT] = ACTIONS(3047), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3049), + [sym__plus_then_ws] = ACTIONS(3049), + [sym__minus_then_ws] = ACTIONS(3049), + [sym_bang] = ACTIONS(1069), + }, + [730] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1521), + [sym_boolean_literal] = STATE(1521), + [sym__string_literal] = STATE(1521), + [sym_line_string_literal] = STATE(1521), + [sym_multi_line_string_literal] = STATE(1521), + [sym_raw_string_literal] = STATE(1521), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1521), + [sym__unary_expression] = STATE(1521), + [sym_postfix_expression] = STATE(1521), + [sym_constructor_expression] = STATE(1521), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1521), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1521), + [sym_prefix_expression] = STATE(1521), + [sym_as_expression] = STATE(1521), + [sym_selector_expression] = STATE(1521), + [sym__binary_expression] = STATE(1521), + [sym_multiplicative_expression] = STATE(1521), + [sym_additive_expression] = STATE(1521), + [sym_range_expression] = STATE(1521), + [sym_infix_expression] = STATE(1521), + [sym_nil_coalescing_expression] = STATE(1521), + [sym_check_expression] = STATE(1521), + [sym_comparison_expression] = STATE(1521), + [sym_equality_expression] = STATE(1521), + [sym_conjunction_expression] = STATE(1521), + [sym_disjunction_expression] = STATE(1521), + [sym_bitwise_operation] = STATE(1521), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1521), + [sym_await_expression] = STATE(1521), + [sym_ternary_expression] = STATE(1521), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1521), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1521), + [sym_dictionary_literal] = STATE(1521), + [sym__special_literal] = STATE(1521), + [sym__playground_literal] = STATE(1521), + [sym_lambda_literal] = STATE(1521), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1521), + [sym_key_path_expression] = STATE(1521), + [sym_key_path_string_expression] = STATE(1521), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1521), + [sym__comparison_operator] = STATE(1521), + [sym__additive_operator] = STATE(1521), + [sym__multiplicative_operator] = STATE(1521), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1521), + [sym__referenceable_operator] = STATE(1521), + [sym__eq_eq] = STATE(1521), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3051), + [sym_real_literal] = ACTIONS(3053), + [sym_integer_literal] = ACTIONS(3051), + [sym_hex_literal] = ACTIONS(3053), + [sym_oct_literal] = ACTIONS(3053), + [sym_bin_literal] = ACTIONS(3053), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3051), + [anon_sym_GT] = ACTIONS(3051), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3051), + [anon_sym_POUNDfileID] = ACTIONS(3053), + [anon_sym_POUNDfilePath] = ACTIONS(3053), + [anon_sym_POUNDline] = ACTIONS(3053), + [anon_sym_POUNDcolumn] = ACTIONS(3053), + [anon_sym_POUNDfunction] = ACTIONS(3053), + [anon_sym_POUNDdsohandle] = ACTIONS(3053), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3051), + [anon_sym_LT_EQ] = ACTIONS(3051), + [anon_sym_GT_EQ] = ACTIONS(3051), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_SLASH] = ACTIONS(3051), + [anon_sym_PERCENT] = ACTIONS(3051), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3053), + [sym__plus_then_ws] = ACTIONS(3053), + [sym__minus_then_ws] = ACTIONS(3053), + [sym_bang] = ACTIONS(1069), + }, + [731] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2106), + [sym_boolean_literal] = STATE(2106), + [sym__string_literal] = STATE(2106), + [sym_line_string_literal] = STATE(2106), + [sym_multi_line_string_literal] = STATE(2106), + [sym_raw_string_literal] = STATE(2106), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2106), + [sym__unary_expression] = STATE(2106), + [sym_postfix_expression] = STATE(2106), + [sym_constructor_expression] = STATE(2106), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2106), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2106), + [sym_prefix_expression] = STATE(2106), + [sym_as_expression] = STATE(2106), + [sym_selector_expression] = STATE(2106), + [sym__binary_expression] = STATE(2106), + [sym_multiplicative_expression] = STATE(2106), + [sym_additive_expression] = STATE(2106), + [sym_range_expression] = STATE(2106), + [sym_infix_expression] = STATE(2106), + [sym_nil_coalescing_expression] = STATE(2106), + [sym_check_expression] = STATE(2106), + [sym_comparison_expression] = STATE(2106), + [sym_equality_expression] = STATE(2106), + [sym_conjunction_expression] = STATE(2106), + [sym_disjunction_expression] = STATE(2106), + [sym_bitwise_operation] = STATE(2106), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2106), + [sym_await_expression] = STATE(2106), + [sym_ternary_expression] = STATE(2106), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2106), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2106), + [sym_dictionary_literal] = STATE(2106), + [sym__special_literal] = STATE(2106), + [sym__playground_literal] = STATE(2106), + [sym_lambda_literal] = STATE(2106), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2106), + [sym_key_path_expression] = STATE(2106), + [sym_key_path_string_expression] = STATE(2106), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2106), + [sym__comparison_operator] = STATE(2106), + [sym__additive_operator] = STATE(2106), + [sym__multiplicative_operator] = STATE(2106), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2106), + [sym__referenceable_operator] = STATE(2106), + [sym__eq_eq] = STATE(2106), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3055), + [sym_real_literal] = ACTIONS(3057), + [sym_integer_literal] = ACTIONS(3055), + [sym_hex_literal] = ACTIONS(3057), + [sym_oct_literal] = ACTIONS(3057), + [sym_bin_literal] = ACTIONS(3057), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3055), + [anon_sym_GT] = ACTIONS(3055), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3055), + [anon_sym_POUNDfileID] = ACTIONS(3057), + [anon_sym_POUNDfilePath] = ACTIONS(3057), + [anon_sym_POUNDline] = ACTIONS(3057), + [anon_sym_POUNDcolumn] = ACTIONS(3057), + [anon_sym_POUNDfunction] = ACTIONS(3057), + [anon_sym_POUNDdsohandle] = ACTIONS(3057), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3055), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3055), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3055), + [anon_sym_LT_EQ] = ACTIONS(3055), + [anon_sym_GT_EQ] = ACTIONS(3055), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3055), + [anon_sym_SLASH] = ACTIONS(3055), + [anon_sym_PERCENT] = ACTIONS(3055), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3057), + [sym__plus_then_ws] = ACTIONS(3057), + [sym__minus_then_ws] = ACTIONS(3057), + [sym_bang] = ACTIONS(1069), + }, + [732] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2105), + [sym_boolean_literal] = STATE(2105), + [sym__string_literal] = STATE(2105), + [sym_line_string_literal] = STATE(2105), + [sym_multi_line_string_literal] = STATE(2105), + [sym_raw_string_literal] = STATE(2105), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2105), + [sym__unary_expression] = STATE(2105), + [sym_postfix_expression] = STATE(2105), + [sym_constructor_expression] = STATE(2105), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2105), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2105), + [sym_prefix_expression] = STATE(2105), + [sym_as_expression] = STATE(2105), + [sym_selector_expression] = STATE(2105), + [sym__binary_expression] = STATE(2105), + [sym_multiplicative_expression] = STATE(2105), + [sym_additive_expression] = STATE(2105), + [sym_range_expression] = STATE(2105), + [sym_infix_expression] = STATE(2105), + [sym_nil_coalescing_expression] = STATE(2105), + [sym_check_expression] = STATE(2105), + [sym_comparison_expression] = STATE(2105), + [sym_equality_expression] = STATE(2105), + [sym_conjunction_expression] = STATE(2105), + [sym_disjunction_expression] = STATE(2105), + [sym_bitwise_operation] = STATE(2105), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2105), + [sym_await_expression] = STATE(2105), + [sym_ternary_expression] = STATE(2105), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2105), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2105), + [sym_dictionary_literal] = STATE(2105), + [sym__special_literal] = STATE(2105), + [sym__playground_literal] = STATE(2105), + [sym_lambda_literal] = STATE(2105), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2105), + [sym_key_path_expression] = STATE(2105), + [sym_key_path_string_expression] = STATE(2105), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2105), + [sym__comparison_operator] = STATE(2105), + [sym__additive_operator] = STATE(2105), + [sym__multiplicative_operator] = STATE(2105), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2105), + [sym__referenceable_operator] = STATE(2105), + [sym__eq_eq] = STATE(2105), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3059), + [sym_real_literal] = ACTIONS(3061), + [sym_integer_literal] = ACTIONS(3059), + [sym_hex_literal] = ACTIONS(3061), + [sym_oct_literal] = ACTIONS(3061), + [sym_bin_literal] = ACTIONS(3061), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3059), + [anon_sym_GT] = ACTIONS(3059), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3059), + [anon_sym_POUNDfileID] = ACTIONS(3061), + [anon_sym_POUNDfilePath] = ACTIONS(3061), + [anon_sym_POUNDline] = ACTIONS(3061), + [anon_sym_POUNDcolumn] = ACTIONS(3061), + [anon_sym_POUNDfunction] = ACTIONS(3061), + [anon_sym_POUNDdsohandle] = ACTIONS(3061), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3059), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_SLASH] = ACTIONS(3059), + [anon_sym_PERCENT] = ACTIONS(3059), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3061), + [sym__plus_then_ws] = ACTIONS(3061), + [sym__minus_then_ws] = ACTIONS(3061), + [sym_bang] = ACTIONS(1069), + }, + [733] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2104), + [sym_boolean_literal] = STATE(2104), + [sym__string_literal] = STATE(2104), + [sym_line_string_literal] = STATE(2104), + [sym_multi_line_string_literal] = STATE(2104), + [sym_raw_string_literal] = STATE(2104), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2104), + [sym__unary_expression] = STATE(2104), + [sym_postfix_expression] = STATE(2104), + [sym_constructor_expression] = STATE(2104), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2104), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2104), + [sym_prefix_expression] = STATE(2104), + [sym_as_expression] = STATE(2104), + [sym_selector_expression] = STATE(2104), + [sym__binary_expression] = STATE(2104), + [sym_multiplicative_expression] = STATE(2104), + [sym_additive_expression] = STATE(2104), + [sym_range_expression] = STATE(2104), + [sym_infix_expression] = STATE(2104), + [sym_nil_coalescing_expression] = STATE(2104), + [sym_check_expression] = STATE(2104), + [sym_comparison_expression] = STATE(2104), + [sym_equality_expression] = STATE(2104), + [sym_conjunction_expression] = STATE(2104), + [sym_disjunction_expression] = STATE(2104), + [sym_bitwise_operation] = STATE(2104), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2104), + [sym_await_expression] = STATE(2104), + [sym_ternary_expression] = STATE(2104), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2104), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2104), + [sym_dictionary_literal] = STATE(2104), + [sym__special_literal] = STATE(2104), + [sym__playground_literal] = STATE(2104), + [sym_lambda_literal] = STATE(2104), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2104), + [sym_key_path_expression] = STATE(2104), + [sym_key_path_string_expression] = STATE(2104), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2104), + [sym__comparison_operator] = STATE(2104), + [sym__additive_operator] = STATE(2104), + [sym__multiplicative_operator] = STATE(2104), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2104), + [sym__referenceable_operator] = STATE(2104), + [sym__eq_eq] = STATE(2104), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3063), + [sym_real_literal] = ACTIONS(3065), + [sym_integer_literal] = ACTIONS(3063), + [sym_hex_literal] = ACTIONS(3065), + [sym_oct_literal] = ACTIONS(3065), + [sym_bin_literal] = ACTIONS(3065), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3063), + [anon_sym_GT] = ACTIONS(3063), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3063), + [anon_sym_POUNDfileID] = ACTIONS(3065), + [anon_sym_POUNDfilePath] = ACTIONS(3065), + [anon_sym_POUNDline] = ACTIONS(3065), + [anon_sym_POUNDcolumn] = ACTIONS(3065), + [anon_sym_POUNDfunction] = ACTIONS(3065), + [anon_sym_POUNDdsohandle] = ACTIONS(3065), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3063), + [anon_sym_SLASH] = ACTIONS(3063), + [anon_sym_PERCENT] = ACTIONS(3063), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3065), + [sym__plus_then_ws] = ACTIONS(3065), + [sym__minus_then_ws] = ACTIONS(3065), + [sym_bang] = ACTIONS(1069), + }, + [734] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1917), + [sym_boolean_literal] = STATE(1917), + [sym__string_literal] = STATE(1917), + [sym_line_string_literal] = STATE(1917), + [sym_multi_line_string_literal] = STATE(1917), + [sym_raw_string_literal] = STATE(1917), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1917), + [sym__unary_expression] = STATE(1917), + [sym_postfix_expression] = STATE(1917), + [sym_constructor_expression] = STATE(1917), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1917), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1917), + [sym_prefix_expression] = STATE(1917), + [sym_as_expression] = STATE(1917), + [sym_selector_expression] = STATE(1917), + [sym__binary_expression] = STATE(1917), + [sym_multiplicative_expression] = STATE(1917), + [sym_additive_expression] = STATE(1917), + [sym_range_expression] = STATE(1917), + [sym_infix_expression] = STATE(1917), + [sym_nil_coalescing_expression] = STATE(1917), + [sym_check_expression] = STATE(1917), + [sym_comparison_expression] = STATE(1917), + [sym_equality_expression] = STATE(1917), + [sym_conjunction_expression] = STATE(1917), + [sym_disjunction_expression] = STATE(1917), + [sym_bitwise_operation] = STATE(1917), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1917), + [sym_await_expression] = STATE(1917), + [sym_ternary_expression] = STATE(1917), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1917), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1917), + [sym_dictionary_literal] = STATE(1917), + [sym__special_literal] = STATE(1917), + [sym__playground_literal] = STATE(1917), + [sym_lambda_literal] = STATE(1917), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1917), + [sym_key_path_expression] = STATE(1917), + [sym_key_path_string_expression] = STATE(1917), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1917), + [sym__comparison_operator] = STATE(1917), + [sym__additive_operator] = STATE(1917), + [sym__multiplicative_operator] = STATE(1917), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1917), + [sym__referenceable_operator] = STATE(1917), + [sym__eq_eq] = STATE(1917), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3069), + [sym_integer_literal] = ACTIONS(3067), + [sym_hex_literal] = ACTIONS(3069), + [sym_oct_literal] = ACTIONS(3069), + [sym_bin_literal] = ACTIONS(3069), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3067), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3067), + [anon_sym_POUNDfileID] = ACTIONS(3069), + [anon_sym_POUNDfilePath] = ACTIONS(3069), + [anon_sym_POUNDline] = ACTIONS(3069), + [anon_sym_POUNDcolumn] = ACTIONS(3069), + [anon_sym_POUNDfunction] = ACTIONS(3069), + [anon_sym_POUNDdsohandle] = ACTIONS(3069), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3067), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_SLASH] = ACTIONS(3067), + [anon_sym_PERCENT] = ACTIONS(3067), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3069), + [sym__plus_then_ws] = ACTIONS(3069), + [sym__minus_then_ws] = ACTIONS(3069), + [sym_bang] = ACTIONS(1069), + }, + [735] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2188), + [sym_boolean_literal] = STATE(2188), + [sym__string_literal] = STATE(2188), + [sym_line_string_literal] = STATE(2188), + [sym_multi_line_string_literal] = STATE(2188), + [sym_raw_string_literal] = STATE(2188), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2188), + [sym__unary_expression] = STATE(2188), + [sym_postfix_expression] = STATE(2188), + [sym_constructor_expression] = STATE(2188), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2188), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2188), + [sym_prefix_expression] = STATE(2188), + [sym_as_expression] = STATE(2188), + [sym_selector_expression] = STATE(2188), + [sym__binary_expression] = STATE(2188), + [sym_multiplicative_expression] = STATE(2188), + [sym_additive_expression] = STATE(2188), + [sym_range_expression] = STATE(2188), + [sym_infix_expression] = STATE(2188), + [sym_nil_coalescing_expression] = STATE(2188), + [sym_check_expression] = STATE(2188), + [sym_comparison_expression] = STATE(2188), + [sym_equality_expression] = STATE(2188), + [sym_conjunction_expression] = STATE(2188), + [sym_disjunction_expression] = STATE(2188), + [sym_bitwise_operation] = STATE(2188), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2188), + [sym_await_expression] = STATE(2188), + [sym_ternary_expression] = STATE(2188), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2188), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2188), + [sym_dictionary_literal] = STATE(2188), + [sym__special_literal] = STATE(2188), + [sym__playground_literal] = STATE(2188), + [sym_lambda_literal] = STATE(2188), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2188), + [sym_key_path_expression] = STATE(2188), + [sym_key_path_string_expression] = STATE(2188), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2188), + [sym__comparison_operator] = STATE(2188), + [sym__additive_operator] = STATE(2188), + [sym__multiplicative_operator] = STATE(2188), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(2188), + [sym__referenceable_operator] = STATE(2188), + [sym__eq_eq] = STATE(2188), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(3071), + [sym_real_literal] = ACTIONS(3073), + [sym_integer_literal] = ACTIONS(3071), + [sym_hex_literal] = ACTIONS(3073), + [sym_oct_literal] = ACTIONS(3073), + [sym_bin_literal] = ACTIONS(3073), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3071), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(3071), + [anon_sym_POUNDfileID] = ACTIONS(3073), + [anon_sym_POUNDfilePath] = ACTIONS(3073), + [anon_sym_POUNDline] = ACTIONS(3073), + [anon_sym_POUNDcolumn] = ACTIONS(3073), + [anon_sym_POUNDfunction] = ACTIONS(3073), + [anon_sym_POUNDdsohandle] = ACTIONS(3073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [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_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_SLASH] = ACTIONS(3071), + [anon_sym_PERCENT] = ACTIONS(3071), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(3073), + [sym__plus_then_ws] = ACTIONS(3073), + [sym__minus_then_ws] = ACTIONS(3073), + [sym_bang] = ACTIONS(137), + }, + [736] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym__string_literal] = STATE(1522), + [sym_line_string_literal] = STATE(1522), + [sym_multi_line_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1522), + [sym__unary_expression] = STATE(1522), + [sym_postfix_expression] = STATE(1522), + [sym_constructor_expression] = STATE(1522), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1522), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1522), + [sym_prefix_expression] = STATE(1522), + [sym_as_expression] = STATE(1522), + [sym_selector_expression] = STATE(1522), + [sym__binary_expression] = STATE(1522), + [sym_multiplicative_expression] = STATE(1522), + [sym_additive_expression] = STATE(1522), + [sym_range_expression] = STATE(1522), + [sym_infix_expression] = STATE(1522), + [sym_nil_coalescing_expression] = STATE(1522), + [sym_check_expression] = STATE(1522), + [sym_comparison_expression] = STATE(1522), + [sym_equality_expression] = STATE(1522), + [sym_conjunction_expression] = STATE(1522), + [sym_disjunction_expression] = STATE(1522), + [sym_bitwise_operation] = STATE(1522), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1522), + [sym_await_expression] = STATE(1522), + [sym_ternary_expression] = STATE(1522), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1522), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1522), + [sym_dictionary_literal] = STATE(1522), + [sym__special_literal] = STATE(1522), + [sym__playground_literal] = STATE(1522), + [sym_lambda_literal] = STATE(1522), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1522), + [sym_key_path_expression] = STATE(1522), + [sym_key_path_string_expression] = STATE(1522), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1522), + [sym__comparison_operator] = STATE(1522), + [sym__additive_operator] = STATE(1522), + [sym__multiplicative_operator] = STATE(1522), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1522), + [sym__referenceable_operator] = STATE(1522), + [sym__eq_eq] = STATE(1522), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3075), + [sym_real_literal] = ACTIONS(3077), + [sym_integer_literal] = ACTIONS(3075), + [sym_hex_literal] = ACTIONS(3077), + [sym_oct_literal] = ACTIONS(3077), + [sym_bin_literal] = ACTIONS(3077), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3075), + [anon_sym_GT] = ACTIONS(3075), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3075), + [anon_sym_POUNDfileID] = ACTIONS(3077), + [anon_sym_POUNDfilePath] = ACTIONS(3077), + [anon_sym_POUNDline] = ACTIONS(3077), + [anon_sym_POUNDcolumn] = ACTIONS(3077), + [anon_sym_POUNDfunction] = ACTIONS(3077), + [anon_sym_POUNDdsohandle] = ACTIONS(3077), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3075), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3075), + [anon_sym_SLASH] = ACTIONS(3075), + [anon_sym_PERCENT] = ACTIONS(3075), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3077), + [sym__plus_then_ws] = ACTIONS(3077), + [sym__minus_then_ws] = ACTIONS(3077), + [sym_bang] = ACTIONS(1069), + }, + [737] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1524), + [sym_boolean_literal] = STATE(1524), + [sym__string_literal] = STATE(1524), + [sym_line_string_literal] = STATE(1524), + [sym_multi_line_string_literal] = STATE(1524), + [sym_raw_string_literal] = STATE(1524), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1524), + [sym__unary_expression] = STATE(1524), + [sym_postfix_expression] = STATE(1524), + [sym_constructor_expression] = STATE(1524), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1524), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1524), + [sym_prefix_expression] = STATE(1524), + [sym_as_expression] = STATE(1524), + [sym_selector_expression] = STATE(1524), + [sym__binary_expression] = STATE(1524), + [sym_multiplicative_expression] = STATE(1524), + [sym_additive_expression] = STATE(1524), + [sym_range_expression] = STATE(1524), + [sym_infix_expression] = STATE(1524), + [sym_nil_coalescing_expression] = STATE(1524), + [sym_check_expression] = STATE(1524), + [sym_comparison_expression] = STATE(1524), + [sym_equality_expression] = STATE(1524), + [sym_conjunction_expression] = STATE(1524), + [sym_disjunction_expression] = STATE(1524), + [sym_bitwise_operation] = STATE(1524), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1524), + [sym_await_expression] = STATE(1524), + [sym_ternary_expression] = STATE(1524), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1524), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1524), + [sym_dictionary_literal] = STATE(1524), + [sym__special_literal] = STATE(1524), + [sym__playground_literal] = STATE(1524), + [sym_lambda_literal] = STATE(1524), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1524), + [sym_key_path_expression] = STATE(1524), + [sym_key_path_string_expression] = STATE(1524), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1524), + [sym__comparison_operator] = STATE(1524), + [sym__additive_operator] = STATE(1524), + [sym__multiplicative_operator] = STATE(1524), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1524), + [sym__referenceable_operator] = STATE(1524), + [sym__eq_eq] = STATE(1524), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3079), + [sym_real_literal] = ACTIONS(3081), + [sym_integer_literal] = ACTIONS(3079), + [sym_hex_literal] = ACTIONS(3081), + [sym_oct_literal] = ACTIONS(3081), + [sym_bin_literal] = ACTIONS(3081), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3079), + [anon_sym_GT] = ACTIONS(3079), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3079), + [anon_sym_POUNDfileID] = ACTIONS(3081), + [anon_sym_POUNDfilePath] = ACTIONS(3081), + [anon_sym_POUNDline] = ACTIONS(3081), + [anon_sym_POUNDcolumn] = ACTIONS(3081), + [anon_sym_POUNDfunction] = ACTIONS(3081), + [anon_sym_POUNDdsohandle] = ACTIONS(3081), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3079), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3079), + [anon_sym_SLASH] = ACTIONS(3079), + [anon_sym_PERCENT] = ACTIONS(3079), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3081), + [sym__plus_then_ws] = ACTIONS(3081), + [sym__minus_then_ws] = ACTIONS(3081), + [sym_bang] = ACTIONS(1069), + }, + [738] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1859), + [sym_boolean_literal] = STATE(1859), + [sym__string_literal] = STATE(1859), + [sym_line_string_literal] = STATE(1859), + [sym_multi_line_string_literal] = STATE(1859), + [sym_raw_string_literal] = STATE(1859), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1859), + [sym__unary_expression] = STATE(1859), + [sym_postfix_expression] = STATE(1859), + [sym_constructor_expression] = STATE(1859), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1859), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1859), + [sym_prefix_expression] = STATE(1859), + [sym_as_expression] = STATE(1859), + [sym_selector_expression] = STATE(1859), + [sym__binary_expression] = STATE(1859), + [sym_multiplicative_expression] = STATE(1859), + [sym_additive_expression] = STATE(1859), + [sym_range_expression] = STATE(1859), + [sym_infix_expression] = STATE(1859), + [sym_nil_coalescing_expression] = STATE(1859), + [sym_check_expression] = STATE(1859), + [sym_comparison_expression] = STATE(1859), + [sym_equality_expression] = STATE(1859), + [sym_conjunction_expression] = STATE(1859), + [sym_disjunction_expression] = STATE(1859), + [sym_bitwise_operation] = STATE(1859), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1859), + [sym_await_expression] = STATE(1859), + [sym_ternary_expression] = STATE(1859), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1859), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1859), + [sym_dictionary_literal] = STATE(1859), + [sym__special_literal] = STATE(1859), + [sym__playground_literal] = STATE(1859), + [sym_lambda_literal] = STATE(1859), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1859), + [sym_key_path_expression] = STATE(1859), + [sym_key_path_string_expression] = STATE(1859), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1859), + [sym__comparison_operator] = STATE(1859), + [sym__additive_operator] = STATE(1859), + [sym__multiplicative_operator] = STATE(1859), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1859), + [sym__referenceable_operator] = STATE(1859), + [sym__eq_eq] = STATE(1859), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3083), + [sym_real_literal] = ACTIONS(3085), + [sym_integer_literal] = ACTIONS(3083), + [sym_hex_literal] = ACTIONS(3085), + [sym_oct_literal] = ACTIONS(3085), + [sym_bin_literal] = ACTIONS(3085), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_GT] = ACTIONS(3083), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3083), + [anon_sym_POUNDfileID] = ACTIONS(3085), + [anon_sym_POUNDfilePath] = ACTIONS(3085), + [anon_sym_POUNDline] = ACTIONS(3085), + [anon_sym_POUNDcolumn] = ACTIONS(3085), + [anon_sym_POUNDfunction] = ACTIONS(3085), + [anon_sym_POUNDdsohandle] = ACTIONS(3085), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3083), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3083), + [anon_sym_SLASH] = ACTIONS(3083), + [anon_sym_PERCENT] = ACTIONS(3083), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3085), + [sym__plus_then_ws] = ACTIONS(3085), + [sym__minus_then_ws] = ACTIONS(3085), + [sym_bang] = ACTIONS(1069), + }, + [739] = { + [sym_simple_identifier] = STATE(2641), + [sym__basic_literal] = STATE(1632), + [sym_boolean_literal] = STATE(1632), + [sym__string_literal] = STATE(1632), + [sym_line_string_literal] = STATE(1632), + [sym_multi_line_string_literal] = STATE(1632), + [sym_raw_string_literal] = STATE(1632), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1632), + [sym__unary_expression] = STATE(1632), + [sym_postfix_expression] = STATE(1632), + [sym_constructor_expression] = STATE(1632), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1632), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1632), + [sym_prefix_expression] = STATE(1632), + [sym_as_expression] = STATE(1632), + [sym_selector_expression] = STATE(1632), + [sym__binary_expression] = STATE(1632), + [sym_multiplicative_expression] = STATE(1632), + [sym_additive_expression] = STATE(1632), + [sym_range_expression] = STATE(1632), + [sym_infix_expression] = STATE(1632), + [sym_nil_coalescing_expression] = STATE(1632), + [sym_check_expression] = STATE(1632), + [sym_comparison_expression] = STATE(1632), + [sym_equality_expression] = STATE(1632), + [sym_conjunction_expression] = STATE(1632), + [sym_disjunction_expression] = STATE(1632), + [sym_bitwise_operation] = STATE(1632), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1632), + [sym_await_expression] = STATE(1632), + [sym_ternary_expression] = STATE(1632), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1632), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1632), + [sym_dictionary_literal] = STATE(1632), + [sym__special_literal] = STATE(1632), + [sym__playground_literal] = STATE(1632), + [sym_lambda_literal] = STATE(1632), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1632), + [sym_key_path_expression] = STATE(1632), + [sym_key_path_string_expression] = STATE(1632), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1632), + [sym__comparison_operator] = STATE(1632), + [sym__additive_operator] = STATE(1632), + [sym__multiplicative_operator] = STATE(1632), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1632), + [sym__referenceable_operator] = STATE(1632), + [sym__eq_eq] = STATE(1632), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3087), + [sym_real_literal] = ACTIONS(3089), + [sym_integer_literal] = ACTIONS(3087), + [sym_hex_literal] = ACTIONS(3089), + [sym_oct_literal] = ACTIONS(3089), + [sym_bin_literal] = ACTIONS(3089), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3087), + [anon_sym_GT] = ACTIONS(3087), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3087), + [anon_sym_POUNDfileID] = ACTIONS(3089), + [anon_sym_POUNDfilePath] = ACTIONS(3089), + [anon_sym_POUNDline] = ACTIONS(3089), + [anon_sym_POUNDcolumn] = ACTIONS(3089), + [anon_sym_POUNDfunction] = ACTIONS(3089), + [anon_sym_POUNDdsohandle] = ACTIONS(3089), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3087), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_SLASH] = ACTIONS(3087), + [anon_sym_PERCENT] = ACTIONS(3087), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3089), + [sym__plus_then_ws] = ACTIONS(3089), + [sym__minus_then_ws] = ACTIONS(3089), + [sym_bang] = ACTIONS(833), + }, + [740] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1856), + [sym_boolean_literal] = STATE(1856), + [sym__string_literal] = STATE(1856), + [sym_line_string_literal] = STATE(1856), + [sym_multi_line_string_literal] = STATE(1856), + [sym_raw_string_literal] = STATE(1856), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1856), + [sym__unary_expression] = STATE(1856), + [sym_postfix_expression] = STATE(1856), + [sym_constructor_expression] = STATE(1856), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1856), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1856), + [sym_prefix_expression] = STATE(1856), + [sym_as_expression] = STATE(1856), + [sym_selector_expression] = STATE(1856), + [sym__binary_expression] = STATE(1856), + [sym_multiplicative_expression] = STATE(1856), + [sym_additive_expression] = STATE(1856), + [sym_range_expression] = STATE(1856), + [sym_infix_expression] = STATE(1856), + [sym_nil_coalescing_expression] = STATE(1856), + [sym_check_expression] = STATE(1856), + [sym_comparison_expression] = STATE(1856), + [sym_equality_expression] = STATE(1856), + [sym_conjunction_expression] = STATE(1856), + [sym_disjunction_expression] = STATE(1856), + [sym_bitwise_operation] = STATE(1856), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1856), + [sym_await_expression] = STATE(1856), + [sym_ternary_expression] = STATE(1856), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1856), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1856), + [sym_dictionary_literal] = STATE(1856), + [sym__special_literal] = STATE(1856), + [sym__playground_literal] = STATE(1856), + [sym_lambda_literal] = STATE(1856), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1856), + [sym_key_path_expression] = STATE(1856), + [sym_key_path_string_expression] = STATE(1856), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1856), + [sym__comparison_operator] = STATE(1856), + [sym__additive_operator] = STATE(1856), + [sym__multiplicative_operator] = STATE(1856), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1856), + [sym__referenceable_operator] = STATE(1856), + [sym__eq_eq] = STATE(1856), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3091), + [sym_real_literal] = ACTIONS(3093), + [sym_integer_literal] = ACTIONS(3091), + [sym_hex_literal] = ACTIONS(3093), + [sym_oct_literal] = ACTIONS(3093), + [sym_bin_literal] = ACTIONS(3093), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3091), + [anon_sym_GT] = ACTIONS(3091), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3091), + [anon_sym_POUNDfileID] = ACTIONS(3093), + [anon_sym_POUNDfilePath] = ACTIONS(3093), + [anon_sym_POUNDline] = ACTIONS(3093), + [anon_sym_POUNDcolumn] = ACTIONS(3093), + [anon_sym_POUNDfunction] = ACTIONS(3093), + [anon_sym_POUNDdsohandle] = ACTIONS(3093), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3091), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_SLASH] = ACTIONS(3091), + [anon_sym_PERCENT] = ACTIONS(3091), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3093), + [sym__plus_then_ws] = ACTIONS(3093), + [sym__minus_then_ws] = ACTIONS(3093), + [sym_bang] = ACTIONS(1069), + }, + [741] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2169), + [sym_boolean_literal] = STATE(2169), + [sym__string_literal] = STATE(2169), + [sym_line_string_literal] = STATE(2169), + [sym_multi_line_string_literal] = STATE(2169), + [sym_raw_string_literal] = STATE(2169), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2169), + [sym__unary_expression] = STATE(2169), + [sym_postfix_expression] = STATE(2169), + [sym_constructor_expression] = STATE(2169), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2169), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2169), + [sym_prefix_expression] = STATE(2169), + [sym_as_expression] = STATE(2169), + [sym_selector_expression] = STATE(2169), + [sym__binary_expression] = STATE(2169), + [sym_multiplicative_expression] = STATE(2169), + [sym_additive_expression] = STATE(2169), + [sym_range_expression] = STATE(2169), + [sym_infix_expression] = STATE(2169), + [sym_nil_coalescing_expression] = STATE(2169), + [sym_check_expression] = STATE(2169), + [sym_comparison_expression] = STATE(2169), + [sym_equality_expression] = STATE(2169), + [sym_conjunction_expression] = STATE(2169), + [sym_disjunction_expression] = STATE(2169), + [sym_bitwise_operation] = STATE(2169), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2169), + [sym_await_expression] = STATE(2169), + [sym_ternary_expression] = STATE(2169), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2169), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2169), + [sym_dictionary_literal] = STATE(2169), + [sym__special_literal] = STATE(2169), + [sym__playground_literal] = STATE(2169), + [sym_lambda_literal] = STATE(2169), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2169), + [sym_key_path_expression] = STATE(2169), + [sym_key_path_string_expression] = STATE(2169), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2169), + [sym__comparison_operator] = STATE(2169), + [sym__additive_operator] = STATE(2169), + [sym__multiplicative_operator] = STATE(2169), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2169), + [sym__referenceable_operator] = STATE(2169), + [sym__eq_eq] = STATE(2169), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3095), + [sym_real_literal] = ACTIONS(3097), + [sym_integer_literal] = ACTIONS(3095), + [sym_hex_literal] = ACTIONS(3097), + [sym_oct_literal] = ACTIONS(3097), + [sym_bin_literal] = ACTIONS(3097), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3095), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3095), + [anon_sym_POUNDfileID] = ACTIONS(3097), + [anon_sym_POUNDfilePath] = ACTIONS(3097), + [anon_sym_POUNDline] = ACTIONS(3097), + [anon_sym_POUNDcolumn] = ACTIONS(3097), + [anon_sym_POUNDfunction] = ACTIONS(3097), + [anon_sym_POUNDdsohandle] = ACTIONS(3097), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3095), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_SLASH] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3097), + [sym__plus_then_ws] = ACTIONS(3097), + [sym__minus_then_ws] = ACTIONS(3097), + [sym_bang] = ACTIONS(1069), + }, + [742] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2097), + [sym_boolean_literal] = STATE(2097), + [sym__string_literal] = STATE(2097), + [sym_line_string_literal] = STATE(2097), + [sym_multi_line_string_literal] = STATE(2097), + [sym_raw_string_literal] = STATE(2097), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2097), + [sym__unary_expression] = STATE(2097), + [sym_postfix_expression] = STATE(2097), + [sym_constructor_expression] = STATE(2097), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2097), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2097), + [sym_prefix_expression] = STATE(2097), + [sym_as_expression] = STATE(2097), + [sym_selector_expression] = STATE(2097), + [sym__binary_expression] = STATE(2097), + [sym_multiplicative_expression] = STATE(2097), + [sym_additive_expression] = STATE(2097), + [sym_range_expression] = STATE(2097), + [sym_infix_expression] = STATE(2097), + [sym_nil_coalescing_expression] = STATE(2097), + [sym_check_expression] = STATE(2097), + [sym_comparison_expression] = STATE(2097), + [sym_equality_expression] = STATE(2097), + [sym_conjunction_expression] = STATE(2097), + [sym_disjunction_expression] = STATE(2097), + [sym_bitwise_operation] = STATE(2097), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2097), + [sym_await_expression] = STATE(2097), + [sym_ternary_expression] = STATE(2097), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2097), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2097), + [sym_dictionary_literal] = STATE(2097), + [sym__special_literal] = STATE(2097), + [sym__playground_literal] = STATE(2097), + [sym_lambda_literal] = STATE(2097), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2097), + [sym_key_path_expression] = STATE(2097), + [sym_key_path_string_expression] = STATE(2097), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2097), + [sym__comparison_operator] = STATE(2097), + [sym__additive_operator] = STATE(2097), + [sym__multiplicative_operator] = STATE(2097), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2097), + [sym__referenceable_operator] = STATE(2097), + [sym__eq_eq] = STATE(2097), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3099), + [sym_real_literal] = ACTIONS(3101), + [sym_integer_literal] = ACTIONS(3099), + [sym_hex_literal] = ACTIONS(3101), + [sym_oct_literal] = ACTIONS(3101), + [sym_bin_literal] = ACTIONS(3101), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3099), + [anon_sym_GT] = ACTIONS(3099), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3099), + [anon_sym_POUNDfileID] = ACTIONS(3101), + [anon_sym_POUNDfilePath] = ACTIONS(3101), + [anon_sym_POUNDline] = ACTIONS(3101), + [anon_sym_POUNDcolumn] = ACTIONS(3101), + [anon_sym_POUNDfunction] = ACTIONS(3101), + [anon_sym_POUNDdsohandle] = ACTIONS(3101), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3099), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3099), + [anon_sym_PERCENT] = ACTIONS(3099), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3101), + [sym__plus_then_ws] = ACTIONS(3101), + [sym__minus_then_ws] = ACTIONS(3101), + [sym_bang] = ACTIONS(1069), + }, + [743] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2103), + [sym_boolean_literal] = STATE(2103), + [sym__string_literal] = STATE(2103), + [sym_line_string_literal] = STATE(2103), + [sym_multi_line_string_literal] = STATE(2103), + [sym_raw_string_literal] = STATE(2103), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2103), + [sym__unary_expression] = STATE(2103), + [sym_postfix_expression] = STATE(2103), + [sym_constructor_expression] = STATE(2103), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2103), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2103), + [sym_prefix_expression] = STATE(2103), + [sym_as_expression] = STATE(2103), + [sym_selector_expression] = STATE(2103), + [sym__binary_expression] = STATE(2103), + [sym_multiplicative_expression] = STATE(2103), + [sym_additive_expression] = STATE(2103), + [sym_range_expression] = STATE(2103), + [sym_infix_expression] = STATE(2103), + [sym_nil_coalescing_expression] = STATE(2103), + [sym_check_expression] = STATE(2103), + [sym_comparison_expression] = STATE(2103), + [sym_equality_expression] = STATE(2103), + [sym_conjunction_expression] = STATE(2103), + [sym_disjunction_expression] = STATE(2103), + [sym_bitwise_operation] = STATE(2103), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2103), + [sym_await_expression] = STATE(2103), + [sym_ternary_expression] = STATE(2103), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2103), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2103), + [sym_dictionary_literal] = STATE(2103), + [sym__special_literal] = STATE(2103), + [sym__playground_literal] = STATE(2103), + [sym_lambda_literal] = STATE(2103), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2103), + [sym_key_path_expression] = STATE(2103), + [sym_key_path_string_expression] = STATE(2103), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2103), + [sym__comparison_operator] = STATE(2103), + [sym__additive_operator] = STATE(2103), + [sym__multiplicative_operator] = STATE(2103), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2103), + [sym__referenceable_operator] = STATE(2103), + [sym__eq_eq] = STATE(2103), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3103), + [sym_real_literal] = ACTIONS(3105), + [sym_integer_literal] = ACTIONS(3103), + [sym_hex_literal] = ACTIONS(3105), + [sym_oct_literal] = ACTIONS(3105), + [sym_bin_literal] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3103), + [anon_sym_GT] = ACTIONS(3103), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3103), + [anon_sym_POUNDfileID] = ACTIONS(3105), + [anon_sym_POUNDfilePath] = ACTIONS(3105), + [anon_sym_POUNDline] = ACTIONS(3105), + [anon_sym_POUNDcolumn] = ACTIONS(3105), + [anon_sym_POUNDfunction] = ACTIONS(3105), + [anon_sym_POUNDdsohandle] = ACTIONS(3105), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3103), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_SLASH] = ACTIONS(3103), + [anon_sym_PERCENT] = ACTIONS(3103), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3105), + [sym__plus_then_ws] = ACTIONS(3105), + [sym__minus_then_ws] = ACTIONS(3105), + [sym_bang] = ACTIONS(1069), + }, + [744] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1873), + [sym_boolean_literal] = STATE(1873), + [sym__string_literal] = STATE(1873), + [sym_line_string_literal] = STATE(1873), + [sym_multi_line_string_literal] = STATE(1873), + [sym_raw_string_literal] = STATE(1873), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1873), + [sym__unary_expression] = STATE(1873), + [sym_postfix_expression] = STATE(1873), + [sym_constructor_expression] = STATE(1873), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1873), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1873), + [sym_prefix_expression] = STATE(1873), + [sym_as_expression] = STATE(1873), + [sym_selector_expression] = STATE(1873), + [sym__binary_expression] = STATE(1873), + [sym_multiplicative_expression] = STATE(1873), + [sym_additive_expression] = STATE(1873), + [sym_range_expression] = STATE(1873), + [sym_infix_expression] = STATE(1873), + [sym_nil_coalescing_expression] = STATE(1873), + [sym_check_expression] = STATE(1873), + [sym_comparison_expression] = STATE(1873), + [sym_equality_expression] = STATE(1873), + [sym_conjunction_expression] = STATE(1873), + [sym_disjunction_expression] = STATE(1873), + [sym_bitwise_operation] = STATE(1873), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1873), + [sym_await_expression] = STATE(1873), + [sym_ternary_expression] = STATE(1873), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1873), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1873), + [sym_dictionary_literal] = STATE(1873), + [sym__special_literal] = STATE(1873), + [sym__playground_literal] = STATE(1873), + [sym_lambda_literal] = STATE(1873), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1873), + [sym_key_path_expression] = STATE(1873), + [sym_key_path_string_expression] = STATE(1873), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1873), + [sym__comparison_operator] = STATE(1873), + [sym__additive_operator] = STATE(1873), + [sym__multiplicative_operator] = STATE(1873), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1873), + [sym__referenceable_operator] = STATE(1873), + [sym__eq_eq] = STATE(1873), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3107), + [sym_real_literal] = ACTIONS(3109), + [sym_integer_literal] = ACTIONS(3107), + [sym_hex_literal] = ACTIONS(3109), + [sym_oct_literal] = ACTIONS(3109), + [sym_bin_literal] = ACTIONS(3109), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3107), + [anon_sym_GT] = ACTIONS(3107), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3107), + [anon_sym_POUNDfileID] = ACTIONS(3109), + [anon_sym_POUNDfilePath] = ACTIONS(3109), + [anon_sym_POUNDline] = ACTIONS(3109), + [anon_sym_POUNDcolumn] = ACTIONS(3109), + [anon_sym_POUNDfunction] = ACTIONS(3109), + [anon_sym_POUNDdsohandle] = ACTIONS(3109), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3107), + [anon_sym_SLASH] = ACTIONS(3107), + [anon_sym_PERCENT] = ACTIONS(3107), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3109), + [sym__plus_then_ws] = ACTIONS(3109), + [sym__minus_then_ws] = ACTIONS(3109), + [sym_bang] = ACTIONS(833), + }, + [745] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(1503), + [sym_boolean_literal] = STATE(1503), + [sym__string_literal] = STATE(1503), + [sym_line_string_literal] = STATE(1503), + [sym_multi_line_string_literal] = STATE(1503), + [sym_raw_string_literal] = STATE(1503), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(1503), + [sym__unary_expression] = STATE(1503), + [sym_postfix_expression] = STATE(1503), + [sym_constructor_expression] = STATE(1503), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(1503), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(1503), + [sym_prefix_expression] = STATE(1503), + [sym_as_expression] = STATE(1503), + [sym_selector_expression] = STATE(1503), + [sym__binary_expression] = STATE(1503), + [sym_multiplicative_expression] = STATE(1503), + [sym_additive_expression] = STATE(1503), + [sym_range_expression] = STATE(1503), + [sym_infix_expression] = STATE(1503), + [sym_nil_coalescing_expression] = STATE(1503), + [sym_check_expression] = STATE(1503), + [sym_comparison_expression] = STATE(1503), + [sym_equality_expression] = STATE(1503), + [sym_conjunction_expression] = STATE(1503), + [sym_disjunction_expression] = STATE(1503), + [sym_bitwise_operation] = STATE(1503), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(1503), + [sym_await_expression] = STATE(1503), + [sym_ternary_expression] = STATE(1503), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(1503), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(1503), + [sym_dictionary_literal] = STATE(1503), + [sym__special_literal] = STATE(1503), + [sym__playground_literal] = STATE(1503), + [sym_lambda_literal] = STATE(1503), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(1503), + [sym_key_path_expression] = STATE(1503), + [sym_key_path_string_expression] = STATE(1503), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(1503), + [sym__comparison_operator] = STATE(1503), + [sym__additive_operator] = STATE(1503), + [sym__multiplicative_operator] = STATE(1503), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(1503), + [sym__referenceable_operator] = STATE(1503), + [sym__eq_eq] = STATE(1503), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(3111), + [sym_real_literal] = ACTIONS(3113), + [sym_integer_literal] = ACTIONS(3111), + [sym_hex_literal] = ACTIONS(3113), + [sym_oct_literal] = ACTIONS(3113), + [sym_bin_literal] = ACTIONS(3113), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3111), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(3111), + [anon_sym_POUNDfileID] = ACTIONS(3113), + [anon_sym_POUNDfilePath] = ACTIONS(3113), + [anon_sym_POUNDline] = ACTIONS(3113), + [anon_sym_POUNDcolumn] = ACTIONS(3113), + [anon_sym_POUNDfunction] = ACTIONS(3113), + [anon_sym_POUNDdsohandle] = ACTIONS(3113), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(3111), + [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_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_SLASH] = ACTIONS(3111), + [anon_sym_PERCENT] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(3113), + [sym__plus_then_ws] = ACTIONS(3113), + [sym__minus_then_ws] = ACTIONS(3113), + [sym_bang] = ACTIONS(137), + }, + [746] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2151), + [sym_boolean_literal] = STATE(2151), + [sym__string_literal] = STATE(2151), + [sym_line_string_literal] = STATE(2151), + [sym_multi_line_string_literal] = STATE(2151), + [sym_raw_string_literal] = STATE(2151), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2151), + [sym__unary_expression] = STATE(2151), + [sym_postfix_expression] = STATE(2151), + [sym_constructor_expression] = STATE(2151), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2151), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2151), + [sym_prefix_expression] = STATE(2151), + [sym_as_expression] = STATE(2151), + [sym_selector_expression] = STATE(2151), + [sym__binary_expression] = STATE(2151), + [sym_multiplicative_expression] = STATE(2151), + [sym_additive_expression] = STATE(2151), + [sym_range_expression] = STATE(2151), + [sym_infix_expression] = STATE(2151), + [sym_nil_coalescing_expression] = STATE(2151), + [sym_check_expression] = STATE(2151), + [sym_comparison_expression] = STATE(2151), + [sym_equality_expression] = STATE(2151), + [sym_conjunction_expression] = STATE(2151), + [sym_disjunction_expression] = STATE(2151), + [sym_bitwise_operation] = STATE(2151), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2151), + [sym_await_expression] = STATE(2151), + [sym_ternary_expression] = STATE(2151), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2151), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2151), + [sym_dictionary_literal] = STATE(2151), + [sym__special_literal] = STATE(2151), + [sym__playground_literal] = STATE(2151), + [sym_lambda_literal] = STATE(2151), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2151), + [sym_key_path_expression] = STATE(2151), + [sym_key_path_string_expression] = STATE(2151), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2151), + [sym__comparison_operator] = STATE(2151), + [sym__additive_operator] = STATE(2151), + [sym__multiplicative_operator] = STATE(2151), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2151), + [sym__referenceable_operator] = STATE(2151), + [sym__eq_eq] = STATE(2151), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3115), + [sym_real_literal] = ACTIONS(3117), + [sym_integer_literal] = ACTIONS(3115), + [sym_hex_literal] = ACTIONS(3117), + [sym_oct_literal] = ACTIONS(3117), + [sym_bin_literal] = ACTIONS(3117), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3115), + [anon_sym_GT] = ACTIONS(3115), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3115), + [anon_sym_POUNDfileID] = ACTIONS(3117), + [anon_sym_POUNDfilePath] = ACTIONS(3117), + [anon_sym_POUNDline] = ACTIONS(3117), + [anon_sym_POUNDcolumn] = ACTIONS(3117), + [anon_sym_POUNDfunction] = ACTIONS(3117), + [anon_sym_POUNDdsohandle] = ACTIONS(3117), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_SLASH] = ACTIONS(3115), + [anon_sym_PERCENT] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3117), + [sym__plus_then_ws] = ACTIONS(3117), + [sym__minus_then_ws] = ACTIONS(3117), + [sym_bang] = ACTIONS(1069), + }, + [747] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1948), + [sym_boolean_literal] = STATE(1948), + [sym__string_literal] = STATE(1948), + [sym_line_string_literal] = STATE(1948), + [sym_multi_line_string_literal] = STATE(1948), + [sym_raw_string_literal] = STATE(1948), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1948), + [sym__unary_expression] = STATE(1948), + [sym_postfix_expression] = STATE(1948), + [sym_constructor_expression] = STATE(1948), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1948), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1948), + [sym_prefix_expression] = STATE(1948), + [sym_as_expression] = STATE(1948), + [sym_selector_expression] = STATE(1948), + [sym__binary_expression] = STATE(1948), + [sym_multiplicative_expression] = STATE(1948), + [sym_additive_expression] = STATE(1948), + [sym_range_expression] = STATE(1948), + [sym_infix_expression] = STATE(1948), + [sym_nil_coalescing_expression] = STATE(1948), + [sym_check_expression] = STATE(1948), + [sym_comparison_expression] = STATE(1948), + [sym_equality_expression] = STATE(1948), + [sym_conjunction_expression] = STATE(1948), + [sym_disjunction_expression] = STATE(1948), + [sym_bitwise_operation] = STATE(1948), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1948), + [sym_await_expression] = STATE(1948), + [sym_ternary_expression] = STATE(1948), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1948), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1948), + [sym_dictionary_literal] = STATE(1948), + [sym__special_literal] = STATE(1948), + [sym__playground_literal] = STATE(1948), + [sym_lambda_literal] = STATE(1948), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1948), + [sym_key_path_expression] = STATE(1948), + [sym_key_path_string_expression] = STATE(1948), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1948), + [sym__comparison_operator] = STATE(1948), + [sym__additive_operator] = STATE(1948), + [sym__multiplicative_operator] = STATE(1948), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1948), + [sym__referenceable_operator] = STATE(1948), + [sym__eq_eq] = STATE(1948), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3119), + [sym_real_literal] = ACTIONS(3121), + [sym_integer_literal] = ACTIONS(3119), + [sym_hex_literal] = ACTIONS(3121), + [sym_oct_literal] = ACTIONS(3121), + [sym_bin_literal] = ACTIONS(3121), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3119), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3119), + [anon_sym_POUNDfileID] = ACTIONS(3121), + [anon_sym_POUNDfilePath] = ACTIONS(3121), + [anon_sym_POUNDline] = ACTIONS(3121), + [anon_sym_POUNDcolumn] = ACTIONS(3121), + [anon_sym_POUNDfunction] = ACTIONS(3121), + [anon_sym_POUNDdsohandle] = ACTIONS(3121), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3119), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3119), + [anon_sym_SLASH] = ACTIONS(3119), + [anon_sym_PERCENT] = ACTIONS(3119), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3121), + [sym__plus_then_ws] = ACTIONS(3121), + [sym__minus_then_ws] = ACTIONS(3121), + [sym_bang] = ACTIONS(833), + }, + [748] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1487), + [sym_boolean_literal] = STATE(1487), + [sym__string_literal] = STATE(1487), + [sym_line_string_literal] = STATE(1487), + [sym_multi_line_string_literal] = STATE(1487), + [sym_raw_string_literal] = STATE(1487), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1487), + [sym__unary_expression] = STATE(1487), + [sym_postfix_expression] = STATE(1487), + [sym_constructor_expression] = STATE(1487), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1487), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1487), + [sym_prefix_expression] = STATE(1487), + [sym_as_expression] = STATE(1487), + [sym_selector_expression] = STATE(1487), + [sym__binary_expression] = STATE(1487), + [sym_multiplicative_expression] = STATE(1487), + [sym_additive_expression] = STATE(1487), + [sym_range_expression] = STATE(1487), + [sym_infix_expression] = STATE(1487), + [sym_nil_coalescing_expression] = STATE(1487), + [sym_check_expression] = STATE(1487), + [sym_comparison_expression] = STATE(1487), + [sym_equality_expression] = STATE(1487), + [sym_conjunction_expression] = STATE(1487), + [sym_disjunction_expression] = STATE(1487), + [sym_bitwise_operation] = STATE(1487), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1487), + [sym_await_expression] = STATE(1487), + [sym_ternary_expression] = STATE(1256), + [sym_call_expression] = STATE(1193), + [sym__primary_expression] = STATE(1487), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1487), + [sym_dictionary_literal] = STATE(1487), + [sym__special_literal] = STATE(1487), + [sym__playground_literal] = STATE(1487), + [sym_lambda_literal] = STATE(1487), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1487), + [sym_key_path_expression] = STATE(1487), + [sym_key_path_string_expression] = STATE(1487), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1487), + [sym__comparison_operator] = STATE(1487), + [sym__additive_operator] = STATE(1487), + [sym__multiplicative_operator] = STATE(1487), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1487), + [sym__referenceable_operator] = STATE(1487), + [sym__eq_eq] = STATE(1487), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3123), + [sym_real_literal] = ACTIONS(3125), + [sym_integer_literal] = ACTIONS(3123), + [sym_hex_literal] = ACTIONS(3125), + [sym_oct_literal] = ACTIONS(3125), + [sym_bin_literal] = ACTIONS(3125), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3123), + [anon_sym_GT] = ACTIONS(3123), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3123), + [anon_sym_POUNDfileID] = ACTIONS(3125), + [anon_sym_POUNDfilePath] = ACTIONS(3125), + [anon_sym_POUNDline] = ACTIONS(3125), + [anon_sym_POUNDcolumn] = ACTIONS(3125), + [anon_sym_POUNDfunction] = ACTIONS(3125), + [anon_sym_POUNDdsohandle] = ACTIONS(3125), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3123), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3123), + [anon_sym_SLASH] = ACTIONS(3123), + [anon_sym_PERCENT] = ACTIONS(3123), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3125), + [sym__plus_then_ws] = ACTIONS(3125), + [sym__minus_then_ws] = ACTIONS(3125), + [sym_bang] = ACTIONS(833), + }, + [749] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1173), + [sym__unary_expression] = STATE(1173), + [sym_postfix_expression] = STATE(1173), + [sym_constructor_expression] = STATE(1173), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1173), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1173), + [sym_await_expression] = STATE(1173), + [sym_ternary_expression] = STATE(1173), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1173), + [sym_tuple_expression] = STATE(1381), + [sym_array_literal] = STATE(1173), + [sym_dictionary_literal] = STATE(1173), + [sym__special_literal] = STATE(1173), + [sym__playground_literal] = STATE(1173), + [sym_lambda_literal] = STATE(1173), + [sym_self_expression] = STATE(1381), + [sym_super_expression] = STATE(1173), + [sym_key_path_expression] = STATE(1173), + [sym_key_path_string_expression] = STATE(1173), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1173), + [sym__comparison_operator] = STATE(1173), + [sym__additive_operator] = STATE(1173), + [sym__multiplicative_operator] = STATE(1173), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1173), + [sym__referenceable_operator] = STATE(1173), + [sym__eq_eq] = STATE(1173), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(3127), + [sym_real_literal] = ACTIONS(3129), + [sym_integer_literal] = ACTIONS(3127), + [sym_hex_literal] = ACTIONS(3129), + [sym_oct_literal] = ACTIONS(3129), + [sym_bin_literal] = ACTIONS(3129), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(3127), + [anon_sym_GT] = ACTIONS(3127), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(3127), + [anon_sym_POUNDfileID] = ACTIONS(3129), + [anon_sym_POUNDfilePath] = ACTIONS(3129), + [anon_sym_POUNDline] = ACTIONS(3129), + [anon_sym_POUNDcolumn] = ACTIONS(3129), + [anon_sym_POUNDfunction] = ACTIONS(3129), + [anon_sym_POUNDdsohandle] = ACTIONS(3129), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(3127), + [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_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(3127), + [anon_sym_SLASH] = ACTIONS(3127), + [anon_sym_PERCENT] = ACTIONS(3127), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(3129), + [sym__plus_then_ws] = ACTIONS(3129), + [sym__minus_then_ws] = ACTIONS(3129), + [sym_bang] = ACTIONS(481), + }, + [750] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1499), + [sym_boolean_literal] = STATE(1499), + [sym__string_literal] = STATE(1499), + [sym_line_string_literal] = STATE(1499), + [sym_multi_line_string_literal] = STATE(1499), + [sym_raw_string_literal] = STATE(1499), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1499), + [sym__unary_expression] = STATE(1499), + [sym_postfix_expression] = STATE(1499), + [sym_constructor_expression] = STATE(1499), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1499), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1499), + [sym_prefix_expression] = STATE(1499), + [sym_as_expression] = STATE(1499), + [sym_selector_expression] = STATE(1499), + [sym__binary_expression] = STATE(1499), + [sym_multiplicative_expression] = STATE(1499), + [sym_additive_expression] = STATE(1499), + [sym_range_expression] = STATE(1499), + [sym_infix_expression] = STATE(1499), + [sym_nil_coalescing_expression] = STATE(1499), + [sym_check_expression] = STATE(1499), + [sym_comparison_expression] = STATE(1499), + [sym_equality_expression] = STATE(1499), + [sym_conjunction_expression] = STATE(1499), + [sym_disjunction_expression] = STATE(1499), + [sym_bitwise_operation] = STATE(1499), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1499), + [sym_await_expression] = STATE(1499), + [sym_ternary_expression] = STATE(1499), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1499), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1499), + [sym_dictionary_literal] = STATE(1499), + [sym__special_literal] = STATE(1499), + [sym__playground_literal] = STATE(1499), + [sym_lambda_literal] = STATE(1499), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1499), + [sym_key_path_expression] = STATE(1499), + [sym_key_path_string_expression] = STATE(1499), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1499), + [sym__comparison_operator] = STATE(1499), + [sym__additive_operator] = STATE(1499), + [sym__multiplicative_operator] = STATE(1499), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1499), + [sym__referenceable_operator] = STATE(1499), + [sym__eq_eq] = STATE(1499), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3131), + [sym_real_literal] = ACTIONS(3133), + [sym_integer_literal] = ACTIONS(3131), + [sym_hex_literal] = ACTIONS(3133), + [sym_oct_literal] = ACTIONS(3133), + [sym_bin_literal] = ACTIONS(3133), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3131), + [anon_sym_GT] = ACTIONS(3131), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3131), + [anon_sym_POUNDfileID] = ACTIONS(3133), + [anon_sym_POUNDfilePath] = ACTIONS(3133), + [anon_sym_POUNDline] = ACTIONS(3133), + [anon_sym_POUNDcolumn] = ACTIONS(3133), + [anon_sym_POUNDfunction] = ACTIONS(3133), + [anon_sym_POUNDdsohandle] = ACTIONS(3133), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3131), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3131), + [anon_sym_SLASH] = ACTIONS(3131), + [anon_sym_PERCENT] = ACTIONS(3131), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3133), + [sym__plus_then_ws] = ACTIONS(3133), + [sym__minus_then_ws] = ACTIONS(3133), + [sym_bang] = ACTIONS(833), + }, + [751] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1500), + [sym_boolean_literal] = STATE(1500), + [sym__string_literal] = STATE(1500), + [sym_line_string_literal] = STATE(1500), + [sym_multi_line_string_literal] = STATE(1500), + [sym_raw_string_literal] = STATE(1500), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1500), + [sym__unary_expression] = STATE(1500), + [sym_postfix_expression] = STATE(1500), + [sym_constructor_expression] = STATE(1500), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1500), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1500), + [sym_prefix_expression] = STATE(1500), + [sym_as_expression] = STATE(1500), + [sym_selector_expression] = STATE(1500), + [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(1327), + [sym_try_expression] = STATE(1500), + [sym_await_expression] = STATE(1500), + [sym_ternary_expression] = STATE(1279), + [sym_call_expression] = STATE(1205), + [sym__primary_expression] = STATE(1500), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1500), + [sym_dictionary_literal] = STATE(1500), + [sym__special_literal] = STATE(1500), + [sym__playground_literal] = STATE(1500), + [sym_lambda_literal] = STATE(1500), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1500), + [sym_key_path_expression] = STATE(1500), + [sym_key_path_string_expression] = STATE(1500), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1500), + [sym__comparison_operator] = STATE(1500), + [sym__additive_operator] = STATE(1500), + [sym__multiplicative_operator] = STATE(1500), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1500), + [sym__referenceable_operator] = STATE(1500), + [sym__eq_eq] = STATE(1500), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3135), + [sym_real_literal] = ACTIONS(3137), + [sym_integer_literal] = ACTIONS(3135), + [sym_hex_literal] = ACTIONS(3137), + [sym_oct_literal] = ACTIONS(3137), + [sym_bin_literal] = ACTIONS(3137), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3135), + [anon_sym_GT] = ACTIONS(3135), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3135), + [anon_sym_POUNDfileID] = ACTIONS(3137), + [anon_sym_POUNDfilePath] = ACTIONS(3137), + [anon_sym_POUNDline] = ACTIONS(3137), + [anon_sym_POUNDcolumn] = ACTIONS(3137), + [anon_sym_POUNDfunction] = ACTIONS(3137), + [anon_sym_POUNDdsohandle] = ACTIONS(3137), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3135), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3135), + [anon_sym_SLASH] = ACTIONS(3135), + [anon_sym_PERCENT] = ACTIONS(3135), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3137), + [sym__plus_then_ws] = ACTIONS(3137), + [sym__minus_then_ws] = ACTIONS(3137), + [sym_bang] = ACTIONS(833), + }, + [752] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1993), + [sym_boolean_literal] = STATE(1993), + [sym__string_literal] = STATE(1993), + [sym_line_string_literal] = STATE(1993), + [sym_multi_line_string_literal] = STATE(1993), + [sym_raw_string_literal] = STATE(1993), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1993), + [sym__unary_expression] = STATE(1993), + [sym_postfix_expression] = STATE(1993), + [sym_constructor_expression] = STATE(1993), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1993), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1993), + [sym_prefix_expression] = STATE(1993), + [sym_as_expression] = STATE(1993), + [sym_selector_expression] = STATE(1993), + [sym__binary_expression] = STATE(1993), + [sym_multiplicative_expression] = STATE(1993), + [sym_additive_expression] = STATE(1993), + [sym_range_expression] = STATE(1993), + [sym_infix_expression] = STATE(1993), + [sym_nil_coalescing_expression] = STATE(1993), + [sym_check_expression] = STATE(1993), + [sym_comparison_expression] = STATE(1993), + [sym_equality_expression] = STATE(1993), + [sym_conjunction_expression] = STATE(1993), + [sym_disjunction_expression] = STATE(1993), + [sym_bitwise_operation] = STATE(1993), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1993), + [sym_await_expression] = STATE(1993), + [sym_ternary_expression] = STATE(1993), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1993), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1993), + [sym_dictionary_literal] = STATE(1993), + [sym__special_literal] = STATE(1993), + [sym__playground_literal] = STATE(1993), + [sym_lambda_literal] = STATE(1993), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1993), + [sym_key_path_expression] = STATE(1993), + [sym_key_path_string_expression] = STATE(1993), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1993), + [sym__comparison_operator] = STATE(1993), + [sym__additive_operator] = STATE(1993), + [sym__multiplicative_operator] = STATE(1993), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1993), + [sym__referenceable_operator] = STATE(1993), + [sym__eq_eq] = STATE(1993), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3139), + [sym_real_literal] = ACTIONS(3141), + [sym_integer_literal] = ACTIONS(3139), + [sym_hex_literal] = ACTIONS(3141), + [sym_oct_literal] = ACTIONS(3141), + [sym_bin_literal] = ACTIONS(3141), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3139), + [anon_sym_GT] = ACTIONS(3139), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3139), + [anon_sym_POUNDfileID] = ACTIONS(3141), + [anon_sym_POUNDfilePath] = ACTIONS(3141), + [anon_sym_POUNDline] = ACTIONS(3141), + [anon_sym_POUNDcolumn] = ACTIONS(3141), + [anon_sym_POUNDfunction] = ACTIONS(3141), + [anon_sym_POUNDdsohandle] = ACTIONS(3141), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3139), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_SLASH] = ACTIONS(3139), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3141), + [sym__plus_then_ws] = ACTIONS(3141), + [sym__minus_then_ws] = ACTIONS(3141), + [sym_bang] = ACTIONS(1069), + }, + [753] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1610), + [sym_boolean_literal] = STATE(1610), + [sym__string_literal] = STATE(1610), + [sym_line_string_literal] = STATE(1610), + [sym_multi_line_string_literal] = STATE(1610), + [sym_raw_string_literal] = STATE(1610), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1610), + [sym__unary_expression] = STATE(1610), + [sym_postfix_expression] = STATE(1610), + [sym_constructor_expression] = STATE(1610), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1610), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1610), + [sym_prefix_expression] = STATE(1610), + [sym_as_expression] = STATE(1610), + [sym_selector_expression] = STATE(1610), + [sym__binary_expression] = STATE(1610), + [sym_multiplicative_expression] = STATE(1610), + [sym_additive_expression] = STATE(1610), + [sym_range_expression] = STATE(1610), + [sym_infix_expression] = STATE(1610), + [sym_nil_coalescing_expression] = STATE(1610), + [sym_check_expression] = STATE(1610), + [sym_comparison_expression] = STATE(1610), + [sym_equality_expression] = STATE(1610), + [sym_conjunction_expression] = STATE(1610), + [sym_disjunction_expression] = STATE(1610), + [sym_bitwise_operation] = STATE(1610), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1610), + [sym_await_expression] = STATE(1610), + [sym_ternary_expression] = STATE(1610), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1610), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1610), + [sym_dictionary_literal] = STATE(1610), + [sym__special_literal] = STATE(1610), + [sym__playground_literal] = STATE(1610), + [sym_lambda_literal] = STATE(1610), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1610), + [sym_key_path_expression] = STATE(1610), + [sym_key_path_string_expression] = STATE(1610), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1610), + [sym__comparison_operator] = STATE(1610), + [sym__additive_operator] = STATE(1610), + [sym__multiplicative_operator] = STATE(1610), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1610), + [sym__referenceable_operator] = STATE(1610), + [sym__eq_eq] = STATE(1610), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3143), + [sym_real_literal] = ACTIONS(3145), + [sym_integer_literal] = ACTIONS(3143), + [sym_hex_literal] = ACTIONS(3145), + [sym_oct_literal] = ACTIONS(3145), + [sym_bin_literal] = ACTIONS(3145), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3143), + [anon_sym_GT] = ACTIONS(3143), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3143), + [anon_sym_POUNDfileID] = ACTIONS(3145), + [anon_sym_POUNDfilePath] = ACTIONS(3145), + [anon_sym_POUNDline] = ACTIONS(3145), + [anon_sym_POUNDcolumn] = ACTIONS(3145), + [anon_sym_POUNDfunction] = ACTIONS(3145), + [anon_sym_POUNDdsohandle] = ACTIONS(3145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3143), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_SLASH] = ACTIONS(3143), + [anon_sym_PERCENT] = ACTIONS(3143), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3145), + [sym__plus_then_ws] = ACTIONS(3145), + [sym__minus_then_ws] = ACTIONS(3145), + [sym_bang] = ACTIONS(1069), + }, + [754] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1484), + [sym_boolean_literal] = STATE(1484), + [sym__string_literal] = STATE(1484), + [sym_line_string_literal] = STATE(1484), + [sym_multi_line_string_literal] = STATE(1484), + [sym_raw_string_literal] = STATE(1484), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1484), + [sym__unary_expression] = STATE(1484), + [sym_postfix_expression] = STATE(1484), + [sym_constructor_expression] = STATE(1484), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1484), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1484), + [sym_prefix_expression] = STATE(1484), + [sym_as_expression] = STATE(1484), + [sym_selector_expression] = STATE(1484), + [sym__binary_expression] = STATE(1484), + [sym_multiplicative_expression] = STATE(1484), + [sym_additive_expression] = STATE(1484), + [sym_range_expression] = STATE(1484), + [sym_infix_expression] = STATE(1484), + [sym_nil_coalescing_expression] = STATE(1484), + [sym_check_expression] = STATE(1484), + [sym_comparison_expression] = STATE(1484), + [sym_equality_expression] = STATE(1484), + [sym_conjunction_expression] = STATE(1484), + [sym_disjunction_expression] = STATE(1484), + [sym_bitwise_operation] = STATE(1484), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1484), + [sym_await_expression] = STATE(1484), + [sym_ternary_expression] = STATE(1484), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1484), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1484), + [sym_dictionary_literal] = STATE(1484), + [sym__special_literal] = STATE(1484), + [sym__playground_literal] = STATE(1484), + [sym_lambda_literal] = STATE(1484), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1484), + [sym_key_path_expression] = STATE(1484), + [sym_key_path_string_expression] = STATE(1484), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1484), + [sym__comparison_operator] = STATE(1484), + [sym__additive_operator] = STATE(1484), + [sym__multiplicative_operator] = STATE(1484), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1484), + [sym__referenceable_operator] = STATE(1484), + [sym__eq_eq] = STATE(1484), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3147), + [sym_real_literal] = ACTIONS(3149), + [sym_integer_literal] = ACTIONS(3147), + [sym_hex_literal] = ACTIONS(3149), + [sym_oct_literal] = ACTIONS(3149), + [sym_bin_literal] = ACTIONS(3149), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3147), + [anon_sym_GT] = ACTIONS(3147), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3147), + [anon_sym_POUNDfileID] = ACTIONS(3149), + [anon_sym_POUNDfilePath] = ACTIONS(3149), + [anon_sym_POUNDline] = ACTIONS(3149), + [anon_sym_POUNDcolumn] = ACTIONS(3149), + [anon_sym_POUNDfunction] = ACTIONS(3149), + [anon_sym_POUNDdsohandle] = ACTIONS(3149), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3147), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_SLASH] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3149), + [sym__plus_then_ws] = ACTIONS(3149), + [sym__minus_then_ws] = ACTIONS(3149), + [sym_bang] = ACTIONS(833), + }, + [755] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(1504), + [sym_boolean_literal] = STATE(1504), + [sym__string_literal] = STATE(1504), + [sym_line_string_literal] = STATE(1504), + [sym_multi_line_string_literal] = STATE(1504), + [sym_raw_string_literal] = STATE(1504), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(1504), + [sym__unary_expression] = STATE(1504), + [sym_postfix_expression] = STATE(1504), + [sym_constructor_expression] = STATE(1504), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(1504), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(1504), + [sym_prefix_expression] = STATE(1504), + [sym_as_expression] = STATE(1504), + [sym_selector_expression] = STATE(1504), + [sym__binary_expression] = STATE(1504), + [sym_multiplicative_expression] = STATE(1504), + [sym_additive_expression] = STATE(1504), + [sym_range_expression] = STATE(1504), + [sym_infix_expression] = STATE(1504), + [sym_nil_coalescing_expression] = STATE(1504), + [sym_check_expression] = STATE(1504), + [sym_comparison_expression] = STATE(1504), + [sym_equality_expression] = STATE(1504), + [sym_conjunction_expression] = STATE(1504), + [sym_disjunction_expression] = STATE(1504), + [sym_bitwise_operation] = STATE(1504), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_ternary_expression] = STATE(1504), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(1504), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(1504), + [sym_dictionary_literal] = STATE(1504), + [sym__special_literal] = STATE(1504), + [sym__playground_literal] = STATE(1504), + [sym_lambda_literal] = STATE(1504), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(1504), + [sym_key_path_expression] = STATE(1504), + [sym_key_path_string_expression] = STATE(1504), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(1504), + [sym__comparison_operator] = STATE(1504), + [sym__additive_operator] = STATE(1504), + [sym__multiplicative_operator] = STATE(1504), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(1504), + [sym__referenceable_operator] = STATE(1504), + [sym__eq_eq] = STATE(1504), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(3151), + [sym_real_literal] = ACTIONS(3153), + [sym_integer_literal] = ACTIONS(3151), + [sym_hex_literal] = ACTIONS(3153), + [sym_oct_literal] = ACTIONS(3153), + [sym_bin_literal] = ACTIONS(3153), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(3151), + [anon_sym_GT] = ACTIONS(3151), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(3151), + [anon_sym_POUNDfileID] = ACTIONS(3153), + [anon_sym_POUNDfilePath] = ACTIONS(3153), + [anon_sym_POUNDline] = ACTIONS(3153), + [anon_sym_POUNDcolumn] = ACTIONS(3153), + [anon_sym_POUNDfunction] = ACTIONS(3153), + [anon_sym_POUNDdsohandle] = ACTIONS(3153), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [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_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_SLASH] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(3153), + [sym__plus_then_ws] = ACTIONS(3153), + [sym__minus_then_ws] = ACTIONS(3153), + [sym_bang] = ACTIONS(137), + }, + [756] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1953), + [sym_boolean_literal] = STATE(1953), + [sym__string_literal] = STATE(1953), + [sym_line_string_literal] = STATE(1953), + [sym_multi_line_string_literal] = STATE(1953), + [sym_raw_string_literal] = STATE(1953), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1953), + [sym__unary_expression] = STATE(1953), + [sym_postfix_expression] = STATE(1953), + [sym_constructor_expression] = STATE(1953), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1953), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1953), + [sym_prefix_expression] = STATE(1953), + [sym_as_expression] = STATE(1953), + [sym_selector_expression] = STATE(1953), + [sym__binary_expression] = STATE(1953), + [sym_multiplicative_expression] = STATE(1953), + [sym_additive_expression] = STATE(1953), + [sym_range_expression] = STATE(1953), + [sym_infix_expression] = STATE(1953), + [sym_nil_coalescing_expression] = STATE(1953), + [sym_check_expression] = STATE(1953), + [sym_comparison_expression] = STATE(1953), + [sym_equality_expression] = STATE(1953), + [sym_conjunction_expression] = STATE(1953), + [sym_disjunction_expression] = STATE(1953), + [sym_bitwise_operation] = STATE(1953), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1953), + [sym_await_expression] = STATE(1953), + [sym_ternary_expression] = STATE(1953), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1953), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1953), + [sym_dictionary_literal] = STATE(1953), + [sym__special_literal] = STATE(1953), + [sym__playground_literal] = STATE(1953), + [sym_lambda_literal] = STATE(1953), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1953), + [sym_key_path_expression] = STATE(1953), + [sym_key_path_string_expression] = STATE(1953), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1953), + [sym__comparison_operator] = STATE(1953), + [sym__additive_operator] = STATE(1953), + [sym__multiplicative_operator] = STATE(1953), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1953), + [sym__referenceable_operator] = STATE(1953), + [sym__eq_eq] = STATE(1953), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3155), + [sym_real_literal] = ACTIONS(3157), + [sym_integer_literal] = ACTIONS(3155), + [sym_hex_literal] = ACTIONS(3157), + [sym_oct_literal] = ACTIONS(3157), + [sym_bin_literal] = ACTIONS(3157), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3155), + [anon_sym_GT] = ACTIONS(3155), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3155), + [anon_sym_POUNDfileID] = ACTIONS(3157), + [anon_sym_POUNDfilePath] = ACTIONS(3157), + [anon_sym_POUNDline] = ACTIONS(3157), + [anon_sym_POUNDcolumn] = ACTIONS(3157), + [anon_sym_POUNDfunction] = ACTIONS(3157), + [anon_sym_POUNDdsohandle] = ACTIONS(3157), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3155), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_SLASH] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3157), + [sym__plus_then_ws] = ACTIONS(3157), + [sym__minus_then_ws] = ACTIONS(3157), + [sym_bang] = ACTIONS(1069), + }, + [757] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1954), + [sym_boolean_literal] = STATE(1954), + [sym__string_literal] = STATE(1954), + [sym_line_string_literal] = STATE(1954), + [sym_multi_line_string_literal] = STATE(1954), + [sym_raw_string_literal] = STATE(1954), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1954), + [sym__unary_expression] = STATE(1954), + [sym_postfix_expression] = STATE(1954), + [sym_constructor_expression] = STATE(1954), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1954), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1954), + [sym_prefix_expression] = STATE(1954), + [sym_as_expression] = STATE(1954), + [sym_selector_expression] = STATE(1954), + [sym__binary_expression] = STATE(1954), + [sym_multiplicative_expression] = STATE(1954), + [sym_additive_expression] = STATE(1954), + [sym_range_expression] = STATE(1954), + [sym_infix_expression] = STATE(1954), + [sym_nil_coalescing_expression] = STATE(1954), + [sym_check_expression] = STATE(1954), + [sym_comparison_expression] = STATE(1954), + [sym_equality_expression] = STATE(1954), + [sym_conjunction_expression] = STATE(1954), + [sym_disjunction_expression] = STATE(1954), + [sym_bitwise_operation] = STATE(1954), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1954), + [sym_await_expression] = STATE(1954), + [sym_ternary_expression] = STATE(1954), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1954), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1954), + [sym_dictionary_literal] = STATE(1954), + [sym__special_literal] = STATE(1954), + [sym__playground_literal] = STATE(1954), + [sym_lambda_literal] = STATE(1954), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1954), + [sym_key_path_expression] = STATE(1954), + [sym_key_path_string_expression] = STATE(1954), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1954), + [sym__comparison_operator] = STATE(1954), + [sym__additive_operator] = STATE(1954), + [sym__multiplicative_operator] = STATE(1954), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1954), + [sym__referenceable_operator] = STATE(1954), + [sym__eq_eq] = STATE(1954), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3159), + [sym_real_literal] = ACTIONS(3161), + [sym_integer_literal] = ACTIONS(3159), + [sym_hex_literal] = ACTIONS(3161), + [sym_oct_literal] = ACTIONS(3161), + [sym_bin_literal] = ACTIONS(3161), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3159), + [anon_sym_GT] = ACTIONS(3159), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3159), + [anon_sym_POUNDfileID] = ACTIONS(3161), + [anon_sym_POUNDfilePath] = ACTIONS(3161), + [anon_sym_POUNDline] = ACTIONS(3161), + [anon_sym_POUNDcolumn] = ACTIONS(3161), + [anon_sym_POUNDfunction] = ACTIONS(3161), + [anon_sym_POUNDdsohandle] = ACTIONS(3161), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3159), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3159), + [anon_sym_SLASH] = ACTIONS(3159), + [anon_sym_PERCENT] = ACTIONS(3159), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3161), + [sym__plus_then_ws] = ACTIONS(3161), + [sym__minus_then_ws] = ACTIONS(3161), + [sym_bang] = ACTIONS(1069), + }, + [758] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2121), + [sym_boolean_literal] = STATE(2121), + [sym__string_literal] = STATE(2121), + [sym_line_string_literal] = STATE(2121), + [sym_multi_line_string_literal] = STATE(2121), + [sym_raw_string_literal] = STATE(2121), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2121), + [sym__unary_expression] = STATE(2121), + [sym_postfix_expression] = STATE(2121), + [sym_constructor_expression] = STATE(2121), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2121), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2121), + [sym_prefix_expression] = STATE(2121), + [sym_as_expression] = STATE(2121), + [sym_selector_expression] = STATE(2121), + [sym__binary_expression] = STATE(2121), + [sym_multiplicative_expression] = STATE(2121), + [sym_additive_expression] = STATE(2121), + [sym_range_expression] = STATE(2121), + [sym_infix_expression] = STATE(2121), + [sym_nil_coalescing_expression] = STATE(2121), + [sym_check_expression] = STATE(2121), + [sym_comparison_expression] = STATE(2121), + [sym_equality_expression] = STATE(2121), + [sym_conjunction_expression] = STATE(2121), + [sym_disjunction_expression] = STATE(2121), + [sym_bitwise_operation] = STATE(2121), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2121), + [sym_await_expression] = STATE(2121), + [sym_ternary_expression] = STATE(2121), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2121), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2121), + [sym_dictionary_literal] = STATE(2121), + [sym__special_literal] = STATE(2121), + [sym__playground_literal] = STATE(2121), + [sym_lambda_literal] = STATE(2121), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2121), + [sym_key_path_expression] = STATE(2121), + [sym_key_path_string_expression] = STATE(2121), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2121), + [sym__comparison_operator] = STATE(2121), + [sym__additive_operator] = STATE(2121), + [sym__multiplicative_operator] = STATE(2121), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2121), + [sym__referenceable_operator] = STATE(2121), + [sym__eq_eq] = STATE(2121), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3163), + [sym_real_literal] = ACTIONS(3165), + [sym_integer_literal] = ACTIONS(3163), + [sym_hex_literal] = ACTIONS(3165), + [sym_oct_literal] = ACTIONS(3165), + [sym_bin_literal] = ACTIONS(3165), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3163), + [anon_sym_GT] = ACTIONS(3163), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3163), + [anon_sym_POUNDfileID] = ACTIONS(3165), + [anon_sym_POUNDfilePath] = ACTIONS(3165), + [anon_sym_POUNDline] = ACTIONS(3165), + [anon_sym_POUNDcolumn] = ACTIONS(3165), + [anon_sym_POUNDfunction] = ACTIONS(3165), + [anon_sym_POUNDdsohandle] = ACTIONS(3165), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3163), + [anon_sym_LT_EQ] = ACTIONS(3163), + [anon_sym_GT_EQ] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_SLASH] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3163), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3165), + [sym__plus_then_ws] = ACTIONS(3165), + [sym__minus_then_ws] = ACTIONS(3165), + [sym_bang] = ACTIONS(1069), + }, + [759] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1955), + [sym_boolean_literal] = STATE(1955), + [sym__string_literal] = STATE(1955), + [sym_line_string_literal] = STATE(1955), + [sym_multi_line_string_literal] = STATE(1955), + [sym_raw_string_literal] = STATE(1955), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1955), + [sym__unary_expression] = STATE(1955), + [sym_postfix_expression] = STATE(1955), + [sym_constructor_expression] = STATE(1955), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1955), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1955), + [sym_prefix_expression] = STATE(1955), + [sym_as_expression] = STATE(1955), + [sym_selector_expression] = STATE(1955), + [sym__binary_expression] = STATE(1955), + [sym_multiplicative_expression] = STATE(1955), + [sym_additive_expression] = STATE(1955), + [sym_range_expression] = STATE(1955), + [sym_infix_expression] = STATE(1955), + [sym_nil_coalescing_expression] = STATE(1955), + [sym_check_expression] = STATE(1955), + [sym_comparison_expression] = STATE(1955), + [sym_equality_expression] = STATE(1955), + [sym_conjunction_expression] = STATE(1955), + [sym_disjunction_expression] = STATE(1955), + [sym_bitwise_operation] = STATE(1955), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1955), + [sym_await_expression] = STATE(1955), + [sym_ternary_expression] = STATE(1955), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1955), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1955), + [sym_dictionary_literal] = STATE(1955), + [sym__special_literal] = STATE(1955), + [sym__playground_literal] = STATE(1955), + [sym_lambda_literal] = STATE(1955), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1955), + [sym_key_path_expression] = STATE(1955), + [sym_key_path_string_expression] = STATE(1955), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1955), + [sym__comparison_operator] = STATE(1955), + [sym__additive_operator] = STATE(1955), + [sym__multiplicative_operator] = STATE(1955), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1955), + [sym__referenceable_operator] = STATE(1955), + [sym__eq_eq] = STATE(1955), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3167), + [sym_real_literal] = ACTIONS(3169), + [sym_integer_literal] = ACTIONS(3167), + [sym_hex_literal] = ACTIONS(3169), + [sym_oct_literal] = ACTIONS(3169), + [sym_bin_literal] = ACTIONS(3169), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_GT] = ACTIONS(3167), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3167), + [anon_sym_POUNDfileID] = ACTIONS(3169), + [anon_sym_POUNDfilePath] = ACTIONS(3169), + [anon_sym_POUNDline] = ACTIONS(3169), + [anon_sym_POUNDcolumn] = ACTIONS(3169), + [anon_sym_POUNDfunction] = ACTIONS(3169), + [anon_sym_POUNDdsohandle] = ACTIONS(3169), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3167), + [anon_sym_LT_EQ] = ACTIONS(3167), + [anon_sym_GT_EQ] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3169), + [sym__plus_then_ws] = ACTIONS(3169), + [sym__minus_then_ws] = ACTIONS(3169), + [sym_bang] = ACTIONS(1069), + }, + [760] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1509), + [sym_boolean_literal] = STATE(1509), + [sym__string_literal] = STATE(1509), + [sym_line_string_literal] = STATE(1509), + [sym_multi_line_string_literal] = STATE(1509), + [sym_raw_string_literal] = STATE(1509), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1509), + [sym__unary_expression] = STATE(1509), + [sym_postfix_expression] = STATE(1509), + [sym_constructor_expression] = STATE(1509), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1509), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1509), + [sym_prefix_expression] = STATE(1509), + [sym_as_expression] = STATE(1509), + [sym_selector_expression] = STATE(1509), + [sym__binary_expression] = STATE(1509), + [sym_multiplicative_expression] = STATE(1509), + [sym_additive_expression] = STATE(1509), + [sym_range_expression] = STATE(1509), + [sym_infix_expression] = STATE(1509), + [sym_nil_coalescing_expression] = STATE(1509), + [sym_check_expression] = STATE(1509), + [sym_comparison_expression] = STATE(1509), + [sym_equality_expression] = STATE(1509), + [sym_conjunction_expression] = STATE(1509), + [sym_disjunction_expression] = STATE(1509), + [sym_bitwise_operation] = STATE(1509), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1509), + [sym_await_expression] = STATE(1509), + [sym_ternary_expression] = STATE(1509), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1509), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1509), + [sym_dictionary_literal] = STATE(1509), + [sym__special_literal] = STATE(1509), + [sym__playground_literal] = STATE(1509), + [sym_lambda_literal] = STATE(1509), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1509), + [sym_key_path_expression] = STATE(1509), + [sym_key_path_string_expression] = STATE(1509), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1509), + [sym__comparison_operator] = STATE(1509), + [sym__additive_operator] = STATE(1509), + [sym__multiplicative_operator] = STATE(1509), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1509), + [sym__referenceable_operator] = STATE(1509), + [sym__eq_eq] = STATE(1509), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3171), + [sym_real_literal] = ACTIONS(3173), + [sym_integer_literal] = ACTIONS(3171), + [sym_hex_literal] = ACTIONS(3173), + [sym_oct_literal] = ACTIONS(3173), + [sym_bin_literal] = ACTIONS(3173), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3171), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3171), + [anon_sym_POUNDfileID] = ACTIONS(3173), + [anon_sym_POUNDfilePath] = ACTIONS(3173), + [anon_sym_POUNDline] = ACTIONS(3173), + [anon_sym_POUNDcolumn] = ACTIONS(3173), + [anon_sym_POUNDfunction] = ACTIONS(3173), + [anon_sym_POUNDdsohandle] = ACTIONS(3173), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3171), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3171), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3171), + [anon_sym_LT_EQ] = ACTIONS(3171), + [anon_sym_GT_EQ] = ACTIONS(3171), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_SLASH] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3173), + [sym__plus_then_ws] = ACTIONS(3173), + [sym__minus_then_ws] = ACTIONS(3173), + [sym_bang] = ACTIONS(833), + }, + [761] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1482), + [sym_boolean_literal] = STATE(1482), + [sym__string_literal] = STATE(1482), + [sym_line_string_literal] = STATE(1482), + [sym_multi_line_string_literal] = STATE(1482), + [sym_raw_string_literal] = STATE(1482), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1482), + [sym__unary_expression] = STATE(1482), + [sym_postfix_expression] = STATE(1482), + [sym_constructor_expression] = STATE(1482), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1482), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1482), + [sym_prefix_expression] = STATE(1482), + [sym_as_expression] = STATE(1482), + [sym_selector_expression] = STATE(1482), + [sym__binary_expression] = STATE(1482), + [sym_multiplicative_expression] = STATE(1482), + [sym_additive_expression] = STATE(1482), + [sym_range_expression] = STATE(1482), + [sym_infix_expression] = STATE(1482), + [sym_nil_coalescing_expression] = STATE(1482), + [sym_check_expression] = STATE(1482), + [sym_comparison_expression] = STATE(1482), + [sym_equality_expression] = STATE(1482), + [sym_conjunction_expression] = STATE(1482), + [sym_disjunction_expression] = STATE(1482), + [sym_bitwise_operation] = STATE(1482), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1482), + [sym_await_expression] = STATE(1482), + [sym_ternary_expression] = STATE(1482), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1482), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1482), + [sym_dictionary_literal] = STATE(1482), + [sym__special_literal] = STATE(1482), + [sym__playground_literal] = STATE(1482), + [sym_lambda_literal] = STATE(1482), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1482), + [sym_key_path_expression] = STATE(1482), + [sym_key_path_string_expression] = STATE(1482), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1482), + [sym__comparison_operator] = STATE(1482), + [sym__additive_operator] = STATE(1482), + [sym__multiplicative_operator] = STATE(1482), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1482), + [sym__referenceable_operator] = STATE(1482), + [sym__eq_eq] = STATE(1482), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3175), + [sym_real_literal] = ACTIONS(3177), + [sym_integer_literal] = ACTIONS(3175), + [sym_hex_literal] = ACTIONS(3177), + [sym_oct_literal] = ACTIONS(3177), + [sym_bin_literal] = ACTIONS(3177), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3175), + [anon_sym_GT] = ACTIONS(3175), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3175), + [anon_sym_POUNDfileID] = ACTIONS(3177), + [anon_sym_POUNDfilePath] = ACTIONS(3177), + [anon_sym_POUNDline] = ACTIONS(3177), + [anon_sym_POUNDcolumn] = ACTIONS(3177), + [anon_sym_POUNDfunction] = ACTIONS(3177), + [anon_sym_POUNDdsohandle] = ACTIONS(3177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3175), + [anon_sym_LT_EQ] = ACTIONS(3175), + [anon_sym_GT_EQ] = ACTIONS(3175), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3175), + [anon_sym_SLASH] = ACTIONS(3175), + [anon_sym_PERCENT] = ACTIONS(3175), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3177), + [sym__plus_then_ws] = ACTIONS(3177), + [sym__minus_then_ws] = ACTIONS(3177), + [sym_bang] = ACTIONS(833), + }, + [762] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1956), + [sym_boolean_literal] = STATE(1956), + [sym__string_literal] = STATE(1956), + [sym_line_string_literal] = STATE(1956), + [sym_multi_line_string_literal] = STATE(1956), + [sym_raw_string_literal] = STATE(1956), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1956), + [sym__unary_expression] = STATE(1956), + [sym_postfix_expression] = STATE(1956), + [sym_constructor_expression] = STATE(1956), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1956), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1956), + [sym_prefix_expression] = STATE(1956), + [sym_as_expression] = STATE(1956), + [sym_selector_expression] = STATE(1956), + [sym__binary_expression] = STATE(1956), + [sym_multiplicative_expression] = STATE(1956), + [sym_additive_expression] = STATE(1956), + [sym_range_expression] = STATE(1956), + [sym_infix_expression] = STATE(1956), + [sym_nil_coalescing_expression] = STATE(1956), + [sym_check_expression] = STATE(1956), + [sym_comparison_expression] = STATE(1956), + [sym_equality_expression] = STATE(1956), + [sym_conjunction_expression] = STATE(1956), + [sym_disjunction_expression] = STATE(1956), + [sym_bitwise_operation] = STATE(1956), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1956), + [sym_await_expression] = STATE(1956), + [sym_ternary_expression] = STATE(1956), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1956), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1956), + [sym_dictionary_literal] = STATE(1956), + [sym__special_literal] = STATE(1956), + [sym__playground_literal] = STATE(1956), + [sym_lambda_literal] = STATE(1956), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1956), + [sym_key_path_expression] = STATE(1956), + [sym_key_path_string_expression] = STATE(1956), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1956), + [sym__comparison_operator] = STATE(1956), + [sym__additive_operator] = STATE(1956), + [sym__multiplicative_operator] = STATE(1956), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1956), + [sym__referenceable_operator] = STATE(1956), + [sym__eq_eq] = STATE(1956), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3179), + [sym_real_literal] = ACTIONS(3181), + [sym_integer_literal] = ACTIONS(3179), + [sym_hex_literal] = ACTIONS(3181), + [sym_oct_literal] = ACTIONS(3181), + [sym_bin_literal] = ACTIONS(3181), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3179), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3179), + [anon_sym_POUNDfileID] = ACTIONS(3181), + [anon_sym_POUNDfilePath] = ACTIONS(3181), + [anon_sym_POUNDline] = ACTIONS(3181), + [anon_sym_POUNDcolumn] = ACTIONS(3181), + [anon_sym_POUNDfunction] = ACTIONS(3181), + [anon_sym_POUNDdsohandle] = ACTIONS(3181), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3179), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3179), + [anon_sym_PERCENT] = ACTIONS(3179), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3181), + [sym__plus_then_ws] = ACTIONS(3181), + [sym__minus_then_ws] = ACTIONS(3181), + [sym_bang] = ACTIONS(1069), + }, + [763] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1957), + [sym_boolean_literal] = STATE(1957), + [sym__string_literal] = STATE(1957), + [sym_line_string_literal] = STATE(1957), + [sym_multi_line_string_literal] = STATE(1957), + [sym_raw_string_literal] = STATE(1957), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1957), + [sym__unary_expression] = STATE(1957), + [sym_postfix_expression] = STATE(1957), + [sym_constructor_expression] = STATE(1957), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1957), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1957), + [sym_prefix_expression] = STATE(1957), + [sym_as_expression] = STATE(1957), + [sym_selector_expression] = STATE(1957), + [sym__binary_expression] = STATE(1957), + [sym_multiplicative_expression] = STATE(1957), + [sym_additive_expression] = STATE(1957), + [sym_range_expression] = STATE(1957), + [sym_infix_expression] = STATE(1957), + [sym_nil_coalescing_expression] = STATE(1957), + [sym_check_expression] = STATE(1957), + [sym_comparison_expression] = STATE(1957), + [sym_equality_expression] = STATE(1957), + [sym_conjunction_expression] = STATE(1957), + [sym_disjunction_expression] = STATE(1957), + [sym_bitwise_operation] = STATE(1957), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_ternary_expression] = STATE(1957), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1957), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1957), + [sym_dictionary_literal] = STATE(1957), + [sym__special_literal] = STATE(1957), + [sym__playground_literal] = STATE(1957), + [sym_lambda_literal] = STATE(1957), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1957), + [sym_key_path_expression] = STATE(1957), + [sym_key_path_string_expression] = STATE(1957), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1957), + [sym__comparison_operator] = STATE(1957), + [sym__additive_operator] = STATE(1957), + [sym__multiplicative_operator] = STATE(1957), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1957), + [sym__referenceable_operator] = STATE(1957), + [sym__eq_eq] = STATE(1957), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3183), + [sym_real_literal] = ACTIONS(3185), + [sym_integer_literal] = ACTIONS(3183), + [sym_hex_literal] = ACTIONS(3185), + [sym_oct_literal] = ACTIONS(3185), + [sym_bin_literal] = ACTIONS(3185), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3183), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3183), + [anon_sym_POUNDfileID] = ACTIONS(3185), + [anon_sym_POUNDfilePath] = ACTIONS(3185), + [anon_sym_POUNDline] = ACTIONS(3185), + [anon_sym_POUNDcolumn] = ACTIONS(3185), + [anon_sym_POUNDfunction] = ACTIONS(3185), + [anon_sym_POUNDdsohandle] = ACTIONS(3185), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3183), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT_EQ] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_SLASH] = ACTIONS(3183), + [anon_sym_PERCENT] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3185), + [sym__plus_then_ws] = ACTIONS(3185), + [sym__minus_then_ws] = ACTIONS(3185), + [sym_bang] = ACTIONS(1069), + }, + [764] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1608), + [sym_boolean_literal] = STATE(1608), + [sym__string_literal] = STATE(1608), + [sym_line_string_literal] = STATE(1608), + [sym_multi_line_string_literal] = STATE(1608), + [sym_raw_string_literal] = STATE(1608), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1608), + [sym__unary_expression] = STATE(1608), + [sym_postfix_expression] = STATE(1608), + [sym_constructor_expression] = STATE(1608), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1608), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1608), + [sym_prefix_expression] = STATE(1608), + [sym_as_expression] = STATE(1608), + [sym_selector_expression] = STATE(1608), + [sym__binary_expression] = STATE(1608), + [sym_multiplicative_expression] = STATE(1608), + [sym_additive_expression] = STATE(1608), + [sym_range_expression] = STATE(1608), + [sym_infix_expression] = STATE(1608), + [sym_nil_coalescing_expression] = STATE(1608), + [sym_check_expression] = STATE(1608), + [sym_comparison_expression] = STATE(1608), + [sym_equality_expression] = STATE(1608), + [sym_conjunction_expression] = STATE(1608), + [sym_disjunction_expression] = STATE(1608), + [sym_bitwise_operation] = STATE(1608), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1608), + [sym_await_expression] = STATE(1608), + [sym_ternary_expression] = STATE(1608), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1608), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1608), + [sym_dictionary_literal] = STATE(1608), + [sym__special_literal] = STATE(1608), + [sym__playground_literal] = STATE(1608), + [sym_lambda_literal] = STATE(1608), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1608), + [sym_key_path_expression] = STATE(1608), + [sym_key_path_string_expression] = STATE(1608), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1608), + [sym__comparison_operator] = STATE(1608), + [sym__additive_operator] = STATE(1608), + [sym__multiplicative_operator] = STATE(1608), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1608), + [sym__referenceable_operator] = STATE(1608), + [sym__eq_eq] = STATE(1608), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3187), + [sym_real_literal] = ACTIONS(3189), + [sym_integer_literal] = ACTIONS(3187), + [sym_hex_literal] = ACTIONS(3189), + [sym_oct_literal] = ACTIONS(3189), + [sym_bin_literal] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3187), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3187), + [anon_sym_POUNDfileID] = ACTIONS(3189), + [anon_sym_POUNDfilePath] = ACTIONS(3189), + [anon_sym_POUNDline] = ACTIONS(3189), + [anon_sym_POUNDcolumn] = ACTIONS(3189), + [anon_sym_POUNDfunction] = ACTIONS(3189), + [anon_sym_POUNDdsohandle] = ACTIONS(3189), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3187), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3187), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3187), + [anon_sym_LT_EQ] = ACTIONS(3187), + [anon_sym_GT_EQ] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_SLASH] = ACTIONS(3187), + [anon_sym_PERCENT] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3189), + [sym__plus_then_ws] = ACTIONS(3189), + [sym__minus_then_ws] = ACTIONS(3189), + [sym_bang] = ACTIONS(1069), + }, + [765] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2102), + [sym_boolean_literal] = STATE(2102), + [sym__string_literal] = STATE(2102), + [sym_line_string_literal] = STATE(2102), + [sym_multi_line_string_literal] = STATE(2102), + [sym_raw_string_literal] = STATE(2102), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2102), + [sym__unary_expression] = STATE(2102), + [sym_postfix_expression] = STATE(2102), + [sym_constructor_expression] = STATE(2102), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2102), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2102), + [sym_prefix_expression] = STATE(2102), + [sym_as_expression] = STATE(2102), + [sym_selector_expression] = STATE(2102), + [sym__binary_expression] = STATE(2102), + [sym_multiplicative_expression] = STATE(2102), + [sym_additive_expression] = STATE(2102), + [sym_range_expression] = STATE(2102), + [sym_infix_expression] = STATE(2102), + [sym_nil_coalescing_expression] = STATE(2102), + [sym_check_expression] = STATE(2102), + [sym_comparison_expression] = STATE(2102), + [sym_equality_expression] = STATE(2102), + [sym_conjunction_expression] = STATE(2102), + [sym_disjunction_expression] = STATE(2102), + [sym_bitwise_operation] = STATE(2102), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2102), + [sym_await_expression] = STATE(2102), + [sym_ternary_expression] = STATE(2102), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2102), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2102), + [sym_dictionary_literal] = STATE(2102), + [sym__special_literal] = STATE(2102), + [sym__playground_literal] = STATE(2102), + [sym_lambda_literal] = STATE(2102), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2102), + [sym_key_path_expression] = STATE(2102), + [sym_key_path_string_expression] = STATE(2102), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2102), + [sym__comparison_operator] = STATE(2102), + [sym__additive_operator] = STATE(2102), + [sym__multiplicative_operator] = STATE(2102), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2102), + [sym__referenceable_operator] = STATE(2102), + [sym__eq_eq] = STATE(2102), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3191), + [sym_real_literal] = ACTIONS(3193), + [sym_integer_literal] = ACTIONS(3191), + [sym_hex_literal] = ACTIONS(3193), + [sym_oct_literal] = ACTIONS(3193), + [sym_bin_literal] = ACTIONS(3193), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_GT] = ACTIONS(3191), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3191), + [anon_sym_POUNDfileID] = ACTIONS(3193), + [anon_sym_POUNDfilePath] = ACTIONS(3193), + [anon_sym_POUNDline] = ACTIONS(3193), + [anon_sym_POUNDcolumn] = ACTIONS(3193), + [anon_sym_POUNDfunction] = ACTIONS(3193), + [anon_sym_POUNDdsohandle] = ACTIONS(3193), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3191), + [anon_sym_LT_EQ] = ACTIONS(3191), + [anon_sym_GT_EQ] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_PERCENT] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3193), + [sym__plus_then_ws] = ACTIONS(3193), + [sym__minus_then_ws] = ACTIONS(3193), + [sym_bang] = ACTIONS(1069), + }, + [766] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2101), + [sym_boolean_literal] = STATE(2101), + [sym__string_literal] = STATE(2101), + [sym_line_string_literal] = STATE(2101), + [sym_multi_line_string_literal] = STATE(2101), + [sym_raw_string_literal] = STATE(2101), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2101), + [sym__unary_expression] = STATE(2101), + [sym_postfix_expression] = STATE(2101), + [sym_constructor_expression] = STATE(2101), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2101), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2101), + [sym_prefix_expression] = STATE(2101), + [sym_as_expression] = STATE(2101), + [sym_selector_expression] = STATE(2101), + [sym__binary_expression] = STATE(2101), + [sym_multiplicative_expression] = STATE(2101), + [sym_additive_expression] = STATE(2101), + [sym_range_expression] = STATE(2101), + [sym_infix_expression] = STATE(2101), + [sym_nil_coalescing_expression] = STATE(2101), + [sym_check_expression] = STATE(2101), + [sym_comparison_expression] = STATE(2101), + [sym_equality_expression] = STATE(2101), + [sym_conjunction_expression] = STATE(2101), + [sym_disjunction_expression] = STATE(2101), + [sym_bitwise_operation] = STATE(2101), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2101), + [sym_await_expression] = STATE(2101), + [sym_ternary_expression] = STATE(2101), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2101), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2101), + [sym_dictionary_literal] = STATE(2101), + [sym__special_literal] = STATE(2101), + [sym__playground_literal] = STATE(2101), + [sym_lambda_literal] = STATE(2101), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2101), + [sym_key_path_expression] = STATE(2101), + [sym_key_path_string_expression] = STATE(2101), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2101), + [sym__comparison_operator] = STATE(2101), + [sym__additive_operator] = STATE(2101), + [sym__multiplicative_operator] = STATE(2101), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2101), + [sym__referenceable_operator] = STATE(2101), + [sym__eq_eq] = STATE(2101), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3195), + [sym_real_literal] = ACTIONS(3197), + [sym_integer_literal] = ACTIONS(3195), + [sym_hex_literal] = ACTIONS(3197), + [sym_oct_literal] = ACTIONS(3197), + [sym_bin_literal] = ACTIONS(3197), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3195), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3195), + [anon_sym_POUNDfileID] = ACTIONS(3197), + [anon_sym_POUNDfilePath] = ACTIONS(3197), + [anon_sym_POUNDline] = ACTIONS(3197), + [anon_sym_POUNDcolumn] = ACTIONS(3197), + [anon_sym_POUNDfunction] = ACTIONS(3197), + [anon_sym_POUNDdsohandle] = ACTIONS(3197), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3195), + [anon_sym_SLASH] = ACTIONS(3195), + [anon_sym_PERCENT] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3197), + [sym__plus_then_ws] = ACTIONS(3197), + [sym__minus_then_ws] = ACTIONS(3197), + [sym_bang] = ACTIONS(1069), + }, + [767] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym__string_literal] = STATE(2100), + [sym_line_string_literal] = STATE(2100), + [sym_multi_line_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2100), + [sym__unary_expression] = STATE(2100), + [sym_postfix_expression] = STATE(2100), + [sym_constructor_expression] = STATE(2100), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2100), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2100), + [sym_prefix_expression] = STATE(2100), + [sym_as_expression] = STATE(2100), + [sym_selector_expression] = STATE(2100), + [sym__binary_expression] = STATE(2100), + [sym_multiplicative_expression] = STATE(2100), + [sym_additive_expression] = STATE(2100), + [sym_range_expression] = STATE(2100), + [sym_infix_expression] = STATE(2100), + [sym_nil_coalescing_expression] = STATE(2100), + [sym_check_expression] = STATE(2100), + [sym_comparison_expression] = STATE(2100), + [sym_equality_expression] = STATE(2100), + [sym_conjunction_expression] = STATE(2100), + [sym_disjunction_expression] = STATE(2100), + [sym_bitwise_operation] = STATE(2100), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2100), + [sym_await_expression] = STATE(2100), + [sym_ternary_expression] = STATE(2100), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2100), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2100), + [sym_dictionary_literal] = STATE(2100), + [sym__special_literal] = STATE(2100), + [sym__playground_literal] = STATE(2100), + [sym_lambda_literal] = STATE(2100), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2100), + [sym_key_path_expression] = STATE(2100), + [sym_key_path_string_expression] = STATE(2100), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2100), + [sym__comparison_operator] = STATE(2100), + [sym__additive_operator] = STATE(2100), + [sym__multiplicative_operator] = STATE(2100), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2100), + [sym__referenceable_operator] = STATE(2100), + [sym__eq_eq] = STATE(2100), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3199), + [sym_real_literal] = ACTIONS(3201), + [sym_integer_literal] = ACTIONS(3199), + [sym_hex_literal] = ACTIONS(3201), + [sym_oct_literal] = ACTIONS(3201), + [sym_bin_literal] = ACTIONS(3201), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_GT] = ACTIONS(3199), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3199), + [anon_sym_POUNDfileID] = ACTIONS(3201), + [anon_sym_POUNDfilePath] = ACTIONS(3201), + [anon_sym_POUNDline] = ACTIONS(3201), + [anon_sym_POUNDcolumn] = ACTIONS(3201), + [anon_sym_POUNDfunction] = ACTIONS(3201), + [anon_sym_POUNDdsohandle] = ACTIONS(3201), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3199), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_PERCENT] = ACTIONS(3199), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3201), + [sym__plus_then_ws] = ACTIONS(3201), + [sym__minus_then_ws] = ACTIONS(3201), + [sym_bang] = ACTIONS(1069), + }, + [768] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1688), + [sym_boolean_literal] = STATE(1688), + [sym__string_literal] = STATE(1688), + [sym_line_string_literal] = STATE(1688), + [sym_multi_line_string_literal] = STATE(1688), + [sym_raw_string_literal] = STATE(1688), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1688), + [sym__unary_expression] = STATE(1688), + [sym_postfix_expression] = STATE(1688), + [sym_constructor_expression] = STATE(1688), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1688), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1688), + [sym_prefix_expression] = STATE(1688), + [sym_as_expression] = STATE(1688), + [sym_selector_expression] = STATE(1688), + [sym__binary_expression] = STATE(1688), + [sym_multiplicative_expression] = STATE(1688), + [sym_additive_expression] = STATE(1688), + [sym_range_expression] = STATE(1688), + [sym_infix_expression] = STATE(1688), + [sym_nil_coalescing_expression] = STATE(1688), + [sym_check_expression] = STATE(1688), + [sym_comparison_expression] = STATE(1688), + [sym_equality_expression] = STATE(1688), + [sym_conjunction_expression] = STATE(1688), + [sym_disjunction_expression] = STATE(1688), + [sym_bitwise_operation] = STATE(1688), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1688), + [sym_await_expression] = STATE(1688), + [sym_ternary_expression] = STATE(1688), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1688), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1688), + [sym_dictionary_literal] = STATE(1688), + [sym__special_literal] = STATE(1688), + [sym__playground_literal] = STATE(1688), + [sym_lambda_literal] = STATE(1688), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1688), + [sym_key_path_expression] = STATE(1688), + [sym_key_path_string_expression] = STATE(1688), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1688), + [sym__comparison_operator] = STATE(1688), + [sym__additive_operator] = STATE(1688), + [sym__multiplicative_operator] = STATE(1688), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1688), + [sym__referenceable_operator] = STATE(1688), + [sym__eq_eq] = STATE(1688), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3203), + [sym_real_literal] = ACTIONS(3205), + [sym_integer_literal] = ACTIONS(3203), + [sym_hex_literal] = ACTIONS(3205), + [sym_oct_literal] = ACTIONS(3205), + [sym_bin_literal] = ACTIONS(3205), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3203), + [anon_sym_GT] = ACTIONS(3203), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3203), + [anon_sym_POUNDfileID] = ACTIONS(3205), + [anon_sym_POUNDfilePath] = ACTIONS(3205), + [anon_sym_POUNDline] = ACTIONS(3205), + [anon_sym_POUNDcolumn] = ACTIONS(3205), + [anon_sym_POUNDfunction] = ACTIONS(3205), + [anon_sym_POUNDdsohandle] = ACTIONS(3205), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3203), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3203), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3203), + [anon_sym_LT_EQ] = ACTIONS(3203), + [anon_sym_GT_EQ] = ACTIONS(3203), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3203), + [anon_sym_SLASH] = ACTIONS(3203), + [anon_sym_PERCENT] = ACTIONS(3203), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3205), + [sym__plus_then_ws] = ACTIONS(3205), + [sym__minus_then_ws] = ACTIONS(3205), + [sym_bang] = ACTIONS(1069), + }, + [769] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1606), + [sym_boolean_literal] = STATE(1606), + [sym__string_literal] = STATE(1606), + [sym_line_string_literal] = STATE(1606), + [sym_multi_line_string_literal] = STATE(1606), + [sym_raw_string_literal] = STATE(1606), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1606), + [sym__unary_expression] = STATE(1606), + [sym_postfix_expression] = STATE(1606), + [sym_constructor_expression] = STATE(1606), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1606), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1606), + [sym_prefix_expression] = STATE(1606), + [sym_as_expression] = STATE(1606), + [sym_selector_expression] = STATE(1606), + [sym__binary_expression] = STATE(1606), + [sym_multiplicative_expression] = STATE(1606), + [sym_additive_expression] = STATE(1606), + [sym_range_expression] = STATE(1606), + [sym_infix_expression] = STATE(1606), + [sym_nil_coalescing_expression] = STATE(1606), + [sym_check_expression] = STATE(1606), + [sym_comparison_expression] = STATE(1606), + [sym_equality_expression] = STATE(1606), + [sym_conjunction_expression] = STATE(1606), + [sym_disjunction_expression] = STATE(1606), + [sym_bitwise_operation] = STATE(1606), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1606), + [sym_await_expression] = STATE(1606), + [sym_ternary_expression] = STATE(1606), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1606), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1606), + [sym_dictionary_literal] = STATE(1606), + [sym__special_literal] = STATE(1606), + [sym__playground_literal] = STATE(1606), + [sym_lambda_literal] = STATE(1606), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1606), + [sym_key_path_expression] = STATE(1606), + [sym_key_path_string_expression] = STATE(1606), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1606), + [sym__comparison_operator] = STATE(1606), + [sym__additive_operator] = STATE(1606), + [sym__multiplicative_operator] = STATE(1606), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1606), + [sym__referenceable_operator] = STATE(1606), + [sym__eq_eq] = STATE(1606), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3207), + [sym_real_literal] = ACTIONS(3209), + [sym_integer_literal] = ACTIONS(3207), + [sym_hex_literal] = ACTIONS(3209), + [sym_oct_literal] = ACTIONS(3209), + [sym_bin_literal] = ACTIONS(3209), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3207), + [anon_sym_GT] = ACTIONS(3207), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3207), + [anon_sym_POUNDfileID] = ACTIONS(3209), + [anon_sym_POUNDfilePath] = ACTIONS(3209), + [anon_sym_POUNDline] = ACTIONS(3209), + [anon_sym_POUNDcolumn] = ACTIONS(3209), + [anon_sym_POUNDfunction] = ACTIONS(3209), + [anon_sym_POUNDdsohandle] = ACTIONS(3209), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3207), + [anon_sym_LT_EQ] = ACTIONS(3207), + [anon_sym_GT_EQ] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3207), + [anon_sym_SLASH] = ACTIONS(3207), + [anon_sym_PERCENT] = ACTIONS(3207), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3209), + [sym__plus_then_ws] = ACTIONS(3209), + [sym__minus_then_ws] = ACTIONS(3209), + [sym_bang] = ACTIONS(1069), + }, + [770] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1605), + [sym_boolean_literal] = STATE(1605), + [sym__string_literal] = STATE(1605), + [sym_line_string_literal] = STATE(1605), + [sym_multi_line_string_literal] = STATE(1605), + [sym_raw_string_literal] = STATE(1605), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1605), + [sym__unary_expression] = STATE(1605), + [sym_postfix_expression] = STATE(1605), + [sym_constructor_expression] = STATE(1605), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1605), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1605), + [sym_prefix_expression] = STATE(1605), + [sym_as_expression] = STATE(1605), + [sym_selector_expression] = STATE(1605), + [sym__binary_expression] = STATE(1605), + [sym_multiplicative_expression] = STATE(1605), + [sym_additive_expression] = STATE(1605), + [sym_range_expression] = STATE(1605), + [sym_infix_expression] = STATE(1605), + [sym_nil_coalescing_expression] = STATE(1605), + [sym_check_expression] = STATE(1605), + [sym_comparison_expression] = STATE(1605), + [sym_equality_expression] = STATE(1605), + [sym_conjunction_expression] = STATE(1605), + [sym_disjunction_expression] = STATE(1605), + [sym_bitwise_operation] = STATE(1605), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1605), + [sym_await_expression] = STATE(1605), + [sym_ternary_expression] = STATE(1605), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1605), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1605), + [sym_dictionary_literal] = STATE(1605), + [sym__special_literal] = STATE(1605), + [sym__playground_literal] = STATE(1605), + [sym_lambda_literal] = STATE(1605), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1605), + [sym_key_path_expression] = STATE(1605), + [sym_key_path_string_expression] = STATE(1605), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1605), + [sym__comparison_operator] = STATE(1605), + [sym__additive_operator] = STATE(1605), + [sym__multiplicative_operator] = STATE(1605), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1605), + [sym__referenceable_operator] = STATE(1605), + [sym__eq_eq] = STATE(1605), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3211), + [sym_real_literal] = ACTIONS(3213), + [sym_integer_literal] = ACTIONS(3211), + [sym_hex_literal] = ACTIONS(3213), + [sym_oct_literal] = ACTIONS(3213), + [sym_bin_literal] = ACTIONS(3213), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3211), + [anon_sym_GT] = ACTIONS(3211), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3211), + [anon_sym_POUNDfileID] = ACTIONS(3213), + [anon_sym_POUNDfilePath] = ACTIONS(3213), + [anon_sym_POUNDline] = ACTIONS(3213), + [anon_sym_POUNDcolumn] = ACTIONS(3213), + [anon_sym_POUNDfunction] = ACTIONS(3213), + [anon_sym_POUNDdsohandle] = ACTIONS(3213), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3211), + [anon_sym_LT_EQ] = ACTIONS(3211), + [anon_sym_GT_EQ] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3211), + [anon_sym_SLASH] = ACTIONS(3211), + [anon_sym_PERCENT] = ACTIONS(3211), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3213), + [sym__plus_then_ws] = ACTIONS(3213), + [sym__minus_then_ws] = ACTIONS(3213), + [sym_bang] = ACTIONS(1069), + }, + [771] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2099), + [sym_boolean_literal] = STATE(2099), + [sym__string_literal] = STATE(2099), + [sym_line_string_literal] = STATE(2099), + [sym_multi_line_string_literal] = STATE(2099), + [sym_raw_string_literal] = STATE(2099), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2099), + [sym__unary_expression] = STATE(2099), + [sym_postfix_expression] = STATE(2099), + [sym_constructor_expression] = STATE(2099), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2099), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2099), + [sym_prefix_expression] = STATE(2099), + [sym_as_expression] = STATE(2099), + [sym_selector_expression] = STATE(2099), + [sym__binary_expression] = STATE(2099), + [sym_multiplicative_expression] = STATE(2099), + [sym_additive_expression] = STATE(2099), + [sym_range_expression] = STATE(2099), + [sym_infix_expression] = STATE(2099), + [sym_nil_coalescing_expression] = STATE(2099), + [sym_check_expression] = STATE(2099), + [sym_comparison_expression] = STATE(2099), + [sym_equality_expression] = STATE(2099), + [sym_conjunction_expression] = STATE(2099), + [sym_disjunction_expression] = STATE(2099), + [sym_bitwise_operation] = STATE(2099), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2099), + [sym_await_expression] = STATE(2099), + [sym_ternary_expression] = STATE(2099), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2099), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2099), + [sym_dictionary_literal] = STATE(2099), + [sym__special_literal] = STATE(2099), + [sym__playground_literal] = STATE(2099), + [sym_lambda_literal] = STATE(2099), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2099), + [sym_key_path_expression] = STATE(2099), + [sym_key_path_string_expression] = STATE(2099), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2099), + [sym__comparison_operator] = STATE(2099), + [sym__additive_operator] = STATE(2099), + [sym__multiplicative_operator] = STATE(2099), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2099), + [sym__referenceable_operator] = STATE(2099), + [sym__eq_eq] = STATE(2099), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3215), + [sym_real_literal] = ACTIONS(3217), + [sym_integer_literal] = ACTIONS(3215), + [sym_hex_literal] = ACTIONS(3217), + [sym_oct_literal] = ACTIONS(3217), + [sym_bin_literal] = ACTIONS(3217), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3215), + [anon_sym_GT] = ACTIONS(3215), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3215), + [anon_sym_POUNDfileID] = ACTIONS(3217), + [anon_sym_POUNDfilePath] = ACTIONS(3217), + [anon_sym_POUNDline] = ACTIONS(3217), + [anon_sym_POUNDcolumn] = ACTIONS(3217), + [anon_sym_POUNDfunction] = ACTIONS(3217), + [anon_sym_POUNDdsohandle] = ACTIONS(3217), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3215), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3215), + [anon_sym_LT_EQ] = ACTIONS(3215), + [anon_sym_GT_EQ] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3215), + [anon_sym_SLASH] = ACTIONS(3215), + [anon_sym_PERCENT] = ACTIONS(3215), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3217), + [sym__plus_then_ws] = ACTIONS(3217), + [sym__minus_then_ws] = ACTIONS(3217), + [sym_bang] = ACTIONS(1069), + }, + [772] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym__string_literal] = STATE(2096), + [sym_line_string_literal] = STATE(2096), + [sym_multi_line_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2096), + [sym__unary_expression] = STATE(2096), + [sym_postfix_expression] = STATE(2096), + [sym_constructor_expression] = STATE(2096), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2096), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2096), + [sym_prefix_expression] = STATE(2096), + [sym_as_expression] = STATE(2096), + [sym_selector_expression] = STATE(2096), + [sym__binary_expression] = STATE(2096), + [sym_multiplicative_expression] = STATE(2096), + [sym_additive_expression] = STATE(2096), + [sym_range_expression] = STATE(2096), + [sym_infix_expression] = STATE(2096), + [sym_nil_coalescing_expression] = STATE(2096), + [sym_check_expression] = STATE(2096), + [sym_comparison_expression] = STATE(2096), + [sym_equality_expression] = STATE(2096), + [sym_conjunction_expression] = STATE(2096), + [sym_disjunction_expression] = STATE(2096), + [sym_bitwise_operation] = STATE(2096), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2096), + [sym_await_expression] = STATE(2096), + [sym_ternary_expression] = STATE(2096), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2096), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2096), + [sym_dictionary_literal] = STATE(2096), + [sym__special_literal] = STATE(2096), + [sym__playground_literal] = STATE(2096), + [sym_lambda_literal] = STATE(2096), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2096), + [sym_key_path_expression] = STATE(2096), + [sym_key_path_string_expression] = STATE(2096), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2096), + [sym__comparison_operator] = STATE(2096), + [sym__additive_operator] = STATE(2096), + [sym__multiplicative_operator] = STATE(2096), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2096), + [sym__referenceable_operator] = STATE(2096), + [sym__eq_eq] = STATE(2096), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3219), + [sym_real_literal] = ACTIONS(3221), + [sym_integer_literal] = ACTIONS(3219), + [sym_hex_literal] = ACTIONS(3221), + [sym_oct_literal] = ACTIONS(3221), + [sym_bin_literal] = ACTIONS(3221), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3219), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3219), + [anon_sym_POUNDfileID] = ACTIONS(3221), + [anon_sym_POUNDfilePath] = ACTIONS(3221), + [anon_sym_POUNDline] = ACTIONS(3221), + [anon_sym_POUNDcolumn] = ACTIONS(3221), + [anon_sym_POUNDfunction] = ACTIONS(3221), + [anon_sym_POUNDdsohandle] = ACTIONS(3221), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3221), + [sym__plus_then_ws] = ACTIONS(3221), + [sym__minus_then_ws] = ACTIONS(3221), + [sym_bang] = ACTIONS(1069), + }, + [773] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2095), + [sym_boolean_literal] = STATE(2095), + [sym__string_literal] = STATE(2095), + [sym_line_string_literal] = STATE(2095), + [sym_multi_line_string_literal] = STATE(2095), + [sym_raw_string_literal] = STATE(2095), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2095), + [sym__unary_expression] = STATE(2095), + [sym_postfix_expression] = STATE(2095), + [sym_constructor_expression] = STATE(2095), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2095), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2095), + [sym_prefix_expression] = STATE(2095), + [sym_as_expression] = STATE(2095), + [sym_selector_expression] = STATE(2095), + [sym__binary_expression] = STATE(2095), + [sym_multiplicative_expression] = STATE(2095), + [sym_additive_expression] = STATE(2095), + [sym_range_expression] = STATE(2095), + [sym_infix_expression] = STATE(2095), + [sym_nil_coalescing_expression] = STATE(2095), + [sym_check_expression] = STATE(2095), + [sym_comparison_expression] = STATE(2095), + [sym_equality_expression] = STATE(2095), + [sym_conjunction_expression] = STATE(2095), + [sym_disjunction_expression] = STATE(2095), + [sym_bitwise_operation] = STATE(2095), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2095), + [sym_await_expression] = STATE(2095), + [sym_ternary_expression] = STATE(2095), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2095), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2095), + [sym_dictionary_literal] = STATE(2095), + [sym__special_literal] = STATE(2095), + [sym__playground_literal] = STATE(2095), + [sym_lambda_literal] = STATE(2095), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2095), + [sym_key_path_expression] = STATE(2095), + [sym_key_path_string_expression] = STATE(2095), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2095), + [sym__comparison_operator] = STATE(2095), + [sym__additive_operator] = STATE(2095), + [sym__multiplicative_operator] = STATE(2095), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2095), + [sym__referenceable_operator] = STATE(2095), + [sym__eq_eq] = STATE(2095), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3223), + [sym_real_literal] = ACTIONS(3225), + [sym_integer_literal] = ACTIONS(3223), + [sym_hex_literal] = ACTIONS(3225), + [sym_oct_literal] = ACTIONS(3225), + [sym_bin_literal] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3223), + [anon_sym_GT] = ACTIONS(3223), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3223), + [anon_sym_POUNDfileID] = ACTIONS(3225), + [anon_sym_POUNDfilePath] = ACTIONS(3225), + [anon_sym_POUNDline] = ACTIONS(3225), + [anon_sym_POUNDcolumn] = ACTIONS(3225), + [anon_sym_POUNDfunction] = ACTIONS(3225), + [anon_sym_POUNDdsohandle] = ACTIONS(3225), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3223), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3223), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3223), + [anon_sym_LT_EQ] = ACTIONS(3223), + [anon_sym_GT_EQ] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_SLASH] = ACTIONS(3223), + [anon_sym_PERCENT] = ACTIONS(3223), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3225), + [sym__plus_then_ws] = ACTIONS(3225), + [sym__minus_then_ws] = ACTIONS(3225), + [sym_bang] = ACTIONS(1069), + }, + [774] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2093), + [sym_boolean_literal] = STATE(2093), + [sym__string_literal] = STATE(2093), + [sym_line_string_literal] = STATE(2093), + [sym_multi_line_string_literal] = STATE(2093), + [sym_raw_string_literal] = STATE(2093), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2093), + [sym__unary_expression] = STATE(2093), + [sym_postfix_expression] = STATE(2093), + [sym_constructor_expression] = STATE(2093), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2093), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2093), + [sym_prefix_expression] = STATE(2093), + [sym_as_expression] = STATE(2093), + [sym_selector_expression] = STATE(2093), + [sym__binary_expression] = STATE(2093), + [sym_multiplicative_expression] = STATE(2093), + [sym_additive_expression] = STATE(2093), + [sym_range_expression] = STATE(2093), + [sym_infix_expression] = STATE(2093), + [sym_nil_coalescing_expression] = STATE(2093), + [sym_check_expression] = STATE(2093), + [sym_comparison_expression] = STATE(2093), + [sym_equality_expression] = STATE(2093), + [sym_conjunction_expression] = STATE(2093), + [sym_disjunction_expression] = STATE(2093), + [sym_bitwise_operation] = STATE(2093), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2093), + [sym_await_expression] = STATE(2093), + [sym_ternary_expression] = STATE(2093), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2093), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2093), + [sym_dictionary_literal] = STATE(2093), + [sym__special_literal] = STATE(2093), + [sym__playground_literal] = STATE(2093), + [sym_lambda_literal] = STATE(2093), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2093), + [sym_key_path_expression] = STATE(2093), + [sym_key_path_string_expression] = STATE(2093), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2093), + [sym__comparison_operator] = STATE(2093), + [sym__additive_operator] = STATE(2093), + [sym__multiplicative_operator] = STATE(2093), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2093), + [sym__referenceable_operator] = STATE(2093), + [sym__eq_eq] = STATE(2093), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3227), + [sym_real_literal] = ACTIONS(3229), + [sym_integer_literal] = ACTIONS(3227), + [sym_hex_literal] = ACTIONS(3229), + [sym_oct_literal] = ACTIONS(3229), + [sym_bin_literal] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_GT] = ACTIONS(3227), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3227), + [anon_sym_POUNDfileID] = ACTIONS(3229), + [anon_sym_POUNDfilePath] = ACTIONS(3229), + [anon_sym_POUNDline] = ACTIONS(3229), + [anon_sym_POUNDcolumn] = ACTIONS(3229), + [anon_sym_POUNDfunction] = ACTIONS(3229), + [anon_sym_POUNDdsohandle] = ACTIONS(3229), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3227), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3227), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3227), + [anon_sym_LT_EQ] = ACTIONS(3227), + [anon_sym_GT_EQ] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3227), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_PERCENT] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3229), + [sym__plus_then_ws] = ACTIONS(3229), + [sym__minus_then_ws] = ACTIONS(3229), + [sym_bang] = ACTIONS(1069), + }, + [775] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2092), + [sym_boolean_literal] = STATE(2092), + [sym__string_literal] = STATE(2092), + [sym_line_string_literal] = STATE(2092), + [sym_multi_line_string_literal] = STATE(2092), + [sym_raw_string_literal] = STATE(2092), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2092), + [sym__unary_expression] = STATE(2092), + [sym_postfix_expression] = STATE(2092), + [sym_constructor_expression] = STATE(2092), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2092), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2092), + [sym_prefix_expression] = STATE(2092), + [sym_as_expression] = STATE(2092), + [sym_selector_expression] = STATE(2092), + [sym__binary_expression] = STATE(2092), + [sym_multiplicative_expression] = STATE(2092), + [sym_additive_expression] = STATE(2092), + [sym_range_expression] = STATE(2092), + [sym_infix_expression] = STATE(2092), + [sym_nil_coalescing_expression] = STATE(2092), + [sym_check_expression] = STATE(2092), + [sym_comparison_expression] = STATE(2092), + [sym_equality_expression] = STATE(2092), + [sym_conjunction_expression] = STATE(2092), + [sym_disjunction_expression] = STATE(2092), + [sym_bitwise_operation] = STATE(2092), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2092), + [sym_await_expression] = STATE(2092), + [sym_ternary_expression] = STATE(2092), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2092), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2092), + [sym_dictionary_literal] = STATE(2092), + [sym__special_literal] = STATE(2092), + [sym__playground_literal] = STATE(2092), + [sym_lambda_literal] = STATE(2092), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2092), + [sym_key_path_expression] = STATE(2092), + [sym_key_path_string_expression] = STATE(2092), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2092), + [sym__comparison_operator] = STATE(2092), + [sym__additive_operator] = STATE(2092), + [sym__multiplicative_operator] = STATE(2092), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2092), + [sym__referenceable_operator] = STATE(2092), + [sym__eq_eq] = STATE(2092), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3231), + [sym_real_literal] = ACTIONS(3233), + [sym_integer_literal] = ACTIONS(3231), + [sym_hex_literal] = ACTIONS(3233), + [sym_oct_literal] = ACTIONS(3233), + [sym_bin_literal] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_GT] = ACTIONS(3231), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3231), + [anon_sym_POUNDfileID] = ACTIONS(3233), + [anon_sym_POUNDfilePath] = ACTIONS(3233), + [anon_sym_POUNDline] = ACTIONS(3233), + [anon_sym_POUNDcolumn] = ACTIONS(3233), + [anon_sym_POUNDfunction] = ACTIONS(3233), + [anon_sym_POUNDdsohandle] = ACTIONS(3233), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3231), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3231), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3231), + [anon_sym_LT_EQ] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3231), + [anon_sym_SLASH] = ACTIONS(3231), + [anon_sym_PERCENT] = ACTIONS(3231), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3233), + [sym__plus_then_ws] = ACTIONS(3233), + [sym__minus_then_ws] = ACTIONS(3233), + [sym_bang] = ACTIONS(1069), + }, + [776] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1506), + [sym_boolean_literal] = STATE(1506), + [sym__string_literal] = STATE(1506), + [sym_line_string_literal] = STATE(1506), + [sym_multi_line_string_literal] = STATE(1506), + [sym_raw_string_literal] = STATE(1506), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1506), + [sym__unary_expression] = STATE(1506), + [sym_postfix_expression] = STATE(1506), + [sym_constructor_expression] = STATE(1506), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1506), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1506), + [sym_prefix_expression] = STATE(1506), + [sym_as_expression] = STATE(1506), + [sym_selector_expression] = STATE(1506), + [sym__binary_expression] = STATE(1506), + [sym_multiplicative_expression] = STATE(1506), + [sym_additive_expression] = STATE(1506), + [sym_range_expression] = STATE(1506), + [sym_infix_expression] = STATE(1506), + [sym_nil_coalescing_expression] = STATE(1506), + [sym_check_expression] = STATE(1506), + [sym_comparison_expression] = STATE(1506), + [sym_equality_expression] = STATE(1506), + [sym_conjunction_expression] = STATE(1506), + [sym_disjunction_expression] = STATE(1506), + [sym_bitwise_operation] = STATE(1506), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1506), + [sym_await_expression] = STATE(1506), + [sym_ternary_expression] = STATE(1506), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1506), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1506), + [sym_dictionary_literal] = STATE(1506), + [sym__special_literal] = STATE(1506), + [sym__playground_literal] = STATE(1506), + [sym_lambda_literal] = STATE(1506), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1506), + [sym_key_path_expression] = STATE(1506), + [sym_key_path_string_expression] = STATE(1506), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1506), + [sym__comparison_operator] = STATE(1506), + [sym__additive_operator] = STATE(1506), + [sym__multiplicative_operator] = STATE(1506), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1506), + [sym__referenceable_operator] = STATE(1506), + [sym__eq_eq] = STATE(1506), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3235), + [sym_real_literal] = ACTIONS(3237), + [sym_integer_literal] = ACTIONS(3235), + [sym_hex_literal] = ACTIONS(3237), + [sym_oct_literal] = ACTIONS(3237), + [sym_bin_literal] = ACTIONS(3237), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3235), + [anon_sym_GT] = ACTIONS(3235), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3235), + [anon_sym_POUNDfileID] = ACTIONS(3237), + [anon_sym_POUNDfilePath] = ACTIONS(3237), + [anon_sym_POUNDline] = ACTIONS(3237), + [anon_sym_POUNDcolumn] = ACTIONS(3237), + [anon_sym_POUNDfunction] = ACTIONS(3237), + [anon_sym_POUNDdsohandle] = ACTIONS(3237), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3235), + [anon_sym_LT_EQ] = ACTIONS(3235), + [anon_sym_GT_EQ] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3235), + [anon_sym_SLASH] = ACTIONS(3235), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3237), + [sym__plus_then_ws] = ACTIONS(3237), + [sym__minus_then_ws] = ACTIONS(3237), + [sym_bang] = ACTIONS(833), + }, + [777] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2091), + [sym_boolean_literal] = STATE(2091), + [sym__string_literal] = STATE(2091), + [sym_line_string_literal] = STATE(2091), + [sym_multi_line_string_literal] = STATE(2091), + [sym_raw_string_literal] = STATE(2091), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2091), + [sym__unary_expression] = STATE(2091), + [sym_postfix_expression] = STATE(2091), + [sym_constructor_expression] = STATE(2091), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2091), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2091), + [sym_prefix_expression] = STATE(2091), + [sym_as_expression] = STATE(2091), + [sym_selector_expression] = STATE(2091), + [sym__binary_expression] = STATE(2091), + [sym_multiplicative_expression] = STATE(2091), + [sym_additive_expression] = STATE(2091), + [sym_range_expression] = STATE(2091), + [sym_infix_expression] = STATE(2091), + [sym_nil_coalescing_expression] = STATE(2091), + [sym_check_expression] = STATE(2091), + [sym_comparison_expression] = STATE(2091), + [sym_equality_expression] = STATE(2091), + [sym_conjunction_expression] = STATE(2091), + [sym_disjunction_expression] = STATE(2091), + [sym_bitwise_operation] = STATE(2091), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2091), + [sym_await_expression] = STATE(2091), + [sym_ternary_expression] = STATE(2091), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2091), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2091), + [sym_dictionary_literal] = STATE(2091), + [sym__special_literal] = STATE(2091), + [sym__playground_literal] = STATE(2091), + [sym_lambda_literal] = STATE(2091), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2091), + [sym_key_path_expression] = STATE(2091), + [sym_key_path_string_expression] = STATE(2091), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2091), + [sym__comparison_operator] = STATE(2091), + [sym__additive_operator] = STATE(2091), + [sym__multiplicative_operator] = STATE(2091), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2091), + [sym__referenceable_operator] = STATE(2091), + [sym__eq_eq] = STATE(2091), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3239), + [sym_real_literal] = ACTIONS(3241), + [sym_integer_literal] = ACTIONS(3239), + [sym_hex_literal] = ACTIONS(3241), + [sym_oct_literal] = ACTIONS(3241), + [sym_bin_literal] = ACTIONS(3241), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_GT] = ACTIONS(3239), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3239), + [anon_sym_POUNDfileID] = ACTIONS(3241), + [anon_sym_POUNDfilePath] = ACTIONS(3241), + [anon_sym_POUNDline] = ACTIONS(3241), + [anon_sym_POUNDcolumn] = ACTIONS(3241), + [anon_sym_POUNDfunction] = ACTIONS(3241), + [anon_sym_POUNDdsohandle] = ACTIONS(3241), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3239), + [anon_sym_LT_EQ] = ACTIONS(3239), + [anon_sym_GT_EQ] = ACTIONS(3239), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3239), + [anon_sym_SLASH] = ACTIONS(3239), + [anon_sym_PERCENT] = ACTIONS(3239), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3241), + [sym__plus_then_ws] = ACTIONS(3241), + [sym__minus_then_ws] = ACTIONS(3241), + [sym_bang] = ACTIONS(1069), + }, + [778] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1505), + [sym_boolean_literal] = STATE(1505), + [sym__string_literal] = STATE(1505), + [sym_line_string_literal] = STATE(1505), + [sym_multi_line_string_literal] = STATE(1505), + [sym_raw_string_literal] = STATE(1505), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1505), + [sym__unary_expression] = STATE(1505), + [sym_postfix_expression] = STATE(1505), + [sym_constructor_expression] = STATE(1505), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1505), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1505), + [sym_prefix_expression] = STATE(1505), + [sym_as_expression] = STATE(1505), + [sym_selector_expression] = STATE(1505), + [sym__binary_expression] = STATE(1505), + [sym_multiplicative_expression] = STATE(1505), + [sym_additive_expression] = STATE(1505), + [sym_range_expression] = STATE(1505), + [sym_infix_expression] = STATE(1505), + [sym_nil_coalescing_expression] = STATE(1505), + [sym_check_expression] = STATE(1505), + [sym_comparison_expression] = STATE(1505), + [sym_equality_expression] = STATE(1505), + [sym_conjunction_expression] = STATE(1505), + [sym_disjunction_expression] = STATE(1505), + [sym_bitwise_operation] = STATE(1505), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1505), + [sym_await_expression] = STATE(1505), + [sym_ternary_expression] = STATE(1505), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1505), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1505), + [sym_dictionary_literal] = STATE(1505), + [sym__special_literal] = STATE(1505), + [sym__playground_literal] = STATE(1505), + [sym_lambda_literal] = STATE(1505), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1505), + [sym_key_path_expression] = STATE(1505), + [sym_key_path_string_expression] = STATE(1505), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1505), + [sym__comparison_operator] = STATE(1505), + [sym__additive_operator] = STATE(1505), + [sym__multiplicative_operator] = STATE(1505), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1505), + [sym__referenceable_operator] = STATE(1505), + [sym__eq_eq] = STATE(1505), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3243), + [sym_real_literal] = ACTIONS(3245), + [sym_integer_literal] = ACTIONS(3243), + [sym_hex_literal] = ACTIONS(3245), + [sym_oct_literal] = ACTIONS(3245), + [sym_bin_literal] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3243), + [anon_sym_GT] = ACTIONS(3243), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3243), + [anon_sym_POUNDfileID] = ACTIONS(3245), + [anon_sym_POUNDfilePath] = ACTIONS(3245), + [anon_sym_POUNDline] = ACTIONS(3245), + [anon_sym_POUNDcolumn] = ACTIONS(3245), + [anon_sym_POUNDfunction] = ACTIONS(3245), + [anon_sym_POUNDdsohandle] = ACTIONS(3245), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3243), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3243), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3243), + [anon_sym_LT_EQ] = ACTIONS(3243), + [anon_sym_GT_EQ] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3243), + [anon_sym_SLASH] = ACTIONS(3243), + [anon_sym_PERCENT] = ACTIONS(3243), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3245), + [sym__plus_then_ws] = ACTIONS(3245), + [sym__minus_then_ws] = ACTIONS(3245), + [sym_bang] = ACTIONS(833), + }, + [779] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1502), + [sym_boolean_literal] = STATE(1502), + [sym__string_literal] = STATE(1502), + [sym_line_string_literal] = STATE(1502), + [sym_multi_line_string_literal] = STATE(1502), + [sym_raw_string_literal] = STATE(1502), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1502), + [sym__unary_expression] = STATE(1502), + [sym_postfix_expression] = STATE(1502), + [sym_constructor_expression] = STATE(1502), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1502), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1502), + [sym_prefix_expression] = STATE(1502), + [sym_as_expression] = STATE(1502), + [sym_selector_expression] = STATE(1502), + [sym__binary_expression] = STATE(1502), + [sym_multiplicative_expression] = STATE(1502), + [sym_additive_expression] = STATE(1502), + [sym_range_expression] = STATE(1502), + [sym_infix_expression] = STATE(1502), + [sym_nil_coalescing_expression] = STATE(1502), + [sym_check_expression] = STATE(1502), + [sym_comparison_expression] = STATE(1502), + [sym_equality_expression] = STATE(1502), + [sym_conjunction_expression] = STATE(1502), + [sym_disjunction_expression] = STATE(1502), + [sym_bitwise_operation] = STATE(1502), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1502), + [sym_await_expression] = STATE(1502), + [sym_ternary_expression] = STATE(1502), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1502), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1502), + [sym_dictionary_literal] = STATE(1502), + [sym__special_literal] = STATE(1502), + [sym__playground_literal] = STATE(1502), + [sym_lambda_literal] = STATE(1502), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1502), + [sym_key_path_expression] = STATE(1502), + [sym_key_path_string_expression] = STATE(1502), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1502), + [sym__comparison_operator] = STATE(1502), + [sym__additive_operator] = STATE(1502), + [sym__multiplicative_operator] = STATE(1502), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1502), + [sym__referenceable_operator] = STATE(1502), + [sym__eq_eq] = STATE(1502), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3247), + [sym_real_literal] = ACTIONS(3249), + [sym_integer_literal] = ACTIONS(3247), + [sym_hex_literal] = ACTIONS(3249), + [sym_oct_literal] = ACTIONS(3249), + [sym_bin_literal] = ACTIONS(3249), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_GT] = ACTIONS(3247), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3247), + [anon_sym_POUNDfileID] = ACTIONS(3249), + [anon_sym_POUNDfilePath] = ACTIONS(3249), + [anon_sym_POUNDline] = ACTIONS(3249), + [anon_sym_POUNDcolumn] = ACTIONS(3249), + [anon_sym_POUNDfunction] = ACTIONS(3249), + [anon_sym_POUNDdsohandle] = ACTIONS(3249), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3247), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3247), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3247), + [anon_sym_LT_EQ] = ACTIONS(3247), + [anon_sym_GT_EQ] = ACTIONS(3247), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3247), + [anon_sym_SLASH] = ACTIONS(3247), + [anon_sym_PERCENT] = ACTIONS(3247), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3249), + [sym__plus_then_ws] = ACTIONS(3249), + [sym__minus_then_ws] = ACTIONS(3249), + [sym_bang] = ACTIONS(833), + }, + [780] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2024), + [sym_boolean_literal] = STATE(2024), + [sym__string_literal] = STATE(2024), + [sym_line_string_literal] = STATE(2024), + [sym_multi_line_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2024), + [sym__unary_expression] = STATE(2024), + [sym_postfix_expression] = STATE(2024), + [sym_constructor_expression] = STATE(2024), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2024), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2024), + [sym_prefix_expression] = STATE(2024), + [sym_as_expression] = STATE(2024), + [sym_selector_expression] = STATE(2024), + [sym__binary_expression] = STATE(2024), + [sym_multiplicative_expression] = STATE(2024), + [sym_additive_expression] = STATE(2024), + [sym_range_expression] = STATE(2024), + [sym_infix_expression] = STATE(2024), + [sym_nil_coalescing_expression] = STATE(2024), + [sym_check_expression] = STATE(2024), + [sym_comparison_expression] = STATE(2024), + [sym_equality_expression] = STATE(2024), + [sym_conjunction_expression] = STATE(2024), + [sym_disjunction_expression] = STATE(2024), + [sym_bitwise_operation] = STATE(2024), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2024), + [sym_await_expression] = STATE(2024), + [sym_ternary_expression] = STATE(2024), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2024), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2024), + [sym_dictionary_literal] = STATE(2024), + [sym__special_literal] = STATE(2024), + [sym__playground_literal] = STATE(2024), + [sym_lambda_literal] = STATE(2024), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2024), + [sym_key_path_expression] = STATE(2024), + [sym_key_path_string_expression] = STATE(2024), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2024), + [sym__comparison_operator] = STATE(2024), + [sym__additive_operator] = STATE(2024), + [sym__multiplicative_operator] = STATE(2024), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(2024), + [sym__referenceable_operator] = STATE(2024), + [sym__eq_eq] = STATE(2024), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(3251), + [sym_real_literal] = ACTIONS(3253), + [sym_integer_literal] = ACTIONS(3251), + [sym_hex_literal] = ACTIONS(3253), + [sym_oct_literal] = ACTIONS(3253), + [sym_bin_literal] = ACTIONS(3253), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_GT] = ACTIONS(3251), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(3251), + [anon_sym_POUNDfileID] = ACTIONS(3253), + [anon_sym_POUNDfilePath] = ACTIONS(3253), + [anon_sym_POUNDline] = ACTIONS(3253), + [anon_sym_POUNDcolumn] = ACTIONS(3253), + [anon_sym_POUNDfunction] = ACTIONS(3253), + [anon_sym_POUNDdsohandle] = ACTIONS(3253), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(3251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3251), + [anon_sym_LT_EQ] = ACTIONS(3251), + [anon_sym_GT_EQ] = ACTIONS(3251), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(3251), + [anon_sym_SLASH] = ACTIONS(3251), + [anon_sym_PERCENT] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(3253), + [sym__plus_then_ws] = ACTIONS(3253), + [sym__minus_then_ws] = ACTIONS(3253), + [sym_bang] = ACTIONS(137), + }, + [781] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym__string_literal] = STATE(1491), + [sym_line_string_literal] = STATE(1491), + [sym_multi_line_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1491), + [sym__unary_expression] = STATE(1491), + [sym_postfix_expression] = STATE(1491), + [sym_constructor_expression] = STATE(1491), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1491), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1491), + [sym_prefix_expression] = STATE(1491), + [sym_as_expression] = STATE(1491), + [sym_selector_expression] = STATE(1491), + [sym__binary_expression] = STATE(1491), + [sym_multiplicative_expression] = STATE(1491), + [sym_additive_expression] = STATE(1491), + [sym_range_expression] = STATE(1491), + [sym_infix_expression] = STATE(1491), + [sym_nil_coalescing_expression] = STATE(1491), + [sym_check_expression] = STATE(1491), + [sym_comparison_expression] = STATE(1491), + [sym_equality_expression] = STATE(1491), + [sym_conjunction_expression] = STATE(1491), + [sym_disjunction_expression] = STATE(1491), + [sym_bitwise_operation] = STATE(1491), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1491), + [sym_await_expression] = STATE(1491), + [sym_ternary_expression] = STATE(1491), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1491), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1491), + [sym_dictionary_literal] = STATE(1491), + [sym__special_literal] = STATE(1491), + [sym__playground_literal] = STATE(1491), + [sym_lambda_literal] = STATE(1491), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1491), + [sym_key_path_expression] = STATE(1491), + [sym_key_path_string_expression] = STATE(1491), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1491), + [sym__comparison_operator] = STATE(1491), + [sym__additive_operator] = STATE(1491), + [sym__multiplicative_operator] = STATE(1491), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1491), + [sym__referenceable_operator] = STATE(1491), + [sym__eq_eq] = STATE(1491), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3255), + [sym_real_literal] = ACTIONS(3257), + [sym_integer_literal] = ACTIONS(3255), + [sym_hex_literal] = ACTIONS(3257), + [sym_oct_literal] = ACTIONS(3257), + [sym_bin_literal] = ACTIONS(3257), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_GT] = ACTIONS(3255), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3255), + [anon_sym_POUNDfileID] = ACTIONS(3257), + [anon_sym_POUNDfilePath] = ACTIONS(3257), + [anon_sym_POUNDline] = ACTIONS(3257), + [anon_sym_POUNDcolumn] = ACTIONS(3257), + [anon_sym_POUNDfunction] = ACTIONS(3257), + [anon_sym_POUNDdsohandle] = ACTIONS(3257), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3255), + [anon_sym_LT_EQ] = ACTIONS(3255), + [anon_sym_GT_EQ] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_PERCENT] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3257), + [sym__plus_then_ws] = ACTIONS(3257), + [sym__minus_then_ws] = ACTIONS(3257), + [sym_bang] = ACTIONS(833), + }, + [782] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1508), + [sym_boolean_literal] = STATE(1508), + [sym__string_literal] = STATE(1508), + [sym_line_string_literal] = STATE(1508), + [sym_multi_line_string_literal] = STATE(1508), + [sym_raw_string_literal] = STATE(1508), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1508), + [sym__unary_expression] = STATE(1508), + [sym_postfix_expression] = STATE(1508), + [sym_constructor_expression] = STATE(1508), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1508), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1508), + [sym_prefix_expression] = STATE(1508), + [sym_as_expression] = STATE(1508), + [sym_selector_expression] = STATE(1508), + [sym__binary_expression] = STATE(1508), + [sym_multiplicative_expression] = STATE(1508), + [sym_additive_expression] = STATE(1508), + [sym_range_expression] = STATE(1508), + [sym_infix_expression] = STATE(1508), + [sym_nil_coalescing_expression] = STATE(1508), + [sym_check_expression] = STATE(1508), + [sym_comparison_expression] = STATE(1508), + [sym_equality_expression] = STATE(1508), + [sym_conjunction_expression] = STATE(1508), + [sym_disjunction_expression] = STATE(1508), + [sym_bitwise_operation] = STATE(1508), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1508), + [sym_await_expression] = STATE(1508), + [sym_ternary_expression] = STATE(1508), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1508), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1508), + [sym_dictionary_literal] = STATE(1508), + [sym__special_literal] = STATE(1508), + [sym__playground_literal] = STATE(1508), + [sym_lambda_literal] = STATE(1508), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1508), + [sym_key_path_expression] = STATE(1508), + [sym_key_path_string_expression] = STATE(1508), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1508), + [sym__comparison_operator] = STATE(1508), + [sym__additive_operator] = STATE(1508), + [sym__multiplicative_operator] = STATE(1508), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1508), + [sym__referenceable_operator] = STATE(1508), + [sym__eq_eq] = STATE(1508), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3259), + [sym_real_literal] = ACTIONS(3261), + [sym_integer_literal] = ACTIONS(3259), + [sym_hex_literal] = ACTIONS(3261), + [sym_oct_literal] = ACTIONS(3261), + [sym_bin_literal] = ACTIONS(3261), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_GT] = ACTIONS(3259), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3259), + [anon_sym_POUNDfileID] = ACTIONS(3261), + [anon_sym_POUNDfilePath] = ACTIONS(3261), + [anon_sym_POUNDline] = ACTIONS(3261), + [anon_sym_POUNDcolumn] = ACTIONS(3261), + [anon_sym_POUNDfunction] = ACTIONS(3261), + [anon_sym_POUNDdsohandle] = ACTIONS(3261), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3259), + [anon_sym_LT_EQ] = ACTIONS(3259), + [anon_sym_GT_EQ] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3259), + [anon_sym_SLASH] = ACTIONS(3259), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3261), + [sym__plus_then_ws] = ACTIONS(3261), + [sym__minus_then_ws] = ACTIONS(3261), + [sym_bang] = ACTIONS(833), + }, + [783] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2155), + [sym_boolean_literal] = STATE(2155), + [sym__string_literal] = STATE(2155), + [sym_line_string_literal] = STATE(2155), + [sym_multi_line_string_literal] = STATE(2155), + [sym_raw_string_literal] = STATE(2155), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2155), + [sym__unary_expression] = STATE(2155), + [sym_postfix_expression] = STATE(2155), + [sym_constructor_expression] = STATE(2155), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2155), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2155), + [sym_prefix_expression] = STATE(2155), + [sym_as_expression] = STATE(2155), + [sym_selector_expression] = STATE(2155), + [sym__binary_expression] = STATE(2155), + [sym_multiplicative_expression] = STATE(2155), + [sym_additive_expression] = STATE(2155), + [sym_range_expression] = STATE(2155), + [sym_infix_expression] = STATE(2155), + [sym_nil_coalescing_expression] = STATE(2155), + [sym_check_expression] = STATE(2155), + [sym_comparison_expression] = STATE(2155), + [sym_equality_expression] = STATE(2155), + [sym_conjunction_expression] = STATE(2155), + [sym_disjunction_expression] = STATE(2155), + [sym_bitwise_operation] = STATE(2155), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2155), + [sym_await_expression] = STATE(2155), + [sym_ternary_expression] = STATE(2155), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2155), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2155), + [sym_dictionary_literal] = STATE(2155), + [sym__special_literal] = STATE(2155), + [sym__playground_literal] = STATE(2155), + [sym_lambda_literal] = STATE(2155), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2155), + [sym_key_path_expression] = STATE(2155), + [sym_key_path_string_expression] = STATE(2155), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2155), + [sym__comparison_operator] = STATE(2155), + [sym__additive_operator] = STATE(2155), + [sym__multiplicative_operator] = STATE(2155), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2155), + [sym__referenceable_operator] = STATE(2155), + [sym__eq_eq] = STATE(2155), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3263), + [sym_real_literal] = ACTIONS(3265), + [sym_integer_literal] = ACTIONS(3263), + [sym_hex_literal] = ACTIONS(3265), + [sym_oct_literal] = ACTIONS(3265), + [sym_bin_literal] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3263), + [anon_sym_GT] = ACTIONS(3263), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3263), + [anon_sym_POUNDfileID] = ACTIONS(3265), + [anon_sym_POUNDfilePath] = ACTIONS(3265), + [anon_sym_POUNDline] = ACTIONS(3265), + [anon_sym_POUNDcolumn] = ACTIONS(3265), + [anon_sym_POUNDfunction] = ACTIONS(3265), + [anon_sym_POUNDdsohandle] = ACTIONS(3265), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3263), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3263), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3263), + [anon_sym_LT_EQ] = ACTIONS(3263), + [anon_sym_GT_EQ] = ACTIONS(3263), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_SLASH] = ACTIONS(3263), + [anon_sym_PERCENT] = ACTIONS(3263), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3265), + [sym__plus_then_ws] = ACTIONS(3265), + [sym__minus_then_ws] = ACTIONS(3265), + [sym_bang] = ACTIONS(1069), + }, + [784] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1959), + [sym_boolean_literal] = STATE(1959), + [sym__string_literal] = STATE(1959), + [sym_line_string_literal] = STATE(1959), + [sym_multi_line_string_literal] = STATE(1959), + [sym_raw_string_literal] = STATE(1959), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1959), + [sym__unary_expression] = STATE(1959), + [sym_postfix_expression] = STATE(1959), + [sym_constructor_expression] = STATE(1959), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1959), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1959), + [sym_prefix_expression] = STATE(1959), + [sym_as_expression] = STATE(1959), + [sym_selector_expression] = STATE(1959), + [sym__binary_expression] = STATE(1959), + [sym_multiplicative_expression] = STATE(1959), + [sym_additive_expression] = STATE(1959), + [sym_range_expression] = STATE(1959), + [sym_infix_expression] = STATE(1959), + [sym_nil_coalescing_expression] = STATE(1959), + [sym_check_expression] = STATE(1959), + [sym_comparison_expression] = STATE(1959), + [sym_equality_expression] = STATE(1959), + [sym_conjunction_expression] = STATE(1959), + [sym_disjunction_expression] = STATE(1959), + [sym_bitwise_operation] = STATE(1959), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1959), + [sym_await_expression] = STATE(1959), + [sym_ternary_expression] = STATE(1959), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1959), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1959), + [sym_dictionary_literal] = STATE(1959), + [sym__special_literal] = STATE(1959), + [sym__playground_literal] = STATE(1959), + [sym_lambda_literal] = STATE(1959), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1959), + [sym_key_path_expression] = STATE(1959), + [sym_key_path_string_expression] = STATE(1959), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1959), + [sym__comparison_operator] = STATE(1959), + [sym__additive_operator] = STATE(1959), + [sym__multiplicative_operator] = STATE(1959), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1959), + [sym__referenceable_operator] = STATE(1959), + [sym__eq_eq] = STATE(1959), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3267), + [sym_real_literal] = ACTIONS(3269), + [sym_integer_literal] = ACTIONS(3267), + [sym_hex_literal] = ACTIONS(3269), + [sym_oct_literal] = ACTIONS(3269), + [sym_bin_literal] = ACTIONS(3269), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3267), + [anon_sym_GT] = ACTIONS(3267), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3267), + [anon_sym_POUNDfileID] = ACTIONS(3269), + [anon_sym_POUNDfilePath] = ACTIONS(3269), + [anon_sym_POUNDline] = ACTIONS(3269), + [anon_sym_POUNDcolumn] = ACTIONS(3269), + [anon_sym_POUNDfunction] = ACTIONS(3269), + [anon_sym_POUNDdsohandle] = ACTIONS(3269), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3267), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3267), + [anon_sym_SLASH] = ACTIONS(3267), + [anon_sym_PERCENT] = ACTIONS(3267), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3269), + [sym__plus_then_ws] = ACTIONS(3269), + [sym__minus_then_ws] = ACTIONS(3269), + [sym_bang] = ACTIONS(1069), + }, + [785] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2025), + [sym_boolean_literal] = STATE(2025), + [sym__string_literal] = STATE(2025), + [sym_line_string_literal] = STATE(2025), + [sym_multi_line_string_literal] = STATE(2025), + [sym_raw_string_literal] = STATE(2025), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2025), + [sym__unary_expression] = STATE(2025), + [sym_postfix_expression] = STATE(2025), + [sym_constructor_expression] = STATE(2025), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2025), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2025), + [sym_prefix_expression] = STATE(2025), + [sym_as_expression] = STATE(2025), + [sym_selector_expression] = STATE(2025), + [sym__binary_expression] = STATE(2025), + [sym_multiplicative_expression] = STATE(2025), + [sym_additive_expression] = STATE(2025), + [sym_range_expression] = STATE(2025), + [sym_infix_expression] = STATE(2025), + [sym_nil_coalescing_expression] = STATE(2025), + [sym_check_expression] = STATE(2025), + [sym_comparison_expression] = STATE(2025), + [sym_equality_expression] = STATE(2025), + [sym_conjunction_expression] = STATE(2025), + [sym_disjunction_expression] = STATE(2025), + [sym_bitwise_operation] = STATE(2025), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2025), + [sym_await_expression] = STATE(2025), + [sym_ternary_expression] = STATE(2025), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2025), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2025), + [sym_dictionary_literal] = STATE(2025), + [sym__special_literal] = STATE(2025), + [sym__playground_literal] = STATE(2025), + [sym_lambda_literal] = STATE(2025), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2025), + [sym_key_path_expression] = STATE(2025), + [sym_key_path_string_expression] = STATE(2025), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2025), + [sym__comparison_operator] = STATE(2025), + [sym__additive_operator] = STATE(2025), + [sym__multiplicative_operator] = STATE(2025), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(2025), + [sym__referenceable_operator] = STATE(2025), + [sym__eq_eq] = STATE(2025), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(3271), + [sym_real_literal] = ACTIONS(3273), + [sym_integer_literal] = ACTIONS(3271), + [sym_hex_literal] = ACTIONS(3273), + [sym_oct_literal] = ACTIONS(3273), + [sym_bin_literal] = ACTIONS(3273), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_GT] = ACTIONS(3271), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(3271), + [anon_sym_POUNDfileID] = ACTIONS(3273), + [anon_sym_POUNDfilePath] = ACTIONS(3273), + [anon_sym_POUNDline] = ACTIONS(3273), + [anon_sym_POUNDcolumn] = ACTIONS(3273), + [anon_sym_POUNDfunction] = ACTIONS(3273), + [anon_sym_POUNDdsohandle] = ACTIONS(3273), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(3271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3271), + [anon_sym_LT_EQ] = ACTIONS(3271), + [anon_sym_GT_EQ] = ACTIONS(3271), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(3271), + [anon_sym_SLASH] = ACTIONS(3271), + [anon_sym_PERCENT] = ACTIONS(3271), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(3273), + [sym__plus_then_ws] = ACTIONS(3273), + [sym__minus_then_ws] = ACTIONS(3273), + [sym_bang] = ACTIONS(137), + }, + [786] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2090), + [sym_boolean_literal] = STATE(2090), + [sym__string_literal] = STATE(2090), + [sym_line_string_literal] = STATE(2090), + [sym_multi_line_string_literal] = STATE(2090), + [sym_raw_string_literal] = STATE(2090), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2090), + [sym__unary_expression] = STATE(2090), + [sym_postfix_expression] = STATE(2090), + [sym_constructor_expression] = STATE(2090), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2090), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2090), + [sym_prefix_expression] = STATE(2090), + [sym_as_expression] = STATE(2090), + [sym_selector_expression] = STATE(2090), + [sym__binary_expression] = STATE(2090), + [sym_multiplicative_expression] = STATE(2090), + [sym_additive_expression] = STATE(2090), + [sym_range_expression] = STATE(2090), + [sym_infix_expression] = STATE(2090), + [sym_nil_coalescing_expression] = STATE(2090), + [sym_check_expression] = STATE(2090), + [sym_comparison_expression] = STATE(2090), + [sym_equality_expression] = STATE(2090), + [sym_conjunction_expression] = STATE(2090), + [sym_disjunction_expression] = STATE(2090), + [sym_bitwise_operation] = STATE(2090), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2090), + [sym_await_expression] = STATE(2090), + [sym_ternary_expression] = STATE(2090), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2090), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2090), + [sym_dictionary_literal] = STATE(2090), + [sym__special_literal] = STATE(2090), + [sym__playground_literal] = STATE(2090), + [sym_lambda_literal] = STATE(2090), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2090), + [sym_key_path_expression] = STATE(2090), + [sym_key_path_string_expression] = STATE(2090), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2090), + [sym__comparison_operator] = STATE(2090), + [sym__additive_operator] = STATE(2090), + [sym__multiplicative_operator] = STATE(2090), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2090), + [sym__referenceable_operator] = STATE(2090), + [sym__eq_eq] = STATE(2090), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3275), + [sym_real_literal] = ACTIONS(3277), + [sym_integer_literal] = ACTIONS(3275), + [sym_hex_literal] = ACTIONS(3277), + [sym_oct_literal] = ACTIONS(3277), + [sym_bin_literal] = ACTIONS(3277), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_GT] = ACTIONS(3275), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3275), + [anon_sym_POUNDfileID] = ACTIONS(3277), + [anon_sym_POUNDfilePath] = ACTIONS(3277), + [anon_sym_POUNDline] = ACTIONS(3277), + [anon_sym_POUNDcolumn] = ACTIONS(3277), + [anon_sym_POUNDfunction] = ACTIONS(3277), + [anon_sym_POUNDdsohandle] = ACTIONS(3277), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3275), + [anon_sym_LT_EQ] = ACTIONS(3275), + [anon_sym_GT_EQ] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_PERCENT] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3277), + [sym__plus_then_ws] = ACTIONS(3277), + [sym__minus_then_ws] = ACTIONS(3277), + [sym_bang] = ACTIONS(1069), + }, + [787] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1960), + [sym_boolean_literal] = STATE(1960), + [sym__string_literal] = STATE(1960), + [sym_line_string_literal] = STATE(1960), + [sym_multi_line_string_literal] = STATE(1960), + [sym_raw_string_literal] = STATE(1960), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1960), + [sym__unary_expression] = STATE(1960), + [sym_postfix_expression] = STATE(1960), + [sym_constructor_expression] = STATE(1960), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1960), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1960), + [sym_prefix_expression] = STATE(1960), + [sym_as_expression] = STATE(1960), + [sym_selector_expression] = STATE(1960), + [sym__binary_expression] = STATE(1960), + [sym_multiplicative_expression] = STATE(1960), + [sym_additive_expression] = STATE(1960), + [sym_range_expression] = STATE(1960), + [sym_infix_expression] = STATE(1960), + [sym_nil_coalescing_expression] = STATE(1960), + [sym_check_expression] = STATE(1960), + [sym_comparison_expression] = STATE(1960), + [sym_equality_expression] = STATE(1960), + [sym_conjunction_expression] = STATE(1960), + [sym_disjunction_expression] = STATE(1960), + [sym_bitwise_operation] = STATE(1960), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1960), + [sym_await_expression] = STATE(1960), + [sym_ternary_expression] = STATE(1960), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1960), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1960), + [sym_dictionary_literal] = STATE(1960), + [sym__special_literal] = STATE(1960), + [sym__playground_literal] = STATE(1960), + [sym_lambda_literal] = STATE(1960), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1960), + [sym_key_path_expression] = STATE(1960), + [sym_key_path_string_expression] = STATE(1960), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1960), + [sym__comparison_operator] = STATE(1960), + [sym__additive_operator] = STATE(1960), + [sym__multiplicative_operator] = STATE(1960), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1960), + [sym__referenceable_operator] = STATE(1960), + [sym__eq_eq] = STATE(1960), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3279), + [sym_real_literal] = ACTIONS(3281), + [sym_integer_literal] = ACTIONS(3279), + [sym_hex_literal] = ACTIONS(3281), + [sym_oct_literal] = ACTIONS(3281), + [sym_bin_literal] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3279), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3279), + [anon_sym_POUNDfileID] = ACTIONS(3281), + [anon_sym_POUNDfilePath] = ACTIONS(3281), + [anon_sym_POUNDline] = ACTIONS(3281), + [anon_sym_POUNDcolumn] = ACTIONS(3281), + [anon_sym_POUNDfunction] = ACTIONS(3281), + [anon_sym_POUNDdsohandle] = ACTIONS(3281), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3279), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3279), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT_EQ] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3279), + [anon_sym_SLASH] = ACTIONS(3279), + [anon_sym_PERCENT] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3281), + [sym__plus_then_ws] = ACTIONS(3281), + [sym__minus_then_ws] = ACTIONS(3281), + [sym_bang] = ACTIONS(1069), + }, + [788] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2156), + [sym_boolean_literal] = STATE(2156), + [sym__string_literal] = STATE(2156), + [sym_line_string_literal] = STATE(2156), + [sym_multi_line_string_literal] = STATE(2156), + [sym_raw_string_literal] = STATE(2156), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2156), + [sym__unary_expression] = STATE(2156), + [sym_postfix_expression] = STATE(2156), + [sym_constructor_expression] = STATE(2156), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2156), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2156), + [sym_prefix_expression] = STATE(2156), + [sym_as_expression] = STATE(2156), + [sym_selector_expression] = STATE(2156), + [sym__binary_expression] = STATE(2156), + [sym_multiplicative_expression] = STATE(2156), + [sym_additive_expression] = STATE(2156), + [sym_range_expression] = STATE(2156), + [sym_infix_expression] = STATE(2156), + [sym_nil_coalescing_expression] = STATE(2156), + [sym_check_expression] = STATE(2156), + [sym_comparison_expression] = STATE(2156), + [sym_equality_expression] = STATE(2156), + [sym_conjunction_expression] = STATE(2156), + [sym_disjunction_expression] = STATE(2156), + [sym_bitwise_operation] = STATE(2156), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2156), + [sym_await_expression] = STATE(2156), + [sym_ternary_expression] = STATE(2156), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2156), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2156), + [sym_dictionary_literal] = STATE(2156), + [sym__special_literal] = STATE(2156), + [sym__playground_literal] = STATE(2156), + [sym_lambda_literal] = STATE(2156), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2156), + [sym_key_path_expression] = STATE(2156), + [sym_key_path_string_expression] = STATE(2156), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2156), + [sym__comparison_operator] = STATE(2156), + [sym__additive_operator] = STATE(2156), + [sym__multiplicative_operator] = STATE(2156), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2156), + [sym__referenceable_operator] = STATE(2156), + [sym__eq_eq] = STATE(2156), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3283), + [sym_real_literal] = ACTIONS(3285), + [sym_integer_literal] = ACTIONS(3283), + [sym_hex_literal] = ACTIONS(3285), + [sym_oct_literal] = ACTIONS(3285), + [sym_bin_literal] = ACTIONS(3285), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_GT] = ACTIONS(3283), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3283), + [anon_sym_POUNDfileID] = ACTIONS(3285), + [anon_sym_POUNDfilePath] = ACTIONS(3285), + [anon_sym_POUNDline] = ACTIONS(3285), + [anon_sym_POUNDcolumn] = ACTIONS(3285), + [anon_sym_POUNDfunction] = ACTIONS(3285), + [anon_sym_POUNDdsohandle] = ACTIONS(3285), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3283), + [anon_sym_LT_EQ] = ACTIONS(3283), + [anon_sym_GT_EQ] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_PERCENT] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3285), + [sym__plus_then_ws] = ACTIONS(3285), + [sym__minus_then_ws] = ACTIONS(3285), + [sym_bang] = ACTIONS(1069), + }, + [789] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1681), + [sym_boolean_literal] = STATE(1681), + [sym__string_literal] = STATE(1681), + [sym_line_string_literal] = STATE(1681), + [sym_multi_line_string_literal] = STATE(1681), + [sym_raw_string_literal] = STATE(1681), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1681), + [sym__unary_expression] = STATE(1681), + [sym_postfix_expression] = STATE(1681), + [sym_constructor_expression] = STATE(1681), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1681), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1681), + [sym_prefix_expression] = STATE(1681), + [sym_as_expression] = STATE(1681), + [sym_selector_expression] = STATE(1681), + [sym__binary_expression] = STATE(1681), + [sym_multiplicative_expression] = STATE(1681), + [sym_additive_expression] = STATE(1681), + [sym_range_expression] = STATE(1681), + [sym_infix_expression] = STATE(1681), + [sym_nil_coalescing_expression] = STATE(1681), + [sym_check_expression] = STATE(1681), + [sym_comparison_expression] = STATE(1681), + [sym_equality_expression] = STATE(1681), + [sym_conjunction_expression] = STATE(1681), + [sym_disjunction_expression] = STATE(1681), + [sym_bitwise_operation] = STATE(1681), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1681), + [sym_await_expression] = STATE(1681), + [sym_ternary_expression] = STATE(1681), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1681), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1681), + [sym_dictionary_literal] = STATE(1681), + [sym__special_literal] = STATE(1681), + [sym__playground_literal] = STATE(1681), + [sym_lambda_literal] = STATE(1681), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1681), + [sym_key_path_expression] = STATE(1681), + [sym_key_path_string_expression] = STATE(1681), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1681), + [sym__comparison_operator] = STATE(1681), + [sym__additive_operator] = STATE(1681), + [sym__multiplicative_operator] = STATE(1681), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1681), + [sym__referenceable_operator] = STATE(1681), + [sym__eq_eq] = STATE(1681), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3287), + [sym_real_literal] = ACTIONS(3289), + [sym_integer_literal] = ACTIONS(3287), + [sym_hex_literal] = ACTIONS(3289), + [sym_oct_literal] = ACTIONS(3289), + [sym_bin_literal] = ACTIONS(3289), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_GT] = ACTIONS(3287), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3287), + [anon_sym_POUNDfileID] = ACTIONS(3289), + [anon_sym_POUNDfilePath] = ACTIONS(3289), + [anon_sym_POUNDline] = ACTIONS(3289), + [anon_sym_POUNDcolumn] = ACTIONS(3289), + [anon_sym_POUNDfunction] = ACTIONS(3289), + [anon_sym_POUNDdsohandle] = ACTIONS(3289), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3287), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3287), + [anon_sym_LT_EQ] = ACTIONS(3287), + [anon_sym_GT_EQ] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_SLASH] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3289), + [sym__plus_then_ws] = ACTIONS(3289), + [sym__minus_then_ws] = ACTIONS(3289), + [sym_bang] = ACTIONS(1069), + }, + [790] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2089), + [sym_boolean_literal] = STATE(2089), + [sym__string_literal] = STATE(2089), + [sym_line_string_literal] = STATE(2089), + [sym_multi_line_string_literal] = STATE(2089), + [sym_raw_string_literal] = STATE(2089), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2089), + [sym__unary_expression] = STATE(2089), + [sym_postfix_expression] = STATE(2089), + [sym_constructor_expression] = STATE(2089), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2089), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2089), + [sym_prefix_expression] = STATE(2089), + [sym_as_expression] = STATE(2089), + [sym_selector_expression] = STATE(2089), + [sym__binary_expression] = STATE(2089), + [sym_multiplicative_expression] = STATE(2089), + [sym_additive_expression] = STATE(2089), + [sym_range_expression] = STATE(2089), + [sym_infix_expression] = STATE(2089), + [sym_nil_coalescing_expression] = STATE(2089), + [sym_check_expression] = STATE(2089), + [sym_comparison_expression] = STATE(2089), + [sym_equality_expression] = STATE(2089), + [sym_conjunction_expression] = STATE(2089), + [sym_disjunction_expression] = STATE(2089), + [sym_bitwise_operation] = STATE(2089), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2089), + [sym_await_expression] = STATE(2089), + [sym_ternary_expression] = STATE(2089), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2089), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2089), + [sym_dictionary_literal] = STATE(2089), + [sym__special_literal] = STATE(2089), + [sym__playground_literal] = STATE(2089), + [sym_lambda_literal] = STATE(2089), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2089), + [sym_key_path_expression] = STATE(2089), + [sym_key_path_string_expression] = STATE(2089), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2089), + [sym__comparison_operator] = STATE(2089), + [sym__additive_operator] = STATE(2089), + [sym__multiplicative_operator] = STATE(2089), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2089), + [sym__referenceable_operator] = STATE(2089), + [sym__eq_eq] = STATE(2089), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3291), + [sym_real_literal] = ACTIONS(3293), + [sym_integer_literal] = ACTIONS(3291), + [sym_hex_literal] = ACTIONS(3293), + [sym_oct_literal] = ACTIONS(3293), + [sym_bin_literal] = ACTIONS(3293), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3291), + [anon_sym_GT] = ACTIONS(3291), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3291), + [anon_sym_POUNDfileID] = ACTIONS(3293), + [anon_sym_POUNDfilePath] = ACTIONS(3293), + [anon_sym_POUNDline] = ACTIONS(3293), + [anon_sym_POUNDcolumn] = ACTIONS(3293), + [anon_sym_POUNDfunction] = ACTIONS(3293), + [anon_sym_POUNDdsohandle] = ACTIONS(3293), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3291), + [anon_sym_LT_EQ] = ACTIONS(3291), + [anon_sym_GT_EQ] = ACTIONS(3291), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3291), + [anon_sym_SLASH] = ACTIONS(3291), + [anon_sym_PERCENT] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3293), + [sym__plus_then_ws] = ACTIONS(3293), + [sym__minus_then_ws] = ACTIONS(3293), + [sym_bang] = ACTIONS(1069), + }, + [791] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1497), + [sym_boolean_literal] = STATE(1497), + [sym__string_literal] = STATE(1497), + [sym_line_string_literal] = STATE(1497), + [sym_multi_line_string_literal] = STATE(1497), + [sym_raw_string_literal] = STATE(1497), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1497), + [sym__unary_expression] = STATE(1497), + [sym_postfix_expression] = STATE(1497), + [sym_constructor_expression] = STATE(1497), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1497), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1497), + [sym_prefix_expression] = STATE(1497), + [sym_as_expression] = STATE(1497), + [sym_selector_expression] = STATE(1497), + [sym__binary_expression] = STATE(1497), + [sym_multiplicative_expression] = STATE(1497), + [sym_additive_expression] = STATE(1497), + [sym_range_expression] = STATE(1497), + [sym_infix_expression] = STATE(1497), + [sym_nil_coalescing_expression] = STATE(1497), + [sym_check_expression] = STATE(1497), + [sym_comparison_expression] = STATE(1497), + [sym_equality_expression] = STATE(1497), + [sym_conjunction_expression] = STATE(1497), + [sym_disjunction_expression] = STATE(1497), + [sym_bitwise_operation] = STATE(1497), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1497), + [sym_await_expression] = STATE(1497), + [sym_ternary_expression] = STATE(1497), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1497), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1497), + [sym_dictionary_literal] = STATE(1497), + [sym__special_literal] = STATE(1497), + [sym__playground_literal] = STATE(1497), + [sym_lambda_literal] = STATE(1497), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1497), + [sym_key_path_expression] = STATE(1497), + [sym_key_path_string_expression] = STATE(1497), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1497), + [sym__comparison_operator] = STATE(1497), + [sym__additive_operator] = STATE(1497), + [sym__multiplicative_operator] = STATE(1497), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1497), + [sym__referenceable_operator] = STATE(1497), + [sym__eq_eq] = STATE(1497), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3295), + [sym_real_literal] = ACTIONS(3297), + [sym_integer_literal] = ACTIONS(3295), + [sym_hex_literal] = ACTIONS(3297), + [sym_oct_literal] = ACTIONS(3297), + [sym_bin_literal] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_GT] = ACTIONS(3295), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3295), + [anon_sym_POUNDfileID] = ACTIONS(3297), + [anon_sym_POUNDfilePath] = ACTIONS(3297), + [anon_sym_POUNDline] = ACTIONS(3297), + [anon_sym_POUNDcolumn] = ACTIONS(3297), + [anon_sym_POUNDfunction] = ACTIONS(3297), + [anon_sym_POUNDdsohandle] = ACTIONS(3297), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3295), + [anon_sym_LT_EQ] = ACTIONS(3295), + [anon_sym_GT_EQ] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3295), + [anon_sym_SLASH] = ACTIONS(3295), + [anon_sym_PERCENT] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3297), + [sym__plus_then_ws] = ACTIONS(3297), + [sym__minus_then_ws] = ACTIONS(3297), + [sym_bang] = ACTIONS(833), + }, + [792] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1496), + [sym_boolean_literal] = STATE(1496), + [sym__string_literal] = STATE(1496), + [sym_line_string_literal] = STATE(1496), + [sym_multi_line_string_literal] = STATE(1496), + [sym_raw_string_literal] = STATE(1496), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1496), + [sym__unary_expression] = STATE(1496), + [sym_postfix_expression] = STATE(1496), + [sym_constructor_expression] = STATE(1496), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1496), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1496), + [sym_prefix_expression] = STATE(1496), + [sym_as_expression] = STATE(1496), + [sym_selector_expression] = STATE(1496), + [sym__binary_expression] = STATE(1496), + [sym_multiplicative_expression] = STATE(1496), + [sym_additive_expression] = STATE(1496), + [sym_range_expression] = STATE(1496), + [sym_infix_expression] = STATE(1496), + [sym_nil_coalescing_expression] = STATE(1496), + [sym_check_expression] = STATE(1496), + [sym_comparison_expression] = STATE(1496), + [sym_equality_expression] = STATE(1496), + [sym_conjunction_expression] = STATE(1496), + [sym_disjunction_expression] = STATE(1496), + [sym_bitwise_operation] = STATE(1496), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1496), + [sym_await_expression] = STATE(1496), + [sym_ternary_expression] = STATE(1496), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1496), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1496), + [sym_dictionary_literal] = STATE(1496), + [sym__special_literal] = STATE(1496), + [sym__playground_literal] = STATE(1496), + [sym_lambda_literal] = STATE(1496), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1496), + [sym_key_path_expression] = STATE(1496), + [sym_key_path_string_expression] = STATE(1496), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1496), + [sym__comparison_operator] = STATE(1496), + [sym__additive_operator] = STATE(1496), + [sym__multiplicative_operator] = STATE(1496), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1496), + [sym__referenceable_operator] = STATE(1496), + [sym__eq_eq] = STATE(1496), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3299), + [sym_real_literal] = ACTIONS(3301), + [sym_integer_literal] = ACTIONS(3299), + [sym_hex_literal] = ACTIONS(3301), + [sym_oct_literal] = ACTIONS(3301), + [sym_bin_literal] = ACTIONS(3301), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_GT] = ACTIONS(3299), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3299), + [anon_sym_POUNDfileID] = ACTIONS(3301), + [anon_sym_POUNDfilePath] = ACTIONS(3301), + [anon_sym_POUNDline] = ACTIONS(3301), + [anon_sym_POUNDcolumn] = ACTIONS(3301), + [anon_sym_POUNDfunction] = ACTIONS(3301), + [anon_sym_POUNDdsohandle] = ACTIONS(3301), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3299), + [anon_sym_LT_EQ] = ACTIONS(3299), + [anon_sym_GT_EQ] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3299), + [anon_sym_SLASH] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3301), + [sym__plus_then_ws] = ACTIONS(3301), + [sym__minus_then_ws] = ACTIONS(3301), + [sym_bang] = ACTIONS(833), + }, + [793] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym__string_literal] = STATE(1493), + [sym_line_string_literal] = STATE(1493), + [sym_multi_line_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1493), + [sym__unary_expression] = STATE(1493), + [sym_postfix_expression] = STATE(1493), + [sym_constructor_expression] = STATE(1493), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1493), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1493), + [sym_prefix_expression] = STATE(1493), + [sym_as_expression] = STATE(1493), + [sym_selector_expression] = STATE(1493), + [sym__binary_expression] = STATE(1493), + [sym_multiplicative_expression] = STATE(1493), + [sym_additive_expression] = STATE(1493), + [sym_range_expression] = STATE(1493), + [sym_infix_expression] = STATE(1493), + [sym_nil_coalescing_expression] = STATE(1493), + [sym_check_expression] = STATE(1493), + [sym_comparison_expression] = STATE(1493), + [sym_equality_expression] = STATE(1493), + [sym_conjunction_expression] = STATE(1493), + [sym_disjunction_expression] = STATE(1493), + [sym_bitwise_operation] = STATE(1493), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1493), + [sym_await_expression] = STATE(1493), + [sym_ternary_expression] = STATE(1493), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1493), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1493), + [sym_dictionary_literal] = STATE(1493), + [sym__special_literal] = STATE(1493), + [sym__playground_literal] = STATE(1493), + [sym_lambda_literal] = STATE(1493), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1493), + [sym_key_path_expression] = STATE(1493), + [sym_key_path_string_expression] = STATE(1493), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1493), + [sym__comparison_operator] = STATE(1493), + [sym__additive_operator] = STATE(1493), + [sym__multiplicative_operator] = STATE(1493), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1493), + [sym__referenceable_operator] = STATE(1493), + [sym__eq_eq] = STATE(1493), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3303), + [sym_real_literal] = ACTIONS(3305), + [sym_integer_literal] = ACTIONS(3303), + [sym_hex_literal] = ACTIONS(3305), + [sym_oct_literal] = ACTIONS(3305), + [sym_bin_literal] = ACTIONS(3305), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3303), + [anon_sym_GT] = ACTIONS(3303), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3303), + [anon_sym_POUNDfileID] = ACTIONS(3305), + [anon_sym_POUNDfilePath] = ACTIONS(3305), + [anon_sym_POUNDline] = ACTIONS(3305), + [anon_sym_POUNDcolumn] = ACTIONS(3305), + [anon_sym_POUNDfunction] = ACTIONS(3305), + [anon_sym_POUNDdsohandle] = ACTIONS(3305), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3303), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3303), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3303), + [anon_sym_LT_EQ] = ACTIONS(3303), + [anon_sym_GT_EQ] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3303), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_PERCENT] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3305), + [sym__plus_then_ws] = ACTIONS(3305), + [sym__minus_then_ws] = ACTIONS(3305), + [sym_bang] = ACTIONS(833), + }, + [794] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2143), + [sym_boolean_literal] = STATE(2143), + [sym__string_literal] = STATE(2143), + [sym_line_string_literal] = STATE(2143), + [sym_multi_line_string_literal] = STATE(2143), + [sym_raw_string_literal] = STATE(2143), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2143), + [sym__unary_expression] = STATE(2143), + [sym_postfix_expression] = STATE(2143), + [sym_constructor_expression] = STATE(2143), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2143), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2143), + [sym_prefix_expression] = STATE(2143), + [sym_as_expression] = STATE(2143), + [sym_selector_expression] = STATE(2143), + [sym__binary_expression] = STATE(2143), + [sym_multiplicative_expression] = STATE(2143), + [sym_additive_expression] = STATE(2143), + [sym_range_expression] = STATE(2143), + [sym_infix_expression] = STATE(2143), + [sym_nil_coalescing_expression] = STATE(2143), + [sym_check_expression] = STATE(2143), + [sym_comparison_expression] = STATE(2143), + [sym_equality_expression] = STATE(2143), + [sym_conjunction_expression] = STATE(2143), + [sym_disjunction_expression] = STATE(2143), + [sym_bitwise_operation] = STATE(2143), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2143), + [sym_await_expression] = STATE(2143), + [sym_ternary_expression] = STATE(2143), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2143), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2143), + [sym_dictionary_literal] = STATE(2143), + [sym__special_literal] = STATE(2143), + [sym__playground_literal] = STATE(2143), + [sym_lambda_literal] = STATE(2143), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2143), + [sym_key_path_expression] = STATE(2143), + [sym_key_path_string_expression] = STATE(2143), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2143), + [sym__comparison_operator] = STATE(2143), + [sym__additive_operator] = STATE(2143), + [sym__multiplicative_operator] = STATE(2143), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2143), + [sym__referenceable_operator] = STATE(2143), + [sym__eq_eq] = STATE(2143), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3307), + [sym_real_literal] = ACTIONS(3309), + [sym_integer_literal] = ACTIONS(3307), + [sym_hex_literal] = ACTIONS(3309), + [sym_oct_literal] = ACTIONS(3309), + [sym_bin_literal] = ACTIONS(3309), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3307), + [anon_sym_GT] = ACTIONS(3307), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3307), + [anon_sym_POUNDfileID] = ACTIONS(3309), + [anon_sym_POUNDfilePath] = ACTIONS(3309), + [anon_sym_POUNDline] = ACTIONS(3309), + [anon_sym_POUNDcolumn] = ACTIONS(3309), + [anon_sym_POUNDfunction] = ACTIONS(3309), + [anon_sym_POUNDdsohandle] = ACTIONS(3309), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3307), + [anon_sym_LT_EQ] = ACTIONS(3307), + [anon_sym_GT_EQ] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3307), + [anon_sym_SLASH] = ACTIONS(3307), + [anon_sym_PERCENT] = ACTIONS(3307), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3309), + [sym__plus_then_ws] = ACTIONS(3309), + [sym__minus_then_ws] = ACTIONS(3309), + [sym_bang] = ACTIONS(1069), + }, + [795] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2187), + [sym_boolean_literal] = STATE(2187), + [sym__string_literal] = STATE(2187), + [sym_line_string_literal] = STATE(2187), + [sym_multi_line_string_literal] = STATE(2187), + [sym_raw_string_literal] = STATE(2187), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2187), + [sym__unary_expression] = STATE(2187), + [sym_postfix_expression] = STATE(2187), + [sym_constructor_expression] = STATE(2187), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2187), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2187), + [sym_prefix_expression] = STATE(2187), + [sym_as_expression] = STATE(2187), + [sym_selector_expression] = STATE(2187), + [sym__binary_expression] = STATE(2187), + [sym_multiplicative_expression] = STATE(2187), + [sym_additive_expression] = STATE(2187), + [sym_range_expression] = STATE(2187), + [sym_infix_expression] = STATE(2187), + [sym_nil_coalescing_expression] = STATE(2187), + [sym_check_expression] = STATE(2187), + [sym_comparison_expression] = STATE(2187), + [sym_equality_expression] = STATE(2187), + [sym_conjunction_expression] = STATE(2187), + [sym_disjunction_expression] = STATE(2187), + [sym_bitwise_operation] = STATE(2187), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2187), + [sym_await_expression] = STATE(2187), + [sym_ternary_expression] = STATE(2187), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2187), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2187), + [sym_dictionary_literal] = STATE(2187), + [sym__special_literal] = STATE(2187), + [sym__playground_literal] = STATE(2187), + [sym_lambda_literal] = STATE(2187), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2187), + [sym_key_path_expression] = STATE(2187), + [sym_key_path_string_expression] = STATE(2187), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2187), + [sym__comparison_operator] = STATE(2187), + [sym__additive_operator] = STATE(2187), + [sym__multiplicative_operator] = STATE(2187), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2187), + [sym__referenceable_operator] = STATE(2187), + [sym__eq_eq] = STATE(2187), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3311), + [sym_real_literal] = ACTIONS(3313), + [sym_integer_literal] = ACTIONS(3311), + [sym_hex_literal] = ACTIONS(3313), + [sym_oct_literal] = ACTIONS(3313), + [sym_bin_literal] = ACTIONS(3313), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_GT] = ACTIONS(3311), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3311), + [anon_sym_POUNDfileID] = ACTIONS(3313), + [anon_sym_POUNDfilePath] = ACTIONS(3313), + [anon_sym_POUNDline] = ACTIONS(3313), + [anon_sym_POUNDcolumn] = ACTIONS(3313), + [anon_sym_POUNDfunction] = ACTIONS(3313), + [anon_sym_POUNDdsohandle] = ACTIONS(3313), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3311), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3311), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3311), + [anon_sym_LT_EQ] = ACTIONS(3311), + [anon_sym_GT_EQ] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3311), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_PERCENT] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3313), + [sym__plus_then_ws] = ACTIONS(3313), + [sym__minus_then_ws] = ACTIONS(3313), + [sym_bang] = ACTIONS(833), + }, + [796] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2235), + [sym_boolean_literal] = STATE(2235), + [sym__string_literal] = STATE(2235), + [sym_line_string_literal] = STATE(2235), + [sym_multi_line_string_literal] = STATE(2235), + [sym_raw_string_literal] = STATE(2235), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2235), + [sym__unary_expression] = STATE(2235), + [sym_postfix_expression] = STATE(2235), + [sym_constructor_expression] = STATE(2235), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2235), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2235), + [sym_prefix_expression] = STATE(2235), + [sym_as_expression] = STATE(2235), + [sym_selector_expression] = STATE(2235), + [sym__binary_expression] = STATE(2235), + [sym_multiplicative_expression] = STATE(2235), + [sym_additive_expression] = STATE(2235), + [sym_range_expression] = STATE(2235), + [sym_infix_expression] = STATE(2235), + [sym_nil_coalescing_expression] = STATE(2235), + [sym_check_expression] = STATE(2235), + [sym_comparison_expression] = STATE(2235), + [sym_equality_expression] = STATE(2235), + [sym_conjunction_expression] = STATE(2235), + [sym_disjunction_expression] = STATE(2235), + [sym_bitwise_operation] = STATE(2235), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2235), + [sym_await_expression] = STATE(2235), + [sym_ternary_expression] = STATE(2235), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2235), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2235), + [sym_dictionary_literal] = STATE(2235), + [sym__special_literal] = STATE(2235), + [sym__playground_literal] = STATE(2235), + [sym_lambda_literal] = STATE(2235), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2235), + [sym_key_path_expression] = STATE(2235), + [sym_key_path_string_expression] = STATE(2235), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2235), + [sym__comparison_operator] = STATE(2235), + [sym__additive_operator] = STATE(2235), + [sym__multiplicative_operator] = STATE(2235), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2235), + [sym__referenceable_operator] = STATE(2235), + [sym__eq_eq] = STATE(2235), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3315), + [sym_real_literal] = ACTIONS(3317), + [sym_integer_literal] = ACTIONS(3315), + [sym_hex_literal] = ACTIONS(3317), + [sym_oct_literal] = ACTIONS(3317), + [sym_bin_literal] = ACTIONS(3317), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3315), + [anon_sym_GT] = ACTIONS(3315), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3315), + [anon_sym_POUNDfileID] = ACTIONS(3317), + [anon_sym_POUNDfilePath] = ACTIONS(3317), + [anon_sym_POUNDline] = ACTIONS(3317), + [anon_sym_POUNDcolumn] = ACTIONS(3317), + [anon_sym_POUNDfunction] = ACTIONS(3317), + [anon_sym_POUNDdsohandle] = ACTIONS(3317), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3315), + [anon_sym_LT_EQ] = ACTIONS(3315), + [anon_sym_GT_EQ] = ACTIONS(3315), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3315), + [anon_sym_SLASH] = ACTIONS(3315), + [anon_sym_PERCENT] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3317), + [sym__plus_then_ws] = ACTIONS(3317), + [sym__minus_then_ws] = ACTIONS(3317), + [sym_bang] = ACTIONS(833), + }, + [797] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2162), + [sym_boolean_literal] = STATE(2162), + [sym__string_literal] = STATE(2162), + [sym_line_string_literal] = STATE(2162), + [sym_multi_line_string_literal] = STATE(2162), + [sym_raw_string_literal] = STATE(2162), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2162), + [sym__unary_expression] = STATE(2162), + [sym_postfix_expression] = STATE(2162), + [sym_constructor_expression] = STATE(2162), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2162), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2162), + [sym_prefix_expression] = STATE(2162), + [sym_as_expression] = STATE(2162), + [sym_selector_expression] = STATE(2162), + [sym__binary_expression] = STATE(2162), + [sym_multiplicative_expression] = STATE(2162), + [sym_additive_expression] = STATE(2162), + [sym_range_expression] = STATE(2162), + [sym_infix_expression] = STATE(2162), + [sym_nil_coalescing_expression] = STATE(2162), + [sym_check_expression] = STATE(2162), + [sym_comparison_expression] = STATE(2162), + [sym_equality_expression] = STATE(2162), + [sym_conjunction_expression] = STATE(2162), + [sym_disjunction_expression] = STATE(2162), + [sym_bitwise_operation] = STATE(2162), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2162), + [sym_await_expression] = STATE(2162), + [sym_ternary_expression] = STATE(2162), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2162), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2162), + [sym_dictionary_literal] = STATE(2162), + [sym__special_literal] = STATE(2162), + [sym__playground_literal] = STATE(2162), + [sym_lambda_literal] = STATE(2162), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2162), + [sym_key_path_expression] = STATE(2162), + [sym_key_path_string_expression] = STATE(2162), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2162), + [sym__comparison_operator] = STATE(2162), + [sym__additive_operator] = STATE(2162), + [sym__multiplicative_operator] = STATE(2162), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2162), + [sym__referenceable_operator] = STATE(2162), + [sym__eq_eq] = STATE(2162), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3319), + [sym_real_literal] = ACTIONS(3321), + [sym_integer_literal] = ACTIONS(3319), + [sym_hex_literal] = ACTIONS(3321), + [sym_oct_literal] = ACTIONS(3321), + [sym_bin_literal] = ACTIONS(3321), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_GT] = ACTIONS(3319), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3319), + [anon_sym_POUNDfileID] = ACTIONS(3321), + [anon_sym_POUNDfilePath] = ACTIONS(3321), + [anon_sym_POUNDline] = ACTIONS(3321), + [anon_sym_POUNDcolumn] = ACTIONS(3321), + [anon_sym_POUNDfunction] = ACTIONS(3321), + [anon_sym_POUNDdsohandle] = ACTIONS(3321), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3319), + [anon_sym_LT_EQ] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PERCENT] = ACTIONS(3319), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3321), + [sym__plus_then_ws] = ACTIONS(3321), + [sym__minus_then_ws] = ACTIONS(3321), + [sym_bang] = ACTIONS(1069), + }, + [798] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2088), + [sym_boolean_literal] = STATE(2088), + [sym__string_literal] = STATE(2088), + [sym_line_string_literal] = STATE(2088), + [sym_multi_line_string_literal] = STATE(2088), + [sym_raw_string_literal] = STATE(2088), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2088), + [sym__unary_expression] = STATE(2088), + [sym_postfix_expression] = STATE(2088), + [sym_constructor_expression] = STATE(2088), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2088), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2088), + [sym_prefix_expression] = STATE(2088), + [sym_as_expression] = STATE(2088), + [sym_selector_expression] = STATE(2088), + [sym__binary_expression] = STATE(2088), + [sym_multiplicative_expression] = STATE(2088), + [sym_additive_expression] = STATE(2088), + [sym_range_expression] = STATE(2088), + [sym_infix_expression] = STATE(2088), + [sym_nil_coalescing_expression] = STATE(2088), + [sym_check_expression] = STATE(2088), + [sym_comparison_expression] = STATE(2088), + [sym_equality_expression] = STATE(2088), + [sym_conjunction_expression] = STATE(2088), + [sym_disjunction_expression] = STATE(2088), + [sym_bitwise_operation] = STATE(2088), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2088), + [sym_await_expression] = STATE(2088), + [sym_ternary_expression] = STATE(2088), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2088), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2088), + [sym_dictionary_literal] = STATE(2088), + [sym__special_literal] = STATE(2088), + [sym__playground_literal] = STATE(2088), + [sym_lambda_literal] = STATE(2088), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2088), + [sym_key_path_expression] = STATE(2088), + [sym_key_path_string_expression] = STATE(2088), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2088), + [sym__comparison_operator] = STATE(2088), + [sym__additive_operator] = STATE(2088), + [sym__multiplicative_operator] = STATE(2088), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2088), + [sym__referenceable_operator] = STATE(2088), + [sym__eq_eq] = STATE(2088), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3323), + [sym_real_literal] = ACTIONS(3325), + [sym_integer_literal] = ACTIONS(3323), + [sym_hex_literal] = ACTIONS(3325), + [sym_oct_literal] = ACTIONS(3325), + [sym_bin_literal] = ACTIONS(3325), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_GT] = ACTIONS(3323), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3323), + [anon_sym_POUNDfileID] = ACTIONS(3325), + [anon_sym_POUNDfilePath] = ACTIONS(3325), + [anon_sym_POUNDline] = ACTIONS(3325), + [anon_sym_POUNDcolumn] = ACTIONS(3325), + [anon_sym_POUNDfunction] = ACTIONS(3325), + [anon_sym_POUNDdsohandle] = ACTIONS(3325), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3323), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3323), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3323), + [anon_sym_LT_EQ] = ACTIONS(3323), + [anon_sym_GT_EQ] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3323), + [anon_sym_SLASH] = ACTIONS(3323), + [anon_sym_PERCENT] = ACTIONS(3323), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3325), + [sym__plus_then_ws] = ACTIONS(3325), + [sym__minus_then_ws] = ACTIONS(3325), + [sym_bang] = ACTIONS(1069), + }, + [799] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1114), + [sym_boolean_literal] = STATE(1114), + [sym__string_literal] = STATE(1114), + [sym_line_string_literal] = STATE(1114), + [sym_multi_line_string_literal] = STATE(1114), + [sym_raw_string_literal] = STATE(1114), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1114), + [sym__unary_expression] = STATE(1114), + [sym_postfix_expression] = STATE(1114), + [sym_constructor_expression] = STATE(1114), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1114), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1114), + [sym_prefix_expression] = STATE(1114), + [sym_as_expression] = STATE(1114), + [sym_selector_expression] = STATE(1114), + [sym__binary_expression] = STATE(1114), + [sym_multiplicative_expression] = STATE(1114), + [sym_additive_expression] = STATE(1114), + [sym_range_expression] = STATE(1114), + [sym_infix_expression] = STATE(1114), + [sym_nil_coalescing_expression] = STATE(1114), + [sym_check_expression] = STATE(1114), + [sym_comparison_expression] = STATE(1114), + [sym_equality_expression] = STATE(1114), + [sym_conjunction_expression] = STATE(1114), + [sym_disjunction_expression] = STATE(1114), + [sym_bitwise_operation] = STATE(1114), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1114), + [sym_await_expression] = STATE(1114), + [sym_ternary_expression] = STATE(1114), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1114), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1114), + [sym_dictionary_literal] = STATE(1114), + [sym__special_literal] = STATE(1114), + [sym__playground_literal] = STATE(1114), + [sym_lambda_literal] = STATE(1114), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1114), + [sym_key_path_expression] = STATE(1114), + [sym_key_path_string_expression] = STATE(1114), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1114), + [sym__comparison_operator] = STATE(1114), + [sym__additive_operator] = STATE(1114), + [sym__multiplicative_operator] = STATE(1114), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1114), + [sym__referenceable_operator] = STATE(1114), + [sym__eq_eq] = STATE(1114), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3327), + [sym_real_literal] = ACTIONS(3329), + [sym_integer_literal] = ACTIONS(3327), + [sym_hex_literal] = ACTIONS(3329), + [sym_oct_literal] = ACTIONS(3329), + [sym_bin_literal] = ACTIONS(3329), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(3327), + [anon_sym_GT] = ACTIONS(3327), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(3327), + [anon_sym_POUNDfileID] = ACTIONS(3329), + [anon_sym_POUNDfilePath] = ACTIONS(3329), + [anon_sym_POUNDline] = ACTIONS(3329), + [anon_sym_POUNDcolumn] = ACTIONS(3329), + [anon_sym_POUNDfunction] = ACTIONS(3329), + [anon_sym_POUNDdsohandle] = ACTIONS(3329), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(3327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3327), + [anon_sym_LT_EQ] = ACTIONS(3327), + [anon_sym_GT_EQ] = ACTIONS(3327), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(3327), + [anon_sym_SLASH] = ACTIONS(3327), + [anon_sym_PERCENT] = ACTIONS(3327), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(3329), + [sym__plus_then_ws] = ACTIONS(3329), + [sym__minus_then_ws] = ACTIONS(3329), + [sym_bang] = ACTIONS(1501), + }, + [800] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2164), + [sym_boolean_literal] = STATE(2164), + [sym__string_literal] = STATE(2164), + [sym_line_string_literal] = STATE(2164), + [sym_multi_line_string_literal] = STATE(2164), + [sym_raw_string_literal] = STATE(2164), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2164), + [sym__unary_expression] = STATE(2164), + [sym_postfix_expression] = STATE(2164), + [sym_constructor_expression] = STATE(2164), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2164), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2164), + [sym_prefix_expression] = STATE(2164), + [sym_as_expression] = STATE(2164), + [sym_selector_expression] = STATE(2164), + [sym__binary_expression] = STATE(2164), + [sym_multiplicative_expression] = STATE(2164), + [sym_additive_expression] = STATE(2164), + [sym_range_expression] = STATE(2164), + [sym_infix_expression] = STATE(2164), + [sym_nil_coalescing_expression] = STATE(2164), + [sym_check_expression] = STATE(2164), + [sym_comparison_expression] = STATE(2164), + [sym_equality_expression] = STATE(2164), + [sym_conjunction_expression] = STATE(2164), + [sym_disjunction_expression] = STATE(2164), + [sym_bitwise_operation] = STATE(2164), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2164), + [sym_await_expression] = STATE(2164), + [sym_ternary_expression] = STATE(2164), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2164), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2164), + [sym_dictionary_literal] = STATE(2164), + [sym__special_literal] = STATE(2164), + [sym__playground_literal] = STATE(2164), + [sym_lambda_literal] = STATE(2164), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2164), + [sym_key_path_expression] = STATE(2164), + [sym_key_path_string_expression] = STATE(2164), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2164), + [sym__comparison_operator] = STATE(2164), + [sym__additive_operator] = STATE(2164), + [sym__multiplicative_operator] = STATE(2164), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2164), + [sym__referenceable_operator] = STATE(2164), + [sym__eq_eq] = STATE(2164), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3331), + [sym_real_literal] = ACTIONS(3333), + [sym_integer_literal] = ACTIONS(3331), + [sym_hex_literal] = ACTIONS(3333), + [sym_oct_literal] = ACTIONS(3333), + [sym_bin_literal] = ACTIONS(3333), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3331), + [anon_sym_GT] = ACTIONS(3331), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3331), + [anon_sym_POUNDfileID] = ACTIONS(3333), + [anon_sym_POUNDfilePath] = ACTIONS(3333), + [anon_sym_POUNDline] = ACTIONS(3333), + [anon_sym_POUNDcolumn] = ACTIONS(3333), + [anon_sym_POUNDfunction] = ACTIONS(3333), + [anon_sym_POUNDdsohandle] = ACTIONS(3333), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3331), + [anon_sym_LT_EQ] = ACTIONS(3331), + [anon_sym_GT_EQ] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3331), + [anon_sym_SLASH] = ACTIONS(3331), + [anon_sym_PERCENT] = ACTIONS(3331), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3333), + [sym__plus_then_ws] = ACTIONS(3333), + [sym__minus_then_ws] = ACTIONS(3333), + [sym_bang] = ACTIONS(1069), + }, + [801] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2142), + [sym_boolean_literal] = STATE(2142), + [sym__string_literal] = STATE(2142), + [sym_line_string_literal] = STATE(2142), + [sym_multi_line_string_literal] = STATE(2142), + [sym_raw_string_literal] = STATE(2142), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2142), + [sym__unary_expression] = STATE(2142), + [sym_postfix_expression] = STATE(2142), + [sym_constructor_expression] = STATE(2142), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2142), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2142), + [sym_prefix_expression] = STATE(2142), + [sym_as_expression] = STATE(2142), + [sym_selector_expression] = STATE(2142), + [sym__binary_expression] = STATE(2142), + [sym_multiplicative_expression] = STATE(2142), + [sym_additive_expression] = STATE(2142), + [sym_range_expression] = STATE(2142), + [sym_infix_expression] = STATE(2142), + [sym_nil_coalescing_expression] = STATE(2142), + [sym_check_expression] = STATE(2142), + [sym_comparison_expression] = STATE(2142), + [sym_equality_expression] = STATE(2142), + [sym_conjunction_expression] = STATE(2142), + [sym_disjunction_expression] = STATE(2142), + [sym_bitwise_operation] = STATE(2142), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2142), + [sym_await_expression] = STATE(2142), + [sym_ternary_expression] = STATE(2142), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2142), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2142), + [sym_dictionary_literal] = STATE(2142), + [sym__special_literal] = STATE(2142), + [sym__playground_literal] = STATE(2142), + [sym_lambda_literal] = STATE(2142), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2142), + [sym_key_path_expression] = STATE(2142), + [sym_key_path_string_expression] = STATE(2142), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2142), + [sym__comparison_operator] = STATE(2142), + [sym__additive_operator] = STATE(2142), + [sym__multiplicative_operator] = STATE(2142), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2142), + [sym__referenceable_operator] = STATE(2142), + [sym__eq_eq] = STATE(2142), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3335), + [sym_real_literal] = ACTIONS(3337), + [sym_integer_literal] = ACTIONS(3335), + [sym_hex_literal] = ACTIONS(3337), + [sym_oct_literal] = ACTIONS(3337), + [sym_bin_literal] = ACTIONS(3337), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3335), + [anon_sym_GT] = ACTIONS(3335), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3335), + [anon_sym_POUNDfileID] = ACTIONS(3337), + [anon_sym_POUNDfilePath] = ACTIONS(3337), + [anon_sym_POUNDline] = ACTIONS(3337), + [anon_sym_POUNDcolumn] = ACTIONS(3337), + [anon_sym_POUNDfunction] = ACTIONS(3337), + [anon_sym_POUNDdsohandle] = ACTIONS(3337), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3335), + [anon_sym_LT_EQ] = ACTIONS(3335), + [anon_sym_GT_EQ] = ACTIONS(3335), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3335), + [anon_sym_SLASH] = ACTIONS(3335), + [anon_sym_PERCENT] = ACTIONS(3335), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3337), + [sym__plus_then_ws] = ACTIONS(3337), + [sym__minus_then_ws] = ACTIONS(3337), + [sym_bang] = ACTIONS(1069), + }, + [802] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1120), + [sym_boolean_literal] = STATE(1120), + [sym__string_literal] = STATE(1120), + [sym_line_string_literal] = STATE(1120), + [sym_multi_line_string_literal] = STATE(1120), + [sym_raw_string_literal] = STATE(1120), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1120), + [sym__unary_expression] = STATE(1120), + [sym_postfix_expression] = STATE(1120), + [sym_constructor_expression] = STATE(1120), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1120), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1120), + [sym_prefix_expression] = STATE(1120), + [sym_as_expression] = STATE(1120), + [sym_selector_expression] = STATE(1120), + [sym__binary_expression] = STATE(1120), + [sym_multiplicative_expression] = STATE(1120), + [sym_additive_expression] = STATE(1120), + [sym_range_expression] = STATE(1120), + [sym_infix_expression] = STATE(1120), + [sym_nil_coalescing_expression] = STATE(1120), + [sym_check_expression] = STATE(1120), + [sym_comparison_expression] = STATE(1120), + [sym_equality_expression] = STATE(1120), + [sym_conjunction_expression] = STATE(1120), + [sym_disjunction_expression] = STATE(1120), + [sym_bitwise_operation] = STATE(1120), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1120), + [sym_await_expression] = STATE(1120), + [sym_ternary_expression] = STATE(1120), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1120), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1120), + [sym_dictionary_literal] = STATE(1120), + [sym__special_literal] = STATE(1120), + [sym__playground_literal] = STATE(1120), + [sym_lambda_literal] = STATE(1120), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1120), + [sym_key_path_expression] = STATE(1120), + [sym_key_path_string_expression] = STATE(1120), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1120), + [sym__comparison_operator] = STATE(1120), + [sym__additive_operator] = STATE(1120), + [sym__multiplicative_operator] = STATE(1120), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1120), + [sym__referenceable_operator] = STATE(1120), + [sym__eq_eq] = STATE(1120), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3339), + [sym_real_literal] = ACTIONS(3341), + [sym_integer_literal] = ACTIONS(3339), + [sym_hex_literal] = ACTIONS(3341), + [sym_oct_literal] = ACTIONS(3341), + [sym_bin_literal] = ACTIONS(3341), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(3339), + [anon_sym_GT] = ACTIONS(3339), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(3339), + [anon_sym_POUNDfileID] = ACTIONS(3341), + [anon_sym_POUNDfilePath] = ACTIONS(3341), + [anon_sym_POUNDline] = ACTIONS(3341), + [anon_sym_POUNDcolumn] = ACTIONS(3341), + [anon_sym_POUNDfunction] = ACTIONS(3341), + [anon_sym_POUNDdsohandle] = ACTIONS(3341), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(3339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3339), + [anon_sym_LT_EQ] = ACTIONS(3339), + [anon_sym_GT_EQ] = ACTIONS(3339), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(3339), + [anon_sym_SLASH] = ACTIONS(3339), + [anon_sym_PERCENT] = ACTIONS(3339), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(3341), + [sym__plus_then_ws] = ACTIONS(3341), + [sym__minus_then_ws] = ACTIONS(3341), + [sym_bang] = ACTIONS(1501), + }, + [803] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1119), + [sym_boolean_literal] = STATE(1119), + [sym__string_literal] = STATE(1119), + [sym_line_string_literal] = STATE(1119), + [sym_multi_line_string_literal] = STATE(1119), + [sym_raw_string_literal] = STATE(1119), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1119), + [sym__unary_expression] = STATE(1119), + [sym_postfix_expression] = STATE(1119), + [sym_constructor_expression] = STATE(1119), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1119), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1119), + [sym_prefix_expression] = STATE(1119), + [sym_as_expression] = STATE(1119), + [sym_selector_expression] = STATE(1119), + [sym__binary_expression] = STATE(1119), + [sym_multiplicative_expression] = STATE(1119), + [sym_additive_expression] = STATE(1119), + [sym_range_expression] = STATE(1119), + [sym_infix_expression] = STATE(1119), + [sym_nil_coalescing_expression] = STATE(1119), + [sym_check_expression] = STATE(1119), + [sym_comparison_expression] = STATE(1119), + [sym_equality_expression] = STATE(1119), + [sym_conjunction_expression] = STATE(1119), + [sym_disjunction_expression] = STATE(1119), + [sym_bitwise_operation] = STATE(1119), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1119), + [sym_await_expression] = STATE(1119), + [sym_ternary_expression] = STATE(1119), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1119), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1119), + [sym_dictionary_literal] = STATE(1119), + [sym__special_literal] = STATE(1119), + [sym__playground_literal] = STATE(1119), + [sym_lambda_literal] = STATE(1119), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1119), + [sym_key_path_expression] = STATE(1119), + [sym_key_path_string_expression] = STATE(1119), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1119), + [sym__comparison_operator] = STATE(1119), + [sym__additive_operator] = STATE(1119), + [sym__multiplicative_operator] = STATE(1119), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1119), + [sym__referenceable_operator] = STATE(1119), + [sym__eq_eq] = STATE(1119), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3343), + [sym_real_literal] = ACTIONS(3345), + [sym_integer_literal] = ACTIONS(3343), + [sym_hex_literal] = ACTIONS(3345), + [sym_oct_literal] = ACTIONS(3345), + [sym_bin_literal] = ACTIONS(3345), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(3343), + [anon_sym_GT] = ACTIONS(3343), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(3343), + [anon_sym_POUNDfileID] = ACTIONS(3345), + [anon_sym_POUNDfilePath] = ACTIONS(3345), + [anon_sym_POUNDline] = ACTIONS(3345), + [anon_sym_POUNDcolumn] = ACTIONS(3345), + [anon_sym_POUNDfunction] = ACTIONS(3345), + [anon_sym_POUNDdsohandle] = ACTIONS(3345), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(3343), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3343), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3343), + [anon_sym_LT_EQ] = ACTIONS(3343), + [anon_sym_GT_EQ] = ACTIONS(3343), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(3343), + [anon_sym_SLASH] = ACTIONS(3343), + [anon_sym_PERCENT] = ACTIONS(3343), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(3345), + [sym__plus_then_ws] = ACTIONS(3345), + [sym__minus_then_ws] = ACTIONS(3345), + [sym_bang] = ACTIONS(1501), + }, + [804] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1680), + [sym_boolean_literal] = STATE(1680), + [sym__string_literal] = STATE(1680), + [sym_line_string_literal] = STATE(1680), + [sym_multi_line_string_literal] = STATE(1680), + [sym_raw_string_literal] = STATE(1680), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1680), + [sym__unary_expression] = STATE(1680), + [sym_postfix_expression] = STATE(1680), + [sym_constructor_expression] = STATE(1680), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1680), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1680), + [sym_prefix_expression] = STATE(1680), + [sym_as_expression] = STATE(1680), + [sym_selector_expression] = STATE(1680), + [sym__binary_expression] = STATE(1680), + [sym_multiplicative_expression] = STATE(1680), + [sym_additive_expression] = STATE(1680), + [sym_range_expression] = STATE(1680), + [sym_infix_expression] = STATE(1680), + [sym_nil_coalescing_expression] = STATE(1680), + [sym_check_expression] = STATE(1680), + [sym_comparison_expression] = STATE(1680), + [sym_equality_expression] = STATE(1680), + [sym_conjunction_expression] = STATE(1680), + [sym_disjunction_expression] = STATE(1680), + [sym_bitwise_operation] = STATE(1680), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1680), + [sym_await_expression] = STATE(1680), + [sym_ternary_expression] = STATE(1680), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1680), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1680), + [sym_dictionary_literal] = STATE(1680), + [sym__special_literal] = STATE(1680), + [sym__playground_literal] = STATE(1680), + [sym_lambda_literal] = STATE(1680), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1680), + [sym_key_path_expression] = STATE(1680), + [sym_key_path_string_expression] = STATE(1680), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1680), + [sym__comparison_operator] = STATE(1680), + [sym__additive_operator] = STATE(1680), + [sym__multiplicative_operator] = STATE(1680), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1680), + [sym__referenceable_operator] = STATE(1680), + [sym__eq_eq] = STATE(1680), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3347), + [sym_real_literal] = ACTIONS(3349), + [sym_integer_literal] = ACTIONS(3347), + [sym_hex_literal] = ACTIONS(3349), + [sym_oct_literal] = ACTIONS(3349), + [sym_bin_literal] = ACTIONS(3349), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3347), + [anon_sym_GT] = ACTIONS(3347), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3347), + [anon_sym_POUNDfileID] = ACTIONS(3349), + [anon_sym_POUNDfilePath] = ACTIONS(3349), + [anon_sym_POUNDline] = ACTIONS(3349), + [anon_sym_POUNDcolumn] = ACTIONS(3349), + [anon_sym_POUNDfunction] = ACTIONS(3349), + [anon_sym_POUNDdsohandle] = ACTIONS(3349), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3347), + [anon_sym_LT_EQ] = ACTIONS(3347), + [anon_sym_GT_EQ] = ACTIONS(3347), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3347), + [anon_sym_SLASH] = ACTIONS(3347), + [anon_sym_PERCENT] = ACTIONS(3347), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3349), + [sym__plus_then_ws] = ACTIONS(3349), + [sym__minus_then_ws] = ACTIONS(3349), + [sym_bang] = ACTIONS(1069), + }, + [805] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2137), + [sym_boolean_literal] = STATE(2137), + [sym__string_literal] = STATE(2137), + [sym_line_string_literal] = STATE(2137), + [sym_multi_line_string_literal] = STATE(2137), + [sym_raw_string_literal] = STATE(2137), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2137), + [sym__unary_expression] = STATE(2137), + [sym_postfix_expression] = STATE(2137), + [sym_constructor_expression] = STATE(2137), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2137), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2137), + [sym_prefix_expression] = STATE(2137), + [sym_as_expression] = STATE(2137), + [sym_selector_expression] = STATE(2137), + [sym__binary_expression] = STATE(2137), + [sym_multiplicative_expression] = STATE(2137), + [sym_additive_expression] = STATE(2137), + [sym_range_expression] = STATE(2137), + [sym_infix_expression] = STATE(2137), + [sym_nil_coalescing_expression] = STATE(2137), + [sym_check_expression] = STATE(2137), + [sym_comparison_expression] = STATE(2137), + [sym_equality_expression] = STATE(2137), + [sym_conjunction_expression] = STATE(2137), + [sym_disjunction_expression] = STATE(2137), + [sym_bitwise_operation] = STATE(2137), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2137), + [sym_await_expression] = STATE(2137), + [sym_ternary_expression] = STATE(2137), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2137), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2137), + [sym_dictionary_literal] = STATE(2137), + [sym__special_literal] = STATE(2137), + [sym__playground_literal] = STATE(2137), + [sym_lambda_literal] = STATE(2137), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2137), + [sym_key_path_expression] = STATE(2137), + [sym_key_path_string_expression] = STATE(2137), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2137), + [sym__comparison_operator] = STATE(2137), + [sym__additive_operator] = STATE(2137), + [sym__multiplicative_operator] = STATE(2137), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2137), + [sym__referenceable_operator] = STATE(2137), + [sym__eq_eq] = STATE(2137), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3351), + [sym_real_literal] = ACTIONS(3353), + [sym_integer_literal] = ACTIONS(3351), + [sym_hex_literal] = ACTIONS(3353), + [sym_oct_literal] = ACTIONS(3353), + [sym_bin_literal] = ACTIONS(3353), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3351), + [anon_sym_GT] = ACTIONS(3351), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3351), + [anon_sym_POUNDfileID] = ACTIONS(3353), + [anon_sym_POUNDfilePath] = ACTIONS(3353), + [anon_sym_POUNDline] = ACTIONS(3353), + [anon_sym_POUNDcolumn] = ACTIONS(3353), + [anon_sym_POUNDfunction] = ACTIONS(3353), + [anon_sym_POUNDdsohandle] = ACTIONS(3353), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3351), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3351), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3351), + [anon_sym_LT_EQ] = ACTIONS(3351), + [anon_sym_GT_EQ] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3351), + [anon_sym_SLASH] = ACTIONS(3351), + [anon_sym_PERCENT] = ACTIONS(3351), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3353), + [sym__plus_then_ws] = ACTIONS(3353), + [sym__minus_then_ws] = ACTIONS(3353), + [sym_bang] = ACTIONS(1069), + }, + [806] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1128), + [sym_boolean_literal] = STATE(1128), + [sym__string_literal] = STATE(1128), + [sym_line_string_literal] = STATE(1128), + [sym_multi_line_string_literal] = STATE(1128), + [sym_raw_string_literal] = STATE(1128), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1128), + [sym__unary_expression] = STATE(1128), + [sym_postfix_expression] = STATE(1128), + [sym_constructor_expression] = STATE(1128), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1128), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1128), + [sym_prefix_expression] = STATE(1128), + [sym_as_expression] = STATE(1128), + [sym_selector_expression] = STATE(1128), + [sym__binary_expression] = STATE(1128), + [sym_multiplicative_expression] = STATE(1128), + [sym_additive_expression] = STATE(1128), + [sym_range_expression] = STATE(1128), + [sym_infix_expression] = STATE(1128), + [sym_nil_coalescing_expression] = STATE(1128), + [sym_check_expression] = STATE(1128), + [sym_comparison_expression] = STATE(1128), + [sym_equality_expression] = STATE(1128), + [sym_conjunction_expression] = STATE(1128), + [sym_disjunction_expression] = STATE(1128), + [sym_bitwise_operation] = STATE(1128), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1128), + [sym_await_expression] = STATE(1128), + [sym_ternary_expression] = STATE(1128), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1128), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1128), + [sym_dictionary_literal] = STATE(1128), + [sym__special_literal] = STATE(1128), + [sym__playground_literal] = STATE(1128), + [sym_lambda_literal] = STATE(1128), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1128), + [sym_key_path_expression] = STATE(1128), + [sym_key_path_string_expression] = STATE(1128), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1128), + [sym__comparison_operator] = STATE(1128), + [sym__additive_operator] = STATE(1128), + [sym__multiplicative_operator] = STATE(1128), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1128), + [sym__referenceable_operator] = STATE(1128), + [sym__eq_eq] = STATE(1128), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3355), + [sym_real_literal] = ACTIONS(3357), + [sym_integer_literal] = ACTIONS(3355), + [sym_hex_literal] = ACTIONS(3357), + [sym_oct_literal] = ACTIONS(3357), + [sym_bin_literal] = ACTIONS(3357), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(3355), + [anon_sym_GT] = ACTIONS(3355), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(3355), + [anon_sym_POUNDfileID] = ACTIONS(3357), + [anon_sym_POUNDfilePath] = ACTIONS(3357), + [anon_sym_POUNDline] = ACTIONS(3357), + [anon_sym_POUNDcolumn] = ACTIONS(3357), + [anon_sym_POUNDfunction] = ACTIONS(3357), + [anon_sym_POUNDdsohandle] = ACTIONS(3357), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(3355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3355), + [anon_sym_LT_EQ] = ACTIONS(3355), + [anon_sym_GT_EQ] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(3355), + [anon_sym_SLASH] = ACTIONS(3355), + [anon_sym_PERCENT] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(3357), + [sym__plus_then_ws] = ACTIONS(3357), + [sym__minus_then_ws] = ACTIONS(3357), + [sym_bang] = ACTIONS(1501), + }, + [807] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1124), + [sym_boolean_literal] = STATE(1124), + [sym__string_literal] = STATE(1124), + [sym_line_string_literal] = STATE(1124), + [sym_multi_line_string_literal] = STATE(1124), + [sym_raw_string_literal] = STATE(1124), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1124), + [sym__unary_expression] = STATE(1124), + [sym_postfix_expression] = STATE(1124), + [sym_constructor_expression] = STATE(1124), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1124), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1124), + [sym_prefix_expression] = STATE(1124), + [sym_as_expression] = STATE(1124), + [sym_selector_expression] = STATE(1124), + [sym__binary_expression] = STATE(1124), + [sym_multiplicative_expression] = STATE(1124), + [sym_additive_expression] = STATE(1124), + [sym_range_expression] = STATE(1124), + [sym_infix_expression] = STATE(1124), + [sym_nil_coalescing_expression] = STATE(1124), + [sym_check_expression] = STATE(1124), + [sym_comparison_expression] = STATE(1124), + [sym_equality_expression] = STATE(1124), + [sym_conjunction_expression] = STATE(1124), + [sym_disjunction_expression] = STATE(1124), + [sym_bitwise_operation] = STATE(1124), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1124), + [sym_await_expression] = STATE(1124), + [sym_ternary_expression] = STATE(1124), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1124), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1124), + [sym_dictionary_literal] = STATE(1124), + [sym__special_literal] = STATE(1124), + [sym__playground_literal] = STATE(1124), + [sym_lambda_literal] = STATE(1124), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1124), + [sym_key_path_expression] = STATE(1124), + [sym_key_path_string_expression] = STATE(1124), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1124), + [sym__comparison_operator] = STATE(1124), + [sym__additive_operator] = STATE(1124), + [sym__multiplicative_operator] = STATE(1124), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1124), + [sym__referenceable_operator] = STATE(1124), + [sym__eq_eq] = STATE(1124), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3359), + [sym_real_literal] = ACTIONS(3361), + [sym_integer_literal] = ACTIONS(3359), + [sym_hex_literal] = ACTIONS(3361), + [sym_oct_literal] = ACTIONS(3361), + [sym_bin_literal] = ACTIONS(3361), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_GT] = ACTIONS(3359), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(3359), + [anon_sym_POUNDfileID] = ACTIONS(3361), + [anon_sym_POUNDfilePath] = ACTIONS(3361), + [anon_sym_POUNDline] = ACTIONS(3361), + [anon_sym_POUNDcolumn] = ACTIONS(3361), + [anon_sym_POUNDfunction] = ACTIONS(3361), + [anon_sym_POUNDdsohandle] = ACTIONS(3361), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(3359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3359), + [anon_sym_LT_EQ] = ACTIONS(3359), + [anon_sym_GT_EQ] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(3359), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_PERCENT] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(3361), + [sym__plus_then_ws] = ACTIONS(3361), + [sym__minus_then_ws] = ACTIONS(3361), + [sym_bang] = ACTIONS(1501), + }, + [808] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1123), + [sym_boolean_literal] = STATE(1123), + [sym__string_literal] = STATE(1123), + [sym_line_string_literal] = STATE(1123), + [sym_multi_line_string_literal] = STATE(1123), + [sym_raw_string_literal] = STATE(1123), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1123), + [sym__unary_expression] = STATE(1123), + [sym_postfix_expression] = STATE(1123), + [sym_constructor_expression] = STATE(1123), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1123), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1123), + [sym_prefix_expression] = STATE(1123), + [sym_as_expression] = STATE(1123), + [sym_selector_expression] = STATE(1123), + [sym__binary_expression] = STATE(1123), + [sym_multiplicative_expression] = STATE(1123), + [sym_additive_expression] = STATE(1123), + [sym_range_expression] = STATE(1123), + [sym_infix_expression] = STATE(1123), + [sym_nil_coalescing_expression] = STATE(1123), + [sym_check_expression] = STATE(1123), + [sym_comparison_expression] = STATE(1123), + [sym_equality_expression] = STATE(1123), + [sym_conjunction_expression] = STATE(1123), + [sym_disjunction_expression] = STATE(1123), + [sym_bitwise_operation] = STATE(1123), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1123), + [sym_await_expression] = STATE(1123), + [sym_ternary_expression] = STATE(1123), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1123), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1123), + [sym_dictionary_literal] = STATE(1123), + [sym__special_literal] = STATE(1123), + [sym__playground_literal] = STATE(1123), + [sym_lambda_literal] = STATE(1123), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1123), + [sym_key_path_expression] = STATE(1123), + [sym_key_path_string_expression] = STATE(1123), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1123), + [sym__comparison_operator] = STATE(1123), + [sym__additive_operator] = STATE(1123), + [sym__multiplicative_operator] = STATE(1123), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1123), + [sym__referenceable_operator] = STATE(1123), + [sym__eq_eq] = STATE(1123), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3363), + [sym_real_literal] = ACTIONS(3365), + [sym_integer_literal] = ACTIONS(3363), + [sym_hex_literal] = ACTIONS(3365), + [sym_oct_literal] = ACTIONS(3365), + [sym_bin_literal] = ACTIONS(3365), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_GT] = ACTIONS(3363), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(3363), + [anon_sym_POUNDfileID] = ACTIONS(3365), + [anon_sym_POUNDfilePath] = ACTIONS(3365), + [anon_sym_POUNDline] = ACTIONS(3365), + [anon_sym_POUNDcolumn] = ACTIONS(3365), + [anon_sym_POUNDfunction] = ACTIONS(3365), + [anon_sym_POUNDdsohandle] = ACTIONS(3365), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(3363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3363), + [anon_sym_LT_EQ] = ACTIONS(3363), + [anon_sym_GT_EQ] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_PERCENT] = ACTIONS(3363), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(3365), + [sym__plus_then_ws] = ACTIONS(3365), + [sym__minus_then_ws] = ACTIONS(3365), + [sym_bang] = ACTIONS(1501), + }, + [809] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1110), + [sym_boolean_literal] = STATE(1110), + [sym__string_literal] = STATE(1110), + [sym_line_string_literal] = STATE(1110), + [sym_multi_line_string_literal] = STATE(1110), + [sym_raw_string_literal] = STATE(1110), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1110), + [sym__unary_expression] = STATE(1110), + [sym_postfix_expression] = STATE(1110), + [sym_constructor_expression] = STATE(1110), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1110), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1110), + [sym_prefix_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_selector_expression] = STATE(1110), + [sym__binary_expression] = STATE(1110), + [sym_multiplicative_expression] = STATE(1110), + [sym_additive_expression] = STATE(1110), + [sym_range_expression] = STATE(1110), + [sym_infix_expression] = STATE(1110), + [sym_nil_coalescing_expression] = STATE(1110), + [sym_check_expression] = STATE(1110), + [sym_comparison_expression] = STATE(1110), + [sym_equality_expression] = STATE(1110), + [sym_conjunction_expression] = STATE(1110), + [sym_disjunction_expression] = STATE(1110), + [sym_bitwise_operation] = STATE(1110), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1110), + [sym_await_expression] = STATE(1110), + [sym_ternary_expression] = STATE(1110), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1110), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1110), + [sym_dictionary_literal] = STATE(1110), + [sym__special_literal] = STATE(1110), + [sym__playground_literal] = STATE(1110), + [sym_lambda_literal] = STATE(1110), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1110), + [sym_key_path_expression] = STATE(1110), + [sym_key_path_string_expression] = STATE(1110), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1110), + [sym__comparison_operator] = STATE(1110), + [sym__additive_operator] = STATE(1110), + [sym__multiplicative_operator] = STATE(1110), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1110), + [sym__referenceable_operator] = STATE(1110), + [sym__eq_eq] = STATE(1110), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3367), + [sym_real_literal] = ACTIONS(3369), + [sym_integer_literal] = ACTIONS(3367), + [sym_hex_literal] = ACTIONS(3369), + [sym_oct_literal] = ACTIONS(3369), + [sym_bin_literal] = ACTIONS(3369), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_GT] = ACTIONS(3367), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(3367), + [anon_sym_POUNDfileID] = ACTIONS(3369), + [anon_sym_POUNDfilePath] = ACTIONS(3369), + [anon_sym_POUNDline] = ACTIONS(3369), + [anon_sym_POUNDcolumn] = ACTIONS(3369), + [anon_sym_POUNDfunction] = ACTIONS(3369), + [anon_sym_POUNDdsohandle] = ACTIONS(3369), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(3367), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3367), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3367), + [anon_sym_LT_EQ] = ACTIONS(3367), + [anon_sym_GT_EQ] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_PERCENT] = ACTIONS(3367), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(3369), + [sym__plus_then_ws] = ACTIONS(3369), + [sym__minus_then_ws] = ACTIONS(3369), + [sym_bang] = ACTIONS(1501), + }, + [810] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1117), + [sym_boolean_literal] = STATE(1117), + [sym__string_literal] = STATE(1117), + [sym_line_string_literal] = STATE(1117), + [sym_multi_line_string_literal] = STATE(1117), + [sym_raw_string_literal] = STATE(1117), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1117), + [sym__unary_expression] = STATE(1117), + [sym_postfix_expression] = STATE(1117), + [sym_constructor_expression] = STATE(1117), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1117), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1117), + [sym_prefix_expression] = STATE(1117), + [sym_as_expression] = STATE(1117), + [sym_selector_expression] = STATE(1117), + [sym__binary_expression] = STATE(1117), + [sym_multiplicative_expression] = STATE(1117), + [sym_additive_expression] = STATE(1117), + [sym_range_expression] = STATE(1117), + [sym_infix_expression] = STATE(1117), + [sym_nil_coalescing_expression] = STATE(1117), + [sym_check_expression] = STATE(1117), + [sym_comparison_expression] = STATE(1117), + [sym_equality_expression] = STATE(1117), + [sym_conjunction_expression] = STATE(1117), + [sym_disjunction_expression] = STATE(1117), + [sym_bitwise_operation] = STATE(1117), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1117), + [sym_await_expression] = STATE(1117), + [sym_ternary_expression] = STATE(1117), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1117), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1117), + [sym_dictionary_literal] = STATE(1117), + [sym__special_literal] = STATE(1117), + [sym__playground_literal] = STATE(1117), + [sym_lambda_literal] = STATE(1117), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1117), + [sym_key_path_expression] = STATE(1117), + [sym_key_path_string_expression] = STATE(1117), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1117), + [sym__comparison_operator] = STATE(1117), + [sym__additive_operator] = STATE(1117), + [sym__multiplicative_operator] = STATE(1117), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1117), + [sym__referenceable_operator] = STATE(1117), + [sym__eq_eq] = STATE(1117), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3371), + [sym_real_literal] = ACTIONS(3373), + [sym_integer_literal] = ACTIONS(3371), + [sym_hex_literal] = ACTIONS(3373), + [sym_oct_literal] = ACTIONS(3373), + [sym_bin_literal] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_GT] = ACTIONS(3371), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(3371), + [anon_sym_POUNDfileID] = ACTIONS(3373), + [anon_sym_POUNDfilePath] = ACTIONS(3373), + [anon_sym_POUNDline] = ACTIONS(3373), + [anon_sym_POUNDcolumn] = ACTIONS(3373), + [anon_sym_POUNDfunction] = ACTIONS(3373), + [anon_sym_POUNDdsohandle] = ACTIONS(3373), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(3371), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3371), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3371), + [anon_sym_LT_EQ] = ACTIONS(3371), + [anon_sym_GT_EQ] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(3371), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_PERCENT] = ACTIONS(3371), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(3373), + [sym__plus_then_ws] = ACTIONS(3373), + [sym__minus_then_ws] = ACTIONS(3373), + [sym_bang] = ACTIONS(1501), + }, + [811] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1529), + [sym_boolean_literal] = STATE(1529), + [sym__string_literal] = STATE(1529), + [sym_line_string_literal] = STATE(1529), + [sym_multi_line_string_literal] = STATE(1529), + [sym_raw_string_literal] = STATE(1529), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1529), + [sym__unary_expression] = STATE(1529), + [sym_postfix_expression] = STATE(1529), + [sym_constructor_expression] = STATE(1529), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1529), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1529), + [sym_prefix_expression] = STATE(1529), + [sym_as_expression] = STATE(1529), + [sym_selector_expression] = STATE(1529), + [sym__binary_expression] = STATE(1529), + [sym_multiplicative_expression] = STATE(1529), + [sym_additive_expression] = STATE(1529), + [sym_range_expression] = STATE(1529), + [sym_infix_expression] = STATE(1529), + [sym_nil_coalescing_expression] = STATE(1529), + [sym_check_expression] = STATE(1529), + [sym_comparison_expression] = STATE(1529), + [sym_equality_expression] = STATE(1529), + [sym_conjunction_expression] = STATE(1529), + [sym_disjunction_expression] = STATE(1529), + [sym_bitwise_operation] = STATE(1529), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1529), + [sym_await_expression] = STATE(1529), + [sym_ternary_expression] = STATE(1529), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1529), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1529), + [sym_dictionary_literal] = STATE(1529), + [sym__special_literal] = STATE(1529), + [sym__playground_literal] = STATE(1529), + [sym_lambda_literal] = STATE(1529), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1529), + [sym_key_path_expression] = STATE(1529), + [sym_key_path_string_expression] = STATE(1529), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1529), + [sym__comparison_operator] = STATE(1529), + [sym__additive_operator] = STATE(1529), + [sym__multiplicative_operator] = STATE(1529), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1529), + [sym__referenceable_operator] = STATE(1529), + [sym__eq_eq] = STATE(1529), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3375), + [sym_real_literal] = ACTIONS(3377), + [sym_integer_literal] = ACTIONS(3375), + [sym_hex_literal] = ACTIONS(3377), + [sym_oct_literal] = ACTIONS(3377), + [sym_bin_literal] = ACTIONS(3377), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3375), + [anon_sym_GT] = ACTIONS(3375), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3375), + [anon_sym_POUNDfileID] = ACTIONS(3377), + [anon_sym_POUNDfilePath] = ACTIONS(3377), + [anon_sym_POUNDline] = ACTIONS(3377), + [anon_sym_POUNDcolumn] = ACTIONS(3377), + [anon_sym_POUNDfunction] = ACTIONS(3377), + [anon_sym_POUNDdsohandle] = ACTIONS(3377), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3375), + [anon_sym_LT_EQ] = ACTIONS(3375), + [anon_sym_GT_EQ] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_PERCENT] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3377), + [sym__plus_then_ws] = ACTIONS(3377), + [sym__minus_then_ws] = ACTIONS(3377), + [sym_bang] = ACTIONS(1069), + }, + [812] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1115), + [sym_boolean_literal] = STATE(1115), + [sym__string_literal] = STATE(1115), + [sym_line_string_literal] = STATE(1115), + [sym_multi_line_string_literal] = STATE(1115), + [sym_raw_string_literal] = STATE(1115), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1115), + [sym__unary_expression] = STATE(1115), + [sym_postfix_expression] = STATE(1115), + [sym_constructor_expression] = STATE(1115), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1115), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1115), + [sym_prefix_expression] = STATE(1115), + [sym_as_expression] = STATE(1115), + [sym_selector_expression] = STATE(1115), + [sym__binary_expression] = STATE(1115), + [sym_multiplicative_expression] = STATE(1115), + [sym_additive_expression] = STATE(1115), + [sym_range_expression] = STATE(1115), + [sym_infix_expression] = STATE(1115), + [sym_nil_coalescing_expression] = STATE(1115), + [sym_check_expression] = STATE(1115), + [sym_comparison_expression] = STATE(1115), + [sym_equality_expression] = STATE(1115), + [sym_conjunction_expression] = STATE(1115), + [sym_disjunction_expression] = STATE(1115), + [sym_bitwise_operation] = STATE(1115), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1115), + [sym_await_expression] = STATE(1115), + [sym_ternary_expression] = STATE(1115), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1115), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1115), + [sym_dictionary_literal] = STATE(1115), + [sym__special_literal] = STATE(1115), + [sym__playground_literal] = STATE(1115), + [sym_lambda_literal] = STATE(1115), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1115), + [sym_key_path_expression] = STATE(1115), + [sym_key_path_string_expression] = STATE(1115), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1115), + [sym__comparison_operator] = STATE(1115), + [sym__additive_operator] = STATE(1115), + [sym__multiplicative_operator] = STATE(1115), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1115), + [sym__referenceable_operator] = STATE(1115), + [sym__eq_eq] = STATE(1115), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3379), + [sym_real_literal] = ACTIONS(3381), + [sym_integer_literal] = ACTIONS(3379), + [sym_hex_literal] = ACTIONS(3381), + [sym_oct_literal] = ACTIONS(3381), + [sym_bin_literal] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(3379), + [anon_sym_GT] = ACTIONS(3379), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(3379), + [anon_sym_POUNDfileID] = ACTIONS(3381), + [anon_sym_POUNDfilePath] = ACTIONS(3381), + [anon_sym_POUNDline] = ACTIONS(3381), + [anon_sym_POUNDcolumn] = ACTIONS(3381), + [anon_sym_POUNDfunction] = ACTIONS(3381), + [anon_sym_POUNDdsohandle] = ACTIONS(3381), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(3379), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3379), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3379), + [anon_sym_LT_EQ] = ACTIONS(3379), + [anon_sym_GT_EQ] = ACTIONS(3379), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_SLASH] = ACTIONS(3379), + [anon_sym_PERCENT] = ACTIONS(3379), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(3381), + [sym__plus_then_ws] = ACTIONS(3381), + [sym__minus_then_ws] = ACTIONS(3381), + [sym_bang] = ACTIONS(1501), + }, + [813] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1112), + [sym_boolean_literal] = STATE(1112), + [sym__string_literal] = STATE(1112), + [sym_line_string_literal] = STATE(1112), + [sym_multi_line_string_literal] = STATE(1112), + [sym_raw_string_literal] = STATE(1112), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1112), + [sym__unary_expression] = STATE(1112), + [sym_postfix_expression] = STATE(1112), + [sym_constructor_expression] = STATE(1112), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1112), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1112), + [sym_prefix_expression] = STATE(1112), + [sym_as_expression] = STATE(1112), + [sym_selector_expression] = STATE(1112), + [sym__binary_expression] = STATE(1112), + [sym_multiplicative_expression] = STATE(1112), + [sym_additive_expression] = STATE(1112), + [sym_range_expression] = STATE(1112), + [sym_infix_expression] = STATE(1112), + [sym_nil_coalescing_expression] = STATE(1112), + [sym_check_expression] = STATE(1112), + [sym_comparison_expression] = STATE(1112), + [sym_equality_expression] = STATE(1112), + [sym_conjunction_expression] = STATE(1112), + [sym_disjunction_expression] = STATE(1112), + [sym_bitwise_operation] = STATE(1112), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1112), + [sym_await_expression] = STATE(1112), + [sym_ternary_expression] = STATE(1112), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1112), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1112), + [sym_dictionary_literal] = STATE(1112), + [sym__special_literal] = STATE(1112), + [sym__playground_literal] = STATE(1112), + [sym_lambda_literal] = STATE(1112), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1112), + [sym_key_path_expression] = STATE(1112), + [sym_key_path_string_expression] = STATE(1112), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1112), + [sym__comparison_operator] = STATE(1112), + [sym__additive_operator] = STATE(1112), + [sym__multiplicative_operator] = STATE(1112), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1112), + [sym__referenceable_operator] = STATE(1112), + [sym__eq_eq] = STATE(1112), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3383), + [sym_real_literal] = ACTIONS(3385), + [sym_integer_literal] = ACTIONS(3383), + [sym_hex_literal] = ACTIONS(3385), + [sym_oct_literal] = ACTIONS(3385), + [sym_bin_literal] = ACTIONS(3385), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(3383), + [anon_sym_GT] = ACTIONS(3383), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(3383), + [anon_sym_POUNDfileID] = ACTIONS(3385), + [anon_sym_POUNDfilePath] = ACTIONS(3385), + [anon_sym_POUNDline] = ACTIONS(3385), + [anon_sym_POUNDcolumn] = ACTIONS(3385), + [anon_sym_POUNDfunction] = ACTIONS(3385), + [anon_sym_POUNDdsohandle] = ACTIONS(3385), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(3383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3383), + [anon_sym_LT_EQ] = ACTIONS(3383), + [anon_sym_GT_EQ] = ACTIONS(3383), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(3383), + [anon_sym_SLASH] = ACTIONS(3383), + [anon_sym_PERCENT] = ACTIONS(3383), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(3385), + [sym__plus_then_ws] = ACTIONS(3385), + [sym__minus_then_ws] = ACTIONS(3385), + [sym_bang] = ACTIONS(1501), + }, + [814] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2087), + [sym_boolean_literal] = STATE(2087), + [sym__string_literal] = STATE(2087), + [sym_line_string_literal] = STATE(2087), + [sym_multi_line_string_literal] = STATE(2087), + [sym_raw_string_literal] = STATE(2087), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2087), + [sym__unary_expression] = STATE(2087), + [sym_postfix_expression] = STATE(2087), + [sym_constructor_expression] = STATE(2087), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2087), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2087), + [sym_prefix_expression] = STATE(2087), + [sym_as_expression] = STATE(2087), + [sym_selector_expression] = STATE(2087), + [sym__binary_expression] = STATE(2087), + [sym_multiplicative_expression] = STATE(2087), + [sym_additive_expression] = STATE(2087), + [sym_range_expression] = STATE(2087), + [sym_infix_expression] = STATE(2087), + [sym_nil_coalescing_expression] = STATE(2087), + [sym_check_expression] = STATE(2087), + [sym_comparison_expression] = STATE(2087), + [sym_equality_expression] = STATE(2087), + [sym_conjunction_expression] = STATE(2087), + [sym_disjunction_expression] = STATE(2087), + [sym_bitwise_operation] = STATE(2087), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2087), + [sym_await_expression] = STATE(2087), + [sym_ternary_expression] = STATE(2087), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2087), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2087), + [sym_dictionary_literal] = STATE(2087), + [sym__special_literal] = STATE(2087), + [sym__playground_literal] = STATE(2087), + [sym_lambda_literal] = STATE(2087), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2087), + [sym_key_path_expression] = STATE(2087), + [sym_key_path_string_expression] = STATE(2087), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2087), + [sym__comparison_operator] = STATE(2087), + [sym__additive_operator] = STATE(2087), + [sym__multiplicative_operator] = STATE(2087), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2087), + [sym__referenceable_operator] = STATE(2087), + [sym__eq_eq] = STATE(2087), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3387), + [sym_real_literal] = ACTIONS(3389), + [sym_integer_literal] = ACTIONS(3387), + [sym_hex_literal] = ACTIONS(3389), + [sym_oct_literal] = ACTIONS(3389), + [sym_bin_literal] = ACTIONS(3389), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3387), + [anon_sym_GT] = ACTIONS(3387), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3387), + [anon_sym_POUNDfileID] = ACTIONS(3389), + [anon_sym_POUNDfilePath] = ACTIONS(3389), + [anon_sym_POUNDline] = ACTIONS(3389), + [anon_sym_POUNDcolumn] = ACTIONS(3389), + [anon_sym_POUNDfunction] = ACTIONS(3389), + [anon_sym_POUNDdsohandle] = ACTIONS(3389), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3387), + [anon_sym_LT_EQ] = ACTIONS(3387), + [anon_sym_GT_EQ] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_SLASH] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3389), + [sym__plus_then_ws] = ACTIONS(3389), + [sym__minus_then_ws] = ACTIONS(3389), + [sym_bang] = ACTIONS(1069), + }, + [815] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(1598), + [sym_boolean_literal] = STATE(1598), + [sym__string_literal] = STATE(1598), + [sym_line_string_literal] = STATE(1598), + [sym_multi_line_string_literal] = STATE(1598), + [sym_raw_string_literal] = STATE(1598), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(1598), + [sym__unary_expression] = STATE(1598), + [sym_postfix_expression] = STATE(1598), + [sym_constructor_expression] = STATE(1598), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(1598), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(1598), + [sym_prefix_expression] = STATE(1598), + [sym_as_expression] = STATE(1598), + [sym_selector_expression] = STATE(1598), + [sym__binary_expression] = STATE(1598), + [sym_multiplicative_expression] = STATE(1598), + [sym_additive_expression] = STATE(1598), + [sym_range_expression] = STATE(1598), + [sym_infix_expression] = STATE(1598), + [sym_nil_coalescing_expression] = STATE(1598), + [sym_check_expression] = STATE(1598), + [sym_comparison_expression] = STATE(1598), + [sym_equality_expression] = STATE(1598), + [sym_conjunction_expression] = STATE(1598), + [sym_disjunction_expression] = STATE(1598), + [sym_bitwise_operation] = STATE(1598), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(1598), + [sym_await_expression] = STATE(1598), + [sym_ternary_expression] = STATE(1598), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(1598), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(1598), + [sym_dictionary_literal] = STATE(1598), + [sym__special_literal] = STATE(1598), + [sym__playground_literal] = STATE(1598), + [sym_lambda_literal] = STATE(1598), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(1598), + [sym_key_path_expression] = STATE(1598), + [sym_key_path_string_expression] = STATE(1598), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(1598), + [sym__comparison_operator] = STATE(1598), + [sym__additive_operator] = STATE(1598), + [sym__multiplicative_operator] = STATE(1598), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(1598), + [sym__referenceable_operator] = STATE(1598), + [sym__eq_eq] = STATE(1598), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(3391), + [sym_real_literal] = ACTIONS(3393), + [sym_integer_literal] = ACTIONS(3391), + [sym_hex_literal] = ACTIONS(3393), + [sym_oct_literal] = ACTIONS(3393), + [sym_bin_literal] = ACTIONS(3393), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(3391), + [anon_sym_GT] = ACTIONS(3391), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(3391), + [anon_sym_POUNDfileID] = ACTIONS(3393), + [anon_sym_POUNDfilePath] = ACTIONS(3393), + [anon_sym_POUNDline] = ACTIONS(3393), + [anon_sym_POUNDcolumn] = ACTIONS(3393), + [anon_sym_POUNDfunction] = ACTIONS(3393), + [anon_sym_POUNDdsohandle] = ACTIONS(3393), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(3391), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3391), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3391), + [anon_sym_LT_EQ] = ACTIONS(3391), + [anon_sym_GT_EQ] = ACTIONS(3391), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_PERCENT] = ACTIONS(3391), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(3393), + [sym__plus_then_ws] = ACTIONS(3393), + [sym__minus_then_ws] = ACTIONS(3393), + [sym_bang] = ACTIONS(137), + }, + [816] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(2212), + [sym_boolean_literal] = STATE(2212), + [sym__string_literal] = STATE(2212), + [sym_line_string_literal] = STATE(2212), + [sym_multi_line_string_literal] = STATE(2212), + [sym_raw_string_literal] = STATE(2212), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(2212), + [sym__unary_expression] = STATE(2212), + [sym_postfix_expression] = STATE(2212), + [sym_constructor_expression] = STATE(2212), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(2212), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(2212), + [sym_prefix_expression] = STATE(2212), + [sym_as_expression] = STATE(2212), + [sym_selector_expression] = STATE(2212), + [sym__binary_expression] = STATE(2212), + [sym_multiplicative_expression] = STATE(2212), + [sym_additive_expression] = STATE(2212), + [sym_range_expression] = STATE(2212), + [sym_infix_expression] = STATE(2212), + [sym_nil_coalescing_expression] = STATE(2212), + [sym_check_expression] = STATE(2212), + [sym_comparison_expression] = STATE(2212), + [sym_equality_expression] = STATE(2212), + [sym_conjunction_expression] = STATE(2212), + [sym_disjunction_expression] = STATE(2212), + [sym_bitwise_operation] = STATE(2212), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(2212), + [sym_await_expression] = STATE(2212), + [sym_ternary_expression] = STATE(2212), + [sym_call_expression] = STATE(2760), + [sym__primary_expression] = STATE(2212), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(2212), + [sym_dictionary_literal] = STATE(2212), + [sym__special_literal] = STATE(2212), + [sym__playground_literal] = STATE(2212), + [sym_lambda_literal] = STATE(2212), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(2212), + [sym_key_path_expression] = STATE(2212), + [sym_key_path_string_expression] = STATE(2212), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(2212), + [sym__comparison_operator] = STATE(2212), + [sym__additive_operator] = STATE(2212), + [sym__multiplicative_operator] = STATE(2212), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(2212), + [sym__referenceable_operator] = STATE(2212), + [sym__eq_eq] = STATE(2212), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [anon_sym_nil] = ACTIONS(3395), + [sym_real_literal] = ACTIONS(3397), + [sym_integer_literal] = ACTIONS(3395), + [sym_hex_literal] = ACTIONS(3397), + [sym_oct_literal] = ACTIONS(3397), + [sym_bin_literal] = ACTIONS(3397), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_GT] = ACTIONS(3395), + [sym__await_operator] = ACTIONS(937), + [anon_sym_POUNDfile] = ACTIONS(3395), + [anon_sym_POUNDfileID] = ACTIONS(3397), + [anon_sym_POUNDfilePath] = ACTIONS(3397), + [anon_sym_POUNDline] = ACTIONS(3397), + [anon_sym_POUNDcolumn] = ACTIONS(3397), + [anon_sym_POUNDfunction] = ACTIONS(3397), + [anon_sym_POUNDdsohandle] = ACTIONS(3397), + [anon_sym_POUNDcolorLiteral] = ACTIONS(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(3395), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3395), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3395), + [anon_sym_LT_EQ] = ACTIONS(3395), + [anon_sym_GT_EQ] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(3395), + [anon_sym_SLASH] = ACTIONS(3395), + [anon_sym_PERCENT] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(3397), + [sym__plus_then_ws] = ACTIONS(3397), + [sym__minus_then_ws] = ACTIONS(3397), + [sym_bang] = ACTIONS(971), + }, + [817] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2086), + [sym_boolean_literal] = STATE(2086), + [sym__string_literal] = STATE(2086), + [sym_line_string_literal] = STATE(2086), + [sym_multi_line_string_literal] = STATE(2086), + [sym_raw_string_literal] = STATE(2086), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2086), + [sym__unary_expression] = STATE(2086), + [sym_postfix_expression] = STATE(2086), + [sym_constructor_expression] = STATE(2086), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2086), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2086), + [sym_prefix_expression] = STATE(2086), + [sym_as_expression] = STATE(2086), + [sym_selector_expression] = STATE(2086), + [sym__binary_expression] = STATE(2086), + [sym_multiplicative_expression] = STATE(2086), + [sym_additive_expression] = STATE(2086), + [sym_range_expression] = STATE(2086), + [sym_infix_expression] = STATE(2086), + [sym_nil_coalescing_expression] = STATE(2086), + [sym_check_expression] = STATE(2086), + [sym_comparison_expression] = STATE(2086), + [sym_equality_expression] = STATE(2086), + [sym_conjunction_expression] = STATE(2086), + [sym_disjunction_expression] = STATE(2086), + [sym_bitwise_operation] = STATE(2086), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2086), + [sym_await_expression] = STATE(2086), + [sym_ternary_expression] = STATE(2086), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2086), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2086), + [sym_dictionary_literal] = STATE(2086), + [sym__special_literal] = STATE(2086), + [sym__playground_literal] = STATE(2086), + [sym_lambda_literal] = STATE(2086), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2086), + [sym_key_path_expression] = STATE(2086), + [sym_key_path_string_expression] = STATE(2086), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2086), + [sym__comparison_operator] = STATE(2086), + [sym__additive_operator] = STATE(2086), + [sym__multiplicative_operator] = STATE(2086), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2086), + [sym__referenceable_operator] = STATE(2086), + [sym__eq_eq] = STATE(2086), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3399), + [sym_real_literal] = ACTIONS(3401), + [sym_integer_literal] = ACTIONS(3399), + [sym_hex_literal] = ACTIONS(3401), + [sym_oct_literal] = ACTIONS(3401), + [sym_bin_literal] = ACTIONS(3401), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3399), + [anon_sym_GT] = ACTIONS(3399), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3399), + [anon_sym_POUNDfileID] = ACTIONS(3401), + [anon_sym_POUNDfilePath] = ACTIONS(3401), + [anon_sym_POUNDline] = ACTIONS(3401), + [anon_sym_POUNDcolumn] = ACTIONS(3401), + [anon_sym_POUNDfunction] = ACTIONS(3401), + [anon_sym_POUNDdsohandle] = ACTIONS(3401), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3399), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3399), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3399), + [anon_sym_LT_EQ] = ACTIONS(3399), + [anon_sym_GT_EQ] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3399), + [anon_sym_SLASH] = ACTIONS(3399), + [anon_sym_PERCENT] = ACTIONS(3399), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3401), + [sym__plus_then_ws] = ACTIONS(3401), + [sym__minus_then_ws] = ACTIONS(3401), + [sym_bang] = ACTIONS(1069), + }, + [818] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2082), + [sym_boolean_literal] = STATE(2082), + [sym__string_literal] = STATE(2082), + [sym_line_string_literal] = STATE(2082), + [sym_multi_line_string_literal] = STATE(2082), + [sym_raw_string_literal] = STATE(2082), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2082), + [sym__unary_expression] = STATE(2082), + [sym_postfix_expression] = STATE(2082), + [sym_constructor_expression] = STATE(2082), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2082), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2082), + [sym_prefix_expression] = STATE(2082), + [sym_as_expression] = STATE(2082), + [sym_selector_expression] = STATE(2082), + [sym__binary_expression] = STATE(2082), + [sym_multiplicative_expression] = STATE(2082), + [sym_additive_expression] = STATE(2082), + [sym_range_expression] = STATE(2082), + [sym_infix_expression] = STATE(2082), + [sym_nil_coalescing_expression] = STATE(2082), + [sym_check_expression] = STATE(2082), + [sym_comparison_expression] = STATE(2082), + [sym_equality_expression] = STATE(2082), + [sym_conjunction_expression] = STATE(2082), + [sym_disjunction_expression] = STATE(2082), + [sym_bitwise_operation] = STATE(2082), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2082), + [sym_await_expression] = STATE(2082), + [sym_ternary_expression] = STATE(2082), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2082), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2082), + [sym_dictionary_literal] = STATE(2082), + [sym__special_literal] = STATE(2082), + [sym__playground_literal] = STATE(2082), + [sym_lambda_literal] = STATE(2082), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2082), + [sym_key_path_expression] = STATE(2082), + [sym_key_path_string_expression] = STATE(2082), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2082), + [sym__comparison_operator] = STATE(2082), + [sym__additive_operator] = STATE(2082), + [sym__multiplicative_operator] = STATE(2082), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2082), + [sym__referenceable_operator] = STATE(2082), + [sym__eq_eq] = STATE(2082), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3403), + [sym_real_literal] = ACTIONS(3405), + [sym_integer_literal] = ACTIONS(3403), + [sym_hex_literal] = ACTIONS(3405), + [sym_oct_literal] = ACTIONS(3405), + [sym_bin_literal] = ACTIONS(3405), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_GT] = ACTIONS(3403), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3403), + [anon_sym_POUNDfileID] = ACTIONS(3405), + [anon_sym_POUNDfilePath] = ACTIONS(3405), + [anon_sym_POUNDline] = ACTIONS(3405), + [anon_sym_POUNDcolumn] = ACTIONS(3405), + [anon_sym_POUNDfunction] = ACTIONS(3405), + [anon_sym_POUNDdsohandle] = ACTIONS(3405), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3403), + [anon_sym_LT_EQ] = ACTIONS(3403), + [anon_sym_GT_EQ] = ACTIONS(3403), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3403), + [anon_sym_SLASH] = ACTIONS(3403), + [anon_sym_PERCENT] = ACTIONS(3403), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3405), + [sym__plus_then_ws] = ACTIONS(3405), + [sym__minus_then_ws] = ACTIONS(3405), + [sym_bang] = ACTIONS(1069), + }, + [819] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1113), + [sym_boolean_literal] = STATE(1113), + [sym__string_literal] = STATE(1113), + [sym_line_string_literal] = STATE(1113), + [sym_multi_line_string_literal] = STATE(1113), + [sym_raw_string_literal] = STATE(1113), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1113), + [sym__unary_expression] = STATE(1113), + [sym_postfix_expression] = STATE(1113), + [sym_constructor_expression] = STATE(1113), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1113), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1113), + [sym_prefix_expression] = STATE(1113), + [sym_as_expression] = STATE(1113), + [sym_selector_expression] = STATE(1113), + [sym__binary_expression] = STATE(1113), + [sym_multiplicative_expression] = STATE(1113), + [sym_additive_expression] = STATE(1113), + [sym_range_expression] = STATE(1113), + [sym_infix_expression] = STATE(1113), + [sym_nil_coalescing_expression] = STATE(1113), + [sym_check_expression] = STATE(1113), + [sym_comparison_expression] = STATE(1113), + [sym_equality_expression] = STATE(1113), + [sym_conjunction_expression] = STATE(1113), + [sym_disjunction_expression] = STATE(1113), + [sym_bitwise_operation] = STATE(1113), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1113), + [sym_await_expression] = STATE(1113), + [sym_ternary_expression] = STATE(1113), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1113), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1113), + [sym_dictionary_literal] = STATE(1113), + [sym__special_literal] = STATE(1113), + [sym__playground_literal] = STATE(1113), + [sym_lambda_literal] = STATE(1113), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1113), + [sym_key_path_expression] = STATE(1113), + [sym_key_path_string_expression] = STATE(1113), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1113), + [sym__comparison_operator] = STATE(1113), + [sym__additive_operator] = STATE(1113), + [sym__multiplicative_operator] = STATE(1113), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1113), + [sym__referenceable_operator] = STATE(1113), + [sym__eq_eq] = STATE(1113), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3407), + [sym_real_literal] = ACTIONS(3409), + [sym_integer_literal] = ACTIONS(3407), + [sym_hex_literal] = ACTIONS(3409), + [sym_oct_literal] = ACTIONS(3409), + [sym_bin_literal] = ACTIONS(3409), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_GT] = ACTIONS(3407), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(3407), + [anon_sym_POUNDfileID] = ACTIONS(3409), + [anon_sym_POUNDfilePath] = ACTIONS(3409), + [anon_sym_POUNDline] = ACTIONS(3409), + [anon_sym_POUNDcolumn] = ACTIONS(3409), + [anon_sym_POUNDfunction] = ACTIONS(3409), + [anon_sym_POUNDdsohandle] = ACTIONS(3409), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(3407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3407), + [anon_sym_LT_EQ] = ACTIONS(3407), + [anon_sym_GT_EQ] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(3407), + [anon_sym_SLASH] = ACTIONS(3407), + [anon_sym_PERCENT] = ACTIONS(3407), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(3409), + [sym__plus_then_ws] = ACTIONS(3409), + [sym__minus_then_ws] = ACTIONS(3409), + [sym_bang] = ACTIONS(1501), + }, + [820] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1125), + [sym_boolean_literal] = STATE(1125), + [sym__string_literal] = STATE(1125), + [sym_line_string_literal] = STATE(1125), + [sym_multi_line_string_literal] = STATE(1125), + [sym_raw_string_literal] = STATE(1125), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1125), + [sym__unary_expression] = STATE(1125), + [sym_postfix_expression] = STATE(1125), + [sym_constructor_expression] = STATE(1125), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1125), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1125), + [sym_prefix_expression] = STATE(1125), + [sym_as_expression] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [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(1100), + [sym_try_expression] = STATE(1125), + [sym_await_expression] = STATE(1125), + [sym_ternary_expression] = STATE(1279), + [sym_call_expression] = STATE(1205), + [sym__primary_expression] = STATE(1125), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1125), + [sym_dictionary_literal] = STATE(1125), + [sym__special_literal] = STATE(1125), + [sym__playground_literal] = STATE(1125), + [sym_lambda_literal] = STATE(1125), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1125), + [sym_key_path_expression] = STATE(1125), + [sym_key_path_string_expression] = STATE(1125), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1125), + [sym__comparison_operator] = STATE(1125), + [sym__additive_operator] = STATE(1125), + [sym__multiplicative_operator] = STATE(1125), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1125), + [sym__referenceable_operator] = STATE(1125), + [sym__eq_eq] = STATE(1125), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3411), + [sym_real_literal] = ACTIONS(3413), + [sym_integer_literal] = ACTIONS(3411), + [sym_hex_literal] = ACTIONS(3413), + [sym_oct_literal] = ACTIONS(3413), + [sym_bin_literal] = ACTIONS(3413), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(3411), + [anon_sym_GT] = ACTIONS(3411), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(3411), + [anon_sym_POUNDfileID] = ACTIONS(3413), + [anon_sym_POUNDfilePath] = ACTIONS(3413), + [anon_sym_POUNDline] = ACTIONS(3413), + [anon_sym_POUNDcolumn] = ACTIONS(3413), + [anon_sym_POUNDfunction] = ACTIONS(3413), + [anon_sym_POUNDdsohandle] = ACTIONS(3413), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(3411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3411), + [anon_sym_LT_EQ] = ACTIONS(3411), + [anon_sym_GT_EQ] = ACTIONS(3411), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(3411), + [anon_sym_SLASH] = ACTIONS(3411), + [anon_sym_PERCENT] = ACTIONS(3411), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(3413), + [sym__plus_then_ws] = ACTIONS(3413), + [sym__minus_then_ws] = ACTIONS(3413), + [sym_bang] = ACTIONS(1501), + }, + [821] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1121), + [sym_boolean_literal] = STATE(1121), + [sym__string_literal] = STATE(1121), + [sym_line_string_literal] = STATE(1121), + [sym_multi_line_string_literal] = STATE(1121), + [sym_raw_string_literal] = STATE(1121), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1121), + [sym__unary_expression] = STATE(1121), + [sym_postfix_expression] = STATE(1121), + [sym_constructor_expression] = STATE(1121), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1121), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1121), + [sym_prefix_expression] = STATE(1121), + [sym_as_expression] = STATE(1121), + [sym_selector_expression] = STATE(1121), + [sym__binary_expression] = STATE(1121), + [sym_multiplicative_expression] = STATE(1121), + [sym_additive_expression] = STATE(1121), + [sym_range_expression] = STATE(1121), + [sym_infix_expression] = STATE(1121), + [sym_nil_coalescing_expression] = STATE(1121), + [sym_check_expression] = STATE(1121), + [sym_comparison_expression] = STATE(1121), + [sym_equality_expression] = STATE(1121), + [sym_conjunction_expression] = STATE(1121), + [sym_disjunction_expression] = STATE(1121), + [sym_bitwise_operation] = STATE(1121), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1121), + [sym_await_expression] = STATE(1121), + [sym_ternary_expression] = STATE(1121), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1121), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1121), + [sym_dictionary_literal] = STATE(1121), + [sym__special_literal] = STATE(1121), + [sym__playground_literal] = STATE(1121), + [sym_lambda_literal] = STATE(1121), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1121), + [sym_key_path_expression] = STATE(1121), + [sym_key_path_string_expression] = STATE(1121), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1121), + [sym__comparison_operator] = STATE(1121), + [sym__additive_operator] = STATE(1121), + [sym__multiplicative_operator] = STATE(1121), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1121), + [sym__referenceable_operator] = STATE(1121), + [sym__eq_eq] = STATE(1121), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3415), + [sym_real_literal] = ACTIONS(3417), + [sym_integer_literal] = ACTIONS(3415), + [sym_hex_literal] = ACTIONS(3417), + [sym_oct_literal] = ACTIONS(3417), + [sym_bin_literal] = ACTIONS(3417), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(3415), + [anon_sym_GT] = ACTIONS(3415), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(3415), + [anon_sym_POUNDfileID] = ACTIONS(3417), + [anon_sym_POUNDfilePath] = ACTIONS(3417), + [anon_sym_POUNDline] = ACTIONS(3417), + [anon_sym_POUNDcolumn] = ACTIONS(3417), + [anon_sym_POUNDfunction] = ACTIONS(3417), + [anon_sym_POUNDdsohandle] = ACTIONS(3417), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(3415), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3415), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3415), + [anon_sym_LT_EQ] = ACTIONS(3415), + [anon_sym_GT_EQ] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(3415), + [anon_sym_SLASH] = ACTIONS(3415), + [anon_sym_PERCENT] = ACTIONS(3415), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(3417), + [sym__plus_then_ws] = ACTIONS(3417), + [sym__minus_then_ws] = ACTIONS(3417), + [sym_bang] = ACTIONS(1501), + }, + [822] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1481), + [sym_boolean_literal] = STATE(1481), + [sym__string_literal] = STATE(1481), + [sym_line_string_literal] = STATE(1481), + [sym_multi_line_string_literal] = STATE(1481), + [sym_raw_string_literal] = STATE(1481), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1481), + [sym__unary_expression] = STATE(1481), + [sym_postfix_expression] = STATE(1481), + [sym_constructor_expression] = STATE(1481), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1481), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1481), + [sym_prefix_expression] = STATE(1481), + [sym_as_expression] = STATE(1481), + [sym_selector_expression] = STATE(1481), + [sym__binary_expression] = STATE(1481), + [sym_multiplicative_expression] = STATE(1481), + [sym_additive_expression] = STATE(1481), + [sym_range_expression] = STATE(1481), + [sym_infix_expression] = STATE(1481), + [sym_nil_coalescing_expression] = STATE(1481), + [sym_check_expression] = STATE(1481), + [sym_comparison_expression] = STATE(1481), + [sym_equality_expression] = STATE(1481), + [sym_conjunction_expression] = STATE(1481), + [sym_disjunction_expression] = STATE(1481), + [sym_bitwise_operation] = STATE(1481), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1481), + [sym_await_expression] = STATE(1481), + [sym_ternary_expression] = STATE(1481), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1481), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1481), + [sym_dictionary_literal] = STATE(1481), + [sym__special_literal] = STATE(1481), + [sym__playground_literal] = STATE(1481), + [sym_lambda_literal] = STATE(1481), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1481), + [sym_key_path_expression] = STATE(1481), + [sym_key_path_string_expression] = STATE(1481), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1481), + [sym__comparison_operator] = STATE(1481), + [sym__additive_operator] = STATE(1481), + [sym__multiplicative_operator] = STATE(1481), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1481), + [sym__referenceable_operator] = STATE(1481), + [sym__eq_eq] = STATE(1481), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3419), + [sym_real_literal] = ACTIONS(3421), + [sym_integer_literal] = ACTIONS(3419), + [sym_hex_literal] = ACTIONS(3421), + [sym_oct_literal] = ACTIONS(3421), + [sym_bin_literal] = ACTIONS(3421), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3419), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3419), + [anon_sym_POUNDfileID] = ACTIONS(3421), + [anon_sym_POUNDfilePath] = ACTIONS(3421), + [anon_sym_POUNDline] = ACTIONS(3421), + [anon_sym_POUNDcolumn] = ACTIONS(3421), + [anon_sym_POUNDfunction] = ACTIONS(3421), + [anon_sym_POUNDdsohandle] = ACTIONS(3421), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3419), + [anon_sym_LT_EQ] = ACTIONS(3419), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3419), + [anon_sym_SLASH] = ACTIONS(3419), + [anon_sym_PERCENT] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3421), + [sym__plus_then_ws] = ACTIONS(3421), + [sym__minus_then_ws] = ACTIONS(3421), + [sym_bang] = ACTIONS(1467), + }, + [823] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1530), + [sym_boolean_literal] = STATE(1530), + [sym__string_literal] = STATE(1530), + [sym_line_string_literal] = STATE(1530), + [sym_multi_line_string_literal] = STATE(1530), + [sym_raw_string_literal] = STATE(1530), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1530), + [sym__unary_expression] = STATE(1530), + [sym_postfix_expression] = STATE(1530), + [sym_constructor_expression] = STATE(1530), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1530), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1530), + [sym_prefix_expression] = STATE(1530), + [sym_as_expression] = STATE(1530), + [sym_selector_expression] = STATE(1530), + [sym__binary_expression] = STATE(1530), + [sym_multiplicative_expression] = STATE(1530), + [sym_additive_expression] = STATE(1530), + [sym_range_expression] = STATE(1530), + [sym_infix_expression] = STATE(1530), + [sym_nil_coalescing_expression] = STATE(1530), + [sym_check_expression] = STATE(1530), + [sym_comparison_expression] = STATE(1530), + [sym_equality_expression] = STATE(1530), + [sym_conjunction_expression] = STATE(1530), + [sym_disjunction_expression] = STATE(1530), + [sym_bitwise_operation] = STATE(1530), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1530), + [sym_await_expression] = STATE(1530), + [sym_ternary_expression] = STATE(1530), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1530), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1530), + [sym_dictionary_literal] = STATE(1530), + [sym__special_literal] = STATE(1530), + [sym__playground_literal] = STATE(1530), + [sym_lambda_literal] = STATE(1530), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1530), + [sym_key_path_expression] = STATE(1530), + [sym_key_path_string_expression] = STATE(1530), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1530), + [sym__comparison_operator] = STATE(1530), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1530), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1530), + [sym__referenceable_operator] = STATE(1530), + [sym__eq_eq] = STATE(1530), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3423), + [sym_real_literal] = ACTIONS(3425), + [sym_integer_literal] = ACTIONS(3423), + [sym_hex_literal] = ACTIONS(3425), + [sym_oct_literal] = ACTIONS(3425), + [sym_bin_literal] = ACTIONS(3425), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3423), + [anon_sym_GT] = ACTIONS(3423), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3423), + [anon_sym_POUNDfileID] = ACTIONS(3425), + [anon_sym_POUNDfilePath] = ACTIONS(3425), + [anon_sym_POUNDline] = ACTIONS(3425), + [anon_sym_POUNDcolumn] = ACTIONS(3425), + [anon_sym_POUNDfunction] = ACTIONS(3425), + [anon_sym_POUNDdsohandle] = ACTIONS(3425), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3423), + [anon_sym_LT_EQ] = ACTIONS(3423), + [anon_sym_GT_EQ] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3423), + [anon_sym_SLASH] = ACTIONS(3423), + [anon_sym_PERCENT] = ACTIONS(3423), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3425), + [sym__plus_then_ws] = ACTIONS(3425), + [sym__minus_then_ws] = ACTIONS(3425), + [sym_bang] = ACTIONS(1069), + }, + [824] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(1494), + [sym_boolean_literal] = STATE(1494), + [sym__string_literal] = STATE(1494), + [sym_line_string_literal] = STATE(1494), + [sym_multi_line_string_literal] = STATE(1494), + [sym_raw_string_literal] = STATE(1494), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(1494), + [sym__unary_expression] = STATE(1494), + [sym_postfix_expression] = STATE(1494), + [sym_constructor_expression] = STATE(1494), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(1494), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(1494), + [sym_prefix_expression] = STATE(1494), + [sym_as_expression] = STATE(1494), + [sym_selector_expression] = STATE(1494), + [sym__binary_expression] = STATE(1494), + [sym_multiplicative_expression] = STATE(1494), + [sym_additive_expression] = STATE(1494), + [sym_range_expression] = STATE(1494), + [sym_infix_expression] = STATE(1494), + [sym_nil_coalescing_expression] = STATE(1494), + [sym_check_expression] = STATE(1494), + [sym_comparison_expression] = STATE(1494), + [sym_equality_expression] = STATE(1494), + [sym_conjunction_expression] = STATE(1494), + [sym_disjunction_expression] = STATE(1494), + [sym_bitwise_operation] = STATE(1494), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(1494), + [sym_await_expression] = STATE(1494), + [sym_ternary_expression] = STATE(1494), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(1494), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(1494), + [sym_dictionary_literal] = STATE(1494), + [sym__special_literal] = STATE(1494), + [sym__playground_literal] = STATE(1494), + [sym_lambda_literal] = STATE(1494), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(1494), + [sym_key_path_expression] = STATE(1494), + [sym_key_path_string_expression] = STATE(1494), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(1494), + [sym__comparison_operator] = STATE(1494), + [sym__additive_operator] = STATE(1494), + [sym__multiplicative_operator] = STATE(1494), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(1494), + [sym__referenceable_operator] = STATE(1494), + [sym__eq_eq] = STATE(1494), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(3427), + [sym_real_literal] = ACTIONS(3429), + [sym_integer_literal] = ACTIONS(3427), + [sym_hex_literal] = ACTIONS(3429), + [sym_oct_literal] = ACTIONS(3429), + [sym_bin_literal] = ACTIONS(3429), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_GT] = ACTIONS(3427), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(3427), + [anon_sym_POUNDfileID] = ACTIONS(3429), + [anon_sym_POUNDfilePath] = ACTIONS(3429), + [anon_sym_POUNDline] = ACTIONS(3429), + [anon_sym_POUNDcolumn] = ACTIONS(3429), + [anon_sym_POUNDfunction] = ACTIONS(3429), + [anon_sym_POUNDdsohandle] = ACTIONS(3429), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(3427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3427), + [anon_sym_LT_EQ] = ACTIONS(3427), + [anon_sym_GT_EQ] = ACTIONS(3427), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(3427), + [anon_sym_SLASH] = ACTIONS(3427), + [anon_sym_PERCENT] = ACTIONS(3427), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(3429), + [sym__plus_then_ws] = ACTIONS(3429), + [sym__minus_then_ws] = ACTIONS(3429), + [sym_bang] = ACTIONS(137), + }, + [825] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1126), + [sym_boolean_literal] = STATE(1126), + [sym__string_literal] = STATE(1126), + [sym_line_string_literal] = STATE(1126), + [sym_multi_line_string_literal] = STATE(1126), + [sym_raw_string_literal] = STATE(1126), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1126), + [sym__unary_expression] = STATE(1126), + [sym_postfix_expression] = STATE(1126), + [sym_constructor_expression] = STATE(1126), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1126), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1126), + [sym_prefix_expression] = STATE(1126), + [sym_as_expression] = STATE(1126), + [sym_selector_expression] = STATE(1126), + [sym__binary_expression] = STATE(1126), + [sym_multiplicative_expression] = STATE(1126), + [sym_additive_expression] = STATE(1126), + [sym_range_expression] = STATE(1126), + [sym_infix_expression] = STATE(1126), + [sym_nil_coalescing_expression] = STATE(1126), + [sym_check_expression] = STATE(1126), + [sym_comparison_expression] = STATE(1126), + [sym_equality_expression] = STATE(1126), + [sym_conjunction_expression] = STATE(1126), + [sym_disjunction_expression] = STATE(1126), + [sym_bitwise_operation] = STATE(1126), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1126), + [sym_await_expression] = STATE(1126), + [sym_ternary_expression] = STATE(1256), + [sym_call_expression] = STATE(1193), + [sym__primary_expression] = STATE(1126), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1126), + [sym_dictionary_literal] = STATE(1126), + [sym__special_literal] = STATE(1126), + [sym__playground_literal] = STATE(1126), + [sym_lambda_literal] = STATE(1126), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1126), + [sym_key_path_expression] = STATE(1126), + [sym_key_path_string_expression] = STATE(1126), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1126), + [sym__comparison_operator] = STATE(1126), + [sym__additive_operator] = STATE(1126), + [sym__multiplicative_operator] = STATE(1126), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1126), + [sym__referenceable_operator] = STATE(1126), + [sym__eq_eq] = STATE(1126), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3431), + [sym_real_literal] = ACTIONS(3433), + [sym_integer_literal] = ACTIONS(3431), + [sym_hex_literal] = ACTIONS(3433), + [sym_oct_literal] = ACTIONS(3433), + [sym_bin_literal] = ACTIONS(3433), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(3431), + [anon_sym_POUNDfileID] = ACTIONS(3433), + [anon_sym_POUNDfilePath] = ACTIONS(3433), + [anon_sym_POUNDline] = ACTIONS(3433), + [anon_sym_POUNDcolumn] = ACTIONS(3433), + [anon_sym_POUNDfunction] = ACTIONS(3433), + [anon_sym_POUNDdsohandle] = ACTIONS(3433), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(3431), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3431), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3431), + [anon_sym_LT_EQ] = ACTIONS(3431), + [anon_sym_GT_EQ] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_PERCENT] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(3433), + [sym__plus_then_ws] = ACTIONS(3433), + [sym__minus_then_ws] = ACTIONS(3433), + [sym_bang] = ACTIONS(1501), + }, + [826] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1531), + [sym_boolean_literal] = STATE(1531), + [sym__string_literal] = STATE(1531), + [sym_line_string_literal] = STATE(1531), + [sym_multi_line_string_literal] = STATE(1531), + [sym_raw_string_literal] = STATE(1531), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1531), + [sym__unary_expression] = STATE(1531), + [sym_postfix_expression] = STATE(1531), + [sym_constructor_expression] = STATE(1531), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1531), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1531), + [sym_prefix_expression] = STATE(1531), + [sym_as_expression] = STATE(1531), + [sym_selector_expression] = STATE(1531), + [sym__binary_expression] = STATE(1531), + [sym_multiplicative_expression] = STATE(1531), + [sym_additive_expression] = STATE(1531), + [sym_range_expression] = STATE(1531), + [sym_infix_expression] = STATE(1531), + [sym_nil_coalescing_expression] = STATE(1531), + [sym_check_expression] = STATE(1531), + [sym_comparison_expression] = STATE(1531), + [sym_equality_expression] = STATE(1531), + [sym_conjunction_expression] = STATE(1531), + [sym_disjunction_expression] = STATE(1531), + [sym_bitwise_operation] = STATE(1531), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1531), + [sym_await_expression] = STATE(1531), + [sym_ternary_expression] = STATE(1531), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1531), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1531), + [sym_dictionary_literal] = STATE(1531), + [sym__special_literal] = STATE(1531), + [sym__playground_literal] = STATE(1531), + [sym_lambda_literal] = STATE(1531), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1531), + [sym_key_path_expression] = STATE(1531), + [sym_key_path_string_expression] = STATE(1531), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1531), + [sym__comparison_operator] = STATE(1531), + [sym__additive_operator] = STATE(1531), + [sym__multiplicative_operator] = STATE(1531), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1531), + [sym__referenceable_operator] = STATE(1531), + [sym__eq_eq] = STATE(1531), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3435), + [sym_real_literal] = ACTIONS(3437), + [sym_integer_literal] = ACTIONS(3435), + [sym_hex_literal] = ACTIONS(3437), + [sym_oct_literal] = ACTIONS(3437), + [sym_bin_literal] = ACTIONS(3437), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3435), + [anon_sym_GT] = ACTIONS(3435), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3435), + [anon_sym_POUNDfileID] = ACTIONS(3437), + [anon_sym_POUNDfilePath] = ACTIONS(3437), + [anon_sym_POUNDline] = ACTIONS(3437), + [anon_sym_POUNDcolumn] = ACTIONS(3437), + [anon_sym_POUNDfunction] = ACTIONS(3437), + [anon_sym_POUNDdsohandle] = ACTIONS(3437), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3435), + [anon_sym_LT_EQ] = ACTIONS(3435), + [anon_sym_GT_EQ] = ACTIONS(3435), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3435), + [anon_sym_SLASH] = ACTIONS(3435), + [anon_sym_PERCENT] = ACTIONS(3435), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3437), + [sym__plus_then_ws] = ACTIONS(3437), + [sym__minus_then_ws] = ACTIONS(3437), + [sym_bang] = ACTIONS(1069), + }, + [827] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1122), + [sym_boolean_literal] = STATE(1122), + [sym__string_literal] = STATE(1122), + [sym_line_string_literal] = STATE(1122), + [sym_multi_line_string_literal] = STATE(1122), + [sym_raw_string_literal] = STATE(1122), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1122), + [sym__unary_expression] = STATE(1122), + [sym_postfix_expression] = STATE(1122), + [sym_constructor_expression] = STATE(1122), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1122), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1122), + [sym_prefix_expression] = STATE(1122), + [sym_as_expression] = STATE(1122), + [sym_selector_expression] = STATE(1122), + [sym__binary_expression] = STATE(1122), + [sym_multiplicative_expression] = STATE(1122), + [sym_additive_expression] = STATE(1122), + [sym_range_expression] = STATE(1122), + [sym_infix_expression] = STATE(1122), + [sym_nil_coalescing_expression] = STATE(1122), + [sym_check_expression] = STATE(1122), + [sym_comparison_expression] = STATE(1122), + [sym_equality_expression] = STATE(1122), + [sym_conjunction_expression] = STATE(1122), + [sym_disjunction_expression] = STATE(1122), + [sym_bitwise_operation] = STATE(1122), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1122), + [sym_await_expression] = STATE(1122), + [sym_ternary_expression] = STATE(1122), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1122), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1122), + [sym_dictionary_literal] = STATE(1122), + [sym__special_literal] = STATE(1122), + [sym__playground_literal] = STATE(1122), + [sym_lambda_literal] = STATE(1122), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1122), + [sym_key_path_expression] = STATE(1122), + [sym_key_path_string_expression] = STATE(1122), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1122), + [sym__comparison_operator] = STATE(1122), + [sym__additive_operator] = STATE(1122), + [sym__multiplicative_operator] = STATE(1122), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1122), + [sym__referenceable_operator] = STATE(1122), + [sym__eq_eq] = STATE(1122), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3439), + [sym_real_literal] = ACTIONS(3441), + [sym_integer_literal] = ACTIONS(3439), + [sym_hex_literal] = ACTIONS(3441), + [sym_oct_literal] = ACTIONS(3441), + [sym_bin_literal] = ACTIONS(3441), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(3439), + [anon_sym_GT] = ACTIONS(3439), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(3439), + [anon_sym_POUNDfileID] = ACTIONS(3441), + [anon_sym_POUNDfilePath] = ACTIONS(3441), + [anon_sym_POUNDline] = ACTIONS(3441), + [anon_sym_POUNDcolumn] = ACTIONS(3441), + [anon_sym_POUNDfunction] = ACTIONS(3441), + [anon_sym_POUNDdsohandle] = ACTIONS(3441), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(3439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3439), + [anon_sym_LT_EQ] = ACTIONS(3439), + [anon_sym_GT_EQ] = ACTIONS(3439), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(3439), + [anon_sym_SLASH] = ACTIONS(3439), + [anon_sym_PERCENT] = ACTIONS(3439), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(3441), + [sym__plus_then_ws] = ACTIONS(3441), + [sym__minus_then_ws] = ACTIONS(3441), + [sym_bang] = ACTIONS(1501), + }, + [828] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2072), + [sym_boolean_literal] = STATE(2072), + [sym__string_literal] = STATE(2072), + [sym_line_string_literal] = STATE(2072), + [sym_multi_line_string_literal] = STATE(2072), + [sym_raw_string_literal] = STATE(2072), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2072), + [sym__unary_expression] = STATE(2072), + [sym_postfix_expression] = STATE(2072), + [sym_constructor_expression] = STATE(2072), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2072), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2072), + [sym_prefix_expression] = STATE(2072), + [sym_as_expression] = STATE(2072), + [sym_selector_expression] = STATE(2072), + [sym__binary_expression] = STATE(2072), + [sym_multiplicative_expression] = STATE(2072), + [sym_additive_expression] = STATE(2072), + [sym_range_expression] = STATE(2072), + [sym_infix_expression] = STATE(2072), + [sym_nil_coalescing_expression] = STATE(2072), + [sym_check_expression] = STATE(2072), + [sym_comparison_expression] = STATE(2072), + [sym_equality_expression] = STATE(2072), + [sym_conjunction_expression] = STATE(2072), + [sym_disjunction_expression] = STATE(2072), + [sym_bitwise_operation] = STATE(2072), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2072), + [sym_await_expression] = STATE(2072), + [sym_ternary_expression] = STATE(2072), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2072), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2072), + [sym_dictionary_literal] = STATE(2072), + [sym__special_literal] = STATE(2072), + [sym__playground_literal] = STATE(2072), + [sym_lambda_literal] = STATE(2072), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2072), + [sym_key_path_expression] = STATE(2072), + [sym_key_path_string_expression] = STATE(2072), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2072), + [sym__comparison_operator] = STATE(2072), + [sym__additive_operator] = STATE(2072), + [sym__multiplicative_operator] = STATE(2072), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2072), + [sym__referenceable_operator] = STATE(2072), + [sym__eq_eq] = STATE(2072), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3443), + [sym_real_literal] = ACTIONS(3445), + [sym_integer_literal] = ACTIONS(3443), + [sym_hex_literal] = ACTIONS(3445), + [sym_oct_literal] = ACTIONS(3445), + [sym_bin_literal] = ACTIONS(3445), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3443), + [anon_sym_GT] = ACTIONS(3443), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3443), + [anon_sym_POUNDfileID] = ACTIONS(3445), + [anon_sym_POUNDfilePath] = ACTIONS(3445), + [anon_sym_POUNDline] = ACTIONS(3445), + [anon_sym_POUNDcolumn] = ACTIONS(3445), + [anon_sym_POUNDfunction] = ACTIONS(3445), + [anon_sym_POUNDdsohandle] = ACTIONS(3445), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3443), + [anon_sym_LT_EQ] = ACTIONS(3443), + [anon_sym_GT_EQ] = ACTIONS(3443), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3443), + [anon_sym_SLASH] = ACTIONS(3443), + [anon_sym_PERCENT] = ACTIONS(3443), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3445), + [sym__plus_then_ws] = ACTIONS(3445), + [sym__minus_then_ws] = ACTIONS(3445), + [sym_bang] = ACTIONS(1069), + }, + [829] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2176), + [sym_boolean_literal] = STATE(2176), + [sym__string_literal] = STATE(2176), + [sym_line_string_literal] = STATE(2176), + [sym_multi_line_string_literal] = STATE(2176), + [sym_raw_string_literal] = STATE(2176), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2176), + [sym__unary_expression] = STATE(2176), + [sym_postfix_expression] = STATE(2176), + [sym_constructor_expression] = STATE(2176), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2176), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2176), + [sym_prefix_expression] = STATE(2176), + [sym_as_expression] = STATE(2176), + [sym_selector_expression] = STATE(2176), + [sym__binary_expression] = STATE(2176), + [sym_multiplicative_expression] = STATE(2176), + [sym_additive_expression] = STATE(2176), + [sym_range_expression] = STATE(2176), + [sym_infix_expression] = STATE(2176), + [sym_nil_coalescing_expression] = STATE(2176), + [sym_check_expression] = STATE(2176), + [sym_comparison_expression] = STATE(2176), + [sym_equality_expression] = STATE(2176), + [sym_conjunction_expression] = STATE(2176), + [sym_disjunction_expression] = STATE(2176), + [sym_bitwise_operation] = STATE(2176), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2176), + [sym_await_expression] = STATE(2176), + [sym_ternary_expression] = STATE(2176), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2176), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2176), + [sym_dictionary_literal] = STATE(2176), + [sym__special_literal] = STATE(2176), + [sym__playground_literal] = STATE(2176), + [sym_lambda_literal] = STATE(2176), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2176), + [sym_key_path_expression] = STATE(2176), + [sym_key_path_string_expression] = STATE(2176), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2176), + [sym__comparison_operator] = STATE(2176), + [sym__additive_operator] = STATE(2176), + [sym__multiplicative_operator] = STATE(2176), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2176), + [sym__referenceable_operator] = STATE(2176), + [sym__eq_eq] = STATE(2176), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3447), + [sym_real_literal] = ACTIONS(3449), + [sym_integer_literal] = ACTIONS(3447), + [sym_hex_literal] = ACTIONS(3449), + [sym_oct_literal] = ACTIONS(3449), + [sym_bin_literal] = ACTIONS(3449), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3447), + [anon_sym_GT] = ACTIONS(3447), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3447), + [anon_sym_POUNDfileID] = ACTIONS(3449), + [anon_sym_POUNDfilePath] = ACTIONS(3449), + [anon_sym_POUNDline] = ACTIONS(3449), + [anon_sym_POUNDcolumn] = ACTIONS(3449), + [anon_sym_POUNDfunction] = ACTIONS(3449), + [anon_sym_POUNDdsohandle] = ACTIONS(3449), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3447), + [anon_sym_LT_EQ] = ACTIONS(3447), + [anon_sym_GT_EQ] = ACTIONS(3447), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3447), + [anon_sym_SLASH] = ACTIONS(3447), + [anon_sym_PERCENT] = ACTIONS(3447), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3449), + [sym__plus_then_ws] = ACTIONS(3449), + [sym__minus_then_ws] = ACTIONS(3449), + [sym_bang] = ACTIONS(1069), + }, + [830] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2071), + [sym_boolean_literal] = STATE(2071), + [sym__string_literal] = STATE(2071), + [sym_line_string_literal] = STATE(2071), + [sym_multi_line_string_literal] = STATE(2071), + [sym_raw_string_literal] = STATE(2071), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2071), + [sym__unary_expression] = STATE(2071), + [sym_postfix_expression] = STATE(2071), + [sym_constructor_expression] = STATE(2071), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2071), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2071), + [sym_prefix_expression] = STATE(2071), + [sym_as_expression] = STATE(2071), + [sym_selector_expression] = STATE(2071), + [sym__binary_expression] = STATE(2071), + [sym_multiplicative_expression] = STATE(2071), + [sym_additive_expression] = STATE(2071), + [sym_range_expression] = STATE(2071), + [sym_infix_expression] = STATE(2071), + [sym_nil_coalescing_expression] = STATE(2071), + [sym_check_expression] = STATE(2071), + [sym_comparison_expression] = STATE(2071), + [sym_equality_expression] = STATE(2071), + [sym_conjunction_expression] = STATE(2071), + [sym_disjunction_expression] = STATE(2071), + [sym_bitwise_operation] = STATE(2071), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2071), + [sym_await_expression] = STATE(2071), + [sym_ternary_expression] = STATE(2071), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2071), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2071), + [sym_dictionary_literal] = STATE(2071), + [sym__special_literal] = STATE(2071), + [sym__playground_literal] = STATE(2071), + [sym_lambda_literal] = STATE(2071), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2071), + [sym_key_path_expression] = STATE(2071), + [sym_key_path_string_expression] = STATE(2071), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2071), + [sym__comparison_operator] = STATE(2071), + [sym__additive_operator] = STATE(2071), + [sym__multiplicative_operator] = STATE(2071), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2071), + [sym__referenceable_operator] = STATE(2071), + [sym__eq_eq] = STATE(2071), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3451), + [sym_real_literal] = ACTIONS(3453), + [sym_integer_literal] = ACTIONS(3451), + [sym_hex_literal] = ACTIONS(3453), + [sym_oct_literal] = ACTIONS(3453), + [sym_bin_literal] = ACTIONS(3453), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_GT] = ACTIONS(3451), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3451), + [anon_sym_POUNDfileID] = ACTIONS(3453), + [anon_sym_POUNDfilePath] = ACTIONS(3453), + [anon_sym_POUNDline] = ACTIONS(3453), + [anon_sym_POUNDcolumn] = ACTIONS(3453), + [anon_sym_POUNDfunction] = ACTIONS(3453), + [anon_sym_POUNDdsohandle] = ACTIONS(3453), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3451), + [anon_sym_LT_EQ] = ACTIONS(3451), + [anon_sym_GT_EQ] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3451), + [anon_sym_SLASH] = ACTIONS(3451), + [anon_sym_PERCENT] = ACTIONS(3451), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3453), + [sym__plus_then_ws] = ACTIONS(3453), + [sym__minus_then_ws] = ACTIONS(3453), + [sym_bang] = ACTIONS(1069), + }, + [831] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2085), + [sym_boolean_literal] = STATE(2085), + [sym__string_literal] = STATE(2085), + [sym_line_string_literal] = STATE(2085), + [sym_multi_line_string_literal] = STATE(2085), + [sym_raw_string_literal] = STATE(2085), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2085), + [sym__unary_expression] = STATE(2085), + [sym_postfix_expression] = STATE(2085), + [sym_constructor_expression] = STATE(2085), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2085), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2085), + [sym_prefix_expression] = STATE(2085), + [sym_as_expression] = STATE(2085), + [sym_selector_expression] = STATE(2085), + [sym__binary_expression] = STATE(2085), + [sym_multiplicative_expression] = STATE(2085), + [sym_additive_expression] = STATE(2085), + [sym_range_expression] = STATE(2085), + [sym_infix_expression] = STATE(2085), + [sym_nil_coalescing_expression] = STATE(2085), + [sym_check_expression] = STATE(2085), + [sym_comparison_expression] = STATE(2085), + [sym_equality_expression] = STATE(2085), + [sym_conjunction_expression] = STATE(2085), + [sym_disjunction_expression] = STATE(2085), + [sym_bitwise_operation] = STATE(2085), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2085), + [sym_await_expression] = STATE(2085), + [sym_ternary_expression] = STATE(2085), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2085), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2085), + [sym_dictionary_literal] = STATE(2085), + [sym__special_literal] = STATE(2085), + [sym__playground_literal] = STATE(2085), + [sym_lambda_literal] = STATE(2085), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2085), + [sym_key_path_expression] = STATE(2085), + [sym_key_path_string_expression] = STATE(2085), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2085), + [sym__additive_operator] = STATE(2085), + [sym__multiplicative_operator] = STATE(2085), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2085), + [sym__referenceable_operator] = STATE(2085), + [sym__eq_eq] = STATE(2085), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3455), + [sym_real_literal] = ACTIONS(3457), + [sym_integer_literal] = ACTIONS(3455), + [sym_hex_literal] = ACTIONS(3457), + [sym_oct_literal] = ACTIONS(3457), + [sym_bin_literal] = ACTIONS(3457), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3455), + [anon_sym_GT] = ACTIONS(3455), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3455), + [anon_sym_POUNDfileID] = ACTIONS(3457), + [anon_sym_POUNDfilePath] = ACTIONS(3457), + [anon_sym_POUNDline] = ACTIONS(3457), + [anon_sym_POUNDcolumn] = ACTIONS(3457), + [anon_sym_POUNDfunction] = ACTIONS(3457), + [anon_sym_POUNDdsohandle] = ACTIONS(3457), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3455), + [anon_sym_LT_EQ] = ACTIONS(3455), + [anon_sym_GT_EQ] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3455), + [anon_sym_SLASH] = ACTIONS(3455), + [anon_sym_PERCENT] = ACTIONS(3455), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3457), + [sym__plus_then_ws] = ACTIONS(3457), + [sym__minus_then_ws] = ACTIONS(3457), + [sym_bang] = ACTIONS(1069), + }, + [832] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2028), + [sym_boolean_literal] = STATE(2028), + [sym__string_literal] = STATE(2028), + [sym_line_string_literal] = STATE(2028), + [sym_multi_line_string_literal] = STATE(2028), + [sym_raw_string_literal] = STATE(2028), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2028), + [sym__unary_expression] = STATE(2028), + [sym_postfix_expression] = STATE(2028), + [sym_constructor_expression] = STATE(2028), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2028), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2028), + [sym_prefix_expression] = STATE(2028), + [sym_as_expression] = STATE(2028), + [sym_selector_expression] = STATE(2028), + [sym__binary_expression] = STATE(2028), + [sym_multiplicative_expression] = STATE(2028), + [sym_additive_expression] = STATE(2028), + [sym_range_expression] = STATE(2028), + [sym_infix_expression] = STATE(2028), + [sym_nil_coalescing_expression] = STATE(2028), + [sym_check_expression] = STATE(2028), + [sym_comparison_expression] = STATE(2028), + [sym_equality_expression] = STATE(2028), + [sym_conjunction_expression] = STATE(2028), + [sym_disjunction_expression] = STATE(2028), + [sym_bitwise_operation] = STATE(2028), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2028), + [sym_await_expression] = STATE(2028), + [sym_ternary_expression] = STATE(2028), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2028), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2028), + [sym_dictionary_literal] = STATE(2028), + [sym__special_literal] = STATE(2028), + [sym__playground_literal] = STATE(2028), + [sym_lambda_literal] = STATE(2028), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2028), + [sym_key_path_expression] = STATE(2028), + [sym_key_path_string_expression] = STATE(2028), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2028), + [sym__comparison_operator] = STATE(2028), + [sym__additive_operator] = STATE(2028), + [sym__multiplicative_operator] = STATE(2028), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(2028), + [sym__referenceable_operator] = STATE(2028), + [sym__eq_eq] = STATE(2028), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(3459), + [sym_real_literal] = ACTIONS(3461), + [sym_integer_literal] = ACTIONS(3459), + [sym_hex_literal] = ACTIONS(3461), + [sym_oct_literal] = ACTIONS(3461), + [sym_bin_literal] = ACTIONS(3461), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_GT] = ACTIONS(3459), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(3459), + [anon_sym_POUNDfileID] = ACTIONS(3461), + [anon_sym_POUNDfilePath] = ACTIONS(3461), + [anon_sym_POUNDline] = ACTIONS(3461), + [anon_sym_POUNDcolumn] = ACTIONS(3461), + [anon_sym_POUNDfunction] = ACTIONS(3461), + [anon_sym_POUNDdsohandle] = ACTIONS(3461), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3459), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3459), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(3461), + [sym__plus_then_ws] = ACTIONS(3461), + [sym__minus_then_ws] = ACTIONS(3461), + [sym_bang] = ACTIONS(137), + }, + [833] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1595), + [sym_boolean_literal] = STATE(1595), + [sym__string_literal] = STATE(1595), + [sym_line_string_literal] = STATE(1595), + [sym_multi_line_string_literal] = STATE(1595), + [sym_raw_string_literal] = STATE(1595), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1595), + [sym__unary_expression] = STATE(1595), + [sym_postfix_expression] = STATE(1595), + [sym_constructor_expression] = STATE(1595), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1595), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1595), + [sym_prefix_expression] = STATE(1595), + [sym_as_expression] = STATE(1595), + [sym_selector_expression] = STATE(1595), + [sym__binary_expression] = STATE(1595), + [sym_multiplicative_expression] = STATE(1595), + [sym_additive_expression] = STATE(1595), + [sym_range_expression] = STATE(1595), + [sym_infix_expression] = STATE(1595), + [sym_nil_coalescing_expression] = STATE(1595), + [sym_check_expression] = STATE(1595), + [sym_comparison_expression] = STATE(1595), + [sym_equality_expression] = STATE(1595), + [sym_conjunction_expression] = STATE(1595), + [sym_disjunction_expression] = STATE(1595), + [sym_bitwise_operation] = STATE(1595), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1595), + [sym_await_expression] = STATE(1595), + [sym_ternary_expression] = STATE(1595), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1595), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1595), + [sym_dictionary_literal] = STATE(1595), + [sym__special_literal] = STATE(1595), + [sym__playground_literal] = STATE(1595), + [sym_lambda_literal] = STATE(1595), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1595), + [sym_key_path_expression] = STATE(1595), + [sym_key_path_string_expression] = STATE(1595), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1595), + [sym__comparison_operator] = STATE(1595), + [sym__additive_operator] = STATE(1595), + [sym__multiplicative_operator] = STATE(1595), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1595), + [sym__referenceable_operator] = STATE(1595), + [sym__eq_eq] = STATE(1595), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3463), + [sym_real_literal] = ACTIONS(3465), + [sym_integer_literal] = ACTIONS(3463), + [sym_hex_literal] = ACTIONS(3465), + [sym_oct_literal] = ACTIONS(3465), + [sym_bin_literal] = ACTIONS(3465), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3463), + [anon_sym_GT] = ACTIONS(3463), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3463), + [anon_sym_POUNDfileID] = ACTIONS(3465), + [anon_sym_POUNDfilePath] = ACTIONS(3465), + [anon_sym_POUNDline] = ACTIONS(3465), + [anon_sym_POUNDcolumn] = ACTIONS(3465), + [anon_sym_POUNDfunction] = ACTIONS(3465), + [anon_sym_POUNDdsohandle] = ACTIONS(3465), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3463), + [anon_sym_LT_EQ] = ACTIONS(3463), + [anon_sym_GT_EQ] = ACTIONS(3463), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3463), + [anon_sym_SLASH] = ACTIONS(3463), + [anon_sym_PERCENT] = ACTIONS(3463), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3465), + [sym__plus_then_ws] = ACTIONS(3465), + [sym__minus_then_ws] = ACTIONS(3465), + [sym_bang] = ACTIONS(1069), + }, + [834] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2084), + [sym_boolean_literal] = STATE(2084), + [sym__string_literal] = STATE(2084), + [sym_line_string_literal] = STATE(2084), + [sym_multi_line_string_literal] = STATE(2084), + [sym_raw_string_literal] = STATE(2084), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2084), + [sym__unary_expression] = STATE(2084), + [sym_postfix_expression] = STATE(2084), + [sym_constructor_expression] = STATE(2084), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2084), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2084), + [sym_prefix_expression] = STATE(2084), + [sym_as_expression] = STATE(2084), + [sym_selector_expression] = STATE(2084), + [sym__binary_expression] = STATE(2084), + [sym_multiplicative_expression] = STATE(2084), + [sym_additive_expression] = STATE(2084), + [sym_range_expression] = STATE(2084), + [sym_infix_expression] = STATE(2084), + [sym_nil_coalescing_expression] = STATE(2084), + [sym_check_expression] = STATE(2084), + [sym_comparison_expression] = STATE(2084), + [sym_equality_expression] = STATE(2084), + [sym_conjunction_expression] = STATE(2084), + [sym_disjunction_expression] = STATE(2084), + [sym_bitwise_operation] = STATE(2084), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2084), + [sym_await_expression] = STATE(2084), + [sym_ternary_expression] = STATE(2084), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2084), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2084), + [sym_dictionary_literal] = STATE(2084), + [sym__special_literal] = STATE(2084), + [sym__playground_literal] = STATE(2084), + [sym_lambda_literal] = STATE(2084), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2084), + [sym_key_path_expression] = STATE(2084), + [sym_key_path_string_expression] = STATE(2084), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2084), + [sym__comparison_operator] = STATE(2084), + [sym__additive_operator] = STATE(2084), + [sym__multiplicative_operator] = STATE(2084), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2084), + [sym__referenceable_operator] = STATE(2084), + [sym__eq_eq] = STATE(2084), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3467), + [sym_real_literal] = ACTIONS(3469), + [sym_integer_literal] = ACTIONS(3467), + [sym_hex_literal] = ACTIONS(3469), + [sym_oct_literal] = ACTIONS(3469), + [sym_bin_literal] = ACTIONS(3469), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3467), + [anon_sym_GT] = ACTIONS(3467), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3467), + [anon_sym_POUNDfileID] = ACTIONS(3469), + [anon_sym_POUNDfilePath] = ACTIONS(3469), + [anon_sym_POUNDline] = ACTIONS(3469), + [anon_sym_POUNDcolumn] = ACTIONS(3469), + [anon_sym_POUNDfunction] = ACTIONS(3469), + [anon_sym_POUNDdsohandle] = ACTIONS(3469), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3467), + [anon_sym_LT_EQ] = ACTIONS(3467), + [anon_sym_GT_EQ] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3467), + [anon_sym_SLASH] = ACTIONS(3467), + [anon_sym_PERCENT] = ACTIONS(3467), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3469), + [sym__plus_then_ws] = ACTIONS(3469), + [sym__minus_then_ws] = ACTIONS(3469), + [sym_bang] = ACTIONS(1069), + }, + [835] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2079), + [sym_boolean_literal] = STATE(2079), + [sym__string_literal] = STATE(2079), + [sym_line_string_literal] = STATE(2079), + [sym_multi_line_string_literal] = STATE(2079), + [sym_raw_string_literal] = STATE(2079), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2079), + [sym__unary_expression] = STATE(2079), + [sym_postfix_expression] = STATE(2079), + [sym_constructor_expression] = STATE(2079), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2079), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2079), + [sym_prefix_expression] = STATE(2079), + [sym_as_expression] = STATE(2079), + [sym_selector_expression] = STATE(2079), + [sym__binary_expression] = STATE(2079), + [sym_multiplicative_expression] = STATE(2079), + [sym_additive_expression] = STATE(2079), + [sym_range_expression] = STATE(2079), + [sym_infix_expression] = STATE(2079), + [sym_nil_coalescing_expression] = STATE(2079), + [sym_check_expression] = STATE(2079), + [sym_comparison_expression] = STATE(2079), + [sym_equality_expression] = STATE(2079), + [sym_conjunction_expression] = STATE(2079), + [sym_disjunction_expression] = STATE(2079), + [sym_bitwise_operation] = STATE(2079), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2079), + [sym_await_expression] = STATE(2079), + [sym_ternary_expression] = STATE(2079), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2079), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2079), + [sym_dictionary_literal] = STATE(2079), + [sym__special_literal] = STATE(2079), + [sym__playground_literal] = STATE(2079), + [sym_lambda_literal] = STATE(2079), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2079), + [sym_key_path_expression] = STATE(2079), + [sym_key_path_string_expression] = STATE(2079), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2079), + [sym__comparison_operator] = STATE(2079), + [sym__additive_operator] = STATE(2079), + [sym__multiplicative_operator] = STATE(2079), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2079), + [sym__referenceable_operator] = STATE(2079), + [sym__eq_eq] = STATE(2079), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3471), + [sym_real_literal] = ACTIONS(3473), + [sym_integer_literal] = ACTIONS(3471), + [sym_hex_literal] = ACTIONS(3473), + [sym_oct_literal] = ACTIONS(3473), + [sym_bin_literal] = ACTIONS(3473), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3471), + [anon_sym_GT] = ACTIONS(3471), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3471), + [anon_sym_POUNDfileID] = ACTIONS(3473), + [anon_sym_POUNDfilePath] = ACTIONS(3473), + [anon_sym_POUNDline] = ACTIONS(3473), + [anon_sym_POUNDcolumn] = ACTIONS(3473), + [anon_sym_POUNDfunction] = ACTIONS(3473), + [anon_sym_POUNDdsohandle] = ACTIONS(3473), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3471), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3471), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3471), + [anon_sym_LT_EQ] = ACTIONS(3471), + [anon_sym_GT_EQ] = ACTIONS(3471), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3471), + [anon_sym_SLASH] = ACTIONS(3471), + [anon_sym_PERCENT] = ACTIONS(3471), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3473), + [sym__plus_then_ws] = ACTIONS(3473), + [sym__minus_then_ws] = ACTIONS(3473), + [sym_bang] = ACTIONS(1069), + }, + [836] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1968), + [sym_boolean_literal] = STATE(1968), + [sym__string_literal] = STATE(1968), + [sym_line_string_literal] = STATE(1968), + [sym_multi_line_string_literal] = STATE(1968), + [sym_raw_string_literal] = STATE(1968), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1968), + [sym__unary_expression] = STATE(1968), + [sym_postfix_expression] = STATE(1968), + [sym_constructor_expression] = STATE(1968), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1968), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1968), + [sym_prefix_expression] = STATE(1968), + [sym_as_expression] = STATE(1968), + [sym_selector_expression] = STATE(1968), + [sym__binary_expression] = STATE(1968), + [sym_multiplicative_expression] = STATE(1968), + [sym_additive_expression] = STATE(1968), + [sym_range_expression] = STATE(1968), + [sym_infix_expression] = STATE(1968), + [sym_nil_coalescing_expression] = STATE(1968), + [sym_check_expression] = STATE(1968), + [sym_comparison_expression] = STATE(1968), + [sym_equality_expression] = STATE(1968), + [sym_conjunction_expression] = STATE(1968), + [sym_disjunction_expression] = STATE(1968), + [sym_bitwise_operation] = STATE(1968), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1968), + [sym_await_expression] = STATE(1968), + [sym_ternary_expression] = STATE(1968), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1968), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1968), + [sym_dictionary_literal] = STATE(1968), + [sym__special_literal] = STATE(1968), + [sym__playground_literal] = STATE(1968), + [sym_lambda_literal] = STATE(1968), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1968), + [sym_key_path_expression] = STATE(1968), + [sym_key_path_string_expression] = STATE(1968), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1968), + [sym__comparison_operator] = STATE(1968), + [sym__additive_operator] = STATE(1968), + [sym__multiplicative_operator] = STATE(1968), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1968), + [sym__referenceable_operator] = STATE(1968), + [sym__eq_eq] = STATE(1968), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3475), + [sym_real_literal] = ACTIONS(3477), + [sym_integer_literal] = ACTIONS(3475), + [sym_hex_literal] = ACTIONS(3477), + [sym_oct_literal] = ACTIONS(3477), + [sym_bin_literal] = ACTIONS(3477), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3475), + [anon_sym_GT] = ACTIONS(3475), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3475), + [anon_sym_POUNDfileID] = ACTIONS(3477), + [anon_sym_POUNDfilePath] = ACTIONS(3477), + [anon_sym_POUNDline] = ACTIONS(3477), + [anon_sym_POUNDcolumn] = ACTIONS(3477), + [anon_sym_POUNDfunction] = ACTIONS(3477), + [anon_sym_POUNDdsohandle] = ACTIONS(3477), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3475), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3475), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3475), + [anon_sym_LT_EQ] = ACTIONS(3475), + [anon_sym_GT_EQ] = ACTIONS(3475), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3475), + [anon_sym_SLASH] = ACTIONS(3475), + [anon_sym_PERCENT] = ACTIONS(3475), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3477), + [sym__plus_then_ws] = ACTIONS(3477), + [sym__minus_then_ws] = ACTIONS(3477), + [sym_bang] = ACTIONS(833), + }, + [837] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2078), + [sym_boolean_literal] = STATE(2078), + [sym__string_literal] = STATE(2078), + [sym_line_string_literal] = STATE(2078), + [sym_multi_line_string_literal] = STATE(2078), + [sym_raw_string_literal] = STATE(2078), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2078), + [sym__unary_expression] = STATE(2078), + [sym_postfix_expression] = STATE(2078), + [sym_constructor_expression] = STATE(2078), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2078), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2078), + [sym_prefix_expression] = STATE(2078), + [sym_as_expression] = STATE(2078), + [sym_selector_expression] = STATE(2078), + [sym__binary_expression] = STATE(2078), + [sym_multiplicative_expression] = STATE(2078), + [sym_additive_expression] = STATE(2078), + [sym_range_expression] = STATE(2078), + [sym_infix_expression] = STATE(2078), + [sym_nil_coalescing_expression] = STATE(2078), + [sym_check_expression] = STATE(2078), + [sym_comparison_expression] = STATE(2078), + [sym_equality_expression] = STATE(2078), + [sym_conjunction_expression] = STATE(2078), + [sym_disjunction_expression] = STATE(2078), + [sym_bitwise_operation] = STATE(2078), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2078), + [sym_await_expression] = STATE(2078), + [sym_ternary_expression] = STATE(2078), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2078), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2078), + [sym_dictionary_literal] = STATE(2078), + [sym__special_literal] = STATE(2078), + [sym__playground_literal] = STATE(2078), + [sym_lambda_literal] = STATE(2078), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2078), + [sym_key_path_expression] = STATE(2078), + [sym_key_path_string_expression] = STATE(2078), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2078), + [sym__comparison_operator] = STATE(2078), + [sym__additive_operator] = STATE(2078), + [sym__multiplicative_operator] = STATE(2078), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2078), + [sym__referenceable_operator] = STATE(2078), + [sym__eq_eq] = STATE(2078), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3479), + [sym_real_literal] = ACTIONS(3481), + [sym_integer_literal] = ACTIONS(3479), + [sym_hex_literal] = ACTIONS(3481), + [sym_oct_literal] = ACTIONS(3481), + [sym_bin_literal] = ACTIONS(3481), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3479), + [anon_sym_GT] = ACTIONS(3479), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3479), + [anon_sym_POUNDfileID] = ACTIONS(3481), + [anon_sym_POUNDfilePath] = ACTIONS(3481), + [anon_sym_POUNDline] = ACTIONS(3481), + [anon_sym_POUNDcolumn] = ACTIONS(3481), + [anon_sym_POUNDfunction] = ACTIONS(3481), + [anon_sym_POUNDdsohandle] = ACTIONS(3481), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3479), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3479), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3479), + [anon_sym_LT_EQ] = ACTIONS(3479), + [anon_sym_GT_EQ] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3479), + [anon_sym_SLASH] = ACTIONS(3479), + [anon_sym_PERCENT] = ACTIONS(3479), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3481), + [sym__plus_then_ws] = ACTIONS(3481), + [sym__minus_then_ws] = ACTIONS(3481), + [sym_bang] = ACTIONS(1069), + }, + [838] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1962), + [sym_boolean_literal] = STATE(1962), + [sym__string_literal] = STATE(1962), + [sym_line_string_literal] = STATE(1962), + [sym_multi_line_string_literal] = STATE(1962), + [sym_raw_string_literal] = STATE(1962), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1962), + [sym__unary_expression] = STATE(1962), + [sym_postfix_expression] = STATE(1962), + [sym_constructor_expression] = STATE(1962), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1962), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1962), + [sym_prefix_expression] = STATE(1962), + [sym_as_expression] = STATE(1962), + [sym_selector_expression] = STATE(1962), + [sym__binary_expression] = STATE(1962), + [sym_multiplicative_expression] = STATE(1962), + [sym_additive_expression] = STATE(1962), + [sym_range_expression] = STATE(1962), + [sym_infix_expression] = STATE(1962), + [sym_nil_coalescing_expression] = STATE(1962), + [sym_check_expression] = STATE(1962), + [sym_comparison_expression] = STATE(1962), + [sym_equality_expression] = STATE(1962), + [sym_conjunction_expression] = STATE(1962), + [sym_disjunction_expression] = STATE(1962), + [sym_bitwise_operation] = STATE(1962), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1962), + [sym_await_expression] = STATE(1962), + [sym_ternary_expression] = STATE(1962), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1962), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1962), + [sym_dictionary_literal] = STATE(1962), + [sym__special_literal] = STATE(1962), + [sym__playground_literal] = STATE(1962), + [sym_lambda_literal] = STATE(1962), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1962), + [sym_key_path_expression] = STATE(1962), + [sym_key_path_string_expression] = STATE(1962), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1962), + [sym__comparison_operator] = STATE(1962), + [sym__additive_operator] = STATE(1962), + [sym__multiplicative_operator] = STATE(1962), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1962), + [sym__referenceable_operator] = STATE(1962), + [sym__eq_eq] = STATE(1962), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3483), + [sym_real_literal] = ACTIONS(3485), + [sym_integer_literal] = ACTIONS(3483), + [sym_hex_literal] = ACTIONS(3485), + [sym_oct_literal] = ACTIONS(3485), + [sym_bin_literal] = ACTIONS(3485), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3483), + [anon_sym_GT] = ACTIONS(3483), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3483), + [anon_sym_POUNDfileID] = ACTIONS(3485), + [anon_sym_POUNDfilePath] = ACTIONS(3485), + [anon_sym_POUNDline] = ACTIONS(3485), + [anon_sym_POUNDcolumn] = ACTIONS(3485), + [anon_sym_POUNDfunction] = ACTIONS(3485), + [anon_sym_POUNDdsohandle] = ACTIONS(3485), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3483), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3483), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3483), + [anon_sym_LT_EQ] = ACTIONS(3483), + [anon_sym_GT_EQ] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3483), + [anon_sym_SLASH] = ACTIONS(3483), + [anon_sym_PERCENT] = ACTIONS(3483), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3485), + [sym__plus_then_ws] = ACTIONS(3485), + [sym__minus_then_ws] = ACTIONS(3485), + [sym_bang] = ACTIONS(1069), + }, + [839] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1698), + [sym_boolean_literal] = STATE(1698), + [sym__string_literal] = STATE(1698), + [sym_line_string_literal] = STATE(1698), + [sym_multi_line_string_literal] = STATE(1698), + [sym_raw_string_literal] = STATE(1698), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1698), + [sym__unary_expression] = STATE(1698), + [sym_postfix_expression] = STATE(1698), + [sym_constructor_expression] = STATE(1698), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1698), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1698), + [sym_prefix_expression] = STATE(1698), + [sym_as_expression] = STATE(1698), + [sym_selector_expression] = STATE(1698), + [sym__binary_expression] = STATE(1698), + [sym_multiplicative_expression] = STATE(1698), + [sym_additive_expression] = STATE(1698), + [sym_range_expression] = STATE(1698), + [sym_infix_expression] = STATE(1698), + [sym_nil_coalescing_expression] = STATE(1698), + [sym_check_expression] = STATE(1698), + [sym_comparison_expression] = STATE(1698), + [sym_equality_expression] = STATE(1698), + [sym_conjunction_expression] = STATE(1698), + [sym_disjunction_expression] = STATE(1698), + [sym_bitwise_operation] = STATE(1698), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1698), + [sym_await_expression] = STATE(1698), + [sym_ternary_expression] = STATE(1698), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1698), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1698), + [sym_dictionary_literal] = STATE(1698), + [sym__special_literal] = STATE(1698), + [sym__playground_literal] = STATE(1698), + [sym_lambda_literal] = STATE(1698), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1698), + [sym_key_path_expression] = STATE(1698), + [sym_key_path_string_expression] = STATE(1698), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1698), + [sym__comparison_operator] = STATE(1698), + [sym__additive_operator] = STATE(1698), + [sym__multiplicative_operator] = STATE(1698), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1698), + [sym__referenceable_operator] = STATE(1698), + [sym__eq_eq] = STATE(1698), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3487), + [sym_real_literal] = ACTIONS(3489), + [sym_integer_literal] = ACTIONS(3487), + [sym_hex_literal] = ACTIONS(3489), + [sym_oct_literal] = ACTIONS(3489), + [sym_bin_literal] = ACTIONS(3489), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3487), + [anon_sym_GT] = ACTIONS(3487), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3487), + [anon_sym_POUNDfileID] = ACTIONS(3489), + [anon_sym_POUNDfilePath] = ACTIONS(3489), + [anon_sym_POUNDline] = ACTIONS(3489), + [anon_sym_POUNDcolumn] = ACTIONS(3489), + [anon_sym_POUNDfunction] = ACTIONS(3489), + [anon_sym_POUNDdsohandle] = ACTIONS(3489), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3487), + [anon_sym_LT_EQ] = ACTIONS(3487), + [anon_sym_GT_EQ] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3487), + [anon_sym_SLASH] = ACTIONS(3487), + [anon_sym_PERCENT] = ACTIONS(3487), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3489), + [sym__plus_then_ws] = ACTIONS(3489), + [sym__minus_then_ws] = ACTIONS(3489), + [sym_bang] = ACTIONS(833), + }, + [840] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2030), + [sym_boolean_literal] = STATE(2030), + [sym__string_literal] = STATE(2030), + [sym_line_string_literal] = STATE(2030), + [sym_multi_line_string_literal] = STATE(2030), + [sym_raw_string_literal] = STATE(2030), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2030), + [sym__unary_expression] = STATE(2030), + [sym_postfix_expression] = STATE(2030), + [sym_constructor_expression] = STATE(2030), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2030), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2030), + [sym_prefix_expression] = STATE(2030), + [sym_as_expression] = STATE(2030), + [sym_selector_expression] = STATE(2030), + [sym__binary_expression] = STATE(2030), + [sym_multiplicative_expression] = STATE(2030), + [sym_additive_expression] = STATE(2030), + [sym_range_expression] = STATE(2030), + [sym_infix_expression] = STATE(2030), + [sym_nil_coalescing_expression] = STATE(2030), + [sym_check_expression] = STATE(2030), + [sym_comparison_expression] = STATE(2030), + [sym_equality_expression] = STATE(2030), + [sym_conjunction_expression] = STATE(2030), + [sym_disjunction_expression] = STATE(2030), + [sym_bitwise_operation] = STATE(2030), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2030), + [sym_await_expression] = STATE(2030), + [sym_ternary_expression] = STATE(2030), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2030), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2030), + [sym_dictionary_literal] = STATE(2030), + [sym__special_literal] = STATE(2030), + [sym__playground_literal] = STATE(2030), + [sym_lambda_literal] = STATE(2030), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2030), + [sym_key_path_expression] = STATE(2030), + [sym_key_path_string_expression] = STATE(2030), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2030), + [sym__comparison_operator] = STATE(2030), + [sym__additive_operator] = STATE(2030), + [sym__multiplicative_operator] = STATE(2030), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(2030), + [sym__referenceable_operator] = STATE(2030), + [sym__eq_eq] = STATE(2030), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(3491), + [sym_real_literal] = ACTIONS(3493), + [sym_integer_literal] = ACTIONS(3491), + [sym_hex_literal] = ACTIONS(3493), + [sym_oct_literal] = ACTIONS(3493), + [sym_bin_literal] = ACTIONS(3493), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(3491), + [anon_sym_GT] = ACTIONS(3491), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(3491), + [anon_sym_POUNDfileID] = ACTIONS(3493), + [anon_sym_POUNDfilePath] = ACTIONS(3493), + [anon_sym_POUNDline] = ACTIONS(3493), + [anon_sym_POUNDcolumn] = ACTIONS(3493), + [anon_sym_POUNDfunction] = ACTIONS(3493), + [anon_sym_POUNDdsohandle] = ACTIONS(3493), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(3491), + [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_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_SLASH] = ACTIONS(3491), + [anon_sym_PERCENT] = ACTIONS(3491), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(3493), + [sym__plus_then_ws] = ACTIONS(3493), + [sym__minus_then_ws] = ACTIONS(3493), + [sym_bang] = ACTIONS(137), + }, + [841] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2077), + [sym_boolean_literal] = STATE(2077), + [sym__string_literal] = STATE(2077), + [sym_line_string_literal] = STATE(2077), + [sym_multi_line_string_literal] = STATE(2077), + [sym_raw_string_literal] = STATE(2077), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2077), + [sym__unary_expression] = STATE(2077), + [sym_postfix_expression] = STATE(2077), + [sym_constructor_expression] = STATE(2077), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2077), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2077), + [sym_prefix_expression] = STATE(2077), + [sym_as_expression] = STATE(2077), + [sym_selector_expression] = STATE(2077), + [sym__binary_expression] = STATE(2077), + [sym_multiplicative_expression] = STATE(2077), + [sym_additive_expression] = STATE(2077), + [sym_range_expression] = STATE(2077), + [sym_infix_expression] = STATE(2077), + [sym_nil_coalescing_expression] = STATE(2077), + [sym_check_expression] = STATE(2077), + [sym_comparison_expression] = STATE(2077), + [sym_equality_expression] = STATE(2077), + [sym_conjunction_expression] = STATE(2077), + [sym_disjunction_expression] = STATE(2077), + [sym_bitwise_operation] = STATE(2077), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2077), + [sym_await_expression] = STATE(2077), + [sym_ternary_expression] = STATE(2077), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2077), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2077), + [sym_dictionary_literal] = STATE(2077), + [sym__special_literal] = STATE(2077), + [sym__playground_literal] = STATE(2077), + [sym_lambda_literal] = STATE(2077), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2077), + [sym_key_path_expression] = STATE(2077), + [sym_key_path_string_expression] = STATE(2077), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2077), + [sym__comparison_operator] = STATE(2077), + [sym__additive_operator] = STATE(2077), + [sym__multiplicative_operator] = STATE(2077), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2077), + [sym__referenceable_operator] = STATE(2077), + [sym__eq_eq] = STATE(2077), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3495), + [sym_real_literal] = ACTIONS(3497), + [sym_integer_literal] = ACTIONS(3495), + [sym_hex_literal] = ACTIONS(3497), + [sym_oct_literal] = ACTIONS(3497), + [sym_bin_literal] = ACTIONS(3497), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3495), + [anon_sym_GT] = ACTIONS(3495), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3495), + [anon_sym_POUNDfileID] = ACTIONS(3497), + [anon_sym_POUNDfilePath] = ACTIONS(3497), + [anon_sym_POUNDline] = ACTIONS(3497), + [anon_sym_POUNDcolumn] = ACTIONS(3497), + [anon_sym_POUNDfunction] = ACTIONS(3497), + [anon_sym_POUNDdsohandle] = ACTIONS(3497), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3495), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3495), + [anon_sym_SLASH] = ACTIONS(3495), + [anon_sym_PERCENT] = ACTIONS(3495), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3497), + [sym__plus_then_ws] = ACTIONS(3497), + [sym__minus_then_ws] = ACTIONS(3497), + [sym_bang] = ACTIONS(1069), + }, + [842] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2076), + [sym_boolean_literal] = STATE(2076), + [sym__string_literal] = STATE(2076), + [sym_line_string_literal] = STATE(2076), + [sym_multi_line_string_literal] = STATE(2076), + [sym_raw_string_literal] = STATE(2076), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2076), + [sym__unary_expression] = STATE(2076), + [sym_postfix_expression] = STATE(2076), + [sym_constructor_expression] = STATE(2076), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2076), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2076), + [sym_prefix_expression] = STATE(2076), + [sym_as_expression] = STATE(2076), + [sym_selector_expression] = STATE(2076), + [sym__binary_expression] = STATE(2076), + [sym_multiplicative_expression] = STATE(2076), + [sym_additive_expression] = STATE(2076), + [sym_range_expression] = STATE(2076), + [sym_infix_expression] = STATE(2076), + [sym_nil_coalescing_expression] = STATE(2076), + [sym_check_expression] = STATE(2076), + [sym_comparison_expression] = STATE(2076), + [sym_equality_expression] = STATE(2076), + [sym_conjunction_expression] = STATE(2076), + [sym_disjunction_expression] = STATE(2076), + [sym_bitwise_operation] = STATE(2076), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2076), + [sym_await_expression] = STATE(2076), + [sym_ternary_expression] = STATE(2076), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2076), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2076), + [sym_dictionary_literal] = STATE(2076), + [sym__special_literal] = STATE(2076), + [sym__playground_literal] = STATE(2076), + [sym_lambda_literal] = STATE(2076), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2076), + [sym_key_path_expression] = STATE(2076), + [sym_key_path_string_expression] = STATE(2076), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2076), + [sym__comparison_operator] = STATE(2076), + [sym__additive_operator] = STATE(2076), + [sym__multiplicative_operator] = STATE(2076), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2076), + [sym__referenceable_operator] = STATE(2076), + [sym__eq_eq] = STATE(2076), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3499), + [sym_real_literal] = ACTIONS(3501), + [sym_integer_literal] = ACTIONS(3499), + [sym_hex_literal] = ACTIONS(3501), + [sym_oct_literal] = ACTIONS(3501), + [sym_bin_literal] = ACTIONS(3501), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3499), + [anon_sym_GT] = ACTIONS(3499), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3499), + [anon_sym_POUNDfileID] = ACTIONS(3501), + [anon_sym_POUNDfilePath] = ACTIONS(3501), + [anon_sym_POUNDline] = ACTIONS(3501), + [anon_sym_POUNDcolumn] = ACTIONS(3501), + [anon_sym_POUNDfunction] = ACTIONS(3501), + [anon_sym_POUNDdsohandle] = ACTIONS(3501), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3499), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3499), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3499), + [anon_sym_LT_EQ] = ACTIONS(3499), + [anon_sym_GT_EQ] = ACTIONS(3499), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3499), + [anon_sym_SLASH] = ACTIONS(3499), + [anon_sym_PERCENT] = ACTIONS(3499), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3501), + [sym__plus_then_ws] = ACTIONS(3501), + [sym__minus_then_ws] = ACTIONS(3501), + [sym_bang] = ACTIONS(1069), + }, + [843] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2075), + [sym_boolean_literal] = STATE(2075), + [sym__string_literal] = STATE(2075), + [sym_line_string_literal] = STATE(2075), + [sym_multi_line_string_literal] = STATE(2075), + [sym_raw_string_literal] = STATE(2075), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2075), + [sym__unary_expression] = STATE(2075), + [sym_postfix_expression] = STATE(2075), + [sym_constructor_expression] = STATE(2075), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2075), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2075), + [sym_prefix_expression] = STATE(2075), + [sym_as_expression] = STATE(2075), + [sym_selector_expression] = STATE(2075), + [sym__binary_expression] = STATE(2075), + [sym_multiplicative_expression] = STATE(2075), + [sym_additive_expression] = STATE(2075), + [sym_range_expression] = STATE(2075), + [sym_infix_expression] = STATE(2075), + [sym_nil_coalescing_expression] = STATE(2075), + [sym_check_expression] = STATE(2075), + [sym_comparison_expression] = STATE(2075), + [sym_equality_expression] = STATE(2075), + [sym_conjunction_expression] = STATE(2075), + [sym_disjunction_expression] = STATE(2075), + [sym_bitwise_operation] = STATE(2075), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2075), + [sym_await_expression] = STATE(2075), + [sym_ternary_expression] = STATE(2075), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2075), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2075), + [sym_dictionary_literal] = STATE(2075), + [sym__special_literal] = STATE(2075), + [sym__playground_literal] = STATE(2075), + [sym_lambda_literal] = STATE(2075), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2075), + [sym_key_path_expression] = STATE(2075), + [sym_key_path_string_expression] = STATE(2075), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2075), + [sym__comparison_operator] = STATE(2075), + [sym__additive_operator] = STATE(2075), + [sym__multiplicative_operator] = STATE(2075), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2075), + [sym__referenceable_operator] = STATE(2075), + [sym__eq_eq] = STATE(2075), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3503), + [sym_real_literal] = ACTIONS(3505), + [sym_integer_literal] = ACTIONS(3503), + [sym_hex_literal] = ACTIONS(3505), + [sym_oct_literal] = ACTIONS(3505), + [sym_bin_literal] = ACTIONS(3505), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3503), + [anon_sym_GT] = ACTIONS(3503), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3503), + [anon_sym_POUNDfileID] = ACTIONS(3505), + [anon_sym_POUNDfilePath] = ACTIONS(3505), + [anon_sym_POUNDline] = ACTIONS(3505), + [anon_sym_POUNDcolumn] = ACTIONS(3505), + [anon_sym_POUNDfunction] = ACTIONS(3505), + [anon_sym_POUNDdsohandle] = ACTIONS(3505), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3503), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3503), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3503), + [anon_sym_LT_EQ] = ACTIONS(3503), + [anon_sym_GT_EQ] = ACTIONS(3503), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3503), + [anon_sym_SLASH] = ACTIONS(3503), + [anon_sym_PERCENT] = ACTIONS(3503), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3505), + [sym__plus_then_ws] = ACTIONS(3505), + [sym__minus_then_ws] = ACTIONS(3505), + [sym_bang] = ACTIONS(1069), + }, + [844] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1592), + [sym_boolean_literal] = STATE(1592), + [sym__string_literal] = STATE(1592), + [sym_line_string_literal] = STATE(1592), + [sym_multi_line_string_literal] = STATE(1592), + [sym_raw_string_literal] = STATE(1592), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1592), + [sym__unary_expression] = STATE(1592), + [sym_postfix_expression] = STATE(1592), + [sym_constructor_expression] = STATE(1592), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1592), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1592), + [sym_prefix_expression] = STATE(1592), + [sym_as_expression] = STATE(1592), + [sym_selector_expression] = STATE(1592), + [sym__binary_expression] = STATE(1592), + [sym_multiplicative_expression] = STATE(1592), + [sym_additive_expression] = STATE(1592), + [sym_range_expression] = STATE(1592), + [sym_infix_expression] = STATE(1592), + [sym_nil_coalescing_expression] = STATE(1592), + [sym_check_expression] = STATE(1592), + [sym_comparison_expression] = STATE(1592), + [sym_equality_expression] = STATE(1592), + [sym_conjunction_expression] = STATE(1592), + [sym_disjunction_expression] = STATE(1592), + [sym_bitwise_operation] = STATE(1592), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1592), + [sym_await_expression] = STATE(1592), + [sym_ternary_expression] = STATE(1592), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1592), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1592), + [sym_dictionary_literal] = STATE(1592), + [sym__special_literal] = STATE(1592), + [sym__playground_literal] = STATE(1592), + [sym_lambda_literal] = STATE(1592), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1592), + [sym_key_path_expression] = STATE(1592), + [sym_key_path_string_expression] = STATE(1592), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1592), + [sym__comparison_operator] = STATE(1592), + [sym__additive_operator] = STATE(1592), + [sym__multiplicative_operator] = STATE(1592), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1592), + [sym__referenceable_operator] = STATE(1592), + [sym__eq_eq] = STATE(1592), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3507), + [sym_real_literal] = ACTIONS(3509), + [sym_integer_literal] = ACTIONS(3507), + [sym_hex_literal] = ACTIONS(3509), + [sym_oct_literal] = ACTIONS(3509), + [sym_bin_literal] = ACTIONS(3509), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3507), + [anon_sym_GT] = ACTIONS(3507), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3507), + [anon_sym_POUNDfileID] = ACTIONS(3509), + [anon_sym_POUNDfilePath] = ACTIONS(3509), + [anon_sym_POUNDline] = ACTIONS(3509), + [anon_sym_POUNDcolumn] = ACTIONS(3509), + [anon_sym_POUNDfunction] = ACTIONS(3509), + [anon_sym_POUNDdsohandle] = ACTIONS(3509), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3507), + [anon_sym_LT_EQ] = ACTIONS(3507), + [anon_sym_GT_EQ] = ACTIONS(3507), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3507), + [anon_sym_SLASH] = ACTIONS(3507), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3509), + [sym__plus_then_ws] = ACTIONS(3509), + [sym__minus_then_ws] = ACTIONS(3509), + [sym_bang] = ACTIONS(1069), + }, + [845] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2073), + [sym_boolean_literal] = STATE(2073), + [sym__string_literal] = STATE(2073), + [sym_line_string_literal] = STATE(2073), + [sym_multi_line_string_literal] = STATE(2073), + [sym_raw_string_literal] = STATE(2073), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2073), + [sym__unary_expression] = STATE(2073), + [sym_postfix_expression] = STATE(2073), + [sym_constructor_expression] = STATE(2073), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2073), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2073), + [sym_prefix_expression] = STATE(2073), + [sym_as_expression] = STATE(2073), + [sym_selector_expression] = STATE(2073), + [sym__binary_expression] = STATE(2073), + [sym_multiplicative_expression] = STATE(2073), + [sym_additive_expression] = STATE(2073), + [sym_range_expression] = STATE(2073), + [sym_infix_expression] = STATE(2073), + [sym_nil_coalescing_expression] = STATE(2073), + [sym_check_expression] = STATE(2073), + [sym_comparison_expression] = STATE(2073), + [sym_equality_expression] = STATE(2073), + [sym_conjunction_expression] = STATE(2073), + [sym_disjunction_expression] = STATE(2073), + [sym_bitwise_operation] = STATE(2073), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2073), + [sym_await_expression] = STATE(2073), + [sym_ternary_expression] = STATE(2073), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2073), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2073), + [sym_dictionary_literal] = STATE(2073), + [sym__special_literal] = STATE(2073), + [sym__playground_literal] = STATE(2073), + [sym_lambda_literal] = STATE(2073), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2073), + [sym_key_path_expression] = STATE(2073), + [sym_key_path_string_expression] = STATE(2073), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2073), + [sym__comparison_operator] = STATE(2073), + [sym__additive_operator] = STATE(2073), + [sym__multiplicative_operator] = STATE(2073), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2073), + [sym__referenceable_operator] = STATE(2073), + [sym__eq_eq] = STATE(2073), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3511), + [sym_real_literal] = ACTIONS(3513), + [sym_integer_literal] = ACTIONS(3511), + [sym_hex_literal] = ACTIONS(3513), + [sym_oct_literal] = ACTIONS(3513), + [sym_bin_literal] = ACTIONS(3513), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3511), + [anon_sym_GT] = ACTIONS(3511), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3511), + [anon_sym_POUNDfileID] = ACTIONS(3513), + [anon_sym_POUNDfilePath] = ACTIONS(3513), + [anon_sym_POUNDline] = ACTIONS(3513), + [anon_sym_POUNDcolumn] = ACTIONS(3513), + [anon_sym_POUNDfunction] = ACTIONS(3513), + [anon_sym_POUNDdsohandle] = ACTIONS(3513), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3511), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3511), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3511), + [anon_sym_LT_EQ] = ACTIONS(3511), + [anon_sym_GT_EQ] = ACTIONS(3511), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3511), + [anon_sym_SLASH] = ACTIONS(3511), + [anon_sym_PERCENT] = ACTIONS(3511), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3513), + [sym__plus_then_ws] = ACTIONS(3513), + [sym__minus_then_ws] = ACTIONS(3513), + [sym_bang] = ACTIONS(1069), + }, + [846] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym__string_literal] = STATE(2031), + [sym_line_string_literal] = STATE(2031), + [sym_multi_line_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2031), + [sym__unary_expression] = STATE(2031), + [sym_postfix_expression] = STATE(2031), + [sym_constructor_expression] = STATE(2031), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2031), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2031), + [sym_prefix_expression] = STATE(2031), + [sym_as_expression] = STATE(2031), + [sym_selector_expression] = STATE(2031), + [sym__binary_expression] = STATE(2031), + [sym_multiplicative_expression] = STATE(2031), + [sym_additive_expression] = STATE(2031), + [sym_range_expression] = STATE(2031), + [sym_infix_expression] = STATE(2031), + [sym_nil_coalescing_expression] = STATE(2031), + [sym_check_expression] = STATE(2031), + [sym_comparison_expression] = STATE(2031), + [sym_equality_expression] = STATE(2031), + [sym_conjunction_expression] = STATE(2031), + [sym_disjunction_expression] = STATE(2031), + [sym_bitwise_operation] = STATE(2031), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2031), + [sym_await_expression] = STATE(2031), + [sym_ternary_expression] = STATE(2031), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2031), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2031), + [sym_dictionary_literal] = STATE(2031), + [sym__special_literal] = STATE(2031), + [sym__playground_literal] = STATE(2031), + [sym_lambda_literal] = STATE(2031), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2031), + [sym_key_path_expression] = STATE(2031), + [sym_key_path_string_expression] = STATE(2031), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2031), + [sym__comparison_operator] = STATE(2031), + [sym__additive_operator] = STATE(2031), + [sym__multiplicative_operator] = STATE(2031), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(2031), + [sym__referenceable_operator] = STATE(2031), + [sym__eq_eq] = STATE(2031), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(3515), + [sym_real_literal] = ACTIONS(3517), + [sym_integer_literal] = ACTIONS(3515), + [sym_hex_literal] = ACTIONS(3517), + [sym_oct_literal] = ACTIONS(3517), + [sym_bin_literal] = ACTIONS(3517), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(3515), + [anon_sym_GT] = ACTIONS(3515), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(3515), + [anon_sym_POUNDfileID] = ACTIONS(3517), + [anon_sym_POUNDfilePath] = ACTIONS(3517), + [anon_sym_POUNDline] = ACTIONS(3517), + [anon_sym_POUNDcolumn] = ACTIONS(3517), + [anon_sym_POUNDfunction] = ACTIONS(3517), + [anon_sym_POUNDdsohandle] = ACTIONS(3517), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(3515), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3515), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3515), + [anon_sym_LT_EQ] = ACTIONS(3515), + [anon_sym_GT_EQ] = ACTIONS(3515), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(3515), + [anon_sym_SLASH] = ACTIONS(3515), + [anon_sym_PERCENT] = ACTIONS(3515), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(3517), + [sym__plus_then_ws] = ACTIONS(3517), + [sym__minus_then_ws] = ACTIONS(3517), + [sym_bang] = ACTIONS(137), + }, + [847] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2193), + [sym_boolean_literal] = STATE(2193), + [sym__string_literal] = STATE(2193), + [sym_line_string_literal] = STATE(2193), + [sym_multi_line_string_literal] = STATE(2193), + [sym_raw_string_literal] = STATE(2193), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2193), + [sym__unary_expression] = STATE(2193), + [sym_postfix_expression] = STATE(2193), + [sym_constructor_expression] = STATE(2193), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2193), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2193), + [sym_prefix_expression] = STATE(2193), + [sym_as_expression] = STATE(2193), + [sym_selector_expression] = STATE(2193), + [sym__binary_expression] = STATE(2193), + [sym_multiplicative_expression] = STATE(2193), + [sym_additive_expression] = STATE(2193), + [sym_range_expression] = STATE(2193), + [sym_infix_expression] = STATE(2193), + [sym_nil_coalescing_expression] = STATE(2193), + [sym_check_expression] = STATE(2193), + [sym_comparison_expression] = STATE(2193), + [sym_equality_expression] = STATE(2193), + [sym_conjunction_expression] = STATE(2193), + [sym_disjunction_expression] = STATE(2193), + [sym_bitwise_operation] = STATE(2193), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2193), + [sym_await_expression] = STATE(2193), + [sym_ternary_expression] = STATE(2193), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2193), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2193), + [sym_dictionary_literal] = STATE(2193), + [sym__special_literal] = STATE(2193), + [sym__playground_literal] = STATE(2193), + [sym_lambda_literal] = STATE(2193), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2193), + [sym_key_path_expression] = STATE(2193), + [sym_key_path_string_expression] = STATE(2193), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2193), + [sym__comparison_operator] = STATE(2193), + [sym__additive_operator] = STATE(2193), + [sym__multiplicative_operator] = STATE(2193), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2193), + [sym__referenceable_operator] = STATE(2193), + [sym__eq_eq] = STATE(2193), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3519), + [sym_real_literal] = ACTIONS(3521), + [sym_integer_literal] = ACTIONS(3519), + [sym_hex_literal] = ACTIONS(3521), + [sym_oct_literal] = ACTIONS(3521), + [sym_bin_literal] = ACTIONS(3521), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3519), + [anon_sym_GT] = ACTIONS(3519), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3519), + [anon_sym_POUNDfileID] = ACTIONS(3521), + [anon_sym_POUNDfilePath] = ACTIONS(3521), + [anon_sym_POUNDline] = ACTIONS(3521), + [anon_sym_POUNDcolumn] = ACTIONS(3521), + [anon_sym_POUNDfunction] = ACTIONS(3521), + [anon_sym_POUNDdsohandle] = ACTIONS(3521), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3519), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3519), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3519), + [anon_sym_LT_EQ] = ACTIONS(3519), + [anon_sym_GT_EQ] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3519), + [anon_sym_SLASH] = ACTIONS(3519), + [anon_sym_PERCENT] = ACTIONS(3519), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3521), + [sym__plus_then_ws] = ACTIONS(3521), + [sym__minus_then_ws] = ACTIONS(3521), + [sym_bang] = ACTIONS(833), + }, + [848] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2067), + [sym_boolean_literal] = STATE(2067), + [sym__string_literal] = STATE(2067), + [sym_line_string_literal] = STATE(2067), + [sym_multi_line_string_literal] = STATE(2067), + [sym_raw_string_literal] = STATE(2067), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2067), + [sym__unary_expression] = STATE(2067), + [sym_postfix_expression] = STATE(2067), + [sym_constructor_expression] = STATE(2067), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2067), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2067), + [sym_prefix_expression] = STATE(2067), + [sym_as_expression] = STATE(2067), + [sym_selector_expression] = STATE(2067), + [sym__binary_expression] = STATE(2067), + [sym_multiplicative_expression] = STATE(2067), + [sym_additive_expression] = STATE(2067), + [sym_range_expression] = STATE(2067), + [sym_infix_expression] = STATE(2067), + [sym_nil_coalescing_expression] = STATE(2067), + [sym_check_expression] = STATE(2067), + [sym_comparison_expression] = STATE(2067), + [sym_equality_expression] = STATE(2067), + [sym_conjunction_expression] = STATE(2067), + [sym_disjunction_expression] = STATE(2067), + [sym_bitwise_operation] = STATE(2067), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2067), + [sym_await_expression] = STATE(2067), + [sym_ternary_expression] = STATE(2067), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2067), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2067), + [sym_dictionary_literal] = STATE(2067), + [sym__special_literal] = STATE(2067), + [sym__playground_literal] = STATE(2067), + [sym_lambda_literal] = STATE(2067), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2067), + [sym_key_path_expression] = STATE(2067), + [sym_key_path_string_expression] = STATE(2067), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2067), + [sym__comparison_operator] = STATE(2067), + [sym__additive_operator] = STATE(2067), + [sym__multiplicative_operator] = STATE(2067), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2067), + [sym__referenceable_operator] = STATE(2067), + [sym__eq_eq] = STATE(2067), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3523), + [sym_real_literal] = ACTIONS(3525), + [sym_integer_literal] = ACTIONS(3523), + [sym_hex_literal] = ACTIONS(3525), + [sym_oct_literal] = ACTIONS(3525), + [sym_bin_literal] = ACTIONS(3525), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3523), + [anon_sym_GT] = ACTIONS(3523), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3523), + [anon_sym_POUNDfileID] = ACTIONS(3525), + [anon_sym_POUNDfilePath] = ACTIONS(3525), + [anon_sym_POUNDline] = ACTIONS(3525), + [anon_sym_POUNDcolumn] = ACTIONS(3525), + [anon_sym_POUNDfunction] = ACTIONS(3525), + [anon_sym_POUNDdsohandle] = ACTIONS(3525), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3523), + [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_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3523), + [anon_sym_SLASH] = ACTIONS(3523), + [anon_sym_PERCENT] = ACTIONS(3523), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3525), + [sym__plus_then_ws] = ACTIONS(3525), + [sym__minus_then_ws] = ACTIONS(3525), + [sym_bang] = ACTIONS(1069), + }, + [849] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2066), + [sym_boolean_literal] = STATE(2066), + [sym__string_literal] = STATE(2066), + [sym_line_string_literal] = STATE(2066), + [sym_multi_line_string_literal] = STATE(2066), + [sym_raw_string_literal] = STATE(2066), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2066), + [sym__unary_expression] = STATE(2066), + [sym_postfix_expression] = STATE(2066), + [sym_constructor_expression] = STATE(2066), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2066), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2066), + [sym_prefix_expression] = STATE(2066), + [sym_as_expression] = STATE(2066), + [sym_selector_expression] = STATE(2066), + [sym__binary_expression] = STATE(2066), + [sym_multiplicative_expression] = STATE(2066), + [sym_additive_expression] = STATE(2066), + [sym_range_expression] = STATE(2066), + [sym_infix_expression] = STATE(2066), + [sym_nil_coalescing_expression] = STATE(2066), + [sym_check_expression] = STATE(2066), + [sym_comparison_expression] = STATE(2066), + [sym_equality_expression] = STATE(2066), + [sym_conjunction_expression] = STATE(2066), + [sym_disjunction_expression] = STATE(2066), + [sym_bitwise_operation] = STATE(2066), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2066), + [sym_await_expression] = STATE(2066), + [sym_ternary_expression] = STATE(2066), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2066), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2066), + [sym_dictionary_literal] = STATE(2066), + [sym__special_literal] = STATE(2066), + [sym__playground_literal] = STATE(2066), + [sym_lambda_literal] = STATE(2066), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2066), + [sym_key_path_expression] = STATE(2066), + [sym_key_path_string_expression] = STATE(2066), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2066), + [sym__comparison_operator] = STATE(2066), + [sym__additive_operator] = STATE(2066), + [sym__multiplicative_operator] = STATE(2066), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2066), + [sym__referenceable_operator] = STATE(2066), + [sym__eq_eq] = STATE(2066), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3527), + [sym_real_literal] = ACTIONS(3529), + [sym_integer_literal] = ACTIONS(3527), + [sym_hex_literal] = ACTIONS(3529), + [sym_oct_literal] = ACTIONS(3529), + [sym_bin_literal] = ACTIONS(3529), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3527), + [anon_sym_GT] = ACTIONS(3527), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3527), + [anon_sym_POUNDfileID] = ACTIONS(3529), + [anon_sym_POUNDfilePath] = ACTIONS(3529), + [anon_sym_POUNDline] = ACTIONS(3529), + [anon_sym_POUNDcolumn] = ACTIONS(3529), + [anon_sym_POUNDfunction] = ACTIONS(3529), + [anon_sym_POUNDdsohandle] = ACTIONS(3529), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3527), + [anon_sym_LT_EQ] = ACTIONS(3527), + [anon_sym_GT_EQ] = ACTIONS(3527), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3527), + [anon_sym_SLASH] = ACTIONS(3527), + [anon_sym_PERCENT] = ACTIONS(3527), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3529), + [sym__plus_then_ws] = ACTIONS(3529), + [sym__minus_then_ws] = ACTIONS(3529), + [sym_bang] = ACTIONS(1069), + }, + [850] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1587), + [sym_boolean_literal] = STATE(1587), + [sym__string_literal] = STATE(1587), + [sym_line_string_literal] = STATE(1587), + [sym_multi_line_string_literal] = STATE(1587), + [sym_raw_string_literal] = STATE(1587), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1587), + [sym__unary_expression] = STATE(1587), + [sym_postfix_expression] = STATE(1587), + [sym_constructor_expression] = STATE(1587), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1587), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1587), + [sym_prefix_expression] = STATE(1587), + [sym_as_expression] = STATE(1587), + [sym_selector_expression] = STATE(1587), + [sym__binary_expression] = STATE(1587), + [sym_multiplicative_expression] = STATE(1587), + [sym_additive_expression] = STATE(1587), + [sym_range_expression] = STATE(1587), + [sym_infix_expression] = STATE(1587), + [sym_nil_coalescing_expression] = STATE(1587), + [sym_check_expression] = STATE(1587), + [sym_comparison_expression] = STATE(1587), + [sym_equality_expression] = STATE(1587), + [sym_conjunction_expression] = STATE(1587), + [sym_disjunction_expression] = STATE(1587), + [sym_bitwise_operation] = STATE(1587), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1587), + [sym_await_expression] = STATE(1587), + [sym_ternary_expression] = STATE(1587), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1587), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1587), + [sym_dictionary_literal] = STATE(1587), + [sym__special_literal] = STATE(1587), + [sym__playground_literal] = STATE(1587), + [sym_lambda_literal] = STATE(1587), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1587), + [sym_key_path_expression] = STATE(1587), + [sym_key_path_string_expression] = STATE(1587), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1587), + [sym__comparison_operator] = STATE(1587), + [sym__additive_operator] = STATE(1587), + [sym__multiplicative_operator] = STATE(1587), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1587), + [sym__referenceable_operator] = STATE(1587), + [sym__eq_eq] = STATE(1587), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3531), + [sym_real_literal] = ACTIONS(3533), + [sym_integer_literal] = ACTIONS(3531), + [sym_hex_literal] = ACTIONS(3533), + [sym_oct_literal] = ACTIONS(3533), + [sym_bin_literal] = ACTIONS(3533), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3531), + [anon_sym_GT] = ACTIONS(3531), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3531), + [anon_sym_POUNDfileID] = ACTIONS(3533), + [anon_sym_POUNDfilePath] = ACTIONS(3533), + [anon_sym_POUNDline] = ACTIONS(3533), + [anon_sym_POUNDcolumn] = ACTIONS(3533), + [anon_sym_POUNDfunction] = ACTIONS(3533), + [anon_sym_POUNDdsohandle] = ACTIONS(3533), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3531), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3531), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3531), + [anon_sym_LT_EQ] = ACTIONS(3531), + [anon_sym_GT_EQ] = ACTIONS(3531), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3531), + [anon_sym_SLASH] = ACTIONS(3531), + [anon_sym_PERCENT] = ACTIONS(3531), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3533), + [sym__plus_then_ws] = ACTIONS(3533), + [sym__minus_then_ws] = ACTIONS(3533), + [sym_bang] = ACTIONS(1069), + }, + [851] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1586), + [sym_boolean_literal] = STATE(1586), + [sym__string_literal] = STATE(1586), + [sym_line_string_literal] = STATE(1586), + [sym_multi_line_string_literal] = STATE(1586), + [sym_raw_string_literal] = STATE(1586), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1586), + [sym__unary_expression] = STATE(1586), + [sym_postfix_expression] = STATE(1586), + [sym_constructor_expression] = STATE(1586), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1586), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1586), + [sym_prefix_expression] = STATE(1586), + [sym_as_expression] = STATE(1586), + [sym_selector_expression] = STATE(1586), + [sym__binary_expression] = STATE(1586), + [sym_multiplicative_expression] = STATE(1586), + [sym_additive_expression] = STATE(1586), + [sym_range_expression] = STATE(1586), + [sym_infix_expression] = STATE(1586), + [sym_nil_coalescing_expression] = STATE(1586), + [sym_check_expression] = STATE(1586), + [sym_comparison_expression] = STATE(1586), + [sym_equality_expression] = STATE(1586), + [sym_conjunction_expression] = STATE(1586), + [sym_disjunction_expression] = STATE(1586), + [sym_bitwise_operation] = STATE(1586), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1586), + [sym_await_expression] = STATE(1586), + [sym_ternary_expression] = STATE(1586), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1586), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1586), + [sym_dictionary_literal] = STATE(1586), + [sym__special_literal] = STATE(1586), + [sym__playground_literal] = STATE(1586), + [sym_lambda_literal] = STATE(1586), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1586), + [sym_key_path_expression] = STATE(1586), + [sym_key_path_string_expression] = STATE(1586), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1586), + [sym__comparison_operator] = STATE(1586), + [sym__additive_operator] = STATE(1586), + [sym__multiplicative_operator] = STATE(1586), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1586), + [sym__referenceable_operator] = STATE(1586), + [sym__eq_eq] = STATE(1586), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3535), + [sym_real_literal] = ACTIONS(3537), + [sym_integer_literal] = ACTIONS(3535), + [sym_hex_literal] = ACTIONS(3537), + [sym_oct_literal] = ACTIONS(3537), + [sym_bin_literal] = ACTIONS(3537), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3535), + [anon_sym_GT] = ACTIONS(3535), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3535), + [anon_sym_POUNDfileID] = ACTIONS(3537), + [anon_sym_POUNDfilePath] = ACTIONS(3537), + [anon_sym_POUNDline] = ACTIONS(3537), + [anon_sym_POUNDcolumn] = ACTIONS(3537), + [anon_sym_POUNDfunction] = ACTIONS(3537), + [anon_sym_POUNDdsohandle] = ACTIONS(3537), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3535), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3535), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3535), + [anon_sym_LT_EQ] = ACTIONS(3535), + [anon_sym_GT_EQ] = ACTIONS(3535), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3535), + [anon_sym_SLASH] = ACTIONS(3535), + [anon_sym_PERCENT] = ACTIONS(3535), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3537), + [sym__plus_then_ws] = ACTIONS(3537), + [sym__minus_then_ws] = ACTIONS(3537), + [sym_bang] = ACTIONS(1069), + }, + [852] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1793), + [sym_boolean_literal] = STATE(1793), + [sym__string_literal] = STATE(1793), + [sym_line_string_literal] = STATE(1793), + [sym_multi_line_string_literal] = STATE(1793), + [sym_raw_string_literal] = STATE(1793), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1793), + [sym__unary_expression] = STATE(1793), + [sym_postfix_expression] = STATE(1793), + [sym_constructor_expression] = STATE(1793), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1793), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1793), + [sym_prefix_expression] = STATE(1793), + [sym_as_expression] = STATE(1793), + [sym_selector_expression] = STATE(1793), + [sym__binary_expression] = STATE(1793), + [sym_multiplicative_expression] = STATE(1793), + [sym_additive_expression] = STATE(1793), + [sym_range_expression] = STATE(1793), + [sym_infix_expression] = STATE(1793), + [sym_nil_coalescing_expression] = STATE(1793), + [sym_check_expression] = STATE(1793), + [sym_comparison_expression] = STATE(1793), + [sym_equality_expression] = STATE(1793), + [sym_conjunction_expression] = STATE(1793), + [sym_disjunction_expression] = STATE(1793), + [sym_bitwise_operation] = STATE(1793), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1793), + [sym_await_expression] = STATE(1793), + [sym_ternary_expression] = STATE(1793), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1793), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1793), + [sym_dictionary_literal] = STATE(1793), + [sym__special_literal] = STATE(1793), + [sym__playground_literal] = STATE(1793), + [sym_lambda_literal] = STATE(1793), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1793), + [sym_key_path_expression] = STATE(1793), + [sym_key_path_string_expression] = STATE(1793), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1793), + [sym__additive_operator] = STATE(1793), + [sym__multiplicative_operator] = STATE(1793), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1793), + [sym__referenceable_operator] = STATE(1793), + [sym__eq_eq] = STATE(1793), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3539), + [sym_real_literal] = ACTIONS(3541), + [sym_integer_literal] = ACTIONS(3539), + [sym_hex_literal] = ACTIONS(3541), + [sym_oct_literal] = ACTIONS(3541), + [sym_bin_literal] = ACTIONS(3541), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3539), + [anon_sym_GT] = ACTIONS(3539), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3539), + [anon_sym_POUNDfileID] = ACTIONS(3541), + [anon_sym_POUNDfilePath] = ACTIONS(3541), + [anon_sym_POUNDline] = ACTIONS(3541), + [anon_sym_POUNDcolumn] = ACTIONS(3541), + [anon_sym_POUNDfunction] = ACTIONS(3541), + [anon_sym_POUNDdsohandle] = ACTIONS(3541), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3539), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3539), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3539), + [anon_sym_LT_EQ] = ACTIONS(3539), + [anon_sym_GT_EQ] = ACTIONS(3539), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3539), + [anon_sym_SLASH] = ACTIONS(3539), + [anon_sym_PERCENT] = ACTIONS(3539), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3541), + [sym__plus_then_ws] = ACTIONS(3541), + [sym__minus_then_ws] = ACTIONS(3541), + [sym_bang] = ACTIONS(1467), + }, + [853] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2065), + [sym_boolean_literal] = STATE(2065), + [sym__string_literal] = STATE(2065), + [sym_line_string_literal] = STATE(2065), + [sym_multi_line_string_literal] = STATE(2065), + [sym_raw_string_literal] = STATE(2065), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2065), + [sym__unary_expression] = STATE(2065), + [sym_postfix_expression] = STATE(2065), + [sym_constructor_expression] = STATE(2065), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2065), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2065), + [sym_prefix_expression] = STATE(2065), + [sym_as_expression] = STATE(2065), + [sym_selector_expression] = STATE(2065), + [sym__binary_expression] = STATE(2065), + [sym_multiplicative_expression] = STATE(2065), + [sym_additive_expression] = STATE(2065), + [sym_range_expression] = STATE(2065), + [sym_infix_expression] = STATE(2065), + [sym_nil_coalescing_expression] = STATE(2065), + [sym_check_expression] = STATE(2065), + [sym_comparison_expression] = STATE(2065), + [sym_equality_expression] = STATE(2065), + [sym_conjunction_expression] = STATE(2065), + [sym_disjunction_expression] = STATE(2065), + [sym_bitwise_operation] = STATE(2065), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2065), + [sym_await_expression] = STATE(2065), + [sym_ternary_expression] = STATE(2065), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2065), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2065), + [sym_dictionary_literal] = STATE(2065), + [sym__special_literal] = STATE(2065), + [sym__playground_literal] = STATE(2065), + [sym_lambda_literal] = STATE(2065), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2065), + [sym_key_path_expression] = STATE(2065), + [sym_key_path_string_expression] = STATE(2065), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2065), + [sym__comparison_operator] = STATE(2065), + [sym__additive_operator] = STATE(2065), + [sym__multiplicative_operator] = STATE(2065), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2065), + [sym__referenceable_operator] = STATE(2065), + [sym__eq_eq] = STATE(2065), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3543), + [sym_real_literal] = ACTIONS(3545), + [sym_integer_literal] = ACTIONS(3543), + [sym_hex_literal] = ACTIONS(3545), + [sym_oct_literal] = ACTIONS(3545), + [sym_bin_literal] = ACTIONS(3545), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3543), + [anon_sym_GT] = ACTIONS(3543), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3543), + [anon_sym_POUNDfileID] = ACTIONS(3545), + [anon_sym_POUNDfilePath] = ACTIONS(3545), + [anon_sym_POUNDline] = ACTIONS(3545), + [anon_sym_POUNDcolumn] = ACTIONS(3545), + [anon_sym_POUNDfunction] = ACTIONS(3545), + [anon_sym_POUNDdsohandle] = ACTIONS(3545), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3543), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3543), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3543), + [anon_sym_LT_EQ] = ACTIONS(3543), + [anon_sym_GT_EQ] = ACTIONS(3543), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3543), + [anon_sym_SLASH] = ACTIONS(3543), + [anon_sym_PERCENT] = ACTIONS(3543), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3545), + [sym__plus_then_ws] = ACTIONS(3545), + [sym__minus_then_ws] = ACTIONS(3545), + [sym_bang] = ACTIONS(1069), + }, + [854] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2063), + [sym_boolean_literal] = STATE(2063), + [sym__string_literal] = STATE(2063), + [sym_line_string_literal] = STATE(2063), + [sym_multi_line_string_literal] = STATE(2063), + [sym_raw_string_literal] = STATE(2063), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2063), + [sym__unary_expression] = STATE(2063), + [sym_postfix_expression] = STATE(2063), + [sym_constructor_expression] = STATE(2063), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2063), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2063), + [sym_prefix_expression] = STATE(2063), + [sym_as_expression] = STATE(2063), + [sym_selector_expression] = STATE(2063), + [sym__binary_expression] = STATE(2063), + [sym_multiplicative_expression] = STATE(2063), + [sym_additive_expression] = STATE(2063), + [sym_range_expression] = STATE(2063), + [sym_infix_expression] = STATE(2063), + [sym_nil_coalescing_expression] = STATE(2063), + [sym_check_expression] = STATE(2063), + [sym_comparison_expression] = STATE(2063), + [sym_equality_expression] = STATE(2063), + [sym_conjunction_expression] = STATE(2063), + [sym_disjunction_expression] = STATE(2063), + [sym_bitwise_operation] = STATE(2063), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2063), + [sym_await_expression] = STATE(2063), + [sym_ternary_expression] = STATE(2063), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2063), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2063), + [sym_dictionary_literal] = STATE(2063), + [sym__special_literal] = STATE(2063), + [sym__playground_literal] = STATE(2063), + [sym_lambda_literal] = STATE(2063), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2063), + [sym_key_path_expression] = STATE(2063), + [sym_key_path_string_expression] = STATE(2063), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2063), + [sym__comparison_operator] = STATE(2063), + [sym__additive_operator] = STATE(2063), + [sym__multiplicative_operator] = STATE(2063), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2063), + [sym__referenceable_operator] = STATE(2063), + [sym__eq_eq] = STATE(2063), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3547), + [sym_real_literal] = ACTIONS(3549), + [sym_integer_literal] = ACTIONS(3547), + [sym_hex_literal] = ACTIONS(3549), + [sym_oct_literal] = ACTIONS(3549), + [sym_bin_literal] = ACTIONS(3549), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3547), + [anon_sym_GT] = ACTIONS(3547), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3547), + [anon_sym_POUNDfileID] = ACTIONS(3549), + [anon_sym_POUNDfilePath] = ACTIONS(3549), + [anon_sym_POUNDline] = ACTIONS(3549), + [anon_sym_POUNDcolumn] = ACTIONS(3549), + [anon_sym_POUNDfunction] = ACTIONS(3549), + [anon_sym_POUNDdsohandle] = ACTIONS(3549), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3547), + [anon_sym_LT_EQ] = ACTIONS(3547), + [anon_sym_GT_EQ] = ACTIONS(3547), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3547), + [anon_sym_SLASH] = ACTIONS(3547), + [anon_sym_PERCENT] = ACTIONS(3547), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3549), + [sym__plus_then_ws] = ACTIONS(3549), + [sym__minus_then_ws] = ACTIONS(3549), + [sym_bang] = ACTIONS(1069), + }, + [855] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2062), + [sym_boolean_literal] = STATE(2062), + [sym__string_literal] = STATE(2062), + [sym_line_string_literal] = STATE(2062), + [sym_multi_line_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2062), + [sym__unary_expression] = STATE(2062), + [sym_postfix_expression] = STATE(2062), + [sym_constructor_expression] = STATE(2062), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2062), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2062), + [sym_prefix_expression] = STATE(2062), + [sym_as_expression] = STATE(2062), + [sym_selector_expression] = STATE(2062), + [sym__binary_expression] = STATE(2062), + [sym_multiplicative_expression] = STATE(2062), + [sym_additive_expression] = STATE(2062), + [sym_range_expression] = STATE(2062), + [sym_infix_expression] = STATE(2062), + [sym_nil_coalescing_expression] = STATE(2062), + [sym_check_expression] = STATE(2062), + [sym_comparison_expression] = STATE(2062), + [sym_equality_expression] = STATE(2062), + [sym_conjunction_expression] = STATE(2062), + [sym_disjunction_expression] = STATE(2062), + [sym_bitwise_operation] = STATE(2062), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2062), + [sym_await_expression] = STATE(2062), + [sym_ternary_expression] = STATE(2062), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2062), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2062), + [sym_dictionary_literal] = STATE(2062), + [sym__special_literal] = STATE(2062), + [sym__playground_literal] = STATE(2062), + [sym_lambda_literal] = STATE(2062), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2062), + [sym_key_path_expression] = STATE(2062), + [sym_key_path_string_expression] = STATE(2062), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2062), + [sym__comparison_operator] = STATE(2062), + [sym__additive_operator] = STATE(2062), + [sym__multiplicative_operator] = STATE(2062), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2062), + [sym__referenceable_operator] = STATE(2062), + [sym__eq_eq] = STATE(2062), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3551), + [sym_real_literal] = ACTIONS(3553), + [sym_integer_literal] = ACTIONS(3551), + [sym_hex_literal] = ACTIONS(3553), + [sym_oct_literal] = ACTIONS(3553), + [sym_bin_literal] = ACTIONS(3553), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3551), + [anon_sym_POUNDfileID] = ACTIONS(3553), + [anon_sym_POUNDfilePath] = ACTIONS(3553), + [anon_sym_POUNDline] = ACTIONS(3553), + [anon_sym_POUNDcolumn] = ACTIONS(3553), + [anon_sym_POUNDfunction] = ACTIONS(3553), + [anon_sym_POUNDdsohandle] = ACTIONS(3553), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3551), + [anon_sym_SLASH] = ACTIONS(3551), + [anon_sym_PERCENT] = ACTIONS(3551), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3553), + [sym__plus_then_ws] = ACTIONS(3553), + [sym__minus_then_ws] = ACTIONS(3553), + [sym_bang] = ACTIONS(1069), + }, + [856] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1790), + [sym_boolean_literal] = STATE(1790), + [sym__string_literal] = STATE(1790), + [sym_line_string_literal] = STATE(1790), + [sym_multi_line_string_literal] = STATE(1790), + [sym_raw_string_literal] = STATE(1790), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1790), + [sym__unary_expression] = STATE(1790), + [sym_postfix_expression] = STATE(1790), + [sym_constructor_expression] = STATE(1790), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1790), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1790), + [sym_prefix_expression] = STATE(1790), + [sym_as_expression] = STATE(1790), + [sym_selector_expression] = STATE(1790), + [sym__binary_expression] = STATE(1790), + [sym_multiplicative_expression] = STATE(1790), + [sym_additive_expression] = STATE(1790), + [sym_range_expression] = STATE(1790), + [sym_infix_expression] = STATE(1790), + [sym_nil_coalescing_expression] = STATE(1790), + [sym_check_expression] = STATE(1790), + [sym_comparison_expression] = STATE(1790), + [sym_equality_expression] = STATE(1790), + [sym_conjunction_expression] = STATE(1790), + [sym_disjunction_expression] = STATE(1790), + [sym_bitwise_operation] = STATE(1790), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1790), + [sym_await_expression] = STATE(1790), + [sym_ternary_expression] = STATE(1790), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1790), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1790), + [sym_dictionary_literal] = STATE(1790), + [sym__special_literal] = STATE(1790), + [sym__playground_literal] = STATE(1790), + [sym_lambda_literal] = STATE(1790), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1790), + [sym_key_path_expression] = STATE(1790), + [sym_key_path_string_expression] = STATE(1790), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1790), + [sym__comparison_operator] = STATE(1790), + [sym__additive_operator] = STATE(1790), + [sym__multiplicative_operator] = STATE(1790), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1790), + [sym__referenceable_operator] = STATE(1790), + [sym__eq_eq] = STATE(1790), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3555), + [sym_real_literal] = ACTIONS(3557), + [sym_integer_literal] = ACTIONS(3555), + [sym_hex_literal] = ACTIONS(3557), + [sym_oct_literal] = ACTIONS(3557), + [sym_bin_literal] = ACTIONS(3557), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3555), + [anon_sym_GT] = ACTIONS(3555), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3555), + [anon_sym_POUNDfileID] = ACTIONS(3557), + [anon_sym_POUNDfilePath] = ACTIONS(3557), + [anon_sym_POUNDline] = ACTIONS(3557), + [anon_sym_POUNDcolumn] = ACTIONS(3557), + [anon_sym_POUNDfunction] = ACTIONS(3557), + [anon_sym_POUNDdsohandle] = ACTIONS(3557), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3555), + [anon_sym_LT_EQ] = ACTIONS(3555), + [anon_sym_GT_EQ] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3555), + [anon_sym_SLASH] = ACTIONS(3555), + [anon_sym_PERCENT] = ACTIONS(3555), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3557), + [sym__plus_then_ws] = ACTIONS(3557), + [sym__minus_then_ws] = ACTIONS(3557), + [sym_bang] = ACTIONS(1467), + }, + [857] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2198), + [sym_boolean_literal] = STATE(2198), + [sym__string_literal] = STATE(2198), + [sym_line_string_literal] = STATE(2198), + [sym_multi_line_string_literal] = STATE(2198), + [sym_raw_string_literal] = STATE(2198), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2198), + [sym__unary_expression] = STATE(2198), + [sym_postfix_expression] = STATE(2198), + [sym_constructor_expression] = STATE(2198), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2198), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2198), + [sym_prefix_expression] = STATE(2198), + [sym_as_expression] = STATE(2198), + [sym_selector_expression] = STATE(2198), + [sym__binary_expression] = STATE(2198), + [sym_multiplicative_expression] = STATE(2198), + [sym_additive_expression] = STATE(2198), + [sym_range_expression] = STATE(2198), + [sym_infix_expression] = STATE(2198), + [sym_nil_coalescing_expression] = STATE(2198), + [sym_check_expression] = STATE(2198), + [sym_comparison_expression] = STATE(2198), + [sym_equality_expression] = STATE(2198), + [sym_conjunction_expression] = STATE(2198), + [sym_disjunction_expression] = STATE(2198), + [sym_bitwise_operation] = STATE(2198), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2198), + [sym_await_expression] = STATE(2198), + [sym_ternary_expression] = STATE(2198), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2198), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2198), + [sym_dictionary_literal] = STATE(2198), + [sym__special_literal] = STATE(2198), + [sym__playground_literal] = STATE(2198), + [sym_lambda_literal] = STATE(2198), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2198), + [sym_key_path_expression] = STATE(2198), + [sym_key_path_string_expression] = STATE(2198), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2198), + [sym__comparison_operator] = STATE(2198), + [sym__additive_operator] = STATE(2198), + [sym__multiplicative_operator] = STATE(2198), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2198), + [sym__referenceable_operator] = STATE(2198), + [sym__eq_eq] = STATE(2198), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(1369), + [sym_real_literal] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1369), + [sym_hex_literal] = ACTIONS(1371), + [sym_oct_literal] = ACTIONS(1371), + [sym_bin_literal] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1369), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(1369), + [anon_sym_POUNDfileID] = ACTIONS(1371), + [anon_sym_POUNDfilePath] = ACTIONS(1371), + [anon_sym_POUNDline] = ACTIONS(1371), + [anon_sym_POUNDcolumn] = ACTIONS(1371), + [anon_sym_POUNDfunction] = ACTIONS(1371), + [anon_sym_POUNDdsohandle] = ACTIONS(1371), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [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_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(1371), + [sym__plus_then_ws] = ACTIONS(1371), + [sym__minus_then_ws] = ACTIONS(1371), + [sym_bang] = ACTIONS(833), + }, + [858] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1787), + [sym_boolean_literal] = STATE(1787), + [sym__string_literal] = STATE(1787), + [sym_line_string_literal] = STATE(1787), + [sym_multi_line_string_literal] = STATE(1787), + [sym_raw_string_literal] = STATE(1787), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1787), + [sym__unary_expression] = STATE(1787), + [sym_postfix_expression] = STATE(1787), + [sym_constructor_expression] = STATE(1787), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1787), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1787), + [sym_prefix_expression] = STATE(1787), + [sym_as_expression] = STATE(1787), + [sym_selector_expression] = STATE(1787), + [sym__binary_expression] = STATE(1787), + [sym_multiplicative_expression] = STATE(1787), + [sym_additive_expression] = STATE(1787), + [sym_range_expression] = STATE(1787), + [sym_infix_expression] = STATE(1787), + [sym_nil_coalescing_expression] = STATE(1787), + [sym_check_expression] = STATE(1787), + [sym_comparison_expression] = STATE(1787), + [sym_equality_expression] = STATE(1787), + [sym_conjunction_expression] = STATE(1787), + [sym_disjunction_expression] = STATE(1787), + [sym_bitwise_operation] = STATE(1787), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1787), + [sym_await_expression] = STATE(1787), + [sym_ternary_expression] = STATE(1787), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1787), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1787), + [sym_dictionary_literal] = STATE(1787), + [sym__special_literal] = STATE(1787), + [sym__playground_literal] = STATE(1787), + [sym_lambda_literal] = STATE(1787), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1787), + [sym_key_path_expression] = STATE(1787), + [sym_key_path_string_expression] = STATE(1787), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1787), + [sym__comparison_operator] = STATE(1787), + [sym__additive_operator] = STATE(1787), + [sym__multiplicative_operator] = STATE(1787), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1787), + [sym__referenceable_operator] = STATE(1787), + [sym__eq_eq] = STATE(1787), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3559), + [sym_real_literal] = ACTIONS(3561), + [sym_integer_literal] = ACTIONS(3559), + [sym_hex_literal] = ACTIONS(3561), + [sym_oct_literal] = ACTIONS(3561), + [sym_bin_literal] = ACTIONS(3561), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3559), + [anon_sym_GT] = ACTIONS(3559), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3559), + [anon_sym_POUNDfileID] = ACTIONS(3561), + [anon_sym_POUNDfilePath] = ACTIONS(3561), + [anon_sym_POUNDline] = ACTIONS(3561), + [anon_sym_POUNDcolumn] = ACTIONS(3561), + [anon_sym_POUNDfunction] = ACTIONS(3561), + [anon_sym_POUNDdsohandle] = ACTIONS(3561), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3559), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3559), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3559), + [anon_sym_LT_EQ] = ACTIONS(3559), + [anon_sym_GT_EQ] = ACTIONS(3559), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_PERCENT] = ACTIONS(3559), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3561), + [sym__plus_then_ws] = ACTIONS(3561), + [sym__minus_then_ws] = ACTIONS(3561), + [sym_bang] = ACTIONS(1467), + }, + [859] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2033), + [sym_boolean_literal] = STATE(2033), + [sym__string_literal] = STATE(2033), + [sym_line_string_literal] = STATE(2033), + [sym_multi_line_string_literal] = STATE(2033), + [sym_raw_string_literal] = STATE(2033), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2033), + [sym__unary_expression] = STATE(2033), + [sym_postfix_expression] = STATE(2033), + [sym_constructor_expression] = STATE(2033), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2033), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2033), + [sym_prefix_expression] = STATE(2033), + [sym_as_expression] = STATE(2033), + [sym_selector_expression] = STATE(2033), + [sym__binary_expression] = STATE(2033), + [sym_multiplicative_expression] = STATE(2033), + [sym_additive_expression] = STATE(2033), + [sym_range_expression] = STATE(2033), + [sym_infix_expression] = STATE(2033), + [sym_nil_coalescing_expression] = STATE(2033), + [sym_check_expression] = STATE(2033), + [sym_comparison_expression] = STATE(2033), + [sym_equality_expression] = STATE(2033), + [sym_conjunction_expression] = STATE(2033), + [sym_disjunction_expression] = STATE(2033), + [sym_bitwise_operation] = STATE(2033), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2033), + [sym_await_expression] = STATE(2033), + [sym_ternary_expression] = STATE(2033), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2033), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2033), + [sym_dictionary_literal] = STATE(2033), + [sym__special_literal] = STATE(2033), + [sym__playground_literal] = STATE(2033), + [sym_lambda_literal] = STATE(2033), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2033), + [sym_key_path_expression] = STATE(2033), + [sym_key_path_string_expression] = STATE(2033), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2033), + [sym__comparison_operator] = STATE(2033), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2033), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(2033), + [sym__referenceable_operator] = STATE(2033), + [sym__eq_eq] = STATE(2033), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(3563), + [sym_real_literal] = ACTIONS(3565), + [sym_integer_literal] = ACTIONS(3563), + [sym_hex_literal] = ACTIONS(3565), + [sym_oct_literal] = ACTIONS(3565), + [sym_bin_literal] = ACTIONS(3565), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(3563), + [anon_sym_GT] = ACTIONS(3563), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(3563), + [anon_sym_POUNDfileID] = ACTIONS(3565), + [anon_sym_POUNDfilePath] = ACTIONS(3565), + [anon_sym_POUNDline] = ACTIONS(3565), + [anon_sym_POUNDcolumn] = ACTIONS(3565), + [anon_sym_POUNDfunction] = ACTIONS(3565), + [anon_sym_POUNDdsohandle] = ACTIONS(3565), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(3563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3563), + [anon_sym_LT_EQ] = ACTIONS(3563), + [anon_sym_GT_EQ] = ACTIONS(3563), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(3563), + [anon_sym_SLASH] = ACTIONS(3563), + [anon_sym_PERCENT] = ACTIONS(3563), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(3565), + [sym__plus_then_ws] = ACTIONS(3565), + [sym__minus_then_ws] = ACTIONS(3565), + [sym_bang] = ACTIONS(137), + }, + [860] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2034), + [sym_boolean_literal] = STATE(2034), + [sym__string_literal] = STATE(2034), + [sym_line_string_literal] = STATE(2034), + [sym_multi_line_string_literal] = STATE(2034), + [sym_raw_string_literal] = STATE(2034), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2034), + [sym__unary_expression] = STATE(2034), + [sym_postfix_expression] = STATE(2034), + [sym_constructor_expression] = STATE(2034), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2034), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2034), + [sym_prefix_expression] = STATE(2034), + [sym_as_expression] = STATE(2034), + [sym_selector_expression] = STATE(2034), + [sym__binary_expression] = STATE(2034), + [sym_multiplicative_expression] = STATE(2034), + [sym_additive_expression] = STATE(2034), + [sym_range_expression] = STATE(2034), + [sym_infix_expression] = STATE(2034), + [sym_nil_coalescing_expression] = STATE(2034), + [sym_check_expression] = STATE(2034), + [sym_comparison_expression] = STATE(2034), + [sym_equality_expression] = STATE(2034), + [sym_conjunction_expression] = STATE(2034), + [sym_disjunction_expression] = STATE(2034), + [sym_bitwise_operation] = STATE(2034), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2034), + [sym_await_expression] = STATE(2034), + [sym_ternary_expression] = STATE(2034), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2034), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2034), + [sym_dictionary_literal] = STATE(2034), + [sym__special_literal] = STATE(2034), + [sym__playground_literal] = STATE(2034), + [sym_lambda_literal] = STATE(2034), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2034), + [sym_key_path_expression] = STATE(2034), + [sym_key_path_string_expression] = STATE(2034), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2034), + [sym__comparison_operator] = STATE(2034), + [sym__additive_operator] = STATE(2034), + [sym__multiplicative_operator] = STATE(2034), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(2034), + [sym__referenceable_operator] = STATE(2034), + [sym__eq_eq] = STATE(2034), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(3567), + [sym_real_literal] = ACTIONS(3569), + [sym_integer_literal] = ACTIONS(3567), + [sym_hex_literal] = ACTIONS(3569), + [sym_oct_literal] = ACTIONS(3569), + [sym_bin_literal] = ACTIONS(3569), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(3567), + [anon_sym_GT] = ACTIONS(3567), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(3567), + [anon_sym_POUNDfileID] = ACTIONS(3569), + [anon_sym_POUNDfilePath] = ACTIONS(3569), + [anon_sym_POUNDline] = ACTIONS(3569), + [anon_sym_POUNDcolumn] = ACTIONS(3569), + [anon_sym_POUNDfunction] = ACTIONS(3569), + [anon_sym_POUNDdsohandle] = ACTIONS(3569), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(3567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3567), + [anon_sym_LT_EQ] = ACTIONS(3567), + [anon_sym_GT_EQ] = ACTIONS(3567), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(3567), + [anon_sym_SLASH] = ACTIONS(3567), + [anon_sym_PERCENT] = ACTIONS(3567), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(3569), + [sym__plus_then_ws] = ACTIONS(3569), + [sym__minus_then_ws] = ACTIONS(3569), + [sym_bang] = ACTIONS(137), + }, + [861] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2061), + [sym_boolean_literal] = STATE(2061), + [sym__string_literal] = STATE(2061), + [sym_line_string_literal] = STATE(2061), + [sym_multi_line_string_literal] = STATE(2061), + [sym_raw_string_literal] = STATE(2061), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2061), + [sym__unary_expression] = STATE(2061), + [sym_postfix_expression] = STATE(2061), + [sym_constructor_expression] = STATE(2061), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2061), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2061), + [sym_prefix_expression] = STATE(2061), + [sym_as_expression] = STATE(2061), + [sym_selector_expression] = STATE(2061), + [sym__binary_expression] = STATE(2061), + [sym_multiplicative_expression] = STATE(2061), + [sym_additive_expression] = STATE(2061), + [sym_range_expression] = STATE(2061), + [sym_infix_expression] = STATE(2061), + [sym_nil_coalescing_expression] = STATE(2061), + [sym_check_expression] = STATE(2061), + [sym_comparison_expression] = STATE(2061), + [sym_equality_expression] = STATE(2061), + [sym_conjunction_expression] = STATE(2061), + [sym_disjunction_expression] = STATE(2061), + [sym_bitwise_operation] = STATE(2061), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2061), + [sym_await_expression] = STATE(2061), + [sym_ternary_expression] = STATE(2061), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2061), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2061), + [sym_dictionary_literal] = STATE(2061), + [sym__special_literal] = STATE(2061), + [sym__playground_literal] = STATE(2061), + [sym_lambda_literal] = STATE(2061), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2061), + [sym_key_path_expression] = STATE(2061), + [sym_key_path_string_expression] = STATE(2061), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2061), + [sym__comparison_operator] = STATE(2061), + [sym__additive_operator] = STATE(2061), + [sym__multiplicative_operator] = STATE(2061), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2061), + [sym__referenceable_operator] = STATE(2061), + [sym__eq_eq] = STATE(2061), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3571), + [sym_real_literal] = ACTIONS(3573), + [sym_integer_literal] = ACTIONS(3571), + [sym_hex_literal] = ACTIONS(3573), + [sym_oct_literal] = ACTIONS(3573), + [sym_bin_literal] = ACTIONS(3573), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3571), + [anon_sym_GT] = ACTIONS(3571), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3571), + [anon_sym_POUNDfileID] = ACTIONS(3573), + [anon_sym_POUNDfilePath] = ACTIONS(3573), + [anon_sym_POUNDline] = ACTIONS(3573), + [anon_sym_POUNDcolumn] = ACTIONS(3573), + [anon_sym_POUNDfunction] = ACTIONS(3573), + [anon_sym_POUNDdsohandle] = ACTIONS(3573), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3571), + [anon_sym_LT_EQ] = ACTIONS(3571), + [anon_sym_GT_EQ] = ACTIONS(3571), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3571), + [anon_sym_SLASH] = ACTIONS(3571), + [anon_sym_PERCENT] = ACTIONS(3571), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3573), + [sym__plus_then_ws] = ACTIONS(3573), + [sym__minus_then_ws] = ACTIONS(3573), + [sym_bang] = ACTIONS(1069), + }, + [862] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2081), + [sym_boolean_literal] = STATE(2081), + [sym__string_literal] = STATE(2081), + [sym_line_string_literal] = STATE(2081), + [sym_multi_line_string_literal] = STATE(2081), + [sym_raw_string_literal] = STATE(2081), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2081), + [sym__unary_expression] = STATE(2081), + [sym_postfix_expression] = STATE(2081), + [sym_constructor_expression] = STATE(2081), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2081), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2081), + [sym_prefix_expression] = STATE(2081), + [sym_as_expression] = STATE(2081), + [sym_selector_expression] = STATE(2081), + [sym__binary_expression] = STATE(2081), + [sym_multiplicative_expression] = STATE(2081), + [sym_additive_expression] = STATE(2081), + [sym_range_expression] = STATE(2081), + [sym_infix_expression] = STATE(2081), + [sym_nil_coalescing_expression] = STATE(2081), + [sym_check_expression] = STATE(2081), + [sym_comparison_expression] = STATE(2081), + [sym_equality_expression] = STATE(2081), + [sym_conjunction_expression] = STATE(2081), + [sym_disjunction_expression] = STATE(2081), + [sym_bitwise_operation] = STATE(2081), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2081), + [sym_await_expression] = STATE(2081), + [sym_ternary_expression] = STATE(2081), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2081), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2081), + [sym_dictionary_literal] = STATE(2081), + [sym__special_literal] = STATE(2081), + [sym__playground_literal] = STATE(2081), + [sym_lambda_literal] = STATE(2081), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2081), + [sym_key_path_expression] = STATE(2081), + [sym_key_path_string_expression] = STATE(2081), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2081), + [sym__comparison_operator] = STATE(2081), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2081), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2081), + [sym__referenceable_operator] = STATE(2081), + [sym__eq_eq] = STATE(2081), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3575), + [sym_real_literal] = ACTIONS(3577), + [sym_integer_literal] = ACTIONS(3575), + [sym_hex_literal] = ACTIONS(3577), + [sym_oct_literal] = ACTIONS(3577), + [sym_bin_literal] = ACTIONS(3577), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3575), + [anon_sym_GT] = ACTIONS(3575), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3575), + [anon_sym_POUNDfileID] = ACTIONS(3577), + [anon_sym_POUNDfilePath] = ACTIONS(3577), + [anon_sym_POUNDline] = ACTIONS(3577), + [anon_sym_POUNDcolumn] = ACTIONS(3577), + [anon_sym_POUNDfunction] = ACTIONS(3577), + [anon_sym_POUNDdsohandle] = ACTIONS(3577), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3575), + [anon_sym_LT_EQ] = ACTIONS(3575), + [anon_sym_GT_EQ] = ACTIONS(3575), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3575), + [anon_sym_SLASH] = ACTIONS(3575), + [anon_sym_PERCENT] = ACTIONS(3575), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3577), + [sym__plus_then_ws] = ACTIONS(3577), + [sym__minus_then_ws] = ACTIONS(3577), + [sym_bang] = ACTIONS(1069), + }, + [863] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1786), + [sym_boolean_literal] = STATE(1786), + [sym__string_literal] = STATE(1786), + [sym_line_string_literal] = STATE(1786), + [sym_multi_line_string_literal] = STATE(1786), + [sym_raw_string_literal] = STATE(1786), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1786), + [sym__unary_expression] = STATE(1786), + [sym_postfix_expression] = STATE(1786), + [sym_constructor_expression] = STATE(1786), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1786), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1786), + [sym_prefix_expression] = STATE(1786), + [sym_as_expression] = STATE(1786), + [sym_selector_expression] = STATE(1786), + [sym__binary_expression] = STATE(1786), + [sym_multiplicative_expression] = STATE(1786), + [sym_additive_expression] = STATE(1786), + [sym_range_expression] = STATE(1786), + [sym_infix_expression] = STATE(1786), + [sym_nil_coalescing_expression] = STATE(1786), + [sym_check_expression] = STATE(1786), + [sym_comparison_expression] = STATE(1786), + [sym_equality_expression] = STATE(1786), + [sym_conjunction_expression] = STATE(1786), + [sym_disjunction_expression] = STATE(1786), + [sym_bitwise_operation] = STATE(1786), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1786), + [sym_await_expression] = STATE(1786), + [sym_ternary_expression] = STATE(1786), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1786), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1786), + [sym_dictionary_literal] = STATE(1786), + [sym__special_literal] = STATE(1786), + [sym__playground_literal] = STATE(1786), + [sym_lambda_literal] = STATE(1786), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1786), + [sym_key_path_expression] = STATE(1786), + [sym_key_path_string_expression] = STATE(1786), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1786), + [sym__comparison_operator] = STATE(1786), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1786), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1786), + [sym__referenceable_operator] = STATE(1786), + [sym__eq_eq] = STATE(1786), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3579), + [sym_real_literal] = ACTIONS(3581), + [sym_integer_literal] = ACTIONS(3579), + [sym_hex_literal] = ACTIONS(3581), + [sym_oct_literal] = ACTIONS(3581), + [sym_bin_literal] = ACTIONS(3581), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3579), + [anon_sym_GT] = ACTIONS(3579), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3579), + [anon_sym_POUNDfileID] = ACTIONS(3581), + [anon_sym_POUNDfilePath] = ACTIONS(3581), + [anon_sym_POUNDline] = ACTIONS(3581), + [anon_sym_POUNDcolumn] = ACTIONS(3581), + [anon_sym_POUNDfunction] = ACTIONS(3581), + [anon_sym_POUNDdsohandle] = ACTIONS(3581), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3579), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3579), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3579), + [anon_sym_LT_EQ] = ACTIONS(3579), + [anon_sym_GT_EQ] = ACTIONS(3579), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3579), + [anon_sym_SLASH] = ACTIONS(3579), + [anon_sym_PERCENT] = ACTIONS(3579), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3581), + [sym__plus_then_ws] = ACTIONS(3581), + [sym__minus_then_ws] = ACTIONS(3581), + [sym_bang] = ACTIONS(1467), + }, + [864] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1785), + [sym_boolean_literal] = STATE(1785), + [sym__string_literal] = STATE(1785), + [sym_line_string_literal] = STATE(1785), + [sym_multi_line_string_literal] = STATE(1785), + [sym_raw_string_literal] = STATE(1785), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1785), + [sym__unary_expression] = STATE(1785), + [sym_postfix_expression] = STATE(1785), + [sym_constructor_expression] = STATE(1785), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1785), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1785), + [sym_prefix_expression] = STATE(1785), + [sym_as_expression] = STATE(1785), + [sym_selector_expression] = STATE(1785), + [sym__binary_expression] = STATE(1785), + [sym_multiplicative_expression] = STATE(1785), + [sym_additive_expression] = STATE(1785), + [sym_range_expression] = STATE(1785), + [sym_infix_expression] = STATE(1785), + [sym_nil_coalescing_expression] = STATE(1785), + [sym_check_expression] = STATE(1785), + [sym_comparison_expression] = STATE(1785), + [sym_equality_expression] = STATE(1785), + [sym_conjunction_expression] = STATE(1785), + [sym_disjunction_expression] = STATE(1785), + [sym_bitwise_operation] = STATE(1785), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1785), + [sym_await_expression] = STATE(1785), + [sym_ternary_expression] = STATE(1785), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1785), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1785), + [sym_dictionary_literal] = STATE(1785), + [sym__special_literal] = STATE(1785), + [sym__playground_literal] = STATE(1785), + [sym_lambda_literal] = STATE(1785), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1785), + [sym_key_path_expression] = STATE(1785), + [sym_key_path_string_expression] = STATE(1785), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1785), + [sym__comparison_operator] = STATE(1785), + [sym__additive_operator] = STATE(1785), + [sym__multiplicative_operator] = STATE(1785), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1785), + [sym__referenceable_operator] = STATE(1785), + [sym__eq_eq] = STATE(1785), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3583), + [sym_real_literal] = ACTIONS(3585), + [sym_integer_literal] = ACTIONS(3583), + [sym_hex_literal] = ACTIONS(3585), + [sym_oct_literal] = ACTIONS(3585), + [sym_bin_literal] = ACTIONS(3585), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3583), + [anon_sym_GT] = ACTIONS(3583), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3583), + [anon_sym_POUNDfileID] = ACTIONS(3585), + [anon_sym_POUNDfilePath] = ACTIONS(3585), + [anon_sym_POUNDline] = ACTIONS(3585), + [anon_sym_POUNDcolumn] = ACTIONS(3585), + [anon_sym_POUNDfunction] = ACTIONS(3585), + [anon_sym_POUNDdsohandle] = ACTIONS(3585), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3583), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3583), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3583), + [anon_sym_LT_EQ] = ACTIONS(3583), + [anon_sym_GT_EQ] = ACTIONS(3583), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3583), + [anon_sym_SLASH] = ACTIONS(3583), + [anon_sym_PERCENT] = ACTIONS(3583), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3585), + [sym__plus_then_ws] = ACTIONS(3585), + [sym__minus_then_ws] = ACTIONS(3585), + [sym_bang] = ACTIONS(1467), + }, + [865] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1784), + [sym_boolean_literal] = STATE(1784), + [sym__string_literal] = STATE(1784), + [sym_line_string_literal] = STATE(1784), + [sym_multi_line_string_literal] = STATE(1784), + [sym_raw_string_literal] = STATE(1784), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1784), + [sym__unary_expression] = STATE(1784), + [sym_postfix_expression] = STATE(1784), + [sym_constructor_expression] = STATE(1784), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1784), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1784), + [sym_prefix_expression] = STATE(1784), + [sym_as_expression] = STATE(1784), + [sym_selector_expression] = STATE(1784), + [sym__binary_expression] = STATE(1784), + [sym_multiplicative_expression] = STATE(1784), + [sym_additive_expression] = STATE(1784), + [sym_range_expression] = STATE(1784), + [sym_infix_expression] = STATE(1784), + [sym_nil_coalescing_expression] = STATE(1784), + [sym_check_expression] = STATE(1784), + [sym_comparison_expression] = STATE(1784), + [sym_equality_expression] = STATE(1784), + [sym_conjunction_expression] = STATE(1784), + [sym_disjunction_expression] = STATE(1784), + [sym_bitwise_operation] = STATE(1784), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1784), + [sym_await_expression] = STATE(1784), + [sym_ternary_expression] = STATE(1784), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1784), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1784), + [sym_dictionary_literal] = STATE(1784), + [sym__special_literal] = STATE(1784), + [sym__playground_literal] = STATE(1784), + [sym_lambda_literal] = STATE(1784), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1784), + [sym_key_path_expression] = STATE(1784), + [sym_key_path_string_expression] = STATE(1784), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1784), + [sym__comparison_operator] = STATE(1784), + [sym__additive_operator] = STATE(1784), + [sym__multiplicative_operator] = STATE(1784), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1784), + [sym__referenceable_operator] = STATE(1784), + [sym__eq_eq] = STATE(1784), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3587), + [sym_real_literal] = ACTIONS(3589), + [sym_integer_literal] = ACTIONS(3587), + [sym_hex_literal] = ACTIONS(3589), + [sym_oct_literal] = ACTIONS(3589), + [sym_bin_literal] = ACTIONS(3589), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3587), + [anon_sym_GT] = ACTIONS(3587), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3587), + [anon_sym_POUNDfileID] = ACTIONS(3589), + [anon_sym_POUNDfilePath] = ACTIONS(3589), + [anon_sym_POUNDline] = ACTIONS(3589), + [anon_sym_POUNDcolumn] = ACTIONS(3589), + [anon_sym_POUNDfunction] = ACTIONS(3589), + [anon_sym_POUNDdsohandle] = ACTIONS(3589), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3587), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3587), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3587), + [anon_sym_LT_EQ] = ACTIONS(3587), + [anon_sym_GT_EQ] = ACTIONS(3587), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3587), + [anon_sym_SLASH] = ACTIONS(3587), + [anon_sym_PERCENT] = ACTIONS(3587), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3589), + [sym__plus_then_ws] = ACTIONS(3589), + [sym__minus_then_ws] = ACTIONS(3589), + [sym_bang] = ACTIONS(1467), + }, + [866] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2059), + [sym_boolean_literal] = STATE(2059), + [sym__string_literal] = STATE(2059), + [sym_line_string_literal] = STATE(2059), + [sym_multi_line_string_literal] = STATE(2059), + [sym_raw_string_literal] = STATE(2059), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2059), + [sym__unary_expression] = STATE(2059), + [sym_postfix_expression] = STATE(2059), + [sym_constructor_expression] = STATE(2059), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2059), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2059), + [sym_prefix_expression] = STATE(2059), + [sym_as_expression] = STATE(2059), + [sym_selector_expression] = STATE(2059), + [sym__binary_expression] = STATE(2059), + [sym_multiplicative_expression] = STATE(2059), + [sym_additive_expression] = STATE(2059), + [sym_range_expression] = STATE(2059), + [sym_infix_expression] = STATE(2059), + [sym_nil_coalescing_expression] = STATE(2059), + [sym_check_expression] = STATE(2059), + [sym_comparison_expression] = STATE(2059), + [sym_equality_expression] = STATE(2059), + [sym_conjunction_expression] = STATE(2059), + [sym_disjunction_expression] = STATE(2059), + [sym_bitwise_operation] = STATE(2059), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2059), + [sym_await_expression] = STATE(2059), + [sym_ternary_expression] = STATE(2059), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2059), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2059), + [sym_dictionary_literal] = STATE(2059), + [sym__special_literal] = STATE(2059), + [sym__playground_literal] = STATE(2059), + [sym_lambda_literal] = STATE(2059), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2059), + [sym_key_path_expression] = STATE(2059), + [sym_key_path_string_expression] = STATE(2059), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2059), + [sym__comparison_operator] = STATE(2059), + [sym__additive_operator] = STATE(2059), + [sym__multiplicative_operator] = STATE(2059), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2059), + [sym__referenceable_operator] = STATE(2059), + [sym__eq_eq] = STATE(2059), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3591), + [sym_real_literal] = ACTIONS(3593), + [sym_integer_literal] = ACTIONS(3591), + [sym_hex_literal] = ACTIONS(3593), + [sym_oct_literal] = ACTIONS(3593), + [sym_bin_literal] = ACTIONS(3593), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3591), + [anon_sym_GT] = ACTIONS(3591), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3591), + [anon_sym_POUNDfileID] = ACTIONS(3593), + [anon_sym_POUNDfilePath] = ACTIONS(3593), + [anon_sym_POUNDline] = ACTIONS(3593), + [anon_sym_POUNDcolumn] = ACTIONS(3593), + [anon_sym_POUNDfunction] = ACTIONS(3593), + [anon_sym_POUNDdsohandle] = ACTIONS(3593), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3591), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3591), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3591), + [anon_sym_LT_EQ] = ACTIONS(3591), + [anon_sym_GT_EQ] = ACTIONS(3591), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3591), + [anon_sym_SLASH] = ACTIONS(3591), + [anon_sym_PERCENT] = ACTIONS(3591), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3593), + [sym__plus_then_ws] = ACTIONS(3593), + [sym__minus_then_ws] = ACTIONS(3593), + [sym_bang] = ACTIONS(1069), + }, + [867] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1783), + [sym_boolean_literal] = STATE(1783), + [sym__string_literal] = STATE(1783), + [sym_line_string_literal] = STATE(1783), + [sym_multi_line_string_literal] = STATE(1783), + [sym_raw_string_literal] = STATE(1783), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1783), + [sym__unary_expression] = STATE(1783), + [sym_postfix_expression] = STATE(1783), + [sym_constructor_expression] = STATE(1783), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1783), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1783), + [sym_prefix_expression] = STATE(1783), + [sym_as_expression] = STATE(1783), + [sym_selector_expression] = STATE(1783), + [sym__binary_expression] = STATE(1783), + [sym_multiplicative_expression] = STATE(1783), + [sym_additive_expression] = STATE(1783), + [sym_range_expression] = STATE(1783), + [sym_infix_expression] = STATE(1783), + [sym_nil_coalescing_expression] = STATE(1783), + [sym_check_expression] = STATE(1783), + [sym_comparison_expression] = STATE(1783), + [sym_equality_expression] = STATE(1783), + [sym_conjunction_expression] = STATE(1783), + [sym_disjunction_expression] = STATE(1783), + [sym_bitwise_operation] = STATE(1783), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1783), + [sym_await_expression] = STATE(1783), + [sym_ternary_expression] = STATE(1783), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1783), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1783), + [sym_dictionary_literal] = STATE(1783), + [sym__special_literal] = STATE(1783), + [sym__playground_literal] = STATE(1783), + [sym_lambda_literal] = STATE(1783), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1783), + [sym_key_path_expression] = STATE(1783), + [sym_key_path_string_expression] = STATE(1783), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1783), + [sym__comparison_operator] = STATE(1783), + [sym__additive_operator] = STATE(1783), + [sym__multiplicative_operator] = STATE(1783), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1783), + [sym__referenceable_operator] = STATE(1783), + [sym__eq_eq] = STATE(1783), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3595), + [sym_real_literal] = ACTIONS(3597), + [sym_integer_literal] = ACTIONS(3595), + [sym_hex_literal] = ACTIONS(3597), + [sym_oct_literal] = ACTIONS(3597), + [sym_bin_literal] = ACTIONS(3597), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3595), + [anon_sym_GT] = ACTIONS(3595), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3595), + [anon_sym_POUNDfileID] = ACTIONS(3597), + [anon_sym_POUNDfilePath] = ACTIONS(3597), + [anon_sym_POUNDline] = ACTIONS(3597), + [anon_sym_POUNDcolumn] = ACTIONS(3597), + [anon_sym_POUNDfunction] = ACTIONS(3597), + [anon_sym_POUNDdsohandle] = ACTIONS(3597), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3595), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3595), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3595), + [anon_sym_LT_EQ] = ACTIONS(3595), + [anon_sym_GT_EQ] = ACTIONS(3595), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3595), + [anon_sym_SLASH] = ACTIONS(3595), + [anon_sym_PERCENT] = ACTIONS(3595), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3597), + [sym__plus_then_ws] = ACTIONS(3597), + [sym__minus_then_ws] = ACTIONS(3597), + [sym_bang] = ACTIONS(1467), + }, + [868] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1144), + [sym__unary_expression] = STATE(1144), + [sym_postfix_expression] = STATE(1144), + [sym_constructor_expression] = STATE(1144), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1144), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1144), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1144), + [sym_key_path_expression] = STATE(1144), + [sym_key_path_string_expression] = STATE(1144), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1144), + [sym__comparison_operator] = STATE(1144), + [sym__additive_operator] = STATE(1144), + [sym__multiplicative_operator] = STATE(1144), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1144), + [sym__referenceable_operator] = STATE(1144), + [sym__eq_eq] = STATE(1144), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(3599), + [sym_real_literal] = ACTIONS(3601), + [sym_integer_literal] = ACTIONS(3599), + [sym_hex_literal] = ACTIONS(3601), + [sym_oct_literal] = ACTIONS(3601), + [sym_bin_literal] = ACTIONS(3601), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(3599), + [anon_sym_GT] = ACTIONS(3599), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(3599), + [anon_sym_POUNDfileID] = ACTIONS(3601), + [anon_sym_POUNDfilePath] = ACTIONS(3601), + [anon_sym_POUNDline] = ACTIONS(3601), + [anon_sym_POUNDcolumn] = ACTIONS(3601), + [anon_sym_POUNDfunction] = ACTIONS(3601), + [anon_sym_POUNDdsohandle] = ACTIONS(3601), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(3599), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3599), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3599), + [anon_sym_LT_EQ] = ACTIONS(3599), + [anon_sym_GT_EQ] = ACTIONS(3599), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(3599), + [anon_sym_SLASH] = ACTIONS(3599), + [anon_sym_PERCENT] = ACTIONS(3599), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(3601), + [sym__plus_then_ws] = ACTIONS(3601), + [sym__minus_then_ws] = ACTIONS(3601), + [sym_bang] = ACTIONS(481), + }, + [869] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1780), + [sym_boolean_literal] = STATE(1780), + [sym__string_literal] = STATE(1780), + [sym_line_string_literal] = STATE(1780), + [sym_multi_line_string_literal] = STATE(1780), + [sym_raw_string_literal] = STATE(1780), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1780), + [sym__unary_expression] = STATE(1780), + [sym_postfix_expression] = STATE(1780), + [sym_constructor_expression] = STATE(1780), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1780), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1780), + [sym_prefix_expression] = STATE(1780), + [sym_as_expression] = STATE(1780), + [sym_selector_expression] = STATE(1780), + [sym__binary_expression] = STATE(1780), + [sym_multiplicative_expression] = STATE(1780), + [sym_additive_expression] = STATE(1780), + [sym_range_expression] = STATE(1780), + [sym_infix_expression] = STATE(1780), + [sym_nil_coalescing_expression] = STATE(1780), + [sym_check_expression] = STATE(1780), + [sym_comparison_expression] = STATE(1780), + [sym_equality_expression] = STATE(1780), + [sym_conjunction_expression] = STATE(1780), + [sym_disjunction_expression] = STATE(1780), + [sym_bitwise_operation] = STATE(1780), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1780), + [sym_await_expression] = STATE(1780), + [sym_ternary_expression] = STATE(1780), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1780), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1780), + [sym_dictionary_literal] = STATE(1780), + [sym__special_literal] = STATE(1780), + [sym__playground_literal] = STATE(1780), + [sym_lambda_literal] = STATE(1780), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1780), + [sym_key_path_expression] = STATE(1780), + [sym_key_path_string_expression] = STATE(1780), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1780), + [sym__comparison_operator] = STATE(1780), + [sym__additive_operator] = STATE(1780), + [sym__multiplicative_operator] = STATE(1780), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1780), + [sym__referenceable_operator] = STATE(1780), + [sym__eq_eq] = STATE(1780), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3603), + [sym_real_literal] = ACTIONS(3605), + [sym_integer_literal] = ACTIONS(3603), + [sym_hex_literal] = ACTIONS(3605), + [sym_oct_literal] = ACTIONS(3605), + [sym_bin_literal] = ACTIONS(3605), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3603), + [anon_sym_GT] = ACTIONS(3603), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3603), + [anon_sym_POUNDfileID] = ACTIONS(3605), + [anon_sym_POUNDfilePath] = ACTIONS(3605), + [anon_sym_POUNDline] = ACTIONS(3605), + [anon_sym_POUNDcolumn] = ACTIONS(3605), + [anon_sym_POUNDfunction] = ACTIONS(3605), + [anon_sym_POUNDdsohandle] = ACTIONS(3605), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3603), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3603), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3603), + [anon_sym_LT_EQ] = ACTIONS(3603), + [anon_sym_GT_EQ] = ACTIONS(3603), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3603), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3605), + [sym__plus_then_ws] = ACTIONS(3605), + [sym__minus_then_ws] = ACTIONS(3605), + [sym_bang] = ACTIONS(1467), + }, + [870] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2203), + [sym_boolean_literal] = STATE(2203), + [sym__string_literal] = STATE(2203), + [sym_line_string_literal] = STATE(2203), + [sym_multi_line_string_literal] = STATE(2203), + [sym_raw_string_literal] = STATE(2203), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2203), + [sym__unary_expression] = STATE(2203), + [sym_postfix_expression] = STATE(2203), + [sym_constructor_expression] = STATE(2203), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2203), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2203), + [sym_prefix_expression] = STATE(2203), + [sym_as_expression] = STATE(2203), + [sym_selector_expression] = STATE(2203), + [sym__binary_expression] = STATE(2203), + [sym_multiplicative_expression] = STATE(2203), + [sym_additive_expression] = STATE(2203), + [sym_range_expression] = STATE(2203), + [sym_infix_expression] = STATE(2203), + [sym_nil_coalescing_expression] = STATE(2203), + [sym_check_expression] = STATE(2203), + [sym_comparison_expression] = STATE(2203), + [sym_equality_expression] = STATE(2203), + [sym_conjunction_expression] = STATE(2203), + [sym_disjunction_expression] = STATE(2203), + [sym_bitwise_operation] = STATE(2203), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2203), + [sym_await_expression] = STATE(2203), + [sym_ternary_expression] = STATE(2203), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2203), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2203), + [sym_dictionary_literal] = STATE(2203), + [sym__special_literal] = STATE(2203), + [sym__playground_literal] = STATE(2203), + [sym_lambda_literal] = STATE(2203), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2203), + [sym_key_path_expression] = STATE(2203), + [sym_key_path_string_expression] = STATE(2203), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2203), + [sym__comparison_operator] = STATE(2203), + [sym__additive_operator] = STATE(2203), + [sym__multiplicative_operator] = STATE(2203), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2203), + [sym__referenceable_operator] = STATE(2203), + [sym__eq_eq] = STATE(2203), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3607), + [sym_real_literal] = ACTIONS(3609), + [sym_integer_literal] = ACTIONS(3607), + [sym_hex_literal] = ACTIONS(3609), + [sym_oct_literal] = ACTIONS(3609), + [sym_bin_literal] = ACTIONS(3609), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3607), + [anon_sym_GT] = ACTIONS(3607), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3607), + [anon_sym_POUNDfileID] = ACTIONS(3609), + [anon_sym_POUNDfilePath] = ACTIONS(3609), + [anon_sym_POUNDline] = ACTIONS(3609), + [anon_sym_POUNDcolumn] = ACTIONS(3609), + [anon_sym_POUNDfunction] = ACTIONS(3609), + [anon_sym_POUNDdsohandle] = ACTIONS(3609), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3607), + [anon_sym_LT_EQ] = ACTIONS(3607), + [anon_sym_GT_EQ] = ACTIONS(3607), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3607), + [anon_sym_SLASH] = ACTIONS(3607), + [anon_sym_PERCENT] = ACTIONS(3607), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3609), + [sym__plus_then_ws] = ACTIONS(3609), + [sym__minus_then_ws] = ACTIONS(3609), + [sym_bang] = ACTIONS(833), + }, + [871] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1673), + [sym_boolean_literal] = STATE(1673), + [sym__string_literal] = STATE(1673), + [sym_line_string_literal] = STATE(1673), + [sym_multi_line_string_literal] = STATE(1673), + [sym_raw_string_literal] = STATE(1673), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1673), + [sym__unary_expression] = STATE(1673), + [sym_postfix_expression] = STATE(1673), + [sym_constructor_expression] = STATE(1673), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1673), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1673), + [sym_prefix_expression] = STATE(1673), + [sym_as_expression] = STATE(1673), + [sym_selector_expression] = STATE(1673), + [sym__binary_expression] = STATE(1673), + [sym_multiplicative_expression] = STATE(1673), + [sym_additive_expression] = STATE(1673), + [sym_range_expression] = STATE(1673), + [sym_infix_expression] = STATE(1673), + [sym_nil_coalescing_expression] = STATE(1673), + [sym_check_expression] = STATE(1673), + [sym_comparison_expression] = STATE(1673), + [sym_equality_expression] = STATE(1673), + [sym_conjunction_expression] = STATE(1673), + [sym_disjunction_expression] = STATE(1673), + [sym_bitwise_operation] = STATE(1673), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1673), + [sym_await_expression] = STATE(1673), + [sym_ternary_expression] = STATE(1673), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1673), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1673), + [sym_dictionary_literal] = STATE(1673), + [sym__special_literal] = STATE(1673), + [sym__playground_literal] = STATE(1673), + [sym_lambda_literal] = STATE(1673), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1673), + [sym_key_path_expression] = STATE(1673), + [sym_key_path_string_expression] = STATE(1673), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1673), + [sym__comparison_operator] = STATE(1673), + [sym__additive_operator] = STATE(1673), + [sym__multiplicative_operator] = STATE(1673), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1673), + [sym__referenceable_operator] = STATE(1673), + [sym__eq_eq] = STATE(1673), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3611), + [sym_real_literal] = ACTIONS(3613), + [sym_integer_literal] = ACTIONS(3611), + [sym_hex_literal] = ACTIONS(3613), + [sym_oct_literal] = ACTIONS(3613), + [sym_bin_literal] = ACTIONS(3613), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3611), + [anon_sym_GT] = ACTIONS(3611), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3611), + [anon_sym_POUNDfileID] = ACTIONS(3613), + [anon_sym_POUNDfilePath] = ACTIONS(3613), + [anon_sym_POUNDline] = ACTIONS(3613), + [anon_sym_POUNDcolumn] = ACTIONS(3613), + [anon_sym_POUNDfunction] = ACTIONS(3613), + [anon_sym_POUNDdsohandle] = ACTIONS(3613), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3611), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3611), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3611), + [anon_sym_LT_EQ] = ACTIONS(3611), + [anon_sym_GT_EQ] = ACTIONS(3611), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3611), + [anon_sym_SLASH] = ACTIONS(3611), + [anon_sym_PERCENT] = ACTIONS(3611), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3613), + [sym__plus_then_ws] = ACTIONS(3613), + [sym__minus_then_ws] = ACTIONS(3613), + [sym_bang] = ACTIONS(1069), + }, + [872] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym__string_literal] = STATE(1778), + [sym_line_string_literal] = STATE(1778), + [sym_multi_line_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1778), + [sym__unary_expression] = STATE(1778), + [sym_postfix_expression] = STATE(1778), + [sym_constructor_expression] = STATE(1778), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1778), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1778), + [sym_prefix_expression] = STATE(1778), + [sym_as_expression] = STATE(1778), + [sym_selector_expression] = STATE(1778), + [sym__binary_expression] = STATE(1778), + [sym_multiplicative_expression] = STATE(1778), + [sym_additive_expression] = STATE(1778), + [sym_range_expression] = STATE(1778), + [sym_infix_expression] = STATE(1778), + [sym_nil_coalescing_expression] = STATE(1778), + [sym_check_expression] = STATE(1778), + [sym_comparison_expression] = STATE(1778), + [sym_equality_expression] = STATE(1778), + [sym_conjunction_expression] = STATE(1778), + [sym_disjunction_expression] = STATE(1778), + [sym_bitwise_operation] = STATE(1778), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1778), + [sym_await_expression] = STATE(1778), + [sym_ternary_expression] = STATE(1778), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1778), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1778), + [sym_dictionary_literal] = STATE(1778), + [sym__special_literal] = STATE(1778), + [sym__playground_literal] = STATE(1778), + [sym_lambda_literal] = STATE(1778), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1778), + [sym_key_path_expression] = STATE(1778), + [sym_key_path_string_expression] = STATE(1778), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1778), + [sym__comparison_operator] = STATE(1778), + [sym__additive_operator] = STATE(1778), + [sym__multiplicative_operator] = STATE(1778), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1778), + [sym__referenceable_operator] = STATE(1778), + [sym__eq_eq] = STATE(1778), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3615), + [sym_real_literal] = ACTIONS(3617), + [sym_integer_literal] = ACTIONS(3615), + [sym_hex_literal] = ACTIONS(3617), + [sym_oct_literal] = ACTIONS(3617), + [sym_bin_literal] = ACTIONS(3617), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3615), + [anon_sym_GT] = ACTIONS(3615), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3615), + [anon_sym_POUNDfileID] = ACTIONS(3617), + [anon_sym_POUNDfilePath] = ACTIONS(3617), + [anon_sym_POUNDline] = ACTIONS(3617), + [anon_sym_POUNDcolumn] = ACTIONS(3617), + [anon_sym_POUNDfunction] = ACTIONS(3617), + [anon_sym_POUNDdsohandle] = ACTIONS(3617), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3615), + [anon_sym_LT_EQ] = ACTIONS(3615), + [anon_sym_GT_EQ] = ACTIONS(3615), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3615), + [anon_sym_SLASH] = ACTIONS(3615), + [anon_sym_PERCENT] = ACTIONS(3615), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3617), + [sym__plus_then_ws] = ACTIONS(3617), + [sym__minus_then_ws] = ACTIONS(3617), + [sym_bang] = ACTIONS(1467), + }, + [873] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1777), + [sym_boolean_literal] = STATE(1777), + [sym__string_literal] = STATE(1777), + [sym_line_string_literal] = STATE(1777), + [sym_multi_line_string_literal] = STATE(1777), + [sym_raw_string_literal] = STATE(1777), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1777), + [sym__unary_expression] = STATE(1777), + [sym_postfix_expression] = STATE(1777), + [sym_constructor_expression] = STATE(1777), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1777), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1777), + [sym_prefix_expression] = STATE(1777), + [sym_as_expression] = STATE(1777), + [sym_selector_expression] = STATE(1777), + [sym__binary_expression] = STATE(1777), + [sym_multiplicative_expression] = STATE(1777), + [sym_additive_expression] = STATE(1777), + [sym_range_expression] = STATE(1777), + [sym_infix_expression] = STATE(1777), + [sym_nil_coalescing_expression] = STATE(1777), + [sym_check_expression] = STATE(1777), + [sym_comparison_expression] = STATE(1777), + [sym_equality_expression] = STATE(1777), + [sym_conjunction_expression] = STATE(1777), + [sym_disjunction_expression] = STATE(1777), + [sym_bitwise_operation] = STATE(1777), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1777), + [sym_await_expression] = STATE(1777), + [sym_ternary_expression] = STATE(1777), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1777), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1777), + [sym_dictionary_literal] = STATE(1777), + [sym__special_literal] = STATE(1777), + [sym__playground_literal] = STATE(1777), + [sym_lambda_literal] = STATE(1777), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1777), + [sym_key_path_expression] = STATE(1777), + [sym_key_path_string_expression] = STATE(1777), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1777), + [sym__comparison_operator] = STATE(1777), + [sym__additive_operator] = STATE(1777), + [sym__multiplicative_operator] = STATE(1777), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1777), + [sym__referenceable_operator] = STATE(1777), + [sym__eq_eq] = STATE(1777), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3619), + [sym_real_literal] = ACTIONS(3621), + [sym_integer_literal] = ACTIONS(3619), + [sym_hex_literal] = ACTIONS(3621), + [sym_oct_literal] = ACTIONS(3621), + [sym_bin_literal] = ACTIONS(3621), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3619), + [anon_sym_GT] = ACTIONS(3619), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3619), + [anon_sym_POUNDfileID] = ACTIONS(3621), + [anon_sym_POUNDfilePath] = ACTIONS(3621), + [anon_sym_POUNDline] = ACTIONS(3621), + [anon_sym_POUNDcolumn] = ACTIONS(3621), + [anon_sym_POUNDfunction] = ACTIONS(3621), + [anon_sym_POUNDdsohandle] = ACTIONS(3621), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3619), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3619), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3619), + [anon_sym_LT_EQ] = ACTIONS(3619), + [anon_sym_GT_EQ] = ACTIONS(3619), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3619), + [anon_sym_SLASH] = ACTIONS(3619), + [anon_sym_PERCENT] = ACTIONS(3619), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3621), + [sym__plus_then_ws] = ACTIONS(3621), + [sym__minus_then_ws] = ACTIONS(3621), + [sym_bang] = ACTIONS(1467), + }, + [874] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2056), + [sym_boolean_literal] = STATE(2056), + [sym__string_literal] = STATE(2056), + [sym_line_string_literal] = STATE(2056), + [sym_multi_line_string_literal] = STATE(2056), + [sym_raw_string_literal] = STATE(2056), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2056), + [sym__unary_expression] = STATE(2056), + [sym_postfix_expression] = STATE(2056), + [sym_constructor_expression] = STATE(2056), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2056), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2056), + [sym_prefix_expression] = STATE(2056), + [sym_as_expression] = STATE(2056), + [sym_selector_expression] = STATE(2056), + [sym__binary_expression] = STATE(2056), + [sym_multiplicative_expression] = STATE(2056), + [sym_additive_expression] = STATE(2056), + [sym_range_expression] = STATE(2056), + [sym_infix_expression] = STATE(2056), + [sym_nil_coalescing_expression] = STATE(2056), + [sym_check_expression] = STATE(2056), + [sym_comparison_expression] = STATE(2056), + [sym_equality_expression] = STATE(2056), + [sym_conjunction_expression] = STATE(2056), + [sym_disjunction_expression] = STATE(2056), + [sym_bitwise_operation] = STATE(2056), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2056), + [sym_await_expression] = STATE(2056), + [sym_ternary_expression] = STATE(2056), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2056), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2056), + [sym_dictionary_literal] = STATE(2056), + [sym__special_literal] = STATE(2056), + [sym__playground_literal] = STATE(2056), + [sym_lambda_literal] = STATE(2056), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2056), + [sym_key_path_expression] = STATE(2056), + [sym_key_path_string_expression] = STATE(2056), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2056), + [sym__comparison_operator] = STATE(2056), + [sym__additive_operator] = STATE(2056), + [sym__multiplicative_operator] = STATE(2056), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2056), + [sym__referenceable_operator] = STATE(2056), + [sym__eq_eq] = STATE(2056), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3623), + [sym_real_literal] = ACTIONS(3625), + [sym_integer_literal] = ACTIONS(3623), + [sym_hex_literal] = ACTIONS(3625), + [sym_oct_literal] = ACTIONS(3625), + [sym_bin_literal] = ACTIONS(3625), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3623), + [anon_sym_GT] = ACTIONS(3623), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3623), + [anon_sym_POUNDfileID] = ACTIONS(3625), + [anon_sym_POUNDfilePath] = ACTIONS(3625), + [anon_sym_POUNDline] = ACTIONS(3625), + [anon_sym_POUNDcolumn] = ACTIONS(3625), + [anon_sym_POUNDfunction] = ACTIONS(3625), + [anon_sym_POUNDdsohandle] = ACTIONS(3625), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3623), + [anon_sym_LT_EQ] = ACTIONS(3623), + [anon_sym_GT_EQ] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3623), + [anon_sym_SLASH] = ACTIONS(3623), + [anon_sym_PERCENT] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3625), + [sym__plus_then_ws] = ACTIONS(3625), + [sym__minus_then_ws] = ACTIONS(3625), + [sym_bang] = ACTIONS(1069), + }, + [875] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1516), + [sym_boolean_literal] = STATE(1516), + [sym__string_literal] = STATE(1516), + [sym_line_string_literal] = STATE(1516), + [sym_multi_line_string_literal] = STATE(1516), + [sym_raw_string_literal] = STATE(1516), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1516), + [sym__unary_expression] = STATE(1516), + [sym_postfix_expression] = STATE(1516), + [sym_constructor_expression] = STATE(1516), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1516), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1516), + [sym_prefix_expression] = STATE(1516), + [sym_as_expression] = STATE(1516), + [sym_selector_expression] = STATE(1516), + [sym__binary_expression] = STATE(1516), + [sym_multiplicative_expression] = STATE(1516), + [sym_additive_expression] = STATE(1516), + [sym_range_expression] = STATE(1516), + [sym_infix_expression] = STATE(1516), + [sym_nil_coalescing_expression] = STATE(1516), + [sym_check_expression] = STATE(1516), + [sym_comparison_expression] = STATE(1516), + [sym_equality_expression] = STATE(1516), + [sym_conjunction_expression] = STATE(1516), + [sym_disjunction_expression] = STATE(1516), + [sym_bitwise_operation] = STATE(1516), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1516), + [sym_await_expression] = STATE(1516), + [sym_ternary_expression] = STATE(1516), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1516), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1516), + [sym_dictionary_literal] = STATE(1516), + [sym__special_literal] = STATE(1516), + [sym__playground_literal] = STATE(1516), + [sym_lambda_literal] = STATE(1516), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1516), + [sym_key_path_expression] = STATE(1516), + [sym_key_path_string_expression] = STATE(1516), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1516), + [sym__comparison_operator] = STATE(1516), + [sym__additive_operator] = STATE(1516), + [sym__multiplicative_operator] = STATE(1516), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1516), + [sym__referenceable_operator] = STATE(1516), + [sym__eq_eq] = STATE(1516), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3627), + [sym_real_literal] = ACTIONS(3629), + [sym_integer_literal] = ACTIONS(3627), + [sym_hex_literal] = ACTIONS(3629), + [sym_oct_literal] = ACTIONS(3629), + [sym_bin_literal] = ACTIONS(3629), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3627), + [anon_sym_GT] = ACTIONS(3627), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3627), + [anon_sym_POUNDfileID] = ACTIONS(3629), + [anon_sym_POUNDfilePath] = ACTIONS(3629), + [anon_sym_POUNDline] = ACTIONS(3629), + [anon_sym_POUNDcolumn] = ACTIONS(3629), + [anon_sym_POUNDfunction] = ACTIONS(3629), + [anon_sym_POUNDdsohandle] = ACTIONS(3629), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3627), + [anon_sym_LT_EQ] = ACTIONS(3627), + [anon_sym_GT_EQ] = ACTIONS(3627), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3627), + [anon_sym_SLASH] = ACTIONS(3627), + [anon_sym_PERCENT] = ACTIONS(3627), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3629), + [sym__plus_then_ws] = ACTIONS(3629), + [sym__minus_then_ws] = ACTIONS(3629), + [sym_bang] = ACTIONS(1467), + }, + [876] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1771), + [sym_boolean_literal] = STATE(1771), + [sym__string_literal] = STATE(1771), + [sym_line_string_literal] = STATE(1771), + [sym_multi_line_string_literal] = STATE(1771), + [sym_raw_string_literal] = STATE(1771), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1771), + [sym__unary_expression] = STATE(1771), + [sym_postfix_expression] = STATE(1771), + [sym_constructor_expression] = STATE(1771), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1771), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1771), + [sym_prefix_expression] = STATE(1771), + [sym_as_expression] = STATE(1771), + [sym_selector_expression] = STATE(1771), + [sym__binary_expression] = STATE(1771), + [sym_multiplicative_expression] = STATE(1771), + [sym_additive_expression] = STATE(1771), + [sym_range_expression] = STATE(1771), + [sym_infix_expression] = STATE(1771), + [sym_nil_coalescing_expression] = STATE(1771), + [sym_check_expression] = STATE(1771), + [sym_comparison_expression] = STATE(1771), + [sym_equality_expression] = STATE(1771), + [sym_conjunction_expression] = STATE(1771), + [sym_disjunction_expression] = STATE(1771), + [sym_bitwise_operation] = STATE(1771), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1771), + [sym_await_expression] = STATE(1771), + [sym_ternary_expression] = STATE(1771), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1771), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1771), + [sym_dictionary_literal] = STATE(1771), + [sym__special_literal] = STATE(1771), + [sym__playground_literal] = STATE(1771), + [sym_lambda_literal] = STATE(1771), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1771), + [sym_key_path_expression] = STATE(1771), + [sym_key_path_string_expression] = STATE(1771), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1771), + [sym__comparison_operator] = STATE(1771), + [sym__additive_operator] = STATE(1771), + [sym__multiplicative_operator] = STATE(1771), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1771), + [sym__referenceable_operator] = STATE(1771), + [sym__eq_eq] = STATE(1771), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3631), + [sym_real_literal] = ACTIONS(3633), + [sym_integer_literal] = ACTIONS(3631), + [sym_hex_literal] = ACTIONS(3633), + [sym_oct_literal] = ACTIONS(3633), + [sym_bin_literal] = ACTIONS(3633), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3631), + [anon_sym_GT] = ACTIONS(3631), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3631), + [anon_sym_POUNDfileID] = ACTIONS(3633), + [anon_sym_POUNDfilePath] = ACTIONS(3633), + [anon_sym_POUNDline] = ACTIONS(3633), + [anon_sym_POUNDcolumn] = ACTIONS(3633), + [anon_sym_POUNDfunction] = ACTIONS(3633), + [anon_sym_POUNDdsohandle] = ACTIONS(3633), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3631), + [anon_sym_LT_EQ] = ACTIONS(3631), + [anon_sym_GT_EQ] = ACTIONS(3631), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3631), + [anon_sym_SLASH] = ACTIONS(3631), + [anon_sym_PERCENT] = ACTIONS(3631), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3633), + [sym__plus_then_ws] = ACTIONS(3633), + [sym__minus_then_ws] = ACTIONS(3633), + [sym_bang] = ACTIONS(1467), + }, + [877] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1770), + [sym_boolean_literal] = STATE(1770), + [sym__string_literal] = STATE(1770), + [sym_line_string_literal] = STATE(1770), + [sym_multi_line_string_literal] = STATE(1770), + [sym_raw_string_literal] = STATE(1770), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1770), + [sym__unary_expression] = STATE(1770), + [sym_postfix_expression] = STATE(1770), + [sym_constructor_expression] = STATE(1770), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1770), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1770), + [sym_prefix_expression] = STATE(1770), + [sym_as_expression] = STATE(1770), + [sym_selector_expression] = STATE(1770), + [sym__binary_expression] = STATE(3181), + [sym_multiplicative_expression] = STATE(3181), + [sym_additive_expression] = STATE(3181), + [sym_range_expression] = STATE(3181), + [sym_infix_expression] = STATE(3181), + [sym_nil_coalescing_expression] = STATE(3181), + [sym_check_expression] = STATE(3181), + [sym_comparison_expression] = STATE(3181), + [sym_equality_expression] = STATE(3181), + [sym_conjunction_expression] = STATE(3181), + [sym_disjunction_expression] = STATE(3181), + [sym_bitwise_operation] = STATE(3181), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1770), + [sym_await_expression] = STATE(1770), + [sym_ternary_expression] = STATE(3179), + [sym_call_expression] = STATE(2730), + [sym__primary_expression] = STATE(1770), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1770), + [sym_dictionary_literal] = STATE(1770), + [sym__special_literal] = STATE(1770), + [sym__playground_literal] = STATE(1770), + [sym_lambda_literal] = STATE(1770), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1770), + [sym_key_path_expression] = STATE(1770), + [sym_key_path_string_expression] = STATE(1770), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1770), + [sym__comparison_operator] = STATE(1770), + [sym__additive_operator] = STATE(1770), + [sym__multiplicative_operator] = STATE(1770), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1770), + [sym__referenceable_operator] = STATE(1770), + [sym__eq_eq] = STATE(1770), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3635), + [sym_real_literal] = ACTIONS(3637), + [sym_integer_literal] = ACTIONS(3635), + [sym_hex_literal] = ACTIONS(3637), + [sym_oct_literal] = ACTIONS(3637), + [sym_bin_literal] = ACTIONS(3637), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3635), + [anon_sym_GT] = ACTIONS(3635), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3635), + [anon_sym_POUNDfileID] = ACTIONS(3637), + [anon_sym_POUNDfilePath] = ACTIONS(3637), + [anon_sym_POUNDline] = ACTIONS(3637), + [anon_sym_POUNDcolumn] = ACTIONS(3637), + [anon_sym_POUNDfunction] = ACTIONS(3637), + [anon_sym_POUNDdsohandle] = ACTIONS(3637), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3635), + [anon_sym_LT_EQ] = ACTIONS(3635), + [anon_sym_GT_EQ] = ACTIONS(3635), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3635), + [anon_sym_SLASH] = ACTIONS(3635), + [anon_sym_PERCENT] = ACTIONS(3635), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3637), + [sym__plus_then_ws] = ACTIONS(3637), + [sym__minus_then_ws] = ACTIONS(3637), + [sym_bang] = ACTIONS(1467), + }, + [878] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1769), + [sym_boolean_literal] = STATE(1769), + [sym__string_literal] = STATE(1769), + [sym_line_string_literal] = STATE(1769), + [sym_multi_line_string_literal] = STATE(1769), + [sym_raw_string_literal] = STATE(1769), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1769), + [sym__unary_expression] = STATE(1769), + [sym_postfix_expression] = STATE(1769), + [sym_constructor_expression] = STATE(1769), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1769), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1769), + [sym_prefix_expression] = STATE(1769), + [sym_as_expression] = STATE(1769), + [sym_selector_expression] = STATE(1769), + [sym__binary_expression] = STATE(1769), + [sym_multiplicative_expression] = STATE(1769), + [sym_additive_expression] = STATE(1769), + [sym_range_expression] = STATE(1769), + [sym_infix_expression] = STATE(1769), + [sym_nil_coalescing_expression] = STATE(1769), + [sym_check_expression] = STATE(1769), + [sym_comparison_expression] = STATE(1769), + [sym_equality_expression] = STATE(1769), + [sym_conjunction_expression] = STATE(1769), + [sym_disjunction_expression] = STATE(1769), + [sym_bitwise_operation] = STATE(1769), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1769), + [sym_await_expression] = STATE(1769), + [sym_ternary_expression] = STATE(1769), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1769), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1769), + [sym_dictionary_literal] = STATE(1769), + [sym__special_literal] = STATE(1769), + [sym__playground_literal] = STATE(1769), + [sym_lambda_literal] = STATE(1769), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1769), + [sym_key_path_expression] = STATE(1769), + [sym_key_path_string_expression] = STATE(1769), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1769), + [sym__comparison_operator] = STATE(1769), + [sym__additive_operator] = STATE(1769), + [sym__multiplicative_operator] = STATE(1769), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1769), + [sym__referenceable_operator] = STATE(1769), + [sym__eq_eq] = STATE(1769), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3639), + [sym_real_literal] = ACTIONS(3641), + [sym_integer_literal] = ACTIONS(3639), + [sym_hex_literal] = ACTIONS(3641), + [sym_oct_literal] = ACTIONS(3641), + [sym_bin_literal] = ACTIONS(3641), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3639), + [anon_sym_GT] = ACTIONS(3639), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3639), + [anon_sym_POUNDfileID] = ACTIONS(3641), + [anon_sym_POUNDfilePath] = ACTIONS(3641), + [anon_sym_POUNDline] = ACTIONS(3641), + [anon_sym_POUNDcolumn] = ACTIONS(3641), + [anon_sym_POUNDfunction] = ACTIONS(3641), + [anon_sym_POUNDdsohandle] = ACTIONS(3641), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3639), + [anon_sym_LT_EQ] = ACTIONS(3639), + [anon_sym_GT_EQ] = ACTIONS(3639), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3639), + [anon_sym_SLASH] = ACTIONS(3639), + [anon_sym_PERCENT] = ACTIONS(3639), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3641), + [sym__plus_then_ws] = ACTIONS(3641), + [sym__minus_then_ws] = ACTIONS(3641), + [sym_bang] = ACTIONS(1467), + }, + [879] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1679), + [sym_boolean_literal] = STATE(1679), + [sym__string_literal] = STATE(1679), + [sym_line_string_literal] = STATE(1679), + [sym_multi_line_string_literal] = STATE(1679), + [sym_raw_string_literal] = STATE(1679), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1679), + [sym__unary_expression] = STATE(1679), + [sym_postfix_expression] = STATE(1679), + [sym_constructor_expression] = STATE(1679), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1679), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1679), + [sym_prefix_expression] = STATE(1679), + [sym_as_expression] = STATE(1679), + [sym_selector_expression] = STATE(1679), + [sym__binary_expression] = STATE(1679), + [sym_multiplicative_expression] = STATE(1679), + [sym_additive_expression] = STATE(1679), + [sym_range_expression] = STATE(1679), + [sym_infix_expression] = STATE(1679), + [sym_nil_coalescing_expression] = STATE(1679), + [sym_check_expression] = STATE(1679), + [sym_comparison_expression] = STATE(1679), + [sym_equality_expression] = STATE(1679), + [sym_conjunction_expression] = STATE(1679), + [sym_disjunction_expression] = STATE(1679), + [sym_bitwise_operation] = STATE(1679), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1679), + [sym_await_expression] = STATE(1679), + [sym_ternary_expression] = STATE(1679), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1679), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1679), + [sym_dictionary_literal] = STATE(1679), + [sym__special_literal] = STATE(1679), + [sym__playground_literal] = STATE(1679), + [sym_lambda_literal] = STATE(1679), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1679), + [sym_key_path_expression] = STATE(1679), + [sym_key_path_string_expression] = STATE(1679), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1679), + [sym__comparison_operator] = STATE(1679), + [sym__additive_operator] = STATE(1679), + [sym__multiplicative_operator] = STATE(1679), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1679), + [sym__referenceable_operator] = STATE(1679), + [sym__eq_eq] = STATE(1679), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3643), + [sym_real_literal] = ACTIONS(3645), + [sym_integer_literal] = ACTIONS(3643), + [sym_hex_literal] = ACTIONS(3645), + [sym_oct_literal] = ACTIONS(3645), + [sym_bin_literal] = ACTIONS(3645), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3643), + [anon_sym_GT] = ACTIONS(3643), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3643), + [anon_sym_POUNDfileID] = ACTIONS(3645), + [anon_sym_POUNDfilePath] = ACTIONS(3645), + [anon_sym_POUNDline] = ACTIONS(3645), + [anon_sym_POUNDcolumn] = ACTIONS(3645), + [anon_sym_POUNDfunction] = ACTIONS(3645), + [anon_sym_POUNDdsohandle] = ACTIONS(3645), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3643), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3643), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3643), + [anon_sym_LT_EQ] = ACTIONS(3643), + [anon_sym_GT_EQ] = ACTIONS(3643), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3643), + [anon_sym_SLASH] = ACTIONS(3643), + [anon_sym_PERCENT] = ACTIONS(3643), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3645), + [sym__plus_then_ws] = ACTIONS(3645), + [sym__minus_then_ws] = ACTIONS(3645), + [sym_bang] = ACTIONS(1069), + }, + [880] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1965), + [sym_boolean_literal] = STATE(1965), + [sym__string_literal] = STATE(1965), + [sym_line_string_literal] = STATE(1965), + [sym_multi_line_string_literal] = STATE(1965), + [sym_raw_string_literal] = STATE(1965), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1965), + [sym__unary_expression] = STATE(1965), + [sym_postfix_expression] = STATE(1965), + [sym_constructor_expression] = STATE(1965), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1965), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1965), + [sym_prefix_expression] = STATE(1965), + [sym_as_expression] = STATE(1965), + [sym_selector_expression] = STATE(1965), + [sym__binary_expression] = STATE(1965), + [sym_multiplicative_expression] = STATE(1965), + [sym_additive_expression] = STATE(1965), + [sym_range_expression] = STATE(1965), + [sym_infix_expression] = STATE(1965), + [sym_nil_coalescing_expression] = STATE(1965), + [sym_check_expression] = STATE(1965), + [sym_comparison_expression] = STATE(1965), + [sym_equality_expression] = STATE(1965), + [sym_conjunction_expression] = STATE(1965), + [sym_disjunction_expression] = STATE(1965), + [sym_bitwise_operation] = STATE(1965), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1965), + [sym_await_expression] = STATE(1965), + [sym_ternary_expression] = STATE(1965), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1965), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1965), + [sym_dictionary_literal] = STATE(1965), + [sym__special_literal] = STATE(1965), + [sym__playground_literal] = STATE(1965), + [sym_lambda_literal] = STATE(1965), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1965), + [sym_key_path_expression] = STATE(1965), + [sym_key_path_string_expression] = STATE(1965), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1965), + [sym__comparison_operator] = STATE(1965), + [sym__additive_operator] = STATE(1965), + [sym__multiplicative_operator] = STATE(1965), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1965), + [sym__referenceable_operator] = STATE(1965), + [sym__eq_eq] = STATE(1965), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3647), + [sym_real_literal] = ACTIONS(3649), + [sym_integer_literal] = ACTIONS(3647), + [sym_hex_literal] = ACTIONS(3649), + [sym_oct_literal] = ACTIONS(3649), + [sym_bin_literal] = ACTIONS(3649), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3647), + [anon_sym_GT] = ACTIONS(3647), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3647), + [anon_sym_POUNDfileID] = ACTIONS(3649), + [anon_sym_POUNDfilePath] = ACTIONS(3649), + [anon_sym_POUNDline] = ACTIONS(3649), + [anon_sym_POUNDcolumn] = ACTIONS(3649), + [anon_sym_POUNDfunction] = ACTIONS(3649), + [anon_sym_POUNDdsohandle] = ACTIONS(3649), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3647), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3647), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3647), + [anon_sym_LT_EQ] = ACTIONS(3647), + [anon_sym_GT_EQ] = ACTIONS(3647), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3647), + [anon_sym_SLASH] = ACTIONS(3647), + [anon_sym_PERCENT] = ACTIONS(3647), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3649), + [sym__plus_then_ws] = ACTIONS(3649), + [sym__minus_then_ws] = ACTIONS(3649), + [sym_bang] = ACTIONS(1069), + }, + [881] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1765), + [sym_boolean_literal] = STATE(1765), + [sym__string_literal] = STATE(1765), + [sym_line_string_literal] = STATE(1765), + [sym_multi_line_string_literal] = STATE(1765), + [sym_raw_string_literal] = STATE(1765), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1765), + [sym__unary_expression] = STATE(1765), + [sym_postfix_expression] = STATE(1765), + [sym_constructor_expression] = STATE(1765), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1765), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1765), + [sym_prefix_expression] = STATE(1765), + [sym_as_expression] = STATE(1765), + [sym_selector_expression] = STATE(1765), + [sym__binary_expression] = STATE(1765), + [sym_multiplicative_expression] = STATE(1765), + [sym_additive_expression] = STATE(1765), + [sym_range_expression] = STATE(1765), + [sym_infix_expression] = STATE(1765), + [sym_nil_coalescing_expression] = STATE(1765), + [sym_check_expression] = STATE(1765), + [sym_comparison_expression] = STATE(1765), + [sym_equality_expression] = STATE(1765), + [sym_conjunction_expression] = STATE(1765), + [sym_disjunction_expression] = STATE(1765), + [sym_bitwise_operation] = STATE(1765), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1765), + [sym_await_expression] = STATE(1765), + [sym_ternary_expression] = STATE(3194), + [sym_call_expression] = STATE(2653), + [sym__primary_expression] = STATE(1765), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1765), + [sym_dictionary_literal] = STATE(1765), + [sym__special_literal] = STATE(1765), + [sym__playground_literal] = STATE(1765), + [sym_lambda_literal] = STATE(1765), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1765), + [sym_key_path_expression] = STATE(1765), + [sym_key_path_string_expression] = STATE(1765), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1765), + [sym__comparison_operator] = STATE(1765), + [sym__additive_operator] = STATE(1765), + [sym__multiplicative_operator] = STATE(1765), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1765), + [sym__referenceable_operator] = STATE(1765), + [sym__eq_eq] = STATE(1765), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3651), + [sym_real_literal] = ACTIONS(3653), + [sym_integer_literal] = ACTIONS(3651), + [sym_hex_literal] = ACTIONS(3653), + [sym_oct_literal] = ACTIONS(3653), + [sym_bin_literal] = ACTIONS(3653), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3651), + [anon_sym_GT] = ACTIONS(3651), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3651), + [anon_sym_POUNDfileID] = ACTIONS(3653), + [anon_sym_POUNDfilePath] = ACTIONS(3653), + [anon_sym_POUNDline] = ACTIONS(3653), + [anon_sym_POUNDcolumn] = ACTIONS(3653), + [anon_sym_POUNDfunction] = ACTIONS(3653), + [anon_sym_POUNDdsohandle] = ACTIONS(3653), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3651), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3651), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3651), + [anon_sym_LT_EQ] = ACTIONS(3651), + [anon_sym_GT_EQ] = ACTIONS(3651), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3651), + [anon_sym_SLASH] = ACTIONS(3651), + [anon_sym_PERCENT] = ACTIONS(3651), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3653), + [sym__plus_then_ws] = ACTIONS(3653), + [sym__minus_then_ws] = ACTIONS(3653), + [sym_bang] = ACTIONS(1467), + }, + [882] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2219), + [sym_boolean_literal] = STATE(2219), + [sym__string_literal] = STATE(2219), + [sym_line_string_literal] = STATE(2219), + [sym_multi_line_string_literal] = STATE(2219), + [sym_raw_string_literal] = STATE(2219), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2219), + [sym__unary_expression] = STATE(2219), + [sym_postfix_expression] = STATE(2219), + [sym_constructor_expression] = STATE(2219), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2219), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2219), + [sym_prefix_expression] = STATE(2219), + [sym_as_expression] = STATE(2219), + [sym_selector_expression] = STATE(2219), + [sym__binary_expression] = STATE(2219), + [sym_multiplicative_expression] = STATE(2219), + [sym_additive_expression] = STATE(2219), + [sym_range_expression] = STATE(2219), + [sym_infix_expression] = STATE(2219), + [sym_nil_coalescing_expression] = STATE(2219), + [sym_check_expression] = STATE(2219), + [sym_comparison_expression] = STATE(2219), + [sym_equality_expression] = STATE(2219), + [sym_conjunction_expression] = STATE(2219), + [sym_disjunction_expression] = STATE(2219), + [sym_bitwise_operation] = STATE(2219), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2219), + [sym_await_expression] = STATE(2219), + [sym_ternary_expression] = STATE(2219), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2219), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2219), + [sym_dictionary_literal] = STATE(2219), + [sym__special_literal] = STATE(2219), + [sym__playground_literal] = STATE(2219), + [sym_lambda_literal] = STATE(2219), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2219), + [sym_key_path_expression] = STATE(2219), + [sym_key_path_string_expression] = STATE(2219), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2219), + [sym__comparison_operator] = STATE(2219), + [sym__additive_operator] = STATE(2219), + [sym__multiplicative_operator] = STATE(2219), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2219), + [sym__referenceable_operator] = STATE(2219), + [sym__eq_eq] = STATE(2219), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3655), + [sym_real_literal] = ACTIONS(3657), + [sym_integer_literal] = ACTIONS(3655), + [sym_hex_literal] = ACTIONS(3657), + [sym_oct_literal] = ACTIONS(3657), + [sym_bin_literal] = ACTIONS(3657), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3655), + [anon_sym_GT] = ACTIONS(3655), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3655), + [anon_sym_POUNDfileID] = ACTIONS(3657), + [anon_sym_POUNDfilePath] = ACTIONS(3657), + [anon_sym_POUNDline] = ACTIONS(3657), + [anon_sym_POUNDcolumn] = ACTIONS(3657), + [anon_sym_POUNDfunction] = ACTIONS(3657), + [anon_sym_POUNDdsohandle] = ACTIONS(3657), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3655), + [anon_sym_LT_EQ] = ACTIONS(3655), + [anon_sym_GT_EQ] = ACTIONS(3655), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3655), + [anon_sym_SLASH] = ACTIONS(3655), + [anon_sym_PERCENT] = ACTIONS(3655), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3657), + [sym__plus_then_ws] = ACTIONS(3657), + [sym__minus_then_ws] = ACTIONS(3657), + [sym_bang] = ACTIONS(833), + }, + [883] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1966), + [sym_boolean_literal] = STATE(1966), + [sym__string_literal] = STATE(1966), + [sym_line_string_literal] = STATE(1966), + [sym_multi_line_string_literal] = STATE(1966), + [sym_raw_string_literal] = STATE(1966), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1966), + [sym__unary_expression] = STATE(1966), + [sym_postfix_expression] = STATE(1966), + [sym_constructor_expression] = STATE(1966), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1966), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1966), + [sym_prefix_expression] = STATE(1966), + [sym_as_expression] = STATE(1966), + [sym_selector_expression] = STATE(1966), + [sym__binary_expression] = STATE(1966), + [sym_multiplicative_expression] = STATE(1966), + [sym_additive_expression] = STATE(1966), + [sym_range_expression] = STATE(1966), + [sym_infix_expression] = STATE(1966), + [sym_nil_coalescing_expression] = STATE(1966), + [sym_check_expression] = STATE(1966), + [sym_comparison_expression] = STATE(1966), + [sym_equality_expression] = STATE(1966), + [sym_conjunction_expression] = STATE(1966), + [sym_disjunction_expression] = STATE(1966), + [sym_bitwise_operation] = STATE(1966), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1966), + [sym_await_expression] = STATE(1966), + [sym_ternary_expression] = STATE(1966), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1966), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1966), + [sym_dictionary_literal] = STATE(1966), + [sym__special_literal] = STATE(1966), + [sym__playground_literal] = STATE(1966), + [sym_lambda_literal] = STATE(1966), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1966), + [sym_key_path_expression] = STATE(1966), + [sym_key_path_string_expression] = STATE(1966), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1966), + [sym__comparison_operator] = STATE(1966), + [sym__additive_operator] = STATE(1966), + [sym__multiplicative_operator] = STATE(1966), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1966), + [sym__referenceable_operator] = STATE(1966), + [sym__eq_eq] = STATE(1966), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3659), + [sym_real_literal] = ACTIONS(3661), + [sym_integer_literal] = ACTIONS(3659), + [sym_hex_literal] = ACTIONS(3661), + [sym_oct_literal] = ACTIONS(3661), + [sym_bin_literal] = ACTIONS(3661), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3659), + [anon_sym_GT] = ACTIONS(3659), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3659), + [anon_sym_POUNDfileID] = ACTIONS(3661), + [anon_sym_POUNDfilePath] = ACTIONS(3661), + [anon_sym_POUNDline] = ACTIONS(3661), + [anon_sym_POUNDcolumn] = ACTIONS(3661), + [anon_sym_POUNDfunction] = ACTIONS(3661), + [anon_sym_POUNDdsohandle] = ACTIONS(3661), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3659), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3659), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3659), + [anon_sym_LT_EQ] = ACTIONS(3659), + [anon_sym_GT_EQ] = ACTIONS(3659), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3659), + [anon_sym_SLASH] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3661), + [sym__plus_then_ws] = ACTIONS(3661), + [sym__minus_then_ws] = ACTIONS(3661), + [sym_bang] = ACTIONS(1069), + }, + [884] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1165), + [sym__unary_expression] = STATE(1165), + [sym_postfix_expression] = STATE(1165), + [sym_constructor_expression] = STATE(1165), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1165), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1165), + [sym_await_expression] = STATE(1165), + [sym_ternary_expression] = STATE(1165), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1165), + [sym_tuple_expression] = STATE(1381), + [sym_array_literal] = STATE(1165), + [sym_dictionary_literal] = STATE(1165), + [sym__special_literal] = STATE(1165), + [sym__playground_literal] = STATE(1165), + [sym_lambda_literal] = STATE(1165), + [sym_self_expression] = STATE(1381), + [sym_super_expression] = STATE(1165), + [sym_key_path_expression] = STATE(1165), + [sym_key_path_string_expression] = STATE(1165), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1165), + [sym__comparison_operator] = STATE(1165), + [sym__additive_operator] = STATE(1165), + [sym__multiplicative_operator] = STATE(1165), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1165), + [sym__referenceable_operator] = STATE(1165), + [sym__eq_eq] = STATE(1165), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(3663), + [sym_real_literal] = ACTIONS(3665), + [sym_integer_literal] = ACTIONS(3663), + [sym_hex_literal] = ACTIONS(3665), + [sym_oct_literal] = ACTIONS(3665), + [sym_bin_literal] = ACTIONS(3665), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(3663), + [anon_sym_GT] = ACTIONS(3663), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(3663), + [anon_sym_POUNDfileID] = ACTIONS(3665), + [anon_sym_POUNDfilePath] = ACTIONS(3665), + [anon_sym_POUNDline] = ACTIONS(3665), + [anon_sym_POUNDcolumn] = ACTIONS(3665), + [anon_sym_POUNDfunction] = ACTIONS(3665), + [anon_sym_POUNDdsohandle] = ACTIONS(3665), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(3663), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3663), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3663), + [anon_sym_LT_EQ] = ACTIONS(3663), + [anon_sym_GT_EQ] = ACTIONS(3663), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(3663), + [anon_sym_SLASH] = ACTIONS(3663), + [anon_sym_PERCENT] = ACTIONS(3663), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(3665), + [sym__plus_then_ws] = ACTIONS(3665), + [sym__minus_then_ws] = ACTIONS(3665), + [sym_bang] = ACTIONS(481), + }, + [885] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1552), + [sym_boolean_literal] = STATE(1552), + [sym__string_literal] = STATE(1552), + [sym_line_string_literal] = STATE(1552), + [sym_multi_line_string_literal] = STATE(1552), + [sym_raw_string_literal] = STATE(1552), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1552), + [sym__unary_expression] = STATE(1552), + [sym_postfix_expression] = STATE(1552), + [sym_constructor_expression] = STATE(1552), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1552), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1552), + [sym_prefix_expression] = STATE(1552), + [sym_as_expression] = STATE(1552), + [sym_selector_expression] = STATE(1552), + [sym__binary_expression] = STATE(1552), + [sym_multiplicative_expression] = STATE(1552), + [sym_additive_expression] = STATE(1552), + [sym_range_expression] = STATE(1552), + [sym_infix_expression] = STATE(1552), + [sym_nil_coalescing_expression] = STATE(1552), + [sym_check_expression] = STATE(1552), + [sym_comparison_expression] = STATE(1552), + [sym_equality_expression] = STATE(1552), + [sym_conjunction_expression] = STATE(1552), + [sym_disjunction_expression] = STATE(1552), + [sym_bitwise_operation] = STATE(1552), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1552), + [sym_await_expression] = STATE(1552), + [sym_ternary_expression] = STATE(1552), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1552), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1552), + [sym_dictionary_literal] = STATE(1552), + [sym__special_literal] = STATE(1552), + [sym__playground_literal] = STATE(1552), + [sym_lambda_literal] = STATE(1552), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1552), + [sym_key_path_expression] = STATE(1552), + [sym_key_path_string_expression] = STATE(1552), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1552), + [sym__comparison_operator] = STATE(1552), + [sym__additive_operator] = STATE(1552), + [sym__multiplicative_operator] = STATE(1552), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1552), + [sym__referenceable_operator] = STATE(1552), + [sym__eq_eq] = STATE(1552), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3667), + [sym_real_literal] = ACTIONS(3669), + [sym_integer_literal] = ACTIONS(3667), + [sym_hex_literal] = ACTIONS(3669), + [sym_oct_literal] = ACTIONS(3669), + [sym_bin_literal] = ACTIONS(3669), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3667), + [anon_sym_GT] = ACTIONS(3667), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3667), + [anon_sym_POUNDfileID] = ACTIONS(3669), + [anon_sym_POUNDfilePath] = ACTIONS(3669), + [anon_sym_POUNDline] = ACTIONS(3669), + [anon_sym_POUNDcolumn] = ACTIONS(3669), + [anon_sym_POUNDfunction] = ACTIONS(3669), + [anon_sym_POUNDdsohandle] = ACTIONS(3669), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3667), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3667), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3667), + [anon_sym_LT_EQ] = ACTIONS(3667), + [anon_sym_GT_EQ] = ACTIONS(3667), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3667), + [anon_sym_SLASH] = ACTIONS(3667), + [anon_sym_PERCENT] = ACTIONS(3667), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3669), + [sym__plus_then_ws] = ACTIONS(3669), + [sym__minus_then_ws] = ACTIONS(3669), + [sym_bang] = ACTIONS(1069), + }, + [886] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1551), + [sym_boolean_literal] = STATE(1551), + [sym__string_literal] = STATE(1551), + [sym_line_string_literal] = STATE(1551), + [sym_multi_line_string_literal] = STATE(1551), + [sym_raw_string_literal] = STATE(1551), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1551), + [sym__unary_expression] = STATE(1551), + [sym_postfix_expression] = STATE(1551), + [sym_constructor_expression] = STATE(1551), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1551), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1551), + [sym_prefix_expression] = STATE(1551), + [sym_as_expression] = STATE(1551), + [sym_selector_expression] = STATE(1551), + [sym__binary_expression] = STATE(1551), + [sym_multiplicative_expression] = STATE(1551), + [sym_additive_expression] = STATE(1551), + [sym_range_expression] = STATE(1551), + [sym_infix_expression] = STATE(1551), + [sym_nil_coalescing_expression] = STATE(1551), + [sym_check_expression] = STATE(1551), + [sym_comparison_expression] = STATE(1551), + [sym_equality_expression] = STATE(1551), + [sym_conjunction_expression] = STATE(1551), + [sym_disjunction_expression] = STATE(1551), + [sym_bitwise_operation] = STATE(1551), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1551), + [sym_await_expression] = STATE(1551), + [sym_ternary_expression] = STATE(1551), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1551), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1551), + [sym_dictionary_literal] = STATE(1551), + [sym__special_literal] = STATE(1551), + [sym__playground_literal] = STATE(1551), + [sym_lambda_literal] = STATE(1551), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1551), + [sym_key_path_expression] = STATE(1551), + [sym_key_path_string_expression] = STATE(1551), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1551), + [sym__additive_operator] = STATE(1551), + [sym__multiplicative_operator] = STATE(1551), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1551), + [sym__referenceable_operator] = STATE(1551), + [sym__eq_eq] = STATE(1551), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3671), + [sym_real_literal] = ACTIONS(3673), + [sym_integer_literal] = ACTIONS(3671), + [sym_hex_literal] = ACTIONS(3673), + [sym_oct_literal] = ACTIONS(3673), + [sym_bin_literal] = ACTIONS(3673), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3671), + [anon_sym_GT] = ACTIONS(3671), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3671), + [anon_sym_POUNDfileID] = ACTIONS(3673), + [anon_sym_POUNDfilePath] = ACTIONS(3673), + [anon_sym_POUNDline] = ACTIONS(3673), + [anon_sym_POUNDcolumn] = ACTIONS(3673), + [anon_sym_POUNDfunction] = ACTIONS(3673), + [anon_sym_POUNDdsohandle] = ACTIONS(3673), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3671), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3671), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3671), + [anon_sym_LT_EQ] = ACTIONS(3671), + [anon_sym_GT_EQ] = ACTIONS(3671), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3671), + [anon_sym_SLASH] = ACTIONS(3671), + [anon_sym_PERCENT] = ACTIONS(3671), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3673), + [sym__plus_then_ws] = ACTIONS(3673), + [sym__minus_then_ws] = ACTIONS(3673), + [sym_bang] = ACTIONS(1069), + }, + [887] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1969), + [sym_boolean_literal] = STATE(1969), + [sym__string_literal] = STATE(1969), + [sym_line_string_literal] = STATE(1969), + [sym_multi_line_string_literal] = STATE(1969), + [sym_raw_string_literal] = STATE(1969), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1969), + [sym__unary_expression] = STATE(1969), + [sym_postfix_expression] = STATE(1969), + [sym_constructor_expression] = STATE(1969), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1969), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1969), + [sym_prefix_expression] = STATE(1969), + [sym_as_expression] = STATE(1969), + [sym_selector_expression] = STATE(1969), + [sym__binary_expression] = STATE(1969), + [sym_multiplicative_expression] = STATE(1969), + [sym_additive_expression] = STATE(1969), + [sym_range_expression] = STATE(1969), + [sym_infix_expression] = STATE(1969), + [sym_nil_coalescing_expression] = STATE(1969), + [sym_check_expression] = STATE(1969), + [sym_comparison_expression] = STATE(1969), + [sym_equality_expression] = STATE(1969), + [sym_conjunction_expression] = STATE(1969), + [sym_disjunction_expression] = STATE(1969), + [sym_bitwise_operation] = STATE(1969), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1969), + [sym_await_expression] = STATE(1969), + [sym_ternary_expression] = STATE(1969), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1969), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1969), + [sym_dictionary_literal] = STATE(1969), + [sym__special_literal] = STATE(1969), + [sym__playground_literal] = STATE(1969), + [sym_lambda_literal] = STATE(1969), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1969), + [sym_key_path_expression] = STATE(1969), + [sym_key_path_string_expression] = STATE(1969), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1969), + [sym__comparison_operator] = STATE(1969), + [sym__additive_operator] = STATE(1969), + [sym__multiplicative_operator] = STATE(1969), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1969), + [sym__referenceable_operator] = STATE(1969), + [sym__eq_eq] = STATE(1969), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3675), + [sym_real_literal] = ACTIONS(3677), + [sym_integer_literal] = ACTIONS(3675), + [sym_hex_literal] = ACTIONS(3677), + [sym_oct_literal] = ACTIONS(3677), + [sym_bin_literal] = ACTIONS(3677), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3675), + [anon_sym_GT] = ACTIONS(3675), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3675), + [anon_sym_POUNDfileID] = ACTIONS(3677), + [anon_sym_POUNDfilePath] = ACTIONS(3677), + [anon_sym_POUNDline] = ACTIONS(3677), + [anon_sym_POUNDcolumn] = ACTIONS(3677), + [anon_sym_POUNDfunction] = ACTIONS(3677), + [anon_sym_POUNDdsohandle] = ACTIONS(3677), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3675), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3675), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3675), + [anon_sym_LT_EQ] = ACTIONS(3675), + [anon_sym_GT_EQ] = ACTIONS(3675), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3675), + [anon_sym_SLASH] = ACTIONS(3675), + [anon_sym_PERCENT] = ACTIONS(3675), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3677), + [sym__plus_then_ws] = ACTIONS(3677), + [sym__minus_then_ws] = ACTIONS(3677), + [sym_bang] = ACTIONS(1069), + }, + [888] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1517), + [sym_boolean_literal] = STATE(1517), + [sym__string_literal] = STATE(1517), + [sym_line_string_literal] = STATE(1517), + [sym_multi_line_string_literal] = STATE(1517), + [sym_raw_string_literal] = STATE(1517), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1517), + [sym__unary_expression] = STATE(1517), + [sym_postfix_expression] = STATE(1517), + [sym_constructor_expression] = STATE(1517), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1517), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1517), + [sym_prefix_expression] = STATE(1517), + [sym_as_expression] = STATE(1517), + [sym_selector_expression] = STATE(1517), + [sym__binary_expression] = STATE(1517), + [sym_multiplicative_expression] = STATE(1517), + [sym_additive_expression] = STATE(1517), + [sym_range_expression] = STATE(1517), + [sym_infix_expression] = STATE(1517), + [sym_nil_coalescing_expression] = STATE(1517), + [sym_check_expression] = STATE(1517), + [sym_comparison_expression] = STATE(1517), + [sym_equality_expression] = STATE(1517), + [sym_conjunction_expression] = STATE(1517), + [sym_disjunction_expression] = STATE(1517), + [sym_bitwise_operation] = STATE(1517), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1517), + [sym_await_expression] = STATE(1517), + [sym_ternary_expression] = STATE(1517), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1517), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1517), + [sym_dictionary_literal] = STATE(1517), + [sym__special_literal] = STATE(1517), + [sym__playground_literal] = STATE(1517), + [sym_lambda_literal] = STATE(1517), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1517), + [sym_key_path_expression] = STATE(1517), + [sym_key_path_string_expression] = STATE(1517), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1517), + [sym__comparison_operator] = STATE(1517), + [sym__additive_operator] = STATE(1517), + [sym__multiplicative_operator] = STATE(1517), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1517), + [sym__referenceable_operator] = STATE(1517), + [sym__eq_eq] = STATE(1517), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3679), + [sym_real_literal] = ACTIONS(3681), + [sym_integer_literal] = ACTIONS(3679), + [sym_hex_literal] = ACTIONS(3681), + [sym_oct_literal] = ACTIONS(3681), + [sym_bin_literal] = ACTIONS(3681), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3679), + [anon_sym_GT] = ACTIONS(3679), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3679), + [anon_sym_POUNDfileID] = ACTIONS(3681), + [anon_sym_POUNDfilePath] = ACTIONS(3681), + [anon_sym_POUNDline] = ACTIONS(3681), + [anon_sym_POUNDcolumn] = ACTIONS(3681), + [anon_sym_POUNDfunction] = ACTIONS(3681), + [anon_sym_POUNDdsohandle] = ACTIONS(3681), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3679), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3679), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3679), + [anon_sym_LT_EQ] = ACTIONS(3679), + [anon_sym_GT_EQ] = ACTIONS(3679), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3679), + [anon_sym_SLASH] = ACTIONS(3679), + [anon_sym_PERCENT] = ACTIONS(3679), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3681), + [sym__plus_then_ws] = ACTIONS(3681), + [sym__minus_then_ws] = ACTIONS(3681), + [sym_bang] = ACTIONS(1467), + }, + [889] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1920), + [sym_boolean_literal] = STATE(1920), + [sym__string_literal] = STATE(1920), + [sym_line_string_literal] = STATE(1920), + [sym_multi_line_string_literal] = STATE(1920), + [sym_raw_string_literal] = STATE(1920), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1920), + [sym__unary_expression] = STATE(1920), + [sym_postfix_expression] = STATE(1920), + [sym_constructor_expression] = STATE(1920), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1920), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1920), + [sym_prefix_expression] = STATE(1920), + [sym_as_expression] = STATE(1920), + [sym_selector_expression] = STATE(1920), + [sym__binary_expression] = STATE(1920), + [sym_multiplicative_expression] = STATE(1920), + [sym_additive_expression] = STATE(1920), + [sym_range_expression] = STATE(1920), + [sym_infix_expression] = STATE(1920), + [sym_nil_coalescing_expression] = STATE(1920), + [sym_check_expression] = STATE(1920), + [sym_comparison_expression] = STATE(1920), + [sym_equality_expression] = STATE(1920), + [sym_conjunction_expression] = STATE(1920), + [sym_disjunction_expression] = STATE(1920), + [sym_bitwise_operation] = STATE(1920), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1920), + [sym_await_expression] = STATE(1920), + [sym_ternary_expression] = STATE(1920), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1920), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1920), + [sym_dictionary_literal] = STATE(1920), + [sym__special_literal] = STATE(1920), + [sym__playground_literal] = STATE(1920), + [sym_lambda_literal] = STATE(1920), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1920), + [sym_key_path_expression] = STATE(1920), + [sym_key_path_string_expression] = STATE(1920), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1920), + [sym__comparison_operator] = STATE(1920), + [sym__additive_operator] = STATE(1920), + [sym__multiplicative_operator] = STATE(1920), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1920), + [sym__referenceable_operator] = STATE(1920), + [sym__eq_eq] = STATE(1920), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3683), + [sym_real_literal] = ACTIONS(3685), + [sym_integer_literal] = ACTIONS(3683), + [sym_hex_literal] = ACTIONS(3685), + [sym_oct_literal] = ACTIONS(3685), + [sym_bin_literal] = ACTIONS(3685), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3683), + [anon_sym_GT] = ACTIONS(3683), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3683), + [anon_sym_POUNDfileID] = ACTIONS(3685), + [anon_sym_POUNDfilePath] = ACTIONS(3685), + [anon_sym_POUNDline] = ACTIONS(3685), + [anon_sym_POUNDcolumn] = ACTIONS(3685), + [anon_sym_POUNDfunction] = ACTIONS(3685), + [anon_sym_POUNDdsohandle] = ACTIONS(3685), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3683), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3683), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3683), + [anon_sym_LT_EQ] = ACTIONS(3683), + [anon_sym_GT_EQ] = ACTIONS(3683), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3683), + [anon_sym_SLASH] = ACTIONS(3683), + [anon_sym_PERCENT] = ACTIONS(3683), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3685), + [sym__plus_then_ws] = ACTIONS(3685), + [sym__minus_then_ws] = ACTIONS(3685), + [sym_bang] = ACTIONS(1069), + }, + [890] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2098), + [sym_boolean_literal] = STATE(2098), + [sym__string_literal] = STATE(2098), + [sym_line_string_literal] = STATE(2098), + [sym_multi_line_string_literal] = STATE(2098), + [sym_raw_string_literal] = STATE(2098), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2098), + [sym__unary_expression] = STATE(2098), + [sym_postfix_expression] = STATE(2098), + [sym_constructor_expression] = STATE(2098), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2098), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2098), + [sym_prefix_expression] = STATE(2098), + [sym_as_expression] = STATE(2098), + [sym_selector_expression] = STATE(2098), + [sym__binary_expression] = STATE(2098), + [sym_multiplicative_expression] = STATE(2098), + [sym_additive_expression] = STATE(2098), + [sym_range_expression] = STATE(2098), + [sym_infix_expression] = STATE(2098), + [sym_nil_coalescing_expression] = STATE(2098), + [sym_check_expression] = STATE(2098), + [sym_comparison_expression] = STATE(2098), + [sym_equality_expression] = STATE(2098), + [sym_conjunction_expression] = STATE(2098), + [sym_disjunction_expression] = STATE(2098), + [sym_bitwise_operation] = STATE(2098), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2098), + [sym_await_expression] = STATE(2098), + [sym_ternary_expression] = STATE(2098), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2098), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2098), + [sym_dictionary_literal] = STATE(2098), + [sym__special_literal] = STATE(2098), + [sym__playground_literal] = STATE(2098), + [sym_lambda_literal] = STATE(2098), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2098), + [sym_key_path_expression] = STATE(2098), + [sym_key_path_string_expression] = STATE(2098), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2098), + [sym__comparison_operator] = STATE(2098), + [sym__additive_operator] = STATE(2098), + [sym__multiplicative_operator] = STATE(2098), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2098), + [sym__referenceable_operator] = STATE(2098), + [sym__eq_eq] = STATE(2098), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3687), + [sym_real_literal] = ACTIONS(3689), + [sym_integer_literal] = ACTIONS(3687), + [sym_hex_literal] = ACTIONS(3689), + [sym_oct_literal] = ACTIONS(3689), + [sym_bin_literal] = ACTIONS(3689), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3687), + [anon_sym_GT] = ACTIONS(3687), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3687), + [anon_sym_POUNDfileID] = ACTIONS(3689), + [anon_sym_POUNDfilePath] = ACTIONS(3689), + [anon_sym_POUNDline] = ACTIONS(3689), + [anon_sym_POUNDcolumn] = ACTIONS(3689), + [anon_sym_POUNDfunction] = ACTIONS(3689), + [anon_sym_POUNDdsohandle] = ACTIONS(3689), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3687), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3687), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3687), + [anon_sym_LT_EQ] = ACTIONS(3687), + [anon_sym_GT_EQ] = ACTIONS(3687), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3687), + [anon_sym_SLASH] = ACTIONS(3687), + [anon_sym_PERCENT] = ACTIONS(3687), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3689), + [sym__plus_then_ws] = ACTIONS(3689), + [sym__minus_then_ws] = ACTIONS(3689), + [sym_bang] = ACTIONS(1069), + }, + [891] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1538), + [sym_boolean_literal] = STATE(1538), + [sym__string_literal] = STATE(1538), + [sym_line_string_literal] = STATE(1538), + [sym_multi_line_string_literal] = STATE(1538), + [sym_raw_string_literal] = STATE(1538), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1538), + [sym__unary_expression] = STATE(1538), + [sym_postfix_expression] = STATE(1538), + [sym_constructor_expression] = STATE(1538), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1538), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1538), + [sym_prefix_expression] = STATE(1538), + [sym_as_expression] = STATE(1538), + [sym_selector_expression] = STATE(1538), + [sym__binary_expression] = STATE(1538), + [sym_multiplicative_expression] = STATE(1538), + [sym_additive_expression] = STATE(1538), + [sym_range_expression] = STATE(1538), + [sym_infix_expression] = STATE(1538), + [sym_nil_coalescing_expression] = STATE(1538), + [sym_check_expression] = STATE(1538), + [sym_comparison_expression] = STATE(1538), + [sym_equality_expression] = STATE(1538), + [sym_conjunction_expression] = STATE(1538), + [sym_disjunction_expression] = STATE(1538), + [sym_bitwise_operation] = STATE(1538), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1538), + [sym_await_expression] = STATE(1538), + [sym_ternary_expression] = STATE(1538), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1538), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1538), + [sym_dictionary_literal] = STATE(1538), + [sym__special_literal] = STATE(1538), + [sym__playground_literal] = STATE(1538), + [sym_lambda_literal] = STATE(1538), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1538), + [sym_key_path_expression] = STATE(1538), + [sym_key_path_string_expression] = STATE(1538), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1538), + [sym__comparison_operator] = STATE(1538), + [sym__additive_operator] = STATE(1538), + [sym__multiplicative_operator] = STATE(1538), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1538), + [sym__referenceable_operator] = STATE(1538), + [sym__eq_eq] = STATE(1538), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3691), + [sym_real_literal] = ACTIONS(3693), + [sym_integer_literal] = ACTIONS(3691), + [sym_hex_literal] = ACTIONS(3693), + [sym_oct_literal] = ACTIONS(3693), + [sym_bin_literal] = ACTIONS(3693), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3691), + [anon_sym_GT] = ACTIONS(3691), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3691), + [anon_sym_POUNDfileID] = ACTIONS(3693), + [anon_sym_POUNDfilePath] = ACTIONS(3693), + [anon_sym_POUNDline] = ACTIONS(3693), + [anon_sym_POUNDcolumn] = ACTIONS(3693), + [anon_sym_POUNDfunction] = ACTIONS(3693), + [anon_sym_POUNDdsohandle] = ACTIONS(3693), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3691), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3691), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3691), + [anon_sym_LT_EQ] = ACTIONS(3691), + [anon_sym_GT_EQ] = ACTIONS(3691), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3691), + [anon_sym_SLASH] = ACTIONS(3691), + [anon_sym_PERCENT] = ACTIONS(3691), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3693), + [sym__plus_then_ws] = ACTIONS(3693), + [sym__minus_then_ws] = ACTIONS(3693), + [sym_bang] = ACTIONS(1069), + }, + [892] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1537), + [sym_boolean_literal] = STATE(1537), + [sym__string_literal] = STATE(1537), + [sym_line_string_literal] = STATE(1537), + [sym_multi_line_string_literal] = STATE(1537), + [sym_raw_string_literal] = STATE(1537), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1537), + [sym__unary_expression] = STATE(1537), + [sym_postfix_expression] = STATE(1537), + [sym_constructor_expression] = STATE(1537), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1537), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1537), + [sym_prefix_expression] = STATE(1537), + [sym_as_expression] = STATE(1537), + [sym_selector_expression] = STATE(1537), + [sym__binary_expression] = STATE(1537), + [sym_multiplicative_expression] = STATE(1537), + [sym_additive_expression] = STATE(1537), + [sym_range_expression] = STATE(1537), + [sym_infix_expression] = STATE(1537), + [sym_nil_coalescing_expression] = STATE(1537), + [sym_check_expression] = STATE(1537), + [sym_comparison_expression] = STATE(1537), + [sym_equality_expression] = STATE(1537), + [sym_conjunction_expression] = STATE(1537), + [sym_disjunction_expression] = STATE(1537), + [sym_bitwise_operation] = STATE(1537), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1537), + [sym_await_expression] = STATE(1537), + [sym_ternary_expression] = STATE(1537), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1537), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1537), + [sym_dictionary_literal] = STATE(1537), + [sym__special_literal] = STATE(1537), + [sym__playground_literal] = STATE(1537), + [sym_lambda_literal] = STATE(1537), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1537), + [sym_key_path_expression] = STATE(1537), + [sym_key_path_string_expression] = STATE(1537), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1537), + [sym__comparison_operator] = STATE(1537), + [sym__additive_operator] = STATE(1537), + [sym__multiplicative_operator] = STATE(1537), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1537), + [sym__referenceable_operator] = STATE(1537), + [sym__eq_eq] = STATE(1537), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3695), + [sym_real_literal] = ACTIONS(3697), + [sym_integer_literal] = ACTIONS(3695), + [sym_hex_literal] = ACTIONS(3697), + [sym_oct_literal] = ACTIONS(3697), + [sym_bin_literal] = ACTIONS(3697), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3695), + [anon_sym_GT] = ACTIONS(3695), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3695), + [anon_sym_POUNDfileID] = ACTIONS(3697), + [anon_sym_POUNDfilePath] = ACTIONS(3697), + [anon_sym_POUNDline] = ACTIONS(3697), + [anon_sym_POUNDcolumn] = ACTIONS(3697), + [anon_sym_POUNDfunction] = ACTIONS(3697), + [anon_sym_POUNDdsohandle] = ACTIONS(3697), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3695), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3695), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3695), + [anon_sym_LT_EQ] = ACTIONS(3695), + [anon_sym_GT_EQ] = ACTIONS(3695), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3695), + [anon_sym_SLASH] = ACTIONS(3695), + [anon_sym_PERCENT] = ACTIONS(3695), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3697), + [sym__plus_then_ws] = ACTIONS(3697), + [sym__minus_then_ws] = ACTIONS(3697), + [sym_bang] = ACTIONS(1069), + }, + [893] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1533), + [sym_boolean_literal] = STATE(1533), + [sym__string_literal] = STATE(1533), + [sym_line_string_literal] = STATE(1533), + [sym_multi_line_string_literal] = STATE(1533), + [sym_raw_string_literal] = STATE(1533), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1533), + [sym__unary_expression] = STATE(1533), + [sym_postfix_expression] = STATE(1533), + [sym_constructor_expression] = STATE(1533), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1533), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1533), + [sym_prefix_expression] = STATE(1533), + [sym_as_expression] = STATE(1533), + [sym_selector_expression] = STATE(1533), + [sym__binary_expression] = STATE(1533), + [sym_multiplicative_expression] = STATE(1533), + [sym_additive_expression] = STATE(1533), + [sym_range_expression] = STATE(1533), + [sym_infix_expression] = STATE(1533), + [sym_nil_coalescing_expression] = STATE(1533), + [sym_check_expression] = STATE(1533), + [sym_comparison_expression] = STATE(1533), + [sym_equality_expression] = STATE(1533), + [sym_conjunction_expression] = STATE(1533), + [sym_disjunction_expression] = STATE(1533), + [sym_bitwise_operation] = STATE(1533), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1533), + [sym_await_expression] = STATE(1533), + [sym_ternary_expression] = STATE(1533), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1533), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1533), + [sym_dictionary_literal] = STATE(1533), + [sym__special_literal] = STATE(1533), + [sym__playground_literal] = STATE(1533), + [sym_lambda_literal] = STATE(1533), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1533), + [sym_key_path_expression] = STATE(1533), + [sym_key_path_string_expression] = STATE(1533), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1533), + [sym__comparison_operator] = STATE(1533), + [sym__additive_operator] = STATE(1533), + [sym__multiplicative_operator] = STATE(1533), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1533), + [sym__referenceable_operator] = STATE(1533), + [sym__eq_eq] = STATE(1533), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3699), + [sym_real_literal] = ACTIONS(3701), + [sym_integer_literal] = ACTIONS(3699), + [sym_hex_literal] = ACTIONS(3701), + [sym_oct_literal] = ACTIONS(3701), + [sym_bin_literal] = ACTIONS(3701), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3699), + [anon_sym_GT] = ACTIONS(3699), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3699), + [anon_sym_POUNDfileID] = ACTIONS(3701), + [anon_sym_POUNDfilePath] = ACTIONS(3701), + [anon_sym_POUNDline] = ACTIONS(3701), + [anon_sym_POUNDcolumn] = ACTIONS(3701), + [anon_sym_POUNDfunction] = ACTIONS(3701), + [anon_sym_POUNDdsohandle] = ACTIONS(3701), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3699), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3699), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3699), + [anon_sym_LT_EQ] = ACTIONS(3699), + [anon_sym_GT_EQ] = ACTIONS(3699), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3699), + [anon_sym_SLASH] = ACTIONS(3699), + [anon_sym_PERCENT] = ACTIONS(3699), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3701), + [sym__plus_then_ws] = ACTIONS(3701), + [sym__minus_then_ws] = ACTIONS(3701), + [sym_bang] = ACTIONS(1069), + }, + [894] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1532), + [sym_boolean_literal] = STATE(1532), + [sym__string_literal] = STATE(1532), + [sym_line_string_literal] = STATE(1532), + [sym_multi_line_string_literal] = STATE(1532), + [sym_raw_string_literal] = STATE(1532), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1532), + [sym__unary_expression] = STATE(1532), + [sym_postfix_expression] = STATE(1532), + [sym_constructor_expression] = STATE(1532), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1532), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1532), + [sym_prefix_expression] = STATE(1532), + [sym_as_expression] = STATE(1532), + [sym_selector_expression] = STATE(1532), + [sym__binary_expression] = STATE(1532), + [sym_multiplicative_expression] = STATE(1532), + [sym_additive_expression] = STATE(1532), + [sym_range_expression] = STATE(1532), + [sym_infix_expression] = STATE(1532), + [sym_nil_coalescing_expression] = STATE(1532), + [sym_check_expression] = STATE(1532), + [sym_comparison_expression] = STATE(1532), + [sym_equality_expression] = STATE(1532), + [sym_conjunction_expression] = STATE(1532), + [sym_disjunction_expression] = STATE(1532), + [sym_bitwise_operation] = STATE(1532), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1532), + [sym_await_expression] = STATE(1532), + [sym_ternary_expression] = STATE(1532), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1532), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1532), + [sym_dictionary_literal] = STATE(1532), + [sym__special_literal] = STATE(1532), + [sym__playground_literal] = STATE(1532), + [sym_lambda_literal] = STATE(1532), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1532), + [sym_key_path_expression] = STATE(1532), + [sym_key_path_string_expression] = STATE(1532), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1532), + [sym__comparison_operator] = STATE(1532), + [sym__additive_operator] = STATE(1532), + [sym__multiplicative_operator] = STATE(1532), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1532), + [sym__referenceable_operator] = STATE(1532), + [sym__eq_eq] = STATE(1532), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3703), + [sym_real_literal] = ACTIONS(3705), + [sym_integer_literal] = ACTIONS(3703), + [sym_hex_literal] = ACTIONS(3705), + [sym_oct_literal] = ACTIONS(3705), + [sym_bin_literal] = ACTIONS(3705), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3703), + [anon_sym_GT] = ACTIONS(3703), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3703), + [anon_sym_POUNDfileID] = ACTIONS(3705), + [anon_sym_POUNDfilePath] = ACTIONS(3705), + [anon_sym_POUNDline] = ACTIONS(3705), + [anon_sym_POUNDcolumn] = ACTIONS(3705), + [anon_sym_POUNDfunction] = ACTIONS(3705), + [anon_sym_POUNDdsohandle] = ACTIONS(3705), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3703), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3703), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3703), + [anon_sym_LT_EQ] = ACTIONS(3703), + [anon_sym_GT_EQ] = ACTIONS(3703), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3703), + [anon_sym_SLASH] = ACTIONS(3703), + [anon_sym_PERCENT] = ACTIONS(3703), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3705), + [sym__plus_then_ws] = ACTIONS(3705), + [sym__minus_then_ws] = ACTIONS(3705), + [sym_bang] = ACTIONS(1069), + }, + [895] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1971), + [sym_boolean_literal] = STATE(1971), + [sym__string_literal] = STATE(1971), + [sym_line_string_literal] = STATE(1971), + [sym_multi_line_string_literal] = STATE(1971), + [sym_raw_string_literal] = STATE(1971), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1971), + [sym__unary_expression] = STATE(1971), + [sym_postfix_expression] = STATE(1971), + [sym_constructor_expression] = STATE(1971), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1971), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1971), + [sym_prefix_expression] = STATE(1971), + [sym_as_expression] = STATE(1971), + [sym_selector_expression] = STATE(1971), + [sym__binary_expression] = STATE(1971), + [sym_multiplicative_expression] = STATE(1971), + [sym_additive_expression] = STATE(1971), + [sym_range_expression] = STATE(1971), + [sym_infix_expression] = STATE(1971), + [sym_nil_coalescing_expression] = STATE(1971), + [sym_check_expression] = STATE(1971), + [sym_comparison_expression] = STATE(1971), + [sym_equality_expression] = STATE(1971), + [sym_conjunction_expression] = STATE(1971), + [sym_disjunction_expression] = STATE(1971), + [sym_bitwise_operation] = STATE(1971), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1971), + [sym_await_expression] = STATE(1971), + [sym_ternary_expression] = STATE(1971), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1971), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1971), + [sym_dictionary_literal] = STATE(1971), + [sym__special_literal] = STATE(1971), + [sym__playground_literal] = STATE(1971), + [sym_lambda_literal] = STATE(1971), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1971), + [sym_key_path_expression] = STATE(1971), + [sym_key_path_string_expression] = STATE(1971), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1971), + [sym__comparison_operator] = STATE(1971), + [sym__additive_operator] = STATE(1971), + [sym__multiplicative_operator] = STATE(1971), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1971), + [sym__referenceable_operator] = STATE(1971), + [sym__eq_eq] = STATE(1971), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3707), + [sym_real_literal] = ACTIONS(3709), + [sym_integer_literal] = ACTIONS(3707), + [sym_hex_literal] = ACTIONS(3709), + [sym_oct_literal] = ACTIONS(3709), + [sym_bin_literal] = ACTIONS(3709), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3707), + [anon_sym_GT] = ACTIONS(3707), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3707), + [anon_sym_POUNDfileID] = ACTIONS(3709), + [anon_sym_POUNDfilePath] = ACTIONS(3709), + [anon_sym_POUNDline] = ACTIONS(3709), + [anon_sym_POUNDcolumn] = ACTIONS(3709), + [anon_sym_POUNDfunction] = ACTIONS(3709), + [anon_sym_POUNDdsohandle] = ACTIONS(3709), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3707), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3707), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3707), + [anon_sym_LT_EQ] = ACTIONS(3707), + [anon_sym_GT_EQ] = ACTIONS(3707), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3707), + [anon_sym_SLASH] = ACTIONS(3707), + [anon_sym_PERCENT] = ACTIONS(3707), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3709), + [sym__plus_then_ws] = ACTIONS(3709), + [sym__minus_then_ws] = ACTIONS(3709), + [sym_bang] = ACTIONS(1069), + }, + [896] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1526), + [sym_boolean_literal] = STATE(1526), + [sym__string_literal] = STATE(1526), + [sym_line_string_literal] = STATE(1526), + [sym_multi_line_string_literal] = STATE(1526), + [sym_raw_string_literal] = STATE(1526), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1526), + [sym__unary_expression] = STATE(1526), + [sym_postfix_expression] = STATE(1526), + [sym_constructor_expression] = STATE(1526), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1526), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1526), + [sym_prefix_expression] = STATE(1526), + [sym_as_expression] = STATE(1526), + [sym_selector_expression] = STATE(1526), + [sym__binary_expression] = STATE(1526), + [sym_multiplicative_expression] = STATE(1526), + [sym_additive_expression] = STATE(1526), + [sym_range_expression] = STATE(1526), + [sym_infix_expression] = STATE(1526), + [sym_nil_coalescing_expression] = STATE(1526), + [sym_check_expression] = STATE(1526), + [sym_comparison_expression] = STATE(1526), + [sym_equality_expression] = STATE(1526), + [sym_conjunction_expression] = STATE(1526), + [sym_disjunction_expression] = STATE(1526), + [sym_bitwise_operation] = STATE(1526), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1526), + [sym_await_expression] = STATE(1526), + [sym_ternary_expression] = STATE(1526), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1526), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1526), + [sym_dictionary_literal] = STATE(1526), + [sym__special_literal] = STATE(1526), + [sym__playground_literal] = STATE(1526), + [sym_lambda_literal] = STATE(1526), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1526), + [sym_key_path_expression] = STATE(1526), + [sym_key_path_string_expression] = STATE(1526), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1526), + [sym__comparison_operator] = STATE(1526), + [sym__additive_operator] = STATE(1526), + [sym__multiplicative_operator] = STATE(1526), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1526), + [sym__referenceable_operator] = STATE(1526), + [sym__eq_eq] = STATE(1526), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3711), + [sym_real_literal] = ACTIONS(3713), + [sym_integer_literal] = ACTIONS(3711), + [sym_hex_literal] = ACTIONS(3713), + [sym_oct_literal] = ACTIONS(3713), + [sym_bin_literal] = ACTIONS(3713), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3711), + [anon_sym_GT] = ACTIONS(3711), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3711), + [anon_sym_POUNDfileID] = ACTIONS(3713), + [anon_sym_POUNDfilePath] = ACTIONS(3713), + [anon_sym_POUNDline] = ACTIONS(3713), + [anon_sym_POUNDcolumn] = ACTIONS(3713), + [anon_sym_POUNDfunction] = ACTIONS(3713), + [anon_sym_POUNDdsohandle] = ACTIONS(3713), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3711), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3711), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3711), + [anon_sym_LT_EQ] = ACTIONS(3711), + [anon_sym_GT_EQ] = ACTIONS(3711), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3711), + [anon_sym_SLASH] = ACTIONS(3711), + [anon_sym_PERCENT] = ACTIONS(3711), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3713), + [sym__plus_then_ws] = ACTIONS(3713), + [sym__minus_then_ws] = ACTIONS(3713), + [sym_bang] = ACTIONS(1069), + }, + [897] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1148), + [sym__unary_expression] = STATE(1148), + [sym_postfix_expression] = STATE(1148), + [sym_constructor_expression] = STATE(1148), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1148), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1148), + [sym_await_expression] = STATE(1148), + [sym_ternary_expression] = STATE(1148), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1148), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1148), + [sym_key_path_expression] = STATE(1148), + [sym_key_path_string_expression] = STATE(1148), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1148), + [sym__comparison_operator] = STATE(1148), + [sym__additive_operator] = STATE(1148), + [sym__multiplicative_operator] = STATE(1148), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1148), + [sym__referenceable_operator] = STATE(1148), + [sym__eq_eq] = STATE(1148), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(3715), + [sym_real_literal] = ACTIONS(3717), + [sym_integer_literal] = ACTIONS(3715), + [sym_hex_literal] = ACTIONS(3717), + [sym_oct_literal] = ACTIONS(3717), + [sym_bin_literal] = ACTIONS(3717), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_GT] = ACTIONS(3715), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(3715), + [anon_sym_POUNDfileID] = ACTIONS(3717), + [anon_sym_POUNDfilePath] = ACTIONS(3717), + [anon_sym_POUNDline] = ACTIONS(3717), + [anon_sym_POUNDcolumn] = ACTIONS(3717), + [anon_sym_POUNDfunction] = ACTIONS(3717), + [anon_sym_POUNDdsohandle] = ACTIONS(3717), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(3715), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3715), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3715), + [anon_sym_LT_EQ] = ACTIONS(3715), + [anon_sym_GT_EQ] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(3715), + [anon_sym_SLASH] = ACTIONS(3715), + [anon_sym_PERCENT] = ACTIONS(3715), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(3717), + [sym__plus_then_ws] = ACTIONS(3717), + [sym__minus_then_ws] = ACTIONS(3717), + [sym_bang] = ACTIONS(481), + }, + [898] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1676), + [sym_boolean_literal] = STATE(1676), + [sym__string_literal] = STATE(1676), + [sym_line_string_literal] = STATE(1676), + [sym_multi_line_string_literal] = STATE(1676), + [sym_raw_string_literal] = STATE(1676), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1676), + [sym__unary_expression] = STATE(1676), + [sym_postfix_expression] = STATE(1676), + [sym_constructor_expression] = STATE(1676), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1676), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1676), + [sym_prefix_expression] = STATE(1676), + [sym_as_expression] = STATE(1676), + [sym_selector_expression] = STATE(1676), + [sym__binary_expression] = STATE(1676), + [sym_multiplicative_expression] = STATE(1676), + [sym_additive_expression] = STATE(1676), + [sym_range_expression] = STATE(1676), + [sym_infix_expression] = STATE(1676), + [sym_nil_coalescing_expression] = STATE(1676), + [sym_check_expression] = STATE(1676), + [sym_comparison_expression] = STATE(1676), + [sym_equality_expression] = STATE(1676), + [sym_conjunction_expression] = STATE(1676), + [sym_disjunction_expression] = STATE(1676), + [sym_bitwise_operation] = STATE(1676), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1676), + [sym_await_expression] = STATE(1676), + [sym_ternary_expression] = STATE(1676), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1676), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1676), + [sym_dictionary_literal] = STATE(1676), + [sym__special_literal] = STATE(1676), + [sym__playground_literal] = STATE(1676), + [sym_lambda_literal] = STATE(1676), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1676), + [sym_key_path_expression] = STATE(1676), + [sym_key_path_string_expression] = STATE(1676), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1676), + [sym__comparison_operator] = STATE(1676), + [sym__additive_operator] = STATE(1676), + [sym__multiplicative_operator] = STATE(1676), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1676), + [sym__referenceable_operator] = STATE(1676), + [sym__eq_eq] = STATE(1676), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3719), + [sym_real_literal] = ACTIONS(3721), + [sym_integer_literal] = ACTIONS(3719), + [sym_hex_literal] = ACTIONS(3721), + [sym_oct_literal] = ACTIONS(3721), + [sym_bin_literal] = ACTIONS(3721), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3719), + [anon_sym_GT] = ACTIONS(3719), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3719), + [anon_sym_POUNDfileID] = ACTIONS(3721), + [anon_sym_POUNDfilePath] = ACTIONS(3721), + [anon_sym_POUNDline] = ACTIONS(3721), + [anon_sym_POUNDcolumn] = ACTIONS(3721), + [anon_sym_POUNDfunction] = ACTIONS(3721), + [anon_sym_POUNDdsohandle] = ACTIONS(3721), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3719), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3719), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3719), + [anon_sym_LT_EQ] = ACTIONS(3719), + [anon_sym_GT_EQ] = ACTIONS(3719), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3719), + [anon_sym_SLASH] = ACTIONS(3719), + [anon_sym_PERCENT] = ACTIONS(3719), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3721), + [sym__plus_then_ws] = ACTIONS(3721), + [sym__minus_then_ws] = ACTIONS(3721), + [sym_bang] = ACTIONS(1069), + }, + [899] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1151), + [sym__unary_expression] = STATE(1151), + [sym_postfix_expression] = STATE(1151), + [sym_constructor_expression] = STATE(1151), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1151), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1151), + [sym_await_expression] = STATE(1151), + [sym_ternary_expression] = STATE(1151), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1151), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1151), + [sym_key_path_expression] = STATE(1151), + [sym_key_path_string_expression] = STATE(1151), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1151), + [sym__comparison_operator] = STATE(1151), + [sym__additive_operator] = STATE(1151), + [sym__multiplicative_operator] = STATE(1151), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1151), + [sym__referenceable_operator] = STATE(1151), + [sym__eq_eq] = STATE(1151), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(3723), + [sym_real_literal] = ACTIONS(3725), + [sym_integer_literal] = ACTIONS(3723), + [sym_hex_literal] = ACTIONS(3725), + [sym_oct_literal] = ACTIONS(3725), + [sym_bin_literal] = ACTIONS(3725), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(3723), + [anon_sym_GT] = ACTIONS(3723), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(3723), + [anon_sym_POUNDfileID] = ACTIONS(3725), + [anon_sym_POUNDfilePath] = ACTIONS(3725), + [anon_sym_POUNDline] = ACTIONS(3725), + [anon_sym_POUNDcolumn] = ACTIONS(3725), + [anon_sym_POUNDfunction] = ACTIONS(3725), + [anon_sym_POUNDdsohandle] = ACTIONS(3725), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(3723), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3723), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3723), + [anon_sym_LT_EQ] = ACTIONS(3723), + [anon_sym_GT_EQ] = ACTIONS(3723), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(3723), + [anon_sym_SLASH] = ACTIONS(3723), + [anon_sym_PERCENT] = ACTIONS(3723), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(3725), + [sym__plus_then_ws] = ACTIONS(3725), + [sym__minus_then_ws] = ACTIONS(3725), + [sym_bang] = ACTIONS(481), + }, + [900] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2159), + [sym_boolean_literal] = STATE(2159), + [sym__string_literal] = STATE(2159), + [sym_line_string_literal] = STATE(2159), + [sym_multi_line_string_literal] = STATE(2159), + [sym_raw_string_literal] = STATE(2159), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2159), + [sym__unary_expression] = STATE(2159), + [sym_postfix_expression] = STATE(2159), + [sym_constructor_expression] = STATE(2159), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2159), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2159), + [sym_prefix_expression] = STATE(2159), + [sym_as_expression] = STATE(2159), + [sym_selector_expression] = STATE(2159), + [sym__binary_expression] = STATE(2159), + [sym_multiplicative_expression] = STATE(2159), + [sym_additive_expression] = STATE(2159), + [sym_range_expression] = STATE(2159), + [sym_infix_expression] = STATE(2159), + [sym_nil_coalescing_expression] = STATE(2159), + [sym_check_expression] = STATE(2159), + [sym_comparison_expression] = STATE(2159), + [sym_equality_expression] = STATE(2159), + [sym_conjunction_expression] = STATE(2159), + [sym_disjunction_expression] = STATE(2159), + [sym_bitwise_operation] = STATE(2159), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2159), + [sym_await_expression] = STATE(2159), + [sym_ternary_expression] = STATE(2159), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2159), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2159), + [sym_dictionary_literal] = STATE(2159), + [sym__special_literal] = STATE(2159), + [sym__playground_literal] = STATE(2159), + [sym_lambda_literal] = STATE(2159), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2159), + [sym_key_path_expression] = STATE(2159), + [sym_key_path_string_expression] = STATE(2159), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2159), + [sym__comparison_operator] = STATE(2159), + [sym__additive_operator] = STATE(2159), + [sym__multiplicative_operator] = STATE(2159), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2159), + [sym__referenceable_operator] = STATE(2159), + [sym__eq_eq] = STATE(2159), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3727), + [sym_real_literal] = ACTIONS(3729), + [sym_integer_literal] = ACTIONS(3727), + [sym_hex_literal] = ACTIONS(3729), + [sym_oct_literal] = ACTIONS(3729), + [sym_bin_literal] = ACTIONS(3729), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_GT] = ACTIONS(3727), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3727), + [anon_sym_POUNDfileID] = ACTIONS(3729), + [anon_sym_POUNDfilePath] = ACTIONS(3729), + [anon_sym_POUNDline] = ACTIONS(3729), + [anon_sym_POUNDcolumn] = ACTIONS(3729), + [anon_sym_POUNDfunction] = ACTIONS(3729), + [anon_sym_POUNDdsohandle] = ACTIONS(3729), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3727), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3727), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3727), + [anon_sym_LT_EQ] = ACTIONS(3727), + [anon_sym_GT_EQ] = ACTIONS(3727), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3727), + [anon_sym_SLASH] = ACTIONS(3727), + [anon_sym_PERCENT] = ACTIONS(3727), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3729), + [sym__plus_then_ws] = ACTIONS(3729), + [sym__minus_then_ws] = ACTIONS(3729), + [sym_bang] = ACTIONS(1069), + }, + [901] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1535), + [sym_boolean_literal] = STATE(1535), + [sym__string_literal] = STATE(1535), + [sym_line_string_literal] = STATE(1535), + [sym_multi_line_string_literal] = STATE(1535), + [sym_raw_string_literal] = STATE(1535), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1535), + [sym__unary_expression] = STATE(1535), + [sym_postfix_expression] = STATE(1535), + [sym_constructor_expression] = STATE(1535), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1535), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1535), + [sym_prefix_expression] = STATE(1535), + [sym_as_expression] = STATE(1535), + [sym_selector_expression] = STATE(1535), + [sym__binary_expression] = STATE(1535), + [sym_multiplicative_expression] = STATE(1535), + [sym_additive_expression] = STATE(1535), + [sym_range_expression] = STATE(1535), + [sym_infix_expression] = STATE(1535), + [sym_nil_coalescing_expression] = STATE(1535), + [sym_check_expression] = STATE(1535), + [sym_comparison_expression] = STATE(1535), + [sym_equality_expression] = STATE(1535), + [sym_conjunction_expression] = STATE(1535), + [sym_disjunction_expression] = STATE(1535), + [sym_bitwise_operation] = STATE(1535), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1535), + [sym_await_expression] = STATE(1535), + [sym_ternary_expression] = STATE(1535), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1535), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1535), + [sym_dictionary_literal] = STATE(1535), + [sym__special_literal] = STATE(1535), + [sym__playground_literal] = STATE(1535), + [sym_lambda_literal] = STATE(1535), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1535), + [sym_key_path_expression] = STATE(1535), + [sym_key_path_string_expression] = STATE(1535), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1535), + [sym__comparison_operator] = STATE(1535), + [sym__additive_operator] = STATE(1535), + [sym__multiplicative_operator] = STATE(1535), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1535), + [sym__referenceable_operator] = STATE(1535), + [sym__eq_eq] = STATE(1535), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3731), + [sym_real_literal] = ACTIONS(3733), + [sym_integer_literal] = ACTIONS(3731), + [sym_hex_literal] = ACTIONS(3733), + [sym_oct_literal] = ACTIONS(3733), + [sym_bin_literal] = ACTIONS(3733), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3731), + [anon_sym_GT] = ACTIONS(3731), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3731), + [anon_sym_POUNDfileID] = ACTIONS(3733), + [anon_sym_POUNDfilePath] = ACTIONS(3733), + [anon_sym_POUNDline] = ACTIONS(3733), + [anon_sym_POUNDcolumn] = ACTIONS(3733), + [anon_sym_POUNDfunction] = ACTIONS(3733), + [anon_sym_POUNDdsohandle] = ACTIONS(3733), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3731), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3731), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3731), + [anon_sym_LT_EQ] = ACTIONS(3731), + [anon_sym_GT_EQ] = ACTIONS(3731), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3731), + [anon_sym_SLASH] = ACTIONS(3731), + [anon_sym_PERCENT] = ACTIONS(3731), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3733), + [sym__plus_then_ws] = ACTIONS(3733), + [sym__minus_then_ws] = ACTIONS(3733), + [sym_bang] = ACTIONS(1069), + }, + [902] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym__string_literal] = STATE(1647), + [sym_line_string_literal] = STATE(1647), + [sym_multi_line_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1647), + [sym__unary_expression] = STATE(1647), + [sym_postfix_expression] = STATE(1647), + [sym_constructor_expression] = STATE(1647), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1647), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1647), + [sym_prefix_expression] = STATE(1647), + [sym_as_expression] = STATE(1647), + [sym_selector_expression] = STATE(1647), + [sym__binary_expression] = STATE(1647), + [sym_multiplicative_expression] = STATE(1647), + [sym_additive_expression] = STATE(1647), + [sym_range_expression] = STATE(1647), + [sym_infix_expression] = STATE(1647), + [sym_nil_coalescing_expression] = STATE(1647), + [sym_check_expression] = STATE(1647), + [sym_comparison_expression] = STATE(1647), + [sym_equality_expression] = STATE(1647), + [sym_conjunction_expression] = STATE(1647), + [sym_disjunction_expression] = STATE(1647), + [sym_bitwise_operation] = STATE(1647), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1647), + [sym_await_expression] = STATE(1647), + [sym_ternary_expression] = STATE(1647), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1647), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1647), + [sym_dictionary_literal] = STATE(1647), + [sym__special_literal] = STATE(1647), + [sym__playground_literal] = STATE(1647), + [sym_lambda_literal] = STATE(1647), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1647), + [sym_key_path_expression] = STATE(1647), + [sym_key_path_string_expression] = STATE(1647), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1647), + [sym__comparison_operator] = STATE(1647), + [sym__additive_operator] = STATE(1647), + [sym__multiplicative_operator] = STATE(1647), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1647), + [sym__referenceable_operator] = STATE(1647), + [sym__eq_eq] = STATE(1647), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3735), + [sym_real_literal] = ACTIONS(3737), + [sym_integer_literal] = ACTIONS(3735), + [sym_hex_literal] = ACTIONS(3737), + [sym_oct_literal] = ACTIONS(3737), + [sym_bin_literal] = ACTIONS(3737), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3735), + [anon_sym_GT] = ACTIONS(3735), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3735), + [anon_sym_POUNDfileID] = ACTIONS(3737), + [anon_sym_POUNDfilePath] = ACTIONS(3737), + [anon_sym_POUNDline] = ACTIONS(3737), + [anon_sym_POUNDcolumn] = ACTIONS(3737), + [anon_sym_POUNDfunction] = ACTIONS(3737), + [anon_sym_POUNDdsohandle] = ACTIONS(3737), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3735), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3735), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3735), + [anon_sym_LT_EQ] = ACTIONS(3735), + [anon_sym_GT_EQ] = ACTIONS(3735), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3735), + [anon_sym_SLASH] = ACTIONS(3735), + [anon_sym_PERCENT] = ACTIONS(3735), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3737), + [sym__plus_then_ws] = ACTIONS(3737), + [sym__minus_then_ws] = ACTIONS(3737), + [sym_bang] = ACTIONS(1467), + }, + [903] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2053), + [sym_boolean_literal] = STATE(2053), + [sym__string_literal] = STATE(2053), + [sym_line_string_literal] = STATE(2053), + [sym_multi_line_string_literal] = STATE(2053), + [sym_raw_string_literal] = STATE(2053), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2053), + [sym__unary_expression] = STATE(2053), + [sym_postfix_expression] = STATE(2053), + [sym_constructor_expression] = STATE(2053), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2053), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2053), + [sym_prefix_expression] = STATE(2053), + [sym_as_expression] = STATE(2053), + [sym_selector_expression] = STATE(2053), + [sym__binary_expression] = STATE(2053), + [sym_multiplicative_expression] = STATE(2053), + [sym_additive_expression] = STATE(2053), + [sym_range_expression] = STATE(2053), + [sym_infix_expression] = STATE(2053), + [sym_nil_coalescing_expression] = STATE(2053), + [sym_check_expression] = STATE(2053), + [sym_comparison_expression] = STATE(2053), + [sym_equality_expression] = STATE(2053), + [sym_conjunction_expression] = STATE(2053), + [sym_disjunction_expression] = STATE(2053), + [sym_bitwise_operation] = STATE(2053), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2053), + [sym_await_expression] = STATE(2053), + [sym_ternary_expression] = STATE(2053), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2053), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2053), + [sym_dictionary_literal] = STATE(2053), + [sym__special_literal] = STATE(2053), + [sym__playground_literal] = STATE(2053), + [sym_lambda_literal] = STATE(2053), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2053), + [sym_key_path_expression] = STATE(2053), + [sym_key_path_string_expression] = STATE(2053), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2053), + [sym__comparison_operator] = STATE(2053), + [sym__additive_operator] = STATE(2053), + [sym__multiplicative_operator] = STATE(2053), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2053), + [sym__referenceable_operator] = STATE(2053), + [sym__eq_eq] = STATE(2053), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3739), + [sym_real_literal] = ACTIONS(3741), + [sym_integer_literal] = ACTIONS(3739), + [sym_hex_literal] = ACTIONS(3741), + [sym_oct_literal] = ACTIONS(3741), + [sym_bin_literal] = ACTIONS(3741), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3739), + [anon_sym_GT] = ACTIONS(3739), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3739), + [anon_sym_POUNDfileID] = ACTIONS(3741), + [anon_sym_POUNDfilePath] = ACTIONS(3741), + [anon_sym_POUNDline] = ACTIONS(3741), + [anon_sym_POUNDcolumn] = ACTIONS(3741), + [anon_sym_POUNDfunction] = ACTIONS(3741), + [anon_sym_POUNDdsohandle] = ACTIONS(3741), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3739), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3739), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3739), + [anon_sym_LT_EQ] = ACTIONS(3739), + [anon_sym_GT_EQ] = ACTIONS(3739), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3739), + [anon_sym_SLASH] = ACTIONS(3739), + [anon_sym_PERCENT] = ACTIONS(3739), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3741), + [sym__plus_then_ws] = ACTIONS(3741), + [sym__minus_then_ws] = ACTIONS(3741), + [sym_bang] = ACTIONS(1069), + }, + [904] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1488), + [sym_boolean_literal] = STATE(1488), + [sym__string_literal] = STATE(1488), + [sym_line_string_literal] = STATE(1488), + [sym_multi_line_string_literal] = STATE(1488), + [sym_raw_string_literal] = STATE(1488), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1488), + [sym__unary_expression] = STATE(1488), + [sym_postfix_expression] = STATE(1488), + [sym_constructor_expression] = STATE(1488), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1488), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1488), + [sym_prefix_expression] = STATE(1488), + [sym_as_expression] = STATE(1488), + [sym_selector_expression] = STATE(1488), + [sym__binary_expression] = STATE(1488), + [sym_multiplicative_expression] = STATE(1488), + [sym_additive_expression] = STATE(1488), + [sym_range_expression] = STATE(1488), + [sym_infix_expression] = STATE(1488), + [sym_nil_coalescing_expression] = STATE(1488), + [sym_check_expression] = STATE(1488), + [sym_comparison_expression] = STATE(1488), + [sym_equality_expression] = STATE(1488), + [sym_conjunction_expression] = STATE(1488), + [sym_disjunction_expression] = STATE(1488), + [sym_bitwise_operation] = STATE(1488), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1488), + [sym_await_expression] = STATE(1488), + [sym_ternary_expression] = STATE(1488), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1488), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1488), + [sym_dictionary_literal] = STATE(1488), + [sym__special_literal] = STATE(1488), + [sym__playground_literal] = STATE(1488), + [sym_lambda_literal] = STATE(1488), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1488), + [sym_key_path_expression] = STATE(1488), + [sym_key_path_string_expression] = STATE(1488), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1488), + [sym__comparison_operator] = STATE(1488), + [sym__additive_operator] = STATE(1488), + [sym__multiplicative_operator] = STATE(1488), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1488), + [sym__referenceable_operator] = STATE(1488), + [sym__eq_eq] = STATE(1488), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3743), + [sym_real_literal] = ACTIONS(3745), + [sym_integer_literal] = ACTIONS(3743), + [sym_hex_literal] = ACTIONS(3745), + [sym_oct_literal] = ACTIONS(3745), + [sym_bin_literal] = ACTIONS(3745), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3743), + [anon_sym_GT] = ACTIONS(3743), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3743), + [anon_sym_POUNDfileID] = ACTIONS(3745), + [anon_sym_POUNDfilePath] = ACTIONS(3745), + [anon_sym_POUNDline] = ACTIONS(3745), + [anon_sym_POUNDcolumn] = ACTIONS(3745), + [anon_sym_POUNDfunction] = ACTIONS(3745), + [anon_sym_POUNDdsohandle] = ACTIONS(3745), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3743), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3743), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3743), + [anon_sym_LT_EQ] = ACTIONS(3743), + [anon_sym_GT_EQ] = ACTIONS(3743), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_SLASH] = ACTIONS(3743), + [anon_sym_PERCENT] = ACTIONS(3743), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3745), + [sym__plus_then_ws] = ACTIONS(3745), + [sym__minus_then_ws] = ACTIONS(3745), + [sym_bang] = ACTIONS(1467), + }, + [905] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2052), + [sym_boolean_literal] = STATE(2052), + [sym__string_literal] = STATE(2052), + [sym_line_string_literal] = STATE(2052), + [sym_multi_line_string_literal] = STATE(2052), + [sym_raw_string_literal] = STATE(2052), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2052), + [sym__unary_expression] = STATE(2052), + [sym_postfix_expression] = STATE(2052), + [sym_constructor_expression] = STATE(2052), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2052), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2052), + [sym_prefix_expression] = STATE(2052), + [sym_as_expression] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym__binary_expression] = STATE(2052), + [sym_multiplicative_expression] = STATE(2052), + [sym_additive_expression] = STATE(2052), + [sym_range_expression] = STATE(2052), + [sym_infix_expression] = STATE(2052), + [sym_nil_coalescing_expression] = STATE(2052), + [sym_check_expression] = STATE(2052), + [sym_comparison_expression] = STATE(2052), + [sym_equality_expression] = STATE(2052), + [sym_conjunction_expression] = STATE(2052), + [sym_disjunction_expression] = STATE(2052), + [sym_bitwise_operation] = STATE(2052), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2052), + [sym_await_expression] = STATE(2052), + [sym_ternary_expression] = STATE(2052), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2052), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2052), + [sym_dictionary_literal] = STATE(2052), + [sym__special_literal] = STATE(2052), + [sym__playground_literal] = STATE(2052), + [sym_lambda_literal] = STATE(2052), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2052), + [sym_key_path_expression] = STATE(2052), + [sym_key_path_string_expression] = STATE(2052), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2052), + [sym__comparison_operator] = STATE(2052), + [sym__additive_operator] = STATE(2052), + [sym__multiplicative_operator] = STATE(2052), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2052), + [sym__referenceable_operator] = STATE(2052), + [sym__eq_eq] = STATE(2052), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3747), + [sym_real_literal] = ACTIONS(3749), + [sym_integer_literal] = ACTIONS(3747), + [sym_hex_literal] = ACTIONS(3749), + [sym_oct_literal] = ACTIONS(3749), + [sym_bin_literal] = ACTIONS(3749), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3747), + [anon_sym_GT] = ACTIONS(3747), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3747), + [anon_sym_POUNDfileID] = ACTIONS(3749), + [anon_sym_POUNDfilePath] = ACTIONS(3749), + [anon_sym_POUNDline] = ACTIONS(3749), + [anon_sym_POUNDcolumn] = ACTIONS(3749), + [anon_sym_POUNDfunction] = ACTIONS(3749), + [anon_sym_POUNDdsohandle] = ACTIONS(3749), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3747), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3747), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3747), + [anon_sym_LT_EQ] = ACTIONS(3747), + [anon_sym_GT_EQ] = ACTIONS(3747), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3747), + [anon_sym_SLASH] = ACTIONS(3747), + [anon_sym_PERCENT] = ACTIONS(3747), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3749), + [sym__plus_then_ws] = ACTIONS(3749), + [sym__minus_then_ws] = ACTIONS(3749), + [sym_bang] = ACTIONS(1069), + }, + [906] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1877), + [sym_boolean_literal] = STATE(1877), + [sym__string_literal] = STATE(1877), + [sym_line_string_literal] = STATE(1877), + [sym_multi_line_string_literal] = STATE(1877), + [sym_raw_string_literal] = STATE(1877), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1877), + [sym__unary_expression] = STATE(1877), + [sym_postfix_expression] = STATE(1877), + [sym_constructor_expression] = STATE(1877), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1877), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1877), + [sym_prefix_expression] = STATE(1877), + [sym_as_expression] = STATE(1877), + [sym_selector_expression] = STATE(1877), + [sym__binary_expression] = STATE(1877), + [sym_multiplicative_expression] = STATE(1877), + [sym_additive_expression] = STATE(1877), + [sym_range_expression] = STATE(1877), + [sym_infix_expression] = STATE(1877), + [sym_nil_coalescing_expression] = STATE(1877), + [sym_check_expression] = STATE(1877), + [sym_comparison_expression] = STATE(1877), + [sym_equality_expression] = STATE(1877), + [sym_conjunction_expression] = STATE(1877), + [sym_disjunction_expression] = STATE(1877), + [sym_bitwise_operation] = STATE(1877), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1877), + [sym_await_expression] = STATE(1877), + [sym_ternary_expression] = STATE(1877), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1877), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1877), + [sym_dictionary_literal] = STATE(1877), + [sym__special_literal] = STATE(1877), + [sym__playground_literal] = STATE(1877), + [sym_lambda_literal] = STATE(1877), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1877), + [sym_key_path_expression] = STATE(1877), + [sym_key_path_string_expression] = STATE(1877), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1877), + [sym__comparison_operator] = STATE(1877), + [sym__additive_operator] = STATE(1877), + [sym__multiplicative_operator] = STATE(1877), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1877), + [sym__referenceable_operator] = STATE(1877), + [sym__eq_eq] = STATE(1877), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3751), + [sym_real_literal] = ACTIONS(3753), + [sym_integer_literal] = ACTIONS(3751), + [sym_hex_literal] = ACTIONS(3753), + [sym_oct_literal] = ACTIONS(3753), + [sym_bin_literal] = ACTIONS(3753), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3751), + [anon_sym_GT] = ACTIONS(3751), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3751), + [anon_sym_POUNDfileID] = ACTIONS(3753), + [anon_sym_POUNDfilePath] = ACTIONS(3753), + [anon_sym_POUNDline] = ACTIONS(3753), + [anon_sym_POUNDcolumn] = ACTIONS(3753), + [anon_sym_POUNDfunction] = ACTIONS(3753), + [anon_sym_POUNDdsohandle] = ACTIONS(3753), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3751), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3751), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3751), + [anon_sym_LT_EQ] = ACTIONS(3751), + [anon_sym_GT_EQ] = ACTIONS(3751), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3751), + [anon_sym_SLASH] = ACTIONS(3751), + [anon_sym_PERCENT] = ACTIONS(3751), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3753), + [sym__plus_then_ws] = ACTIONS(3753), + [sym__minus_then_ws] = ACTIONS(3753), + [sym_bang] = ACTIONS(1069), + }, + [907] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1490), + [sym_boolean_literal] = STATE(1490), + [sym__string_literal] = STATE(1490), + [sym_line_string_literal] = STATE(1490), + [sym_multi_line_string_literal] = STATE(1490), + [sym_raw_string_literal] = STATE(1490), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1490), + [sym__unary_expression] = STATE(1490), + [sym_postfix_expression] = STATE(1490), + [sym_constructor_expression] = STATE(1490), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1490), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1490), + [sym_prefix_expression] = STATE(1490), + [sym_as_expression] = STATE(1490), + [sym_selector_expression] = STATE(1490), + [sym__binary_expression] = STATE(1490), + [sym_multiplicative_expression] = STATE(1490), + [sym_additive_expression] = STATE(1490), + [sym_range_expression] = STATE(1490), + [sym_infix_expression] = STATE(1490), + [sym_nil_coalescing_expression] = STATE(1490), + [sym_check_expression] = STATE(1490), + [sym_comparison_expression] = STATE(1490), + [sym_equality_expression] = STATE(1490), + [sym_conjunction_expression] = STATE(1490), + [sym_disjunction_expression] = STATE(1490), + [sym_bitwise_operation] = STATE(1490), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1490), + [sym_await_expression] = STATE(1490), + [sym_ternary_expression] = STATE(1490), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1490), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1490), + [sym_dictionary_literal] = STATE(1490), + [sym__special_literal] = STATE(1490), + [sym__playground_literal] = STATE(1490), + [sym_lambda_literal] = STATE(1490), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1490), + [sym_key_path_expression] = STATE(1490), + [sym_key_path_string_expression] = STATE(1490), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1490), + [sym__comparison_operator] = STATE(1490), + [sym__additive_operator] = STATE(1490), + [sym__multiplicative_operator] = STATE(1490), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1490), + [sym__referenceable_operator] = STATE(1490), + [sym__eq_eq] = STATE(1490), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3755), + [sym_real_literal] = ACTIONS(3757), + [sym_integer_literal] = ACTIONS(3755), + [sym_hex_literal] = ACTIONS(3757), + [sym_oct_literal] = ACTIONS(3757), + [sym_bin_literal] = ACTIONS(3757), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3755), + [anon_sym_GT] = ACTIONS(3755), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3755), + [anon_sym_POUNDfileID] = ACTIONS(3757), + [anon_sym_POUNDfilePath] = ACTIONS(3757), + [anon_sym_POUNDline] = ACTIONS(3757), + [anon_sym_POUNDcolumn] = ACTIONS(3757), + [anon_sym_POUNDfunction] = ACTIONS(3757), + [anon_sym_POUNDdsohandle] = ACTIONS(3757), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3755), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3755), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3755), + [anon_sym_LT_EQ] = ACTIONS(3755), + [anon_sym_GT_EQ] = ACTIONS(3755), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3755), + [anon_sym_SLASH] = ACTIONS(3755), + [anon_sym_PERCENT] = ACTIONS(3755), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3757), + [sym__plus_then_ws] = ACTIONS(3757), + [sym__minus_then_ws] = ACTIONS(3757), + [sym_bang] = ACTIONS(1467), + }, + [908] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2037), + [sym_boolean_literal] = STATE(2037), + [sym__string_literal] = STATE(2037), + [sym_line_string_literal] = STATE(2037), + [sym_multi_line_string_literal] = STATE(2037), + [sym_raw_string_literal] = STATE(2037), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2037), + [sym__unary_expression] = STATE(2037), + [sym_postfix_expression] = STATE(2037), + [sym_constructor_expression] = STATE(2037), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2037), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2037), + [sym_prefix_expression] = STATE(2037), + [sym_as_expression] = STATE(2037), + [sym_selector_expression] = STATE(2037), + [sym__binary_expression] = STATE(2037), + [sym_multiplicative_expression] = STATE(2037), + [sym_additive_expression] = STATE(2037), + [sym_range_expression] = STATE(2037), + [sym_infix_expression] = STATE(2037), + [sym_nil_coalescing_expression] = STATE(2037), + [sym_check_expression] = STATE(2037), + [sym_comparison_expression] = STATE(2037), + [sym_equality_expression] = STATE(2037), + [sym_conjunction_expression] = STATE(2037), + [sym_disjunction_expression] = STATE(2037), + [sym_bitwise_operation] = STATE(2037), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2037), + [sym_await_expression] = STATE(2037), + [sym_ternary_expression] = STATE(2037), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2037), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2037), + [sym_dictionary_literal] = STATE(2037), + [sym__special_literal] = STATE(2037), + [sym__playground_literal] = STATE(2037), + [sym_lambda_literal] = STATE(2037), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2037), + [sym_key_path_expression] = STATE(2037), + [sym_key_path_string_expression] = STATE(2037), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2037), + [sym__additive_operator] = STATE(2037), + [sym__multiplicative_operator] = STATE(2037), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(2037), + [sym__referenceable_operator] = STATE(2037), + [sym__eq_eq] = STATE(2037), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(3759), + [sym_real_literal] = ACTIONS(3761), + [sym_integer_literal] = ACTIONS(3759), + [sym_hex_literal] = ACTIONS(3761), + [sym_oct_literal] = ACTIONS(3761), + [sym_bin_literal] = ACTIONS(3761), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(3759), + [anon_sym_GT] = ACTIONS(3759), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(3759), + [anon_sym_POUNDfileID] = ACTIONS(3761), + [anon_sym_POUNDfilePath] = ACTIONS(3761), + [anon_sym_POUNDline] = ACTIONS(3761), + [anon_sym_POUNDcolumn] = ACTIONS(3761), + [anon_sym_POUNDfunction] = ACTIONS(3761), + [anon_sym_POUNDdsohandle] = ACTIONS(3761), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(3759), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3759), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3759), + [anon_sym_LT_EQ] = ACTIONS(3759), + [anon_sym_GT_EQ] = ACTIONS(3759), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(3759), + [anon_sym_SLASH] = ACTIONS(3759), + [anon_sym_PERCENT] = ACTIONS(3759), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(3761), + [sym__plus_then_ws] = ACTIONS(3761), + [sym__minus_then_ws] = ACTIONS(3761), + [sym_bang] = ACTIONS(137), + }, + [909] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1973), + [sym_boolean_literal] = STATE(1973), + [sym__string_literal] = STATE(1973), + [sym_line_string_literal] = STATE(1973), + [sym_multi_line_string_literal] = STATE(1973), + [sym_raw_string_literal] = STATE(1973), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1973), + [sym__unary_expression] = STATE(1973), + [sym_postfix_expression] = STATE(1973), + [sym_constructor_expression] = STATE(1973), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1973), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1973), + [sym_prefix_expression] = STATE(1973), + [sym_as_expression] = STATE(1973), + [sym_selector_expression] = STATE(1973), + [sym__binary_expression] = STATE(1973), + [sym_multiplicative_expression] = STATE(1973), + [sym_additive_expression] = STATE(1973), + [sym_range_expression] = STATE(1973), + [sym_infix_expression] = STATE(1973), + [sym_nil_coalescing_expression] = STATE(1973), + [sym_check_expression] = STATE(1973), + [sym_comparison_expression] = STATE(1973), + [sym_equality_expression] = STATE(1973), + [sym_conjunction_expression] = STATE(1973), + [sym_disjunction_expression] = STATE(1973), + [sym_bitwise_operation] = STATE(1973), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1973), + [sym_await_expression] = STATE(1973), + [sym_ternary_expression] = STATE(1973), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1973), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1973), + [sym_dictionary_literal] = STATE(1973), + [sym__special_literal] = STATE(1973), + [sym__playground_literal] = STATE(1973), + [sym_lambda_literal] = STATE(1973), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1973), + [sym_key_path_expression] = STATE(1973), + [sym_key_path_string_expression] = STATE(1973), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1973), + [sym__comparison_operator] = STATE(1973), + [sym__additive_operator] = STATE(1973), + [sym__multiplicative_operator] = STATE(1973), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1973), + [sym__referenceable_operator] = STATE(1973), + [sym__eq_eq] = STATE(1973), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3763), + [sym_real_literal] = ACTIONS(3765), + [sym_integer_literal] = ACTIONS(3763), + [sym_hex_literal] = ACTIONS(3765), + [sym_oct_literal] = ACTIONS(3765), + [sym_bin_literal] = ACTIONS(3765), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3763), + [anon_sym_GT] = ACTIONS(3763), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3763), + [anon_sym_POUNDfileID] = ACTIONS(3765), + [anon_sym_POUNDfilePath] = ACTIONS(3765), + [anon_sym_POUNDline] = ACTIONS(3765), + [anon_sym_POUNDcolumn] = ACTIONS(3765), + [anon_sym_POUNDfunction] = ACTIONS(3765), + [anon_sym_POUNDdsohandle] = ACTIONS(3765), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3763), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3763), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3763), + [anon_sym_LT_EQ] = ACTIONS(3763), + [anon_sym_GT_EQ] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3763), + [anon_sym_SLASH] = ACTIONS(3763), + [anon_sym_PERCENT] = ACTIONS(3763), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3765), + [sym__plus_then_ws] = ACTIONS(3765), + [sym__minus_then_ws] = ACTIONS(3765), + [sym_bang] = ACTIONS(1069), + }, + [910] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(2038), + [sym_boolean_literal] = STATE(2038), + [sym__string_literal] = STATE(2038), + [sym_line_string_literal] = STATE(2038), + [sym_multi_line_string_literal] = STATE(2038), + [sym_raw_string_literal] = STATE(2038), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(2038), + [sym__unary_expression] = STATE(2038), + [sym_postfix_expression] = STATE(2038), + [sym_constructor_expression] = STATE(2038), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(2038), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(2038), + [sym_prefix_expression] = STATE(2038), + [sym_as_expression] = STATE(2038), + [sym_selector_expression] = STATE(2038), + [sym__binary_expression] = STATE(2038), + [sym_multiplicative_expression] = STATE(2038), + [sym_additive_expression] = STATE(2038), + [sym_range_expression] = STATE(2038), + [sym_infix_expression] = STATE(2038), + [sym_nil_coalescing_expression] = STATE(2038), + [sym_check_expression] = STATE(2038), + [sym_comparison_expression] = STATE(2038), + [sym_equality_expression] = STATE(2038), + [sym_conjunction_expression] = STATE(2038), + [sym_disjunction_expression] = STATE(2038), + [sym_bitwise_operation] = STATE(2038), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(2038), + [sym_await_expression] = STATE(2038), + [sym_ternary_expression] = STATE(2038), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(2038), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(2038), + [sym_dictionary_literal] = STATE(2038), + [sym__special_literal] = STATE(2038), + [sym__playground_literal] = STATE(2038), + [sym_lambda_literal] = STATE(2038), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(2038), + [sym_key_path_expression] = STATE(2038), + [sym_key_path_string_expression] = STATE(2038), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(2038), + [sym__comparison_operator] = STATE(2038), + [sym__additive_operator] = STATE(2038), + [sym__multiplicative_operator] = STATE(2038), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(2038), + [sym__referenceable_operator] = STATE(2038), + [sym__eq_eq] = STATE(2038), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(3767), + [sym_real_literal] = ACTIONS(3769), + [sym_integer_literal] = ACTIONS(3767), + [sym_hex_literal] = ACTIONS(3769), + [sym_oct_literal] = ACTIONS(3769), + [sym_bin_literal] = ACTIONS(3769), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(3767), + [anon_sym_GT] = ACTIONS(3767), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(3767), + [anon_sym_POUNDfileID] = ACTIONS(3769), + [anon_sym_POUNDfilePath] = ACTIONS(3769), + [anon_sym_POUNDline] = ACTIONS(3769), + [anon_sym_POUNDcolumn] = ACTIONS(3769), + [anon_sym_POUNDfunction] = ACTIONS(3769), + [anon_sym_POUNDdsohandle] = ACTIONS(3769), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(3767), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3767), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3767), + [anon_sym_LT_EQ] = ACTIONS(3767), + [anon_sym_GT_EQ] = ACTIONS(3767), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(3767), + [anon_sym_SLASH] = ACTIONS(3767), + [anon_sym_PERCENT] = ACTIONS(3767), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(3769), + [sym__plus_then_ws] = ACTIONS(3769), + [sym__minus_then_ws] = ACTIONS(3769), + [sym_bang] = ACTIONS(137), + }, + [911] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2181), + [sym_boolean_literal] = STATE(2181), + [sym__string_literal] = STATE(2181), + [sym_line_string_literal] = STATE(2181), + [sym_multi_line_string_literal] = STATE(2181), + [sym_raw_string_literal] = STATE(2181), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2181), + [sym__unary_expression] = STATE(2181), + [sym_postfix_expression] = STATE(2181), + [sym_constructor_expression] = STATE(2181), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2181), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2181), + [sym_prefix_expression] = STATE(2181), + [sym_as_expression] = STATE(2181), + [sym_selector_expression] = STATE(2181), + [sym__binary_expression] = STATE(2181), + [sym_multiplicative_expression] = STATE(2181), + [sym_additive_expression] = STATE(2181), + [sym_range_expression] = STATE(2181), + [sym_infix_expression] = STATE(2181), + [sym_nil_coalescing_expression] = STATE(2181), + [sym_check_expression] = STATE(2181), + [sym_comparison_expression] = STATE(2181), + [sym_equality_expression] = STATE(2181), + [sym_conjunction_expression] = STATE(2181), + [sym_disjunction_expression] = STATE(2181), + [sym_bitwise_operation] = STATE(2181), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2181), + [sym_await_expression] = STATE(2181), + [sym_ternary_expression] = STATE(2181), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2181), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2181), + [sym_dictionary_literal] = STATE(2181), + [sym__special_literal] = STATE(2181), + [sym__playground_literal] = STATE(2181), + [sym_lambda_literal] = STATE(2181), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2181), + [sym_key_path_expression] = STATE(2181), + [sym_key_path_string_expression] = STATE(2181), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2181), + [sym__comparison_operator] = STATE(2181), + [sym__additive_operator] = STATE(2181), + [sym__multiplicative_operator] = STATE(2181), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2181), + [sym__referenceable_operator] = STATE(2181), + [sym__eq_eq] = STATE(2181), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3771), + [sym_real_literal] = ACTIONS(3773), + [sym_integer_literal] = ACTIONS(3771), + [sym_hex_literal] = ACTIONS(3773), + [sym_oct_literal] = ACTIONS(3773), + [sym_bin_literal] = ACTIONS(3773), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3771), + [anon_sym_GT] = ACTIONS(3771), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3771), + [anon_sym_POUNDfileID] = ACTIONS(3773), + [anon_sym_POUNDfilePath] = ACTIONS(3773), + [anon_sym_POUNDline] = ACTIONS(3773), + [anon_sym_POUNDcolumn] = ACTIONS(3773), + [anon_sym_POUNDfunction] = ACTIONS(3773), + [anon_sym_POUNDdsohandle] = ACTIONS(3773), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3771), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3771), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3771), + [anon_sym_LT_EQ] = ACTIONS(3771), + [anon_sym_GT_EQ] = ACTIONS(3771), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3771), + [anon_sym_SLASH] = ACTIONS(3771), + [anon_sym_PERCENT] = ACTIONS(3771), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3773), + [sym__plus_then_ws] = ACTIONS(3773), + [sym__minus_then_ws] = ACTIONS(3773), + [sym_bang] = ACTIONS(833), + }, + [912] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1152), + [sym__unary_expression] = STATE(1152), + [sym_postfix_expression] = STATE(1152), + [sym_constructor_expression] = STATE(1152), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1152), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1152), + [sym_await_expression] = STATE(1152), + [sym_ternary_expression] = STATE(1152), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1152), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1152), + [sym_key_path_expression] = STATE(1152), + [sym_key_path_string_expression] = STATE(1152), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1152), + [sym__comparison_operator] = STATE(1152), + [sym__additive_operator] = STATE(1152), + [sym__multiplicative_operator] = STATE(1152), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1152), + [sym__referenceable_operator] = STATE(1152), + [sym__eq_eq] = STATE(1152), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(3775), + [sym_real_literal] = ACTIONS(3777), + [sym_integer_literal] = ACTIONS(3775), + [sym_hex_literal] = ACTIONS(3777), + [sym_oct_literal] = ACTIONS(3777), + [sym_bin_literal] = ACTIONS(3777), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(3775), + [anon_sym_GT] = ACTIONS(3775), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(3775), + [anon_sym_POUNDfileID] = ACTIONS(3777), + [anon_sym_POUNDfilePath] = ACTIONS(3777), + [anon_sym_POUNDline] = ACTIONS(3777), + [anon_sym_POUNDcolumn] = ACTIONS(3777), + [anon_sym_POUNDfunction] = ACTIONS(3777), + [anon_sym_POUNDdsohandle] = ACTIONS(3777), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(3775), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3775), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3775), + [anon_sym_LT_EQ] = ACTIONS(3775), + [anon_sym_GT_EQ] = ACTIONS(3775), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(3775), + [anon_sym_SLASH] = ACTIONS(3775), + [anon_sym_PERCENT] = ACTIONS(3775), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(3777), + [sym__plus_then_ws] = ACTIONS(3777), + [sym__minus_then_ws] = ACTIONS(3777), + [sym_bang] = ACTIONS(481), + }, + [913] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2051), + [sym_boolean_literal] = STATE(2051), + [sym__string_literal] = STATE(2051), + [sym_line_string_literal] = STATE(2051), + [sym_multi_line_string_literal] = STATE(2051), + [sym_raw_string_literal] = STATE(2051), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2051), + [sym__unary_expression] = STATE(2051), + [sym_postfix_expression] = STATE(2051), + [sym_constructor_expression] = STATE(2051), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2051), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2051), + [sym_prefix_expression] = STATE(2051), + [sym_as_expression] = STATE(2051), + [sym_selector_expression] = STATE(2051), + [sym__binary_expression] = STATE(2051), + [sym_multiplicative_expression] = STATE(2051), + [sym_additive_expression] = STATE(2051), + [sym_range_expression] = STATE(2051), + [sym_infix_expression] = STATE(2051), + [sym_nil_coalescing_expression] = STATE(2051), + [sym_check_expression] = STATE(2051), + [sym_comparison_expression] = STATE(2051), + [sym_equality_expression] = STATE(2051), + [sym_conjunction_expression] = STATE(2051), + [sym_disjunction_expression] = STATE(2051), + [sym_bitwise_operation] = STATE(2051), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2051), + [sym_await_expression] = STATE(2051), + [sym_ternary_expression] = STATE(2051), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2051), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2051), + [sym_dictionary_literal] = STATE(2051), + [sym__special_literal] = STATE(2051), + [sym__playground_literal] = STATE(2051), + [sym_lambda_literal] = STATE(2051), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2051), + [sym_key_path_expression] = STATE(2051), + [sym_key_path_string_expression] = STATE(2051), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2051), + [sym__comparison_operator] = STATE(2051), + [sym__additive_operator] = STATE(2051), + [sym__multiplicative_operator] = STATE(2051), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2051), + [sym__referenceable_operator] = STATE(2051), + [sym__eq_eq] = STATE(2051), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3779), + [sym_real_literal] = ACTIONS(3781), + [sym_integer_literal] = ACTIONS(3779), + [sym_hex_literal] = ACTIONS(3781), + [sym_oct_literal] = ACTIONS(3781), + [sym_bin_literal] = ACTIONS(3781), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3779), + [anon_sym_GT] = ACTIONS(3779), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3779), + [anon_sym_POUNDfileID] = ACTIONS(3781), + [anon_sym_POUNDfilePath] = ACTIONS(3781), + [anon_sym_POUNDline] = ACTIONS(3781), + [anon_sym_POUNDcolumn] = ACTIONS(3781), + [anon_sym_POUNDfunction] = ACTIONS(3781), + [anon_sym_POUNDdsohandle] = ACTIONS(3781), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3779), + [anon_sym_LT_EQ] = ACTIONS(3779), + [anon_sym_GT_EQ] = ACTIONS(3779), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3779), + [anon_sym_SLASH] = ACTIONS(3779), + [anon_sym_PERCENT] = ACTIONS(3779), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3781), + [sym__plus_then_ws] = ACTIONS(3781), + [sym__minus_then_ws] = ACTIONS(3781), + [sym_bang] = ACTIONS(1069), + }, + [914] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2048), + [sym_boolean_literal] = STATE(2048), + [sym__string_literal] = STATE(2048), + [sym_line_string_literal] = STATE(2048), + [sym_multi_line_string_literal] = STATE(2048), + [sym_raw_string_literal] = STATE(2048), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2048), + [sym__unary_expression] = STATE(2048), + [sym_postfix_expression] = STATE(2048), + [sym_constructor_expression] = STATE(2048), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2048), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2048), + [sym_prefix_expression] = STATE(2048), + [sym_as_expression] = STATE(2048), + [sym_selector_expression] = STATE(2048), + [sym__binary_expression] = STATE(2048), + [sym_multiplicative_expression] = STATE(2048), + [sym_additive_expression] = STATE(2048), + [sym_range_expression] = STATE(2048), + [sym_infix_expression] = STATE(2048), + [sym_nil_coalescing_expression] = STATE(2048), + [sym_check_expression] = STATE(2048), + [sym_comparison_expression] = STATE(2048), + [sym_equality_expression] = STATE(2048), + [sym_conjunction_expression] = STATE(2048), + [sym_disjunction_expression] = STATE(2048), + [sym_bitwise_operation] = STATE(2048), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2048), + [sym_await_expression] = STATE(2048), + [sym_ternary_expression] = STATE(2048), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2048), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2048), + [sym_dictionary_literal] = STATE(2048), + [sym__special_literal] = STATE(2048), + [sym__playground_literal] = STATE(2048), + [sym_lambda_literal] = STATE(2048), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2048), + [sym_key_path_expression] = STATE(2048), + [sym_key_path_string_expression] = STATE(2048), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2048), + [sym__comparison_operator] = STATE(2048), + [sym__additive_operator] = STATE(2048), + [sym__multiplicative_operator] = STATE(2048), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2048), + [sym__referenceable_operator] = STATE(2048), + [sym__eq_eq] = STATE(2048), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3783), + [sym_real_literal] = ACTIONS(3785), + [sym_integer_literal] = ACTIONS(3783), + [sym_hex_literal] = ACTIONS(3785), + [sym_oct_literal] = ACTIONS(3785), + [sym_bin_literal] = ACTIONS(3785), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3783), + [anon_sym_GT] = ACTIONS(3783), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3783), + [anon_sym_POUNDfileID] = ACTIONS(3785), + [anon_sym_POUNDfilePath] = ACTIONS(3785), + [anon_sym_POUNDline] = ACTIONS(3785), + [anon_sym_POUNDcolumn] = ACTIONS(3785), + [anon_sym_POUNDfunction] = ACTIONS(3785), + [anon_sym_POUNDdsohandle] = ACTIONS(3785), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3783), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3783), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3783), + [anon_sym_LT_EQ] = ACTIONS(3783), + [anon_sym_GT_EQ] = ACTIONS(3783), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3783), + [anon_sym_SLASH] = ACTIONS(3783), + [anon_sym_PERCENT] = ACTIONS(3783), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3785), + [sym__plus_then_ws] = ACTIONS(3785), + [sym__minus_then_ws] = ACTIONS(3785), + [sym_bang] = ACTIONS(1069), + }, + [915] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1527), + [sym_boolean_literal] = STATE(1527), + [sym__string_literal] = STATE(1527), + [sym_line_string_literal] = STATE(1527), + [sym_multi_line_string_literal] = STATE(1527), + [sym_raw_string_literal] = STATE(1527), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1527), + [sym__unary_expression] = STATE(1527), + [sym_postfix_expression] = STATE(1527), + [sym_constructor_expression] = STATE(1527), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1527), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1527), + [sym_prefix_expression] = STATE(1527), + [sym_as_expression] = STATE(1527), + [sym_selector_expression] = STATE(1527), + [sym__binary_expression] = STATE(1527), + [sym_multiplicative_expression] = STATE(1527), + [sym_additive_expression] = STATE(1527), + [sym_range_expression] = STATE(1527), + [sym_infix_expression] = STATE(1527), + [sym_nil_coalescing_expression] = STATE(1527), + [sym_check_expression] = STATE(1527), + [sym_comparison_expression] = STATE(1527), + [sym_equality_expression] = STATE(1527), + [sym_conjunction_expression] = STATE(1527), + [sym_disjunction_expression] = STATE(1527), + [sym_bitwise_operation] = STATE(1527), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1527), + [sym_await_expression] = STATE(1527), + [sym_ternary_expression] = STATE(1527), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1527), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1527), + [sym_dictionary_literal] = STATE(1527), + [sym__special_literal] = STATE(1527), + [sym__playground_literal] = STATE(1527), + [sym_lambda_literal] = STATE(1527), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1527), + [sym_key_path_expression] = STATE(1527), + [sym_key_path_string_expression] = STATE(1527), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1527), + [sym__comparison_operator] = STATE(1527), + [sym__additive_operator] = STATE(1527), + [sym__multiplicative_operator] = STATE(1527), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1527), + [sym__referenceable_operator] = STATE(1527), + [sym__eq_eq] = STATE(1527), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3787), + [sym_real_literal] = ACTIONS(3789), + [sym_integer_literal] = ACTIONS(3787), + [sym_hex_literal] = ACTIONS(3789), + [sym_oct_literal] = ACTIONS(3789), + [sym_bin_literal] = ACTIONS(3789), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3787), + [anon_sym_GT] = ACTIONS(3787), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3787), + [anon_sym_POUNDfileID] = ACTIONS(3789), + [anon_sym_POUNDfilePath] = ACTIONS(3789), + [anon_sym_POUNDline] = ACTIONS(3789), + [anon_sym_POUNDcolumn] = ACTIONS(3789), + [anon_sym_POUNDfunction] = ACTIONS(3789), + [anon_sym_POUNDdsohandle] = ACTIONS(3789), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3787), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3787), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3787), + [anon_sym_LT_EQ] = ACTIONS(3787), + [anon_sym_GT_EQ] = ACTIONS(3787), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3787), + [anon_sym_SLASH] = ACTIONS(3787), + [anon_sym_PERCENT] = ACTIONS(3787), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3789), + [sym__plus_then_ws] = ACTIONS(3789), + [sym__minus_then_ws] = ACTIONS(3789), + [sym_bang] = ACTIONS(1069), + }, + [916] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1974), + [sym_boolean_literal] = STATE(1974), + [sym__string_literal] = STATE(1974), + [sym_line_string_literal] = STATE(1974), + [sym_multi_line_string_literal] = STATE(1974), + [sym_raw_string_literal] = STATE(1974), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1974), + [sym__unary_expression] = STATE(1974), + [sym_postfix_expression] = STATE(1974), + [sym_constructor_expression] = STATE(1974), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1974), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1974), + [sym_prefix_expression] = STATE(1974), + [sym_as_expression] = STATE(1974), + [sym_selector_expression] = STATE(1974), + [sym__binary_expression] = STATE(1974), + [sym_multiplicative_expression] = STATE(1974), + [sym_additive_expression] = STATE(1974), + [sym_range_expression] = STATE(1974), + [sym_infix_expression] = STATE(1974), + [sym_nil_coalescing_expression] = STATE(1974), + [sym_check_expression] = STATE(1974), + [sym_comparison_expression] = STATE(1974), + [sym_equality_expression] = STATE(1974), + [sym_conjunction_expression] = STATE(1974), + [sym_disjunction_expression] = STATE(1974), + [sym_bitwise_operation] = STATE(1974), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1974), + [sym_await_expression] = STATE(1974), + [sym_ternary_expression] = STATE(1974), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1974), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1974), + [sym_dictionary_literal] = STATE(1974), + [sym__special_literal] = STATE(1974), + [sym__playground_literal] = STATE(1974), + [sym_lambda_literal] = STATE(1974), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1974), + [sym_key_path_expression] = STATE(1974), + [sym_key_path_string_expression] = STATE(1974), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1974), + [sym__comparison_operator] = STATE(1974), + [sym__additive_operator] = STATE(1974), + [sym__multiplicative_operator] = STATE(1974), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1974), + [sym__referenceable_operator] = STATE(1974), + [sym__eq_eq] = STATE(1974), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3791), + [sym_real_literal] = ACTIONS(3793), + [sym_integer_literal] = ACTIONS(3791), + [sym_hex_literal] = ACTIONS(3793), + [sym_oct_literal] = ACTIONS(3793), + [sym_bin_literal] = ACTIONS(3793), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3791), + [anon_sym_GT] = ACTIONS(3791), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3791), + [anon_sym_POUNDfileID] = ACTIONS(3793), + [anon_sym_POUNDfilePath] = ACTIONS(3793), + [anon_sym_POUNDline] = ACTIONS(3793), + [anon_sym_POUNDcolumn] = ACTIONS(3793), + [anon_sym_POUNDfunction] = ACTIONS(3793), + [anon_sym_POUNDdsohandle] = ACTIONS(3793), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3791), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3791), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3791), + [anon_sym_LT_EQ] = ACTIONS(3791), + [anon_sym_GT_EQ] = ACTIONS(3791), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3791), + [anon_sym_SLASH] = ACTIONS(3791), + [anon_sym_PERCENT] = ACTIONS(3791), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3793), + [sym__plus_then_ws] = ACTIONS(3793), + [sym__minus_then_ws] = ACTIONS(3793), + [sym_bang] = ACTIONS(1069), + }, + [917] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1975), + [sym_boolean_literal] = STATE(1975), + [sym__string_literal] = STATE(1975), + [sym_line_string_literal] = STATE(1975), + [sym_multi_line_string_literal] = STATE(1975), + [sym_raw_string_literal] = STATE(1975), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1975), + [sym__unary_expression] = STATE(1975), + [sym_postfix_expression] = STATE(1975), + [sym_constructor_expression] = STATE(1975), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1975), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1975), + [sym_prefix_expression] = STATE(1975), + [sym_as_expression] = STATE(1975), + [sym_selector_expression] = STATE(1975), + [sym__binary_expression] = STATE(1975), + [sym_multiplicative_expression] = STATE(1975), + [sym_additive_expression] = STATE(1975), + [sym_range_expression] = STATE(1975), + [sym_infix_expression] = STATE(1975), + [sym_nil_coalescing_expression] = STATE(1975), + [sym_check_expression] = STATE(1975), + [sym_comparison_expression] = STATE(1975), + [sym_equality_expression] = STATE(1975), + [sym_conjunction_expression] = STATE(1975), + [sym_disjunction_expression] = STATE(1975), + [sym_bitwise_operation] = STATE(1975), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1975), + [sym_await_expression] = STATE(1975), + [sym_ternary_expression] = STATE(1975), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1975), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1975), + [sym_dictionary_literal] = STATE(1975), + [sym__special_literal] = STATE(1975), + [sym__playground_literal] = STATE(1975), + [sym_lambda_literal] = STATE(1975), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1975), + [sym_key_path_expression] = STATE(1975), + [sym_key_path_string_expression] = STATE(1975), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1975), + [sym__comparison_operator] = STATE(1975), + [sym__additive_operator] = STATE(1975), + [sym__multiplicative_operator] = STATE(1975), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1975), + [sym__referenceable_operator] = STATE(1975), + [sym__eq_eq] = STATE(1975), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3795), + [sym_real_literal] = ACTIONS(3797), + [sym_integer_literal] = ACTIONS(3795), + [sym_hex_literal] = ACTIONS(3797), + [sym_oct_literal] = ACTIONS(3797), + [sym_bin_literal] = ACTIONS(3797), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3795), + [anon_sym_GT] = ACTIONS(3795), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3795), + [anon_sym_POUNDfileID] = ACTIONS(3797), + [anon_sym_POUNDfilePath] = ACTIONS(3797), + [anon_sym_POUNDline] = ACTIONS(3797), + [anon_sym_POUNDcolumn] = ACTIONS(3797), + [anon_sym_POUNDfunction] = ACTIONS(3797), + [anon_sym_POUNDdsohandle] = ACTIONS(3797), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3795), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3795), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3795), + [anon_sym_LT_EQ] = ACTIONS(3795), + [anon_sym_GT_EQ] = ACTIONS(3795), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_SLASH] = ACTIONS(3795), + [anon_sym_PERCENT] = ACTIONS(3795), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3797), + [sym__plus_then_ws] = ACTIONS(3797), + [sym__minus_then_ws] = ACTIONS(3797), + [sym_bang] = ACTIONS(1069), + }, + [918] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1660), + [sym_boolean_literal] = STATE(1660), + [sym__string_literal] = STATE(1660), + [sym_line_string_literal] = STATE(1660), + [sym_multi_line_string_literal] = STATE(1660), + [sym_raw_string_literal] = STATE(1660), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1660), + [sym__unary_expression] = STATE(1660), + [sym_postfix_expression] = STATE(1660), + [sym_constructor_expression] = STATE(1660), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1660), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1660), + [sym_prefix_expression] = STATE(1660), + [sym_as_expression] = STATE(1660), + [sym_selector_expression] = STATE(1660), + [sym__binary_expression] = STATE(1660), + [sym_multiplicative_expression] = STATE(1660), + [sym_additive_expression] = STATE(1660), + [sym_range_expression] = STATE(1660), + [sym_infix_expression] = STATE(1660), + [sym_nil_coalescing_expression] = STATE(1660), + [sym_check_expression] = STATE(1660), + [sym_comparison_expression] = STATE(1660), + [sym_equality_expression] = STATE(1660), + [sym_conjunction_expression] = STATE(1660), + [sym_disjunction_expression] = STATE(1660), + [sym_bitwise_operation] = STATE(1660), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1660), + [sym_await_expression] = STATE(1660), + [sym_ternary_expression] = STATE(1660), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1660), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1660), + [sym_dictionary_literal] = STATE(1660), + [sym__special_literal] = STATE(1660), + [sym__playground_literal] = STATE(1660), + [sym_lambda_literal] = STATE(1660), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1660), + [sym_key_path_expression] = STATE(1660), + [sym_key_path_string_expression] = STATE(1660), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1660), + [sym__comparison_operator] = STATE(1660), + [sym__additive_operator] = STATE(1660), + [sym__multiplicative_operator] = STATE(1660), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1660), + [sym__referenceable_operator] = STATE(1660), + [sym__eq_eq] = STATE(1660), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3799), + [sym_real_literal] = ACTIONS(3801), + [sym_integer_literal] = ACTIONS(3799), + [sym_hex_literal] = ACTIONS(3801), + [sym_oct_literal] = ACTIONS(3801), + [sym_bin_literal] = ACTIONS(3801), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3799), + [anon_sym_GT] = ACTIONS(3799), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3799), + [anon_sym_POUNDfileID] = ACTIONS(3801), + [anon_sym_POUNDfilePath] = ACTIONS(3801), + [anon_sym_POUNDline] = ACTIONS(3801), + [anon_sym_POUNDcolumn] = ACTIONS(3801), + [anon_sym_POUNDfunction] = ACTIONS(3801), + [anon_sym_POUNDdsohandle] = ACTIONS(3801), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3799), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3799), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3799), + [anon_sym_LT_EQ] = ACTIONS(3799), + [anon_sym_GT_EQ] = ACTIONS(3799), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3799), + [anon_sym_SLASH] = ACTIONS(3799), + [anon_sym_PERCENT] = ACTIONS(3799), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3801), + [sym__plus_then_ws] = ACTIONS(3801), + [sym__minus_then_ws] = ACTIONS(3801), + [sym_bang] = ACTIONS(1069), + }, + [919] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1654), + [sym_boolean_literal] = STATE(1654), + [sym__string_literal] = STATE(1654), + [sym_line_string_literal] = STATE(1654), + [sym_multi_line_string_literal] = STATE(1654), + [sym_raw_string_literal] = STATE(1654), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1654), + [sym__unary_expression] = STATE(1654), + [sym_postfix_expression] = STATE(1654), + [sym_constructor_expression] = STATE(1654), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1654), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1654), + [sym_prefix_expression] = STATE(1654), + [sym_as_expression] = STATE(1654), + [sym_selector_expression] = STATE(1654), + [sym__binary_expression] = STATE(1654), + [sym_multiplicative_expression] = STATE(1654), + [sym_additive_expression] = STATE(1654), + [sym_range_expression] = STATE(1654), + [sym_infix_expression] = STATE(1654), + [sym_nil_coalescing_expression] = STATE(1654), + [sym_check_expression] = STATE(1654), + [sym_comparison_expression] = STATE(1654), + [sym_equality_expression] = STATE(1654), + [sym_conjunction_expression] = STATE(1654), + [sym_disjunction_expression] = STATE(1654), + [sym_bitwise_operation] = STATE(1654), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1654), + [sym_await_expression] = STATE(1654), + [sym_ternary_expression] = STATE(1654), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1654), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1654), + [sym_dictionary_literal] = STATE(1654), + [sym__special_literal] = STATE(1654), + [sym__playground_literal] = STATE(1654), + [sym_lambda_literal] = STATE(1654), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1654), + [sym_key_path_expression] = STATE(1654), + [sym_key_path_string_expression] = STATE(1654), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1654), + [sym__comparison_operator] = STATE(1654), + [sym__additive_operator] = STATE(1654), + [sym__multiplicative_operator] = STATE(1654), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1654), + [sym__referenceable_operator] = STATE(1654), + [sym__eq_eq] = STATE(1654), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3803), + [sym_real_literal] = ACTIONS(3805), + [sym_integer_literal] = ACTIONS(3803), + [sym_hex_literal] = ACTIONS(3805), + [sym_oct_literal] = ACTIONS(3805), + [sym_bin_literal] = ACTIONS(3805), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3803), + [anon_sym_GT] = ACTIONS(3803), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3803), + [anon_sym_POUNDfileID] = ACTIONS(3805), + [anon_sym_POUNDfilePath] = ACTIONS(3805), + [anon_sym_POUNDline] = ACTIONS(3805), + [anon_sym_POUNDcolumn] = ACTIONS(3805), + [anon_sym_POUNDfunction] = ACTIONS(3805), + [anon_sym_POUNDdsohandle] = ACTIONS(3805), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3803), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3803), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3803), + [anon_sym_LT_EQ] = ACTIONS(3803), + [anon_sym_GT_EQ] = ACTIONS(3803), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3803), + [anon_sym_SLASH] = ACTIONS(3803), + [anon_sym_PERCENT] = ACTIONS(3803), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3805), + [sym__plus_then_ws] = ACTIONS(3805), + [sym__minus_then_ws] = ACTIONS(3805), + [sym_bang] = ACTIONS(1467), + }, + [920] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1979), + [sym_boolean_literal] = STATE(1979), + [sym__string_literal] = STATE(1979), + [sym_line_string_literal] = STATE(1979), + [sym_multi_line_string_literal] = STATE(1979), + [sym_raw_string_literal] = STATE(1979), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1979), + [sym__unary_expression] = STATE(1979), + [sym_postfix_expression] = STATE(1979), + [sym_constructor_expression] = STATE(1979), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1979), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1979), + [sym_prefix_expression] = STATE(1979), + [sym_as_expression] = STATE(1979), + [sym_selector_expression] = STATE(1979), + [sym__binary_expression] = STATE(1979), + [sym_multiplicative_expression] = STATE(1979), + [sym_additive_expression] = STATE(1979), + [sym_range_expression] = STATE(1979), + [sym_infix_expression] = STATE(1979), + [sym_nil_coalescing_expression] = STATE(1979), + [sym_check_expression] = STATE(1979), + [sym_comparison_expression] = STATE(1979), + [sym_equality_expression] = STATE(1979), + [sym_conjunction_expression] = STATE(1979), + [sym_disjunction_expression] = STATE(1979), + [sym_bitwise_operation] = STATE(1979), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1979), + [sym_await_expression] = STATE(1979), + [sym_ternary_expression] = STATE(1979), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1979), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1979), + [sym_dictionary_literal] = STATE(1979), + [sym__special_literal] = STATE(1979), + [sym__playground_literal] = STATE(1979), + [sym_lambda_literal] = STATE(1979), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1979), + [sym_key_path_expression] = STATE(1979), + [sym_key_path_string_expression] = STATE(1979), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1979), + [sym__comparison_operator] = STATE(1979), + [sym__additive_operator] = STATE(1979), + [sym__multiplicative_operator] = STATE(1979), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1979), + [sym__referenceable_operator] = STATE(1979), + [sym__eq_eq] = STATE(1979), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3807), + [sym_real_literal] = ACTIONS(3809), + [sym_integer_literal] = ACTIONS(3807), + [sym_hex_literal] = ACTIONS(3809), + [sym_oct_literal] = ACTIONS(3809), + [sym_bin_literal] = ACTIONS(3809), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3807), + [anon_sym_GT] = ACTIONS(3807), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3807), + [anon_sym_POUNDfileID] = ACTIONS(3809), + [anon_sym_POUNDfilePath] = ACTIONS(3809), + [anon_sym_POUNDline] = ACTIONS(3809), + [anon_sym_POUNDcolumn] = ACTIONS(3809), + [anon_sym_POUNDfunction] = ACTIONS(3809), + [anon_sym_POUNDdsohandle] = ACTIONS(3809), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3807), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3807), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3807), + [anon_sym_LT_EQ] = ACTIONS(3807), + [anon_sym_GT_EQ] = ACTIONS(3807), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3807), + [anon_sym_SLASH] = ACTIONS(3807), + [anon_sym_PERCENT] = ACTIONS(3807), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3809), + [sym__plus_then_ws] = ACTIONS(3809), + [sym__minus_then_ws] = ACTIONS(3809), + [sym_bang] = ACTIONS(1069), + }, + [921] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(1825), + [sym_boolean_literal] = STATE(1825), + [sym__string_literal] = STATE(1825), + [sym_line_string_literal] = STATE(1825), + [sym_multi_line_string_literal] = STATE(1825), + [sym_raw_string_literal] = STATE(1825), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(1825), + [sym__unary_expression] = STATE(1825), + [sym_postfix_expression] = STATE(1825), + [sym_constructor_expression] = STATE(1825), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(1825), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(1825), + [sym_prefix_expression] = STATE(1825), + [sym_as_expression] = STATE(1825), + [sym_selector_expression] = STATE(1825), + [sym__binary_expression] = STATE(3192), + [sym_multiplicative_expression] = STATE(3192), + [sym_additive_expression] = STATE(3192), + [sym_range_expression] = STATE(3192), + [sym_infix_expression] = STATE(3192), + [sym_nil_coalescing_expression] = STATE(3192), + [sym_check_expression] = STATE(3192), + [sym_comparison_expression] = STATE(3192), + [sym_equality_expression] = STATE(3192), + [sym_conjunction_expression] = STATE(3192), + [sym_disjunction_expression] = STATE(3192), + [sym_bitwise_operation] = STATE(3192), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(1825), + [sym_await_expression] = STATE(1825), + [sym_ternary_expression] = STATE(3210), + [sym_call_expression] = STATE(2698), + [sym__primary_expression] = STATE(1825), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(1825), + [sym_dictionary_literal] = STATE(1825), + [sym__special_literal] = STATE(1825), + [sym__playground_literal] = STATE(1825), + [sym_lambda_literal] = STATE(1825), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(1825), + [sym_key_path_expression] = STATE(1825), + [sym_key_path_string_expression] = STATE(1825), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(1825), + [sym__comparison_operator] = STATE(1825), + [sym__additive_operator] = STATE(1825), + [sym__multiplicative_operator] = STATE(1825), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(1825), + [sym__referenceable_operator] = STATE(1825), + [sym__eq_eq] = STATE(1825), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(3811), + [sym_real_literal] = ACTIONS(3813), + [sym_integer_literal] = ACTIONS(3811), + [sym_hex_literal] = ACTIONS(3813), + [sym_oct_literal] = ACTIONS(3813), + [sym_bin_literal] = ACTIONS(3813), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(3811), + [anon_sym_GT] = ACTIONS(3811), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(3811), + [anon_sym_POUNDfileID] = ACTIONS(3813), + [anon_sym_POUNDfilePath] = ACTIONS(3813), + [anon_sym_POUNDline] = ACTIONS(3813), + [anon_sym_POUNDcolumn] = ACTIONS(3813), + [anon_sym_POUNDfunction] = ACTIONS(3813), + [anon_sym_POUNDdsohandle] = ACTIONS(3813), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(3811), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3811), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3811), + [anon_sym_LT_EQ] = ACTIONS(3811), + [anon_sym_GT_EQ] = ACTIONS(3811), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(3811), + [anon_sym_SLASH] = ACTIONS(3811), + [anon_sym_PERCENT] = ACTIONS(3811), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(3813), + [sym__plus_then_ws] = ACTIONS(3813), + [sym__minus_then_ws] = ACTIONS(3813), + [sym_bang] = ACTIONS(137), + }, + [922] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(1828), + [sym_boolean_literal] = STATE(1828), + [sym__string_literal] = STATE(1828), + [sym_line_string_literal] = STATE(1828), + [sym_multi_line_string_literal] = STATE(1828), + [sym_raw_string_literal] = STATE(1828), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(1828), + [sym__unary_expression] = STATE(1828), + [sym_postfix_expression] = STATE(1828), + [sym_constructor_expression] = STATE(1828), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(1828), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(1828), + [sym_prefix_expression] = STATE(1828), + [sym_as_expression] = STATE(1828), + [sym_selector_expression] = STATE(1828), + [sym__binary_expression] = STATE(1828), + [sym_multiplicative_expression] = STATE(1828), + [sym_additive_expression] = STATE(1828), + [sym_range_expression] = STATE(1828), + [sym_infix_expression] = STATE(1828), + [sym_nil_coalescing_expression] = STATE(1828), + [sym_check_expression] = STATE(1828), + [sym_comparison_expression] = STATE(1828), + [sym_equality_expression] = STATE(1828), + [sym_conjunction_expression] = STATE(1828), + [sym_disjunction_expression] = STATE(1828), + [sym_bitwise_operation] = STATE(1828), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(1828), + [sym_await_expression] = STATE(1828), + [sym_ternary_expression] = STATE(1828), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(1828), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(1828), + [sym_dictionary_literal] = STATE(1828), + [sym__special_literal] = STATE(1828), + [sym__playground_literal] = STATE(1828), + [sym_lambda_literal] = STATE(1828), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(1828), + [sym_key_path_expression] = STATE(1828), + [sym_key_path_string_expression] = STATE(1828), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(1828), + [sym__comparison_operator] = STATE(1828), + [sym__additive_operator] = STATE(1828), + [sym__multiplicative_operator] = STATE(1828), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(1828), + [sym__referenceable_operator] = STATE(1828), + [sym__eq_eq] = STATE(1828), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(3815), + [sym_real_literal] = ACTIONS(3817), + [sym_integer_literal] = ACTIONS(3815), + [sym_hex_literal] = ACTIONS(3817), + [sym_oct_literal] = ACTIONS(3817), + [sym_bin_literal] = ACTIONS(3817), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(3815), + [anon_sym_GT] = ACTIONS(3815), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(3815), + [anon_sym_POUNDfileID] = ACTIONS(3817), + [anon_sym_POUNDfilePath] = ACTIONS(3817), + [anon_sym_POUNDline] = ACTIONS(3817), + [anon_sym_POUNDcolumn] = ACTIONS(3817), + [anon_sym_POUNDfunction] = ACTIONS(3817), + [anon_sym_POUNDdsohandle] = ACTIONS(3817), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(3815), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3815), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3815), + [anon_sym_LT_EQ] = ACTIONS(3815), + [anon_sym_GT_EQ] = ACTIONS(3815), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(3815), + [anon_sym_SLASH] = ACTIONS(3815), + [anon_sym_PERCENT] = ACTIONS(3815), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(3817), + [sym__plus_then_ws] = ACTIONS(3817), + [sym__minus_then_ws] = ACTIONS(3817), + [sym_bang] = ACTIONS(137), + }, + [923] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2116), + [sym_boolean_literal] = STATE(2116), + [sym__string_literal] = STATE(2116), + [sym_line_string_literal] = STATE(2116), + [sym_multi_line_string_literal] = STATE(2116), + [sym_raw_string_literal] = STATE(2116), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2116), + [sym__unary_expression] = STATE(2116), + [sym_postfix_expression] = STATE(2116), + [sym_constructor_expression] = STATE(2116), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2116), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2116), + [sym_prefix_expression] = STATE(2116), + [sym_as_expression] = STATE(2116), + [sym_selector_expression] = STATE(2116), + [sym__binary_expression] = STATE(2116), + [sym_multiplicative_expression] = STATE(2116), + [sym_additive_expression] = STATE(2116), + [sym_range_expression] = STATE(2116), + [sym_infix_expression] = STATE(2116), + [sym_nil_coalescing_expression] = STATE(2116), + [sym_check_expression] = STATE(2116), + [sym_comparison_expression] = STATE(2116), + [sym_equality_expression] = STATE(2116), + [sym_conjunction_expression] = STATE(2116), + [sym_disjunction_expression] = STATE(2116), + [sym_bitwise_operation] = STATE(2116), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2116), + [sym_await_expression] = STATE(2116), + [sym_ternary_expression] = STATE(2116), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2116), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2116), + [sym_dictionary_literal] = STATE(2116), + [sym__special_literal] = STATE(2116), + [sym__playground_literal] = STATE(2116), + [sym_lambda_literal] = STATE(2116), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2116), + [sym_key_path_expression] = STATE(2116), + [sym_key_path_string_expression] = STATE(2116), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2116), + [sym__comparison_operator] = STATE(2116), + [sym__additive_operator] = STATE(2116), + [sym__multiplicative_operator] = STATE(2116), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2116), + [sym__referenceable_operator] = STATE(2116), + [sym__eq_eq] = STATE(2116), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3819), + [sym_real_literal] = ACTIONS(3821), + [sym_integer_literal] = ACTIONS(3819), + [sym_hex_literal] = ACTIONS(3821), + [sym_oct_literal] = ACTIONS(3821), + [sym_bin_literal] = ACTIONS(3821), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3819), + [anon_sym_GT] = ACTIONS(3819), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3819), + [anon_sym_POUNDfileID] = ACTIONS(3821), + [anon_sym_POUNDfilePath] = ACTIONS(3821), + [anon_sym_POUNDline] = ACTIONS(3821), + [anon_sym_POUNDcolumn] = ACTIONS(3821), + [anon_sym_POUNDfunction] = ACTIONS(3821), + [anon_sym_POUNDdsohandle] = ACTIONS(3821), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3819), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3819), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3819), + [anon_sym_LT_EQ] = ACTIONS(3819), + [anon_sym_GT_EQ] = ACTIONS(3819), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3819), + [anon_sym_SLASH] = ACTIONS(3819), + [anon_sym_PERCENT] = ACTIONS(3819), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3821), + [sym__plus_then_ws] = ACTIONS(3821), + [sym__minus_then_ws] = ACTIONS(3821), + [sym_bang] = ACTIONS(1069), + }, + [924] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1512), + [sym_boolean_literal] = STATE(1512), + [sym__string_literal] = STATE(1512), + [sym_line_string_literal] = STATE(1512), + [sym_multi_line_string_literal] = STATE(1512), + [sym_raw_string_literal] = STATE(1512), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1512), + [sym__unary_expression] = STATE(1512), + [sym_postfix_expression] = STATE(1512), + [sym_constructor_expression] = STATE(1512), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1512), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1512), + [sym_prefix_expression] = STATE(1512), + [sym_as_expression] = STATE(1512), + [sym_selector_expression] = STATE(1512), + [sym__binary_expression] = STATE(1512), + [sym_multiplicative_expression] = STATE(1512), + [sym_additive_expression] = STATE(1512), + [sym_range_expression] = STATE(1512), + [sym_infix_expression] = STATE(1512), + [sym_nil_coalescing_expression] = STATE(1512), + [sym_check_expression] = STATE(1512), + [sym_comparison_expression] = STATE(1512), + [sym_equality_expression] = STATE(1512), + [sym_conjunction_expression] = STATE(1512), + [sym_disjunction_expression] = STATE(1512), + [sym_bitwise_operation] = STATE(1512), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_ternary_expression] = STATE(1512), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1512), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1512), + [sym_dictionary_literal] = STATE(1512), + [sym__special_literal] = STATE(1512), + [sym__playground_literal] = STATE(1512), + [sym_lambda_literal] = STATE(1512), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1512), + [sym_key_path_expression] = STATE(1512), + [sym_key_path_string_expression] = STATE(1512), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1512), + [sym__comparison_operator] = STATE(1512), + [sym__additive_operator] = STATE(1512), + [sym__multiplicative_operator] = STATE(1512), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1512), + [sym__referenceable_operator] = STATE(1512), + [sym__eq_eq] = STATE(1512), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3823), + [sym_real_literal] = ACTIONS(3825), + [sym_integer_literal] = ACTIONS(3823), + [sym_hex_literal] = ACTIONS(3825), + [sym_oct_literal] = ACTIONS(3825), + [sym_bin_literal] = ACTIONS(3825), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3823), + [anon_sym_GT] = ACTIONS(3823), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3823), + [anon_sym_POUNDfileID] = ACTIONS(3825), + [anon_sym_POUNDfilePath] = ACTIONS(3825), + [anon_sym_POUNDline] = ACTIONS(3825), + [anon_sym_POUNDcolumn] = ACTIONS(3825), + [anon_sym_POUNDfunction] = ACTIONS(3825), + [anon_sym_POUNDdsohandle] = ACTIONS(3825), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3823), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3823), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3823), + [anon_sym_LT_EQ] = ACTIONS(3823), + [anon_sym_GT_EQ] = ACTIONS(3823), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3823), + [anon_sym_SLASH] = ACTIONS(3823), + [anon_sym_PERCENT] = ACTIONS(3823), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3825), + [sym__plus_then_ws] = ACTIONS(3825), + [sym__minus_then_ws] = ACTIONS(3825), + [sym_bang] = ACTIONS(1467), + }, + [925] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1546), + [sym_boolean_literal] = STATE(1546), + [sym__string_literal] = STATE(1546), + [sym_line_string_literal] = STATE(1546), + [sym_multi_line_string_literal] = STATE(1546), + [sym_raw_string_literal] = STATE(1546), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1546), + [sym__unary_expression] = STATE(1546), + [sym_postfix_expression] = STATE(1546), + [sym_constructor_expression] = STATE(1546), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1546), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1546), + [sym_prefix_expression] = STATE(1546), + [sym_as_expression] = STATE(1546), + [sym_selector_expression] = STATE(1546), + [sym__binary_expression] = STATE(1546), + [sym_multiplicative_expression] = STATE(1546), + [sym_additive_expression] = STATE(1546), + [sym_range_expression] = STATE(1546), + [sym_infix_expression] = STATE(1546), + [sym_nil_coalescing_expression] = STATE(1546), + [sym_check_expression] = STATE(1546), + [sym_comparison_expression] = STATE(1546), + [sym_equality_expression] = STATE(1546), + [sym_conjunction_expression] = STATE(1546), + [sym_disjunction_expression] = STATE(1546), + [sym_bitwise_operation] = STATE(1546), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1546), + [sym_await_expression] = STATE(1546), + [sym_ternary_expression] = STATE(1546), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1546), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1546), + [sym_dictionary_literal] = STATE(1546), + [sym__special_literal] = STATE(1546), + [sym__playground_literal] = STATE(1546), + [sym_lambda_literal] = STATE(1546), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1546), + [sym_key_path_expression] = STATE(1546), + [sym_key_path_string_expression] = STATE(1546), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1546), + [sym__comparison_operator] = STATE(1546), + [sym__additive_operator] = STATE(1546), + [sym__multiplicative_operator] = STATE(1546), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1546), + [sym__referenceable_operator] = STATE(1546), + [sym__eq_eq] = STATE(1546), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3827), + [sym_real_literal] = ACTIONS(3829), + [sym_integer_literal] = ACTIONS(3827), + [sym_hex_literal] = ACTIONS(3829), + [sym_oct_literal] = ACTIONS(3829), + [sym_bin_literal] = ACTIONS(3829), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3827), + [anon_sym_GT] = ACTIONS(3827), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3827), + [anon_sym_POUNDfileID] = ACTIONS(3829), + [anon_sym_POUNDfilePath] = ACTIONS(3829), + [anon_sym_POUNDline] = ACTIONS(3829), + [anon_sym_POUNDcolumn] = ACTIONS(3829), + [anon_sym_POUNDfunction] = ACTIONS(3829), + [anon_sym_POUNDdsohandle] = ACTIONS(3829), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3827), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3827), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3827), + [anon_sym_LT_EQ] = ACTIONS(3827), + [anon_sym_GT_EQ] = ACTIONS(3827), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3827), + [anon_sym_SLASH] = ACTIONS(3827), + [anon_sym_PERCENT] = ACTIONS(3827), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3829), + [sym__plus_then_ws] = ACTIONS(3829), + [sym__minus_then_ws] = ACTIONS(3829), + [sym_bang] = ACTIONS(1069), + }, + [926] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1541), + [sym_boolean_literal] = STATE(1541), + [sym__string_literal] = STATE(1541), + [sym_line_string_literal] = STATE(1541), + [sym_multi_line_string_literal] = STATE(1541), + [sym_raw_string_literal] = STATE(1541), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1541), + [sym__unary_expression] = STATE(1541), + [sym_postfix_expression] = STATE(1541), + [sym_constructor_expression] = STATE(1541), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1541), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1541), + [sym_prefix_expression] = STATE(1541), + [sym_as_expression] = STATE(1541), + [sym_selector_expression] = STATE(1541), + [sym__binary_expression] = STATE(1541), + [sym_multiplicative_expression] = STATE(1541), + [sym_additive_expression] = STATE(1541), + [sym_range_expression] = STATE(1541), + [sym_infix_expression] = STATE(1541), + [sym_nil_coalescing_expression] = STATE(1541), + [sym_check_expression] = STATE(1541), + [sym_comparison_expression] = STATE(1541), + [sym_equality_expression] = STATE(1541), + [sym_conjunction_expression] = STATE(1541), + [sym_disjunction_expression] = STATE(1541), + [sym_bitwise_operation] = STATE(1541), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1541), + [sym_await_expression] = STATE(1541), + [sym_ternary_expression] = STATE(1541), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1541), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1541), + [sym_dictionary_literal] = STATE(1541), + [sym__special_literal] = STATE(1541), + [sym__playground_literal] = STATE(1541), + [sym_lambda_literal] = STATE(1541), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1541), + [sym_key_path_expression] = STATE(1541), + [sym_key_path_string_expression] = STATE(1541), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1541), + [sym__comparison_operator] = STATE(1541), + [sym__additive_operator] = STATE(1541), + [sym__multiplicative_operator] = STATE(1541), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1541), + [sym__referenceable_operator] = STATE(1541), + [sym__eq_eq] = STATE(1541), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3831), + [sym_real_literal] = ACTIONS(3833), + [sym_integer_literal] = ACTIONS(3831), + [sym_hex_literal] = ACTIONS(3833), + [sym_oct_literal] = ACTIONS(3833), + [sym_bin_literal] = ACTIONS(3833), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3831), + [anon_sym_GT] = ACTIONS(3831), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3831), + [anon_sym_POUNDfileID] = ACTIONS(3833), + [anon_sym_POUNDfilePath] = ACTIONS(3833), + [anon_sym_POUNDline] = ACTIONS(3833), + [anon_sym_POUNDcolumn] = ACTIONS(3833), + [anon_sym_POUNDfunction] = ACTIONS(3833), + [anon_sym_POUNDdsohandle] = ACTIONS(3833), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3831), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3831), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3831), + [anon_sym_LT_EQ] = ACTIONS(3831), + [anon_sym_GT_EQ] = ACTIONS(3831), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3831), + [anon_sym_SLASH] = ACTIONS(3831), + [anon_sym_PERCENT] = ACTIONS(3831), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3833), + [sym__plus_then_ws] = ACTIONS(3833), + [sym__minus_then_ws] = ACTIONS(3833), + [sym_bang] = ACTIONS(1069), + }, + [927] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1987), + [sym_boolean_literal] = STATE(1987), + [sym__string_literal] = STATE(1987), + [sym_line_string_literal] = STATE(1987), + [sym_multi_line_string_literal] = STATE(1987), + [sym_raw_string_literal] = STATE(1987), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1987), + [sym__unary_expression] = STATE(1987), + [sym_postfix_expression] = STATE(1987), + [sym_constructor_expression] = STATE(1987), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1987), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1987), + [sym_prefix_expression] = STATE(1987), + [sym_as_expression] = STATE(1987), + [sym_selector_expression] = STATE(1987), + [sym__binary_expression] = STATE(1987), + [sym_multiplicative_expression] = STATE(1987), + [sym_additive_expression] = STATE(1987), + [sym_range_expression] = STATE(1987), + [sym_infix_expression] = STATE(1987), + [sym_nil_coalescing_expression] = STATE(1987), + [sym_check_expression] = STATE(1987), + [sym_comparison_expression] = STATE(1987), + [sym_equality_expression] = STATE(1987), + [sym_conjunction_expression] = STATE(1987), + [sym_disjunction_expression] = STATE(1987), + [sym_bitwise_operation] = STATE(1987), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1987), + [sym_await_expression] = STATE(1987), + [sym_ternary_expression] = STATE(1987), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1987), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1987), + [sym_dictionary_literal] = STATE(1987), + [sym__special_literal] = STATE(1987), + [sym__playground_literal] = STATE(1987), + [sym_lambda_literal] = STATE(1987), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1987), + [sym_key_path_expression] = STATE(1987), + [sym_key_path_string_expression] = STATE(1987), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1987), + [sym__comparison_operator] = STATE(1987), + [sym__additive_operator] = STATE(1987), + [sym__multiplicative_operator] = STATE(1987), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1987), + [sym__referenceable_operator] = STATE(1987), + [sym__eq_eq] = STATE(1987), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3835), + [sym_real_literal] = ACTIONS(3837), + [sym_integer_literal] = ACTIONS(3835), + [sym_hex_literal] = ACTIONS(3837), + [sym_oct_literal] = ACTIONS(3837), + [sym_bin_literal] = ACTIONS(3837), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3835), + [anon_sym_GT] = ACTIONS(3835), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3835), + [anon_sym_POUNDfileID] = ACTIONS(3837), + [anon_sym_POUNDfilePath] = ACTIONS(3837), + [anon_sym_POUNDline] = ACTIONS(3837), + [anon_sym_POUNDcolumn] = ACTIONS(3837), + [anon_sym_POUNDfunction] = ACTIONS(3837), + [anon_sym_POUNDdsohandle] = ACTIONS(3837), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3835), + [anon_sym_LT_EQ] = ACTIONS(3835), + [anon_sym_GT_EQ] = ACTIONS(3835), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3835), + [anon_sym_SLASH] = ACTIONS(3835), + [anon_sym_PERCENT] = ACTIONS(3835), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3837), + [sym__plus_then_ws] = ACTIONS(3837), + [sym__minus_then_ws] = ACTIONS(3837), + [sym_bang] = ACTIONS(1069), + }, + [928] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1981), + [sym_boolean_literal] = STATE(1981), + [sym__string_literal] = STATE(1981), + [sym_line_string_literal] = STATE(1981), + [sym_multi_line_string_literal] = STATE(1981), + [sym_raw_string_literal] = STATE(1981), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1981), + [sym__unary_expression] = STATE(1981), + [sym_postfix_expression] = STATE(1981), + [sym_constructor_expression] = STATE(1981), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1981), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1981), + [sym_prefix_expression] = STATE(1981), + [sym_as_expression] = STATE(1981), + [sym_selector_expression] = STATE(1981), + [sym__binary_expression] = STATE(1981), + [sym_multiplicative_expression] = STATE(1981), + [sym_additive_expression] = STATE(1981), + [sym_range_expression] = STATE(1981), + [sym_infix_expression] = STATE(1981), + [sym_nil_coalescing_expression] = STATE(1981), + [sym_check_expression] = STATE(1981), + [sym_comparison_expression] = STATE(1981), + [sym_equality_expression] = STATE(1981), + [sym_conjunction_expression] = STATE(1981), + [sym_disjunction_expression] = STATE(1981), + [sym_bitwise_operation] = STATE(1981), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1981), + [sym_await_expression] = STATE(1981), + [sym_ternary_expression] = STATE(1981), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1981), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1981), + [sym_dictionary_literal] = STATE(1981), + [sym__special_literal] = STATE(1981), + [sym__playground_literal] = STATE(1981), + [sym_lambda_literal] = STATE(1981), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1981), + [sym_key_path_expression] = STATE(1981), + [sym_key_path_string_expression] = STATE(1981), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1981), + [sym__comparison_operator] = STATE(1981), + [sym__additive_operator] = STATE(1981), + [sym__multiplicative_operator] = STATE(1981), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1981), + [sym__referenceable_operator] = STATE(1981), + [sym__eq_eq] = STATE(1981), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3839), + [sym_real_literal] = ACTIONS(3841), + [sym_integer_literal] = ACTIONS(3839), + [sym_hex_literal] = ACTIONS(3841), + [sym_oct_literal] = ACTIONS(3841), + [sym_bin_literal] = ACTIONS(3841), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3839), + [anon_sym_GT] = ACTIONS(3839), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3839), + [anon_sym_POUNDfileID] = ACTIONS(3841), + [anon_sym_POUNDfilePath] = ACTIONS(3841), + [anon_sym_POUNDline] = ACTIONS(3841), + [anon_sym_POUNDcolumn] = ACTIONS(3841), + [anon_sym_POUNDfunction] = ACTIONS(3841), + [anon_sym_POUNDdsohandle] = ACTIONS(3841), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3839), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3839), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3839), + [anon_sym_LT_EQ] = ACTIONS(3839), + [anon_sym_GT_EQ] = ACTIONS(3839), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_SLASH] = ACTIONS(3839), + [anon_sym_PERCENT] = ACTIONS(3839), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3841), + [sym__plus_then_ws] = ACTIONS(3841), + [sym__minus_then_ws] = ACTIONS(3841), + [sym_bang] = ACTIONS(1069), + }, + [929] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1706), + [sym_boolean_literal] = STATE(1706), + [sym__string_literal] = STATE(1706), + [sym_line_string_literal] = STATE(1706), + [sym_multi_line_string_literal] = STATE(1706), + [sym_raw_string_literal] = STATE(1706), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1706), + [sym__unary_expression] = STATE(1706), + [sym_postfix_expression] = STATE(1706), + [sym_constructor_expression] = STATE(1706), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1706), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1706), + [sym_prefix_expression] = STATE(1706), + [sym_as_expression] = STATE(1706), + [sym_selector_expression] = STATE(1706), + [sym__binary_expression] = STATE(1706), + [sym_multiplicative_expression] = STATE(1706), + [sym_additive_expression] = STATE(1706), + [sym_range_expression] = STATE(1706), + [sym_infix_expression] = STATE(1706), + [sym_nil_coalescing_expression] = STATE(1706), + [sym_check_expression] = STATE(1706), + [sym_comparison_expression] = STATE(1706), + [sym_equality_expression] = STATE(1706), + [sym_conjunction_expression] = STATE(1706), + [sym_disjunction_expression] = STATE(1706), + [sym_bitwise_operation] = STATE(1706), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1706), + [sym_await_expression] = STATE(1706), + [sym_ternary_expression] = STATE(1706), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1706), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1706), + [sym_dictionary_literal] = STATE(1706), + [sym__special_literal] = STATE(1706), + [sym__playground_literal] = STATE(1706), + [sym_lambda_literal] = STATE(1706), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1706), + [sym_key_path_expression] = STATE(1706), + [sym_key_path_string_expression] = STATE(1706), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1706), + [sym__comparison_operator] = STATE(1706), + [sym__additive_operator] = STATE(1706), + [sym__multiplicative_operator] = STATE(1706), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1706), + [sym__referenceable_operator] = STATE(1706), + [sym__eq_eq] = STATE(1706), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3843), + [sym_real_literal] = ACTIONS(3845), + [sym_integer_literal] = ACTIONS(3843), + [sym_hex_literal] = ACTIONS(3845), + [sym_oct_literal] = ACTIONS(3845), + [sym_bin_literal] = ACTIONS(3845), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3843), + [anon_sym_GT] = ACTIONS(3843), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3843), + [anon_sym_POUNDfileID] = ACTIONS(3845), + [anon_sym_POUNDfilePath] = ACTIONS(3845), + [anon_sym_POUNDline] = ACTIONS(3845), + [anon_sym_POUNDcolumn] = ACTIONS(3845), + [anon_sym_POUNDfunction] = ACTIONS(3845), + [anon_sym_POUNDdsohandle] = ACTIONS(3845), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3843), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3843), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3843), + [anon_sym_LT_EQ] = ACTIONS(3843), + [anon_sym_GT_EQ] = ACTIONS(3843), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3843), + [anon_sym_SLASH] = ACTIONS(3843), + [anon_sym_PERCENT] = ACTIONS(3843), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3845), + [sym__plus_then_ws] = ACTIONS(3845), + [sym__minus_then_ws] = ACTIONS(3845), + [sym_bang] = ACTIONS(1069), + }, + [930] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1983), + [sym_boolean_literal] = STATE(1983), + [sym__string_literal] = STATE(1983), + [sym_line_string_literal] = STATE(1983), + [sym_multi_line_string_literal] = STATE(1983), + [sym_raw_string_literal] = STATE(1983), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1983), + [sym__unary_expression] = STATE(1983), + [sym_postfix_expression] = STATE(1983), + [sym_constructor_expression] = STATE(1983), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1983), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1983), + [sym_prefix_expression] = STATE(1983), + [sym_as_expression] = STATE(1983), + [sym_selector_expression] = STATE(1983), + [sym__binary_expression] = STATE(1983), + [sym_multiplicative_expression] = STATE(1983), + [sym_additive_expression] = STATE(1983), + [sym_range_expression] = STATE(1983), + [sym_infix_expression] = STATE(1983), + [sym_nil_coalescing_expression] = STATE(1983), + [sym_check_expression] = STATE(1983), + [sym_comparison_expression] = STATE(1983), + [sym_equality_expression] = STATE(1983), + [sym_conjunction_expression] = STATE(1983), + [sym_disjunction_expression] = STATE(1983), + [sym_bitwise_operation] = STATE(1983), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1983), + [sym_await_expression] = STATE(1983), + [sym_ternary_expression] = STATE(1983), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1983), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1983), + [sym_dictionary_literal] = STATE(1983), + [sym__special_literal] = STATE(1983), + [sym__playground_literal] = STATE(1983), + [sym_lambda_literal] = STATE(1983), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1983), + [sym_key_path_expression] = STATE(1983), + [sym_key_path_string_expression] = STATE(1983), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1983), + [sym__comparison_operator] = STATE(1983), + [sym__additive_operator] = STATE(1983), + [sym__multiplicative_operator] = STATE(1983), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1983), + [sym__referenceable_operator] = STATE(1983), + [sym__eq_eq] = STATE(1983), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3847), + [sym_real_literal] = ACTIONS(3849), + [sym_integer_literal] = ACTIONS(3847), + [sym_hex_literal] = ACTIONS(3849), + [sym_oct_literal] = ACTIONS(3849), + [sym_bin_literal] = ACTIONS(3849), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3847), + [anon_sym_GT] = ACTIONS(3847), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3847), + [anon_sym_POUNDfileID] = ACTIONS(3849), + [anon_sym_POUNDfilePath] = ACTIONS(3849), + [anon_sym_POUNDline] = ACTIONS(3849), + [anon_sym_POUNDcolumn] = ACTIONS(3849), + [anon_sym_POUNDfunction] = ACTIONS(3849), + [anon_sym_POUNDdsohandle] = ACTIONS(3849), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3847), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3847), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3847), + [anon_sym_LT_EQ] = ACTIONS(3847), + [anon_sym_GT_EQ] = ACTIONS(3847), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3847), + [anon_sym_SLASH] = ACTIONS(3847), + [anon_sym_PERCENT] = ACTIONS(3847), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3849), + [sym__plus_then_ws] = ACTIONS(3849), + [sym__minus_then_ws] = ACTIONS(3849), + [sym_bang] = ACTIONS(1069), + }, + [931] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1656), + [sym_boolean_literal] = STATE(1656), + [sym__string_literal] = STATE(1656), + [sym_line_string_literal] = STATE(1656), + [sym_multi_line_string_literal] = STATE(1656), + [sym_raw_string_literal] = STATE(1656), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1656), + [sym__unary_expression] = STATE(1656), + [sym_postfix_expression] = STATE(1656), + [sym_constructor_expression] = STATE(1656), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1656), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1656), + [sym_prefix_expression] = STATE(1656), + [sym_as_expression] = STATE(1656), + [sym_selector_expression] = STATE(1656), + [sym__binary_expression] = STATE(1656), + [sym_multiplicative_expression] = STATE(1656), + [sym_additive_expression] = STATE(1656), + [sym_range_expression] = STATE(1656), + [sym_infix_expression] = STATE(1656), + [sym_nil_coalescing_expression] = STATE(1656), + [sym_check_expression] = STATE(1656), + [sym_comparison_expression] = STATE(1656), + [sym_equality_expression] = STATE(1656), + [sym_conjunction_expression] = STATE(1656), + [sym_disjunction_expression] = STATE(1656), + [sym_bitwise_operation] = STATE(1656), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1656), + [sym_await_expression] = STATE(1656), + [sym_ternary_expression] = STATE(1656), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1656), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1656), + [sym_dictionary_literal] = STATE(1656), + [sym__special_literal] = STATE(1656), + [sym__playground_literal] = STATE(1656), + [sym_lambda_literal] = STATE(1656), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1656), + [sym_key_path_expression] = STATE(1656), + [sym_key_path_string_expression] = STATE(1656), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1656), + [sym__comparison_operator] = STATE(1656), + [sym__additive_operator] = STATE(1656), + [sym__multiplicative_operator] = STATE(1656), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1656), + [sym__referenceable_operator] = STATE(1656), + [sym__eq_eq] = STATE(1656), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3851), + [sym_real_literal] = ACTIONS(3853), + [sym_integer_literal] = ACTIONS(3851), + [sym_hex_literal] = ACTIONS(3853), + [sym_oct_literal] = ACTIONS(3853), + [sym_bin_literal] = ACTIONS(3853), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3851), + [anon_sym_GT] = ACTIONS(3851), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3851), + [anon_sym_POUNDfileID] = ACTIONS(3853), + [anon_sym_POUNDfilePath] = ACTIONS(3853), + [anon_sym_POUNDline] = ACTIONS(3853), + [anon_sym_POUNDcolumn] = ACTIONS(3853), + [anon_sym_POUNDfunction] = ACTIONS(3853), + [anon_sym_POUNDdsohandle] = ACTIONS(3853), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3851), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3851), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3851), + [anon_sym_LT_EQ] = ACTIONS(3851), + [anon_sym_GT_EQ] = ACTIONS(3851), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3851), + [anon_sym_SLASH] = ACTIONS(3851), + [anon_sym_PERCENT] = ACTIONS(3851), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3853), + [sym__plus_then_ws] = ACTIONS(3853), + [sym__minus_then_ws] = ACTIONS(3853), + [sym_bang] = ACTIONS(1069), + }, + [932] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1986), + [sym_boolean_literal] = STATE(1986), + [sym__string_literal] = STATE(1986), + [sym_line_string_literal] = STATE(1986), + [sym_multi_line_string_literal] = STATE(1986), + [sym_raw_string_literal] = STATE(1986), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1986), + [sym__unary_expression] = STATE(1986), + [sym_postfix_expression] = STATE(1986), + [sym_constructor_expression] = STATE(1986), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1986), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1986), + [sym_prefix_expression] = STATE(1986), + [sym_as_expression] = STATE(1986), + [sym_selector_expression] = STATE(1986), + [sym__binary_expression] = STATE(1986), + [sym_multiplicative_expression] = STATE(1986), + [sym_additive_expression] = STATE(1986), + [sym_range_expression] = STATE(1986), + [sym_infix_expression] = STATE(1986), + [sym_nil_coalescing_expression] = STATE(1986), + [sym_check_expression] = STATE(1986), + [sym_comparison_expression] = STATE(1986), + [sym_equality_expression] = STATE(1986), + [sym_conjunction_expression] = STATE(1986), + [sym_disjunction_expression] = STATE(1986), + [sym_bitwise_operation] = STATE(1986), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1986), + [sym_await_expression] = STATE(1986), + [sym_ternary_expression] = STATE(1986), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1986), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1986), + [sym_dictionary_literal] = STATE(1986), + [sym__special_literal] = STATE(1986), + [sym__playground_literal] = STATE(1986), + [sym_lambda_literal] = STATE(1986), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1986), + [sym_key_path_expression] = STATE(1986), + [sym_key_path_string_expression] = STATE(1986), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1986), + [sym__comparison_operator] = STATE(1986), + [sym__additive_operator] = STATE(1986), + [sym__multiplicative_operator] = STATE(1986), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1986), + [sym__referenceable_operator] = STATE(1986), + [sym__eq_eq] = STATE(1986), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3855), + [sym_real_literal] = ACTIONS(3857), + [sym_integer_literal] = ACTIONS(3855), + [sym_hex_literal] = ACTIONS(3857), + [sym_oct_literal] = ACTIONS(3857), + [sym_bin_literal] = ACTIONS(3857), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3855), + [anon_sym_GT] = ACTIONS(3855), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3855), + [anon_sym_POUNDfileID] = ACTIONS(3857), + [anon_sym_POUNDfilePath] = ACTIONS(3857), + [anon_sym_POUNDline] = ACTIONS(3857), + [anon_sym_POUNDcolumn] = ACTIONS(3857), + [anon_sym_POUNDfunction] = ACTIONS(3857), + [anon_sym_POUNDdsohandle] = ACTIONS(3857), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3855), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3855), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3855), + [anon_sym_LT_EQ] = ACTIONS(3855), + [anon_sym_GT_EQ] = ACTIONS(3855), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3855), + [anon_sym_SLASH] = ACTIONS(3855), + [anon_sym_PERCENT] = ACTIONS(3855), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3857), + [sym__plus_then_ws] = ACTIONS(3857), + [sym__minus_then_ws] = ACTIONS(3857), + [sym_bang] = ACTIONS(1069), + }, + [933] = { + [sym_simple_identifier] = STATE(2639), + [sym__basic_literal] = STATE(1657), + [sym_boolean_literal] = STATE(1657), + [sym__string_literal] = STATE(1657), + [sym_line_string_literal] = STATE(1657), + [sym_multi_line_string_literal] = STATE(1657), + [sym_raw_string_literal] = STATE(1657), + [sym_user_type] = STATE(5943), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5943), + [sym_dictionary_type] = STATE(5943), + [sym__expression] = STATE(1657), + [sym__unary_expression] = STATE(1657), + [sym_postfix_expression] = STATE(1657), + [sym_constructor_expression] = STATE(1657), + [sym_navigation_expression] = STATE(2662), + [sym__navigable_type_expression] = STATE(7588), + [sym_open_start_range_expression] = STATE(1657), + [sym__range_operator] = STATE(878), + [sym_open_end_range_expression] = STATE(1657), + [sym_prefix_expression] = STATE(1657), + [sym_as_expression] = STATE(1657), + [sym_selector_expression] = STATE(1657), + [sym__binary_expression] = STATE(1657), + [sym_multiplicative_expression] = STATE(1657), + [sym_additive_expression] = STATE(1657), + [sym_range_expression] = STATE(1657), + [sym_infix_expression] = STATE(1657), + [sym_nil_coalescing_expression] = STATE(1657), + [sym_check_expression] = STATE(1657), + [sym_comparison_expression] = STATE(1657), + [sym_equality_expression] = STATE(1657), + [sym_conjunction_expression] = STATE(1657), + [sym_disjunction_expression] = STATE(1657), + [sym_bitwise_operation] = STATE(1657), + [sym_custom_operator] = STATE(1335), + [sym_try_expression] = STATE(1657), + [sym_await_expression] = STATE(1657), + [sym_ternary_expression] = STATE(1657), + [sym_call_expression] = STATE(2662), + [sym__primary_expression] = STATE(1657), + [sym_tuple_expression] = STATE(2659), + [sym_array_literal] = STATE(1657), + [sym_dictionary_literal] = STATE(1657), + [sym__special_literal] = STATE(1657), + [sym__playground_literal] = STATE(1657), + [sym_lambda_literal] = STATE(1657), + [sym_self_expression] = STATE(2659), + [sym_super_expression] = STATE(1657), + [sym_key_path_expression] = STATE(1657), + [sym_key_path_string_expression] = STATE(1657), + [sym__try_operator] = STATE(877), + [sym__equality_operator] = STATE(1657), + [sym__comparison_operator] = STATE(1657), + [sym__additive_operator] = STATE(1657), + [sym__multiplicative_operator] = STATE(1657), + [sym__prefix_unary_operator] = STATE(876), + [sym_directly_assignable_expression] = STATE(5931), + [sym_assignment] = STATE(1657), + [sym__referenceable_operator] = STATE(1657), + [sym__eq_eq] = STATE(1657), + [sym__dot] = STATE(876), + [sym__three_dot_operator] = STATE(1356), + [sym__open_ended_range_operator] = STATE(878), + [aux_sym_raw_string_literal_repeat1] = STATE(7583), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(1411), + [aux_sym_simple_identifier_token2] = ACTIONS(1413), + [aux_sym_simple_identifier_token3] = ACTIONS(1413), + [aux_sym_simple_identifier_token4] = ACTIONS(1413), + [anon_sym_nil] = ACTIONS(3859), + [sym_real_literal] = ACTIONS(3861), + [sym_integer_literal] = ACTIONS(3859), + [sym_hex_literal] = ACTIONS(3861), + [sym_oct_literal] = ACTIONS(3861), + [sym_bin_literal] = ACTIONS(3861), + [anon_sym_true] = ACTIONS(1419), + [anon_sym_false] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1421), + [anon_sym_BSLASH] = ACTIONS(1423), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_POUNDselector] = ACTIONS(1435), + [aux_sym_custom_operator_token1] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(3859), + [anon_sym_GT] = ACTIONS(3859), + [sym__await_operator] = ACTIONS(1439), + [anon_sym_POUNDfile] = ACTIONS(3859), + [anon_sym_POUNDfileID] = ACTIONS(3861), + [anon_sym_POUNDfilePath] = ACTIONS(3861), + [anon_sym_POUNDline] = ACTIONS(3861), + [anon_sym_POUNDcolumn] = ACTIONS(3861), + [anon_sym_POUNDfunction] = ACTIONS(3861), + [anon_sym_POUNDdsohandle] = ACTIONS(3861), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1441), + [anon_sym_POUNDfileLiteral] = ACTIONS(1441), + [anon_sym_POUNDimageLiteral] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_self] = ACTIONS(1445), + [anon_sym_super] = ACTIONS(1447), + [anon_sym_POUNDkeyPath] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1451), + [anon_sym_try_BANG] = ACTIONS(1453), + [anon_sym_try_QMARK] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(3859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3859), + [anon_sym_LT_EQ] = ACTIONS(3859), + [anon_sym_GT_EQ] = ACTIONS(3859), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(3859), + [anon_sym_SLASH] = ACTIONS(3859), + [anon_sym_PERCENT] = ACTIONS(3859), + [anon_sym_PLUS_PLUS] = ACTIONS(1457), + [anon_sym_DASH_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1457), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1459), + [sym__dot_custom] = ACTIONS(1461), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(1465), + [sym__eq_eq_custom] = ACTIONS(3861), + [sym__plus_then_ws] = ACTIONS(3861), + [sym__minus_then_ws] = ACTIONS(3861), + [sym_bang] = ACTIONS(1467), + }, + [934] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1945), + [sym_boolean_literal] = STATE(1945), + [sym__string_literal] = STATE(1945), + [sym_line_string_literal] = STATE(1945), + [sym_multi_line_string_literal] = STATE(1945), + [sym_raw_string_literal] = STATE(1945), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1945), + [sym__unary_expression] = STATE(1945), + [sym_postfix_expression] = STATE(1945), + [sym_constructor_expression] = STATE(1945), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1945), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1945), + [sym_prefix_expression] = STATE(1945), + [sym_as_expression] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym__binary_expression] = STATE(1945), + [sym_multiplicative_expression] = STATE(1945), + [sym_additive_expression] = STATE(1945), + [sym_range_expression] = STATE(1945), + [sym_infix_expression] = STATE(1945), + [sym_nil_coalescing_expression] = STATE(1945), + [sym_check_expression] = STATE(1945), + [sym_comparison_expression] = STATE(1945), + [sym_equality_expression] = STATE(1945), + [sym_conjunction_expression] = STATE(1945), + [sym_disjunction_expression] = STATE(1945), + [sym_bitwise_operation] = STATE(1945), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1945), + [sym_await_expression] = STATE(1945), + [sym_ternary_expression] = STATE(1945), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1945), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1945), + [sym_dictionary_literal] = STATE(1945), + [sym__special_literal] = STATE(1945), + [sym__playground_literal] = STATE(1945), + [sym_lambda_literal] = STATE(1945), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1945), + [sym_key_path_expression] = STATE(1945), + [sym_key_path_string_expression] = STATE(1945), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1945), + [sym__comparison_operator] = STATE(1945), + [sym__additive_operator] = STATE(1945), + [sym__multiplicative_operator] = STATE(1945), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1945), + [sym__referenceable_operator] = STATE(1945), + [sym__eq_eq] = STATE(1945), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3863), + [sym_real_literal] = ACTIONS(3865), + [sym_integer_literal] = ACTIONS(3863), + [sym_hex_literal] = ACTIONS(3865), + [sym_oct_literal] = ACTIONS(3865), + [sym_bin_literal] = ACTIONS(3865), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3863), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3863), + [anon_sym_POUNDfileID] = ACTIONS(3865), + [anon_sym_POUNDfilePath] = ACTIONS(3865), + [anon_sym_POUNDline] = ACTIONS(3865), + [anon_sym_POUNDcolumn] = ACTIONS(3865), + [anon_sym_POUNDfunction] = ACTIONS(3865), + [anon_sym_POUNDdsohandle] = ACTIONS(3865), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3863), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3863), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3863), + [anon_sym_LT_EQ] = ACTIONS(3863), + [anon_sym_GT_EQ] = ACTIONS(3863), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3863), + [anon_sym_SLASH] = ACTIONS(3863), + [anon_sym_PERCENT] = ACTIONS(3863), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3865), + [sym__plus_then_ws] = ACTIONS(3865), + [sym__minus_then_ws] = ACTIONS(3865), + [sym_bang] = ACTIONS(1069), + }, + [935] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1653), + [sym_boolean_literal] = STATE(1653), + [sym__string_literal] = STATE(1653), + [sym_line_string_literal] = STATE(1653), + [sym_multi_line_string_literal] = STATE(1653), + [sym_raw_string_literal] = STATE(1653), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1653), + [sym__unary_expression] = STATE(1653), + [sym_postfix_expression] = STATE(1653), + [sym_constructor_expression] = STATE(1653), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1653), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1653), + [sym_prefix_expression] = STATE(1653), + [sym_as_expression] = STATE(1653), + [sym_selector_expression] = STATE(1653), + [sym__binary_expression] = STATE(1653), + [sym_multiplicative_expression] = STATE(1653), + [sym_additive_expression] = STATE(1653), + [sym_range_expression] = STATE(1653), + [sym_infix_expression] = STATE(1653), + [sym_nil_coalescing_expression] = STATE(1653), + [sym_check_expression] = STATE(1653), + [sym_comparison_expression] = STATE(1653), + [sym_equality_expression] = STATE(1653), + [sym_conjunction_expression] = STATE(1653), + [sym_disjunction_expression] = STATE(1653), + [sym_bitwise_operation] = STATE(1653), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1653), + [sym_await_expression] = STATE(1653), + [sym_ternary_expression] = STATE(1653), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1653), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1653), + [sym_dictionary_literal] = STATE(1653), + [sym__special_literal] = STATE(1653), + [sym__playground_literal] = STATE(1653), + [sym_lambda_literal] = STATE(1653), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1653), + [sym_key_path_expression] = STATE(1653), + [sym_key_path_string_expression] = STATE(1653), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1653), + [sym__comparison_operator] = STATE(1653), + [sym__additive_operator] = STATE(1653), + [sym__multiplicative_operator] = STATE(1653), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1653), + [sym__referenceable_operator] = STATE(1653), + [sym__eq_eq] = STATE(1653), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3867), + [sym_real_literal] = ACTIONS(3869), + [sym_integer_literal] = ACTIONS(3867), + [sym_hex_literal] = ACTIONS(3869), + [sym_oct_literal] = ACTIONS(3869), + [sym_bin_literal] = ACTIONS(3869), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3867), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3867), + [anon_sym_POUNDfileID] = ACTIONS(3869), + [anon_sym_POUNDfilePath] = ACTIONS(3869), + [anon_sym_POUNDline] = ACTIONS(3869), + [anon_sym_POUNDcolumn] = ACTIONS(3869), + [anon_sym_POUNDfunction] = ACTIONS(3869), + [anon_sym_POUNDdsohandle] = ACTIONS(3869), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3867), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3867), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3867), + [anon_sym_LT_EQ] = ACTIONS(3867), + [anon_sym_GT_EQ] = ACTIONS(3867), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3867), + [anon_sym_SLASH] = ACTIONS(3867), + [anon_sym_PERCENT] = ACTIONS(3867), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3869), + [sym__plus_then_ws] = ACTIONS(3869), + [sym__minus_then_ws] = ACTIONS(3869), + [sym_bang] = ACTIONS(1069), + }, + [936] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1652), + [sym_boolean_literal] = STATE(1652), + [sym__string_literal] = STATE(1652), + [sym_line_string_literal] = STATE(1652), + [sym_multi_line_string_literal] = STATE(1652), + [sym_raw_string_literal] = STATE(1652), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1652), + [sym__unary_expression] = STATE(1652), + [sym_postfix_expression] = STATE(1652), + [sym_constructor_expression] = STATE(1652), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1652), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1652), + [sym_prefix_expression] = STATE(1652), + [sym_as_expression] = STATE(1652), + [sym_selector_expression] = STATE(1652), + [sym__binary_expression] = STATE(1652), + [sym_multiplicative_expression] = STATE(1652), + [sym_additive_expression] = STATE(1652), + [sym_range_expression] = STATE(1652), + [sym_infix_expression] = STATE(1652), + [sym_nil_coalescing_expression] = STATE(1652), + [sym_check_expression] = STATE(1652), + [sym_comparison_expression] = STATE(1652), + [sym_equality_expression] = STATE(1652), + [sym_conjunction_expression] = STATE(1652), + [sym_disjunction_expression] = STATE(1652), + [sym_bitwise_operation] = STATE(1652), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1652), + [sym_await_expression] = STATE(1652), + [sym_ternary_expression] = STATE(1652), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1652), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1652), + [sym_dictionary_literal] = STATE(1652), + [sym__special_literal] = STATE(1652), + [sym__playground_literal] = STATE(1652), + [sym_lambda_literal] = STATE(1652), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1652), + [sym_key_path_expression] = STATE(1652), + [sym_key_path_string_expression] = STATE(1652), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1652), + [sym__comparison_operator] = STATE(1652), + [sym__additive_operator] = STATE(1652), + [sym__multiplicative_operator] = STATE(1652), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1652), + [sym__referenceable_operator] = STATE(1652), + [sym__eq_eq] = STATE(1652), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3871), + [sym_real_literal] = ACTIONS(3873), + [sym_integer_literal] = ACTIONS(3871), + [sym_hex_literal] = ACTIONS(3873), + [sym_oct_literal] = ACTIONS(3873), + [sym_bin_literal] = ACTIONS(3873), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3871), + [anon_sym_GT] = ACTIONS(3871), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3871), + [anon_sym_POUNDfileID] = ACTIONS(3873), + [anon_sym_POUNDfilePath] = ACTIONS(3873), + [anon_sym_POUNDline] = ACTIONS(3873), + [anon_sym_POUNDcolumn] = ACTIONS(3873), + [anon_sym_POUNDfunction] = ACTIONS(3873), + [anon_sym_POUNDdsohandle] = ACTIONS(3873), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3871), + [anon_sym_LT_EQ] = ACTIONS(3871), + [anon_sym_GT_EQ] = ACTIONS(3871), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3871), + [anon_sym_SLASH] = ACTIONS(3871), + [anon_sym_PERCENT] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3873), + [sym__plus_then_ws] = ACTIONS(3873), + [sym__minus_then_ws] = ACTIONS(3873), + [sym_bang] = ACTIONS(1069), + }, + [937] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2218), + [sym_boolean_literal] = STATE(2218), + [sym__string_literal] = STATE(2218), + [sym_line_string_literal] = STATE(2218), + [sym_multi_line_string_literal] = STATE(2218), + [sym_raw_string_literal] = STATE(2218), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2218), + [sym__unary_expression] = STATE(2218), + [sym_postfix_expression] = STATE(2218), + [sym_constructor_expression] = STATE(2218), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2218), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2218), + [sym_prefix_expression] = STATE(2218), + [sym_as_expression] = STATE(2218), + [sym_selector_expression] = STATE(2218), + [sym__binary_expression] = STATE(2218), + [sym_multiplicative_expression] = STATE(2218), + [sym_additive_expression] = STATE(2218), + [sym_range_expression] = STATE(2218), + [sym_infix_expression] = STATE(2218), + [sym_nil_coalescing_expression] = STATE(2218), + [sym_check_expression] = STATE(2218), + [sym_comparison_expression] = STATE(2218), + [sym_equality_expression] = STATE(2218), + [sym_conjunction_expression] = STATE(2218), + [sym_disjunction_expression] = STATE(2218), + [sym_bitwise_operation] = STATE(2218), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2218), + [sym_await_expression] = STATE(2218), + [sym_ternary_expression] = STATE(2218), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2218), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2218), + [sym_dictionary_literal] = STATE(2218), + [sym__special_literal] = STATE(2218), + [sym__playground_literal] = STATE(2218), + [sym_lambda_literal] = STATE(2218), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2218), + [sym_key_path_expression] = STATE(2218), + [sym_key_path_string_expression] = STATE(2218), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2218), + [sym__comparison_operator] = STATE(2218), + [sym__additive_operator] = STATE(2218), + [sym__multiplicative_operator] = STATE(2218), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2218), + [sym__referenceable_operator] = STATE(2218), + [sym__eq_eq] = STATE(2218), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3875), + [sym_real_literal] = ACTIONS(3877), + [sym_integer_literal] = ACTIONS(3875), + [sym_hex_literal] = ACTIONS(3877), + [sym_oct_literal] = ACTIONS(3877), + [sym_bin_literal] = ACTIONS(3877), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3875), + [anon_sym_GT] = ACTIONS(3875), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3875), + [anon_sym_POUNDfileID] = ACTIONS(3877), + [anon_sym_POUNDfilePath] = ACTIONS(3877), + [anon_sym_POUNDline] = ACTIONS(3877), + [anon_sym_POUNDcolumn] = ACTIONS(3877), + [anon_sym_POUNDfunction] = ACTIONS(3877), + [anon_sym_POUNDdsohandle] = ACTIONS(3877), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3875), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3875), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3875), + [anon_sym_LT_EQ] = ACTIONS(3875), + [anon_sym_GT_EQ] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3875), + [anon_sym_SLASH] = ACTIONS(3875), + [anon_sym_PERCENT] = ACTIONS(3875), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3877), + [sym__plus_then_ws] = ACTIONS(3877), + [sym__minus_then_ws] = ACTIONS(3877), + [sym_bang] = ACTIONS(833), + }, + [938] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1944), + [sym_boolean_literal] = STATE(1944), + [sym__string_literal] = STATE(1944), + [sym_line_string_literal] = STATE(1944), + [sym_multi_line_string_literal] = STATE(1944), + [sym_raw_string_literal] = STATE(1944), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1944), + [sym__unary_expression] = STATE(1944), + [sym_postfix_expression] = STATE(1944), + [sym_constructor_expression] = STATE(1944), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1944), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1944), + [sym_prefix_expression] = STATE(1944), + [sym_as_expression] = STATE(1944), + [sym_selector_expression] = STATE(1944), + [sym__binary_expression] = STATE(1944), + [sym_multiplicative_expression] = STATE(1944), + [sym_additive_expression] = STATE(1944), + [sym_range_expression] = STATE(1944), + [sym_infix_expression] = STATE(1944), + [sym_nil_coalescing_expression] = STATE(1944), + [sym_check_expression] = STATE(1944), + [sym_comparison_expression] = STATE(1944), + [sym_equality_expression] = STATE(1944), + [sym_conjunction_expression] = STATE(1944), + [sym_disjunction_expression] = STATE(1944), + [sym_bitwise_operation] = STATE(1944), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1944), + [sym_await_expression] = STATE(1944), + [sym_ternary_expression] = STATE(1944), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1944), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1944), + [sym_dictionary_literal] = STATE(1944), + [sym__special_literal] = STATE(1944), + [sym__playground_literal] = STATE(1944), + [sym_lambda_literal] = STATE(1944), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1944), + [sym_key_path_expression] = STATE(1944), + [sym_key_path_string_expression] = STATE(1944), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1944), + [sym__comparison_operator] = STATE(1944), + [sym__additive_operator] = STATE(1944), + [sym__multiplicative_operator] = STATE(1944), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1944), + [sym__referenceable_operator] = STATE(1944), + [sym__eq_eq] = STATE(1944), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3879), + [sym_real_literal] = ACTIONS(3881), + [sym_integer_literal] = ACTIONS(3879), + [sym_hex_literal] = ACTIONS(3881), + [sym_oct_literal] = ACTIONS(3881), + [sym_bin_literal] = ACTIONS(3881), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3879), + [anon_sym_GT] = ACTIONS(3879), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3879), + [anon_sym_POUNDfileID] = ACTIONS(3881), + [anon_sym_POUNDfilePath] = ACTIONS(3881), + [anon_sym_POUNDline] = ACTIONS(3881), + [anon_sym_POUNDcolumn] = ACTIONS(3881), + [anon_sym_POUNDfunction] = ACTIONS(3881), + [anon_sym_POUNDdsohandle] = ACTIONS(3881), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3879), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3879), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3879), + [anon_sym_LT_EQ] = ACTIONS(3879), + [anon_sym_GT_EQ] = ACTIONS(3879), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3879), + [anon_sym_SLASH] = ACTIONS(3879), + [anon_sym_PERCENT] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3881), + [sym__plus_then_ws] = ACTIONS(3881), + [sym__minus_then_ws] = ACTIONS(3881), + [sym_bang] = ACTIONS(1069), + }, + [939] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1651), + [sym_boolean_literal] = STATE(1651), + [sym__string_literal] = STATE(1651), + [sym_line_string_literal] = STATE(1651), + [sym_multi_line_string_literal] = STATE(1651), + [sym_raw_string_literal] = STATE(1651), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1651), + [sym__unary_expression] = STATE(1651), + [sym_postfix_expression] = STATE(1651), + [sym_constructor_expression] = STATE(1651), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1651), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1651), + [sym_prefix_expression] = STATE(1651), + [sym_as_expression] = STATE(1651), + [sym_selector_expression] = STATE(1651), + [sym__binary_expression] = STATE(1651), + [sym_multiplicative_expression] = STATE(1651), + [sym_additive_expression] = STATE(1651), + [sym_range_expression] = STATE(1651), + [sym_infix_expression] = STATE(1651), + [sym_nil_coalescing_expression] = STATE(1651), + [sym_check_expression] = STATE(1651), + [sym_comparison_expression] = STATE(1651), + [sym_equality_expression] = STATE(1651), + [sym_conjunction_expression] = STATE(1651), + [sym_disjunction_expression] = STATE(1651), + [sym_bitwise_operation] = STATE(1651), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1651), + [sym_await_expression] = STATE(1651), + [sym_ternary_expression] = STATE(1651), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1651), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1651), + [sym_dictionary_literal] = STATE(1651), + [sym__special_literal] = STATE(1651), + [sym__playground_literal] = STATE(1651), + [sym_lambda_literal] = STATE(1651), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1651), + [sym_key_path_expression] = STATE(1651), + [sym_key_path_string_expression] = STATE(1651), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1651), + [sym__comparison_operator] = STATE(1651), + [sym__additive_operator] = STATE(1651), + [sym__multiplicative_operator] = STATE(1651), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1651), + [sym__referenceable_operator] = STATE(1651), + [sym__eq_eq] = STATE(1651), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3883), + [sym_real_literal] = ACTIONS(3885), + [sym_integer_literal] = ACTIONS(3883), + [sym_hex_literal] = ACTIONS(3885), + [sym_oct_literal] = ACTIONS(3885), + [sym_bin_literal] = ACTIONS(3885), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3883), + [anon_sym_GT] = ACTIONS(3883), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3883), + [anon_sym_POUNDfileID] = ACTIONS(3885), + [anon_sym_POUNDfilePath] = ACTIONS(3885), + [anon_sym_POUNDline] = ACTIONS(3885), + [anon_sym_POUNDcolumn] = ACTIONS(3885), + [anon_sym_POUNDfunction] = ACTIONS(3885), + [anon_sym_POUNDdsohandle] = ACTIONS(3885), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3883), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3883), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3883), + [anon_sym_LT_EQ] = ACTIONS(3883), + [anon_sym_GT_EQ] = ACTIONS(3883), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_SLASH] = ACTIONS(3883), + [anon_sym_PERCENT] = ACTIONS(3883), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3885), + [sym__plus_then_ws] = ACTIONS(3885), + [sym__minus_then_ws] = ACTIONS(3885), + [sym_bang] = ACTIONS(1069), + }, + [940] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1650), + [sym_boolean_literal] = STATE(1650), + [sym__string_literal] = STATE(1650), + [sym_line_string_literal] = STATE(1650), + [sym_multi_line_string_literal] = STATE(1650), + [sym_raw_string_literal] = STATE(1650), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1650), + [sym__unary_expression] = STATE(1650), + [sym_postfix_expression] = STATE(1650), + [sym_constructor_expression] = STATE(1650), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1650), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1650), + [sym_prefix_expression] = STATE(1650), + [sym_as_expression] = STATE(1650), + [sym_selector_expression] = STATE(1650), + [sym__binary_expression] = STATE(1650), + [sym_multiplicative_expression] = STATE(1650), + [sym_additive_expression] = STATE(1650), + [sym_range_expression] = STATE(1650), + [sym_infix_expression] = STATE(1650), + [sym_nil_coalescing_expression] = STATE(1650), + [sym_check_expression] = STATE(1650), + [sym_comparison_expression] = STATE(1650), + [sym_equality_expression] = STATE(1650), + [sym_conjunction_expression] = STATE(1650), + [sym_disjunction_expression] = STATE(1650), + [sym_bitwise_operation] = STATE(1650), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1650), + [sym_await_expression] = STATE(1650), + [sym_ternary_expression] = STATE(1650), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1650), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1650), + [sym_dictionary_literal] = STATE(1650), + [sym__special_literal] = STATE(1650), + [sym__playground_literal] = STATE(1650), + [sym_lambda_literal] = STATE(1650), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1650), + [sym_key_path_expression] = STATE(1650), + [sym_key_path_string_expression] = STATE(1650), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1650), + [sym__comparison_operator] = STATE(1650), + [sym__additive_operator] = STATE(1650), + [sym__multiplicative_operator] = STATE(1650), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1650), + [sym__referenceable_operator] = STATE(1650), + [sym__eq_eq] = STATE(1650), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3887), + [sym_real_literal] = ACTIONS(3889), + [sym_integer_literal] = ACTIONS(3887), + [sym_hex_literal] = ACTIONS(3889), + [sym_oct_literal] = ACTIONS(3889), + [sym_bin_literal] = ACTIONS(3889), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3887), + [anon_sym_GT] = ACTIONS(3887), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3887), + [anon_sym_POUNDfileID] = ACTIONS(3889), + [anon_sym_POUNDfilePath] = ACTIONS(3889), + [anon_sym_POUNDline] = ACTIONS(3889), + [anon_sym_POUNDcolumn] = ACTIONS(3889), + [anon_sym_POUNDfunction] = ACTIONS(3889), + [anon_sym_POUNDdsohandle] = ACTIONS(3889), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3887), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3887), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3887), + [anon_sym_LT_EQ] = ACTIONS(3887), + [anon_sym_GT_EQ] = ACTIONS(3887), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3887), + [anon_sym_SLASH] = ACTIONS(3887), + [anon_sym_PERCENT] = ACTIONS(3887), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3889), + [sym__plus_then_ws] = ACTIONS(3889), + [sym__minus_then_ws] = ACTIONS(3889), + [sym_bang] = ACTIONS(1069), + }, + [941] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1157), + [sym__unary_expression] = STATE(1157), + [sym_postfix_expression] = STATE(1157), + [sym_constructor_expression] = STATE(1157), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1157), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1157), + [sym_await_expression] = STATE(1157), + [sym_ternary_expression] = STATE(1157), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1157), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1157), + [sym_key_path_expression] = STATE(1157), + [sym_key_path_string_expression] = STATE(1157), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1157), + [sym__comparison_operator] = STATE(1157), + [sym__additive_operator] = STATE(1157), + [sym__multiplicative_operator] = STATE(1157), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1157), + [sym__referenceable_operator] = STATE(1157), + [sym__eq_eq] = STATE(1157), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(3891), + [sym_real_literal] = ACTIONS(3893), + [sym_integer_literal] = ACTIONS(3891), + [sym_hex_literal] = ACTIONS(3893), + [sym_oct_literal] = ACTIONS(3893), + [sym_bin_literal] = ACTIONS(3893), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(3891), + [anon_sym_GT] = ACTIONS(3891), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(3891), + [anon_sym_POUNDfileID] = ACTIONS(3893), + [anon_sym_POUNDfilePath] = ACTIONS(3893), + [anon_sym_POUNDline] = ACTIONS(3893), + [anon_sym_POUNDcolumn] = ACTIONS(3893), + [anon_sym_POUNDfunction] = ACTIONS(3893), + [anon_sym_POUNDdsohandle] = ACTIONS(3893), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(3891), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3891), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3891), + [anon_sym_LT_EQ] = ACTIONS(3891), + [anon_sym_GT_EQ] = ACTIONS(3891), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(3891), + [anon_sym_SLASH] = ACTIONS(3891), + [anon_sym_PERCENT] = ACTIONS(3891), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(3893), + [sym__plus_then_ws] = ACTIONS(3893), + [sym__minus_then_ws] = ACTIONS(3893), + [sym_bang] = ACTIONS(481), + }, + [942] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1578), + [sym_boolean_literal] = STATE(1578), + [sym__string_literal] = STATE(1578), + [sym_line_string_literal] = STATE(1578), + [sym_multi_line_string_literal] = STATE(1578), + [sym_raw_string_literal] = STATE(1578), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1578), + [sym__unary_expression] = STATE(1578), + [sym_postfix_expression] = STATE(1578), + [sym_constructor_expression] = STATE(1578), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1578), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1578), + [sym_prefix_expression] = STATE(1578), + [sym_as_expression] = STATE(1578), + [sym_selector_expression] = STATE(1578), + [sym__binary_expression] = STATE(1578), + [sym_multiplicative_expression] = STATE(1578), + [sym_additive_expression] = STATE(1578), + [sym_range_expression] = STATE(1578), + [sym_infix_expression] = STATE(1578), + [sym_nil_coalescing_expression] = STATE(1578), + [sym_check_expression] = STATE(1578), + [sym_comparison_expression] = STATE(1578), + [sym_equality_expression] = STATE(1578), + [sym_conjunction_expression] = STATE(1578), + [sym_disjunction_expression] = STATE(1578), + [sym_bitwise_operation] = STATE(1578), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1578), + [sym_await_expression] = STATE(1578), + [sym_ternary_expression] = STATE(1578), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1578), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1578), + [sym_dictionary_literal] = STATE(1578), + [sym__special_literal] = STATE(1578), + [sym__playground_literal] = STATE(1578), + [sym_lambda_literal] = STATE(1578), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1578), + [sym_key_path_expression] = STATE(1578), + [sym_key_path_string_expression] = STATE(1578), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1578), + [sym__comparison_operator] = STATE(1578), + [sym__additive_operator] = STATE(1578), + [sym__multiplicative_operator] = STATE(1578), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1578), + [sym__referenceable_operator] = STATE(1578), + [sym__eq_eq] = STATE(1578), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3895), + [sym_real_literal] = ACTIONS(3897), + [sym_integer_literal] = ACTIONS(3895), + [sym_hex_literal] = ACTIONS(3897), + [sym_oct_literal] = ACTIONS(3897), + [sym_bin_literal] = ACTIONS(3897), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3895), + [anon_sym_POUNDfileID] = ACTIONS(3897), + [anon_sym_POUNDfilePath] = ACTIONS(3897), + [anon_sym_POUNDline] = ACTIONS(3897), + [anon_sym_POUNDcolumn] = ACTIONS(3897), + [anon_sym_POUNDfunction] = ACTIONS(3897), + [anon_sym_POUNDdsohandle] = ACTIONS(3897), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3895), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3895), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3895), + [anon_sym_LT_EQ] = ACTIONS(3895), + [anon_sym_GT_EQ] = ACTIONS(3895), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3895), + [anon_sym_SLASH] = ACTIONS(3895), + [anon_sym_PERCENT] = ACTIONS(3895), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3897), + [sym__plus_then_ws] = ACTIONS(3897), + [sym__minus_then_ws] = ACTIONS(3897), + [sym_bang] = ACTIONS(1069), + }, + [943] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1581), + [sym_boolean_literal] = STATE(1581), + [sym__string_literal] = STATE(1581), + [sym_line_string_literal] = STATE(1581), + [sym_multi_line_string_literal] = STATE(1581), + [sym_raw_string_literal] = STATE(1581), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1581), + [sym__unary_expression] = STATE(1581), + [sym_postfix_expression] = STATE(1581), + [sym_constructor_expression] = STATE(1581), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1581), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1581), + [sym_prefix_expression] = STATE(1581), + [sym_as_expression] = STATE(1581), + [sym_selector_expression] = STATE(1581), + [sym__binary_expression] = STATE(1581), + [sym_multiplicative_expression] = STATE(1581), + [sym_additive_expression] = STATE(1581), + [sym_range_expression] = STATE(1581), + [sym_infix_expression] = STATE(1581), + [sym_nil_coalescing_expression] = STATE(1581), + [sym_check_expression] = STATE(1581), + [sym_comparison_expression] = STATE(1581), + [sym_equality_expression] = STATE(1581), + [sym_conjunction_expression] = STATE(1581), + [sym_disjunction_expression] = STATE(1581), + [sym_bitwise_operation] = STATE(1581), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1581), + [sym_await_expression] = STATE(1581), + [sym_ternary_expression] = STATE(1581), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1581), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1581), + [sym_dictionary_literal] = STATE(1581), + [sym__special_literal] = STATE(1581), + [sym__playground_literal] = STATE(1581), + [sym_lambda_literal] = STATE(1581), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1581), + [sym_key_path_expression] = STATE(1581), + [sym_key_path_string_expression] = STATE(1581), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1581), + [sym__comparison_operator] = STATE(1581), + [sym__additive_operator] = STATE(1581), + [sym__multiplicative_operator] = STATE(1581), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1581), + [sym__referenceable_operator] = STATE(1581), + [sym__eq_eq] = STATE(1581), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3899), + [sym_real_literal] = ACTIONS(3901), + [sym_integer_literal] = ACTIONS(3899), + [sym_hex_literal] = ACTIONS(3901), + [sym_oct_literal] = ACTIONS(3901), + [sym_bin_literal] = ACTIONS(3901), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3899), + [anon_sym_GT] = ACTIONS(3899), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3899), + [anon_sym_POUNDfileID] = ACTIONS(3901), + [anon_sym_POUNDfilePath] = ACTIONS(3901), + [anon_sym_POUNDline] = ACTIONS(3901), + [anon_sym_POUNDcolumn] = ACTIONS(3901), + [anon_sym_POUNDfunction] = ACTIONS(3901), + [anon_sym_POUNDdsohandle] = ACTIONS(3901), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3899), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3899), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3899), + [anon_sym_LT_EQ] = ACTIONS(3899), + [anon_sym_GT_EQ] = ACTIONS(3899), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3899), + [anon_sym_SLASH] = ACTIONS(3899), + [anon_sym_PERCENT] = ACTIONS(3899), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3901), + [sym__plus_then_ws] = ACTIONS(3901), + [sym__minus_then_ws] = ACTIONS(3901), + [sym_bang] = ACTIONS(1069), + }, + [944] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2080), + [sym_boolean_literal] = STATE(2080), + [sym__string_literal] = STATE(2080), + [sym_line_string_literal] = STATE(2080), + [sym_multi_line_string_literal] = STATE(2080), + [sym_raw_string_literal] = STATE(2080), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2080), + [sym__unary_expression] = STATE(2080), + [sym_postfix_expression] = STATE(2080), + [sym_constructor_expression] = STATE(2080), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2080), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2080), + [sym_prefix_expression] = STATE(2080), + [sym_as_expression] = STATE(2080), + [sym_selector_expression] = STATE(2080), + [sym__binary_expression] = STATE(2080), + [sym_multiplicative_expression] = STATE(2080), + [sym_additive_expression] = STATE(2080), + [sym_range_expression] = STATE(2080), + [sym_infix_expression] = STATE(2080), + [sym_nil_coalescing_expression] = STATE(2080), + [sym_check_expression] = STATE(2080), + [sym_comparison_expression] = STATE(2080), + [sym_equality_expression] = STATE(2080), + [sym_conjunction_expression] = STATE(2080), + [sym_disjunction_expression] = STATE(2080), + [sym_bitwise_operation] = STATE(2080), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2080), + [sym_await_expression] = STATE(2080), + [sym_ternary_expression] = STATE(2080), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2080), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2080), + [sym_dictionary_literal] = STATE(2080), + [sym__special_literal] = STATE(2080), + [sym__playground_literal] = STATE(2080), + [sym_lambda_literal] = STATE(2080), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2080), + [sym_key_path_expression] = STATE(2080), + [sym_key_path_string_expression] = STATE(2080), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2080), + [sym__comparison_operator] = STATE(2080), + [sym__additive_operator] = STATE(2080), + [sym__multiplicative_operator] = STATE(2080), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2080), + [sym__referenceable_operator] = STATE(2080), + [sym__eq_eq] = STATE(2080), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3903), + [sym_real_literal] = ACTIONS(3905), + [sym_integer_literal] = ACTIONS(3903), + [sym_hex_literal] = ACTIONS(3905), + [sym_oct_literal] = ACTIONS(3905), + [sym_bin_literal] = ACTIONS(3905), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3903), + [anon_sym_GT] = ACTIONS(3903), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3903), + [anon_sym_POUNDfileID] = ACTIONS(3905), + [anon_sym_POUNDfilePath] = ACTIONS(3905), + [anon_sym_POUNDline] = ACTIONS(3905), + [anon_sym_POUNDcolumn] = ACTIONS(3905), + [anon_sym_POUNDfunction] = ACTIONS(3905), + [anon_sym_POUNDdsohandle] = ACTIONS(3905), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3903), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3903), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3903), + [anon_sym_LT_EQ] = ACTIONS(3903), + [anon_sym_GT_EQ] = ACTIONS(3903), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3903), + [anon_sym_SLASH] = ACTIONS(3903), + [anon_sym_PERCENT] = ACTIONS(3903), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3905), + [sym__plus_then_ws] = ACTIONS(3905), + [sym__minus_then_ws] = ACTIONS(3905), + [sym_bang] = ACTIONS(1069), + }, + [945] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2243), + [sym_boolean_literal] = STATE(2243), + [sym__string_literal] = STATE(2243), + [sym_line_string_literal] = STATE(2243), + [sym_multi_line_string_literal] = STATE(2243), + [sym_raw_string_literal] = STATE(2243), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2243), + [sym__unary_expression] = STATE(2243), + [sym_postfix_expression] = STATE(2243), + [sym_constructor_expression] = STATE(2243), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2243), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2243), + [sym_prefix_expression] = STATE(2243), + [sym_as_expression] = STATE(2243), + [sym_selector_expression] = STATE(2243), + [sym__binary_expression] = STATE(2243), + [sym_multiplicative_expression] = STATE(2243), + [sym_additive_expression] = STATE(2243), + [sym_range_expression] = STATE(2243), + [sym_infix_expression] = STATE(2243), + [sym_nil_coalescing_expression] = STATE(2243), + [sym_check_expression] = STATE(2243), + [sym_comparison_expression] = STATE(2243), + [sym_equality_expression] = STATE(2243), + [sym_conjunction_expression] = STATE(2243), + [sym_disjunction_expression] = STATE(2243), + [sym_bitwise_operation] = STATE(2243), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2243), + [sym_await_expression] = STATE(2243), + [sym_ternary_expression] = STATE(2243), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2243), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2243), + [sym_dictionary_literal] = STATE(2243), + [sym__special_literal] = STATE(2243), + [sym__playground_literal] = STATE(2243), + [sym_lambda_literal] = STATE(2243), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2243), + [sym_key_path_expression] = STATE(2243), + [sym_key_path_string_expression] = STATE(2243), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2243), + [sym__comparison_operator] = STATE(2243), + [sym__additive_operator] = STATE(2243), + [sym__multiplicative_operator] = STATE(2243), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2243), + [sym__referenceable_operator] = STATE(2243), + [sym__eq_eq] = STATE(2243), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3907), + [sym_real_literal] = ACTIONS(3909), + [sym_integer_literal] = ACTIONS(3907), + [sym_hex_literal] = ACTIONS(3909), + [sym_oct_literal] = ACTIONS(3909), + [sym_bin_literal] = ACTIONS(3909), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3907), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3907), + [anon_sym_POUNDfileID] = ACTIONS(3909), + [anon_sym_POUNDfilePath] = ACTIONS(3909), + [anon_sym_POUNDline] = ACTIONS(3909), + [anon_sym_POUNDcolumn] = ACTIONS(3909), + [anon_sym_POUNDfunction] = ACTIONS(3909), + [anon_sym_POUNDdsohandle] = ACTIONS(3909), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3907), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3907), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3907), + [anon_sym_LT_EQ] = ACTIONS(3907), + [anon_sym_GT_EQ] = ACTIONS(3907), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3907), + [anon_sym_SLASH] = ACTIONS(3907), + [anon_sym_PERCENT] = ACTIONS(3907), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3909), + [sym__plus_then_ws] = ACTIONS(3909), + [sym__minus_then_ws] = ACTIONS(3909), + [sym_bang] = ACTIONS(833), + }, + [946] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1589), + [sym_boolean_literal] = STATE(1589), + [sym__string_literal] = STATE(1589), + [sym_line_string_literal] = STATE(1589), + [sym_multi_line_string_literal] = STATE(1589), + [sym_raw_string_literal] = STATE(1589), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1589), + [sym__unary_expression] = STATE(1589), + [sym_postfix_expression] = STATE(1589), + [sym_constructor_expression] = STATE(1589), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1589), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1589), + [sym_prefix_expression] = STATE(1589), + [sym_as_expression] = STATE(1589), + [sym_selector_expression] = STATE(1589), + [sym__binary_expression] = STATE(1589), + [sym_multiplicative_expression] = STATE(1589), + [sym_additive_expression] = STATE(1589), + [sym_range_expression] = STATE(1589), + [sym_infix_expression] = STATE(1589), + [sym_nil_coalescing_expression] = STATE(1589), + [sym_check_expression] = STATE(1589), + [sym_comparison_expression] = STATE(1589), + [sym_equality_expression] = STATE(1589), + [sym_conjunction_expression] = STATE(1589), + [sym_disjunction_expression] = STATE(1589), + [sym_bitwise_operation] = STATE(1589), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1589), + [sym_await_expression] = STATE(1589), + [sym_ternary_expression] = STATE(1589), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1589), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1589), + [sym_dictionary_literal] = STATE(1589), + [sym__special_literal] = STATE(1589), + [sym__playground_literal] = STATE(1589), + [sym_lambda_literal] = STATE(1589), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1589), + [sym_key_path_expression] = STATE(1589), + [sym_key_path_string_expression] = STATE(1589), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1589), + [sym__comparison_operator] = STATE(1589), + [sym__additive_operator] = STATE(1589), + [sym__multiplicative_operator] = STATE(1589), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1589), + [sym__referenceable_operator] = STATE(1589), + [sym__eq_eq] = STATE(1589), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3911), + [sym_real_literal] = ACTIONS(3913), + [sym_integer_literal] = ACTIONS(3911), + [sym_hex_literal] = ACTIONS(3913), + [sym_oct_literal] = ACTIONS(3913), + [sym_bin_literal] = ACTIONS(3913), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_GT] = ACTIONS(3911), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3911), + [anon_sym_POUNDfileID] = ACTIONS(3913), + [anon_sym_POUNDfilePath] = ACTIONS(3913), + [anon_sym_POUNDline] = ACTIONS(3913), + [anon_sym_POUNDcolumn] = ACTIONS(3913), + [anon_sym_POUNDfunction] = ACTIONS(3913), + [anon_sym_POUNDdsohandle] = ACTIONS(3913), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3911), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3911), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3911), + [anon_sym_LT_EQ] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3911), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_SLASH] = ACTIONS(3911), + [anon_sym_PERCENT] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3913), + [sym__plus_then_ws] = ACTIONS(3913), + [sym__minus_then_ws] = ACTIONS(3913), + [sym_bang] = ACTIONS(1069), + }, + [947] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1601), + [sym_boolean_literal] = STATE(1601), + [sym__string_literal] = STATE(1601), + [sym_line_string_literal] = STATE(1601), + [sym_multi_line_string_literal] = STATE(1601), + [sym_raw_string_literal] = STATE(1601), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1601), + [sym__unary_expression] = STATE(1601), + [sym_postfix_expression] = STATE(1601), + [sym_constructor_expression] = STATE(1601), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1601), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1601), + [sym_prefix_expression] = STATE(1601), + [sym_as_expression] = STATE(1601), + [sym_selector_expression] = STATE(1601), + [sym__binary_expression] = STATE(1601), + [sym_multiplicative_expression] = STATE(1601), + [sym_additive_expression] = STATE(1601), + [sym_range_expression] = STATE(1601), + [sym_infix_expression] = STATE(1601), + [sym_nil_coalescing_expression] = STATE(1601), + [sym_check_expression] = STATE(1601), + [sym_comparison_expression] = STATE(1601), + [sym_equality_expression] = STATE(1601), + [sym_conjunction_expression] = STATE(1601), + [sym_disjunction_expression] = STATE(1601), + [sym_bitwise_operation] = STATE(1601), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1601), + [sym_await_expression] = STATE(1601), + [sym_ternary_expression] = STATE(1601), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1601), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1601), + [sym_dictionary_literal] = STATE(1601), + [sym__special_literal] = STATE(1601), + [sym__playground_literal] = STATE(1601), + [sym_lambda_literal] = STATE(1601), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1601), + [sym_key_path_expression] = STATE(1601), + [sym_key_path_string_expression] = STATE(1601), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1601), + [sym__comparison_operator] = STATE(1601), + [sym__additive_operator] = STATE(1601), + [sym__multiplicative_operator] = STATE(1601), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1601), + [sym__referenceable_operator] = STATE(1601), + [sym__eq_eq] = STATE(1601), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(3915), + [sym_real_literal] = ACTIONS(3917), + [sym_integer_literal] = ACTIONS(3915), + [sym_hex_literal] = ACTIONS(3917), + [sym_oct_literal] = ACTIONS(3917), + [sym_bin_literal] = ACTIONS(3917), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(3915), + [anon_sym_GT] = ACTIONS(3915), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(3915), + [anon_sym_POUNDfileID] = ACTIONS(3917), + [anon_sym_POUNDfilePath] = ACTIONS(3917), + [anon_sym_POUNDline] = ACTIONS(3917), + [anon_sym_POUNDcolumn] = ACTIONS(3917), + [anon_sym_POUNDfunction] = ACTIONS(3917), + [anon_sym_POUNDdsohandle] = ACTIONS(3917), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(3915), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3915), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3915), + [anon_sym_LT_EQ] = ACTIONS(3915), + [anon_sym_GT_EQ] = ACTIONS(3915), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(3915), + [anon_sym_SLASH] = ACTIONS(3915), + [anon_sym_PERCENT] = ACTIONS(3915), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(3917), + [sym__plus_then_ws] = ACTIONS(3917), + [sym__minus_then_ws] = ACTIONS(3917), + [sym_bang] = ACTIONS(833), + }, + [948] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1674), + [sym_boolean_literal] = STATE(1674), + [sym__string_literal] = STATE(1674), + [sym_line_string_literal] = STATE(1674), + [sym_multi_line_string_literal] = STATE(1674), + [sym_raw_string_literal] = STATE(1674), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1674), + [sym__unary_expression] = STATE(1674), + [sym_postfix_expression] = STATE(1674), + [sym_constructor_expression] = STATE(1674), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1674), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1674), + [sym_prefix_expression] = STATE(1674), + [sym_as_expression] = STATE(1674), + [sym_selector_expression] = STATE(1674), + [sym__binary_expression] = STATE(1674), + [sym_multiplicative_expression] = STATE(1674), + [sym_additive_expression] = STATE(1674), + [sym_range_expression] = STATE(1674), + [sym_infix_expression] = STATE(1674), + [sym_nil_coalescing_expression] = STATE(1674), + [sym_check_expression] = STATE(1674), + [sym_comparison_expression] = STATE(1674), + [sym_equality_expression] = STATE(1674), + [sym_conjunction_expression] = STATE(1674), + [sym_disjunction_expression] = STATE(1674), + [sym_bitwise_operation] = STATE(1674), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1674), + [sym_await_expression] = STATE(1674), + [sym_ternary_expression] = STATE(1674), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1674), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1674), + [sym_dictionary_literal] = STATE(1674), + [sym__special_literal] = STATE(1674), + [sym__playground_literal] = STATE(1674), + [sym_lambda_literal] = STATE(1674), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1674), + [sym_key_path_expression] = STATE(1674), + [sym_key_path_string_expression] = STATE(1674), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1674), + [sym__comparison_operator] = STATE(1674), + [sym__additive_operator] = STATE(1674), + [sym__multiplicative_operator] = STATE(1674), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1674), + [sym__referenceable_operator] = STATE(1674), + [sym__eq_eq] = STATE(1674), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3919), + [sym_real_literal] = ACTIONS(3921), + [sym_integer_literal] = ACTIONS(3919), + [sym_hex_literal] = ACTIONS(3921), + [sym_oct_literal] = ACTIONS(3921), + [sym_bin_literal] = ACTIONS(3921), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3919), + [anon_sym_GT] = ACTIONS(3919), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3919), + [anon_sym_POUNDfileID] = ACTIONS(3921), + [anon_sym_POUNDfilePath] = ACTIONS(3921), + [anon_sym_POUNDline] = ACTIONS(3921), + [anon_sym_POUNDcolumn] = ACTIONS(3921), + [anon_sym_POUNDfunction] = ACTIONS(3921), + [anon_sym_POUNDdsohandle] = ACTIONS(3921), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3919), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3919), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3919), + [anon_sym_LT_EQ] = ACTIONS(3919), + [anon_sym_GT_EQ] = ACTIONS(3919), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3919), + [anon_sym_SLASH] = ACTIONS(3919), + [anon_sym_PERCENT] = ACTIONS(3919), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3921), + [sym__plus_then_ws] = ACTIONS(3921), + [sym__minus_then_ws] = ACTIONS(3921), + [sym_bang] = ACTIONS(1069), + }, + [949] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1646), + [sym_boolean_literal] = STATE(1646), + [sym__string_literal] = STATE(1646), + [sym_line_string_literal] = STATE(1646), + [sym_multi_line_string_literal] = STATE(1646), + [sym_raw_string_literal] = STATE(1646), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1646), + [sym__unary_expression] = STATE(1646), + [sym_postfix_expression] = STATE(1646), + [sym_constructor_expression] = STATE(1646), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1646), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1646), + [sym_prefix_expression] = STATE(1646), + [sym_as_expression] = STATE(1646), + [sym_selector_expression] = STATE(1646), + [sym__binary_expression] = STATE(1646), + [sym_multiplicative_expression] = STATE(1646), + [sym_additive_expression] = STATE(1646), + [sym_range_expression] = STATE(1646), + [sym_infix_expression] = STATE(1646), + [sym_nil_coalescing_expression] = STATE(1646), + [sym_check_expression] = STATE(1646), + [sym_comparison_expression] = STATE(1646), + [sym_equality_expression] = STATE(1646), + [sym_conjunction_expression] = STATE(1646), + [sym_disjunction_expression] = STATE(1646), + [sym_bitwise_operation] = STATE(1646), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1646), + [sym_await_expression] = STATE(1646), + [sym_ternary_expression] = STATE(1646), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1646), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1646), + [sym_dictionary_literal] = STATE(1646), + [sym__special_literal] = STATE(1646), + [sym__playground_literal] = STATE(1646), + [sym_lambda_literal] = STATE(1646), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1646), + [sym_key_path_expression] = STATE(1646), + [sym_key_path_string_expression] = STATE(1646), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1646), + [sym__comparison_operator] = STATE(1646), + [sym__additive_operator] = STATE(1646), + [sym__multiplicative_operator] = STATE(1646), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1646), + [sym__referenceable_operator] = STATE(1646), + [sym__eq_eq] = STATE(1646), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3923), + [sym_real_literal] = ACTIONS(3925), + [sym_integer_literal] = ACTIONS(3923), + [sym_hex_literal] = ACTIONS(3925), + [sym_oct_literal] = ACTIONS(3925), + [sym_bin_literal] = ACTIONS(3925), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3923), + [anon_sym_GT] = ACTIONS(3923), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3923), + [anon_sym_POUNDfileID] = ACTIONS(3925), + [anon_sym_POUNDfilePath] = ACTIONS(3925), + [anon_sym_POUNDline] = ACTIONS(3925), + [anon_sym_POUNDcolumn] = ACTIONS(3925), + [anon_sym_POUNDfunction] = ACTIONS(3925), + [anon_sym_POUNDdsohandle] = ACTIONS(3925), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3923), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3923), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3923), + [anon_sym_LT_EQ] = ACTIONS(3923), + [anon_sym_GT_EQ] = ACTIONS(3923), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_SLASH] = ACTIONS(3923), + [anon_sym_PERCENT] = ACTIONS(3923), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3925), + [sym__plus_then_ws] = ACTIONS(3925), + [sym__minus_then_ws] = ACTIONS(3925), + [sym_bang] = ACTIONS(1069), + }, + [950] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1645), + [sym_boolean_literal] = STATE(1645), + [sym__string_literal] = STATE(1645), + [sym_line_string_literal] = STATE(1645), + [sym_multi_line_string_literal] = STATE(1645), + [sym_raw_string_literal] = STATE(1645), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1645), + [sym__unary_expression] = STATE(1645), + [sym_postfix_expression] = STATE(1645), + [sym_constructor_expression] = STATE(1645), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1645), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1645), + [sym_prefix_expression] = STATE(1645), + [sym_as_expression] = STATE(1645), + [sym_selector_expression] = STATE(1645), + [sym__binary_expression] = STATE(1645), + [sym_multiplicative_expression] = STATE(1645), + [sym_additive_expression] = STATE(1645), + [sym_range_expression] = STATE(1645), + [sym_infix_expression] = STATE(1645), + [sym_nil_coalescing_expression] = STATE(1645), + [sym_check_expression] = STATE(1645), + [sym_comparison_expression] = STATE(1645), + [sym_equality_expression] = STATE(1645), + [sym_conjunction_expression] = STATE(1645), + [sym_disjunction_expression] = STATE(1645), + [sym_bitwise_operation] = STATE(1645), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1645), + [sym_await_expression] = STATE(1645), + [sym_ternary_expression] = STATE(1645), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1645), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1645), + [sym_dictionary_literal] = STATE(1645), + [sym__special_literal] = STATE(1645), + [sym__playground_literal] = STATE(1645), + [sym_lambda_literal] = STATE(1645), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1645), + [sym_key_path_expression] = STATE(1645), + [sym_key_path_string_expression] = STATE(1645), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1645), + [sym__comparison_operator] = STATE(1645), + [sym__additive_operator] = STATE(1645), + [sym__multiplicative_operator] = STATE(1645), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1645), + [sym__referenceable_operator] = STATE(1645), + [sym__eq_eq] = STATE(1645), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3927), + [sym_real_literal] = ACTIONS(3929), + [sym_integer_literal] = ACTIONS(3927), + [sym_hex_literal] = ACTIONS(3929), + [sym_oct_literal] = ACTIONS(3929), + [sym_bin_literal] = ACTIONS(3929), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3927), + [anon_sym_GT] = ACTIONS(3927), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3927), + [anon_sym_POUNDfileID] = ACTIONS(3929), + [anon_sym_POUNDfilePath] = ACTIONS(3929), + [anon_sym_POUNDline] = ACTIONS(3929), + [anon_sym_POUNDcolumn] = ACTIONS(3929), + [anon_sym_POUNDfunction] = ACTIONS(3929), + [anon_sym_POUNDdsohandle] = ACTIONS(3929), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3927), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3927), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3927), + [anon_sym_LT_EQ] = ACTIONS(3927), + [anon_sym_GT_EQ] = ACTIONS(3927), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3927), + [anon_sym_SLASH] = ACTIONS(3927), + [anon_sym_PERCENT] = ACTIONS(3927), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3929), + [sym__plus_then_ws] = ACTIONS(3929), + [sym__minus_then_ws] = ACTIONS(3929), + [sym_bang] = ACTIONS(1069), + }, + [951] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1602), + [sym_boolean_literal] = STATE(1602), + [sym__string_literal] = STATE(1602), + [sym_line_string_literal] = STATE(1602), + [sym_multi_line_string_literal] = STATE(1602), + [sym_raw_string_literal] = STATE(1602), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1602), + [sym__unary_expression] = STATE(1602), + [sym_postfix_expression] = STATE(1602), + [sym_constructor_expression] = STATE(1602), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1602), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1602), + [sym_prefix_expression] = STATE(1602), + [sym_as_expression] = STATE(1602), + [sym_selector_expression] = STATE(1602), + [sym__binary_expression] = STATE(1602), + [sym_multiplicative_expression] = STATE(1602), + [sym_additive_expression] = STATE(1602), + [sym_range_expression] = STATE(1602), + [sym_infix_expression] = STATE(1602), + [sym_nil_coalescing_expression] = STATE(1602), + [sym_check_expression] = STATE(1602), + [sym_comparison_expression] = STATE(1602), + [sym_equality_expression] = STATE(1602), + [sym_conjunction_expression] = STATE(1602), + [sym_disjunction_expression] = STATE(1602), + [sym_bitwise_operation] = STATE(1602), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1602), + [sym_await_expression] = STATE(1602), + [sym_ternary_expression] = STATE(1602), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1602), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1602), + [sym_dictionary_literal] = STATE(1602), + [sym__special_literal] = STATE(1602), + [sym__playground_literal] = STATE(1602), + [sym_lambda_literal] = STATE(1602), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1602), + [sym_key_path_expression] = STATE(1602), + [sym_key_path_string_expression] = STATE(1602), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1602), + [sym__comparison_operator] = STATE(1602), + [sym__additive_operator] = STATE(1602), + [sym__multiplicative_operator] = STATE(1602), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1602), + [sym__referenceable_operator] = STATE(1602), + [sym__eq_eq] = STATE(1602), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3931), + [sym_real_literal] = ACTIONS(3933), + [sym_integer_literal] = ACTIONS(3931), + [sym_hex_literal] = ACTIONS(3933), + [sym_oct_literal] = ACTIONS(3933), + [sym_bin_literal] = ACTIONS(3933), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3931), + [anon_sym_POUNDfileID] = ACTIONS(3933), + [anon_sym_POUNDfilePath] = ACTIONS(3933), + [anon_sym_POUNDline] = ACTIONS(3933), + [anon_sym_POUNDcolumn] = ACTIONS(3933), + [anon_sym_POUNDfunction] = ACTIONS(3933), + [anon_sym_POUNDdsohandle] = ACTIONS(3933), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3931), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3931), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3931), + [anon_sym_LT_EQ] = ACTIONS(3931), + [anon_sym_GT_EQ] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3931), + [anon_sym_SLASH] = ACTIONS(3931), + [anon_sym_PERCENT] = ACTIONS(3931), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3933), + [sym__plus_then_ws] = ACTIONS(3933), + [sym__minus_then_ws] = ACTIONS(3933), + [sym_bang] = ACTIONS(1069), + }, + [952] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1149), + [sym__unary_expression] = STATE(1149), + [sym_postfix_expression] = STATE(1149), + [sym_constructor_expression] = STATE(1149), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1149), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1149), + [sym_await_expression] = STATE(1149), + [sym_ternary_expression] = STATE(1149), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1149), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1149), + [sym_key_path_expression] = STATE(1149), + [sym_key_path_string_expression] = STATE(1149), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1149), + [sym__comparison_operator] = STATE(1149), + [sym__additive_operator] = STATE(1149), + [sym__multiplicative_operator] = STATE(1149), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1149), + [sym__referenceable_operator] = STATE(1149), + [sym__eq_eq] = STATE(1149), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(3935), + [sym_real_literal] = ACTIONS(3937), + [sym_integer_literal] = ACTIONS(3935), + [sym_hex_literal] = ACTIONS(3937), + [sym_oct_literal] = ACTIONS(3937), + [sym_bin_literal] = ACTIONS(3937), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(3935), + [anon_sym_GT] = ACTIONS(3935), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(3935), + [anon_sym_POUNDfileID] = ACTIONS(3937), + [anon_sym_POUNDfilePath] = ACTIONS(3937), + [anon_sym_POUNDline] = ACTIONS(3937), + [anon_sym_POUNDcolumn] = ACTIONS(3937), + [anon_sym_POUNDfunction] = ACTIONS(3937), + [anon_sym_POUNDdsohandle] = ACTIONS(3937), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(3935), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3935), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3935), + [anon_sym_LT_EQ] = ACTIONS(3935), + [anon_sym_GT_EQ] = ACTIONS(3935), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(3935), + [anon_sym_SLASH] = ACTIONS(3935), + [anon_sym_PERCENT] = ACTIONS(3935), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(3937), + [sym__plus_then_ws] = ACTIONS(3937), + [sym__minus_then_ws] = ACTIONS(3937), + [sym_bang] = ACTIONS(481), + }, + [953] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1544), + [sym_boolean_literal] = STATE(1544), + [sym__string_literal] = STATE(1544), + [sym_line_string_literal] = STATE(1544), + [sym_multi_line_string_literal] = STATE(1544), + [sym_raw_string_literal] = STATE(1544), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1544), + [sym__unary_expression] = STATE(1544), + [sym_postfix_expression] = STATE(1544), + [sym_constructor_expression] = STATE(1544), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1544), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1544), + [sym_prefix_expression] = STATE(1544), + [sym_as_expression] = STATE(1544), + [sym_selector_expression] = STATE(1544), + [sym__binary_expression] = STATE(1544), + [sym_multiplicative_expression] = STATE(1544), + [sym_additive_expression] = STATE(1544), + [sym_range_expression] = STATE(1544), + [sym_infix_expression] = STATE(1544), + [sym_nil_coalescing_expression] = STATE(1544), + [sym_check_expression] = STATE(1544), + [sym_comparison_expression] = STATE(1544), + [sym_equality_expression] = STATE(1544), + [sym_conjunction_expression] = STATE(1544), + [sym_disjunction_expression] = STATE(1544), + [sym_bitwise_operation] = STATE(1544), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1544), + [sym_await_expression] = STATE(1544), + [sym_ternary_expression] = STATE(1544), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1544), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1544), + [sym_dictionary_literal] = STATE(1544), + [sym__special_literal] = STATE(1544), + [sym__playground_literal] = STATE(1544), + [sym_lambda_literal] = STATE(1544), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1544), + [sym_key_path_expression] = STATE(1544), + [sym_key_path_string_expression] = STATE(1544), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1544), + [sym__comparison_operator] = STATE(1544), + [sym__additive_operator] = STATE(1544), + [sym__multiplicative_operator] = STATE(1544), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1544), + [sym__referenceable_operator] = STATE(1544), + [sym__eq_eq] = STATE(1544), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3939), + [sym_real_literal] = ACTIONS(3941), + [sym_integer_literal] = ACTIONS(3939), + [sym_hex_literal] = ACTIONS(3941), + [sym_oct_literal] = ACTIONS(3941), + [sym_bin_literal] = ACTIONS(3941), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3939), + [anon_sym_GT] = ACTIONS(3939), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3939), + [anon_sym_POUNDfileID] = ACTIONS(3941), + [anon_sym_POUNDfilePath] = ACTIONS(3941), + [anon_sym_POUNDline] = ACTIONS(3941), + [anon_sym_POUNDcolumn] = ACTIONS(3941), + [anon_sym_POUNDfunction] = ACTIONS(3941), + [anon_sym_POUNDdsohandle] = ACTIONS(3941), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3939), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3939), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3939), + [anon_sym_LT_EQ] = ACTIONS(3939), + [anon_sym_GT_EQ] = ACTIONS(3939), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3939), + [anon_sym_SLASH] = ACTIONS(3939), + [anon_sym_PERCENT] = ACTIONS(3939), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3941), + [sym__plus_then_ws] = ACTIONS(3941), + [sym__minus_then_ws] = ACTIONS(3941), + [sym_bang] = ACTIONS(1069), + }, + [954] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1593), + [sym_boolean_literal] = STATE(1593), + [sym__string_literal] = STATE(1593), + [sym_line_string_literal] = STATE(1593), + [sym_multi_line_string_literal] = STATE(1593), + [sym_raw_string_literal] = STATE(1593), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1593), + [sym__unary_expression] = STATE(1593), + [sym_postfix_expression] = STATE(1593), + [sym_constructor_expression] = STATE(1593), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1593), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1593), + [sym_prefix_expression] = STATE(1593), + [sym_as_expression] = STATE(1593), + [sym_selector_expression] = STATE(1593), + [sym__binary_expression] = STATE(1593), + [sym_multiplicative_expression] = STATE(1593), + [sym_additive_expression] = STATE(1593), + [sym_range_expression] = STATE(1593), + [sym_infix_expression] = STATE(1593), + [sym_nil_coalescing_expression] = STATE(1593), + [sym_check_expression] = STATE(1593), + [sym_comparison_expression] = STATE(1593), + [sym_equality_expression] = STATE(1593), + [sym_conjunction_expression] = STATE(1593), + [sym_disjunction_expression] = STATE(1593), + [sym_bitwise_operation] = STATE(1593), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1593), + [sym_await_expression] = STATE(1593), + [sym_ternary_expression] = STATE(1593), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1593), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1593), + [sym_dictionary_literal] = STATE(1593), + [sym__special_literal] = STATE(1593), + [sym__playground_literal] = STATE(1593), + [sym_lambda_literal] = STATE(1593), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1593), + [sym_key_path_expression] = STATE(1593), + [sym_key_path_string_expression] = STATE(1593), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1593), + [sym__comparison_operator] = STATE(1593), + [sym__additive_operator] = STATE(1593), + [sym__multiplicative_operator] = STATE(1593), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1593), + [sym__referenceable_operator] = STATE(1593), + [sym__eq_eq] = STATE(1593), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3945), + [sym_integer_literal] = ACTIONS(3943), + [sym_hex_literal] = ACTIONS(3945), + [sym_oct_literal] = ACTIONS(3945), + [sym_bin_literal] = ACTIONS(3945), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_GT] = ACTIONS(3943), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3943), + [anon_sym_POUNDfileID] = ACTIONS(3945), + [anon_sym_POUNDfilePath] = ACTIONS(3945), + [anon_sym_POUNDline] = ACTIONS(3945), + [anon_sym_POUNDcolumn] = ACTIONS(3945), + [anon_sym_POUNDfunction] = ACTIONS(3945), + [anon_sym_POUNDdsohandle] = ACTIONS(3945), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3943), + [anon_sym_SLASH] = ACTIONS(3943), + [anon_sym_PERCENT] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3945), + [sym__plus_then_ws] = ACTIONS(3945), + [sym__minus_then_ws] = ACTIONS(3945), + [sym_bang] = ACTIONS(1069), + }, + [955] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2003), + [sym_boolean_literal] = STATE(2003), + [sym__string_literal] = STATE(2003), + [sym_line_string_literal] = STATE(2003), + [sym_multi_line_string_literal] = STATE(2003), + [sym_raw_string_literal] = STATE(2003), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2003), + [sym__unary_expression] = STATE(2003), + [sym_postfix_expression] = STATE(2003), + [sym_constructor_expression] = STATE(2003), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2003), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2003), + [sym_prefix_expression] = STATE(2003), + [sym_as_expression] = STATE(2003), + [sym_selector_expression] = STATE(2003), + [sym__binary_expression] = STATE(2003), + [sym_multiplicative_expression] = STATE(2003), + [sym_additive_expression] = STATE(2003), + [sym_range_expression] = STATE(2003), + [sym_infix_expression] = STATE(2003), + [sym_nil_coalescing_expression] = STATE(2003), + [sym_check_expression] = STATE(2003), + [sym_comparison_expression] = STATE(2003), + [sym_equality_expression] = STATE(2003), + [sym_conjunction_expression] = STATE(2003), + [sym_disjunction_expression] = STATE(2003), + [sym_bitwise_operation] = STATE(2003), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2003), + [sym_await_expression] = STATE(2003), + [sym_ternary_expression] = STATE(2003), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2003), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2003), + [sym_dictionary_literal] = STATE(2003), + [sym__special_literal] = STATE(2003), + [sym__playground_literal] = STATE(2003), + [sym_lambda_literal] = STATE(2003), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2003), + [sym_key_path_expression] = STATE(2003), + [sym_key_path_string_expression] = STATE(2003), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2003), + [sym__comparison_operator] = STATE(2003), + [sym__additive_operator] = STATE(2003), + [sym__multiplicative_operator] = STATE(2003), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2003), + [sym__referenceable_operator] = STATE(2003), + [sym__eq_eq] = STATE(2003), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3947), + [sym_real_literal] = ACTIONS(3949), + [sym_integer_literal] = ACTIONS(3947), + [sym_hex_literal] = ACTIONS(3949), + [sym_oct_literal] = ACTIONS(3949), + [sym_bin_literal] = ACTIONS(3949), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_GT] = ACTIONS(3947), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3947), + [anon_sym_POUNDfileID] = ACTIONS(3949), + [anon_sym_POUNDfilePath] = ACTIONS(3949), + [anon_sym_POUNDline] = ACTIONS(3949), + [anon_sym_POUNDcolumn] = ACTIONS(3949), + [anon_sym_POUNDfunction] = ACTIONS(3949), + [anon_sym_POUNDdsohandle] = ACTIONS(3949), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3947), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3947), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3947), + [anon_sym_LT_EQ] = ACTIONS(3947), + [anon_sym_GT_EQ] = ACTIONS(3947), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3947), + [anon_sym_SLASH] = ACTIONS(3947), + [anon_sym_PERCENT] = ACTIONS(3947), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3949), + [sym__plus_then_ws] = ACTIONS(3949), + [sym__minus_then_ws] = ACTIONS(3949), + [sym_bang] = ACTIONS(1069), + }, + [956] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2050), + [sym_boolean_literal] = STATE(2050), + [sym__string_literal] = STATE(2050), + [sym_line_string_literal] = STATE(2050), + [sym_multi_line_string_literal] = STATE(2050), + [sym_raw_string_literal] = STATE(2050), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2050), + [sym__unary_expression] = STATE(2050), + [sym_postfix_expression] = STATE(2050), + [sym_constructor_expression] = STATE(2050), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2050), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2050), + [sym_prefix_expression] = STATE(2050), + [sym_as_expression] = STATE(2050), + [sym_selector_expression] = STATE(2050), + [sym__binary_expression] = STATE(2050), + [sym_multiplicative_expression] = STATE(2050), + [sym_additive_expression] = STATE(2050), + [sym_range_expression] = STATE(2050), + [sym_infix_expression] = STATE(2050), + [sym_nil_coalescing_expression] = STATE(2050), + [sym_check_expression] = STATE(2050), + [sym_comparison_expression] = STATE(2050), + [sym_equality_expression] = STATE(2050), + [sym_conjunction_expression] = STATE(2050), + [sym_disjunction_expression] = STATE(2050), + [sym_bitwise_operation] = STATE(2050), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2050), + [sym_await_expression] = STATE(2050), + [sym_ternary_expression] = STATE(2050), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2050), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2050), + [sym_dictionary_literal] = STATE(2050), + [sym__special_literal] = STATE(2050), + [sym__playground_literal] = STATE(2050), + [sym_lambda_literal] = STATE(2050), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2050), + [sym_key_path_expression] = STATE(2050), + [sym_key_path_string_expression] = STATE(2050), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2050), + [sym__comparison_operator] = STATE(2050), + [sym__additive_operator] = STATE(2050), + [sym__multiplicative_operator] = STATE(2050), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2050), + [sym__referenceable_operator] = STATE(2050), + [sym__eq_eq] = STATE(2050), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3951), + [sym_real_literal] = ACTIONS(3953), + [sym_integer_literal] = ACTIONS(3951), + [sym_hex_literal] = ACTIONS(3953), + [sym_oct_literal] = ACTIONS(3953), + [sym_bin_literal] = ACTIONS(3953), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3951), + [anon_sym_GT] = ACTIONS(3951), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3951), + [anon_sym_POUNDfileID] = ACTIONS(3953), + [anon_sym_POUNDfilePath] = ACTIONS(3953), + [anon_sym_POUNDline] = ACTIONS(3953), + [anon_sym_POUNDcolumn] = ACTIONS(3953), + [anon_sym_POUNDfunction] = ACTIONS(3953), + [anon_sym_POUNDdsohandle] = ACTIONS(3953), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3951), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3951), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3951), + [anon_sym_LT_EQ] = ACTIONS(3951), + [anon_sym_GT_EQ] = ACTIONS(3951), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3951), + [anon_sym_SLASH] = ACTIONS(3951), + [anon_sym_PERCENT] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3953), + [sym__plus_then_ws] = ACTIONS(3953), + [sym__minus_then_ws] = ACTIONS(3953), + [sym_bang] = ACTIONS(1069), + }, + [957] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1643), + [sym_boolean_literal] = STATE(1643), + [sym__string_literal] = STATE(1643), + [sym_line_string_literal] = STATE(1643), + [sym_multi_line_string_literal] = STATE(1643), + [sym_raw_string_literal] = STATE(1643), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1643), + [sym__unary_expression] = STATE(1643), + [sym_postfix_expression] = STATE(1643), + [sym_constructor_expression] = STATE(1643), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1643), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1643), + [sym_prefix_expression] = STATE(1643), + [sym_as_expression] = STATE(1643), + [sym_selector_expression] = STATE(1643), + [sym__binary_expression] = STATE(1643), + [sym_multiplicative_expression] = STATE(1643), + [sym_additive_expression] = STATE(1643), + [sym_range_expression] = STATE(1643), + [sym_infix_expression] = STATE(1643), + [sym_nil_coalescing_expression] = STATE(1643), + [sym_check_expression] = STATE(1643), + [sym_comparison_expression] = STATE(1643), + [sym_equality_expression] = STATE(1643), + [sym_conjunction_expression] = STATE(1643), + [sym_disjunction_expression] = STATE(1643), + [sym_bitwise_operation] = STATE(1643), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1643), + [sym_await_expression] = STATE(1643), + [sym_ternary_expression] = STATE(1643), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1643), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1643), + [sym_dictionary_literal] = STATE(1643), + [sym__special_literal] = STATE(1643), + [sym__playground_literal] = STATE(1643), + [sym_lambda_literal] = STATE(1643), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1643), + [sym_key_path_expression] = STATE(1643), + [sym_key_path_string_expression] = STATE(1643), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1643), + [sym__comparison_operator] = STATE(1643), + [sym__additive_operator] = STATE(1643), + [sym__multiplicative_operator] = STATE(1643), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1643), + [sym__referenceable_operator] = STATE(1643), + [sym__eq_eq] = STATE(1643), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3955), + [sym_real_literal] = ACTIONS(3957), + [sym_integer_literal] = ACTIONS(3955), + [sym_hex_literal] = ACTIONS(3957), + [sym_oct_literal] = ACTIONS(3957), + [sym_bin_literal] = ACTIONS(3957), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3955), + [anon_sym_GT] = ACTIONS(3955), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3955), + [anon_sym_POUNDfileID] = ACTIONS(3957), + [anon_sym_POUNDfilePath] = ACTIONS(3957), + [anon_sym_POUNDline] = ACTIONS(3957), + [anon_sym_POUNDcolumn] = ACTIONS(3957), + [anon_sym_POUNDfunction] = ACTIONS(3957), + [anon_sym_POUNDdsohandle] = ACTIONS(3957), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3955), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3955), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3955), + [anon_sym_LT_EQ] = ACTIONS(3955), + [anon_sym_GT_EQ] = ACTIONS(3955), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3955), + [anon_sym_SLASH] = ACTIONS(3955), + [anon_sym_PERCENT] = ACTIONS(3955), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3957), + [sym__plus_then_ws] = ACTIONS(3957), + [sym__minus_then_ws] = ACTIONS(3957), + [sym_bang] = ACTIONS(1069), + }, + [958] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(2210), + [sym_boolean_literal] = STATE(2210), + [sym__string_literal] = STATE(2210), + [sym_line_string_literal] = STATE(2210), + [sym_multi_line_string_literal] = STATE(2210), + [sym_raw_string_literal] = STATE(2210), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(2210), + [sym__unary_expression] = STATE(2210), + [sym_postfix_expression] = STATE(2210), + [sym_constructor_expression] = STATE(2210), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(2210), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(2210), + [sym_prefix_expression] = STATE(2210), + [sym_as_expression] = STATE(2210), + [sym_selector_expression] = STATE(2210), + [sym__binary_expression] = STATE(2210), + [sym_multiplicative_expression] = STATE(2210), + [sym_additive_expression] = STATE(2210), + [sym_range_expression] = STATE(2210), + [sym_infix_expression] = STATE(2210), + [sym_nil_coalescing_expression] = STATE(2210), + [sym_check_expression] = STATE(2210), + [sym_comparison_expression] = STATE(2210), + [sym_equality_expression] = STATE(2210), + [sym_conjunction_expression] = STATE(2210), + [sym_disjunction_expression] = STATE(2210), + [sym_bitwise_operation] = STATE(2210), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(2210), + [sym_await_expression] = STATE(2210), + [sym_ternary_expression] = STATE(3322), + [sym_call_expression] = STATE(2766), + [sym__primary_expression] = STATE(2210), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(2210), + [sym_dictionary_literal] = STATE(2210), + [sym__special_literal] = STATE(2210), + [sym__playground_literal] = STATE(2210), + [sym_lambda_literal] = STATE(2210), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(2210), + [sym_key_path_expression] = STATE(2210), + [sym_key_path_string_expression] = STATE(2210), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(2210), + [sym__comparison_operator] = STATE(2210), + [sym__additive_operator] = STATE(2210), + [sym__multiplicative_operator] = STATE(2210), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(2210), + [sym__referenceable_operator] = STATE(2210), + [sym__eq_eq] = STATE(2210), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [anon_sym_nil] = ACTIONS(3959), + [sym_real_literal] = ACTIONS(3961), + [sym_integer_literal] = ACTIONS(3959), + [sym_hex_literal] = ACTIONS(3961), + [sym_oct_literal] = ACTIONS(3961), + [sym_bin_literal] = ACTIONS(3961), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(3959), + [anon_sym_GT] = ACTIONS(3959), + [sym__await_operator] = ACTIONS(937), + [anon_sym_POUNDfile] = ACTIONS(3959), + [anon_sym_POUNDfileID] = ACTIONS(3961), + [anon_sym_POUNDfilePath] = ACTIONS(3961), + [anon_sym_POUNDline] = ACTIONS(3961), + [anon_sym_POUNDcolumn] = ACTIONS(3961), + [anon_sym_POUNDfunction] = ACTIONS(3961), + [anon_sym_POUNDdsohandle] = ACTIONS(3961), + [anon_sym_POUNDcolorLiteral] = ACTIONS(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(3959), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3959), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3959), + [anon_sym_LT_EQ] = ACTIONS(3959), + [anon_sym_GT_EQ] = ACTIONS(3959), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(3959), + [anon_sym_SLASH] = ACTIONS(3959), + [anon_sym_PERCENT] = ACTIONS(3959), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(3961), + [sym__plus_then_ws] = ACTIONS(3961), + [sym__minus_then_ws] = ACTIONS(3961), + [sym_bang] = ACTIONS(971), + }, + [959] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1597), + [sym_boolean_literal] = STATE(1597), + [sym__string_literal] = STATE(1597), + [sym_line_string_literal] = STATE(1597), + [sym_multi_line_string_literal] = STATE(1597), + [sym_raw_string_literal] = STATE(1597), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1597), + [sym__unary_expression] = STATE(1597), + [sym_postfix_expression] = STATE(1597), + [sym_constructor_expression] = STATE(1597), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1597), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1597), + [sym_prefix_expression] = STATE(1597), + [sym_as_expression] = STATE(1597), + [sym_selector_expression] = STATE(1597), + [sym__binary_expression] = STATE(1597), + [sym_multiplicative_expression] = STATE(1597), + [sym_additive_expression] = STATE(1597), + [sym_range_expression] = STATE(1597), + [sym_infix_expression] = STATE(1597), + [sym_nil_coalescing_expression] = STATE(1597), + [sym_check_expression] = STATE(1597), + [sym_comparison_expression] = STATE(1597), + [sym_equality_expression] = STATE(1597), + [sym_conjunction_expression] = STATE(1597), + [sym_disjunction_expression] = STATE(1597), + [sym_bitwise_operation] = STATE(1597), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1597), + [sym_await_expression] = STATE(1597), + [sym_ternary_expression] = STATE(1597), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1597), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1597), + [sym_dictionary_literal] = STATE(1597), + [sym__special_literal] = STATE(1597), + [sym__playground_literal] = STATE(1597), + [sym_lambda_literal] = STATE(1597), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1597), + [sym_key_path_expression] = STATE(1597), + [sym_key_path_string_expression] = STATE(1597), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1597), + [sym__comparison_operator] = STATE(1597), + [sym__additive_operator] = STATE(1597), + [sym__multiplicative_operator] = STATE(1597), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1597), + [sym__referenceable_operator] = STATE(1597), + [sym__eq_eq] = STATE(1597), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3963), + [sym_real_literal] = ACTIONS(3965), + [sym_integer_literal] = ACTIONS(3963), + [sym_hex_literal] = ACTIONS(3965), + [sym_oct_literal] = ACTIONS(3965), + [sym_bin_literal] = ACTIONS(3965), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3963), + [anon_sym_GT] = ACTIONS(3963), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3963), + [anon_sym_POUNDfileID] = ACTIONS(3965), + [anon_sym_POUNDfilePath] = ACTIONS(3965), + [anon_sym_POUNDline] = ACTIONS(3965), + [anon_sym_POUNDcolumn] = ACTIONS(3965), + [anon_sym_POUNDfunction] = ACTIONS(3965), + [anon_sym_POUNDdsohandle] = ACTIONS(3965), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3963), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3963), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3963), + [anon_sym_LT_EQ] = ACTIONS(3963), + [anon_sym_GT_EQ] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3963), + [anon_sym_SLASH] = ACTIONS(3963), + [anon_sym_PERCENT] = ACTIONS(3963), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3965), + [sym__plus_then_ws] = ACTIONS(3965), + [sym__minus_then_ws] = ACTIONS(3965), + [sym_bang] = ACTIONS(1069), + }, + [960] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2044), + [sym_boolean_literal] = STATE(2044), + [sym__string_literal] = STATE(2044), + [sym_line_string_literal] = STATE(2044), + [sym_multi_line_string_literal] = STATE(2044), + [sym_raw_string_literal] = STATE(2044), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2044), + [sym__unary_expression] = STATE(2044), + [sym_postfix_expression] = STATE(2044), + [sym_constructor_expression] = STATE(2044), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2044), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2044), + [sym_prefix_expression] = STATE(2044), + [sym_as_expression] = STATE(2044), + [sym_selector_expression] = STATE(2044), + [sym__binary_expression] = STATE(2044), + [sym_multiplicative_expression] = STATE(2044), + [sym_additive_expression] = STATE(2044), + [sym_range_expression] = STATE(2044), + [sym_infix_expression] = STATE(2044), + [sym_nil_coalescing_expression] = STATE(2044), + [sym_check_expression] = STATE(2044), + [sym_comparison_expression] = STATE(2044), + [sym_equality_expression] = STATE(2044), + [sym_conjunction_expression] = STATE(2044), + [sym_disjunction_expression] = STATE(2044), + [sym_bitwise_operation] = STATE(2044), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2044), + [sym_await_expression] = STATE(2044), + [sym_ternary_expression] = STATE(2044), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2044), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2044), + [sym_dictionary_literal] = STATE(2044), + [sym__special_literal] = STATE(2044), + [sym__playground_literal] = STATE(2044), + [sym_lambda_literal] = STATE(2044), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2044), + [sym_key_path_expression] = STATE(2044), + [sym_key_path_string_expression] = STATE(2044), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2044), + [sym__comparison_operator] = STATE(2044), + [sym__additive_operator] = STATE(2044), + [sym__multiplicative_operator] = STATE(2044), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2044), + [sym__referenceable_operator] = STATE(2044), + [sym__eq_eq] = STATE(2044), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3967), + [sym_real_literal] = ACTIONS(3969), + [sym_integer_literal] = ACTIONS(3967), + [sym_hex_literal] = ACTIONS(3969), + [sym_oct_literal] = ACTIONS(3969), + [sym_bin_literal] = ACTIONS(3969), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3967), + [anon_sym_GT] = ACTIONS(3967), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3967), + [anon_sym_POUNDfileID] = ACTIONS(3969), + [anon_sym_POUNDfilePath] = ACTIONS(3969), + [anon_sym_POUNDline] = ACTIONS(3969), + [anon_sym_POUNDcolumn] = ACTIONS(3969), + [anon_sym_POUNDfunction] = ACTIONS(3969), + [anon_sym_POUNDdsohandle] = ACTIONS(3969), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3967), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3967), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3967), + [anon_sym_LT_EQ] = ACTIONS(3967), + [anon_sym_GT_EQ] = ACTIONS(3967), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3967), + [anon_sym_SLASH] = ACTIONS(3967), + [anon_sym_PERCENT] = ACTIONS(3967), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3969), + [sym__plus_then_ws] = ACTIONS(3969), + [sym__minus_then_ws] = ACTIONS(3969), + [sym_bang] = ACTIONS(1069), + }, + [961] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2042), + [sym_boolean_literal] = STATE(2042), + [sym__string_literal] = STATE(2042), + [sym_line_string_literal] = STATE(2042), + [sym_multi_line_string_literal] = STATE(2042), + [sym_raw_string_literal] = STATE(2042), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2042), + [sym__unary_expression] = STATE(2042), + [sym_postfix_expression] = STATE(2042), + [sym_constructor_expression] = STATE(2042), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2042), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2042), + [sym_prefix_expression] = STATE(2042), + [sym_as_expression] = STATE(2042), + [sym_selector_expression] = STATE(2042), + [sym__binary_expression] = STATE(2042), + [sym_multiplicative_expression] = STATE(2042), + [sym_additive_expression] = STATE(2042), + [sym_range_expression] = STATE(2042), + [sym_infix_expression] = STATE(2042), + [sym_nil_coalescing_expression] = STATE(2042), + [sym_check_expression] = STATE(2042), + [sym_comparison_expression] = STATE(2042), + [sym_equality_expression] = STATE(2042), + [sym_conjunction_expression] = STATE(2042), + [sym_disjunction_expression] = STATE(2042), + [sym_bitwise_operation] = STATE(2042), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2042), + [sym_await_expression] = STATE(2042), + [sym_ternary_expression] = STATE(2042), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2042), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2042), + [sym_dictionary_literal] = STATE(2042), + [sym__special_literal] = STATE(2042), + [sym__playground_literal] = STATE(2042), + [sym_lambda_literal] = STATE(2042), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2042), + [sym_key_path_expression] = STATE(2042), + [sym_key_path_string_expression] = STATE(2042), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2042), + [sym__comparison_operator] = STATE(2042), + [sym__additive_operator] = STATE(2042), + [sym__multiplicative_operator] = STATE(2042), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2042), + [sym__referenceable_operator] = STATE(2042), + [sym__eq_eq] = STATE(2042), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3971), + [sym_real_literal] = ACTIONS(3973), + [sym_integer_literal] = ACTIONS(3971), + [sym_hex_literal] = ACTIONS(3973), + [sym_oct_literal] = ACTIONS(3973), + [sym_bin_literal] = ACTIONS(3973), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3971), + [anon_sym_GT] = ACTIONS(3971), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3971), + [anon_sym_POUNDfileID] = ACTIONS(3973), + [anon_sym_POUNDfilePath] = ACTIONS(3973), + [anon_sym_POUNDline] = ACTIONS(3973), + [anon_sym_POUNDcolumn] = ACTIONS(3973), + [anon_sym_POUNDfunction] = ACTIONS(3973), + [anon_sym_POUNDdsohandle] = ACTIONS(3973), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3971), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3971), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3971), + [anon_sym_LT_EQ] = ACTIONS(3971), + [anon_sym_GT_EQ] = ACTIONS(3971), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3971), + [anon_sym_SLASH] = ACTIONS(3971), + [anon_sym_PERCENT] = ACTIONS(3971), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3973), + [sym__plus_then_ws] = ACTIONS(3973), + [sym__minus_then_ws] = ACTIONS(3973), + [sym_bang] = ACTIONS(1069), + }, + [962] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1642), + [sym_boolean_literal] = STATE(1642), + [sym__string_literal] = STATE(1642), + [sym_line_string_literal] = STATE(1642), + [sym_multi_line_string_literal] = STATE(1642), + [sym_raw_string_literal] = STATE(1642), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1642), + [sym__unary_expression] = STATE(1642), + [sym_postfix_expression] = STATE(1642), + [sym_constructor_expression] = STATE(1642), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1642), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1642), + [sym_prefix_expression] = STATE(1642), + [sym_as_expression] = STATE(1642), + [sym_selector_expression] = STATE(1642), + [sym__binary_expression] = STATE(1642), + [sym_multiplicative_expression] = STATE(1642), + [sym_additive_expression] = STATE(1642), + [sym_range_expression] = STATE(1642), + [sym_infix_expression] = STATE(1642), + [sym_nil_coalescing_expression] = STATE(1642), + [sym_check_expression] = STATE(1642), + [sym_comparison_expression] = STATE(1642), + [sym_equality_expression] = STATE(1642), + [sym_conjunction_expression] = STATE(1642), + [sym_disjunction_expression] = STATE(1642), + [sym_bitwise_operation] = STATE(1642), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1642), + [sym_await_expression] = STATE(1642), + [sym_ternary_expression] = STATE(1642), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1642), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1642), + [sym_dictionary_literal] = STATE(1642), + [sym__special_literal] = STATE(1642), + [sym__playground_literal] = STATE(1642), + [sym_lambda_literal] = STATE(1642), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1642), + [sym_key_path_expression] = STATE(1642), + [sym_key_path_string_expression] = STATE(1642), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1642), + [sym__comparison_operator] = STATE(1642), + [sym__additive_operator] = STATE(1642), + [sym__multiplicative_operator] = STATE(1642), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1642), + [sym__referenceable_operator] = STATE(1642), + [sym__eq_eq] = STATE(1642), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3975), + [sym_real_literal] = ACTIONS(3977), + [sym_integer_literal] = ACTIONS(3975), + [sym_hex_literal] = ACTIONS(3977), + [sym_oct_literal] = ACTIONS(3977), + [sym_bin_literal] = ACTIONS(3977), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3975), + [anon_sym_GT] = ACTIONS(3975), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3975), + [anon_sym_POUNDfileID] = ACTIONS(3977), + [anon_sym_POUNDfilePath] = ACTIONS(3977), + [anon_sym_POUNDline] = ACTIONS(3977), + [anon_sym_POUNDcolumn] = ACTIONS(3977), + [anon_sym_POUNDfunction] = ACTIONS(3977), + [anon_sym_POUNDdsohandle] = ACTIONS(3977), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3975), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3975), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3975), + [anon_sym_LT_EQ] = ACTIONS(3975), + [anon_sym_GT_EQ] = ACTIONS(3975), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_SLASH] = ACTIONS(3975), + [anon_sym_PERCENT] = ACTIONS(3975), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3977), + [sym__plus_then_ws] = ACTIONS(3977), + [sym__minus_then_ws] = ACTIONS(3977), + [sym_bang] = ACTIONS(1069), + }, + [963] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1599), + [sym_boolean_literal] = STATE(1599), + [sym__string_literal] = STATE(1599), + [sym_line_string_literal] = STATE(1599), + [sym_multi_line_string_literal] = STATE(1599), + [sym_raw_string_literal] = STATE(1599), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1599), + [sym__unary_expression] = STATE(1599), + [sym_postfix_expression] = STATE(1599), + [sym_constructor_expression] = STATE(1599), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1599), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1599), + [sym_prefix_expression] = STATE(1599), + [sym_as_expression] = STATE(1599), + [sym_selector_expression] = STATE(1599), + [sym__binary_expression] = STATE(1599), + [sym_multiplicative_expression] = STATE(1599), + [sym_additive_expression] = STATE(1599), + [sym_range_expression] = STATE(1599), + [sym_infix_expression] = STATE(1599), + [sym_nil_coalescing_expression] = STATE(1599), + [sym_check_expression] = STATE(1599), + [sym_comparison_expression] = STATE(1599), + [sym_equality_expression] = STATE(1599), + [sym_conjunction_expression] = STATE(1599), + [sym_disjunction_expression] = STATE(1599), + [sym_bitwise_operation] = STATE(1599), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1599), + [sym_await_expression] = STATE(1599), + [sym_ternary_expression] = STATE(1599), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1599), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1599), + [sym_dictionary_literal] = STATE(1599), + [sym__special_literal] = STATE(1599), + [sym__playground_literal] = STATE(1599), + [sym_lambda_literal] = STATE(1599), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1599), + [sym_key_path_expression] = STATE(1599), + [sym_key_path_string_expression] = STATE(1599), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1599), + [sym__comparison_operator] = STATE(1599), + [sym__additive_operator] = STATE(1599), + [sym__multiplicative_operator] = STATE(1599), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1599), + [sym__referenceable_operator] = STATE(1599), + [sym__eq_eq] = STATE(1599), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3979), + [sym_real_literal] = ACTIONS(3981), + [sym_integer_literal] = ACTIONS(3979), + [sym_hex_literal] = ACTIONS(3981), + [sym_oct_literal] = ACTIONS(3981), + [sym_bin_literal] = ACTIONS(3981), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3979), + [anon_sym_GT] = ACTIONS(3979), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3979), + [anon_sym_POUNDfileID] = ACTIONS(3981), + [anon_sym_POUNDfilePath] = ACTIONS(3981), + [anon_sym_POUNDline] = ACTIONS(3981), + [anon_sym_POUNDcolumn] = ACTIONS(3981), + [anon_sym_POUNDfunction] = ACTIONS(3981), + [anon_sym_POUNDdsohandle] = ACTIONS(3981), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3979), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3979), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3979), + [anon_sym_LT_EQ] = ACTIONS(3979), + [anon_sym_GT_EQ] = ACTIONS(3979), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3979), + [anon_sym_SLASH] = ACTIONS(3979), + [anon_sym_PERCENT] = ACTIONS(3979), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3981), + [sym__plus_then_ws] = ACTIONS(3981), + [sym__minus_then_ws] = ACTIONS(3981), + [sym_bang] = ACTIONS(1069), + }, + [964] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1545), + [sym_boolean_literal] = STATE(1545), + [sym__string_literal] = STATE(1545), + [sym_line_string_literal] = STATE(1545), + [sym_multi_line_string_literal] = STATE(1545), + [sym_raw_string_literal] = STATE(1545), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1545), + [sym__unary_expression] = STATE(1545), + [sym_postfix_expression] = STATE(1545), + [sym_constructor_expression] = STATE(1545), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1545), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1545), + [sym_prefix_expression] = STATE(1545), + [sym_as_expression] = STATE(1545), + [sym_selector_expression] = STATE(1545), + [sym__binary_expression] = STATE(1545), + [sym_multiplicative_expression] = STATE(1545), + [sym_additive_expression] = STATE(1545), + [sym_range_expression] = STATE(1545), + [sym_infix_expression] = STATE(1545), + [sym_nil_coalescing_expression] = STATE(1545), + [sym_check_expression] = STATE(1545), + [sym_comparison_expression] = STATE(1545), + [sym_equality_expression] = STATE(1545), + [sym_conjunction_expression] = STATE(1545), + [sym_disjunction_expression] = STATE(1545), + [sym_bitwise_operation] = STATE(1545), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1545), + [sym_await_expression] = STATE(1545), + [sym_ternary_expression] = STATE(1545), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1545), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1545), + [sym_dictionary_literal] = STATE(1545), + [sym__special_literal] = STATE(1545), + [sym__playground_literal] = STATE(1545), + [sym_lambda_literal] = STATE(1545), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1545), + [sym_key_path_expression] = STATE(1545), + [sym_key_path_string_expression] = STATE(1545), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1545), + [sym__comparison_operator] = STATE(1545), + [sym__additive_operator] = STATE(1545), + [sym__multiplicative_operator] = STATE(1545), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1545), + [sym__referenceable_operator] = STATE(1545), + [sym__eq_eq] = STATE(1545), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3983), + [sym_real_literal] = ACTIONS(3985), + [sym_integer_literal] = ACTIONS(3983), + [sym_hex_literal] = ACTIONS(3985), + [sym_oct_literal] = ACTIONS(3985), + [sym_bin_literal] = ACTIONS(3985), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3983), + [anon_sym_GT] = ACTIONS(3983), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3983), + [anon_sym_POUNDfileID] = ACTIONS(3985), + [anon_sym_POUNDfilePath] = ACTIONS(3985), + [anon_sym_POUNDline] = ACTIONS(3985), + [anon_sym_POUNDcolumn] = ACTIONS(3985), + [anon_sym_POUNDfunction] = ACTIONS(3985), + [anon_sym_POUNDdsohandle] = ACTIONS(3985), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3983), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3983), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3983), + [anon_sym_LT_EQ] = ACTIONS(3983), + [anon_sym_GT_EQ] = ACTIONS(3983), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3983), + [anon_sym_SLASH] = ACTIONS(3983), + [anon_sym_PERCENT] = ACTIONS(3983), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3985), + [sym__plus_then_ws] = ACTIONS(3985), + [sym__minus_then_ws] = ACTIONS(3985), + [sym_bang] = ACTIONS(1069), + }, + [965] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1604), + [sym_boolean_literal] = STATE(1604), + [sym__string_literal] = STATE(1604), + [sym_line_string_literal] = STATE(1604), + [sym_multi_line_string_literal] = STATE(1604), + [sym_raw_string_literal] = STATE(1604), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1604), + [sym__unary_expression] = STATE(1604), + [sym_postfix_expression] = STATE(1604), + [sym_constructor_expression] = STATE(1604), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1604), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1604), + [sym_prefix_expression] = STATE(1604), + [sym_as_expression] = STATE(1604), + [sym_selector_expression] = STATE(1604), + [sym__binary_expression] = STATE(1604), + [sym_multiplicative_expression] = STATE(1604), + [sym_additive_expression] = STATE(1604), + [sym_range_expression] = STATE(1604), + [sym_infix_expression] = STATE(1604), + [sym_nil_coalescing_expression] = STATE(1604), + [sym_check_expression] = STATE(1604), + [sym_comparison_expression] = STATE(1604), + [sym_equality_expression] = STATE(1604), + [sym_conjunction_expression] = STATE(1604), + [sym_disjunction_expression] = STATE(1604), + [sym_bitwise_operation] = STATE(1604), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1604), + [sym_await_expression] = STATE(1604), + [sym_ternary_expression] = STATE(1604), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1604), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1604), + [sym_dictionary_literal] = STATE(1604), + [sym__special_literal] = STATE(1604), + [sym__playground_literal] = STATE(1604), + [sym_lambda_literal] = STATE(1604), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1604), + [sym_key_path_expression] = STATE(1604), + [sym_key_path_string_expression] = STATE(1604), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1604), + [sym__comparison_operator] = STATE(1604), + [sym__additive_operator] = STATE(1604), + [sym__multiplicative_operator] = STATE(1604), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1604), + [sym__referenceable_operator] = STATE(1604), + [sym__eq_eq] = STATE(1604), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(3987), + [sym_real_literal] = ACTIONS(3989), + [sym_integer_literal] = ACTIONS(3987), + [sym_hex_literal] = ACTIONS(3989), + [sym_oct_literal] = ACTIONS(3989), + [sym_bin_literal] = ACTIONS(3989), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(3987), + [anon_sym_GT] = ACTIONS(3987), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(3987), + [anon_sym_POUNDfileID] = ACTIONS(3989), + [anon_sym_POUNDfilePath] = ACTIONS(3989), + [anon_sym_POUNDline] = ACTIONS(3989), + [anon_sym_POUNDcolumn] = ACTIONS(3989), + [anon_sym_POUNDfunction] = ACTIONS(3989), + [anon_sym_POUNDdsohandle] = ACTIONS(3989), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(3987), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3987), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3987), + [anon_sym_LT_EQ] = ACTIONS(3987), + [anon_sym_GT_EQ] = ACTIONS(3987), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(3987), + [anon_sym_SLASH] = ACTIONS(3987), + [anon_sym_PERCENT] = ACTIONS(3987), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(3989), + [sym__plus_then_ws] = ACTIONS(3989), + [sym__minus_then_ws] = ACTIONS(3989), + [sym_bang] = ACTIONS(1069), + }, + [966] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(2207), + [sym_boolean_literal] = STATE(2207), + [sym__string_literal] = STATE(2207), + [sym_line_string_literal] = STATE(2207), + [sym_multi_line_string_literal] = STATE(2207), + [sym_raw_string_literal] = STATE(2207), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(2207), + [sym__unary_expression] = STATE(2207), + [sym_postfix_expression] = STATE(2207), + [sym_constructor_expression] = STATE(2207), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(2207), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(2207), + [sym_prefix_expression] = STATE(2207), + [sym_as_expression] = STATE(2207), + [sym_selector_expression] = STATE(2207), + [sym__binary_expression] = STATE(2207), + [sym_multiplicative_expression] = STATE(2207), + [sym_additive_expression] = STATE(2207), + [sym_range_expression] = STATE(2207), + [sym_infix_expression] = STATE(2207), + [sym_nil_coalescing_expression] = STATE(2207), + [sym_check_expression] = STATE(2207), + [sym_comparison_expression] = STATE(2207), + [sym_equality_expression] = STATE(2207), + [sym_conjunction_expression] = STATE(2207), + [sym_disjunction_expression] = STATE(2207), + [sym_bitwise_operation] = STATE(2207), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(2207), + [sym_await_expression] = STATE(2207), + [sym_ternary_expression] = STATE(2207), + [sym_call_expression] = STATE(2760), + [sym__primary_expression] = STATE(2207), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(2207), + [sym_dictionary_literal] = STATE(2207), + [sym__special_literal] = STATE(2207), + [sym__playground_literal] = STATE(2207), + [sym_lambda_literal] = STATE(2207), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(2207), + [sym_key_path_expression] = STATE(2207), + [sym_key_path_string_expression] = STATE(2207), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(2207), + [sym__comparison_operator] = STATE(2207), + [sym__additive_operator] = STATE(2207), + [sym__multiplicative_operator] = STATE(2207), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(2207), + [sym__referenceable_operator] = STATE(2207), + [sym__eq_eq] = STATE(2207), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [anon_sym_nil] = ACTIONS(3991), + [sym_real_literal] = ACTIONS(3993), + [sym_integer_literal] = ACTIONS(3991), + [sym_hex_literal] = ACTIONS(3993), + [sym_oct_literal] = ACTIONS(3993), + [sym_bin_literal] = ACTIONS(3993), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [sym__await_operator] = ACTIONS(937), + [anon_sym_POUNDfile] = ACTIONS(3991), + [anon_sym_POUNDfileID] = ACTIONS(3993), + [anon_sym_POUNDfilePath] = ACTIONS(3993), + [anon_sym_POUNDline] = ACTIONS(3993), + [anon_sym_POUNDcolumn] = ACTIONS(3993), + [anon_sym_POUNDfunction] = ACTIONS(3993), + [anon_sym_POUNDdsohandle] = ACTIONS(3993), + [anon_sym_POUNDcolorLiteral] = ACTIONS(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(3991), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3991), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3991), + [anon_sym_LT_EQ] = ACTIONS(3991), + [anon_sym_GT_EQ] = ACTIONS(3991), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_SLASH] = ACTIONS(3991), + [anon_sym_PERCENT] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(3993), + [sym__plus_then_ws] = ACTIONS(3993), + [sym__minus_then_ws] = ACTIONS(3993), + [sym_bang] = ACTIONS(971), + }, + [967] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(2208), + [sym_boolean_literal] = STATE(2208), + [sym__string_literal] = STATE(2208), + [sym_line_string_literal] = STATE(2208), + [sym_multi_line_string_literal] = STATE(2208), + [sym_raw_string_literal] = STATE(2208), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(2208), + [sym__unary_expression] = STATE(2208), + [sym_postfix_expression] = STATE(2208), + [sym_constructor_expression] = STATE(2208), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(2208), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(2208), + [sym_prefix_expression] = STATE(2208), + [sym_as_expression] = STATE(2208), + [sym_selector_expression] = STATE(2208), + [sym__binary_expression] = STATE(3335), + [sym_multiplicative_expression] = STATE(3335), + [sym_additive_expression] = STATE(3335), + [sym_range_expression] = STATE(3335), + [sym_infix_expression] = STATE(3335), + [sym_nil_coalescing_expression] = STATE(3335), + [sym_check_expression] = STATE(3335), + [sym_comparison_expression] = STATE(3335), + [sym_equality_expression] = STATE(3335), + [sym_conjunction_expression] = STATE(3335), + [sym_disjunction_expression] = STATE(3335), + [sym_bitwise_operation] = STATE(3335), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(2208), + [sym_await_expression] = STATE(2208), + [sym_ternary_expression] = STATE(3338), + [sym_call_expression] = STATE(2786), + [sym__primary_expression] = STATE(2208), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(2208), + [sym_dictionary_literal] = STATE(2208), + [sym__special_literal] = STATE(2208), + [sym__playground_literal] = STATE(2208), + [sym_lambda_literal] = STATE(2208), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(2208), + [sym_key_path_expression] = STATE(2208), + [sym_key_path_string_expression] = STATE(2208), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(2208), + [sym__comparison_operator] = STATE(2208), + [sym__additive_operator] = STATE(2208), + [sym__multiplicative_operator] = STATE(2208), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(2208), + [sym__referenceable_operator] = STATE(2208), + [sym__eq_eq] = STATE(2208), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [anon_sym_nil] = ACTIONS(3995), + [sym_real_literal] = ACTIONS(3997), + [sym_integer_literal] = ACTIONS(3995), + [sym_hex_literal] = ACTIONS(3997), + [sym_oct_literal] = ACTIONS(3997), + [sym_bin_literal] = ACTIONS(3997), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(3995), + [anon_sym_GT] = ACTIONS(3995), + [sym__await_operator] = ACTIONS(937), + [anon_sym_POUNDfile] = ACTIONS(3995), + [anon_sym_POUNDfileID] = ACTIONS(3997), + [anon_sym_POUNDfilePath] = ACTIONS(3997), + [anon_sym_POUNDline] = ACTIONS(3997), + [anon_sym_POUNDcolumn] = ACTIONS(3997), + [anon_sym_POUNDfunction] = ACTIONS(3997), + [anon_sym_POUNDdsohandle] = ACTIONS(3997), + [anon_sym_POUNDcolorLiteral] = ACTIONS(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(3995), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), + [anon_sym_LT_EQ] = ACTIONS(3995), + [anon_sym_GT_EQ] = ACTIONS(3995), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(3995), + [anon_sym_SLASH] = ACTIONS(3995), + [anon_sym_PERCENT] = ACTIONS(3995), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(3997), + [sym__plus_then_ws] = ACTIONS(3997), + [sym__minus_then_ws] = ACTIONS(3997), + [sym_bang] = ACTIONS(971), + }, + [968] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(2209), + [sym_boolean_literal] = STATE(2209), + [sym__string_literal] = STATE(2209), + [sym_line_string_literal] = STATE(2209), + [sym_multi_line_string_literal] = STATE(2209), + [sym_raw_string_literal] = STATE(2209), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(2209), + [sym__unary_expression] = STATE(2209), + [sym_postfix_expression] = STATE(2209), + [sym_constructor_expression] = STATE(2209), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(2209), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(2209), + [sym_prefix_expression] = STATE(2209), + [sym_as_expression] = STATE(2209), + [sym_selector_expression] = STATE(2209), + [sym__binary_expression] = STATE(2209), + [sym_multiplicative_expression] = STATE(2209), + [sym_additive_expression] = STATE(2209), + [sym_range_expression] = STATE(2209), + [sym_infix_expression] = STATE(2209), + [sym_nil_coalescing_expression] = STATE(2209), + [sym_check_expression] = STATE(2209), + [sym_comparison_expression] = STATE(2209), + [sym_equality_expression] = STATE(2209), + [sym_conjunction_expression] = STATE(2209), + [sym_disjunction_expression] = STATE(2209), + [sym_bitwise_operation] = STATE(2209), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(2209), + [sym_await_expression] = STATE(2209), + [sym_ternary_expression] = STATE(2209), + [sym_call_expression] = STATE(2760), + [sym__primary_expression] = STATE(2209), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(2209), + [sym_dictionary_literal] = STATE(2209), + [sym__special_literal] = STATE(2209), + [sym__playground_literal] = STATE(2209), + [sym_lambda_literal] = STATE(2209), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(2209), + [sym_key_path_expression] = STATE(2209), + [sym_key_path_string_expression] = STATE(2209), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(2209), + [sym__comparison_operator] = STATE(2209), + [sym__additive_operator] = STATE(2209), + [sym__multiplicative_operator] = STATE(2209), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(2209), + [sym__referenceable_operator] = STATE(2209), + [sym__eq_eq] = STATE(2209), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [anon_sym_nil] = ACTIONS(3999), + [sym_real_literal] = ACTIONS(4001), + [sym_integer_literal] = ACTIONS(3999), + [sym_hex_literal] = ACTIONS(4001), + [sym_oct_literal] = ACTIONS(4001), + [sym_bin_literal] = ACTIONS(4001), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(3999), + [sym__await_operator] = ACTIONS(937), + [anon_sym_POUNDfile] = ACTIONS(3999), + [anon_sym_POUNDfileID] = ACTIONS(4001), + [anon_sym_POUNDfilePath] = ACTIONS(4001), + [anon_sym_POUNDline] = ACTIONS(4001), + [anon_sym_POUNDcolumn] = ACTIONS(4001), + [anon_sym_POUNDfunction] = ACTIONS(4001), + [anon_sym_POUNDdsohandle] = ACTIONS(4001), + [anon_sym_POUNDcolorLiteral] = ACTIONS(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(3999), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3999), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3999), + [anon_sym_LT_EQ] = ACTIONS(3999), + [anon_sym_GT_EQ] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(3999), + [anon_sym_SLASH] = ACTIONS(3999), + [anon_sym_PERCENT] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(4001), + [sym__plus_then_ws] = ACTIONS(4001), + [sym__minus_then_ws] = ACTIONS(4001), + [sym_bang] = ACTIONS(971), + }, + [969] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1548), + [sym_boolean_literal] = STATE(1548), + [sym__string_literal] = STATE(1548), + [sym_line_string_literal] = STATE(1548), + [sym_multi_line_string_literal] = STATE(1548), + [sym_raw_string_literal] = STATE(1548), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1548), + [sym__unary_expression] = STATE(1548), + [sym_postfix_expression] = STATE(1548), + [sym_constructor_expression] = STATE(1548), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1548), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1548), + [sym_prefix_expression] = STATE(1548), + [sym_as_expression] = STATE(1548), + [sym_selector_expression] = STATE(1548), + [sym__binary_expression] = STATE(1548), + [sym_multiplicative_expression] = STATE(1548), + [sym_additive_expression] = STATE(1548), + [sym_range_expression] = STATE(1548), + [sym_infix_expression] = STATE(1548), + [sym_nil_coalescing_expression] = STATE(1548), + [sym_check_expression] = STATE(1548), + [sym_comparison_expression] = STATE(1548), + [sym_equality_expression] = STATE(1548), + [sym_conjunction_expression] = STATE(1548), + [sym_disjunction_expression] = STATE(1548), + [sym_bitwise_operation] = STATE(1548), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1548), + [sym_await_expression] = STATE(1548), + [sym_ternary_expression] = STATE(1548), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1548), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1548), + [sym_dictionary_literal] = STATE(1548), + [sym__special_literal] = STATE(1548), + [sym__playground_literal] = STATE(1548), + [sym_lambda_literal] = STATE(1548), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1548), + [sym_key_path_expression] = STATE(1548), + [sym_key_path_string_expression] = STATE(1548), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1548), + [sym__comparison_operator] = STATE(1548), + [sym__additive_operator] = STATE(1548), + [sym__multiplicative_operator] = STATE(1548), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1548), + [sym__referenceable_operator] = STATE(1548), + [sym__eq_eq] = STATE(1548), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4003), + [sym_real_literal] = ACTIONS(4005), + [sym_integer_literal] = ACTIONS(4003), + [sym_hex_literal] = ACTIONS(4005), + [sym_oct_literal] = ACTIONS(4005), + [sym_bin_literal] = ACTIONS(4005), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4003), + [anon_sym_GT] = ACTIONS(4003), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4003), + [anon_sym_POUNDfileID] = ACTIONS(4005), + [anon_sym_POUNDfilePath] = ACTIONS(4005), + [anon_sym_POUNDline] = ACTIONS(4005), + [anon_sym_POUNDcolumn] = ACTIONS(4005), + [anon_sym_POUNDfunction] = ACTIONS(4005), + [anon_sym_POUNDdsohandle] = ACTIONS(4005), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4003), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4003), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4003), + [anon_sym_LT_EQ] = ACTIONS(4003), + [anon_sym_GT_EQ] = ACTIONS(4003), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4003), + [anon_sym_SLASH] = ACTIONS(4003), + [anon_sym_PERCENT] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4005), + [sym__plus_then_ws] = ACTIONS(4005), + [sym__minus_then_ws] = ACTIONS(4005), + [sym_bang] = ACTIONS(1069), + }, + [970] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1850), + [sym_boolean_literal] = STATE(1850), + [sym__string_literal] = STATE(1850), + [sym_line_string_literal] = STATE(1850), + [sym_multi_line_string_literal] = STATE(1850), + [sym_raw_string_literal] = STATE(1850), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1850), + [sym__unary_expression] = STATE(1850), + [sym_postfix_expression] = STATE(1850), + [sym_constructor_expression] = STATE(1850), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1850), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1850), + [sym_prefix_expression] = STATE(1850), + [sym_as_expression] = STATE(1850), + [sym_selector_expression] = STATE(1850), + [sym__binary_expression] = STATE(1850), + [sym_multiplicative_expression] = STATE(1850), + [sym_additive_expression] = STATE(1850), + [sym_range_expression] = STATE(1850), + [sym_infix_expression] = STATE(1850), + [sym_nil_coalescing_expression] = STATE(1850), + [sym_check_expression] = STATE(1850), + [sym_comparison_expression] = STATE(1850), + [sym_equality_expression] = STATE(1850), + [sym_conjunction_expression] = STATE(1850), + [sym_disjunction_expression] = STATE(1850), + [sym_bitwise_operation] = STATE(1850), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1850), + [sym_await_expression] = STATE(1850), + [sym_ternary_expression] = STATE(1850), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1850), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1850), + [sym_dictionary_literal] = STATE(1850), + [sym__special_literal] = STATE(1850), + [sym__playground_literal] = STATE(1850), + [sym_lambda_literal] = STATE(1850), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1850), + [sym_key_path_expression] = STATE(1850), + [sym_key_path_string_expression] = STATE(1850), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1850), + [sym__comparison_operator] = STATE(1850), + [sym__additive_operator] = STATE(1850), + [sym__multiplicative_operator] = STATE(1850), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1850), + [sym__referenceable_operator] = STATE(1850), + [sym__eq_eq] = STATE(1850), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4007), + [sym_real_literal] = ACTIONS(4009), + [sym_integer_literal] = ACTIONS(4007), + [sym_hex_literal] = ACTIONS(4009), + [sym_oct_literal] = ACTIONS(4009), + [sym_bin_literal] = ACTIONS(4009), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4007), + [anon_sym_GT] = ACTIONS(4007), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4007), + [anon_sym_POUNDfileID] = ACTIONS(4009), + [anon_sym_POUNDfilePath] = ACTIONS(4009), + [anon_sym_POUNDline] = ACTIONS(4009), + [anon_sym_POUNDcolumn] = ACTIONS(4009), + [anon_sym_POUNDfunction] = ACTIONS(4009), + [anon_sym_POUNDdsohandle] = ACTIONS(4009), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4007), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4007), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4007), + [anon_sym_LT_EQ] = ACTIONS(4007), + [anon_sym_GT_EQ] = ACTIONS(4007), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4007), + [anon_sym_SLASH] = ACTIONS(4007), + [anon_sym_PERCENT] = ACTIONS(4007), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4009), + [sym__plus_then_ws] = ACTIONS(4009), + [sym__minus_then_ws] = ACTIONS(4009), + [sym_bang] = ACTIONS(1069), + }, + [971] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1638), + [sym_boolean_literal] = STATE(1638), + [sym__string_literal] = STATE(1638), + [sym_line_string_literal] = STATE(1638), + [sym_multi_line_string_literal] = STATE(1638), + [sym_raw_string_literal] = STATE(1638), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1638), + [sym__unary_expression] = STATE(1638), + [sym_postfix_expression] = STATE(1638), + [sym_constructor_expression] = STATE(1638), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1638), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1638), + [sym_prefix_expression] = STATE(1638), + [sym_as_expression] = STATE(1638), + [sym_selector_expression] = STATE(1638), + [sym__binary_expression] = STATE(1638), + [sym_multiplicative_expression] = STATE(1638), + [sym_additive_expression] = STATE(1638), + [sym_range_expression] = STATE(1638), + [sym_infix_expression] = STATE(1638), + [sym_nil_coalescing_expression] = STATE(1638), + [sym_check_expression] = STATE(1638), + [sym_comparison_expression] = STATE(1638), + [sym_equality_expression] = STATE(1638), + [sym_conjunction_expression] = STATE(1638), + [sym_disjunction_expression] = STATE(1638), + [sym_bitwise_operation] = STATE(1638), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1638), + [sym_await_expression] = STATE(1638), + [sym_ternary_expression] = STATE(1638), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1638), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1638), + [sym_dictionary_literal] = STATE(1638), + [sym__special_literal] = STATE(1638), + [sym__playground_literal] = STATE(1638), + [sym_lambda_literal] = STATE(1638), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1638), + [sym_key_path_expression] = STATE(1638), + [sym_key_path_string_expression] = STATE(1638), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1638), + [sym__comparison_operator] = STATE(1638), + [sym__additive_operator] = STATE(1638), + [sym__multiplicative_operator] = STATE(1638), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1638), + [sym__referenceable_operator] = STATE(1638), + [sym__eq_eq] = STATE(1638), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4011), + [sym_real_literal] = ACTIONS(4013), + [sym_integer_literal] = ACTIONS(4011), + [sym_hex_literal] = ACTIONS(4013), + [sym_oct_literal] = ACTIONS(4013), + [sym_bin_literal] = ACTIONS(4013), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4011), + [anon_sym_GT] = ACTIONS(4011), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4011), + [anon_sym_POUNDfileID] = ACTIONS(4013), + [anon_sym_POUNDfilePath] = ACTIONS(4013), + [anon_sym_POUNDline] = ACTIONS(4013), + [anon_sym_POUNDcolumn] = ACTIONS(4013), + [anon_sym_POUNDfunction] = ACTIONS(4013), + [anon_sym_POUNDdsohandle] = ACTIONS(4013), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4011), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4011), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4011), + [anon_sym_LT_EQ] = ACTIONS(4011), + [anon_sym_GT_EQ] = ACTIONS(4011), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4011), + [anon_sym_SLASH] = ACTIONS(4011), + [anon_sym_PERCENT] = ACTIONS(4011), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4013), + [sym__plus_then_ws] = ACTIONS(4013), + [sym__minus_then_ws] = ACTIONS(4013), + [sym_bang] = ACTIONS(1069), + }, + [972] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1160), + [sym__unary_expression] = STATE(1160), + [sym_postfix_expression] = STATE(1160), + [sym_constructor_expression] = STATE(1160), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1160), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1160), + [sym_await_expression] = STATE(1160), + [sym_ternary_expression] = STATE(1160), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1160), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1160), + [sym_key_path_expression] = STATE(1160), + [sym_key_path_string_expression] = STATE(1160), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1160), + [sym__comparison_operator] = STATE(1160), + [sym__additive_operator] = STATE(1160), + [sym__multiplicative_operator] = STATE(1160), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1160), + [sym__referenceable_operator] = STATE(1160), + [sym__eq_eq] = STATE(1160), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(4015), + [sym_real_literal] = ACTIONS(4017), + [sym_integer_literal] = ACTIONS(4015), + [sym_hex_literal] = ACTIONS(4017), + [sym_oct_literal] = ACTIONS(4017), + [sym_bin_literal] = ACTIONS(4017), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(4015), + [anon_sym_GT] = ACTIONS(4015), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(4015), + [anon_sym_POUNDfileID] = ACTIONS(4017), + [anon_sym_POUNDfilePath] = ACTIONS(4017), + [anon_sym_POUNDline] = ACTIONS(4017), + [anon_sym_POUNDcolumn] = ACTIONS(4017), + [anon_sym_POUNDfunction] = ACTIONS(4017), + [anon_sym_POUNDdsohandle] = ACTIONS(4017), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(4015), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4015), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4015), + [anon_sym_LT_EQ] = ACTIONS(4015), + [anon_sym_GT_EQ] = ACTIONS(4015), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(4015), + [anon_sym_SLASH] = ACTIONS(4015), + [anon_sym_PERCENT] = ACTIONS(4015), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(4017), + [sym__plus_then_ws] = ACTIONS(4017), + [sym__minus_then_ws] = ACTIONS(4017), + [sym_bang] = ACTIONS(481), + }, + [973] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2120), + [sym_boolean_literal] = STATE(2120), + [sym__string_literal] = STATE(2120), + [sym_line_string_literal] = STATE(2120), + [sym_multi_line_string_literal] = STATE(2120), + [sym_raw_string_literal] = STATE(2120), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2120), + [sym__unary_expression] = STATE(2120), + [sym_postfix_expression] = STATE(2120), + [sym_constructor_expression] = STATE(2120), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2120), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2120), + [sym_prefix_expression] = STATE(2120), + [sym_as_expression] = STATE(2120), + [sym_selector_expression] = STATE(2120), + [sym__binary_expression] = STATE(2120), + [sym_multiplicative_expression] = STATE(2120), + [sym_additive_expression] = STATE(2120), + [sym_range_expression] = STATE(2120), + [sym_infix_expression] = STATE(2120), + [sym_nil_coalescing_expression] = STATE(2120), + [sym_check_expression] = STATE(2120), + [sym_comparison_expression] = STATE(2120), + [sym_equality_expression] = STATE(2120), + [sym_conjunction_expression] = STATE(2120), + [sym_disjunction_expression] = STATE(2120), + [sym_bitwise_operation] = STATE(2120), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2120), + [sym_await_expression] = STATE(2120), + [sym_ternary_expression] = STATE(2120), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2120), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2120), + [sym_dictionary_literal] = STATE(2120), + [sym__special_literal] = STATE(2120), + [sym__playground_literal] = STATE(2120), + [sym_lambda_literal] = STATE(2120), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2120), + [sym_key_path_expression] = STATE(2120), + [sym_key_path_string_expression] = STATE(2120), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2120), + [sym__comparison_operator] = STATE(2120), + [sym__additive_operator] = STATE(2120), + [sym__multiplicative_operator] = STATE(2120), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2120), + [sym__referenceable_operator] = STATE(2120), + [sym__eq_eq] = STATE(2120), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4019), + [sym_real_literal] = ACTIONS(4021), + [sym_integer_literal] = ACTIONS(4019), + [sym_hex_literal] = ACTIONS(4021), + [sym_oct_literal] = ACTIONS(4021), + [sym_bin_literal] = ACTIONS(4021), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4019), + [anon_sym_GT] = ACTIONS(4019), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4019), + [anon_sym_POUNDfileID] = ACTIONS(4021), + [anon_sym_POUNDfilePath] = ACTIONS(4021), + [anon_sym_POUNDline] = ACTIONS(4021), + [anon_sym_POUNDcolumn] = ACTIONS(4021), + [anon_sym_POUNDfunction] = ACTIONS(4021), + [anon_sym_POUNDdsohandle] = ACTIONS(4021), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4019), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4019), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4019), + [anon_sym_LT_EQ] = ACTIONS(4019), + [anon_sym_GT_EQ] = ACTIONS(4019), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4019), + [anon_sym_SLASH] = ACTIONS(4019), + [anon_sym_PERCENT] = ACTIONS(4019), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4021), + [sym__plus_then_ws] = ACTIONS(4021), + [sym__minus_then_ws] = ACTIONS(4021), + [sym_bang] = ACTIONS(1069), + }, + [974] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1637), + [sym_boolean_literal] = STATE(1637), + [sym__string_literal] = STATE(1637), + [sym_line_string_literal] = STATE(1637), + [sym_multi_line_string_literal] = STATE(1637), + [sym_raw_string_literal] = STATE(1637), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1637), + [sym__unary_expression] = STATE(1637), + [sym_postfix_expression] = STATE(1637), + [sym_constructor_expression] = STATE(1637), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1637), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1637), + [sym_prefix_expression] = STATE(1637), + [sym_as_expression] = STATE(1637), + [sym_selector_expression] = STATE(1637), + [sym__binary_expression] = STATE(1637), + [sym_multiplicative_expression] = STATE(1637), + [sym_additive_expression] = STATE(1637), + [sym_range_expression] = STATE(1637), + [sym_infix_expression] = STATE(1637), + [sym_nil_coalescing_expression] = STATE(1637), + [sym_check_expression] = STATE(1637), + [sym_comparison_expression] = STATE(1637), + [sym_equality_expression] = STATE(1637), + [sym_conjunction_expression] = STATE(1637), + [sym_disjunction_expression] = STATE(1637), + [sym_bitwise_operation] = STATE(1637), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_ternary_expression] = STATE(1637), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1637), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1637), + [sym_dictionary_literal] = STATE(1637), + [sym__special_literal] = STATE(1637), + [sym__playground_literal] = STATE(1637), + [sym_lambda_literal] = STATE(1637), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1637), + [sym_key_path_expression] = STATE(1637), + [sym_key_path_string_expression] = STATE(1637), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1637), + [sym__comparison_operator] = STATE(1637), + [sym__additive_operator] = STATE(1637), + [sym__multiplicative_operator] = STATE(1637), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1637), + [sym__referenceable_operator] = STATE(1637), + [sym__eq_eq] = STATE(1637), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4023), + [sym_real_literal] = ACTIONS(4025), + [sym_integer_literal] = ACTIONS(4023), + [sym_hex_literal] = ACTIONS(4025), + [sym_oct_literal] = ACTIONS(4025), + [sym_bin_literal] = ACTIONS(4025), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4023), + [anon_sym_GT] = ACTIONS(4023), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4023), + [anon_sym_POUNDfileID] = ACTIONS(4025), + [anon_sym_POUNDfilePath] = ACTIONS(4025), + [anon_sym_POUNDline] = ACTIONS(4025), + [anon_sym_POUNDcolumn] = ACTIONS(4025), + [anon_sym_POUNDfunction] = ACTIONS(4025), + [anon_sym_POUNDdsohandle] = ACTIONS(4025), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4023), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4023), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4023), + [anon_sym_LT_EQ] = ACTIONS(4023), + [anon_sym_GT_EQ] = ACTIONS(4023), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4023), + [anon_sym_SLASH] = ACTIONS(4023), + [anon_sym_PERCENT] = ACTIONS(4023), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4025), + [sym__plus_then_ws] = ACTIONS(4025), + [sym__minus_then_ws] = ACTIONS(4025), + [sym_bang] = ACTIONS(1069), + }, + [975] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1609), + [sym_boolean_literal] = STATE(1609), + [sym__string_literal] = STATE(1609), + [sym_line_string_literal] = STATE(1609), + [sym_multi_line_string_literal] = STATE(1609), + [sym_raw_string_literal] = STATE(1609), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1609), + [sym__unary_expression] = STATE(1609), + [sym_postfix_expression] = STATE(1609), + [sym_constructor_expression] = STATE(1609), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1609), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(1609), + [sym_prefix_expression] = STATE(1609), + [sym_as_expression] = STATE(1609), + [sym_selector_expression] = STATE(1609), + [sym__binary_expression] = STATE(1609), + [sym_multiplicative_expression] = STATE(1609), + [sym_additive_expression] = STATE(1609), + [sym_range_expression] = STATE(1609), + [sym_infix_expression] = STATE(1609), + [sym_nil_coalescing_expression] = STATE(1609), + [sym_check_expression] = STATE(1609), + [sym_comparison_expression] = STATE(1609), + [sym_equality_expression] = STATE(1609), + [sym_conjunction_expression] = STATE(1609), + [sym_disjunction_expression] = STATE(1609), + [sym_bitwise_operation] = STATE(1609), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(1609), + [sym_await_expression] = STATE(1609), + [sym_ternary_expression] = STATE(1609), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1609), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1609), + [sym_dictionary_literal] = STATE(1609), + [sym__special_literal] = STATE(1609), + [sym__playground_literal] = STATE(1609), + [sym_lambda_literal] = STATE(1609), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1609), + [sym_key_path_expression] = STATE(1609), + [sym_key_path_string_expression] = STATE(1609), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(1609), + [sym__comparison_operator] = STATE(1609), + [sym__additive_operator] = STATE(1609), + [sym__multiplicative_operator] = STATE(1609), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(1609), + [sym__referenceable_operator] = STATE(1609), + [sym__eq_eq] = STATE(1609), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(4027), + [sym_real_literal] = ACTIONS(4029), + [sym_integer_literal] = ACTIONS(4027), + [sym_hex_literal] = ACTIONS(4029), + [sym_oct_literal] = ACTIONS(4029), + [sym_bin_literal] = ACTIONS(4029), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(4027), + [anon_sym_GT] = ACTIONS(4027), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(4027), + [anon_sym_POUNDfileID] = ACTIONS(4029), + [anon_sym_POUNDfilePath] = ACTIONS(4029), + [anon_sym_POUNDline] = ACTIONS(4029), + [anon_sym_POUNDcolumn] = ACTIONS(4029), + [anon_sym_POUNDfunction] = ACTIONS(4029), + [anon_sym_POUNDdsohandle] = ACTIONS(4029), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(4027), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4027), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4027), + [anon_sym_LT_EQ] = ACTIONS(4027), + [anon_sym_GT_EQ] = ACTIONS(4027), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(4027), + [anon_sym_SLASH] = ACTIONS(4027), + [anon_sym_PERCENT] = ACTIONS(4027), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(4029), + [sym__plus_then_ws] = ACTIONS(4029), + [sym__minus_then_ws] = ACTIONS(4029), + [sym_bang] = ACTIONS(833), + }, + [976] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2233), + [sym_boolean_literal] = STATE(2233), + [sym__string_literal] = STATE(2233), + [sym_line_string_literal] = STATE(2233), + [sym_multi_line_string_literal] = STATE(2233), + [sym_raw_string_literal] = STATE(2233), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2233), + [sym__unary_expression] = STATE(2233), + [sym_postfix_expression] = STATE(2233), + [sym_constructor_expression] = STATE(2233), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2233), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2233), + [sym_prefix_expression] = STATE(2233), + [sym_as_expression] = STATE(2233), + [sym_selector_expression] = STATE(2233), + [sym__binary_expression] = STATE(2233), + [sym_multiplicative_expression] = STATE(2233), + [sym_additive_expression] = STATE(2233), + [sym_range_expression] = STATE(2233), + [sym_infix_expression] = STATE(2233), + [sym_nil_coalescing_expression] = STATE(2233), + [sym_check_expression] = STATE(2233), + [sym_comparison_expression] = STATE(2233), + [sym_equality_expression] = STATE(2233), + [sym_conjunction_expression] = STATE(2233), + [sym_disjunction_expression] = STATE(2233), + [sym_bitwise_operation] = STATE(2233), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2233), + [sym_await_expression] = STATE(2233), + [sym_ternary_expression] = STATE(2233), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2233), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2233), + [sym_dictionary_literal] = STATE(2233), + [sym__special_literal] = STATE(2233), + [sym__playground_literal] = STATE(2233), + [sym_lambda_literal] = STATE(2233), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2233), + [sym_key_path_expression] = STATE(2233), + [sym_key_path_string_expression] = STATE(2233), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2233), + [sym__comparison_operator] = STATE(2233), + [sym__additive_operator] = STATE(2233), + [sym__multiplicative_operator] = STATE(2233), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2233), + [sym__referenceable_operator] = STATE(2233), + [sym__eq_eq] = STATE(2233), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(4031), + [sym_real_literal] = ACTIONS(4033), + [sym_integer_literal] = ACTIONS(4031), + [sym_hex_literal] = ACTIONS(4033), + [sym_oct_literal] = ACTIONS(4033), + [sym_bin_literal] = ACTIONS(4033), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(4031), + [anon_sym_GT] = ACTIONS(4031), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(4031), + [anon_sym_POUNDfileID] = ACTIONS(4033), + [anon_sym_POUNDfilePath] = ACTIONS(4033), + [anon_sym_POUNDline] = ACTIONS(4033), + [anon_sym_POUNDcolumn] = ACTIONS(4033), + [anon_sym_POUNDfunction] = ACTIONS(4033), + [anon_sym_POUNDdsohandle] = ACTIONS(4033), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(4031), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4031), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4031), + [anon_sym_LT_EQ] = ACTIONS(4031), + [anon_sym_GT_EQ] = ACTIONS(4031), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(4031), + [anon_sym_SLASH] = ACTIONS(4031), + [anon_sym_PERCENT] = ACTIONS(4031), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(4033), + [sym__plus_then_ws] = ACTIONS(4033), + [sym__minus_then_ws] = ACTIONS(4033), + [sym_bang] = ACTIONS(833), + }, + [977] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1851), + [sym_boolean_literal] = STATE(1851), + [sym__string_literal] = STATE(1851), + [sym_line_string_literal] = STATE(1851), + [sym_multi_line_string_literal] = STATE(1851), + [sym_raw_string_literal] = STATE(1851), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1851), + [sym__unary_expression] = STATE(1851), + [sym_postfix_expression] = STATE(1851), + [sym_constructor_expression] = STATE(1851), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1851), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1851), + [sym_prefix_expression] = STATE(1851), + [sym_as_expression] = STATE(1851), + [sym_selector_expression] = STATE(1851), + [sym__binary_expression] = STATE(1851), + [sym_multiplicative_expression] = STATE(1851), + [sym_additive_expression] = STATE(1851), + [sym_range_expression] = STATE(1851), + [sym_infix_expression] = STATE(1851), + [sym_nil_coalescing_expression] = STATE(1851), + [sym_check_expression] = STATE(1851), + [sym_comparison_expression] = STATE(1851), + [sym_equality_expression] = STATE(1851), + [sym_conjunction_expression] = STATE(1851), + [sym_disjunction_expression] = STATE(1851), + [sym_bitwise_operation] = STATE(1851), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1851), + [sym_await_expression] = STATE(1851), + [sym_ternary_expression] = STATE(1851), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1851), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1851), + [sym_dictionary_literal] = STATE(1851), + [sym__special_literal] = STATE(1851), + [sym__playground_literal] = STATE(1851), + [sym_lambda_literal] = STATE(1851), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1851), + [sym_key_path_expression] = STATE(1851), + [sym_key_path_string_expression] = STATE(1851), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1851), + [sym__comparison_operator] = STATE(1851), + [sym__additive_operator] = STATE(1851), + [sym__multiplicative_operator] = STATE(1851), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1851), + [sym__referenceable_operator] = STATE(1851), + [sym__eq_eq] = STATE(1851), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4035), + [sym_real_literal] = ACTIONS(4037), + [sym_integer_literal] = ACTIONS(4035), + [sym_hex_literal] = ACTIONS(4037), + [sym_oct_literal] = ACTIONS(4037), + [sym_bin_literal] = ACTIONS(4037), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4035), + [anon_sym_GT] = ACTIONS(4035), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4035), + [anon_sym_POUNDfileID] = ACTIONS(4037), + [anon_sym_POUNDfilePath] = ACTIONS(4037), + [anon_sym_POUNDline] = ACTIONS(4037), + [anon_sym_POUNDcolumn] = ACTIONS(4037), + [anon_sym_POUNDfunction] = ACTIONS(4037), + [anon_sym_POUNDdsohandle] = ACTIONS(4037), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4035), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4035), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4035), + [anon_sym_LT_EQ] = ACTIONS(4035), + [anon_sym_GT_EQ] = ACTIONS(4035), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4035), + [anon_sym_SLASH] = ACTIONS(4035), + [anon_sym_PERCENT] = ACTIONS(4035), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4037), + [sym__plus_then_ws] = ACTIONS(4037), + [sym__minus_then_ws] = ACTIONS(4037), + [sym_bang] = ACTIONS(1069), + }, + [978] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1549), + [sym_boolean_literal] = STATE(1549), + [sym__string_literal] = STATE(1549), + [sym_line_string_literal] = STATE(1549), + [sym_multi_line_string_literal] = STATE(1549), + [sym_raw_string_literal] = STATE(1549), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1549), + [sym__unary_expression] = STATE(1549), + [sym_postfix_expression] = STATE(1549), + [sym_constructor_expression] = STATE(1549), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1549), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1549), + [sym_prefix_expression] = STATE(1549), + [sym_as_expression] = STATE(1549), + [sym_selector_expression] = STATE(1549), + [sym__binary_expression] = STATE(1549), + [sym_multiplicative_expression] = STATE(1549), + [sym_additive_expression] = STATE(1549), + [sym_range_expression] = STATE(1549), + [sym_infix_expression] = STATE(1549), + [sym_nil_coalescing_expression] = STATE(1549), + [sym_check_expression] = STATE(1549), + [sym_comparison_expression] = STATE(1549), + [sym_equality_expression] = STATE(1549), + [sym_conjunction_expression] = STATE(1549), + [sym_disjunction_expression] = STATE(1549), + [sym_bitwise_operation] = STATE(1549), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1549), + [sym_await_expression] = STATE(1549), + [sym_ternary_expression] = STATE(1549), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1549), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1549), + [sym_dictionary_literal] = STATE(1549), + [sym__special_literal] = STATE(1549), + [sym__playground_literal] = STATE(1549), + [sym_lambda_literal] = STATE(1549), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1549), + [sym_key_path_expression] = STATE(1549), + [sym_key_path_string_expression] = STATE(1549), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1549), + [sym__comparison_operator] = STATE(1549), + [sym__additive_operator] = STATE(1549), + [sym__multiplicative_operator] = STATE(1549), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1549), + [sym__referenceable_operator] = STATE(1549), + [sym__eq_eq] = STATE(1549), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4039), + [sym_real_literal] = ACTIONS(4041), + [sym_integer_literal] = ACTIONS(4039), + [sym_hex_literal] = ACTIONS(4041), + [sym_oct_literal] = ACTIONS(4041), + [sym_bin_literal] = ACTIONS(4041), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4039), + [anon_sym_GT] = ACTIONS(4039), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4039), + [anon_sym_POUNDfileID] = ACTIONS(4041), + [anon_sym_POUNDfilePath] = ACTIONS(4041), + [anon_sym_POUNDline] = ACTIONS(4041), + [anon_sym_POUNDcolumn] = ACTIONS(4041), + [anon_sym_POUNDfunction] = ACTIONS(4041), + [anon_sym_POUNDdsohandle] = ACTIONS(4041), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4039), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4039), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4039), + [anon_sym_LT_EQ] = ACTIONS(4039), + [anon_sym_GT_EQ] = ACTIONS(4039), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4039), + [anon_sym_SLASH] = ACTIONS(4039), + [anon_sym_PERCENT] = ACTIONS(4039), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4041), + [sym__plus_then_ws] = ACTIONS(4041), + [sym__minus_then_ws] = ACTIONS(4041), + [sym_bang] = ACTIONS(1069), + }, + [979] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1989), + [sym_boolean_literal] = STATE(1989), + [sym__string_literal] = STATE(1989), + [sym_line_string_literal] = STATE(1989), + [sym_multi_line_string_literal] = STATE(1989), + [sym_raw_string_literal] = STATE(1989), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1989), + [sym__unary_expression] = STATE(1989), + [sym_postfix_expression] = STATE(1989), + [sym_constructor_expression] = STATE(1989), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1989), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1989), + [sym_prefix_expression] = STATE(1989), + [sym_as_expression] = STATE(1989), + [sym_selector_expression] = STATE(1989), + [sym__binary_expression] = STATE(1989), + [sym_multiplicative_expression] = STATE(1989), + [sym_additive_expression] = STATE(1989), + [sym_range_expression] = STATE(1989), + [sym_infix_expression] = STATE(1989), + [sym_nil_coalescing_expression] = STATE(1989), + [sym_check_expression] = STATE(1989), + [sym_comparison_expression] = STATE(1989), + [sym_equality_expression] = STATE(1989), + [sym_conjunction_expression] = STATE(1989), + [sym_disjunction_expression] = STATE(1989), + [sym_bitwise_operation] = STATE(1989), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1989), + [sym_await_expression] = STATE(1989), + [sym_ternary_expression] = STATE(1989), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1989), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1989), + [sym_dictionary_literal] = STATE(1989), + [sym__special_literal] = STATE(1989), + [sym__playground_literal] = STATE(1989), + [sym_lambda_literal] = STATE(1989), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1989), + [sym_key_path_expression] = STATE(1989), + [sym_key_path_string_expression] = STATE(1989), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1989), + [sym__comparison_operator] = STATE(1989), + [sym__additive_operator] = STATE(1989), + [sym__multiplicative_operator] = STATE(1989), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1989), + [sym__referenceable_operator] = STATE(1989), + [sym__eq_eq] = STATE(1989), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4043), + [sym_real_literal] = ACTIONS(4045), + [sym_integer_literal] = ACTIONS(4043), + [sym_hex_literal] = ACTIONS(4045), + [sym_oct_literal] = ACTIONS(4045), + [sym_bin_literal] = ACTIONS(4045), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4043), + [anon_sym_GT] = ACTIONS(4043), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4043), + [anon_sym_POUNDfileID] = ACTIONS(4045), + [anon_sym_POUNDfilePath] = ACTIONS(4045), + [anon_sym_POUNDline] = ACTIONS(4045), + [anon_sym_POUNDcolumn] = ACTIONS(4045), + [anon_sym_POUNDfunction] = ACTIONS(4045), + [anon_sym_POUNDdsohandle] = ACTIONS(4045), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4043), + [anon_sym_LT_EQ] = ACTIONS(4043), + [anon_sym_GT_EQ] = ACTIONS(4043), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4043), + [anon_sym_SLASH] = ACTIONS(4043), + [anon_sym_PERCENT] = ACTIONS(4043), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4045), + [sym__plus_then_ws] = ACTIONS(4045), + [sym__minus_then_ws] = ACTIONS(4045), + [sym_bang] = ACTIONS(1069), + }, + [980] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(2206), + [sym_boolean_literal] = STATE(2206), + [sym__string_literal] = STATE(2206), + [sym_line_string_literal] = STATE(2206), + [sym_multi_line_string_literal] = STATE(2206), + [sym_raw_string_literal] = STATE(2206), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(2206), + [sym__unary_expression] = STATE(2206), + [sym_postfix_expression] = STATE(2206), + [sym_constructor_expression] = STATE(2206), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(2206), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(2206), + [sym_prefix_expression] = STATE(2206), + [sym_as_expression] = STATE(2206), + [sym_selector_expression] = STATE(2206), + [sym__binary_expression] = STATE(2206), + [sym_multiplicative_expression] = STATE(2206), + [sym_additive_expression] = STATE(2206), + [sym_range_expression] = STATE(2206), + [sym_infix_expression] = STATE(2206), + [sym_nil_coalescing_expression] = STATE(2206), + [sym_check_expression] = STATE(2206), + [sym_comparison_expression] = STATE(2206), + [sym_equality_expression] = STATE(2206), + [sym_conjunction_expression] = STATE(2206), + [sym_disjunction_expression] = STATE(2206), + [sym_bitwise_operation] = STATE(2206), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(2206), + [sym_await_expression] = STATE(2206), + [sym_ternary_expression] = STATE(2206), + [sym_call_expression] = STATE(2760), + [sym__primary_expression] = STATE(2206), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(2206), + [sym_dictionary_literal] = STATE(2206), + [sym__special_literal] = STATE(2206), + [sym__playground_literal] = STATE(2206), + [sym_lambda_literal] = STATE(2206), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(2206), + [sym_key_path_expression] = STATE(2206), + [sym_key_path_string_expression] = STATE(2206), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(2206), + [sym__comparison_operator] = STATE(2206), + [sym__additive_operator] = STATE(2206), + [sym__multiplicative_operator] = STATE(2206), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(2206), + [sym__referenceable_operator] = STATE(2206), + [sym__eq_eq] = STATE(2206), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [anon_sym_nil] = ACTIONS(4047), + [sym_real_literal] = ACTIONS(4049), + [sym_integer_literal] = ACTIONS(4047), + [sym_hex_literal] = ACTIONS(4049), + [sym_oct_literal] = ACTIONS(4049), + [sym_bin_literal] = ACTIONS(4049), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(4047), + [anon_sym_GT] = ACTIONS(4047), + [sym__await_operator] = ACTIONS(937), + [anon_sym_POUNDfile] = ACTIONS(4047), + [anon_sym_POUNDfileID] = ACTIONS(4049), + [anon_sym_POUNDfilePath] = ACTIONS(4049), + [anon_sym_POUNDline] = ACTIONS(4049), + [anon_sym_POUNDcolumn] = ACTIONS(4049), + [anon_sym_POUNDfunction] = ACTIONS(4049), + [anon_sym_POUNDdsohandle] = ACTIONS(4049), + [anon_sym_POUNDcolorLiteral] = ACTIONS(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(4047), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4047), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4047), + [anon_sym_LT_EQ] = ACTIONS(4047), + [anon_sym_GT_EQ] = ACTIONS(4047), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(4047), + [anon_sym_SLASH] = ACTIONS(4047), + [anon_sym_PERCENT] = ACTIONS(4047), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(4049), + [sym__plus_then_ws] = ACTIONS(4049), + [sym__minus_then_ws] = ACTIONS(4049), + [sym_bang] = ACTIONS(971), + }, + [981] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(2202), + [sym_boolean_literal] = STATE(2202), + [sym__string_literal] = STATE(2202), + [sym_line_string_literal] = STATE(2202), + [sym_multi_line_string_literal] = STATE(2202), + [sym_raw_string_literal] = STATE(2202), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(2202), + [sym__unary_expression] = STATE(2202), + [sym_postfix_expression] = STATE(2202), + [sym_constructor_expression] = STATE(2202), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(2202), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(2202), + [sym_prefix_expression] = STATE(2202), + [sym_as_expression] = STATE(2202), + [sym_selector_expression] = STATE(2202), + [sym__binary_expression] = STATE(2202), + [sym_multiplicative_expression] = STATE(2202), + [sym_additive_expression] = STATE(2202), + [sym_range_expression] = STATE(2202), + [sym_infix_expression] = STATE(2202), + [sym_nil_coalescing_expression] = STATE(2202), + [sym_check_expression] = STATE(2202), + [sym_comparison_expression] = STATE(2202), + [sym_equality_expression] = STATE(2202), + [sym_conjunction_expression] = STATE(2202), + [sym_disjunction_expression] = STATE(2202), + [sym_bitwise_operation] = STATE(2202), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(2202), + [sym_await_expression] = STATE(2202), + [sym_ternary_expression] = STATE(2202), + [sym_call_expression] = STATE(2760), + [sym__primary_expression] = STATE(2202), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(2202), + [sym_dictionary_literal] = STATE(2202), + [sym__special_literal] = STATE(2202), + [sym__playground_literal] = STATE(2202), + [sym_lambda_literal] = STATE(2202), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(2202), + [sym_key_path_expression] = STATE(2202), + [sym_key_path_string_expression] = STATE(2202), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(2202), + [sym__comparison_operator] = STATE(2202), + [sym__additive_operator] = STATE(2202), + [sym__multiplicative_operator] = STATE(2202), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(2202), + [sym__referenceable_operator] = STATE(2202), + [sym__eq_eq] = STATE(2202), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [anon_sym_nil] = ACTIONS(4051), + [sym_real_literal] = ACTIONS(4053), + [sym_integer_literal] = ACTIONS(4051), + [sym_hex_literal] = ACTIONS(4053), + [sym_oct_literal] = ACTIONS(4053), + [sym_bin_literal] = ACTIONS(4053), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(4051), + [anon_sym_GT] = ACTIONS(4051), + [sym__await_operator] = ACTIONS(937), + [anon_sym_POUNDfile] = ACTIONS(4051), + [anon_sym_POUNDfileID] = ACTIONS(4053), + [anon_sym_POUNDfilePath] = ACTIONS(4053), + [anon_sym_POUNDline] = ACTIONS(4053), + [anon_sym_POUNDcolumn] = ACTIONS(4053), + [anon_sym_POUNDfunction] = ACTIONS(4053), + [anon_sym_POUNDdsohandle] = ACTIONS(4053), + [anon_sym_POUNDcolorLiteral] = ACTIONS(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(4051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4051), + [anon_sym_LT_EQ] = ACTIONS(4051), + [anon_sym_GT_EQ] = ACTIONS(4051), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(4051), + [anon_sym_SLASH] = ACTIONS(4051), + [anon_sym_PERCENT] = ACTIONS(4051), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(4053), + [sym__plus_then_ws] = ACTIONS(4053), + [sym__minus_then_ws] = ACTIONS(4053), + [sym_bang] = ACTIONS(971), + }, + [982] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1636), + [sym_boolean_literal] = STATE(1636), + [sym__string_literal] = STATE(1636), + [sym_line_string_literal] = STATE(1636), + [sym_multi_line_string_literal] = STATE(1636), + [sym_raw_string_literal] = STATE(1636), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1636), + [sym__unary_expression] = STATE(1636), + [sym_postfix_expression] = STATE(1636), + [sym_constructor_expression] = STATE(1636), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1636), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1636), + [sym_prefix_expression] = STATE(1636), + [sym_as_expression] = STATE(1636), + [sym_selector_expression] = STATE(1636), + [sym__binary_expression] = STATE(1636), + [sym_multiplicative_expression] = STATE(1636), + [sym_additive_expression] = STATE(1636), + [sym_range_expression] = STATE(1636), + [sym_infix_expression] = STATE(1636), + [sym_nil_coalescing_expression] = STATE(1636), + [sym_check_expression] = STATE(1636), + [sym_comparison_expression] = STATE(1636), + [sym_equality_expression] = STATE(1636), + [sym_conjunction_expression] = STATE(1636), + [sym_disjunction_expression] = STATE(1636), + [sym_bitwise_operation] = STATE(1636), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1636), + [sym_await_expression] = STATE(1636), + [sym_ternary_expression] = STATE(1636), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1636), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1636), + [sym_dictionary_literal] = STATE(1636), + [sym__special_literal] = STATE(1636), + [sym__playground_literal] = STATE(1636), + [sym_lambda_literal] = STATE(1636), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1636), + [sym_key_path_expression] = STATE(1636), + [sym_key_path_string_expression] = STATE(1636), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1636), + [sym__comparison_operator] = STATE(1636), + [sym__additive_operator] = STATE(1636), + [sym__multiplicative_operator] = STATE(1636), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1636), + [sym__referenceable_operator] = STATE(1636), + [sym__eq_eq] = STATE(1636), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4055), + [sym_real_literal] = ACTIONS(4057), + [sym_integer_literal] = ACTIONS(4055), + [sym_hex_literal] = ACTIONS(4057), + [sym_oct_literal] = ACTIONS(4057), + [sym_bin_literal] = ACTIONS(4057), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4055), + [anon_sym_GT] = ACTIONS(4055), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4055), + [anon_sym_POUNDfileID] = ACTIONS(4057), + [anon_sym_POUNDfilePath] = ACTIONS(4057), + [anon_sym_POUNDline] = ACTIONS(4057), + [anon_sym_POUNDcolumn] = ACTIONS(4057), + [anon_sym_POUNDfunction] = ACTIONS(4057), + [anon_sym_POUNDdsohandle] = ACTIONS(4057), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4055), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4055), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4055), + [anon_sym_LT_EQ] = ACTIONS(4055), + [anon_sym_GT_EQ] = ACTIONS(4055), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4055), + [anon_sym_SLASH] = ACTIONS(4055), + [anon_sym_PERCENT] = ACTIONS(4055), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4057), + [sym__plus_then_ws] = ACTIONS(4057), + [sym__minus_then_ws] = ACTIONS(4057), + [sym_bang] = ACTIONS(1069), + }, + [983] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1990), + [sym_boolean_literal] = STATE(1990), + [sym__string_literal] = STATE(1990), + [sym_line_string_literal] = STATE(1990), + [sym_multi_line_string_literal] = STATE(1990), + [sym_raw_string_literal] = STATE(1990), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1990), + [sym__unary_expression] = STATE(1990), + [sym_postfix_expression] = STATE(1990), + [sym_constructor_expression] = STATE(1990), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1990), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1990), + [sym_prefix_expression] = STATE(1990), + [sym_as_expression] = STATE(1990), + [sym_selector_expression] = STATE(1990), + [sym__binary_expression] = STATE(1990), + [sym_multiplicative_expression] = STATE(1990), + [sym_additive_expression] = STATE(1990), + [sym_range_expression] = STATE(1990), + [sym_infix_expression] = STATE(1990), + [sym_nil_coalescing_expression] = STATE(1990), + [sym_check_expression] = STATE(1990), + [sym_comparison_expression] = STATE(1990), + [sym_equality_expression] = STATE(1990), + [sym_conjunction_expression] = STATE(1990), + [sym_disjunction_expression] = STATE(1990), + [sym_bitwise_operation] = STATE(1990), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1990), + [sym_await_expression] = STATE(1990), + [sym_ternary_expression] = STATE(1990), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1990), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1990), + [sym_dictionary_literal] = STATE(1990), + [sym__special_literal] = STATE(1990), + [sym__playground_literal] = STATE(1990), + [sym_lambda_literal] = STATE(1990), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1990), + [sym_key_path_expression] = STATE(1990), + [sym_key_path_string_expression] = STATE(1990), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1990), + [sym__comparison_operator] = STATE(1990), + [sym__additive_operator] = STATE(1990), + [sym__multiplicative_operator] = STATE(1990), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1990), + [sym__referenceable_operator] = STATE(1990), + [sym__eq_eq] = STATE(1990), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4059), + [sym_real_literal] = ACTIONS(4061), + [sym_integer_literal] = ACTIONS(4059), + [sym_hex_literal] = ACTIONS(4061), + [sym_oct_literal] = ACTIONS(4061), + [sym_bin_literal] = ACTIONS(4061), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4059), + [anon_sym_GT] = ACTIONS(4059), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4059), + [anon_sym_POUNDfileID] = ACTIONS(4061), + [anon_sym_POUNDfilePath] = ACTIONS(4061), + [anon_sym_POUNDline] = ACTIONS(4061), + [anon_sym_POUNDcolumn] = ACTIONS(4061), + [anon_sym_POUNDfunction] = ACTIONS(4061), + [anon_sym_POUNDdsohandle] = ACTIONS(4061), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4059), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4059), + [anon_sym_LT_EQ] = ACTIONS(4059), + [anon_sym_GT_EQ] = ACTIONS(4059), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4059), + [anon_sym_SLASH] = ACTIONS(4059), + [anon_sym_PERCENT] = ACTIONS(4059), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4061), + [sym__plus_then_ws] = ACTIONS(4061), + [sym__minus_then_ws] = ACTIONS(4061), + [sym_bang] = ACTIONS(1069), + }, + [984] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(2201), + [sym_boolean_literal] = STATE(2201), + [sym__string_literal] = STATE(2201), + [sym_line_string_literal] = STATE(2201), + [sym_multi_line_string_literal] = STATE(2201), + [sym_raw_string_literal] = STATE(2201), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(2201), + [sym__unary_expression] = STATE(2201), + [sym_postfix_expression] = STATE(2201), + [sym_constructor_expression] = STATE(2201), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(2201), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(2201), + [sym_prefix_expression] = STATE(2201), + [sym_as_expression] = STATE(2201), + [sym_selector_expression] = STATE(2201), + [sym__binary_expression] = STATE(2201), + [sym_multiplicative_expression] = STATE(2201), + [sym_additive_expression] = STATE(2201), + [sym_range_expression] = STATE(2201), + [sym_infix_expression] = STATE(2201), + [sym_nil_coalescing_expression] = STATE(2201), + [sym_check_expression] = STATE(2201), + [sym_comparison_expression] = STATE(2201), + [sym_equality_expression] = STATE(2201), + [sym_conjunction_expression] = STATE(2201), + [sym_disjunction_expression] = STATE(2201), + [sym_bitwise_operation] = STATE(2201), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(2201), + [sym_await_expression] = STATE(2201), + [sym_ternary_expression] = STATE(2201), + [sym_call_expression] = STATE(2760), + [sym__primary_expression] = STATE(2201), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(2201), + [sym_dictionary_literal] = STATE(2201), + [sym__special_literal] = STATE(2201), + [sym__playground_literal] = STATE(2201), + [sym_lambda_literal] = STATE(2201), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(2201), + [sym_key_path_expression] = STATE(2201), + [sym_key_path_string_expression] = STATE(2201), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(2201), + [sym__comparison_operator] = STATE(2201), + [sym__additive_operator] = STATE(2201), + [sym__multiplicative_operator] = STATE(2201), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(2201), + [sym__referenceable_operator] = STATE(2201), + [sym__eq_eq] = STATE(2201), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [anon_sym_nil] = ACTIONS(4063), + [sym_real_literal] = ACTIONS(4065), + [sym_integer_literal] = ACTIONS(4063), + [sym_hex_literal] = ACTIONS(4065), + [sym_oct_literal] = ACTIONS(4065), + [sym_bin_literal] = ACTIONS(4065), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(4063), + [anon_sym_GT] = ACTIONS(4063), + [sym__await_operator] = ACTIONS(937), + [anon_sym_POUNDfile] = ACTIONS(4063), + [anon_sym_POUNDfileID] = ACTIONS(4065), + [anon_sym_POUNDfilePath] = ACTIONS(4065), + [anon_sym_POUNDline] = ACTIONS(4065), + [anon_sym_POUNDcolumn] = ACTIONS(4065), + [anon_sym_POUNDfunction] = ACTIONS(4065), + [anon_sym_POUNDdsohandle] = ACTIONS(4065), + [anon_sym_POUNDcolorLiteral] = ACTIONS(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(4063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4063), + [anon_sym_LT_EQ] = ACTIONS(4063), + [anon_sym_GT_EQ] = ACTIONS(4063), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(4063), + [anon_sym_SLASH] = ACTIONS(4063), + [anon_sym_PERCENT] = ACTIONS(4063), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(4065), + [sym__plus_then_ws] = ACTIONS(4065), + [sym__minus_then_ws] = ACTIONS(4065), + [sym_bang] = ACTIONS(971), + }, + [985] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(2200), + [sym_boolean_literal] = STATE(2200), + [sym__string_literal] = STATE(2200), + [sym_line_string_literal] = STATE(2200), + [sym_multi_line_string_literal] = STATE(2200), + [sym_raw_string_literal] = STATE(2200), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(2200), + [sym__unary_expression] = STATE(2200), + [sym_postfix_expression] = STATE(2200), + [sym_constructor_expression] = STATE(2200), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(2200), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(2200), + [sym_prefix_expression] = STATE(2200), + [sym_as_expression] = STATE(2200), + [sym_selector_expression] = STATE(2200), + [sym__binary_expression] = STATE(2200), + [sym_multiplicative_expression] = STATE(2200), + [sym_additive_expression] = STATE(2200), + [sym_range_expression] = STATE(2200), + [sym_infix_expression] = STATE(2200), + [sym_nil_coalescing_expression] = STATE(2200), + [sym_check_expression] = STATE(2200), + [sym_comparison_expression] = STATE(2200), + [sym_equality_expression] = STATE(2200), + [sym_conjunction_expression] = STATE(2200), + [sym_disjunction_expression] = STATE(2200), + [sym_bitwise_operation] = STATE(2200), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(2200), + [sym_await_expression] = STATE(2200), + [sym_ternary_expression] = STATE(2200), + [sym_call_expression] = STATE(2760), + [sym__primary_expression] = STATE(2200), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(2200), + [sym_dictionary_literal] = STATE(2200), + [sym__special_literal] = STATE(2200), + [sym__playground_literal] = STATE(2200), + [sym_lambda_literal] = STATE(2200), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(2200), + [sym_key_path_expression] = STATE(2200), + [sym_key_path_string_expression] = STATE(2200), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(2200), + [sym__comparison_operator] = STATE(2200), + [sym__additive_operator] = STATE(2200), + [sym__multiplicative_operator] = STATE(2200), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(2200), + [sym__referenceable_operator] = STATE(2200), + [sym__eq_eq] = STATE(2200), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [anon_sym_nil] = ACTIONS(4067), + [sym_real_literal] = ACTIONS(4069), + [sym_integer_literal] = ACTIONS(4067), + [sym_hex_literal] = ACTIONS(4069), + [sym_oct_literal] = ACTIONS(4069), + [sym_bin_literal] = ACTIONS(4069), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(4067), + [anon_sym_GT] = ACTIONS(4067), + [sym__await_operator] = ACTIONS(937), + [anon_sym_POUNDfile] = ACTIONS(4067), + [anon_sym_POUNDfileID] = ACTIONS(4069), + [anon_sym_POUNDfilePath] = ACTIONS(4069), + [anon_sym_POUNDline] = ACTIONS(4069), + [anon_sym_POUNDcolumn] = ACTIONS(4069), + [anon_sym_POUNDfunction] = ACTIONS(4069), + [anon_sym_POUNDdsohandle] = ACTIONS(4069), + [anon_sym_POUNDcolorLiteral] = ACTIONS(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(4067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4067), + [anon_sym_LT_EQ] = ACTIONS(4067), + [anon_sym_GT_EQ] = ACTIONS(4067), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(4067), + [anon_sym_SLASH] = ACTIONS(4067), + [anon_sym_PERCENT] = ACTIONS(4067), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(4069), + [sym__plus_then_ws] = ACTIONS(4069), + [sym__minus_then_ws] = ACTIONS(4069), + [sym_bang] = ACTIONS(971), + }, + [986] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(2196), + [sym_boolean_literal] = STATE(2196), + [sym__string_literal] = STATE(2196), + [sym_line_string_literal] = STATE(2196), + [sym_multi_line_string_literal] = STATE(2196), + [sym_raw_string_literal] = STATE(2196), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(2196), + [sym__unary_expression] = STATE(2196), + [sym_postfix_expression] = STATE(2196), + [sym_constructor_expression] = STATE(2196), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(2196), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(2196), + [sym_prefix_expression] = STATE(2196), + [sym_as_expression] = STATE(2196), + [sym_selector_expression] = STATE(2196), + [sym__binary_expression] = STATE(2196), + [sym_multiplicative_expression] = STATE(2196), + [sym_additive_expression] = STATE(2196), + [sym_range_expression] = STATE(2196), + [sym_infix_expression] = STATE(2196), + [sym_nil_coalescing_expression] = STATE(2196), + [sym_check_expression] = STATE(2196), + [sym_comparison_expression] = STATE(2196), + [sym_equality_expression] = STATE(2196), + [sym_conjunction_expression] = STATE(2196), + [sym_disjunction_expression] = STATE(2196), + [sym_bitwise_operation] = STATE(2196), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(2196), + [sym_await_expression] = STATE(2196), + [sym_ternary_expression] = STATE(2196), + [sym_call_expression] = STATE(2760), + [sym__primary_expression] = STATE(2196), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(2196), + [sym_dictionary_literal] = STATE(2196), + [sym__special_literal] = STATE(2196), + [sym__playground_literal] = STATE(2196), + [sym_lambda_literal] = STATE(2196), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(2196), + [sym_key_path_expression] = STATE(2196), + [sym_key_path_string_expression] = STATE(2196), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(2196), + [sym__comparison_operator] = STATE(2196), + [sym__additive_operator] = STATE(2196), + [sym__multiplicative_operator] = STATE(2196), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(2196), + [sym__referenceable_operator] = STATE(2196), + [sym__eq_eq] = STATE(2196), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [anon_sym_nil] = ACTIONS(4071), + [sym_real_literal] = ACTIONS(4073), + [sym_integer_literal] = ACTIONS(4071), + [sym_hex_literal] = ACTIONS(4073), + [sym_oct_literal] = ACTIONS(4073), + [sym_bin_literal] = ACTIONS(4073), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(4071), + [anon_sym_GT] = ACTIONS(4071), + [sym__await_operator] = ACTIONS(937), + [anon_sym_POUNDfile] = ACTIONS(4071), + [anon_sym_POUNDfileID] = ACTIONS(4073), + [anon_sym_POUNDfilePath] = ACTIONS(4073), + [anon_sym_POUNDline] = ACTIONS(4073), + [anon_sym_POUNDcolumn] = ACTIONS(4073), + [anon_sym_POUNDfunction] = ACTIONS(4073), + [anon_sym_POUNDdsohandle] = ACTIONS(4073), + [anon_sym_POUNDcolorLiteral] = ACTIONS(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(4071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4071), + [anon_sym_LT_EQ] = ACTIONS(4071), + [anon_sym_GT_EQ] = ACTIONS(4071), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_SLASH] = ACTIONS(4071), + [anon_sym_PERCENT] = ACTIONS(4071), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(4073), + [sym__plus_then_ws] = ACTIONS(4073), + [sym__minus_then_ws] = ACTIONS(4073), + [sym_bang] = ACTIONS(971), + }, + [987] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(2195), + [sym_boolean_literal] = STATE(2195), + [sym__string_literal] = STATE(2195), + [sym_line_string_literal] = STATE(2195), + [sym_multi_line_string_literal] = STATE(2195), + [sym_raw_string_literal] = STATE(2195), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(2195), + [sym__unary_expression] = STATE(2195), + [sym_postfix_expression] = STATE(2195), + [sym_constructor_expression] = STATE(2195), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(2195), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(2195), + [sym_prefix_expression] = STATE(2195), + [sym_as_expression] = STATE(2195), + [sym_selector_expression] = STATE(2195), + [sym__binary_expression] = STATE(2195), + [sym_multiplicative_expression] = STATE(2195), + [sym_additive_expression] = STATE(2195), + [sym_range_expression] = STATE(2195), + [sym_infix_expression] = STATE(2195), + [sym_nil_coalescing_expression] = STATE(2195), + [sym_check_expression] = STATE(2195), + [sym_comparison_expression] = STATE(2195), + [sym_equality_expression] = STATE(2195), + [sym_conjunction_expression] = STATE(2195), + [sym_disjunction_expression] = STATE(2195), + [sym_bitwise_operation] = STATE(2195), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(2195), + [sym_await_expression] = STATE(2195), + [sym_ternary_expression] = STATE(2195), + [sym_call_expression] = STATE(2760), + [sym__primary_expression] = STATE(2195), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(2195), + [sym_dictionary_literal] = STATE(2195), + [sym__special_literal] = STATE(2195), + [sym__playground_literal] = STATE(2195), + [sym_lambda_literal] = STATE(2195), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(2195), + [sym_key_path_expression] = STATE(2195), + [sym_key_path_string_expression] = STATE(2195), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(2195), + [sym__comparison_operator] = STATE(2195), + [sym__additive_operator] = STATE(2195), + [sym__multiplicative_operator] = STATE(2195), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(2195), + [sym__referenceable_operator] = STATE(2195), + [sym__eq_eq] = STATE(2195), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [anon_sym_nil] = ACTIONS(4075), + [sym_real_literal] = ACTIONS(4077), + [sym_integer_literal] = ACTIONS(4075), + [sym_hex_literal] = ACTIONS(4077), + [sym_oct_literal] = ACTIONS(4077), + [sym_bin_literal] = ACTIONS(4077), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(4075), + [anon_sym_GT] = ACTIONS(4075), + [sym__await_operator] = ACTIONS(937), + [anon_sym_POUNDfile] = ACTIONS(4075), + [anon_sym_POUNDfileID] = ACTIONS(4077), + [anon_sym_POUNDfilePath] = ACTIONS(4077), + [anon_sym_POUNDline] = ACTIONS(4077), + [anon_sym_POUNDcolumn] = ACTIONS(4077), + [anon_sym_POUNDfunction] = ACTIONS(4077), + [anon_sym_POUNDdsohandle] = ACTIONS(4077), + [anon_sym_POUNDcolorLiteral] = ACTIONS(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(4075), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4075), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4075), + [anon_sym_LT_EQ] = ACTIONS(4075), + [anon_sym_GT_EQ] = ACTIONS(4075), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(4075), + [anon_sym_SLASH] = ACTIONS(4075), + [anon_sym_PERCENT] = ACTIONS(4075), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(4077), + [sym__plus_then_ws] = ACTIONS(4077), + [sym__minus_then_ws] = ACTIONS(4077), + [sym_bang] = ACTIONS(971), + }, + [988] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(2194), + [sym_boolean_literal] = STATE(2194), + [sym__string_literal] = STATE(2194), + [sym_line_string_literal] = STATE(2194), + [sym_multi_line_string_literal] = STATE(2194), + [sym_raw_string_literal] = STATE(2194), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(2194), + [sym__unary_expression] = STATE(2194), + [sym_postfix_expression] = STATE(2194), + [sym_constructor_expression] = STATE(2194), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(2194), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(2194), + [sym_prefix_expression] = STATE(2194), + [sym_as_expression] = STATE(2194), + [sym_selector_expression] = STATE(2194), + [sym__binary_expression] = STATE(2194), + [sym_multiplicative_expression] = STATE(2194), + [sym_additive_expression] = STATE(2194), + [sym_range_expression] = STATE(2194), + [sym_infix_expression] = STATE(2194), + [sym_nil_coalescing_expression] = STATE(2194), + [sym_check_expression] = STATE(2194), + [sym_comparison_expression] = STATE(2194), + [sym_equality_expression] = STATE(2194), + [sym_conjunction_expression] = STATE(2194), + [sym_disjunction_expression] = STATE(2194), + [sym_bitwise_operation] = STATE(2194), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(2194), + [sym_await_expression] = STATE(2194), + [sym_ternary_expression] = STATE(2194), + [sym_call_expression] = STATE(2760), + [sym__primary_expression] = STATE(2194), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(2194), + [sym_dictionary_literal] = STATE(2194), + [sym__special_literal] = STATE(2194), + [sym__playground_literal] = STATE(2194), + [sym_lambda_literal] = STATE(2194), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(2194), + [sym_key_path_expression] = STATE(2194), + [sym_key_path_string_expression] = STATE(2194), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(2194), + [sym__comparison_operator] = STATE(2194), + [sym__additive_operator] = STATE(2194), + [sym__multiplicative_operator] = STATE(2194), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(2194), + [sym__referenceable_operator] = STATE(2194), + [sym__eq_eq] = STATE(2194), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [anon_sym_nil] = ACTIONS(4079), + [sym_real_literal] = ACTIONS(4081), + [sym_integer_literal] = ACTIONS(4079), + [sym_hex_literal] = ACTIONS(4081), + [sym_oct_literal] = ACTIONS(4081), + [sym_bin_literal] = ACTIONS(4081), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(4079), + [anon_sym_GT] = ACTIONS(4079), + [sym__await_operator] = ACTIONS(937), + [anon_sym_POUNDfile] = ACTIONS(4079), + [anon_sym_POUNDfileID] = ACTIONS(4081), + [anon_sym_POUNDfilePath] = ACTIONS(4081), + [anon_sym_POUNDline] = ACTIONS(4081), + [anon_sym_POUNDcolumn] = ACTIONS(4081), + [anon_sym_POUNDfunction] = ACTIONS(4081), + [anon_sym_POUNDdsohandle] = ACTIONS(4081), + [anon_sym_POUNDcolorLiteral] = ACTIONS(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(4079), + [anon_sym_SLASH] = ACTIONS(4079), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(4081), + [sym__plus_then_ws] = ACTIONS(4081), + [sym__minus_then_ws] = ACTIONS(4081), + [sym_bang] = ACTIONS(971), + }, + [989] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym__string_literal] = STATE(2004), + [sym_line_string_literal] = STATE(2004), + [sym_multi_line_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2004), + [sym__unary_expression] = STATE(2004), + [sym_postfix_expression] = STATE(2004), + [sym_constructor_expression] = STATE(2004), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2004), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2004), + [sym_prefix_expression] = STATE(2004), + [sym_as_expression] = STATE(2004), + [sym_selector_expression] = STATE(2004), + [sym__binary_expression] = STATE(2004), + [sym_multiplicative_expression] = STATE(2004), + [sym_additive_expression] = STATE(2004), + [sym_range_expression] = STATE(2004), + [sym_infix_expression] = STATE(2004), + [sym_nil_coalescing_expression] = STATE(2004), + [sym_check_expression] = STATE(2004), + [sym_comparison_expression] = STATE(2004), + [sym_equality_expression] = STATE(2004), + [sym_conjunction_expression] = STATE(2004), + [sym_disjunction_expression] = STATE(2004), + [sym_bitwise_operation] = STATE(2004), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2004), + [sym_await_expression] = STATE(2004), + [sym_ternary_expression] = STATE(2004), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2004), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2004), + [sym_dictionary_literal] = STATE(2004), + [sym__special_literal] = STATE(2004), + [sym__playground_literal] = STATE(2004), + [sym_lambda_literal] = STATE(2004), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2004), + [sym_key_path_expression] = STATE(2004), + [sym_key_path_string_expression] = STATE(2004), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2004), + [sym__comparison_operator] = STATE(2004), + [sym__additive_operator] = STATE(2004), + [sym__multiplicative_operator] = STATE(2004), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2004), + [sym__referenceable_operator] = STATE(2004), + [sym__eq_eq] = STATE(2004), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4083), + [sym_real_literal] = ACTIONS(4085), + [sym_integer_literal] = ACTIONS(4083), + [sym_hex_literal] = ACTIONS(4085), + [sym_oct_literal] = ACTIONS(4085), + [sym_bin_literal] = ACTIONS(4085), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4083), + [anon_sym_GT] = ACTIONS(4083), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4083), + [anon_sym_POUNDfileID] = ACTIONS(4085), + [anon_sym_POUNDfilePath] = ACTIONS(4085), + [anon_sym_POUNDline] = ACTIONS(4085), + [anon_sym_POUNDcolumn] = ACTIONS(4085), + [anon_sym_POUNDfunction] = ACTIONS(4085), + [anon_sym_POUNDdsohandle] = ACTIONS(4085), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4083), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4083), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4083), + [anon_sym_LT_EQ] = ACTIONS(4083), + [anon_sym_GT_EQ] = ACTIONS(4083), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4083), + [anon_sym_SLASH] = ACTIONS(4083), + [anon_sym_PERCENT] = ACTIONS(4083), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4085), + [sym__plus_then_ws] = ACTIONS(4085), + [sym__minus_then_ws] = ACTIONS(4085), + [sym_bang] = ACTIONS(1069), + }, + [990] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2060), + [sym_boolean_literal] = STATE(2060), + [sym__string_literal] = STATE(2060), + [sym_line_string_literal] = STATE(2060), + [sym_multi_line_string_literal] = STATE(2060), + [sym_raw_string_literal] = STATE(2060), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2060), + [sym__unary_expression] = STATE(2060), + [sym_postfix_expression] = STATE(2060), + [sym_constructor_expression] = STATE(2060), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2060), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2060), + [sym_prefix_expression] = STATE(2060), + [sym_as_expression] = STATE(2060), + [sym_selector_expression] = STATE(2060), + [sym__binary_expression] = STATE(2060), + [sym_multiplicative_expression] = STATE(2060), + [sym_additive_expression] = STATE(2060), + [sym_range_expression] = STATE(2060), + [sym_infix_expression] = STATE(2060), + [sym_nil_coalescing_expression] = STATE(2060), + [sym_check_expression] = STATE(2060), + [sym_comparison_expression] = STATE(2060), + [sym_equality_expression] = STATE(2060), + [sym_conjunction_expression] = STATE(2060), + [sym_disjunction_expression] = STATE(2060), + [sym_bitwise_operation] = STATE(2060), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2060), + [sym_await_expression] = STATE(2060), + [sym_ternary_expression] = STATE(2060), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2060), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2060), + [sym_dictionary_literal] = STATE(2060), + [sym__special_literal] = STATE(2060), + [sym__playground_literal] = STATE(2060), + [sym_lambda_literal] = STATE(2060), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2060), + [sym_key_path_expression] = STATE(2060), + [sym_key_path_string_expression] = STATE(2060), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2060), + [sym__comparison_operator] = STATE(2060), + [sym__additive_operator] = STATE(2060), + [sym__multiplicative_operator] = STATE(2060), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2060), + [sym__referenceable_operator] = STATE(2060), + [sym__eq_eq] = STATE(2060), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4087), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_oct_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4087), + [anon_sym_POUNDfileID] = ACTIONS(4089), + [anon_sym_POUNDfilePath] = ACTIONS(4089), + [anon_sym_POUNDline] = ACTIONS(4089), + [anon_sym_POUNDcolumn] = ACTIONS(4089), + [anon_sym_POUNDfunction] = ACTIONS(4089), + [anon_sym_POUNDdsohandle] = ACTIONS(4089), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4087), + [anon_sym_LT_EQ] = ACTIONS(4087), + [anon_sym_GT_EQ] = ACTIONS(4087), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4089), + [sym__plus_then_ws] = ACTIONS(4089), + [sym__minus_then_ws] = ACTIONS(4089), + [sym_bang] = ACTIONS(1069), + }, + [991] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1164), + [sym__unary_expression] = STATE(1164), + [sym_postfix_expression] = STATE(1164), + [sym_constructor_expression] = STATE(1164), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1164), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1164), + [sym_await_expression] = STATE(1164), + [sym_ternary_expression] = STATE(1164), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1164), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1164), + [sym_key_path_expression] = STATE(1164), + [sym_key_path_string_expression] = STATE(1164), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1164), + [sym__comparison_operator] = STATE(1164), + [sym__additive_operator] = STATE(1164), + [sym__multiplicative_operator] = STATE(1164), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1164), + [sym__referenceable_operator] = STATE(1164), + [sym__eq_eq] = STATE(1164), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(4091), + [sym_real_literal] = ACTIONS(4093), + [sym_integer_literal] = ACTIONS(4091), + [sym_hex_literal] = ACTIONS(4093), + [sym_oct_literal] = ACTIONS(4093), + [sym_bin_literal] = ACTIONS(4093), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(4091), + [anon_sym_GT] = ACTIONS(4091), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(4091), + [anon_sym_POUNDfileID] = ACTIONS(4093), + [anon_sym_POUNDfilePath] = ACTIONS(4093), + [anon_sym_POUNDline] = ACTIONS(4093), + [anon_sym_POUNDcolumn] = ACTIONS(4093), + [anon_sym_POUNDfunction] = ACTIONS(4093), + [anon_sym_POUNDdsohandle] = ACTIONS(4093), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(4091), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4091), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4091), + [anon_sym_LT_EQ] = ACTIONS(4091), + [anon_sym_GT_EQ] = ACTIONS(4091), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(4091), + [anon_sym_SLASH] = ACTIONS(4091), + [anon_sym_PERCENT] = ACTIONS(4091), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(4093), + [sym__plus_then_ws] = ACTIONS(4093), + [sym__minus_then_ws] = ACTIONS(4093), + [sym_bang] = ACTIONS(481), + }, + [992] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(2192), + [sym_boolean_literal] = STATE(2192), + [sym__string_literal] = STATE(2192), + [sym_line_string_literal] = STATE(2192), + [sym_multi_line_string_literal] = STATE(2192), + [sym_raw_string_literal] = STATE(2192), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(2192), + [sym__unary_expression] = STATE(2192), + [sym_postfix_expression] = STATE(2192), + [sym_constructor_expression] = STATE(2192), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(2192), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(2192), + [sym_prefix_expression] = STATE(2192), + [sym_as_expression] = STATE(2192), + [sym_selector_expression] = STATE(2192), + [sym__binary_expression] = STATE(2192), + [sym_multiplicative_expression] = STATE(2192), + [sym_additive_expression] = STATE(2192), + [sym_range_expression] = STATE(2192), + [sym_infix_expression] = STATE(2192), + [sym_nil_coalescing_expression] = STATE(2192), + [sym_check_expression] = STATE(2192), + [sym_comparison_expression] = STATE(2192), + [sym_equality_expression] = STATE(2192), + [sym_conjunction_expression] = STATE(2192), + [sym_disjunction_expression] = STATE(2192), + [sym_bitwise_operation] = STATE(2192), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(2192), + [sym_await_expression] = STATE(2192), + [sym_ternary_expression] = STATE(2192), + [sym_call_expression] = STATE(2760), + [sym__primary_expression] = STATE(2192), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(2192), + [sym_dictionary_literal] = STATE(2192), + [sym__special_literal] = STATE(2192), + [sym__playground_literal] = STATE(2192), + [sym_lambda_literal] = STATE(2192), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(2192), + [sym_key_path_expression] = STATE(2192), + [sym_key_path_string_expression] = STATE(2192), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(2192), + [sym__comparison_operator] = STATE(2192), + [sym__additive_operator] = STATE(2192), + [sym__multiplicative_operator] = STATE(2192), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(2192), + [sym__referenceable_operator] = STATE(2192), + [sym__eq_eq] = STATE(2192), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [anon_sym_nil] = ACTIONS(4095), + [sym_real_literal] = ACTIONS(4097), + [sym_integer_literal] = ACTIONS(4095), + [sym_hex_literal] = ACTIONS(4097), + [sym_oct_literal] = ACTIONS(4097), + [sym_bin_literal] = ACTIONS(4097), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(4095), + [anon_sym_GT] = ACTIONS(4095), + [sym__await_operator] = ACTIONS(937), + [anon_sym_POUNDfile] = ACTIONS(4095), + [anon_sym_POUNDfileID] = ACTIONS(4097), + [anon_sym_POUNDfilePath] = ACTIONS(4097), + [anon_sym_POUNDline] = ACTIONS(4097), + [anon_sym_POUNDcolumn] = ACTIONS(4097), + [anon_sym_POUNDfunction] = ACTIONS(4097), + [anon_sym_POUNDdsohandle] = ACTIONS(4097), + [anon_sym_POUNDcolorLiteral] = ACTIONS(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(4095), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4095), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4095), + [anon_sym_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_EQ] = ACTIONS(4095), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(4095), + [anon_sym_SLASH] = ACTIONS(4095), + [anon_sym_PERCENT] = ACTIONS(4095), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(4097), + [sym__plus_then_ws] = ACTIONS(4097), + [sym__minus_then_ws] = ACTIONS(4097), + [sym_bang] = ACTIONS(971), + }, + [993] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1523), + [sym_boolean_literal] = STATE(1523), + [sym__string_literal] = STATE(1523), + [sym_line_string_literal] = STATE(1523), + [sym_multi_line_string_literal] = STATE(1523), + [sym_raw_string_literal] = STATE(1523), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1523), + [sym__unary_expression] = STATE(1523), + [sym_postfix_expression] = STATE(1523), + [sym_constructor_expression] = STATE(1523), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1523), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1523), + [sym_prefix_expression] = STATE(1523), + [sym_as_expression] = STATE(1523), + [sym_selector_expression] = STATE(1523), + [sym__binary_expression] = STATE(1523), + [sym_multiplicative_expression] = STATE(1523), + [sym_additive_expression] = STATE(1523), + [sym_range_expression] = STATE(1523), + [sym_infix_expression] = STATE(1523), + [sym_nil_coalescing_expression] = STATE(1523), + [sym_check_expression] = STATE(1523), + [sym_comparison_expression] = STATE(1523), + [sym_equality_expression] = STATE(1523), + [sym_conjunction_expression] = STATE(1523), + [sym_disjunction_expression] = STATE(1523), + [sym_bitwise_operation] = STATE(1523), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1523), + [sym_await_expression] = STATE(1523), + [sym_ternary_expression] = STATE(1523), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1523), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1523), + [sym_dictionary_literal] = STATE(1523), + [sym__special_literal] = STATE(1523), + [sym__playground_literal] = STATE(1523), + [sym_lambda_literal] = STATE(1523), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1523), + [sym_key_path_expression] = STATE(1523), + [sym_key_path_string_expression] = STATE(1523), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1523), + [sym__comparison_operator] = STATE(1523), + [sym__additive_operator] = STATE(1523), + [sym__multiplicative_operator] = STATE(1523), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1523), + [sym__referenceable_operator] = STATE(1523), + [sym__eq_eq] = STATE(1523), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4101), + [sym_integer_literal] = ACTIONS(4099), + [sym_hex_literal] = ACTIONS(4101), + [sym_oct_literal] = ACTIONS(4101), + [sym_bin_literal] = ACTIONS(4101), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4099), + [anon_sym_GT] = ACTIONS(4099), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4099), + [anon_sym_POUNDfileID] = ACTIONS(4101), + [anon_sym_POUNDfilePath] = ACTIONS(4101), + [anon_sym_POUNDline] = ACTIONS(4101), + [anon_sym_POUNDcolumn] = ACTIONS(4101), + [anon_sym_POUNDfunction] = ACTIONS(4101), + [anon_sym_POUNDdsohandle] = ACTIONS(4101), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4099), + [anon_sym_SLASH] = ACTIONS(4099), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4101), + [sym__plus_then_ws] = ACTIONS(4101), + [sym__minus_then_ws] = ACTIONS(4101), + [sym_bang] = ACTIONS(1069), + }, + [994] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1991), + [sym_boolean_literal] = STATE(1991), + [sym__string_literal] = STATE(1991), + [sym_line_string_literal] = STATE(1991), + [sym_multi_line_string_literal] = STATE(1991), + [sym_raw_string_literal] = STATE(1991), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1991), + [sym__unary_expression] = STATE(1991), + [sym_postfix_expression] = STATE(1991), + [sym_constructor_expression] = STATE(1991), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1991), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1991), + [sym_prefix_expression] = STATE(1991), + [sym_as_expression] = STATE(1991), + [sym_selector_expression] = STATE(1991), + [sym__binary_expression] = STATE(1991), + [sym_multiplicative_expression] = STATE(1991), + [sym_additive_expression] = STATE(1991), + [sym_range_expression] = STATE(1991), + [sym_infix_expression] = STATE(1991), + [sym_nil_coalescing_expression] = STATE(1991), + [sym_check_expression] = STATE(1991), + [sym_comparison_expression] = STATE(1991), + [sym_equality_expression] = STATE(1991), + [sym_conjunction_expression] = STATE(1991), + [sym_disjunction_expression] = STATE(1991), + [sym_bitwise_operation] = STATE(1991), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1991), + [sym_await_expression] = STATE(1991), + [sym_ternary_expression] = STATE(1991), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1991), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1991), + [sym_dictionary_literal] = STATE(1991), + [sym__special_literal] = STATE(1991), + [sym__playground_literal] = STATE(1991), + [sym_lambda_literal] = STATE(1991), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1991), + [sym_key_path_expression] = STATE(1991), + [sym_key_path_string_expression] = STATE(1991), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1991), + [sym__comparison_operator] = STATE(1991), + [sym__additive_operator] = STATE(1991), + [sym__multiplicative_operator] = STATE(1991), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1991), + [sym__referenceable_operator] = STATE(1991), + [sym__eq_eq] = STATE(1991), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4103), + [sym_real_literal] = ACTIONS(4105), + [sym_integer_literal] = ACTIONS(4103), + [sym_hex_literal] = ACTIONS(4105), + [sym_oct_literal] = ACTIONS(4105), + [sym_bin_literal] = ACTIONS(4105), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4103), + [anon_sym_GT] = ACTIONS(4103), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4103), + [anon_sym_POUNDfileID] = ACTIONS(4105), + [anon_sym_POUNDfilePath] = ACTIONS(4105), + [anon_sym_POUNDline] = ACTIONS(4105), + [anon_sym_POUNDcolumn] = ACTIONS(4105), + [anon_sym_POUNDfunction] = ACTIONS(4105), + [anon_sym_POUNDdsohandle] = ACTIONS(4105), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4103), + [anon_sym_LT_EQ] = ACTIONS(4103), + [anon_sym_GT_EQ] = ACTIONS(4103), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4103), + [anon_sym_SLASH] = ACTIONS(4103), + [anon_sym_PERCENT] = ACTIONS(4103), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4105), + [sym__plus_then_ws] = ACTIONS(4105), + [sym__minus_then_ws] = ACTIONS(4105), + [sym_bang] = ACTIONS(1069), + }, + [995] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1994), + [sym_boolean_literal] = STATE(1994), + [sym__string_literal] = STATE(1994), + [sym_line_string_literal] = STATE(1994), + [sym_multi_line_string_literal] = STATE(1994), + [sym_raw_string_literal] = STATE(1994), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1994), + [sym__unary_expression] = STATE(1994), + [sym_postfix_expression] = STATE(1994), + [sym_constructor_expression] = STATE(1994), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1994), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1994), + [sym_prefix_expression] = STATE(1994), + [sym_as_expression] = STATE(1994), + [sym_selector_expression] = STATE(1994), + [sym__binary_expression] = STATE(1994), + [sym_multiplicative_expression] = STATE(1994), + [sym_additive_expression] = STATE(1994), + [sym_range_expression] = STATE(1994), + [sym_infix_expression] = STATE(1994), + [sym_nil_coalescing_expression] = STATE(1994), + [sym_check_expression] = STATE(1994), + [sym_comparison_expression] = STATE(1994), + [sym_equality_expression] = STATE(1994), + [sym_conjunction_expression] = STATE(1994), + [sym_disjunction_expression] = STATE(1994), + [sym_bitwise_operation] = STATE(1994), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1994), + [sym_await_expression] = STATE(1994), + [sym_ternary_expression] = STATE(1994), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1994), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1994), + [sym_dictionary_literal] = STATE(1994), + [sym__special_literal] = STATE(1994), + [sym__playground_literal] = STATE(1994), + [sym_lambda_literal] = STATE(1994), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1994), + [sym_key_path_expression] = STATE(1994), + [sym_key_path_string_expression] = STATE(1994), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1994), + [sym__comparison_operator] = STATE(1994), + [sym__additive_operator] = STATE(1994), + [sym__multiplicative_operator] = STATE(1994), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1994), + [sym__referenceable_operator] = STATE(1994), + [sym__eq_eq] = STATE(1994), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4107), + [sym_real_literal] = ACTIONS(4109), + [sym_integer_literal] = ACTIONS(4107), + [sym_hex_literal] = ACTIONS(4109), + [sym_oct_literal] = ACTIONS(4109), + [sym_bin_literal] = ACTIONS(4109), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4107), + [anon_sym_GT] = ACTIONS(4107), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4107), + [anon_sym_POUNDfileID] = ACTIONS(4109), + [anon_sym_POUNDfilePath] = ACTIONS(4109), + [anon_sym_POUNDline] = ACTIONS(4109), + [anon_sym_POUNDcolumn] = ACTIONS(4109), + [anon_sym_POUNDfunction] = ACTIONS(4109), + [anon_sym_POUNDdsohandle] = ACTIONS(4109), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4107), + [anon_sym_LT_EQ] = ACTIONS(4107), + [anon_sym_GT_EQ] = ACTIONS(4107), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4107), + [anon_sym_SLASH] = ACTIONS(4107), + [anon_sym_PERCENT] = ACTIONS(4107), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4109), + [sym__plus_then_ws] = ACTIONS(4109), + [sym__minus_then_ws] = ACTIONS(4109), + [sym_bang] = ACTIONS(1069), + }, + [996] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1995), + [sym_boolean_literal] = STATE(1995), + [sym__string_literal] = STATE(1995), + [sym_line_string_literal] = STATE(1995), + [sym_multi_line_string_literal] = STATE(1995), + [sym_raw_string_literal] = STATE(1995), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1995), + [sym__unary_expression] = STATE(1995), + [sym_postfix_expression] = STATE(1995), + [sym_constructor_expression] = STATE(1995), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1995), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1995), + [sym_prefix_expression] = STATE(1995), + [sym_as_expression] = STATE(1995), + [sym_selector_expression] = STATE(1995), + [sym__binary_expression] = STATE(1995), + [sym_multiplicative_expression] = STATE(1995), + [sym_additive_expression] = STATE(1995), + [sym_range_expression] = STATE(1995), + [sym_infix_expression] = STATE(1995), + [sym_nil_coalescing_expression] = STATE(1995), + [sym_check_expression] = STATE(1995), + [sym_comparison_expression] = STATE(1995), + [sym_equality_expression] = STATE(1995), + [sym_conjunction_expression] = STATE(1995), + [sym_disjunction_expression] = STATE(1995), + [sym_bitwise_operation] = STATE(1995), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1995), + [sym_await_expression] = STATE(1995), + [sym_ternary_expression] = STATE(1995), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1995), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1995), + [sym_dictionary_literal] = STATE(1995), + [sym__special_literal] = STATE(1995), + [sym__playground_literal] = STATE(1995), + [sym_lambda_literal] = STATE(1995), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1995), + [sym_key_path_expression] = STATE(1995), + [sym_key_path_string_expression] = STATE(1995), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1995), + [sym__comparison_operator] = STATE(1995), + [sym__additive_operator] = STATE(1995), + [sym__multiplicative_operator] = STATE(1995), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1995), + [sym__referenceable_operator] = STATE(1995), + [sym__eq_eq] = STATE(1995), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4111), + [sym_real_literal] = ACTIONS(4113), + [sym_integer_literal] = ACTIONS(4111), + [sym_hex_literal] = ACTIONS(4113), + [sym_oct_literal] = ACTIONS(4113), + [sym_bin_literal] = ACTIONS(4113), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4111), + [anon_sym_GT] = ACTIONS(4111), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4111), + [anon_sym_POUNDfileID] = ACTIONS(4113), + [anon_sym_POUNDfilePath] = ACTIONS(4113), + [anon_sym_POUNDline] = ACTIONS(4113), + [anon_sym_POUNDcolumn] = ACTIONS(4113), + [anon_sym_POUNDfunction] = ACTIONS(4113), + [anon_sym_POUNDdsohandle] = ACTIONS(4113), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4111), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4111), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4111), + [anon_sym_LT_EQ] = ACTIONS(4111), + [anon_sym_GT_EQ] = ACTIONS(4111), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4111), + [anon_sym_SLASH] = ACTIONS(4111), + [anon_sym_PERCENT] = ACTIONS(4111), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4113), + [sym__plus_then_ws] = ACTIONS(4113), + [sym__minus_then_ws] = ACTIONS(4113), + [sym_bang] = ACTIONS(1069), + }, + [997] = { + [sym_simple_identifier] = STATE(2688), + [sym__basic_literal] = STATE(2189), + [sym_boolean_literal] = STATE(2189), + [sym__string_literal] = STATE(2189), + [sym_line_string_literal] = STATE(2189), + [sym_multi_line_string_literal] = STATE(2189), + [sym_raw_string_literal] = STATE(2189), + [sym_user_type] = STATE(6273), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6273), + [sym_dictionary_type] = STATE(6273), + [sym__expression] = STATE(2189), + [sym__unary_expression] = STATE(2189), + [sym_postfix_expression] = STATE(2189), + [sym_constructor_expression] = STATE(2189), + [sym_navigation_expression] = STATE(2760), + [sym__navigable_type_expression] = STATE(7981), + [sym_open_start_range_expression] = STATE(2189), + [sym__range_operator] = STATE(966), + [sym_open_end_range_expression] = STATE(2189), + [sym_prefix_expression] = STATE(2189), + [sym_as_expression] = STATE(2189), + [sym_selector_expression] = STATE(2189), + [sym__binary_expression] = STATE(2189), + [sym_multiplicative_expression] = STATE(2189), + [sym_additive_expression] = STATE(2189), + [sym_range_expression] = STATE(2189), + [sym_infix_expression] = STATE(2189), + [sym_nil_coalescing_expression] = STATE(2189), + [sym_check_expression] = STATE(2189), + [sym_comparison_expression] = STATE(2189), + [sym_equality_expression] = STATE(2189), + [sym_conjunction_expression] = STATE(2189), + [sym_disjunction_expression] = STATE(2189), + [sym_bitwise_operation] = STATE(2189), + [sym_custom_operator] = STATE(1383), + [sym_try_expression] = STATE(2189), + [sym_await_expression] = STATE(2189), + [sym_ternary_expression] = STATE(2189), + [sym_call_expression] = STATE(2760), + [sym__primary_expression] = STATE(2189), + [sym_tuple_expression] = STATE(2761), + [sym_array_literal] = STATE(2189), + [sym_dictionary_literal] = STATE(2189), + [sym__special_literal] = STATE(2189), + [sym__playground_literal] = STATE(2189), + [sym_lambda_literal] = STATE(2189), + [sym_self_expression] = STATE(2761), + [sym_super_expression] = STATE(2189), + [sym_key_path_expression] = STATE(2189), + [sym_key_path_string_expression] = STATE(2189), + [sym__try_operator] = STATE(967), + [sym__equality_operator] = STATE(2189), + [sym__comparison_operator] = STATE(2189), + [sym__additive_operator] = STATE(2189), + [sym__multiplicative_operator] = STATE(2189), + [sym__prefix_unary_operator] = STATE(968), + [sym_directly_assignable_expression] = STATE(5766), + [sym_assignment] = STATE(2189), + [sym__referenceable_operator] = STATE(2189), + [sym__eq_eq] = STATE(2189), + [sym__dot] = STATE(968), + [sym__three_dot_operator] = STATE(1375), + [sym__open_ended_range_operator] = STATE(966), + [aux_sym_raw_string_literal_repeat1] = STATE(7985), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(909), + [aux_sym_simple_identifier_token2] = ACTIONS(911), + [aux_sym_simple_identifier_token3] = ACTIONS(911), + [aux_sym_simple_identifier_token4] = ACTIONS(911), + [anon_sym_nil] = ACTIONS(4115), + [sym_real_literal] = ACTIONS(4117), + [sym_integer_literal] = ACTIONS(4115), + [sym_hex_literal] = ACTIONS(4117), + [sym_oct_literal] = ACTIONS(4117), + [sym_bin_literal] = ACTIONS(4117), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_BSLASH] = ACTIONS(921), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_async] = ACTIONS(1379), + [anon_sym_POUNDselector] = ACTIONS(933), + [aux_sym_custom_operator_token1] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(4115), + [anon_sym_GT] = ACTIONS(4115), + [sym__await_operator] = ACTIONS(937), + [anon_sym_POUNDfile] = ACTIONS(4115), + [anon_sym_POUNDfileID] = ACTIONS(4117), + [anon_sym_POUNDfilePath] = ACTIONS(4117), + [anon_sym_POUNDline] = ACTIONS(4117), + [anon_sym_POUNDcolumn] = ACTIONS(4117), + [anon_sym_POUNDfunction] = ACTIONS(4117), + [anon_sym_POUNDdsohandle] = ACTIONS(4117), + [anon_sym_POUNDcolorLiteral] = ACTIONS(939), + [anon_sym_POUNDfileLiteral] = ACTIONS(939), + [anon_sym_POUNDimageLiteral] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_self] = ACTIONS(943), + [anon_sym_super] = ACTIONS(945), + [anon_sym_POUNDkeyPath] = ACTIONS(949), + [anon_sym_try] = ACTIONS(951), + [anon_sym_try_BANG] = ACTIONS(953), + [anon_sym_try_QMARK] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(4115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4115), + [anon_sym_LT_EQ] = ACTIONS(4115), + [anon_sym_GT_EQ] = ACTIONS(4115), + [anon_sym_PLUS] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(4115), + [anon_sym_SLASH] = ACTIONS(4115), + [anon_sym_PERCENT] = ACTIONS(4115), + [anon_sym_PLUS_PLUS] = ACTIONS(957), + [anon_sym_DASH_DASH] = ACTIONS(957), + [anon_sym_TILDE] = ACTIONS(957), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(963), + [sym__dot_custom] = ACTIONS(965), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(969), + [sym__eq_eq_custom] = ACTIONS(4117), + [sym__plus_then_ws] = ACTIONS(4117), + [sym__minus_then_ws] = ACTIONS(4117), + [sym_bang] = ACTIONS(971), + }, + [998] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1153), + [sym__unary_expression] = STATE(1153), + [sym_postfix_expression] = STATE(1153), + [sym_constructor_expression] = STATE(1153), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1153), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1153), + [sym_await_expression] = STATE(1153), + [sym_ternary_expression] = STATE(1153), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1153), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1153), + [sym_key_path_expression] = STATE(1153), + [sym_key_path_string_expression] = STATE(1153), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1153), + [sym__comparison_operator] = STATE(1153), + [sym__additive_operator] = STATE(1153), + [sym__multiplicative_operator] = STATE(1153), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1153), + [sym__referenceable_operator] = STATE(1153), + [sym__eq_eq] = STATE(1153), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(4119), + [sym_real_literal] = ACTIONS(4121), + [sym_integer_literal] = ACTIONS(4119), + [sym_hex_literal] = ACTIONS(4121), + [sym_oct_literal] = ACTIONS(4121), + [sym_bin_literal] = ACTIONS(4121), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(4119), + [anon_sym_GT] = ACTIONS(4119), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(4119), + [anon_sym_POUNDfileID] = ACTIONS(4121), + [anon_sym_POUNDfilePath] = ACTIONS(4121), + [anon_sym_POUNDline] = ACTIONS(4121), + [anon_sym_POUNDcolumn] = ACTIONS(4121), + [anon_sym_POUNDfunction] = ACTIONS(4121), + [anon_sym_POUNDdsohandle] = ACTIONS(4121), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(4119), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4119), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4119), + [anon_sym_LT_EQ] = ACTIONS(4119), + [anon_sym_GT_EQ] = ACTIONS(4119), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(4119), + [anon_sym_SLASH] = ACTIONS(4119), + [anon_sym_PERCENT] = ACTIONS(4119), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(4121), + [sym__plus_then_ws] = ACTIONS(4121), + [sym__minus_then_ws] = ACTIONS(4121), + [sym_bang] = ACTIONS(481), + }, + [999] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1166), + [sym__unary_expression] = STATE(1166), + [sym_postfix_expression] = STATE(1166), + [sym_constructor_expression] = STATE(1166), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1166), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1166), + [sym_await_expression] = STATE(1166), + [sym_ternary_expression] = STATE(1166), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1166), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1166), + [sym_key_path_expression] = STATE(1166), + [sym_key_path_string_expression] = STATE(1166), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1166), + [sym__comparison_operator] = STATE(1166), + [sym__additive_operator] = STATE(1166), + [sym__multiplicative_operator] = STATE(1166), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1166), + [sym__referenceable_operator] = STATE(1166), + [sym__eq_eq] = STATE(1166), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(4123), + [sym_real_literal] = ACTIONS(4125), + [sym_integer_literal] = ACTIONS(4123), + [sym_hex_literal] = ACTIONS(4125), + [sym_oct_literal] = ACTIONS(4125), + [sym_bin_literal] = ACTIONS(4125), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4123), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(4123), + [anon_sym_POUNDfileID] = ACTIONS(4125), + [anon_sym_POUNDfilePath] = ACTIONS(4125), + [anon_sym_POUNDline] = ACTIONS(4125), + [anon_sym_POUNDcolumn] = ACTIONS(4125), + [anon_sym_POUNDfunction] = ACTIONS(4125), + [anon_sym_POUNDdsohandle] = ACTIONS(4125), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4123), + [anon_sym_LT_EQ] = ACTIONS(4123), + [anon_sym_GT_EQ] = ACTIONS(4123), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(4123), + [anon_sym_SLASH] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4123), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(4125), + [sym__plus_then_ws] = ACTIONS(4125), + [sym__minus_then_ws] = ACTIONS(4125), + [sym_bang] = ACTIONS(481), + }, + [1000] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1615), + [sym_boolean_literal] = STATE(1615), + [sym__string_literal] = STATE(1615), + [sym_line_string_literal] = STATE(1615), + [sym_multi_line_string_literal] = STATE(1615), + [sym_raw_string_literal] = STATE(1615), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1615), + [sym__unary_expression] = STATE(1615), + [sym_postfix_expression] = STATE(1615), + [sym_constructor_expression] = STATE(1615), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1615), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1615), + [sym_prefix_expression] = STATE(1615), + [sym_as_expression] = STATE(1615), + [sym_selector_expression] = STATE(1615), + [sym__binary_expression] = STATE(1615), + [sym_multiplicative_expression] = STATE(1615), + [sym_additive_expression] = STATE(1615), + [sym_range_expression] = STATE(1615), + [sym_infix_expression] = STATE(1615), + [sym_nil_coalescing_expression] = STATE(1615), + [sym_check_expression] = STATE(1615), + [sym_comparison_expression] = STATE(1615), + [sym_equality_expression] = STATE(1615), + [sym_conjunction_expression] = STATE(1615), + [sym_disjunction_expression] = STATE(1615), + [sym_bitwise_operation] = STATE(1615), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1615), + [sym_await_expression] = STATE(1615), + [sym_ternary_expression] = STATE(1615), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1615), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1615), + [sym_dictionary_literal] = STATE(1615), + [sym__special_literal] = STATE(1615), + [sym__playground_literal] = STATE(1615), + [sym_lambda_literal] = STATE(1615), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1615), + [sym_key_path_expression] = STATE(1615), + [sym_key_path_string_expression] = STATE(1615), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1615), + [sym__comparison_operator] = STATE(1615), + [sym__additive_operator] = STATE(1615), + [sym__multiplicative_operator] = STATE(1615), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1615), + [sym__referenceable_operator] = STATE(1615), + [sym__eq_eq] = STATE(1615), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4127), + [sym_real_literal] = ACTIONS(4129), + [sym_integer_literal] = ACTIONS(4127), + [sym_hex_literal] = ACTIONS(4129), + [sym_oct_literal] = ACTIONS(4129), + [sym_bin_literal] = ACTIONS(4129), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4127), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4127), + [anon_sym_POUNDfileID] = ACTIONS(4129), + [anon_sym_POUNDfilePath] = ACTIONS(4129), + [anon_sym_POUNDline] = ACTIONS(4129), + [anon_sym_POUNDcolumn] = ACTIONS(4129), + [anon_sym_POUNDfunction] = ACTIONS(4129), + [anon_sym_POUNDdsohandle] = ACTIONS(4129), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4127), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4127), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4127), + [anon_sym_LT_EQ] = ACTIONS(4127), + [anon_sym_GT_EQ] = ACTIONS(4127), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4127), + [anon_sym_SLASH] = ACTIONS(4127), + [anon_sym_PERCENT] = ACTIONS(4127), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4129), + [sym__plus_then_ws] = ACTIONS(4129), + [sym__minus_then_ws] = ACTIONS(4129), + [sym_bang] = ACTIONS(1069), + }, + [1001] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym__string_literal] = STATE(1701), + [sym_line_string_literal] = STATE(1701), + [sym_multi_line_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(1701), + [sym__unary_expression] = STATE(1701), + [sym_postfix_expression] = STATE(1701), + [sym_constructor_expression] = STATE(1701), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(1701), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(1701), + [sym_prefix_expression] = STATE(1701), + [sym_as_expression] = STATE(1701), + [sym_selector_expression] = STATE(1701), + [sym__binary_expression] = STATE(1701), + [sym_multiplicative_expression] = STATE(1701), + [sym_additive_expression] = STATE(1701), + [sym_range_expression] = STATE(1701), + [sym_infix_expression] = STATE(1701), + [sym_nil_coalescing_expression] = STATE(1701), + [sym_check_expression] = STATE(1701), + [sym_comparison_expression] = STATE(1701), + [sym_equality_expression] = STATE(1701), + [sym_conjunction_expression] = STATE(1701), + [sym_disjunction_expression] = STATE(1701), + [sym_bitwise_operation] = STATE(1701), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(1701), + [sym_await_expression] = STATE(1701), + [sym_ternary_expression] = STATE(1701), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(1701), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(1701), + [sym_dictionary_literal] = STATE(1701), + [sym__special_literal] = STATE(1701), + [sym__playground_literal] = STATE(1701), + [sym_lambda_literal] = STATE(1701), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(1701), + [sym_key_path_expression] = STATE(1701), + [sym_key_path_string_expression] = STATE(1701), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(1701), + [sym__comparison_operator] = STATE(1701), + [sym__additive_operator] = STATE(1701), + [sym__multiplicative_operator] = STATE(1701), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(1701), + [sym__referenceable_operator] = STATE(1701), + [sym__eq_eq] = STATE(1701), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4133), + [sym_integer_literal] = ACTIONS(4131), + [sym_hex_literal] = ACTIONS(4133), + [sym_oct_literal] = ACTIONS(4133), + [sym_bin_literal] = ACTIONS(4133), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(4131), + [anon_sym_GT] = ACTIONS(4131), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(4131), + [anon_sym_POUNDfileID] = ACTIONS(4133), + [anon_sym_POUNDfilePath] = ACTIONS(4133), + [anon_sym_POUNDline] = ACTIONS(4133), + [anon_sym_POUNDcolumn] = ACTIONS(4133), + [anon_sym_POUNDfunction] = ACTIONS(4133), + [anon_sym_POUNDdsohandle] = ACTIONS(4133), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(4131), + [anon_sym_SLASH] = ACTIONS(4131), + [anon_sym_PERCENT] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(4133), + [sym__plus_then_ws] = ACTIONS(4133), + [sym__minus_then_ws] = ACTIONS(4133), + [sym_bang] = ACTIONS(137), + }, + [1002] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1116), + [sym_boolean_literal] = STATE(1116), + [sym__string_literal] = STATE(1116), + [sym_line_string_literal] = STATE(1116), + [sym_multi_line_string_literal] = STATE(1116), + [sym_raw_string_literal] = STATE(1116), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1116), + [sym__unary_expression] = STATE(1116), + [sym_postfix_expression] = STATE(1116), + [sym_constructor_expression] = STATE(1116), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1116), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1116), + [sym_prefix_expression] = STATE(1116), + [sym_as_expression] = STATE(1116), + [sym_selector_expression] = STATE(1116), + [sym__binary_expression] = STATE(1116), + [sym_multiplicative_expression] = STATE(1116), + [sym_additive_expression] = STATE(1116), + [sym_range_expression] = STATE(1116), + [sym_infix_expression] = STATE(1116), + [sym_nil_coalescing_expression] = STATE(1116), + [sym_check_expression] = STATE(1116), + [sym_comparison_expression] = STATE(1116), + [sym_equality_expression] = STATE(1116), + [sym_conjunction_expression] = STATE(1116), + [sym_disjunction_expression] = STATE(1116), + [sym_bitwise_operation] = STATE(1116), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1116), + [sym_await_expression] = STATE(1116), + [sym_ternary_expression] = STATE(1116), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1116), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1116), + [sym_dictionary_literal] = STATE(1116), + [sym__special_literal] = STATE(1116), + [sym__playground_literal] = STATE(1116), + [sym_lambda_literal] = STATE(1116), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1116), + [sym_key_path_expression] = STATE(1116), + [sym_key_path_string_expression] = STATE(1116), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1116), + [sym__comparison_operator] = STATE(1116), + [sym__additive_operator] = STATE(1116), + [sym__multiplicative_operator] = STATE(1116), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1116), + [sym__referenceable_operator] = STATE(1116), + [sym__eq_eq] = STATE(1116), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(4135), + [sym_real_literal] = ACTIONS(4137), + [sym_integer_literal] = ACTIONS(4135), + [sym_hex_literal] = ACTIONS(4137), + [sym_oct_literal] = ACTIONS(4137), + [sym_bin_literal] = ACTIONS(4137), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(4135), + [anon_sym_GT] = ACTIONS(4135), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(4135), + [anon_sym_POUNDfileID] = ACTIONS(4137), + [anon_sym_POUNDfilePath] = ACTIONS(4137), + [anon_sym_POUNDline] = ACTIONS(4137), + [anon_sym_POUNDcolumn] = ACTIONS(4137), + [anon_sym_POUNDfunction] = ACTIONS(4137), + [anon_sym_POUNDdsohandle] = ACTIONS(4137), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(4135), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), + [anon_sym_LT_EQ] = ACTIONS(4135), + [anon_sym_GT_EQ] = ACTIONS(4135), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(4135), + [anon_sym_SLASH] = ACTIONS(4135), + [anon_sym_PERCENT] = ACTIONS(4135), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(4137), + [sym__plus_then_ws] = ACTIONS(4137), + [sym__minus_then_ws] = ACTIONS(4137), + [sym_bang] = ACTIONS(1501), + }, + [1003] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1169), + [sym__unary_expression] = STATE(1169), + [sym_postfix_expression] = STATE(1169), + [sym_constructor_expression] = STATE(1169), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1169), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1169), + [sym_await_expression] = STATE(1169), + [sym_ternary_expression] = STATE(1169), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1169), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1169), + [sym_key_path_expression] = STATE(1169), + [sym_key_path_string_expression] = STATE(1169), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1169), + [sym__comparison_operator] = STATE(1169), + [sym__additive_operator] = STATE(1169), + [sym__multiplicative_operator] = STATE(1169), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1169), + [sym__referenceable_operator] = STATE(1169), + [sym__eq_eq] = STATE(1169), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(4139), + [sym_real_literal] = ACTIONS(4141), + [sym_integer_literal] = ACTIONS(4139), + [sym_hex_literal] = ACTIONS(4141), + [sym_oct_literal] = ACTIONS(4141), + [sym_bin_literal] = ACTIONS(4141), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(4139), + [anon_sym_GT] = ACTIONS(4139), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(4139), + [anon_sym_POUNDfileID] = ACTIONS(4141), + [anon_sym_POUNDfilePath] = ACTIONS(4141), + [anon_sym_POUNDline] = ACTIONS(4141), + [anon_sym_POUNDcolumn] = ACTIONS(4141), + [anon_sym_POUNDfunction] = ACTIONS(4141), + [anon_sym_POUNDdsohandle] = ACTIONS(4141), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(4139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4139), + [anon_sym_LT_EQ] = ACTIONS(4139), + [anon_sym_GT_EQ] = ACTIONS(4139), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(4139), + [anon_sym_SLASH] = ACTIONS(4139), + [anon_sym_PERCENT] = ACTIONS(4139), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(4141), + [sym__plus_then_ws] = ACTIONS(4141), + [sym__minus_then_ws] = ACTIONS(4141), + [sym_bang] = ACTIONS(481), + }, + [1004] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1860), + [sym_boolean_literal] = STATE(1860), + [sym__string_literal] = STATE(1860), + [sym_line_string_literal] = STATE(1860), + [sym_multi_line_string_literal] = STATE(1860), + [sym_raw_string_literal] = STATE(1860), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1860), + [sym__unary_expression] = STATE(1860), + [sym_postfix_expression] = STATE(1860), + [sym_constructor_expression] = STATE(1860), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1860), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1860), + [sym_prefix_expression] = STATE(1860), + [sym_as_expression] = STATE(1860), + [sym_selector_expression] = STATE(1860), + [sym__binary_expression] = STATE(1860), + [sym_multiplicative_expression] = STATE(1860), + [sym_additive_expression] = STATE(1860), + [sym_range_expression] = STATE(1860), + [sym_infix_expression] = STATE(1860), + [sym_nil_coalescing_expression] = STATE(1860), + [sym_check_expression] = STATE(1860), + [sym_comparison_expression] = STATE(1860), + [sym_equality_expression] = STATE(1860), + [sym_conjunction_expression] = STATE(1860), + [sym_disjunction_expression] = STATE(1860), + [sym_bitwise_operation] = STATE(1860), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1860), + [sym_await_expression] = STATE(1860), + [sym_ternary_expression] = STATE(1860), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1860), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1860), + [sym_dictionary_literal] = STATE(1860), + [sym__special_literal] = STATE(1860), + [sym__playground_literal] = STATE(1860), + [sym_lambda_literal] = STATE(1860), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1860), + [sym_key_path_expression] = STATE(1860), + [sym_key_path_string_expression] = STATE(1860), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1860), + [sym__comparison_operator] = STATE(1860), + [sym__additive_operator] = STATE(1860), + [sym__multiplicative_operator] = STATE(1860), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1860), + [sym__referenceable_operator] = STATE(1860), + [sym__eq_eq] = STATE(1860), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4143), + [sym_real_literal] = ACTIONS(4145), + [sym_integer_literal] = ACTIONS(4143), + [sym_hex_literal] = ACTIONS(4145), + [sym_oct_literal] = ACTIONS(4145), + [sym_bin_literal] = ACTIONS(4145), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4143), + [anon_sym_GT] = ACTIONS(4143), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4143), + [anon_sym_POUNDfileID] = ACTIONS(4145), + [anon_sym_POUNDfilePath] = ACTIONS(4145), + [anon_sym_POUNDline] = ACTIONS(4145), + [anon_sym_POUNDcolumn] = ACTIONS(4145), + [anon_sym_POUNDfunction] = ACTIONS(4145), + [anon_sym_POUNDdsohandle] = ACTIONS(4145), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4143), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4143), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4143), + [anon_sym_LT_EQ] = ACTIONS(4143), + [anon_sym_GT_EQ] = ACTIONS(4143), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4143), + [anon_sym_SLASH] = ACTIONS(4143), + [anon_sym_PERCENT] = ACTIONS(4143), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4145), + [sym__plus_then_ws] = ACTIONS(4145), + [sym__minus_then_ws] = ACTIONS(4145), + [sym_bang] = ACTIONS(1069), + }, + [1005] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1170), + [sym__unary_expression] = STATE(1170), + [sym_postfix_expression] = STATE(1170), + [sym_constructor_expression] = STATE(1170), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1170), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1170), + [sym_await_expression] = STATE(1170), + [sym_ternary_expression] = STATE(1170), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1170), + [sym_tuple_expression] = STATE(1381), + [sym_array_literal] = STATE(1170), + [sym_dictionary_literal] = STATE(1170), + [sym__special_literal] = STATE(1170), + [sym__playground_literal] = STATE(1170), + [sym_lambda_literal] = STATE(1170), + [sym_self_expression] = STATE(1381), + [sym_super_expression] = STATE(1170), + [sym_key_path_expression] = STATE(1170), + [sym_key_path_string_expression] = STATE(1170), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1170), + [sym__comparison_operator] = STATE(1170), + [sym__additive_operator] = STATE(1170), + [sym__multiplicative_operator] = STATE(1170), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1170), + [sym__referenceable_operator] = STATE(1170), + [sym__eq_eq] = STATE(1170), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(4147), + [sym_real_literal] = ACTIONS(4149), + [sym_integer_literal] = ACTIONS(4147), + [sym_hex_literal] = ACTIONS(4149), + [sym_oct_literal] = ACTIONS(4149), + [sym_bin_literal] = ACTIONS(4149), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(4147), + [anon_sym_GT] = ACTIONS(4147), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(4147), + [anon_sym_POUNDfileID] = ACTIONS(4149), + [anon_sym_POUNDfilePath] = ACTIONS(4149), + [anon_sym_POUNDline] = ACTIONS(4149), + [anon_sym_POUNDcolumn] = ACTIONS(4149), + [anon_sym_POUNDfunction] = ACTIONS(4149), + [anon_sym_POUNDdsohandle] = ACTIONS(4149), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(4147), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4147), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4147), + [anon_sym_LT_EQ] = ACTIONS(4147), + [anon_sym_GT_EQ] = ACTIONS(4147), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_SLASH] = ACTIONS(4147), + [anon_sym_PERCENT] = ACTIONS(4147), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(4149), + [sym__plus_then_ws] = ACTIONS(4149), + [sym__minus_then_ws] = ACTIONS(4149), + [sym_bang] = ACTIONS(481), + }, + [1006] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1167), + [sym__unary_expression] = STATE(1167), + [sym_postfix_expression] = STATE(1167), + [sym_constructor_expression] = STATE(1167), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1167), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1167), + [sym_await_expression] = STATE(1167), + [sym_ternary_expression] = STATE(1167), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1167), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1167), + [sym_key_path_expression] = STATE(1167), + [sym_key_path_string_expression] = STATE(1167), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1167), + [sym__comparison_operator] = STATE(1167), + [sym__additive_operator] = STATE(1167), + [sym__multiplicative_operator] = STATE(1167), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1167), + [sym__referenceable_operator] = STATE(1167), + [sym__eq_eq] = STATE(1167), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(4151), + [sym_real_literal] = ACTIONS(4153), + [sym_integer_literal] = ACTIONS(4151), + [sym_hex_literal] = ACTIONS(4153), + [sym_oct_literal] = ACTIONS(4153), + [sym_bin_literal] = ACTIONS(4153), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(4151), + [anon_sym_GT] = ACTIONS(4151), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(4151), + [anon_sym_POUNDfileID] = ACTIONS(4153), + [anon_sym_POUNDfilePath] = ACTIONS(4153), + [anon_sym_POUNDline] = ACTIONS(4153), + [anon_sym_POUNDcolumn] = ACTIONS(4153), + [anon_sym_POUNDfunction] = ACTIONS(4153), + [anon_sym_POUNDdsohandle] = ACTIONS(4153), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(4151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4151), + [anon_sym_LT_EQ] = ACTIONS(4151), + [anon_sym_GT_EQ] = ACTIONS(4151), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(4151), + [anon_sym_SLASH] = ACTIONS(4151), + [anon_sym_PERCENT] = ACTIONS(4151), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(4153), + [sym__plus_then_ws] = ACTIONS(4153), + [sym__minus_then_ws] = ACTIONS(4153), + [sym_bang] = ACTIONS(481), + }, + [1007] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1154), + [sym__unary_expression] = STATE(1154), + [sym_postfix_expression] = STATE(1154), + [sym_constructor_expression] = STATE(1154), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1154), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1154), + [sym_await_expression] = STATE(1154), + [sym_ternary_expression] = STATE(1154), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1154), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1154), + [sym_key_path_expression] = STATE(1154), + [sym_key_path_string_expression] = STATE(1154), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1154), + [sym__comparison_operator] = STATE(1154), + [sym__additive_operator] = STATE(1154), + [sym__multiplicative_operator] = STATE(1154), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1154), + [sym__referenceable_operator] = STATE(1154), + [sym__eq_eq] = STATE(1154), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(4155), + [sym_real_literal] = ACTIONS(4157), + [sym_integer_literal] = ACTIONS(4155), + [sym_hex_literal] = ACTIONS(4157), + [sym_oct_literal] = ACTIONS(4157), + [sym_bin_literal] = ACTIONS(4157), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(4155), + [anon_sym_GT] = ACTIONS(4155), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(4155), + [anon_sym_POUNDfileID] = ACTIONS(4157), + [anon_sym_POUNDfilePath] = ACTIONS(4157), + [anon_sym_POUNDline] = ACTIONS(4157), + [anon_sym_POUNDcolumn] = ACTIONS(4157), + [anon_sym_POUNDfunction] = ACTIONS(4157), + [anon_sym_POUNDdsohandle] = ACTIONS(4157), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(4155), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4155), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4155), + [anon_sym_LT_EQ] = ACTIONS(4155), + [anon_sym_GT_EQ] = ACTIONS(4155), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(4155), + [anon_sym_SLASH] = ACTIONS(4155), + [anon_sym_PERCENT] = ACTIONS(4155), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(4157), + [sym__plus_then_ws] = ACTIONS(4157), + [sym__minus_then_ws] = ACTIONS(4157), + [sym_bang] = ACTIONS(481), + }, + [1008] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1158), + [sym__unary_expression] = STATE(1158), + [sym_postfix_expression] = STATE(1158), + [sym_constructor_expression] = STATE(1158), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1158), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1158), + [sym_await_expression] = STATE(1158), + [sym_ternary_expression] = STATE(1158), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1158), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1158), + [sym_key_path_expression] = STATE(1158), + [sym_key_path_string_expression] = STATE(1158), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1158), + [sym__comparison_operator] = STATE(1158), + [sym__additive_operator] = STATE(1158), + [sym__multiplicative_operator] = STATE(1158), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1158), + [sym__referenceable_operator] = STATE(1158), + [sym__eq_eq] = STATE(1158), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(4159), + [sym_real_literal] = ACTIONS(4161), + [sym_integer_literal] = ACTIONS(4159), + [sym_hex_literal] = ACTIONS(4161), + [sym_oct_literal] = ACTIONS(4161), + [sym_bin_literal] = ACTIONS(4161), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(4159), + [anon_sym_GT] = ACTIONS(4159), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(4159), + [anon_sym_POUNDfileID] = ACTIONS(4161), + [anon_sym_POUNDfilePath] = ACTIONS(4161), + [anon_sym_POUNDline] = ACTIONS(4161), + [anon_sym_POUNDcolumn] = ACTIONS(4161), + [anon_sym_POUNDfunction] = ACTIONS(4161), + [anon_sym_POUNDdsohandle] = ACTIONS(4161), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(4159), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4159), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4159), + [anon_sym_LT_EQ] = ACTIONS(4159), + [anon_sym_GT_EQ] = ACTIONS(4159), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(4159), + [anon_sym_SLASH] = ACTIONS(4159), + [anon_sym_PERCENT] = ACTIONS(4159), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(4161), + [sym__plus_then_ws] = ACTIONS(4161), + [sym__minus_then_ws] = ACTIONS(4161), + [sym_bang] = ACTIONS(481), + }, + [1009] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1996), + [sym_boolean_literal] = STATE(1996), + [sym__string_literal] = STATE(1996), + [sym_line_string_literal] = STATE(1996), + [sym_multi_line_string_literal] = STATE(1996), + [sym_raw_string_literal] = STATE(1996), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1996), + [sym__unary_expression] = STATE(1996), + [sym_postfix_expression] = STATE(1996), + [sym_constructor_expression] = STATE(1996), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1996), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1996), + [sym_prefix_expression] = STATE(1996), + [sym_as_expression] = STATE(1996), + [sym_selector_expression] = STATE(1996), + [sym__binary_expression] = STATE(1996), + [sym_multiplicative_expression] = STATE(1996), + [sym_additive_expression] = STATE(1996), + [sym_range_expression] = STATE(1996), + [sym_infix_expression] = STATE(1996), + [sym_nil_coalescing_expression] = STATE(1996), + [sym_check_expression] = STATE(1996), + [sym_comparison_expression] = STATE(1996), + [sym_equality_expression] = STATE(1996), + [sym_conjunction_expression] = STATE(1996), + [sym_disjunction_expression] = STATE(1996), + [sym_bitwise_operation] = STATE(1996), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1996), + [sym_await_expression] = STATE(1996), + [sym_ternary_expression] = STATE(1996), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1996), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1996), + [sym_dictionary_literal] = STATE(1996), + [sym__special_literal] = STATE(1996), + [sym__playground_literal] = STATE(1996), + [sym_lambda_literal] = STATE(1996), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1996), + [sym_key_path_expression] = STATE(1996), + [sym_key_path_string_expression] = STATE(1996), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1996), + [sym__comparison_operator] = STATE(1996), + [sym__additive_operator] = STATE(1996), + [sym__multiplicative_operator] = STATE(1996), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1996), + [sym__referenceable_operator] = STATE(1996), + [sym__eq_eq] = STATE(1996), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4163), + [sym_real_literal] = ACTIONS(4165), + [sym_integer_literal] = ACTIONS(4163), + [sym_hex_literal] = ACTIONS(4165), + [sym_oct_literal] = ACTIONS(4165), + [sym_bin_literal] = ACTIONS(4165), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4163), + [anon_sym_GT] = ACTIONS(4163), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4163), + [anon_sym_POUNDfileID] = ACTIONS(4165), + [anon_sym_POUNDfilePath] = ACTIONS(4165), + [anon_sym_POUNDline] = ACTIONS(4165), + [anon_sym_POUNDcolumn] = ACTIONS(4165), + [anon_sym_POUNDfunction] = ACTIONS(4165), + [anon_sym_POUNDdsohandle] = ACTIONS(4165), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4163), + [anon_sym_LT_EQ] = ACTIONS(4163), + [anon_sym_GT_EQ] = ACTIONS(4163), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4163), + [anon_sym_SLASH] = ACTIONS(4163), + [anon_sym_PERCENT] = ACTIONS(4163), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4165), + [sym__plus_then_ws] = ACTIONS(4165), + [sym__minus_then_ws] = ACTIONS(4165), + [sym_bang] = ACTIONS(1069), + }, + [1010] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym__string_literal] = STATE(1997), + [sym_line_string_literal] = STATE(1997), + [sym_multi_line_string_literal] = STATE(1997), + [sym_raw_string_literal] = STATE(1997), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1997), + [sym__unary_expression] = STATE(1997), + [sym_postfix_expression] = STATE(1997), + [sym_constructor_expression] = STATE(1997), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1997), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1997), + [sym_prefix_expression] = STATE(1997), + [sym_as_expression] = STATE(1997), + [sym_selector_expression] = STATE(1997), + [sym__binary_expression] = STATE(1997), + [sym_multiplicative_expression] = STATE(1997), + [sym_additive_expression] = STATE(1997), + [sym_range_expression] = STATE(1997), + [sym_infix_expression] = STATE(1997), + [sym_nil_coalescing_expression] = STATE(1997), + [sym_check_expression] = STATE(1997), + [sym_comparison_expression] = STATE(1997), + [sym_equality_expression] = STATE(1997), + [sym_conjunction_expression] = STATE(1997), + [sym_disjunction_expression] = STATE(1997), + [sym_bitwise_operation] = STATE(1997), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1997), + [sym_await_expression] = STATE(1997), + [sym_ternary_expression] = STATE(1997), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1997), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1997), + [sym_dictionary_literal] = STATE(1997), + [sym__special_literal] = STATE(1997), + [sym__playground_literal] = STATE(1997), + [sym_lambda_literal] = STATE(1997), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1997), + [sym_key_path_expression] = STATE(1997), + [sym_key_path_string_expression] = STATE(1997), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1997), + [sym__comparison_operator] = STATE(1997), + [sym__additive_operator] = STATE(1997), + [sym__multiplicative_operator] = STATE(1997), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1997), + [sym__referenceable_operator] = STATE(1997), + [sym__eq_eq] = STATE(1997), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4167), + [sym_real_literal] = ACTIONS(4169), + [sym_integer_literal] = ACTIONS(4167), + [sym_hex_literal] = ACTIONS(4169), + [sym_oct_literal] = ACTIONS(4169), + [sym_bin_literal] = ACTIONS(4169), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4167), + [anon_sym_GT] = ACTIONS(4167), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4167), + [anon_sym_POUNDfileID] = ACTIONS(4169), + [anon_sym_POUNDfilePath] = ACTIONS(4169), + [anon_sym_POUNDline] = ACTIONS(4169), + [anon_sym_POUNDcolumn] = ACTIONS(4169), + [anon_sym_POUNDfunction] = ACTIONS(4169), + [anon_sym_POUNDdsohandle] = ACTIONS(4169), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4167), + [anon_sym_LT_EQ] = ACTIONS(4167), + [anon_sym_GT_EQ] = ACTIONS(4167), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4167), + [anon_sym_SLASH] = ACTIONS(4167), + [anon_sym_PERCENT] = ACTIONS(4167), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4169), + [sym__plus_then_ws] = ACTIONS(4169), + [sym__minus_then_ws] = ACTIONS(4169), + [sym_bang] = ACTIONS(1069), + }, + [1011] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1554), + [sym_boolean_literal] = STATE(1554), + [sym__string_literal] = STATE(1554), + [sym_line_string_literal] = STATE(1554), + [sym_multi_line_string_literal] = STATE(1554), + [sym_raw_string_literal] = STATE(1554), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1554), + [sym__unary_expression] = STATE(1554), + [sym_postfix_expression] = STATE(1554), + [sym_constructor_expression] = STATE(1554), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1554), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1554), + [sym_prefix_expression] = STATE(1554), + [sym_as_expression] = STATE(1554), + [sym_selector_expression] = STATE(1554), + [sym__binary_expression] = STATE(1554), + [sym_multiplicative_expression] = STATE(1554), + [sym_additive_expression] = STATE(1554), + [sym_range_expression] = STATE(1554), + [sym_infix_expression] = STATE(1554), + [sym_nil_coalescing_expression] = STATE(1554), + [sym_check_expression] = STATE(1554), + [sym_comparison_expression] = STATE(1554), + [sym_equality_expression] = STATE(1554), + [sym_conjunction_expression] = STATE(1554), + [sym_disjunction_expression] = STATE(1554), + [sym_bitwise_operation] = STATE(1554), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1554), + [sym_await_expression] = STATE(1554), + [sym_ternary_expression] = STATE(1554), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1554), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1554), + [sym_dictionary_literal] = STATE(1554), + [sym__special_literal] = STATE(1554), + [sym__playground_literal] = STATE(1554), + [sym_lambda_literal] = STATE(1554), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1554), + [sym_key_path_expression] = STATE(1554), + [sym_key_path_string_expression] = STATE(1554), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1554), + [sym__comparison_operator] = STATE(1554), + [sym__additive_operator] = STATE(1554), + [sym__multiplicative_operator] = STATE(1554), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1554), + [sym__referenceable_operator] = STATE(1554), + [sym__eq_eq] = STATE(1554), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4171), + [sym_real_literal] = ACTIONS(4173), + [sym_integer_literal] = ACTIONS(4171), + [sym_hex_literal] = ACTIONS(4173), + [sym_oct_literal] = ACTIONS(4173), + [sym_bin_literal] = ACTIONS(4173), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4171), + [anon_sym_GT] = ACTIONS(4171), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4171), + [anon_sym_POUNDfileID] = ACTIONS(4173), + [anon_sym_POUNDfilePath] = ACTIONS(4173), + [anon_sym_POUNDline] = ACTIONS(4173), + [anon_sym_POUNDcolumn] = ACTIONS(4173), + [anon_sym_POUNDfunction] = ACTIONS(4173), + [anon_sym_POUNDdsohandle] = ACTIONS(4173), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4171), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4171), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4171), + [anon_sym_LT_EQ] = ACTIONS(4171), + [anon_sym_GT_EQ] = ACTIONS(4171), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4171), + [anon_sym_SLASH] = ACTIONS(4171), + [anon_sym_PERCENT] = ACTIONS(4171), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4173), + [sym__plus_then_ws] = ACTIONS(4173), + [sym__minus_then_ws] = ACTIONS(4173), + [sym_bang] = ACTIONS(1069), + }, + [1012] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1555), + [sym_boolean_literal] = STATE(1555), + [sym__string_literal] = STATE(1555), + [sym_line_string_literal] = STATE(1555), + [sym_multi_line_string_literal] = STATE(1555), + [sym_raw_string_literal] = STATE(1555), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1555), + [sym__unary_expression] = STATE(1555), + [sym_postfix_expression] = STATE(1555), + [sym_constructor_expression] = STATE(1555), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1555), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1555), + [sym_prefix_expression] = STATE(1555), + [sym_as_expression] = STATE(1555), + [sym_selector_expression] = STATE(1555), + [sym__binary_expression] = STATE(1555), + [sym_multiplicative_expression] = STATE(1555), + [sym_additive_expression] = STATE(1555), + [sym_range_expression] = STATE(1555), + [sym_infix_expression] = STATE(1555), + [sym_nil_coalescing_expression] = STATE(1555), + [sym_check_expression] = STATE(1555), + [sym_comparison_expression] = STATE(1555), + [sym_equality_expression] = STATE(1555), + [sym_conjunction_expression] = STATE(1555), + [sym_disjunction_expression] = STATE(1555), + [sym_bitwise_operation] = STATE(1555), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1555), + [sym_await_expression] = STATE(1555), + [sym_ternary_expression] = STATE(1555), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1555), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1555), + [sym_dictionary_literal] = STATE(1555), + [sym__special_literal] = STATE(1555), + [sym__playground_literal] = STATE(1555), + [sym_lambda_literal] = STATE(1555), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1555), + [sym_key_path_expression] = STATE(1555), + [sym_key_path_string_expression] = STATE(1555), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1555), + [sym__comparison_operator] = STATE(1555), + [sym__additive_operator] = STATE(1555), + [sym__multiplicative_operator] = STATE(1555), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1555), + [sym__referenceable_operator] = STATE(1555), + [sym__eq_eq] = STATE(1555), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4175), + [sym_real_literal] = ACTIONS(4177), + [sym_integer_literal] = ACTIONS(4175), + [sym_hex_literal] = ACTIONS(4177), + [sym_oct_literal] = ACTIONS(4177), + [sym_bin_literal] = ACTIONS(4177), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4175), + [anon_sym_GT] = ACTIONS(4175), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4175), + [anon_sym_POUNDfileID] = ACTIONS(4177), + [anon_sym_POUNDfilePath] = ACTIONS(4177), + [anon_sym_POUNDline] = ACTIONS(4177), + [anon_sym_POUNDcolumn] = ACTIONS(4177), + [anon_sym_POUNDfunction] = ACTIONS(4177), + [anon_sym_POUNDdsohandle] = ACTIONS(4177), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4175), + [anon_sym_LT_EQ] = ACTIONS(4175), + [anon_sym_GT_EQ] = ACTIONS(4175), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4175), + [anon_sym_SLASH] = ACTIONS(4175), + [anon_sym_PERCENT] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4177), + [sym__plus_then_ws] = ACTIONS(4177), + [sym__minus_then_ws] = ACTIONS(4177), + [sym_bang] = ACTIONS(1069), + }, + [1013] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1159), + [sym__unary_expression] = STATE(1159), + [sym_postfix_expression] = STATE(1159), + [sym_constructor_expression] = STATE(1159), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1159), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1159), + [sym_await_expression] = STATE(1159), + [sym_ternary_expression] = STATE(1159), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1159), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1159), + [sym_key_path_expression] = STATE(1159), + [sym_key_path_string_expression] = STATE(1159), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1159), + [sym__comparison_operator] = STATE(1159), + [sym__additive_operator] = STATE(1159), + [sym__multiplicative_operator] = STATE(1159), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1159), + [sym__referenceable_operator] = STATE(1159), + [sym__eq_eq] = STATE(1159), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(4179), + [sym_real_literal] = ACTIONS(4181), + [sym_integer_literal] = ACTIONS(4179), + [sym_hex_literal] = ACTIONS(4181), + [sym_oct_literal] = ACTIONS(4181), + [sym_bin_literal] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(4179), + [anon_sym_GT] = ACTIONS(4179), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(4179), + [anon_sym_POUNDfileID] = ACTIONS(4181), + [anon_sym_POUNDfilePath] = ACTIONS(4181), + [anon_sym_POUNDline] = ACTIONS(4181), + [anon_sym_POUNDcolumn] = ACTIONS(4181), + [anon_sym_POUNDfunction] = ACTIONS(4181), + [anon_sym_POUNDdsohandle] = ACTIONS(4181), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(4179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4179), + [anon_sym_LT_EQ] = ACTIONS(4179), + [anon_sym_GT_EQ] = ACTIONS(4179), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(4179), + [anon_sym_SLASH] = ACTIONS(4179), + [anon_sym_PERCENT] = ACTIONS(4179), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(4181), + [sym__plus_then_ws] = ACTIONS(4181), + [sym__minus_then_ws] = ACTIONS(4181), + [sym_bang] = ACTIONS(481), + }, + [1014] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1171), + [sym__unary_expression] = STATE(1171), + [sym_postfix_expression] = STATE(1171), + [sym_constructor_expression] = STATE(1171), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1171), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1171), + [sym_await_expression] = STATE(1171), + [sym_ternary_expression] = STATE(1171), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1171), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1171), + [sym_key_path_expression] = STATE(1171), + [sym_key_path_string_expression] = STATE(1171), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1171), + [sym__comparison_operator] = STATE(1171), + [sym__additive_operator] = STATE(1171), + [sym__multiplicative_operator] = STATE(1171), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1171), + [sym__referenceable_operator] = STATE(1171), + [sym__eq_eq] = STATE(1171), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(4183), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4183), + [sym_hex_literal] = ACTIONS(4185), + [sym_oct_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(4183), + [anon_sym_POUNDfileID] = ACTIONS(4185), + [anon_sym_POUNDfilePath] = ACTIONS(4185), + [anon_sym_POUNDline] = ACTIONS(4185), + [anon_sym_POUNDcolumn] = ACTIONS(4185), + [anon_sym_POUNDfunction] = ACTIONS(4185), + [anon_sym_POUNDdsohandle] = ACTIONS(4185), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(4183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4183), + [anon_sym_LT_EQ] = ACTIONS(4183), + [anon_sym_GT_EQ] = ACTIONS(4183), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(4183), + [anon_sym_SLASH] = ACTIONS(4183), + [anon_sym_PERCENT] = ACTIONS(4183), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(4185), + [sym__plus_then_ws] = ACTIONS(4185), + [sym__minus_then_ws] = ACTIONS(4185), + [sym_bang] = ACTIONS(481), + }, + [1015] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1871), + [sym_boolean_literal] = STATE(1871), + [sym__string_literal] = STATE(1871), + [sym_line_string_literal] = STATE(1871), + [sym_multi_line_string_literal] = STATE(1871), + [sym_raw_string_literal] = STATE(1871), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1871), + [sym__unary_expression] = STATE(1871), + [sym_postfix_expression] = STATE(1871), + [sym_constructor_expression] = STATE(1871), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1871), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1871), + [sym_prefix_expression] = STATE(1871), + [sym_as_expression] = STATE(1871), + [sym_selector_expression] = STATE(1871), + [sym__binary_expression] = STATE(1871), + [sym_multiplicative_expression] = STATE(1871), + [sym_additive_expression] = STATE(1871), + [sym_range_expression] = STATE(1871), + [sym_infix_expression] = STATE(1871), + [sym_nil_coalescing_expression] = STATE(1871), + [sym_check_expression] = STATE(1871), + [sym_comparison_expression] = STATE(1871), + [sym_equality_expression] = STATE(1871), + [sym_conjunction_expression] = STATE(1871), + [sym_disjunction_expression] = STATE(1871), + [sym_bitwise_operation] = STATE(1871), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1871), + [sym_await_expression] = STATE(1871), + [sym_ternary_expression] = STATE(1871), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1871), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1871), + [sym_dictionary_literal] = STATE(1871), + [sym__special_literal] = STATE(1871), + [sym__playground_literal] = STATE(1871), + [sym_lambda_literal] = STATE(1871), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1871), + [sym_key_path_expression] = STATE(1871), + [sym_key_path_string_expression] = STATE(1871), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1871), + [sym__comparison_operator] = STATE(1871), + [sym__additive_operator] = STATE(1871), + [sym__multiplicative_operator] = STATE(1871), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1871), + [sym__referenceable_operator] = STATE(1871), + [sym__eq_eq] = STATE(1871), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4187), + [sym_real_literal] = ACTIONS(4189), + [sym_integer_literal] = ACTIONS(4187), + [sym_hex_literal] = ACTIONS(4189), + [sym_oct_literal] = ACTIONS(4189), + [sym_bin_literal] = ACTIONS(4189), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4187), + [anon_sym_GT] = ACTIONS(4187), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4187), + [anon_sym_POUNDfileID] = ACTIONS(4189), + [anon_sym_POUNDfilePath] = ACTIONS(4189), + [anon_sym_POUNDline] = ACTIONS(4189), + [anon_sym_POUNDcolumn] = ACTIONS(4189), + [anon_sym_POUNDfunction] = ACTIONS(4189), + [anon_sym_POUNDdsohandle] = ACTIONS(4189), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4187), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4187), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4187), + [anon_sym_LT_EQ] = ACTIONS(4187), + [anon_sym_GT_EQ] = ACTIONS(4187), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4187), + [anon_sym_SLASH] = ACTIONS(4187), + [anon_sym_PERCENT] = ACTIONS(4187), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4189), + [sym__plus_then_ws] = ACTIONS(4189), + [sym__minus_then_ws] = ACTIONS(4189), + [sym_bang] = ACTIONS(1069), + }, + [1016] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1998), + [sym_boolean_literal] = STATE(1998), + [sym__string_literal] = STATE(1998), + [sym_line_string_literal] = STATE(1998), + [sym_multi_line_string_literal] = STATE(1998), + [sym_raw_string_literal] = STATE(1998), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1998), + [sym__unary_expression] = STATE(1998), + [sym_postfix_expression] = STATE(1998), + [sym_constructor_expression] = STATE(1998), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1998), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1998), + [sym_prefix_expression] = STATE(1998), + [sym_as_expression] = STATE(1998), + [sym_selector_expression] = STATE(1998), + [sym__binary_expression] = STATE(1998), + [sym_multiplicative_expression] = STATE(1998), + [sym_additive_expression] = STATE(1998), + [sym_range_expression] = STATE(1998), + [sym_infix_expression] = STATE(1998), + [sym_nil_coalescing_expression] = STATE(1998), + [sym_check_expression] = STATE(1998), + [sym_comparison_expression] = STATE(1998), + [sym_equality_expression] = STATE(1998), + [sym_conjunction_expression] = STATE(1998), + [sym_disjunction_expression] = STATE(1998), + [sym_bitwise_operation] = STATE(1998), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1998), + [sym_await_expression] = STATE(1998), + [sym_ternary_expression] = STATE(1998), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1998), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1998), + [sym_dictionary_literal] = STATE(1998), + [sym__special_literal] = STATE(1998), + [sym__playground_literal] = STATE(1998), + [sym_lambda_literal] = STATE(1998), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1998), + [sym_key_path_expression] = STATE(1998), + [sym_key_path_string_expression] = STATE(1998), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1998), + [sym__comparison_operator] = STATE(1998), + [sym__additive_operator] = STATE(1998), + [sym__multiplicative_operator] = STATE(1998), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1998), + [sym__referenceable_operator] = STATE(1998), + [sym__eq_eq] = STATE(1998), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4191), + [sym_real_literal] = ACTIONS(4193), + [sym_integer_literal] = ACTIONS(4191), + [sym_hex_literal] = ACTIONS(4193), + [sym_oct_literal] = ACTIONS(4193), + [sym_bin_literal] = ACTIONS(4193), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4191), + [anon_sym_GT] = ACTIONS(4191), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4191), + [anon_sym_POUNDfileID] = ACTIONS(4193), + [anon_sym_POUNDfilePath] = ACTIONS(4193), + [anon_sym_POUNDline] = ACTIONS(4193), + [anon_sym_POUNDcolumn] = ACTIONS(4193), + [anon_sym_POUNDfunction] = ACTIONS(4193), + [anon_sym_POUNDdsohandle] = ACTIONS(4193), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4191), + [anon_sym_LT_EQ] = ACTIONS(4191), + [anon_sym_GT_EQ] = ACTIONS(4191), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4191), + [anon_sym_SLASH] = ACTIONS(4191), + [anon_sym_PERCENT] = ACTIONS(4191), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4193), + [sym__plus_then_ws] = ACTIONS(4193), + [sym__minus_then_ws] = ACTIONS(4193), + [sym_bang] = ACTIONS(1069), + }, + [1017] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2000), + [sym_boolean_literal] = STATE(2000), + [sym__string_literal] = STATE(2000), + [sym_line_string_literal] = STATE(2000), + [sym_multi_line_string_literal] = STATE(2000), + [sym_raw_string_literal] = STATE(2000), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2000), + [sym__unary_expression] = STATE(2000), + [sym_postfix_expression] = STATE(2000), + [sym_constructor_expression] = STATE(2000), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2000), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2000), + [sym_prefix_expression] = STATE(2000), + [sym_as_expression] = STATE(2000), + [sym_selector_expression] = STATE(2000), + [sym__binary_expression] = STATE(2000), + [sym_multiplicative_expression] = STATE(2000), + [sym_additive_expression] = STATE(2000), + [sym_range_expression] = STATE(2000), + [sym_infix_expression] = STATE(2000), + [sym_nil_coalescing_expression] = STATE(2000), + [sym_check_expression] = STATE(2000), + [sym_comparison_expression] = STATE(2000), + [sym_equality_expression] = STATE(2000), + [sym_conjunction_expression] = STATE(2000), + [sym_disjunction_expression] = STATE(2000), + [sym_bitwise_operation] = STATE(2000), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2000), + [sym_await_expression] = STATE(2000), + [sym_ternary_expression] = STATE(2000), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2000), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2000), + [sym_dictionary_literal] = STATE(2000), + [sym__special_literal] = STATE(2000), + [sym__playground_literal] = STATE(2000), + [sym_lambda_literal] = STATE(2000), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2000), + [sym_key_path_expression] = STATE(2000), + [sym_key_path_string_expression] = STATE(2000), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2000), + [sym__comparison_operator] = STATE(2000), + [sym__additive_operator] = STATE(2000), + [sym__multiplicative_operator] = STATE(2000), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2000), + [sym__referenceable_operator] = STATE(2000), + [sym__eq_eq] = STATE(2000), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4195), + [sym_real_literal] = ACTIONS(4197), + [sym_integer_literal] = ACTIONS(4195), + [sym_hex_literal] = ACTIONS(4197), + [sym_oct_literal] = ACTIONS(4197), + [sym_bin_literal] = ACTIONS(4197), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4195), + [anon_sym_GT] = ACTIONS(4195), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4195), + [anon_sym_POUNDfileID] = ACTIONS(4197), + [anon_sym_POUNDfilePath] = ACTIONS(4197), + [anon_sym_POUNDline] = ACTIONS(4197), + [anon_sym_POUNDcolumn] = ACTIONS(4197), + [anon_sym_POUNDfunction] = ACTIONS(4197), + [anon_sym_POUNDdsohandle] = ACTIONS(4197), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4195), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4195), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4195), + [anon_sym_LT_EQ] = ACTIONS(4195), + [anon_sym_GT_EQ] = ACTIONS(4195), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4195), + [anon_sym_SLASH] = ACTIONS(4195), + [anon_sym_PERCENT] = ACTIONS(4195), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4197), + [sym__plus_then_ws] = ACTIONS(4197), + [sym__minus_then_ws] = ACTIONS(4197), + [sym_bang] = ACTIONS(1069), + }, + [1018] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2058), + [sym_boolean_literal] = STATE(2058), + [sym__string_literal] = STATE(2058), + [sym_line_string_literal] = STATE(2058), + [sym_multi_line_string_literal] = STATE(2058), + [sym_raw_string_literal] = STATE(2058), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2058), + [sym__unary_expression] = STATE(2058), + [sym_postfix_expression] = STATE(2058), + [sym_constructor_expression] = STATE(2058), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2058), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2058), + [sym_prefix_expression] = STATE(2058), + [sym_as_expression] = STATE(2058), + [sym_selector_expression] = STATE(2058), + [sym__binary_expression] = STATE(2058), + [sym_multiplicative_expression] = STATE(2058), + [sym_additive_expression] = STATE(2058), + [sym_range_expression] = STATE(2058), + [sym_infix_expression] = STATE(2058), + [sym_nil_coalescing_expression] = STATE(2058), + [sym_check_expression] = STATE(2058), + [sym_comparison_expression] = STATE(2058), + [sym_equality_expression] = STATE(2058), + [sym_conjunction_expression] = STATE(2058), + [sym_disjunction_expression] = STATE(2058), + [sym_bitwise_operation] = STATE(2058), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2058), + [sym_await_expression] = STATE(2058), + [sym_ternary_expression] = STATE(2058), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2058), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2058), + [sym_dictionary_literal] = STATE(2058), + [sym__special_literal] = STATE(2058), + [sym__playground_literal] = STATE(2058), + [sym_lambda_literal] = STATE(2058), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2058), + [sym_key_path_expression] = STATE(2058), + [sym_key_path_string_expression] = STATE(2058), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2058), + [sym__comparison_operator] = STATE(2058), + [sym__additive_operator] = STATE(2058), + [sym__multiplicative_operator] = STATE(2058), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2058), + [sym__referenceable_operator] = STATE(2058), + [sym__eq_eq] = STATE(2058), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4199), + [sym_real_literal] = ACTIONS(4201), + [sym_integer_literal] = ACTIONS(4199), + [sym_hex_literal] = ACTIONS(4201), + [sym_oct_literal] = ACTIONS(4201), + [sym_bin_literal] = ACTIONS(4201), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4199), + [anon_sym_GT] = ACTIONS(4199), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4199), + [anon_sym_POUNDfileID] = ACTIONS(4201), + [anon_sym_POUNDfilePath] = ACTIONS(4201), + [anon_sym_POUNDline] = ACTIONS(4201), + [anon_sym_POUNDcolumn] = ACTIONS(4201), + [anon_sym_POUNDfunction] = ACTIONS(4201), + [anon_sym_POUNDdsohandle] = ACTIONS(4201), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4199), + [anon_sym_LT_EQ] = ACTIONS(4199), + [anon_sym_GT_EQ] = ACTIONS(4199), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4199), + [anon_sym_SLASH] = ACTIONS(4199), + [anon_sym_PERCENT] = ACTIONS(4199), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4201), + [sym__plus_then_ws] = ACTIONS(4201), + [sym__minus_then_ws] = ACTIONS(4201), + [sym_bang] = ACTIONS(1069), + }, + [1019] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2001), + [sym_boolean_literal] = STATE(2001), + [sym__string_literal] = STATE(2001), + [sym_line_string_literal] = STATE(2001), + [sym_multi_line_string_literal] = STATE(2001), + [sym_raw_string_literal] = STATE(2001), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2001), + [sym__unary_expression] = STATE(2001), + [sym_postfix_expression] = STATE(2001), + [sym_constructor_expression] = STATE(2001), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2001), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2001), + [sym_prefix_expression] = STATE(2001), + [sym_as_expression] = STATE(2001), + [sym_selector_expression] = STATE(2001), + [sym__binary_expression] = STATE(2001), + [sym_multiplicative_expression] = STATE(2001), + [sym_additive_expression] = STATE(2001), + [sym_range_expression] = STATE(2001), + [sym_infix_expression] = STATE(2001), + [sym_nil_coalescing_expression] = STATE(2001), + [sym_check_expression] = STATE(2001), + [sym_comparison_expression] = STATE(2001), + [sym_equality_expression] = STATE(2001), + [sym_conjunction_expression] = STATE(2001), + [sym_disjunction_expression] = STATE(2001), + [sym_bitwise_operation] = STATE(2001), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2001), + [sym_await_expression] = STATE(2001), + [sym_ternary_expression] = STATE(2001), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2001), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2001), + [sym_dictionary_literal] = STATE(2001), + [sym__special_literal] = STATE(2001), + [sym__playground_literal] = STATE(2001), + [sym_lambda_literal] = STATE(2001), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2001), + [sym_key_path_expression] = STATE(2001), + [sym_key_path_string_expression] = STATE(2001), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2001), + [sym__comparison_operator] = STATE(2001), + [sym__additive_operator] = STATE(2001), + [sym__multiplicative_operator] = STATE(2001), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2001), + [sym__referenceable_operator] = STATE(2001), + [sym__eq_eq] = STATE(2001), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4203), + [sym_real_literal] = ACTIONS(4205), + [sym_integer_literal] = ACTIONS(4203), + [sym_hex_literal] = ACTIONS(4205), + [sym_oct_literal] = ACTIONS(4205), + [sym_bin_literal] = ACTIONS(4205), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4203), + [anon_sym_GT] = ACTIONS(4203), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4203), + [anon_sym_POUNDfileID] = ACTIONS(4205), + [anon_sym_POUNDfilePath] = ACTIONS(4205), + [anon_sym_POUNDline] = ACTIONS(4205), + [anon_sym_POUNDcolumn] = ACTIONS(4205), + [anon_sym_POUNDfunction] = ACTIONS(4205), + [anon_sym_POUNDdsohandle] = ACTIONS(4205), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4203), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4203), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4203), + [anon_sym_LT_EQ] = ACTIONS(4203), + [anon_sym_GT_EQ] = ACTIONS(4203), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4203), + [anon_sym_SLASH] = ACTIONS(4203), + [anon_sym_PERCENT] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4205), + [sym__plus_then_ws] = ACTIONS(4205), + [sym__minus_then_ws] = ACTIONS(4205), + [sym_bang] = ACTIONS(1069), + }, + [1020] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2002), + [sym_boolean_literal] = STATE(2002), + [sym__string_literal] = STATE(2002), + [sym_line_string_literal] = STATE(2002), + [sym_multi_line_string_literal] = STATE(2002), + [sym_raw_string_literal] = STATE(2002), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2002), + [sym__unary_expression] = STATE(2002), + [sym_postfix_expression] = STATE(2002), + [sym_constructor_expression] = STATE(2002), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2002), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2002), + [sym_prefix_expression] = STATE(2002), + [sym_as_expression] = STATE(2002), + [sym_selector_expression] = STATE(2002), + [sym__binary_expression] = STATE(2002), + [sym_multiplicative_expression] = STATE(2002), + [sym_additive_expression] = STATE(2002), + [sym_range_expression] = STATE(2002), + [sym_infix_expression] = STATE(2002), + [sym_nil_coalescing_expression] = STATE(2002), + [sym_check_expression] = STATE(2002), + [sym_comparison_expression] = STATE(2002), + [sym_equality_expression] = STATE(2002), + [sym_conjunction_expression] = STATE(2002), + [sym_disjunction_expression] = STATE(2002), + [sym_bitwise_operation] = STATE(2002), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2002), + [sym_await_expression] = STATE(2002), + [sym_ternary_expression] = STATE(2002), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2002), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2002), + [sym_dictionary_literal] = STATE(2002), + [sym__special_literal] = STATE(2002), + [sym__playground_literal] = STATE(2002), + [sym_lambda_literal] = STATE(2002), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2002), + [sym_key_path_expression] = STATE(2002), + [sym_key_path_string_expression] = STATE(2002), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2002), + [sym__comparison_operator] = STATE(2002), + [sym__additive_operator] = STATE(2002), + [sym__multiplicative_operator] = STATE(2002), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2002), + [sym__referenceable_operator] = STATE(2002), + [sym__eq_eq] = STATE(2002), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4207), + [sym_real_literal] = ACTIONS(4209), + [sym_integer_literal] = ACTIONS(4207), + [sym_hex_literal] = ACTIONS(4209), + [sym_oct_literal] = ACTIONS(4209), + [sym_bin_literal] = ACTIONS(4209), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4207), + [anon_sym_GT] = ACTIONS(4207), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4207), + [anon_sym_POUNDfileID] = ACTIONS(4209), + [anon_sym_POUNDfilePath] = ACTIONS(4209), + [anon_sym_POUNDline] = ACTIONS(4209), + [anon_sym_POUNDcolumn] = ACTIONS(4209), + [anon_sym_POUNDfunction] = ACTIONS(4209), + [anon_sym_POUNDdsohandle] = ACTIONS(4209), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4207), + [anon_sym_LT_EQ] = ACTIONS(4207), + [anon_sym_GT_EQ] = ACTIONS(4207), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4207), + [anon_sym_SLASH] = ACTIONS(4207), + [anon_sym_PERCENT] = ACTIONS(4207), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4209), + [sym__plus_then_ws] = ACTIONS(4209), + [sym__minus_then_ws] = ACTIONS(4209), + [sym_bang] = ACTIONS(1069), + }, + [1021] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1580), + [sym_boolean_literal] = STATE(1580), + [sym__string_literal] = STATE(1580), + [sym_line_string_literal] = STATE(1580), + [sym_multi_line_string_literal] = STATE(1580), + [sym_raw_string_literal] = STATE(1580), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1580), + [sym__unary_expression] = STATE(1580), + [sym_postfix_expression] = STATE(1580), + [sym_constructor_expression] = STATE(1580), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1580), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1580), + [sym_prefix_expression] = STATE(1580), + [sym_as_expression] = STATE(1580), + [sym_selector_expression] = STATE(1580), + [sym__binary_expression] = STATE(1580), + [sym_multiplicative_expression] = STATE(1580), + [sym_additive_expression] = STATE(1580), + [sym_range_expression] = STATE(1580), + [sym_infix_expression] = STATE(1580), + [sym_nil_coalescing_expression] = STATE(1580), + [sym_check_expression] = STATE(1580), + [sym_comparison_expression] = STATE(1580), + [sym_equality_expression] = STATE(1580), + [sym_conjunction_expression] = STATE(1580), + [sym_disjunction_expression] = STATE(1580), + [sym_bitwise_operation] = STATE(1580), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1580), + [sym_await_expression] = STATE(1580), + [sym_ternary_expression] = STATE(1580), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1580), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1580), + [sym_dictionary_literal] = STATE(1580), + [sym__special_literal] = STATE(1580), + [sym__playground_literal] = STATE(1580), + [sym_lambda_literal] = STATE(1580), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1580), + [sym_key_path_expression] = STATE(1580), + [sym_key_path_string_expression] = STATE(1580), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1580), + [sym__comparison_operator] = STATE(1580), + [sym__additive_operator] = STATE(1580), + [sym__multiplicative_operator] = STATE(1580), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1580), + [sym__referenceable_operator] = STATE(1580), + [sym__eq_eq] = STATE(1580), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4211), + [sym_real_literal] = ACTIONS(4213), + [sym_integer_literal] = ACTIONS(4211), + [sym_hex_literal] = ACTIONS(4213), + [sym_oct_literal] = ACTIONS(4213), + [sym_bin_literal] = ACTIONS(4213), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4211), + [anon_sym_GT] = ACTIONS(4211), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4211), + [anon_sym_POUNDfileID] = ACTIONS(4213), + [anon_sym_POUNDfilePath] = ACTIONS(4213), + [anon_sym_POUNDline] = ACTIONS(4213), + [anon_sym_POUNDcolumn] = ACTIONS(4213), + [anon_sym_POUNDfunction] = ACTIONS(4213), + [anon_sym_POUNDdsohandle] = ACTIONS(4213), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4211), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4211), + [anon_sym_LT_EQ] = ACTIONS(4211), + [anon_sym_GT_EQ] = ACTIONS(4211), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4211), + [anon_sym_SLASH] = ACTIONS(4211), + [anon_sym_PERCENT] = ACTIONS(4211), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4213), + [sym__plus_then_ws] = ACTIONS(4213), + [sym__minus_then_ws] = ACTIONS(4213), + [sym_bang] = ACTIONS(1069), + }, + [1022] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2005), + [sym_boolean_literal] = STATE(2005), + [sym__string_literal] = STATE(2005), + [sym_line_string_literal] = STATE(2005), + [sym_multi_line_string_literal] = STATE(2005), + [sym_raw_string_literal] = STATE(2005), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2005), + [sym__unary_expression] = STATE(2005), + [sym_postfix_expression] = STATE(2005), + [sym_constructor_expression] = STATE(2005), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2005), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2005), + [sym_prefix_expression] = STATE(2005), + [sym_as_expression] = STATE(2005), + [sym_selector_expression] = STATE(2005), + [sym__binary_expression] = STATE(2005), + [sym_multiplicative_expression] = STATE(2005), + [sym_additive_expression] = STATE(2005), + [sym_range_expression] = STATE(2005), + [sym_infix_expression] = STATE(2005), + [sym_nil_coalescing_expression] = STATE(2005), + [sym_check_expression] = STATE(2005), + [sym_comparison_expression] = STATE(2005), + [sym_equality_expression] = STATE(2005), + [sym_conjunction_expression] = STATE(2005), + [sym_disjunction_expression] = STATE(2005), + [sym_bitwise_operation] = STATE(2005), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2005), + [sym_await_expression] = STATE(2005), + [sym_ternary_expression] = STATE(2005), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2005), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2005), + [sym_dictionary_literal] = STATE(2005), + [sym__special_literal] = STATE(2005), + [sym__playground_literal] = STATE(2005), + [sym_lambda_literal] = STATE(2005), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2005), + [sym_key_path_expression] = STATE(2005), + [sym_key_path_string_expression] = STATE(2005), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2005), + [sym__comparison_operator] = STATE(2005), + [sym__additive_operator] = STATE(2005), + [sym__multiplicative_operator] = STATE(2005), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2005), + [sym__referenceable_operator] = STATE(2005), + [sym__eq_eq] = STATE(2005), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4215), + [sym_real_literal] = ACTIONS(4217), + [sym_integer_literal] = ACTIONS(4215), + [sym_hex_literal] = ACTIONS(4217), + [sym_oct_literal] = ACTIONS(4217), + [sym_bin_literal] = ACTIONS(4217), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4215), + [anon_sym_GT] = ACTIONS(4215), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4215), + [anon_sym_POUNDfileID] = ACTIONS(4217), + [anon_sym_POUNDfilePath] = ACTIONS(4217), + [anon_sym_POUNDline] = ACTIONS(4217), + [anon_sym_POUNDcolumn] = ACTIONS(4217), + [anon_sym_POUNDfunction] = ACTIONS(4217), + [anon_sym_POUNDdsohandle] = ACTIONS(4217), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4215), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4215), + [anon_sym_LT_EQ] = ACTIONS(4215), + [anon_sym_GT_EQ] = ACTIONS(4215), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4215), + [anon_sym_SLASH] = ACTIONS(4215), + [anon_sym_PERCENT] = ACTIONS(4215), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4217), + [sym__plus_then_ws] = ACTIONS(4217), + [sym__minus_then_ws] = ACTIONS(4217), + [sym_bang] = ACTIONS(1069), + }, + [1023] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1933), + [sym_boolean_literal] = STATE(1933), + [sym__string_literal] = STATE(1933), + [sym_line_string_literal] = STATE(1933), + [sym_multi_line_string_literal] = STATE(1933), + [sym_raw_string_literal] = STATE(1933), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1933), + [sym__unary_expression] = STATE(1933), + [sym_postfix_expression] = STATE(1933), + [sym_constructor_expression] = STATE(1933), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1933), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1933), + [sym_prefix_expression] = STATE(1933), + [sym_as_expression] = STATE(1933), + [sym_selector_expression] = STATE(1933), + [sym__binary_expression] = STATE(1933), + [sym_multiplicative_expression] = STATE(1933), + [sym_additive_expression] = STATE(1933), + [sym_range_expression] = STATE(1933), + [sym_infix_expression] = STATE(1933), + [sym_nil_coalescing_expression] = STATE(1933), + [sym_check_expression] = STATE(1933), + [sym_comparison_expression] = STATE(1933), + [sym_equality_expression] = STATE(1933), + [sym_conjunction_expression] = STATE(1933), + [sym_disjunction_expression] = STATE(1933), + [sym_bitwise_operation] = STATE(1933), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1933), + [sym_await_expression] = STATE(1933), + [sym_ternary_expression] = STATE(1933), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1933), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1933), + [sym_dictionary_literal] = STATE(1933), + [sym__special_literal] = STATE(1933), + [sym__playground_literal] = STATE(1933), + [sym_lambda_literal] = STATE(1933), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1933), + [sym_key_path_expression] = STATE(1933), + [sym_key_path_string_expression] = STATE(1933), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1933), + [sym__comparison_operator] = STATE(1933), + [sym__additive_operator] = STATE(1933), + [sym__multiplicative_operator] = STATE(1933), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1933), + [sym__referenceable_operator] = STATE(1933), + [sym__eq_eq] = STATE(1933), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4219), + [sym_real_literal] = ACTIONS(4221), + [sym_integer_literal] = ACTIONS(4219), + [sym_hex_literal] = ACTIONS(4221), + [sym_oct_literal] = ACTIONS(4221), + [sym_bin_literal] = ACTIONS(4221), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4219), + [anon_sym_GT] = ACTIONS(4219), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4219), + [anon_sym_POUNDfileID] = ACTIONS(4221), + [anon_sym_POUNDfilePath] = ACTIONS(4221), + [anon_sym_POUNDline] = ACTIONS(4221), + [anon_sym_POUNDcolumn] = ACTIONS(4221), + [anon_sym_POUNDfunction] = ACTIONS(4221), + [anon_sym_POUNDdsohandle] = ACTIONS(4221), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4219), + [anon_sym_LT_EQ] = ACTIONS(4219), + [anon_sym_GT_EQ] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4219), + [anon_sym_SLASH] = ACTIONS(4219), + [anon_sym_PERCENT] = ACTIONS(4219), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4221), + [sym__plus_then_ws] = ACTIONS(4221), + [sym__minus_then_ws] = ACTIONS(4221), + [sym_bang] = ACTIONS(1069), + }, + [1024] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1556), + [sym_boolean_literal] = STATE(1556), + [sym__string_literal] = STATE(1556), + [sym_line_string_literal] = STATE(1556), + [sym_multi_line_string_literal] = STATE(1556), + [sym_raw_string_literal] = STATE(1556), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1556), + [sym__unary_expression] = STATE(1556), + [sym_postfix_expression] = STATE(1556), + [sym_constructor_expression] = STATE(1556), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1556), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1556), + [sym_prefix_expression] = STATE(1556), + [sym_as_expression] = STATE(1556), + [sym_selector_expression] = STATE(1556), + [sym__binary_expression] = STATE(1556), + [sym_multiplicative_expression] = STATE(1556), + [sym_additive_expression] = STATE(1556), + [sym_range_expression] = STATE(1556), + [sym_infix_expression] = STATE(1556), + [sym_nil_coalescing_expression] = STATE(1556), + [sym_check_expression] = STATE(1556), + [sym_comparison_expression] = STATE(1556), + [sym_equality_expression] = STATE(1556), + [sym_conjunction_expression] = STATE(1556), + [sym_disjunction_expression] = STATE(1556), + [sym_bitwise_operation] = STATE(1556), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1556), + [sym_await_expression] = STATE(1556), + [sym_ternary_expression] = STATE(1556), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1556), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1556), + [sym_dictionary_literal] = STATE(1556), + [sym__special_literal] = STATE(1556), + [sym__playground_literal] = STATE(1556), + [sym_lambda_literal] = STATE(1556), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1556), + [sym_key_path_expression] = STATE(1556), + [sym_key_path_string_expression] = STATE(1556), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1556), + [sym__comparison_operator] = STATE(1556), + [sym__additive_operator] = STATE(1556), + [sym__multiplicative_operator] = STATE(1556), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1556), + [sym__referenceable_operator] = STATE(1556), + [sym__eq_eq] = STATE(1556), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4223), + [sym_real_literal] = ACTIONS(4225), + [sym_integer_literal] = ACTIONS(4223), + [sym_hex_literal] = ACTIONS(4225), + [sym_oct_literal] = ACTIONS(4225), + [sym_bin_literal] = ACTIONS(4225), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4223), + [anon_sym_GT] = ACTIONS(4223), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4223), + [anon_sym_POUNDfileID] = ACTIONS(4225), + [anon_sym_POUNDfilePath] = ACTIONS(4225), + [anon_sym_POUNDline] = ACTIONS(4225), + [anon_sym_POUNDcolumn] = ACTIONS(4225), + [anon_sym_POUNDfunction] = ACTIONS(4225), + [anon_sym_POUNDdsohandle] = ACTIONS(4225), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4223), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4223), + [anon_sym_LT_EQ] = ACTIONS(4223), + [anon_sym_GT_EQ] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4223), + [anon_sym_SLASH] = ACTIONS(4223), + [anon_sym_PERCENT] = ACTIONS(4223), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4225), + [sym__plus_then_ws] = ACTIONS(4225), + [sym__minus_then_ws] = ACTIONS(4225), + [sym_bang] = ACTIONS(1069), + }, + [1025] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2006), + [sym_boolean_literal] = STATE(2006), + [sym__string_literal] = STATE(2006), + [sym_line_string_literal] = STATE(2006), + [sym_multi_line_string_literal] = STATE(2006), + [sym_raw_string_literal] = STATE(2006), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2006), + [sym__unary_expression] = STATE(2006), + [sym_postfix_expression] = STATE(2006), + [sym_constructor_expression] = STATE(2006), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2006), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2006), + [sym_prefix_expression] = STATE(2006), + [sym_as_expression] = STATE(2006), + [sym_selector_expression] = STATE(2006), + [sym__binary_expression] = STATE(2006), + [sym_multiplicative_expression] = STATE(2006), + [sym_additive_expression] = STATE(2006), + [sym_range_expression] = STATE(2006), + [sym_infix_expression] = STATE(2006), + [sym_nil_coalescing_expression] = STATE(2006), + [sym_check_expression] = STATE(2006), + [sym_comparison_expression] = STATE(2006), + [sym_equality_expression] = STATE(2006), + [sym_conjunction_expression] = STATE(2006), + [sym_disjunction_expression] = STATE(2006), + [sym_bitwise_operation] = STATE(2006), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2006), + [sym_await_expression] = STATE(2006), + [sym_ternary_expression] = STATE(2006), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2006), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2006), + [sym_dictionary_literal] = STATE(2006), + [sym__special_literal] = STATE(2006), + [sym__playground_literal] = STATE(2006), + [sym_lambda_literal] = STATE(2006), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2006), + [sym_key_path_expression] = STATE(2006), + [sym_key_path_string_expression] = STATE(2006), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2006), + [sym__comparison_operator] = STATE(2006), + [sym__additive_operator] = STATE(2006), + [sym__multiplicative_operator] = STATE(2006), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2006), + [sym__referenceable_operator] = STATE(2006), + [sym__eq_eq] = STATE(2006), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4227), + [sym_real_literal] = ACTIONS(4229), + [sym_integer_literal] = ACTIONS(4227), + [sym_hex_literal] = ACTIONS(4229), + [sym_oct_literal] = ACTIONS(4229), + [sym_bin_literal] = ACTIONS(4229), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4227), + [anon_sym_GT] = ACTIONS(4227), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4227), + [anon_sym_POUNDfileID] = ACTIONS(4229), + [anon_sym_POUNDfilePath] = ACTIONS(4229), + [anon_sym_POUNDline] = ACTIONS(4229), + [anon_sym_POUNDcolumn] = ACTIONS(4229), + [anon_sym_POUNDfunction] = ACTIONS(4229), + [anon_sym_POUNDdsohandle] = ACTIONS(4229), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4227), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4227), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4227), + [anon_sym_LT_EQ] = ACTIONS(4227), + [anon_sym_GT_EQ] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4227), + [anon_sym_SLASH] = ACTIONS(4227), + [anon_sym_PERCENT] = ACTIONS(4227), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4229), + [sym__plus_then_ws] = ACTIONS(4229), + [sym__minus_then_ws] = ACTIONS(4229), + [sym_bang] = ACTIONS(1069), + }, + [1026] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2007), + [sym_boolean_literal] = STATE(2007), + [sym__string_literal] = STATE(2007), + [sym_line_string_literal] = STATE(2007), + [sym_multi_line_string_literal] = STATE(2007), + [sym_raw_string_literal] = STATE(2007), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2007), + [sym__unary_expression] = STATE(2007), + [sym_postfix_expression] = STATE(2007), + [sym_constructor_expression] = STATE(2007), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2007), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2007), + [sym_prefix_expression] = STATE(2007), + [sym_as_expression] = STATE(2007), + [sym_selector_expression] = STATE(2007), + [sym__binary_expression] = STATE(2007), + [sym_multiplicative_expression] = STATE(2007), + [sym_additive_expression] = STATE(2007), + [sym_range_expression] = STATE(2007), + [sym_infix_expression] = STATE(2007), + [sym_nil_coalescing_expression] = STATE(2007), + [sym_check_expression] = STATE(2007), + [sym_comparison_expression] = STATE(2007), + [sym_equality_expression] = STATE(2007), + [sym_conjunction_expression] = STATE(2007), + [sym_disjunction_expression] = STATE(2007), + [sym_bitwise_operation] = STATE(2007), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2007), + [sym_await_expression] = STATE(2007), + [sym_ternary_expression] = STATE(2007), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2007), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2007), + [sym_dictionary_literal] = STATE(2007), + [sym__special_literal] = STATE(2007), + [sym__playground_literal] = STATE(2007), + [sym_lambda_literal] = STATE(2007), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2007), + [sym_key_path_expression] = STATE(2007), + [sym_key_path_string_expression] = STATE(2007), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2007), + [sym__comparison_operator] = STATE(2007), + [sym__additive_operator] = STATE(2007), + [sym__multiplicative_operator] = STATE(2007), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2007), + [sym__referenceable_operator] = STATE(2007), + [sym__eq_eq] = STATE(2007), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4231), + [sym_real_literal] = ACTIONS(4233), + [sym_integer_literal] = ACTIONS(4231), + [sym_hex_literal] = ACTIONS(4233), + [sym_oct_literal] = ACTIONS(4233), + [sym_bin_literal] = ACTIONS(4233), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4231), + [anon_sym_GT] = ACTIONS(4231), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4231), + [anon_sym_POUNDfileID] = ACTIONS(4233), + [anon_sym_POUNDfilePath] = ACTIONS(4233), + [anon_sym_POUNDline] = ACTIONS(4233), + [anon_sym_POUNDcolumn] = ACTIONS(4233), + [anon_sym_POUNDfunction] = ACTIONS(4233), + [anon_sym_POUNDdsohandle] = ACTIONS(4233), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4231), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4231), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4231), + [anon_sym_LT_EQ] = ACTIONS(4231), + [anon_sym_GT_EQ] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4231), + [anon_sym_SLASH] = ACTIONS(4231), + [anon_sym_PERCENT] = ACTIONS(4231), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4233), + [sym__plus_then_ws] = ACTIONS(4233), + [sym__minus_then_ws] = ACTIONS(4233), + [sym_bang] = ACTIONS(1069), + }, + [1027] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1614), + [sym_boolean_literal] = STATE(1614), + [sym__string_literal] = STATE(1614), + [sym_line_string_literal] = STATE(1614), + [sym_multi_line_string_literal] = STATE(1614), + [sym_raw_string_literal] = STATE(1614), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1614), + [sym__unary_expression] = STATE(1614), + [sym_postfix_expression] = STATE(1614), + [sym_constructor_expression] = STATE(1614), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1614), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1614), + [sym_prefix_expression] = STATE(1614), + [sym_as_expression] = STATE(1614), + [sym_selector_expression] = STATE(1614), + [sym__binary_expression] = STATE(1614), + [sym_multiplicative_expression] = STATE(1614), + [sym_additive_expression] = STATE(1614), + [sym_range_expression] = STATE(1614), + [sym_infix_expression] = STATE(1614), + [sym_nil_coalescing_expression] = STATE(1614), + [sym_check_expression] = STATE(1614), + [sym_comparison_expression] = STATE(1614), + [sym_equality_expression] = STATE(1614), + [sym_conjunction_expression] = STATE(1614), + [sym_disjunction_expression] = STATE(1614), + [sym_bitwise_operation] = STATE(1614), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1614), + [sym_await_expression] = STATE(1614), + [sym_ternary_expression] = STATE(1614), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1614), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1614), + [sym_dictionary_literal] = STATE(1614), + [sym__special_literal] = STATE(1614), + [sym__playground_literal] = STATE(1614), + [sym_lambda_literal] = STATE(1614), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1614), + [sym_key_path_expression] = STATE(1614), + [sym_key_path_string_expression] = STATE(1614), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1614), + [sym__comparison_operator] = STATE(1614), + [sym__additive_operator] = STATE(1614), + [sym__multiplicative_operator] = STATE(1614), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1614), + [sym__referenceable_operator] = STATE(1614), + [sym__eq_eq] = STATE(1614), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4235), + [sym_real_literal] = ACTIONS(4237), + [sym_integer_literal] = ACTIONS(4235), + [sym_hex_literal] = ACTIONS(4237), + [sym_oct_literal] = ACTIONS(4237), + [sym_bin_literal] = ACTIONS(4237), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4235), + [anon_sym_GT] = ACTIONS(4235), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4235), + [anon_sym_POUNDfileID] = ACTIONS(4237), + [anon_sym_POUNDfilePath] = ACTIONS(4237), + [anon_sym_POUNDline] = ACTIONS(4237), + [anon_sym_POUNDcolumn] = ACTIONS(4237), + [anon_sym_POUNDfunction] = ACTIONS(4237), + [anon_sym_POUNDdsohandle] = ACTIONS(4237), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4235), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4235), + [anon_sym_LT_EQ] = ACTIONS(4235), + [anon_sym_GT_EQ] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4235), + [anon_sym_SLASH] = ACTIONS(4235), + [anon_sym_PERCENT] = ACTIONS(4235), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4237), + [sym__plus_then_ws] = ACTIONS(4237), + [sym__minus_then_ws] = ACTIONS(4237), + [sym_bang] = ACTIONS(1069), + }, + [1028] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2009), + [sym_boolean_literal] = STATE(2009), + [sym__string_literal] = STATE(2009), + [sym_line_string_literal] = STATE(2009), + [sym_multi_line_string_literal] = STATE(2009), + [sym_raw_string_literal] = STATE(2009), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2009), + [sym__unary_expression] = STATE(2009), + [sym_postfix_expression] = STATE(2009), + [sym_constructor_expression] = STATE(2009), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2009), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2009), + [sym_prefix_expression] = STATE(2009), + [sym_as_expression] = STATE(2009), + [sym_selector_expression] = STATE(2009), + [sym__binary_expression] = STATE(2009), + [sym_multiplicative_expression] = STATE(2009), + [sym_additive_expression] = STATE(2009), + [sym_range_expression] = STATE(2009), + [sym_infix_expression] = STATE(2009), + [sym_nil_coalescing_expression] = STATE(2009), + [sym_check_expression] = STATE(2009), + [sym_comparison_expression] = STATE(2009), + [sym_equality_expression] = STATE(2009), + [sym_conjunction_expression] = STATE(2009), + [sym_disjunction_expression] = STATE(2009), + [sym_bitwise_operation] = STATE(2009), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2009), + [sym_await_expression] = STATE(2009), + [sym_ternary_expression] = STATE(2009), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2009), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2009), + [sym_dictionary_literal] = STATE(2009), + [sym__special_literal] = STATE(2009), + [sym__playground_literal] = STATE(2009), + [sym_lambda_literal] = STATE(2009), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2009), + [sym_key_path_expression] = STATE(2009), + [sym_key_path_string_expression] = STATE(2009), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2009), + [sym__comparison_operator] = STATE(2009), + [sym__additive_operator] = STATE(2009), + [sym__multiplicative_operator] = STATE(2009), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2009), + [sym__referenceable_operator] = STATE(2009), + [sym__eq_eq] = STATE(2009), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4239), + [sym_real_literal] = ACTIONS(4241), + [sym_integer_literal] = ACTIONS(4239), + [sym_hex_literal] = ACTIONS(4241), + [sym_oct_literal] = ACTIONS(4241), + [sym_bin_literal] = ACTIONS(4241), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4239), + [anon_sym_GT] = ACTIONS(4239), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4239), + [anon_sym_POUNDfileID] = ACTIONS(4241), + [anon_sym_POUNDfilePath] = ACTIONS(4241), + [anon_sym_POUNDline] = ACTIONS(4241), + [anon_sym_POUNDcolumn] = ACTIONS(4241), + [anon_sym_POUNDfunction] = ACTIONS(4241), + [anon_sym_POUNDdsohandle] = ACTIONS(4241), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4239), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4239), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4239), + [anon_sym_LT_EQ] = ACTIONS(4239), + [anon_sym_GT_EQ] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4239), + [anon_sym_SLASH] = ACTIONS(4239), + [anon_sym_PERCENT] = ACTIONS(4239), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4241), + [sym__plus_then_ws] = ACTIONS(4241), + [sym__minus_then_ws] = ACTIONS(4241), + [sym_bang] = ACTIONS(1069), + }, + [1029] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2010), + [sym_boolean_literal] = STATE(2010), + [sym__string_literal] = STATE(2010), + [sym_line_string_literal] = STATE(2010), + [sym_multi_line_string_literal] = STATE(2010), + [sym_raw_string_literal] = STATE(2010), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2010), + [sym__unary_expression] = STATE(2010), + [sym_postfix_expression] = STATE(2010), + [sym_constructor_expression] = STATE(2010), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2010), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2010), + [sym_prefix_expression] = STATE(2010), + [sym_as_expression] = STATE(2010), + [sym_selector_expression] = STATE(2010), + [sym__binary_expression] = STATE(2010), + [sym_multiplicative_expression] = STATE(2010), + [sym_additive_expression] = STATE(2010), + [sym_range_expression] = STATE(2010), + [sym_infix_expression] = STATE(2010), + [sym_nil_coalescing_expression] = STATE(2010), + [sym_check_expression] = STATE(2010), + [sym_comparison_expression] = STATE(2010), + [sym_equality_expression] = STATE(2010), + [sym_conjunction_expression] = STATE(2010), + [sym_disjunction_expression] = STATE(2010), + [sym_bitwise_operation] = STATE(2010), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2010), + [sym_await_expression] = STATE(2010), + [sym_ternary_expression] = STATE(2010), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2010), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2010), + [sym_dictionary_literal] = STATE(2010), + [sym__special_literal] = STATE(2010), + [sym__playground_literal] = STATE(2010), + [sym_lambda_literal] = STATE(2010), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2010), + [sym_key_path_expression] = STATE(2010), + [sym_key_path_string_expression] = STATE(2010), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2010), + [sym__comparison_operator] = STATE(2010), + [sym__additive_operator] = STATE(2010), + [sym__multiplicative_operator] = STATE(2010), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2010), + [sym__referenceable_operator] = STATE(2010), + [sym__eq_eq] = STATE(2010), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4243), + [sym_real_literal] = ACTIONS(4245), + [sym_integer_literal] = ACTIONS(4243), + [sym_hex_literal] = ACTIONS(4245), + [sym_oct_literal] = ACTIONS(4245), + [sym_bin_literal] = ACTIONS(4245), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4243), + [anon_sym_GT] = ACTIONS(4243), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4243), + [anon_sym_POUNDfileID] = ACTIONS(4245), + [anon_sym_POUNDfilePath] = ACTIONS(4245), + [anon_sym_POUNDline] = ACTIONS(4245), + [anon_sym_POUNDcolumn] = ACTIONS(4245), + [anon_sym_POUNDfunction] = ACTIONS(4245), + [anon_sym_POUNDdsohandle] = ACTIONS(4245), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4243), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4243), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4243), + [anon_sym_LT_EQ] = ACTIONS(4243), + [anon_sym_GT_EQ] = ACTIONS(4243), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4243), + [anon_sym_SLASH] = ACTIONS(4243), + [anon_sym_PERCENT] = ACTIONS(4243), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4245), + [sym__plus_then_ws] = ACTIONS(4245), + [sym__minus_then_ws] = ACTIONS(4245), + [sym_bang] = ACTIONS(1069), + }, + [1030] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1118), + [sym_boolean_literal] = STATE(1118), + [sym__string_literal] = STATE(1118), + [sym_line_string_literal] = STATE(1118), + [sym_multi_line_string_literal] = STATE(1118), + [sym_raw_string_literal] = STATE(1118), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1118), + [sym__unary_expression] = STATE(1118), + [sym_postfix_expression] = STATE(1118), + [sym_constructor_expression] = STATE(1118), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1118), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1118), + [sym_prefix_expression] = STATE(1118), + [sym_as_expression] = STATE(1118), + [sym_selector_expression] = STATE(1118), + [sym__binary_expression] = STATE(1118), + [sym_multiplicative_expression] = STATE(1118), + [sym_additive_expression] = STATE(1118), + [sym_range_expression] = STATE(1118), + [sym_infix_expression] = STATE(1118), + [sym_nil_coalescing_expression] = STATE(1118), + [sym_check_expression] = STATE(1118), + [sym_comparison_expression] = STATE(1118), + [sym_equality_expression] = STATE(1118), + [sym_conjunction_expression] = STATE(1118), + [sym_disjunction_expression] = STATE(1118), + [sym_bitwise_operation] = STATE(1118), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1118), + [sym_await_expression] = STATE(1118), + [sym_ternary_expression] = STATE(1118), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1118), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1118), + [sym_dictionary_literal] = STATE(1118), + [sym__special_literal] = STATE(1118), + [sym__playground_literal] = STATE(1118), + [sym_lambda_literal] = STATE(1118), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1118), + [sym_key_path_expression] = STATE(1118), + [sym_key_path_string_expression] = STATE(1118), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1118), + [sym__comparison_operator] = STATE(1118), + [sym__additive_operator] = STATE(1118), + [sym__multiplicative_operator] = STATE(1118), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1118), + [sym__referenceable_operator] = STATE(1118), + [sym__eq_eq] = STATE(1118), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(4247), + [sym_real_literal] = ACTIONS(4249), + [sym_integer_literal] = ACTIONS(4247), + [sym_hex_literal] = ACTIONS(4249), + [sym_oct_literal] = ACTIONS(4249), + [sym_bin_literal] = ACTIONS(4249), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(4247), + [anon_sym_GT] = ACTIONS(4247), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(4247), + [anon_sym_POUNDfileID] = ACTIONS(4249), + [anon_sym_POUNDfilePath] = ACTIONS(4249), + [anon_sym_POUNDline] = ACTIONS(4249), + [anon_sym_POUNDcolumn] = ACTIONS(4249), + [anon_sym_POUNDfunction] = ACTIONS(4249), + [anon_sym_POUNDdsohandle] = ACTIONS(4249), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(4247), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4247), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4247), + [anon_sym_LT_EQ] = ACTIONS(4247), + [anon_sym_GT_EQ] = ACTIONS(4247), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_SLASH] = ACTIONS(4247), + [anon_sym_PERCENT] = ACTIONS(4247), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(4249), + [sym__plus_then_ws] = ACTIONS(4249), + [sym__minus_then_ws] = ACTIONS(4249), + [sym_bang] = ACTIONS(1501), + }, + [1031] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2046), + [sym_boolean_literal] = STATE(2046), + [sym__string_literal] = STATE(2046), + [sym_line_string_literal] = STATE(2046), + [sym_multi_line_string_literal] = STATE(2046), + [sym_raw_string_literal] = STATE(2046), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2046), + [sym__unary_expression] = STATE(2046), + [sym_postfix_expression] = STATE(2046), + [sym_constructor_expression] = STATE(2046), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2046), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2046), + [sym_prefix_expression] = STATE(2046), + [sym_as_expression] = STATE(2046), + [sym_selector_expression] = STATE(2046), + [sym__binary_expression] = STATE(2046), + [sym_multiplicative_expression] = STATE(2046), + [sym_additive_expression] = STATE(2046), + [sym_range_expression] = STATE(2046), + [sym_infix_expression] = STATE(2046), + [sym_nil_coalescing_expression] = STATE(2046), + [sym_check_expression] = STATE(2046), + [sym_comparison_expression] = STATE(2046), + [sym_equality_expression] = STATE(2046), + [sym_conjunction_expression] = STATE(2046), + [sym_disjunction_expression] = STATE(2046), + [sym_bitwise_operation] = STATE(2046), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2046), + [sym_await_expression] = STATE(2046), + [sym_ternary_expression] = STATE(2046), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2046), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2046), + [sym_dictionary_literal] = STATE(2046), + [sym__special_literal] = STATE(2046), + [sym__playground_literal] = STATE(2046), + [sym_lambda_literal] = STATE(2046), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2046), + [sym_key_path_expression] = STATE(2046), + [sym_key_path_string_expression] = STATE(2046), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2046), + [sym__comparison_operator] = STATE(2046), + [sym__additive_operator] = STATE(2046), + [sym__multiplicative_operator] = STATE(2046), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2046), + [sym__referenceable_operator] = STATE(2046), + [sym__eq_eq] = STATE(2046), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4251), + [sym_real_literal] = ACTIONS(4253), + [sym_integer_literal] = ACTIONS(4251), + [sym_hex_literal] = ACTIONS(4253), + [sym_oct_literal] = ACTIONS(4253), + [sym_bin_literal] = ACTIONS(4253), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4251), + [anon_sym_GT] = ACTIONS(4251), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4251), + [anon_sym_POUNDfileID] = ACTIONS(4253), + [anon_sym_POUNDfilePath] = ACTIONS(4253), + [anon_sym_POUNDline] = ACTIONS(4253), + [anon_sym_POUNDcolumn] = ACTIONS(4253), + [anon_sym_POUNDfunction] = ACTIONS(4253), + [anon_sym_POUNDdsohandle] = ACTIONS(4253), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4251), + [anon_sym_LT_EQ] = ACTIONS(4251), + [anon_sym_GT_EQ] = ACTIONS(4251), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4251), + [anon_sym_SLASH] = ACTIONS(4251), + [anon_sym_PERCENT] = ACTIONS(4251), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4253), + [sym__plus_then_ws] = ACTIONS(4253), + [sym__minus_then_ws] = ACTIONS(4253), + [sym_bang] = ACTIONS(1069), + }, + [1032] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1111), + [sym_boolean_literal] = STATE(1111), + [sym__string_literal] = STATE(1111), + [sym_line_string_literal] = STATE(1111), + [sym_multi_line_string_literal] = STATE(1111), + [sym_raw_string_literal] = STATE(1111), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1111), + [sym__unary_expression] = STATE(1111), + [sym_postfix_expression] = STATE(1111), + [sym_constructor_expression] = STATE(1111), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1111), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1111), + [sym_prefix_expression] = STATE(1111), + [sym_as_expression] = STATE(1111), + [sym_selector_expression] = STATE(1111), + [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(1100), + [sym_try_expression] = STATE(1111), + [sym_await_expression] = STATE(1111), + [sym_ternary_expression] = STATE(1111), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1111), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1111), + [sym_dictionary_literal] = STATE(1111), + [sym__special_literal] = STATE(1111), + [sym__playground_literal] = STATE(1111), + [sym_lambda_literal] = STATE(1111), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1111), + [sym_key_path_expression] = STATE(1111), + [sym_key_path_string_expression] = STATE(1111), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1111), + [sym__comparison_operator] = STATE(1111), + [sym__additive_operator] = STATE(1111), + [sym__multiplicative_operator] = STATE(1111), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1111), + [sym__referenceable_operator] = STATE(1111), + [sym__eq_eq] = STATE(1111), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(4255), + [sym_real_literal] = ACTIONS(4257), + [sym_integer_literal] = ACTIONS(4255), + [sym_hex_literal] = ACTIONS(4257), + [sym_oct_literal] = ACTIONS(4257), + [sym_bin_literal] = ACTIONS(4257), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(4255), + [anon_sym_GT] = ACTIONS(4255), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(4255), + [anon_sym_POUNDfileID] = ACTIONS(4257), + [anon_sym_POUNDfilePath] = ACTIONS(4257), + [anon_sym_POUNDline] = ACTIONS(4257), + [anon_sym_POUNDcolumn] = ACTIONS(4257), + [anon_sym_POUNDfunction] = ACTIONS(4257), + [anon_sym_POUNDdsohandle] = ACTIONS(4257), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(4255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4255), + [anon_sym_LT_EQ] = ACTIONS(4255), + [anon_sym_GT_EQ] = ACTIONS(4255), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(4255), + [anon_sym_SLASH] = ACTIONS(4255), + [anon_sym_PERCENT] = ACTIONS(4255), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(4257), + [sym__plus_then_ws] = ACTIONS(4257), + [sym__minus_then_ws] = ACTIONS(4257), + [sym_bang] = ACTIONS(1501), + }, + [1033] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1163), + [sym__unary_expression] = STATE(1163), + [sym_postfix_expression] = STATE(1163), + [sym_constructor_expression] = STATE(1163), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1163), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1163), + [sym_await_expression] = STATE(1163), + [sym_ternary_expression] = STATE(1163), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1163), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1163), + [sym_key_path_expression] = STATE(1163), + [sym_key_path_string_expression] = STATE(1163), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1163), + [sym__comparison_operator] = STATE(1163), + [sym__additive_operator] = STATE(1163), + [sym__multiplicative_operator] = STATE(1163), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1163), + [sym__referenceable_operator] = STATE(1163), + [sym__eq_eq] = STATE(1163), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(4259), + [sym_real_literal] = ACTIONS(4261), + [sym_integer_literal] = ACTIONS(4259), + [sym_hex_literal] = ACTIONS(4261), + [sym_oct_literal] = ACTIONS(4261), + [sym_bin_literal] = ACTIONS(4261), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(4259), + [anon_sym_GT] = ACTIONS(4259), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(4259), + [anon_sym_POUNDfileID] = ACTIONS(4261), + [anon_sym_POUNDfilePath] = ACTIONS(4261), + [anon_sym_POUNDline] = ACTIONS(4261), + [anon_sym_POUNDcolumn] = ACTIONS(4261), + [anon_sym_POUNDfunction] = ACTIONS(4261), + [anon_sym_POUNDdsohandle] = ACTIONS(4261), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(4259), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4259), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4259), + [anon_sym_LT_EQ] = ACTIONS(4259), + [anon_sym_GT_EQ] = ACTIONS(4259), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(4259), + [anon_sym_SLASH] = ACTIONS(4259), + [anon_sym_PERCENT] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(4261), + [sym__plus_then_ws] = ACTIONS(4261), + [sym__minus_then_ws] = ACTIONS(4261), + [sym_bang] = ACTIONS(481), + }, + [1034] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1168), + [sym__unary_expression] = STATE(1168), + [sym_postfix_expression] = STATE(1168), + [sym_constructor_expression] = STATE(1168), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1168), + [sym__range_operator] = STATE(1037), + [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(1449), + [sym_multiplicative_expression] = STATE(1449), + [sym_additive_expression] = STATE(1449), + [sym_range_expression] = STATE(1449), + [sym_infix_expression] = STATE(1449), + [sym_nil_coalescing_expression] = STATE(1449), + [sym_check_expression] = STATE(1449), + [sym_comparison_expression] = STATE(1449), + [sym_equality_expression] = STATE(1449), + [sym_conjunction_expression] = STATE(1449), + [sym_disjunction_expression] = STATE(1449), + [sym_bitwise_operation] = STATE(1449), + [sym_custom_operator] = STATE(1134), + [sym_try_expression] = STATE(1168), + [sym_await_expression] = STATE(1168), + [sym_ternary_expression] = STATE(1441), + [sym_call_expression] = STATE(1365), + [sym__primary_expression] = STATE(1168), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1168), + [sym_key_path_expression] = STATE(1168), + [sym_key_path_string_expression] = STATE(1168), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1168), + [sym__comparison_operator] = STATE(1168), + [sym__additive_operator] = STATE(1168), + [sym__multiplicative_operator] = STATE(1168), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1168), + [sym__referenceable_operator] = STATE(1168), + [sym__eq_eq] = STATE(1168), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(4263), + [sym_real_literal] = ACTIONS(4265), + [sym_integer_literal] = ACTIONS(4263), + [sym_hex_literal] = ACTIONS(4265), + [sym_oct_literal] = ACTIONS(4265), + [sym_bin_literal] = ACTIONS(4265), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(4263), + [anon_sym_GT] = ACTIONS(4263), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(4263), + [anon_sym_POUNDfileID] = ACTIONS(4265), + [anon_sym_POUNDfilePath] = ACTIONS(4265), + [anon_sym_POUNDline] = ACTIONS(4265), + [anon_sym_POUNDcolumn] = ACTIONS(4265), + [anon_sym_POUNDfunction] = ACTIONS(4265), + [anon_sym_POUNDdsohandle] = ACTIONS(4265), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(4263), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4263), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4263), + [anon_sym_LT_EQ] = ACTIONS(4263), + [anon_sym_GT_EQ] = ACTIONS(4263), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(4263), + [anon_sym_SLASH] = ACTIONS(4263), + [anon_sym_PERCENT] = ACTIONS(4263), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(4265), + [sym__plus_then_ws] = ACTIONS(4265), + [sym__minus_then_ws] = ACTIONS(4265), + [sym_bang] = ACTIONS(481), + }, + [1035] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2043), + [sym_boolean_literal] = STATE(2043), + [sym__string_literal] = STATE(2043), + [sym_line_string_literal] = STATE(2043), + [sym_multi_line_string_literal] = STATE(2043), + [sym_raw_string_literal] = STATE(2043), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2043), + [sym__unary_expression] = STATE(2043), + [sym_postfix_expression] = STATE(2043), + [sym_constructor_expression] = STATE(2043), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2043), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2043), + [sym_prefix_expression] = STATE(2043), + [sym_as_expression] = STATE(2043), + [sym_selector_expression] = STATE(2043), + [sym__binary_expression] = STATE(2043), + [sym_multiplicative_expression] = STATE(2043), + [sym_additive_expression] = STATE(2043), + [sym_range_expression] = STATE(2043), + [sym_infix_expression] = STATE(2043), + [sym_nil_coalescing_expression] = STATE(2043), + [sym_check_expression] = STATE(2043), + [sym_comparison_expression] = STATE(2043), + [sym_equality_expression] = STATE(2043), + [sym_conjunction_expression] = STATE(2043), + [sym_disjunction_expression] = STATE(2043), + [sym_bitwise_operation] = STATE(2043), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2043), + [sym_await_expression] = STATE(2043), + [sym_ternary_expression] = STATE(2043), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2043), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2043), + [sym_dictionary_literal] = STATE(2043), + [sym__special_literal] = STATE(2043), + [sym__playground_literal] = STATE(2043), + [sym_lambda_literal] = STATE(2043), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2043), + [sym_key_path_expression] = STATE(2043), + [sym_key_path_string_expression] = STATE(2043), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2043), + [sym__comparison_operator] = STATE(2043), + [sym__additive_operator] = STATE(2043), + [sym__multiplicative_operator] = STATE(2043), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2043), + [sym__referenceable_operator] = STATE(2043), + [sym__eq_eq] = STATE(2043), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4267), + [sym_real_literal] = ACTIONS(4269), + [sym_integer_literal] = ACTIONS(4267), + [sym_hex_literal] = ACTIONS(4269), + [sym_oct_literal] = ACTIONS(4269), + [sym_bin_literal] = ACTIONS(4269), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(4267), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4267), + [anon_sym_POUNDfileID] = ACTIONS(4269), + [anon_sym_POUNDfilePath] = ACTIONS(4269), + [anon_sym_POUNDline] = ACTIONS(4269), + [anon_sym_POUNDcolumn] = ACTIONS(4269), + [anon_sym_POUNDfunction] = ACTIONS(4269), + [anon_sym_POUNDdsohandle] = ACTIONS(4269), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4267), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4267), + [anon_sym_LT_EQ] = ACTIONS(4267), + [anon_sym_GT_EQ] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4267), + [anon_sym_SLASH] = ACTIONS(4267), + [anon_sym_PERCENT] = ACTIONS(4267), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4269), + [sym__plus_then_ws] = ACTIONS(4269), + [sym__minus_then_ws] = ACTIONS(4269), + [sym_bang] = ACTIONS(1069), + }, + [1036] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1666), + [sym_boolean_literal] = STATE(1666), + [sym__string_literal] = STATE(1666), + [sym_line_string_literal] = STATE(1666), + [sym_multi_line_string_literal] = STATE(1666), + [sym_raw_string_literal] = STATE(1666), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1666), + [sym__unary_expression] = STATE(1666), + [sym_postfix_expression] = STATE(1666), + [sym_constructor_expression] = STATE(1666), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1666), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1666), + [sym_prefix_expression] = STATE(1666), + [sym_as_expression] = STATE(1666), + [sym_selector_expression] = STATE(1666), + [sym__binary_expression] = STATE(1666), + [sym_multiplicative_expression] = STATE(1666), + [sym_additive_expression] = STATE(1666), + [sym_range_expression] = STATE(1666), + [sym_infix_expression] = STATE(1666), + [sym_nil_coalescing_expression] = STATE(1666), + [sym_check_expression] = STATE(1666), + [sym_comparison_expression] = STATE(1666), + [sym_equality_expression] = STATE(1666), + [sym_conjunction_expression] = STATE(1666), + [sym_disjunction_expression] = STATE(1666), + [sym_bitwise_operation] = STATE(1666), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1666), + [sym_await_expression] = STATE(1666), + [sym_ternary_expression] = STATE(1666), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1666), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1666), + [sym_dictionary_literal] = STATE(1666), + [sym__special_literal] = STATE(1666), + [sym__playground_literal] = STATE(1666), + [sym_lambda_literal] = STATE(1666), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1666), + [sym_key_path_expression] = STATE(1666), + [sym_key_path_string_expression] = STATE(1666), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1666), + [sym__comparison_operator] = STATE(1666), + [sym__additive_operator] = STATE(1666), + [sym__multiplicative_operator] = STATE(1666), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1666), + [sym__referenceable_operator] = STATE(1666), + [sym__eq_eq] = STATE(1666), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4271), + [sym_real_literal] = ACTIONS(4273), + [sym_integer_literal] = ACTIONS(4271), + [sym_hex_literal] = ACTIONS(4273), + [sym_oct_literal] = ACTIONS(4273), + [sym_bin_literal] = ACTIONS(4273), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4271), + [anon_sym_GT] = ACTIONS(4271), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4271), + [anon_sym_POUNDfileID] = ACTIONS(4273), + [anon_sym_POUNDfilePath] = ACTIONS(4273), + [anon_sym_POUNDline] = ACTIONS(4273), + [anon_sym_POUNDcolumn] = ACTIONS(4273), + [anon_sym_POUNDfunction] = ACTIONS(4273), + [anon_sym_POUNDdsohandle] = ACTIONS(4273), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4271), + [anon_sym_LT_EQ] = ACTIONS(4271), + [anon_sym_GT_EQ] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4271), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4273), + [sym__plus_then_ws] = ACTIONS(4273), + [sym__minus_then_ws] = ACTIONS(4273), + [sym_bang] = ACTIONS(1069), + }, + [1037] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1172), + [sym__unary_expression] = STATE(1172), + [sym_postfix_expression] = STATE(1172), + [sym_constructor_expression] = STATE(1172), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1172), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1172), + [sym_await_expression] = STATE(1172), + [sym_ternary_expression] = STATE(1172), + [sym_call_expression] = STATE(1380), + [sym__primary_expression] = STATE(1172), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1172), + [sym_key_path_expression] = STATE(1172), + [sym_key_path_string_expression] = STATE(1172), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1172), + [sym__comparison_operator] = STATE(1172), + [sym__additive_operator] = STATE(1172), + [sym__multiplicative_operator] = STATE(1172), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1172), + [sym__referenceable_operator] = STATE(1172), + [sym__eq_eq] = STATE(1172), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(4275), + [sym_real_literal] = ACTIONS(4277), + [sym_integer_literal] = ACTIONS(4275), + [sym_hex_literal] = ACTIONS(4277), + [sym_oct_literal] = ACTIONS(4277), + [sym_bin_literal] = ACTIONS(4277), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(4275), + [anon_sym_GT] = ACTIONS(4275), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(4275), + [anon_sym_POUNDfileID] = ACTIONS(4277), + [anon_sym_POUNDfilePath] = ACTIONS(4277), + [anon_sym_POUNDline] = ACTIONS(4277), + [anon_sym_POUNDcolumn] = ACTIONS(4277), + [anon_sym_POUNDfunction] = ACTIONS(4277), + [anon_sym_POUNDdsohandle] = ACTIONS(4277), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(4275), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4275), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4275), + [anon_sym_LT_EQ] = ACTIONS(4275), + [anon_sym_GT_EQ] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(4275), + [anon_sym_SLASH] = ACTIONS(4275), + [anon_sym_PERCENT] = ACTIONS(4275), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(4277), + [sym__plus_then_ws] = ACTIONS(4277), + [sym__minus_then_ws] = ACTIONS(4277), + [sym_bang] = ACTIONS(481), + }, + [1038] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1133), + [sym_boolean_literal] = STATE(1133), + [sym__string_literal] = STATE(1133), + [sym_line_string_literal] = STATE(1133), + [sym_multi_line_string_literal] = STATE(1133), + [sym_raw_string_literal] = STATE(1133), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1133), + [sym__unary_expression] = STATE(1133), + [sym_postfix_expression] = STATE(1133), + [sym_constructor_expression] = STATE(1133), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1133), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1133), + [sym_prefix_expression] = STATE(1133), + [sym_as_expression] = STATE(1133), + [sym_selector_expression] = STATE(1133), + [sym__binary_expression] = STATE(1133), + [sym_multiplicative_expression] = STATE(1133), + [sym_additive_expression] = STATE(1133), + [sym_range_expression] = STATE(1133), + [sym_infix_expression] = STATE(1133), + [sym_nil_coalescing_expression] = STATE(1133), + [sym_check_expression] = STATE(1133), + [sym_comparison_expression] = STATE(1133), + [sym_equality_expression] = STATE(1133), + [sym_conjunction_expression] = STATE(1133), + [sym_disjunction_expression] = STATE(1133), + [sym_bitwise_operation] = STATE(1133), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1133), + [sym_await_expression] = STATE(1133), + [sym_ternary_expression] = STATE(1133), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1133), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1133), + [sym_dictionary_literal] = STATE(1133), + [sym__special_literal] = STATE(1133), + [sym__playground_literal] = STATE(1133), + [sym_lambda_literal] = STATE(1133), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1133), + [sym_key_path_expression] = STATE(1133), + [sym_key_path_string_expression] = STATE(1133), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1133), + [sym__comparison_operator] = STATE(1133), + [sym__additive_operator] = STATE(1133), + [sym__multiplicative_operator] = STATE(1133), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1133), + [sym__referenceable_operator] = STATE(1133), + [sym__eq_eq] = STATE(1133), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(4279), + [sym_real_literal] = ACTIONS(4281), + [sym_integer_literal] = ACTIONS(4279), + [sym_hex_literal] = ACTIONS(4281), + [sym_oct_literal] = ACTIONS(4281), + [sym_bin_literal] = ACTIONS(4281), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(4279), + [anon_sym_GT] = ACTIONS(4279), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(4279), + [anon_sym_POUNDfileID] = ACTIONS(4281), + [anon_sym_POUNDfilePath] = ACTIONS(4281), + [anon_sym_POUNDline] = ACTIONS(4281), + [anon_sym_POUNDcolumn] = ACTIONS(4281), + [anon_sym_POUNDfunction] = ACTIONS(4281), + [anon_sym_POUNDdsohandle] = ACTIONS(4281), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(4279), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4279), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4279), + [anon_sym_LT_EQ] = ACTIONS(4279), + [anon_sym_GT_EQ] = ACTIONS(4279), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(4279), + [anon_sym_SLASH] = ACTIONS(4279), + [anon_sym_PERCENT] = ACTIONS(4279), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(4281), + [sym__plus_then_ws] = ACTIONS(4281), + [sym__minus_then_ws] = ACTIONS(4281), + [sym_bang] = ACTIONS(1501), + }, + [1039] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(1625), + [sym_boolean_literal] = STATE(1625), + [sym__string_literal] = STATE(1625), + [sym_line_string_literal] = STATE(1625), + [sym_multi_line_string_literal] = STATE(1625), + [sym_raw_string_literal] = STATE(1625), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(1625), + [sym__unary_expression] = STATE(1625), + [sym_postfix_expression] = STATE(1625), + [sym_constructor_expression] = STATE(1625), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(1625), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(1625), + [sym_prefix_expression] = STATE(1625), + [sym_as_expression] = STATE(1625), + [sym_selector_expression] = STATE(1625), + [sym__binary_expression] = STATE(1625), + [sym_multiplicative_expression] = STATE(1625), + [sym_additive_expression] = STATE(1625), + [sym_range_expression] = STATE(1625), + [sym_infix_expression] = STATE(1625), + [sym_nil_coalescing_expression] = STATE(1625), + [sym_check_expression] = STATE(1625), + [sym_comparison_expression] = STATE(1625), + [sym_equality_expression] = STATE(1625), + [sym_conjunction_expression] = STATE(1625), + [sym_disjunction_expression] = STATE(1625), + [sym_bitwise_operation] = STATE(1625), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(1625), + [sym_await_expression] = STATE(1625), + [sym_ternary_expression] = STATE(1625), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(1625), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(1625), + [sym_dictionary_literal] = STATE(1625), + [sym__special_literal] = STATE(1625), + [sym__playground_literal] = STATE(1625), + [sym_lambda_literal] = STATE(1625), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(1625), + [sym_key_path_expression] = STATE(1625), + [sym_key_path_string_expression] = STATE(1625), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(1625), + [sym__comparison_operator] = STATE(1625), + [sym__additive_operator] = STATE(1625), + [sym__multiplicative_operator] = STATE(1625), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(1625), + [sym__referenceable_operator] = STATE(1625), + [sym__eq_eq] = STATE(1625), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(4283), + [sym_real_literal] = ACTIONS(4285), + [sym_integer_literal] = ACTIONS(4283), + [sym_hex_literal] = ACTIONS(4285), + [sym_oct_literal] = ACTIONS(4285), + [sym_bin_literal] = ACTIONS(4285), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(4283), + [anon_sym_GT] = ACTIONS(4283), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(4283), + [anon_sym_POUNDfileID] = ACTIONS(4285), + [anon_sym_POUNDfilePath] = ACTIONS(4285), + [anon_sym_POUNDline] = ACTIONS(4285), + [anon_sym_POUNDcolumn] = ACTIONS(4285), + [anon_sym_POUNDfunction] = ACTIONS(4285), + [anon_sym_POUNDdsohandle] = ACTIONS(4285), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(4283), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4283), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4283), + [anon_sym_LT_EQ] = ACTIONS(4283), + [anon_sym_GT_EQ] = ACTIONS(4283), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_SLASH] = ACTIONS(4283), + [anon_sym_PERCENT] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(4285), + [sym__plus_then_ws] = ACTIONS(4285), + [sym__minus_then_ws] = ACTIONS(4285), + [sym_bang] = ACTIONS(137), + }, + [1040] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1130), + [sym_boolean_literal] = STATE(1130), + [sym__string_literal] = STATE(1130), + [sym_line_string_literal] = STATE(1130), + [sym_multi_line_string_literal] = STATE(1130), + [sym_raw_string_literal] = STATE(1130), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1130), + [sym__unary_expression] = STATE(1130), + [sym_postfix_expression] = STATE(1130), + [sym_constructor_expression] = STATE(1130), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1130), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1130), + [sym_prefix_expression] = STATE(1130), + [sym_as_expression] = STATE(1130), + [sym_selector_expression] = STATE(1130), + [sym__binary_expression] = STATE(1130), + [sym_multiplicative_expression] = STATE(1130), + [sym_additive_expression] = STATE(1130), + [sym_range_expression] = STATE(1130), + [sym_infix_expression] = STATE(1130), + [sym_nil_coalescing_expression] = STATE(1130), + [sym_check_expression] = STATE(1130), + [sym_comparison_expression] = STATE(1130), + [sym_equality_expression] = STATE(1130), + [sym_conjunction_expression] = STATE(1130), + [sym_disjunction_expression] = STATE(1130), + [sym_bitwise_operation] = STATE(1130), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1130), + [sym_await_expression] = STATE(1130), + [sym_ternary_expression] = STATE(1130), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1130), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1130), + [sym_dictionary_literal] = STATE(1130), + [sym__special_literal] = STATE(1130), + [sym__playground_literal] = STATE(1130), + [sym_lambda_literal] = STATE(1130), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1130), + [sym_key_path_expression] = STATE(1130), + [sym_key_path_string_expression] = STATE(1130), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1130), + [sym__comparison_operator] = STATE(1130), + [sym__additive_operator] = STATE(1130), + [sym__multiplicative_operator] = STATE(1130), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1130), + [sym__referenceable_operator] = STATE(1130), + [sym__eq_eq] = STATE(1130), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(4287), + [sym_real_literal] = ACTIONS(4289), + [sym_integer_literal] = ACTIONS(4287), + [sym_hex_literal] = ACTIONS(4289), + [sym_oct_literal] = ACTIONS(4289), + [sym_bin_literal] = ACTIONS(4289), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(4287), + [anon_sym_GT] = ACTIONS(4287), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(4287), + [anon_sym_POUNDfileID] = ACTIONS(4289), + [anon_sym_POUNDfilePath] = ACTIONS(4289), + [anon_sym_POUNDline] = ACTIONS(4289), + [anon_sym_POUNDcolumn] = ACTIONS(4289), + [anon_sym_POUNDfunction] = ACTIONS(4289), + [anon_sym_POUNDdsohandle] = ACTIONS(4289), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(4287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4287), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4287), + [anon_sym_LT_EQ] = ACTIONS(4287), + [anon_sym_GT_EQ] = ACTIONS(4287), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_SLASH] = ACTIONS(4287), + [anon_sym_PERCENT] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(4289), + [sym__plus_then_ws] = ACTIONS(4289), + [sym__minus_then_ws] = ACTIONS(4289), + [sym_bang] = ACTIONS(1501), + }, + [1041] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(1489), + [sym_boolean_literal] = STATE(1489), + [sym__string_literal] = STATE(1489), + [sym_line_string_literal] = STATE(1489), + [sym_multi_line_string_literal] = STATE(1489), + [sym_raw_string_literal] = STATE(1489), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(1489), + [sym__unary_expression] = STATE(1489), + [sym_postfix_expression] = STATE(1489), + [sym_constructor_expression] = STATE(1489), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(1489), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(1489), + [sym_prefix_expression] = STATE(1489), + [sym_as_expression] = STATE(1489), + [sym_selector_expression] = STATE(1489), + [sym__binary_expression] = STATE(1489), + [sym_multiplicative_expression] = STATE(1489), + [sym_additive_expression] = STATE(1489), + [sym_range_expression] = STATE(1489), + [sym_infix_expression] = STATE(1489), + [sym_nil_coalescing_expression] = STATE(1489), + [sym_check_expression] = STATE(1489), + [sym_comparison_expression] = STATE(1489), + [sym_equality_expression] = STATE(1489), + [sym_conjunction_expression] = STATE(1489), + [sym_disjunction_expression] = STATE(1489), + [sym_bitwise_operation] = STATE(1489), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(1489), + [sym_await_expression] = STATE(1489), + [sym_ternary_expression] = STATE(1489), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(1489), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(1489), + [sym_dictionary_literal] = STATE(1489), + [sym__special_literal] = STATE(1489), + [sym__playground_literal] = STATE(1489), + [sym_lambda_literal] = STATE(1489), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(1489), + [sym_key_path_expression] = STATE(1489), + [sym_key_path_string_expression] = STATE(1489), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(1489), + [sym__comparison_operator] = STATE(1489), + [sym__additive_operator] = STATE(1489), + [sym__multiplicative_operator] = STATE(1489), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(1489), + [sym__referenceable_operator] = STATE(1489), + [sym__eq_eq] = STATE(1489), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(4291), + [sym_real_literal] = ACTIONS(4293), + [sym_integer_literal] = ACTIONS(4291), + [sym_hex_literal] = ACTIONS(4293), + [sym_oct_literal] = ACTIONS(4293), + [sym_bin_literal] = ACTIONS(4293), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(4291), + [anon_sym_GT] = ACTIONS(4291), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(4291), + [anon_sym_POUNDfileID] = ACTIONS(4293), + [anon_sym_POUNDfilePath] = ACTIONS(4293), + [anon_sym_POUNDline] = ACTIONS(4293), + [anon_sym_POUNDcolumn] = ACTIONS(4293), + [anon_sym_POUNDfunction] = ACTIONS(4293), + [anon_sym_POUNDdsohandle] = ACTIONS(4293), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(4291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), + [anon_sym_LT_EQ] = ACTIONS(4291), + [anon_sym_GT_EQ] = ACTIONS(4291), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_SLASH] = ACTIONS(4291), + [anon_sym_PERCENT] = ACTIONS(4291), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(4293), + [sym__plus_then_ws] = ACTIONS(4293), + [sym__minus_then_ws] = ACTIONS(4293), + [sym_bang] = ACTIONS(137), + }, + [1042] = { + [sym_simple_identifier] = STATE(1338), + [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_user_type] = STATE(6238), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6238), + [sym_dictionary_type] = STATE(6238), + [sym__expression] = STATE(1155), + [sym__unary_expression] = STATE(1155), + [sym_postfix_expression] = STATE(1155), + [sym_constructor_expression] = STATE(1155), + [sym_navigation_expression] = STATE(1380), + [sym__navigable_type_expression] = STATE(7791), + [sym_open_start_range_expression] = STATE(1155), + [sym__range_operator] = STATE(1037), + [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(1134), + [sym_try_expression] = STATE(1155), + [sym_await_expression] = STATE(1155), + [sym_ternary_expression] = STATE(1448), + [sym_call_expression] = STATE(1379), + [sym__primary_expression] = STATE(1155), + [sym_tuple_expression] = STATE(1381), + [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(1381), + [sym_super_expression] = STATE(1155), + [sym_key_path_expression] = STATE(1155), + [sym_key_path_string_expression] = STATE(1155), + [sym__try_operator] = STATE(1034), + [sym__equality_operator] = STATE(1155), + [sym__comparison_operator] = STATE(1155), + [sym__additive_operator] = STATE(1155), + [sym__multiplicative_operator] = STATE(1155), + [sym__prefix_unary_operator] = STATE(1033), + [sym_directly_assignable_expression] = STATE(5740), + [sym_assignment] = STATE(1155), + [sym__referenceable_operator] = STATE(1155), + [sym__eq_eq] = STATE(1155), + [sym__dot] = STATE(1033), + [sym__three_dot_operator] = STATE(1137), + [sym__open_ended_range_operator] = STATE(1037), + [aux_sym_raw_string_literal_repeat1] = STATE(7787), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(389), + [aux_sym_simple_identifier_token2] = ACTIONS(391), + [aux_sym_simple_identifier_token3] = ACTIONS(391), + [aux_sym_simple_identifier_token4] = ACTIONS(391), + [anon_sym_nil] = ACTIONS(4295), + [sym_real_literal] = ACTIONS(4297), + [sym_integer_literal] = ACTIONS(4295), + [sym_hex_literal] = ACTIONS(4297), + [sym_oct_literal] = ACTIONS(4297), + [sym_bin_literal] = ACTIONS(4297), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_async] = ACTIONS(759), + [anon_sym_POUNDselector] = ACTIONS(413), + [aux_sym_custom_operator_token1] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(4295), + [anon_sym_GT] = ACTIONS(4295), + [sym__await_operator] = ACTIONS(417), + [anon_sym_POUNDfile] = ACTIONS(4295), + [anon_sym_POUNDfileID] = ACTIONS(4297), + [anon_sym_POUNDfilePath] = ACTIONS(4297), + [anon_sym_POUNDline] = ACTIONS(4297), + [anon_sym_POUNDcolumn] = ACTIONS(4297), + [anon_sym_POUNDfunction] = ACTIONS(4297), + [anon_sym_POUNDdsohandle] = ACTIONS(4297), + [anon_sym_POUNDcolorLiteral] = ACTIONS(419), + [anon_sym_POUNDfileLiteral] = ACTIONS(419), + [anon_sym_POUNDimageLiteral] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(421), + [anon_sym_self] = ACTIONS(425), + [anon_sym_super] = ACTIONS(427), + [anon_sym_POUNDkeyPath] = ACTIONS(439), + [anon_sym_try] = ACTIONS(441), + [anon_sym_try_BANG] = ACTIONS(443), + [anon_sym_try_QMARK] = ACTIONS(443), + [anon_sym_BANG_EQ] = ACTIONS(4295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4295), + [anon_sym_LT_EQ] = ACTIONS(4295), + [anon_sym_GT_EQ] = ACTIONS(4295), + [anon_sym_PLUS] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(4295), + [anon_sym_SLASH] = ACTIONS(4295), + [anon_sym_PERCENT] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(447), + [anon_sym_DASH_DASH] = ACTIONS(447), + [anon_sym_TILDE] = ACTIONS(447), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(473), + [sym__dot_custom] = ACTIONS(475), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(479), + [sym__eq_eq_custom] = ACTIONS(4297), + [sym__plus_then_ws] = ACTIONS(4297), + [sym__minus_then_ws] = ACTIONS(4297), + [sym_bang] = ACTIONS(481), + }, + [1043] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1579), + [sym_boolean_literal] = STATE(1579), + [sym__string_literal] = STATE(1579), + [sym_line_string_literal] = STATE(1579), + [sym_multi_line_string_literal] = STATE(1579), + [sym_raw_string_literal] = STATE(1579), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1579), + [sym__unary_expression] = STATE(1579), + [sym_postfix_expression] = STATE(1579), + [sym_constructor_expression] = STATE(1579), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1579), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1579), + [sym_prefix_expression] = STATE(1579), + [sym_as_expression] = STATE(1579), + [sym_selector_expression] = STATE(1579), + [sym__binary_expression] = STATE(1579), + [sym_multiplicative_expression] = STATE(1579), + [sym_additive_expression] = STATE(1579), + [sym_range_expression] = STATE(1579), + [sym_infix_expression] = STATE(1579), + [sym_nil_coalescing_expression] = STATE(1579), + [sym_check_expression] = STATE(1579), + [sym_comparison_expression] = STATE(1579), + [sym_equality_expression] = STATE(1579), + [sym_conjunction_expression] = STATE(1579), + [sym_disjunction_expression] = STATE(1579), + [sym_bitwise_operation] = STATE(1579), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1579), + [sym_await_expression] = STATE(1579), + [sym_ternary_expression] = STATE(1579), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1579), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1579), + [sym_dictionary_literal] = STATE(1579), + [sym__special_literal] = STATE(1579), + [sym__playground_literal] = STATE(1579), + [sym_lambda_literal] = STATE(1579), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1579), + [sym_key_path_expression] = STATE(1579), + [sym_key_path_string_expression] = STATE(1579), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1579), + [sym__comparison_operator] = STATE(1579), + [sym__additive_operator] = STATE(1579), + [sym__multiplicative_operator] = STATE(1579), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1579), + [sym__referenceable_operator] = STATE(1579), + [sym__eq_eq] = STATE(1579), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4299), + [sym_real_literal] = ACTIONS(4301), + [sym_integer_literal] = ACTIONS(4299), + [sym_hex_literal] = ACTIONS(4301), + [sym_oct_literal] = ACTIONS(4301), + [sym_bin_literal] = ACTIONS(4301), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4299), + [anon_sym_GT] = ACTIONS(4299), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4299), + [anon_sym_POUNDfileID] = ACTIONS(4301), + [anon_sym_POUNDfilePath] = ACTIONS(4301), + [anon_sym_POUNDline] = ACTIONS(4301), + [anon_sym_POUNDcolumn] = ACTIONS(4301), + [anon_sym_POUNDfunction] = ACTIONS(4301), + [anon_sym_POUNDdsohandle] = ACTIONS(4301), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4299), + [anon_sym_LT_EQ] = ACTIONS(4299), + [anon_sym_GT_EQ] = ACTIONS(4299), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4299), + [anon_sym_SLASH] = ACTIONS(4299), + [anon_sym_PERCENT] = ACTIONS(4299), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4301), + [sym__plus_then_ws] = ACTIONS(4301), + [sym__minus_then_ws] = ACTIONS(4301), + [sym_bang] = ACTIONS(1069), + }, + [1044] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1914), + [sym_boolean_literal] = STATE(1914), + [sym__string_literal] = STATE(1914), + [sym_line_string_literal] = STATE(1914), + [sym_multi_line_string_literal] = STATE(1914), + [sym_raw_string_literal] = STATE(1914), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1914), + [sym__unary_expression] = STATE(1914), + [sym_postfix_expression] = STATE(1914), + [sym_constructor_expression] = STATE(1914), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1914), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1914), + [sym_prefix_expression] = STATE(1914), + [sym_as_expression] = STATE(1914), + [sym_selector_expression] = STATE(1914), + [sym__binary_expression] = STATE(1914), + [sym_multiplicative_expression] = STATE(1914), + [sym_additive_expression] = STATE(1914), + [sym_range_expression] = STATE(1914), + [sym_infix_expression] = STATE(1914), + [sym_nil_coalescing_expression] = STATE(1914), + [sym_check_expression] = STATE(1914), + [sym_comparison_expression] = STATE(1914), + [sym_equality_expression] = STATE(1914), + [sym_conjunction_expression] = STATE(1914), + [sym_disjunction_expression] = STATE(1914), + [sym_bitwise_operation] = STATE(1914), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1914), + [sym_await_expression] = STATE(1914), + [sym_ternary_expression] = STATE(1914), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1914), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1914), + [sym_dictionary_literal] = STATE(1914), + [sym__special_literal] = STATE(1914), + [sym__playground_literal] = STATE(1914), + [sym_lambda_literal] = STATE(1914), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1914), + [sym_key_path_expression] = STATE(1914), + [sym_key_path_string_expression] = STATE(1914), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1914), + [sym__comparison_operator] = STATE(1914), + [sym__additive_operator] = STATE(1914), + [sym__multiplicative_operator] = STATE(1914), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1914), + [sym__referenceable_operator] = STATE(1914), + [sym__eq_eq] = STATE(1914), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4303), + [sym_real_literal] = ACTIONS(4305), + [sym_integer_literal] = ACTIONS(4303), + [sym_hex_literal] = ACTIONS(4305), + [sym_oct_literal] = ACTIONS(4305), + [sym_bin_literal] = ACTIONS(4305), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4303), + [anon_sym_GT] = ACTIONS(4303), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4303), + [anon_sym_POUNDfileID] = ACTIONS(4305), + [anon_sym_POUNDfilePath] = ACTIONS(4305), + [anon_sym_POUNDline] = ACTIONS(4305), + [anon_sym_POUNDcolumn] = ACTIONS(4305), + [anon_sym_POUNDfunction] = ACTIONS(4305), + [anon_sym_POUNDdsohandle] = ACTIONS(4305), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4303), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4303), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), + [anon_sym_LT_EQ] = ACTIONS(4303), + [anon_sym_GT_EQ] = ACTIONS(4303), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4303), + [anon_sym_SLASH] = ACTIONS(4303), + [anon_sym_PERCENT] = ACTIONS(4303), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4305), + [sym__plus_then_ws] = ACTIONS(4305), + [sym__minus_then_ws] = ACTIONS(4305), + [sym_bang] = ACTIONS(1069), + }, + [1045] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1129), + [sym_boolean_literal] = STATE(1129), + [sym__string_literal] = STATE(1129), + [sym_line_string_literal] = STATE(1129), + [sym_multi_line_string_literal] = STATE(1129), + [sym_raw_string_literal] = STATE(1129), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1129), + [sym__unary_expression] = STATE(1129), + [sym_postfix_expression] = STATE(1129), + [sym_constructor_expression] = STATE(1129), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1129), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1129), + [sym_prefix_expression] = STATE(1129), + [sym_as_expression] = STATE(1129), + [sym_selector_expression] = STATE(1129), + [sym__binary_expression] = STATE(1129), + [sym_multiplicative_expression] = STATE(1129), + [sym_additive_expression] = STATE(1129), + [sym_range_expression] = STATE(1129), + [sym_infix_expression] = STATE(1129), + [sym_nil_coalescing_expression] = STATE(1129), + [sym_check_expression] = STATE(1129), + [sym_comparison_expression] = STATE(1129), + [sym_equality_expression] = STATE(1129), + [sym_conjunction_expression] = STATE(1129), + [sym_disjunction_expression] = STATE(1129), + [sym_bitwise_operation] = STATE(1129), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1129), + [sym_await_expression] = STATE(1129), + [sym_ternary_expression] = STATE(1129), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1129), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1129), + [sym_dictionary_literal] = STATE(1129), + [sym__special_literal] = STATE(1129), + [sym__playground_literal] = STATE(1129), + [sym_lambda_literal] = STATE(1129), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1129), + [sym_key_path_expression] = STATE(1129), + [sym_key_path_string_expression] = STATE(1129), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1129), + [sym__comparison_operator] = STATE(1129), + [sym__additive_operator] = STATE(1129), + [sym__multiplicative_operator] = STATE(1129), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1129), + [sym__referenceable_operator] = STATE(1129), + [sym__eq_eq] = STATE(1129), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(4307), + [sym_real_literal] = ACTIONS(4309), + [sym_integer_literal] = ACTIONS(4307), + [sym_hex_literal] = ACTIONS(4309), + [sym_oct_literal] = ACTIONS(4309), + [sym_bin_literal] = ACTIONS(4309), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_GT] = ACTIONS(4307), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(4307), + [anon_sym_POUNDfileID] = ACTIONS(4309), + [anon_sym_POUNDfilePath] = ACTIONS(4309), + [anon_sym_POUNDline] = ACTIONS(4309), + [anon_sym_POUNDcolumn] = ACTIONS(4309), + [anon_sym_POUNDfunction] = ACTIONS(4309), + [anon_sym_POUNDdsohandle] = ACTIONS(4309), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(4307), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), + [anon_sym_LT_EQ] = ACTIONS(4307), + [anon_sym_GT_EQ] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_PERCENT] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(4309), + [sym__plus_then_ws] = ACTIONS(4309), + [sym__minus_then_ws] = ACTIONS(4309), + [sym_bang] = ACTIONS(1501), + }, + [1046] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1132), + [sym_boolean_literal] = STATE(1132), + [sym__string_literal] = STATE(1132), + [sym_line_string_literal] = STATE(1132), + [sym_multi_line_string_literal] = STATE(1132), + [sym_raw_string_literal] = STATE(1132), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1132), + [sym__unary_expression] = STATE(1132), + [sym_postfix_expression] = STATE(1132), + [sym_constructor_expression] = STATE(1132), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1132), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1132), + [sym_prefix_expression] = STATE(1132), + [sym_as_expression] = STATE(1132), + [sym_selector_expression] = STATE(1132), + [sym__binary_expression] = STATE(1132), + [sym_multiplicative_expression] = STATE(1132), + [sym_additive_expression] = STATE(1132), + [sym_range_expression] = STATE(1132), + [sym_infix_expression] = STATE(1132), + [sym_nil_coalescing_expression] = STATE(1132), + [sym_check_expression] = STATE(1132), + [sym_comparison_expression] = STATE(1132), + [sym_equality_expression] = STATE(1132), + [sym_conjunction_expression] = STATE(1132), + [sym_disjunction_expression] = STATE(1132), + [sym_bitwise_operation] = STATE(1132), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1132), + [sym_await_expression] = STATE(1132), + [sym_ternary_expression] = STATE(1132), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1132), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1132), + [sym_dictionary_literal] = STATE(1132), + [sym__special_literal] = STATE(1132), + [sym__playground_literal] = STATE(1132), + [sym_lambda_literal] = STATE(1132), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1132), + [sym_key_path_expression] = STATE(1132), + [sym_key_path_string_expression] = STATE(1132), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1132), + [sym__comparison_operator] = STATE(1132), + [sym__additive_operator] = STATE(1132), + [sym__multiplicative_operator] = STATE(1132), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1132), + [sym__referenceable_operator] = STATE(1132), + [sym__eq_eq] = STATE(1132), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(4311), + [sym_real_literal] = ACTIONS(4313), + [sym_integer_literal] = ACTIONS(4311), + [sym_hex_literal] = ACTIONS(4313), + [sym_oct_literal] = ACTIONS(4313), + [sym_bin_literal] = ACTIONS(4313), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(4311), + [anon_sym_GT] = ACTIONS(4311), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(4311), + [anon_sym_POUNDfileID] = ACTIONS(4313), + [anon_sym_POUNDfilePath] = ACTIONS(4313), + [anon_sym_POUNDline] = ACTIONS(4313), + [anon_sym_POUNDcolumn] = ACTIONS(4313), + [anon_sym_POUNDfunction] = ACTIONS(4313), + [anon_sym_POUNDdsohandle] = ACTIONS(4313), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(4311), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4311), + [anon_sym_GT_EQ] = ACTIONS(4311), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(4311), + [anon_sym_SLASH] = ACTIONS(4311), + [anon_sym_PERCENT] = ACTIONS(4311), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(4313), + [sym__plus_then_ws] = ACTIONS(4313), + [sym__minus_then_ws] = ACTIONS(4313), + [sym_bang] = ACTIONS(1501), + }, + [1047] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1127), + [sym_boolean_literal] = STATE(1127), + [sym__string_literal] = STATE(1127), + [sym_line_string_literal] = STATE(1127), + [sym_multi_line_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1127), + [sym__unary_expression] = STATE(1127), + [sym_postfix_expression] = STATE(1127), + [sym_constructor_expression] = STATE(1127), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1127), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1127), + [sym_prefix_expression] = STATE(1127), + [sym_as_expression] = STATE(1127), + [sym_selector_expression] = STATE(1127), + [sym__binary_expression] = STATE(1127), + [sym_multiplicative_expression] = STATE(1127), + [sym_additive_expression] = STATE(1127), + [sym_range_expression] = STATE(1127), + [sym_infix_expression] = STATE(1127), + [sym_nil_coalescing_expression] = STATE(1127), + [sym_check_expression] = STATE(1127), + [sym_comparison_expression] = STATE(1127), + [sym_equality_expression] = STATE(1127), + [sym_conjunction_expression] = STATE(1127), + [sym_disjunction_expression] = STATE(1127), + [sym_bitwise_operation] = STATE(1127), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1127), + [sym_await_expression] = STATE(1127), + [sym_ternary_expression] = STATE(1127), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1127), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1127), + [sym_dictionary_literal] = STATE(1127), + [sym__special_literal] = STATE(1127), + [sym__playground_literal] = STATE(1127), + [sym_lambda_literal] = STATE(1127), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1127), + [sym_key_path_expression] = STATE(1127), + [sym_key_path_string_expression] = STATE(1127), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1127), + [sym__comparison_operator] = STATE(1127), + [sym__additive_operator] = STATE(1127), + [sym__multiplicative_operator] = STATE(1127), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1127), + [sym__referenceable_operator] = STATE(1127), + [sym__eq_eq] = STATE(1127), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(4315), + [sym_real_literal] = ACTIONS(4317), + [sym_integer_literal] = ACTIONS(4315), + [sym_hex_literal] = ACTIONS(4317), + [sym_oct_literal] = ACTIONS(4317), + [sym_bin_literal] = ACTIONS(4317), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(4315), + [anon_sym_GT] = ACTIONS(4315), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(4315), + [anon_sym_POUNDfileID] = ACTIONS(4317), + [anon_sym_POUNDfilePath] = ACTIONS(4317), + [anon_sym_POUNDline] = ACTIONS(4317), + [anon_sym_POUNDcolumn] = ACTIONS(4317), + [anon_sym_POUNDfunction] = ACTIONS(4317), + [anon_sym_POUNDdsohandle] = ACTIONS(4317), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(4315), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4315), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4315), + [anon_sym_LT_EQ] = ACTIONS(4315), + [anon_sym_GT_EQ] = ACTIONS(4315), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(4315), + [anon_sym_SLASH] = ACTIONS(4315), + [anon_sym_PERCENT] = ACTIONS(4315), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(4317), + [sym__plus_then_ws] = ACTIONS(4317), + [sym__minus_then_ws] = ACTIONS(4317), + [sym_bang] = ACTIONS(1501), + }, + [1048] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(1131), + [sym_boolean_literal] = STATE(1131), + [sym__string_literal] = STATE(1131), + [sym_line_string_literal] = STATE(1131), + [sym_multi_line_string_literal] = STATE(1131), + [sym_raw_string_literal] = STATE(1131), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(1131), + [sym__unary_expression] = STATE(1131), + [sym_postfix_expression] = STATE(1131), + [sym_constructor_expression] = STATE(1131), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(1131), + [sym__range_operator] = STATE(821), + [sym_open_end_range_expression] = STATE(1131), + [sym_prefix_expression] = STATE(1131), + [sym_as_expression] = STATE(1131), + [sym_selector_expression] = STATE(1131), + [sym__binary_expression] = STATE(1131), + [sym_multiplicative_expression] = STATE(1131), + [sym_additive_expression] = STATE(1131), + [sym_range_expression] = STATE(1131), + [sym_infix_expression] = STATE(1131), + [sym_nil_coalescing_expression] = STATE(1131), + [sym_check_expression] = STATE(1131), + [sym_comparison_expression] = STATE(1131), + [sym_equality_expression] = STATE(1131), + [sym_conjunction_expression] = STATE(1131), + [sym_disjunction_expression] = STATE(1131), + [sym_bitwise_operation] = STATE(1131), + [sym_custom_operator] = STATE(1100), + [sym_try_expression] = STATE(1131), + [sym_await_expression] = STATE(1131), + [sym_ternary_expression] = STATE(1131), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(1131), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(1131), + [sym_dictionary_literal] = STATE(1131), + [sym__special_literal] = STATE(1131), + [sym__playground_literal] = STATE(1131), + [sym_lambda_literal] = STATE(1131), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(1131), + [sym_key_path_expression] = STATE(1131), + [sym_key_path_string_expression] = STATE(1131), + [sym__try_operator] = STATE(820), + [sym__equality_operator] = STATE(1131), + [sym__comparison_operator] = STATE(1131), + [sym__additive_operator] = STATE(1131), + [sym__multiplicative_operator] = STATE(1131), + [sym__prefix_unary_operator] = STATE(819), + [sym_directly_assignable_expression] = STATE(5823), + [sym_assignment] = STATE(1131), + [sym__referenceable_operator] = STATE(1131), + [sym__eq_eq] = STATE(1131), + [sym__dot] = STATE(819), + [sym__three_dot_operator] = STATE(1102), + [sym__open_ended_range_operator] = STATE(821), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(4319), + [sym_real_literal] = ACTIONS(4321), + [sym_integer_literal] = ACTIONS(4319), + [sym_hex_literal] = ACTIONS(4321), + [sym_oct_literal] = ACTIONS(4321), + [sym_bin_literal] = ACTIONS(4321), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(1479), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(4319), + [anon_sym_GT] = ACTIONS(4319), + [sym__await_operator] = ACTIONS(1485), + [anon_sym_POUNDfile] = ACTIONS(4319), + [anon_sym_POUNDfileID] = ACTIONS(4321), + [anon_sym_POUNDfilePath] = ACTIONS(4321), + [anon_sym_POUNDline] = ACTIONS(4321), + [anon_sym_POUNDcolumn] = ACTIONS(4321), + [anon_sym_POUNDfunction] = ACTIONS(4321), + [anon_sym_POUNDdsohandle] = ACTIONS(4321), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(1487), + [anon_sym_try_BANG] = ACTIONS(1489), + [anon_sym_try_QMARK] = ACTIONS(1489), + [anon_sym_BANG_EQ] = ACTIONS(4319), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4319), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4319), + [anon_sym_LT_EQ] = ACTIONS(4319), + [anon_sym_GT_EQ] = ACTIONS(4319), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(4319), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4319), + [anon_sym_PLUS_PLUS] = ACTIONS(1493), + [anon_sym_DASH_DASH] = ACTIONS(1493), + [anon_sym_TILDE] = ACTIONS(1493), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(1495), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(1499), + [sym__eq_eq_custom] = ACTIONS(4321), + [sym__plus_then_ws] = ACTIONS(4321), + [sym__minus_then_ws] = ACTIONS(4321), + [sym_bang] = ACTIONS(1501), + }, + [1049] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2036), + [sym_boolean_literal] = STATE(2036), + [sym__string_literal] = STATE(2036), + [sym_line_string_literal] = STATE(2036), + [sym_multi_line_string_literal] = STATE(2036), + [sym_raw_string_literal] = STATE(2036), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2036), + [sym__unary_expression] = STATE(2036), + [sym_postfix_expression] = STATE(2036), + [sym_constructor_expression] = STATE(2036), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2036), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2036), + [sym_prefix_expression] = STATE(2036), + [sym_as_expression] = STATE(2036), + [sym_selector_expression] = STATE(2036), + [sym__binary_expression] = STATE(2036), + [sym_multiplicative_expression] = STATE(2036), + [sym_additive_expression] = STATE(2036), + [sym_range_expression] = STATE(2036), + [sym_infix_expression] = STATE(2036), + [sym_nil_coalescing_expression] = STATE(2036), + [sym_check_expression] = STATE(2036), + [sym_comparison_expression] = STATE(2036), + [sym_equality_expression] = STATE(2036), + [sym_conjunction_expression] = STATE(2036), + [sym_disjunction_expression] = STATE(2036), + [sym_bitwise_operation] = STATE(2036), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2036), + [sym_await_expression] = STATE(2036), + [sym_ternary_expression] = STATE(2036), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2036), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2036), + [sym_dictionary_literal] = STATE(2036), + [sym__special_literal] = STATE(2036), + [sym__playground_literal] = STATE(2036), + [sym_lambda_literal] = STATE(2036), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2036), + [sym_key_path_expression] = STATE(2036), + [sym_key_path_string_expression] = STATE(2036), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2036), + [sym__comparison_operator] = STATE(2036), + [sym__additive_operator] = STATE(2036), + [sym__multiplicative_operator] = STATE(2036), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2036), + [sym__referenceable_operator] = STATE(2036), + [sym__eq_eq] = STATE(2036), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4325), + [sym_integer_literal] = ACTIONS(4323), + [sym_hex_literal] = ACTIONS(4325), + [sym_oct_literal] = ACTIONS(4325), + [sym_bin_literal] = ACTIONS(4325), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4323), + [anon_sym_GT] = ACTIONS(4323), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4323), + [anon_sym_POUNDfileID] = ACTIONS(4325), + [anon_sym_POUNDfilePath] = ACTIONS(4325), + [anon_sym_POUNDline] = ACTIONS(4325), + [anon_sym_POUNDcolumn] = ACTIONS(4325), + [anon_sym_POUNDfunction] = ACTIONS(4325), + [anon_sym_POUNDdsohandle] = ACTIONS(4325), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4323), + [anon_sym_SLASH] = ACTIONS(4323), + [anon_sym_PERCENT] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4325), + [sym__plus_then_ws] = ACTIONS(4325), + [sym__minus_then_ws] = ACTIONS(4325), + [sym_bang] = ACTIONS(1069), + }, + [1050] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1559), + [sym_boolean_literal] = STATE(1559), + [sym__string_literal] = STATE(1559), + [sym_line_string_literal] = STATE(1559), + [sym_multi_line_string_literal] = STATE(1559), + [sym_raw_string_literal] = STATE(1559), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1559), + [sym__unary_expression] = STATE(1559), + [sym_postfix_expression] = STATE(1559), + [sym_constructor_expression] = STATE(1559), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1559), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1559), + [sym_prefix_expression] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_selector_expression] = STATE(1559), + [sym__binary_expression] = STATE(1559), + [sym_multiplicative_expression] = STATE(1559), + [sym_additive_expression] = STATE(1559), + [sym_range_expression] = STATE(1559), + [sym_infix_expression] = STATE(1559), + [sym_nil_coalescing_expression] = STATE(1559), + [sym_check_expression] = STATE(1559), + [sym_comparison_expression] = STATE(1559), + [sym_equality_expression] = STATE(1559), + [sym_conjunction_expression] = STATE(1559), + [sym_disjunction_expression] = STATE(1559), + [sym_bitwise_operation] = STATE(1559), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1559), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1559), + [sym_dictionary_literal] = STATE(1559), + [sym__special_literal] = STATE(1559), + [sym__playground_literal] = STATE(1559), + [sym_lambda_literal] = STATE(1559), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1559), + [sym_key_path_expression] = STATE(1559), + [sym_key_path_string_expression] = STATE(1559), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1559), + [sym__comparison_operator] = STATE(1559), + [sym__additive_operator] = STATE(1559), + [sym__multiplicative_operator] = STATE(1559), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1559), + [sym__referenceable_operator] = STATE(1559), + [sym__eq_eq] = STATE(1559), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4327), + [sym_real_literal] = ACTIONS(4329), + [sym_integer_literal] = ACTIONS(4327), + [sym_hex_literal] = ACTIONS(4329), + [sym_oct_literal] = ACTIONS(4329), + [sym_bin_literal] = ACTIONS(4329), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4327), + [anon_sym_GT] = ACTIONS(4327), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4327), + [anon_sym_POUNDfileID] = ACTIONS(4329), + [anon_sym_POUNDfilePath] = ACTIONS(4329), + [anon_sym_POUNDline] = ACTIONS(4329), + [anon_sym_POUNDcolumn] = ACTIONS(4329), + [anon_sym_POUNDfunction] = ACTIONS(4329), + [anon_sym_POUNDdsohandle] = ACTIONS(4329), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4327), + [anon_sym_LT_EQ] = ACTIONS(4327), + [anon_sym_GT_EQ] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4327), + [anon_sym_SLASH] = ACTIONS(4327), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4329), + [sym__plus_then_ws] = ACTIONS(4329), + [sym__minus_then_ws] = ACTIONS(4329), + [sym_bang] = ACTIONS(1069), + }, + [1051] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1560), + [sym_boolean_literal] = STATE(1560), + [sym__string_literal] = STATE(1560), + [sym_line_string_literal] = STATE(1560), + [sym_multi_line_string_literal] = STATE(1560), + [sym_raw_string_literal] = STATE(1560), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1560), + [sym__unary_expression] = STATE(1560), + [sym_postfix_expression] = STATE(1560), + [sym_constructor_expression] = STATE(1560), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1560), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1560), + [sym_prefix_expression] = STATE(1560), + [sym_as_expression] = STATE(1560), + [sym_selector_expression] = STATE(1560), + [sym__binary_expression] = STATE(1560), + [sym_multiplicative_expression] = STATE(1560), + [sym_additive_expression] = STATE(1560), + [sym_range_expression] = STATE(1560), + [sym_infix_expression] = STATE(1560), + [sym_nil_coalescing_expression] = STATE(1560), + [sym_check_expression] = STATE(1560), + [sym_comparison_expression] = STATE(1560), + [sym_equality_expression] = STATE(1560), + [sym_conjunction_expression] = STATE(1560), + [sym_disjunction_expression] = STATE(1560), + [sym_bitwise_operation] = STATE(1560), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1560), + [sym_await_expression] = STATE(1560), + [sym_ternary_expression] = STATE(1560), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1560), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1560), + [sym_dictionary_literal] = STATE(1560), + [sym__special_literal] = STATE(1560), + [sym__playground_literal] = STATE(1560), + [sym_lambda_literal] = STATE(1560), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1560), + [sym_key_path_expression] = STATE(1560), + [sym_key_path_string_expression] = STATE(1560), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1560), + [sym__comparison_operator] = STATE(1560), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1560), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1560), + [sym__referenceable_operator] = STATE(1560), + [sym__eq_eq] = STATE(1560), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4331), + [sym_real_literal] = ACTIONS(4333), + [sym_integer_literal] = ACTIONS(4331), + [sym_hex_literal] = ACTIONS(4333), + [sym_oct_literal] = ACTIONS(4333), + [sym_bin_literal] = ACTIONS(4333), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4331), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4331), + [anon_sym_POUNDfileID] = ACTIONS(4333), + [anon_sym_POUNDfilePath] = ACTIONS(4333), + [anon_sym_POUNDline] = ACTIONS(4333), + [anon_sym_POUNDcolumn] = ACTIONS(4333), + [anon_sym_POUNDfunction] = ACTIONS(4333), + [anon_sym_POUNDdsohandle] = ACTIONS(4333), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4331), + [anon_sym_LT_EQ] = ACTIONS(4331), + [anon_sym_GT_EQ] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4331), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4333), + [sym__plus_then_ws] = ACTIONS(4333), + [sym__minus_then_ws] = ACTIONS(4333), + [sym_bang] = ACTIONS(1069), + }, + [1052] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1576), + [sym_boolean_literal] = STATE(1576), + [sym__string_literal] = STATE(1576), + [sym_line_string_literal] = STATE(1576), + [sym_multi_line_string_literal] = STATE(1576), + [sym_raw_string_literal] = STATE(1576), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1576), + [sym__unary_expression] = STATE(1576), + [sym_postfix_expression] = STATE(1576), + [sym_constructor_expression] = STATE(1576), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1576), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1576), + [sym_prefix_expression] = STATE(1576), + [sym_as_expression] = STATE(1576), + [sym_selector_expression] = STATE(1576), + [sym__binary_expression] = STATE(1576), + [sym_multiplicative_expression] = STATE(1576), + [sym_additive_expression] = STATE(1576), + [sym_range_expression] = STATE(1576), + [sym_infix_expression] = STATE(1576), + [sym_nil_coalescing_expression] = STATE(1576), + [sym_check_expression] = STATE(1576), + [sym_comparison_expression] = STATE(1576), + [sym_equality_expression] = STATE(1576), + [sym_conjunction_expression] = STATE(1576), + [sym_disjunction_expression] = STATE(1576), + [sym_bitwise_operation] = STATE(1576), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1576), + [sym_await_expression] = STATE(1576), + [sym_ternary_expression] = STATE(1576), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1576), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1576), + [sym_dictionary_literal] = STATE(1576), + [sym__special_literal] = STATE(1576), + [sym__playground_literal] = STATE(1576), + [sym_lambda_literal] = STATE(1576), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1576), + [sym_key_path_expression] = STATE(1576), + [sym_key_path_string_expression] = STATE(1576), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1576), + [sym__comparison_operator] = STATE(1576), + [sym__additive_operator] = STATE(1576), + [sym__multiplicative_operator] = STATE(1576), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1576), + [sym__referenceable_operator] = STATE(1576), + [sym__eq_eq] = STATE(1576), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4335), + [sym_real_literal] = ACTIONS(4337), + [sym_integer_literal] = ACTIONS(4335), + [sym_hex_literal] = ACTIONS(4337), + [sym_oct_literal] = ACTIONS(4337), + [sym_bin_literal] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4335), + [anon_sym_POUNDfileID] = ACTIONS(4337), + [anon_sym_POUNDfilePath] = ACTIONS(4337), + [anon_sym_POUNDline] = ACTIONS(4337), + [anon_sym_POUNDcolumn] = ACTIONS(4337), + [anon_sym_POUNDfunction] = ACTIONS(4337), + [anon_sym_POUNDdsohandle] = ACTIONS(4337), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4335), + [anon_sym_LT_EQ] = ACTIONS(4335), + [anon_sym_GT_EQ] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4337), + [sym__plus_then_ws] = ACTIONS(4337), + [sym__minus_then_ws] = ACTIONS(4337), + [sym_bang] = ACTIONS(1069), + }, + [1053] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1707), + [sym_boolean_literal] = STATE(1707), + [sym__string_literal] = STATE(1707), + [sym_line_string_literal] = STATE(1707), + [sym_multi_line_string_literal] = STATE(1707), + [sym_raw_string_literal] = STATE(1707), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1707), + [sym__unary_expression] = STATE(1707), + [sym_postfix_expression] = STATE(1707), + [sym_constructor_expression] = STATE(1707), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1707), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1707), + [sym_prefix_expression] = STATE(1707), + [sym_as_expression] = STATE(1707), + [sym_selector_expression] = STATE(1707), + [sym__binary_expression] = STATE(1707), + [sym_multiplicative_expression] = STATE(1707), + [sym_additive_expression] = STATE(1707), + [sym_range_expression] = STATE(1707), + [sym_infix_expression] = STATE(1707), + [sym_nil_coalescing_expression] = STATE(1707), + [sym_check_expression] = STATE(1707), + [sym_comparison_expression] = STATE(1707), + [sym_equality_expression] = STATE(1707), + [sym_conjunction_expression] = STATE(1707), + [sym_disjunction_expression] = STATE(1707), + [sym_bitwise_operation] = STATE(1707), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1707), + [sym_await_expression] = STATE(1707), + [sym_ternary_expression] = STATE(3299), + [sym_call_expression] = STATE(2705), + [sym__primary_expression] = STATE(1707), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1707), + [sym_dictionary_literal] = STATE(1707), + [sym__special_literal] = STATE(1707), + [sym__playground_literal] = STATE(1707), + [sym_lambda_literal] = STATE(1707), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1707), + [sym_key_path_expression] = STATE(1707), + [sym_key_path_string_expression] = STATE(1707), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1707), + [sym__comparison_operator] = STATE(1707), + [sym__additive_operator] = STATE(1707), + [sym__multiplicative_operator] = STATE(1707), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1707), + [sym__referenceable_operator] = STATE(1707), + [sym__eq_eq] = STATE(1707), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4339), + [sym_real_literal] = ACTIONS(4341), + [sym_integer_literal] = ACTIONS(4339), + [sym_hex_literal] = ACTIONS(4341), + [sym_oct_literal] = ACTIONS(4341), + [sym_bin_literal] = ACTIONS(4341), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4339), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4339), + [anon_sym_POUNDfileID] = ACTIONS(4341), + [anon_sym_POUNDfilePath] = ACTIONS(4341), + [anon_sym_POUNDline] = ACTIONS(4341), + [anon_sym_POUNDcolumn] = ACTIONS(4341), + [anon_sym_POUNDfunction] = ACTIONS(4341), + [anon_sym_POUNDdsohandle] = ACTIONS(4341), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4339), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4339), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4339), + [anon_sym_LT_EQ] = ACTIONS(4339), + [anon_sym_GT_EQ] = ACTIONS(4339), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4339), + [anon_sym_PERCENT] = ACTIONS(4339), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4341), + [sym__plus_then_ws] = ACTIONS(4341), + [sym__minus_then_ws] = ACTIONS(4341), + [sym_bang] = ACTIONS(1069), + }, + [1054] = { + [sym_simple_identifier] = STATE(2630), + [sym__basic_literal] = STATE(1515), + [sym_boolean_literal] = STATE(1515), + [sym__string_literal] = STATE(1515), + [sym_line_string_literal] = STATE(1515), + [sym_multi_line_string_literal] = STATE(1515), + [sym_raw_string_literal] = STATE(1515), + [sym_user_type] = STATE(5972), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5972), + [sym_dictionary_type] = STATE(5972), + [sym__expression] = STATE(1515), + [sym__unary_expression] = STATE(1515), + [sym_postfix_expression] = STATE(1515), + [sym_constructor_expression] = STATE(1515), + [sym_navigation_expression] = STATE(2702), + [sym__navigable_type_expression] = STATE(7969), + [sym_open_start_range_expression] = STATE(1515), + [sym__range_operator] = STATE(374), + [sym_open_end_range_expression] = STATE(1515), + [sym_prefix_expression] = STATE(1515), + [sym_as_expression] = STATE(1515), + [sym_selector_expression] = STATE(1515), + [sym__binary_expression] = STATE(1515), + [sym_multiplicative_expression] = STATE(1515), + [sym_additive_expression] = STATE(1515), + [sym_range_expression] = STATE(1515), + [sym_infix_expression] = STATE(1515), + [sym_nil_coalescing_expression] = STATE(1515), + [sym_check_expression] = STATE(1515), + [sym_comparison_expression] = STATE(1515), + [sym_equality_expression] = STATE(1515), + [sym_conjunction_expression] = STATE(1515), + [sym_disjunction_expression] = STATE(1515), + [sym_bitwise_operation] = STATE(1515), + [sym_custom_operator] = STATE(1334), + [sym_try_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_ternary_expression] = STATE(1515), + [sym_call_expression] = STATE(2702), + [sym__primary_expression] = STATE(1515), + [sym_tuple_expression] = STATE(2699), + [sym_array_literal] = STATE(1515), + [sym_dictionary_literal] = STATE(1515), + [sym__special_literal] = STATE(1515), + [sym__playground_literal] = STATE(1515), + [sym_lambda_literal] = STATE(1515), + [sym_self_expression] = STATE(2699), + [sym_super_expression] = STATE(1515), + [sym_key_path_expression] = STATE(1515), + [sym_key_path_string_expression] = STATE(1515), + [sym__try_operator] = STATE(921), + [sym__equality_operator] = STATE(1515), + [sym__comparison_operator] = STATE(1515), + [sym__additive_operator] = STATE(1515), + [sym__multiplicative_operator] = STATE(1515), + [sym__prefix_unary_operator] = STATE(922), + [sym_directly_assignable_expression] = STATE(5729), + [sym_assignment] = STATE(1515), + [sym__referenceable_operator] = STATE(1515), + [sym__eq_eq] = STATE(1515), + [sym__dot] = STATE(922), + [sym__three_dot_operator] = STATE(1359), + [sym__open_ended_range_operator] = STATE(374), + [aux_sym_raw_string_literal_repeat1] = STATE(7961), + [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_nil] = ACTIONS(4343), + [sym_real_literal] = ACTIONS(4345), + [sym_integer_literal] = ACTIONS(4343), + [sym_hex_literal] = ACTIONS(4345), + [sym_oct_literal] = ACTIONS(4345), + [sym_bin_literal] = ACTIONS(4345), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_DQUOTE] = ACTIONS(21), + [anon_sym_BSLASH] = ACTIONS(23), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_POUNDselector] = ACTIONS(35), + [aux_sym_custom_operator_token1] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [sym__await_operator] = ACTIONS(39), + [anon_sym_POUNDfile] = ACTIONS(4343), + [anon_sym_POUNDfileID] = ACTIONS(4345), + [anon_sym_POUNDfilePath] = ACTIONS(4345), + [anon_sym_POUNDline] = ACTIONS(4345), + [anon_sym_POUNDcolumn] = ACTIONS(4345), + [anon_sym_POUNDfunction] = ACTIONS(4345), + [anon_sym_POUNDdsohandle] = ACTIONS(4345), + [anon_sym_POUNDcolorLiteral] = ACTIONS(41), + [anon_sym_POUNDfileLiteral] = ACTIONS(41), + [anon_sym_POUNDimageLiteral] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_self] = ACTIONS(45), + [anon_sym_super] = ACTIONS(47), + [anon_sym_POUNDkeyPath] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_try_BANG] = ACTIONS(61), + [anon_sym_try_QMARK] = ACTIONS(61), + [anon_sym_BANG_EQ] = ACTIONS(4343), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4343), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4343), + [anon_sym_LT_EQ] = ACTIONS(4343), + [anon_sym_GT_EQ] = ACTIONS(4343), + [anon_sym_PLUS] = ACTIONS(63), + [anon_sym_DASH] = ACTIONS(63), + [anon_sym_STAR] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4343), + [anon_sym_PERCENT] = ACTIONS(4343), + [anon_sym_PLUS_PLUS] = ACTIONS(65), + [anon_sym_DASH_DASH] = ACTIONS(65), + [anon_sym_TILDE] = ACTIONS(65), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(129), + [sym__dot_custom] = ACTIONS(131), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(135), + [sym__eq_eq_custom] = ACTIONS(4345), + [sym__plus_then_ws] = ACTIONS(4345), + [sym__minus_then_ws] = ACTIONS(4345), + [sym_bang] = ACTIONS(137), + }, + [1055] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1716), + [sym_boolean_literal] = STATE(1716), + [sym__string_literal] = STATE(1716), + [sym_line_string_literal] = STATE(1716), + [sym_multi_line_string_literal] = STATE(1716), + [sym_raw_string_literal] = STATE(1716), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1716), + [sym__unary_expression] = STATE(1716), + [sym_postfix_expression] = STATE(1716), + [sym_constructor_expression] = STATE(1716), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1716), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1716), + [sym_prefix_expression] = STATE(1716), + [sym_as_expression] = STATE(1716), + [sym_selector_expression] = STATE(1716), + [sym__binary_expression] = STATE(1716), + [sym_multiplicative_expression] = STATE(1716), + [sym_additive_expression] = STATE(1716), + [sym_range_expression] = STATE(1716), + [sym_infix_expression] = STATE(1716), + [sym_nil_coalescing_expression] = STATE(1716), + [sym_check_expression] = STATE(1716), + [sym_comparison_expression] = STATE(1716), + [sym_equality_expression] = STATE(1716), + [sym_conjunction_expression] = STATE(1716), + [sym_disjunction_expression] = STATE(1716), + [sym_bitwise_operation] = STATE(1716), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1716), + [sym_await_expression] = STATE(1716), + [sym_ternary_expression] = STATE(1716), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1716), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1716), + [sym_dictionary_literal] = STATE(1716), + [sym__special_literal] = STATE(1716), + [sym__playground_literal] = STATE(1716), + [sym_lambda_literal] = STATE(1716), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1716), + [sym_key_path_expression] = STATE(1716), + [sym_key_path_string_expression] = STATE(1716), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1716), + [sym__comparison_operator] = STATE(1716), + [sym__additive_operator] = STATE(1716), + [sym__multiplicative_operator] = STATE(1716), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1716), + [sym__referenceable_operator] = STATE(1716), + [sym__eq_eq] = STATE(1716), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4347), + [sym_real_literal] = ACTIONS(4349), + [sym_integer_literal] = ACTIONS(4347), + [sym_hex_literal] = ACTIONS(4349), + [sym_oct_literal] = ACTIONS(4349), + [sym_bin_literal] = ACTIONS(4349), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4347), + [anon_sym_POUNDfileID] = ACTIONS(4349), + [anon_sym_POUNDfilePath] = ACTIONS(4349), + [anon_sym_POUNDline] = ACTIONS(4349), + [anon_sym_POUNDcolumn] = ACTIONS(4349), + [anon_sym_POUNDfunction] = ACTIONS(4349), + [anon_sym_POUNDdsohandle] = ACTIONS(4349), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4347), + [anon_sym_LT_EQ] = ACTIONS(4347), + [anon_sym_GT_EQ] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4349), + [sym__plus_then_ws] = ACTIONS(4349), + [sym__minus_then_ws] = ACTIONS(4349), + [sym_bang] = ACTIONS(1069), + }, + [1056] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2032), + [sym_boolean_literal] = STATE(2032), + [sym__string_literal] = STATE(2032), + [sym_line_string_literal] = STATE(2032), + [sym_multi_line_string_literal] = STATE(2032), + [sym_raw_string_literal] = STATE(2032), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2032), + [sym__unary_expression] = STATE(2032), + [sym_postfix_expression] = STATE(2032), + [sym_constructor_expression] = STATE(2032), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2032), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2032), + [sym_prefix_expression] = STATE(2032), + [sym_as_expression] = STATE(2032), + [sym_selector_expression] = STATE(2032), + [sym__binary_expression] = STATE(2032), + [sym_multiplicative_expression] = STATE(2032), + [sym_additive_expression] = STATE(2032), + [sym_range_expression] = STATE(2032), + [sym_infix_expression] = STATE(2032), + [sym_nil_coalescing_expression] = STATE(2032), + [sym_check_expression] = STATE(2032), + [sym_comparison_expression] = STATE(2032), + [sym_equality_expression] = STATE(2032), + [sym_conjunction_expression] = STATE(2032), + [sym_disjunction_expression] = STATE(2032), + [sym_bitwise_operation] = STATE(2032), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2032), + [sym_await_expression] = STATE(2032), + [sym_ternary_expression] = STATE(2032), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2032), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2032), + [sym_dictionary_literal] = STATE(2032), + [sym__special_literal] = STATE(2032), + [sym__playground_literal] = STATE(2032), + [sym_lambda_literal] = STATE(2032), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2032), + [sym_key_path_expression] = STATE(2032), + [sym_key_path_string_expression] = STATE(2032), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2032), + [sym__comparison_operator] = STATE(2032), + [sym__additive_operator] = STATE(2032), + [sym__multiplicative_operator] = STATE(2032), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2032), + [sym__referenceable_operator] = STATE(2032), + [sym__eq_eq] = STATE(2032), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4351), + [sym_real_literal] = ACTIONS(4353), + [sym_integer_literal] = ACTIONS(4351), + [sym_hex_literal] = ACTIONS(4353), + [sym_oct_literal] = ACTIONS(4353), + [sym_bin_literal] = ACTIONS(4353), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4351), + [anon_sym_GT] = ACTIONS(4351), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4351), + [anon_sym_POUNDfileID] = ACTIONS(4353), + [anon_sym_POUNDfilePath] = ACTIONS(4353), + [anon_sym_POUNDline] = ACTIONS(4353), + [anon_sym_POUNDcolumn] = ACTIONS(4353), + [anon_sym_POUNDfunction] = ACTIONS(4353), + [anon_sym_POUNDdsohandle] = ACTIONS(4353), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4351), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4351), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4351), + [anon_sym_LT_EQ] = ACTIONS(4351), + [anon_sym_GT_EQ] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4351), + [anon_sym_SLASH] = ACTIONS(4351), + [anon_sym_PERCENT] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4353), + [sym__plus_then_ws] = ACTIONS(4353), + [sym__minus_then_ws] = ACTIONS(4353), + [sym_bang] = ACTIONS(1069), + }, + [1057] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1717), + [sym_boolean_literal] = STATE(1717), + [sym__string_literal] = STATE(1717), + [sym_line_string_literal] = STATE(1717), + [sym_multi_line_string_literal] = STATE(1717), + [sym_raw_string_literal] = STATE(1717), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1717), + [sym__unary_expression] = STATE(1717), + [sym_postfix_expression] = STATE(1717), + [sym_constructor_expression] = STATE(1717), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1717), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1717), + [sym_prefix_expression] = STATE(1717), + [sym_as_expression] = STATE(1717), + [sym_selector_expression] = STATE(1717), + [sym__binary_expression] = STATE(3288), + [sym_multiplicative_expression] = STATE(3288), + [sym_additive_expression] = STATE(3288), + [sym_range_expression] = STATE(3288), + [sym_infix_expression] = STATE(3288), + [sym_nil_coalescing_expression] = STATE(3288), + [sym_check_expression] = STATE(3288), + [sym_comparison_expression] = STATE(3288), + [sym_equality_expression] = STATE(3288), + [sym_conjunction_expression] = STATE(3288), + [sym_disjunction_expression] = STATE(3288), + [sym_bitwise_operation] = STATE(3288), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1717), + [sym_await_expression] = STATE(1717), + [sym_ternary_expression] = STATE(3287), + [sym_call_expression] = STATE(2722), + [sym__primary_expression] = STATE(1717), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1717), + [sym_dictionary_literal] = STATE(1717), + [sym__special_literal] = STATE(1717), + [sym__playground_literal] = STATE(1717), + [sym_lambda_literal] = STATE(1717), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1717), + [sym_key_path_expression] = STATE(1717), + [sym_key_path_string_expression] = STATE(1717), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1717), + [sym__comparison_operator] = STATE(1717), + [sym__additive_operator] = STATE(1717), + [sym__multiplicative_operator] = STATE(1717), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1717), + [sym__referenceable_operator] = STATE(1717), + [sym__eq_eq] = STATE(1717), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4355), + [sym_real_literal] = ACTIONS(4357), + [sym_integer_literal] = ACTIONS(4355), + [sym_hex_literal] = ACTIONS(4357), + [sym_oct_literal] = ACTIONS(4357), + [sym_bin_literal] = ACTIONS(4357), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4355), + [anon_sym_GT] = ACTIONS(4355), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4355), + [anon_sym_POUNDfileID] = ACTIONS(4357), + [anon_sym_POUNDfilePath] = ACTIONS(4357), + [anon_sym_POUNDline] = ACTIONS(4357), + [anon_sym_POUNDcolumn] = ACTIONS(4357), + [anon_sym_POUNDfunction] = ACTIONS(4357), + [anon_sym_POUNDdsohandle] = ACTIONS(4357), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4355), + [anon_sym_LT_EQ] = ACTIONS(4355), + [anon_sym_GT_EQ] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4355), + [anon_sym_SLASH] = ACTIONS(4355), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4357), + [sym__plus_then_ws] = ACTIONS(4357), + [sym__minus_then_ws] = ACTIONS(4357), + [sym_bang] = ACTIONS(1069), + }, + [1058] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym__string_literal] = STATE(1718), + [sym_line_string_literal] = STATE(1718), + [sym_multi_line_string_literal] = STATE(1718), + [sym_raw_string_literal] = STATE(1718), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1718), + [sym__unary_expression] = STATE(1718), + [sym_postfix_expression] = STATE(1718), + [sym_constructor_expression] = STATE(1718), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1718), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1718), + [sym_prefix_expression] = STATE(1718), + [sym_as_expression] = STATE(1718), + [sym_selector_expression] = STATE(1718), + [sym__binary_expression] = STATE(1718), + [sym_multiplicative_expression] = STATE(1718), + [sym_additive_expression] = STATE(1718), + [sym_range_expression] = STATE(1718), + [sym_infix_expression] = STATE(1718), + [sym_nil_coalescing_expression] = STATE(1718), + [sym_check_expression] = STATE(1718), + [sym_comparison_expression] = STATE(1718), + [sym_equality_expression] = STATE(1718), + [sym_conjunction_expression] = STATE(1718), + [sym_disjunction_expression] = STATE(1718), + [sym_bitwise_operation] = STATE(1718), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1718), + [sym_await_expression] = STATE(1718), + [sym_ternary_expression] = STATE(1718), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1718), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1718), + [sym_dictionary_literal] = STATE(1718), + [sym__special_literal] = STATE(1718), + [sym__playground_literal] = STATE(1718), + [sym_lambda_literal] = STATE(1718), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1718), + [sym_key_path_expression] = STATE(1718), + [sym_key_path_string_expression] = STATE(1718), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1718), + [sym__comparison_operator] = STATE(1718), + [sym__additive_operator] = STATE(1718), + [sym__multiplicative_operator] = STATE(1718), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1718), + [sym__referenceable_operator] = STATE(1718), + [sym__eq_eq] = STATE(1718), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4359), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_oct_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4359), + [anon_sym_POUNDfileID] = ACTIONS(4361), + [anon_sym_POUNDfilePath] = ACTIONS(4361), + [anon_sym_POUNDline] = ACTIONS(4361), + [anon_sym_POUNDcolumn] = ACTIONS(4361), + [anon_sym_POUNDfunction] = ACTIONS(4361), + [anon_sym_POUNDdsohandle] = ACTIONS(4361), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4359), + [anon_sym_LT_EQ] = ACTIONS(4359), + [anon_sym_GT_EQ] = ACTIONS(4359), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4361), + [sym__plus_then_ws] = ACTIONS(4361), + [sym__minus_then_ws] = ACTIONS(4361), + [sym_bang] = ACTIONS(1069), + }, + [1059] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1616), + [sym_boolean_literal] = STATE(1616), + [sym__string_literal] = STATE(1616), + [sym_line_string_literal] = STATE(1616), + [sym_multi_line_string_literal] = STATE(1616), + [sym_raw_string_literal] = STATE(1616), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1616), + [sym__unary_expression] = STATE(1616), + [sym_postfix_expression] = STATE(1616), + [sym_constructor_expression] = STATE(1616), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1616), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1616), + [sym_prefix_expression] = STATE(1616), + [sym_as_expression] = STATE(1616), + [sym_selector_expression] = STATE(1616), + [sym__binary_expression] = STATE(1616), + [sym_multiplicative_expression] = STATE(1616), + [sym_additive_expression] = STATE(1616), + [sym_range_expression] = STATE(1616), + [sym_infix_expression] = STATE(1616), + [sym_nil_coalescing_expression] = STATE(1616), + [sym_check_expression] = STATE(1616), + [sym_comparison_expression] = STATE(1616), + [sym_equality_expression] = STATE(1616), + [sym_conjunction_expression] = STATE(1616), + [sym_disjunction_expression] = STATE(1616), + [sym_bitwise_operation] = STATE(1616), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1616), + [sym_await_expression] = STATE(1616), + [sym_ternary_expression] = STATE(1616), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1616), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1616), + [sym_dictionary_literal] = STATE(1616), + [sym__special_literal] = STATE(1616), + [sym__playground_literal] = STATE(1616), + [sym_lambda_literal] = STATE(1616), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1616), + [sym_key_path_expression] = STATE(1616), + [sym_key_path_string_expression] = STATE(1616), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1616), + [sym__comparison_operator] = STATE(1616), + [sym__additive_operator] = STATE(1616), + [sym__multiplicative_operator] = STATE(1616), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1616), + [sym__referenceable_operator] = STATE(1616), + [sym__eq_eq] = STATE(1616), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4363), + [sym_real_literal] = ACTIONS(4365), + [sym_integer_literal] = ACTIONS(4363), + [sym_hex_literal] = ACTIONS(4365), + [sym_oct_literal] = ACTIONS(4365), + [sym_bin_literal] = ACTIONS(4365), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4363), + [anon_sym_GT] = ACTIONS(4363), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4363), + [anon_sym_POUNDfileID] = ACTIONS(4365), + [anon_sym_POUNDfilePath] = ACTIONS(4365), + [anon_sym_POUNDline] = ACTIONS(4365), + [anon_sym_POUNDcolumn] = ACTIONS(4365), + [anon_sym_POUNDfunction] = ACTIONS(4365), + [anon_sym_POUNDdsohandle] = ACTIONS(4365), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4363), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4363), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4363), + [anon_sym_LT_EQ] = ACTIONS(4363), + [anon_sym_GT_EQ] = ACTIONS(4363), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4363), + [anon_sym_SLASH] = ACTIONS(4363), + [anon_sym_PERCENT] = ACTIONS(4363), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4365), + [sym__plus_then_ws] = ACTIONS(4365), + [sym__minus_then_ws] = ACTIONS(4365), + [sym_bang] = ACTIONS(1069), + }, + [1060] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1662), + [sym_boolean_literal] = STATE(1662), + [sym__string_literal] = STATE(1662), + [sym_line_string_literal] = STATE(1662), + [sym_multi_line_string_literal] = STATE(1662), + [sym_raw_string_literal] = STATE(1662), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1662), + [sym__unary_expression] = STATE(1662), + [sym_postfix_expression] = STATE(1662), + [sym_constructor_expression] = STATE(1662), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1662), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1662), + [sym_prefix_expression] = STATE(1662), + [sym_as_expression] = STATE(1662), + [sym_selector_expression] = STATE(1662), + [sym__binary_expression] = STATE(1662), + [sym_multiplicative_expression] = STATE(1662), + [sym_additive_expression] = STATE(1662), + [sym_range_expression] = STATE(1662), + [sym_infix_expression] = STATE(1662), + [sym_nil_coalescing_expression] = STATE(1662), + [sym_check_expression] = STATE(1662), + [sym_comparison_expression] = STATE(1662), + [sym_equality_expression] = STATE(1662), + [sym_conjunction_expression] = STATE(1662), + [sym_disjunction_expression] = STATE(1662), + [sym_bitwise_operation] = STATE(1662), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1662), + [sym_await_expression] = STATE(1662), + [sym_ternary_expression] = STATE(1662), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1662), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1662), + [sym_dictionary_literal] = STATE(1662), + [sym__special_literal] = STATE(1662), + [sym__playground_literal] = STATE(1662), + [sym_lambda_literal] = STATE(1662), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1662), + [sym_key_path_expression] = STATE(1662), + [sym_key_path_string_expression] = STATE(1662), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1662), + [sym__comparison_operator] = STATE(1662), + [sym__additive_operator] = STATE(1662), + [sym__multiplicative_operator] = STATE(1662), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1662), + [sym__referenceable_operator] = STATE(1662), + [sym__eq_eq] = STATE(1662), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4367), + [sym_real_literal] = ACTIONS(4369), + [sym_integer_literal] = ACTIONS(4367), + [sym_hex_literal] = ACTIONS(4369), + [sym_oct_literal] = ACTIONS(4369), + [sym_bin_literal] = ACTIONS(4369), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4367), + [anon_sym_POUNDfileID] = ACTIONS(4369), + [anon_sym_POUNDfilePath] = ACTIONS(4369), + [anon_sym_POUNDline] = ACTIONS(4369), + [anon_sym_POUNDcolumn] = ACTIONS(4369), + [anon_sym_POUNDfunction] = ACTIONS(4369), + [anon_sym_POUNDdsohandle] = ACTIONS(4369), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4367), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4367), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4367), + [anon_sym_LT_EQ] = ACTIONS(4367), + [anon_sym_GT_EQ] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4369), + [sym__plus_then_ws] = ACTIONS(4369), + [sym__minus_then_ws] = ACTIONS(4369), + [sym_bang] = ACTIONS(1069), + }, + [1061] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1564), + [sym_boolean_literal] = STATE(1564), + [sym__string_literal] = STATE(1564), + [sym_line_string_literal] = STATE(1564), + [sym_multi_line_string_literal] = STATE(1564), + [sym_raw_string_literal] = STATE(1564), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1564), + [sym__unary_expression] = STATE(1564), + [sym_postfix_expression] = STATE(1564), + [sym_constructor_expression] = STATE(1564), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1564), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1564), + [sym_prefix_expression] = STATE(1564), + [sym_as_expression] = STATE(1564), + [sym_selector_expression] = STATE(1564), + [sym__binary_expression] = STATE(1564), + [sym_multiplicative_expression] = STATE(1564), + [sym_additive_expression] = STATE(1564), + [sym_range_expression] = STATE(1564), + [sym_infix_expression] = STATE(1564), + [sym_nil_coalescing_expression] = STATE(1564), + [sym_check_expression] = STATE(1564), + [sym_comparison_expression] = STATE(1564), + [sym_equality_expression] = STATE(1564), + [sym_conjunction_expression] = STATE(1564), + [sym_disjunction_expression] = STATE(1564), + [sym_bitwise_operation] = STATE(1564), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1564), + [sym_await_expression] = STATE(1564), + [sym_ternary_expression] = STATE(1564), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1564), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1564), + [sym_dictionary_literal] = STATE(1564), + [sym__special_literal] = STATE(1564), + [sym__playground_literal] = STATE(1564), + [sym_lambda_literal] = STATE(1564), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1564), + [sym_key_path_expression] = STATE(1564), + [sym_key_path_string_expression] = STATE(1564), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1564), + [sym__comparison_operator] = STATE(1564), + [sym__additive_operator] = STATE(1564), + [sym__multiplicative_operator] = STATE(1564), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1564), + [sym__referenceable_operator] = STATE(1564), + [sym__eq_eq] = STATE(1564), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4371), + [sym_real_literal] = ACTIONS(4373), + [sym_integer_literal] = ACTIONS(4371), + [sym_hex_literal] = ACTIONS(4373), + [sym_oct_literal] = ACTIONS(4373), + [sym_bin_literal] = ACTIONS(4373), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4371), + [anon_sym_GT] = ACTIONS(4371), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4371), + [anon_sym_POUNDfileID] = ACTIONS(4373), + [anon_sym_POUNDfilePath] = ACTIONS(4373), + [anon_sym_POUNDline] = ACTIONS(4373), + [anon_sym_POUNDcolumn] = ACTIONS(4373), + [anon_sym_POUNDfunction] = ACTIONS(4373), + [anon_sym_POUNDdsohandle] = ACTIONS(4373), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4371), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4371), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4371), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_PERCENT] = ACTIONS(4371), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4373), + [sym__plus_then_ws] = ACTIONS(4373), + [sym__minus_then_ws] = ACTIONS(4373), + [sym_bang] = ACTIONS(1069), + }, + [1062] = { + [sym_simple_identifier] = STATE(1186), + [sym__basic_literal] = STATE(2215), + [sym_boolean_literal] = STATE(2215), + [sym__string_literal] = STATE(2215), + [sym_line_string_literal] = STATE(2215), + [sym_multi_line_string_literal] = STATE(2215), + [sym_raw_string_literal] = STATE(2215), + [sym_user_type] = STATE(6067), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(6067), + [sym_dictionary_type] = STATE(6067), + [sym__expression] = STATE(2215), + [sym__unary_expression] = STATE(2215), + [sym_postfix_expression] = STATE(2215), + [sym_constructor_expression] = STATE(2215), + [sym_navigation_expression] = STATE(1203), + [sym__navigable_type_expression] = STATE(7564), + [sym_open_start_range_expression] = STATE(2215), + [sym__range_operator] = STATE(750), + [sym_open_end_range_expression] = STATE(2215), + [sym_prefix_expression] = STATE(2215), + [sym_as_expression] = STATE(2215), + [sym_selector_expression] = STATE(2215), + [sym__binary_expression] = STATE(2215), + [sym_multiplicative_expression] = STATE(2215), + [sym_additive_expression] = STATE(2215), + [sym_range_expression] = STATE(2215), + [sym_infix_expression] = STATE(2215), + [sym_nil_coalescing_expression] = STATE(2215), + [sym_check_expression] = STATE(2215), + [sym_comparison_expression] = STATE(2215), + [sym_equality_expression] = STATE(2215), + [sym_conjunction_expression] = STATE(2215), + [sym_disjunction_expression] = STATE(2215), + [sym_bitwise_operation] = STATE(2215), + [sym_custom_operator] = STATE(1327), + [sym_try_expression] = STATE(2215), + [sym_await_expression] = STATE(2215), + [sym_ternary_expression] = STATE(2215), + [sym_call_expression] = STATE(1203), + [sym__primary_expression] = STATE(2215), + [sym_tuple_expression] = STATE(1195), + [sym_array_literal] = STATE(2215), + [sym_dictionary_literal] = STATE(2215), + [sym__special_literal] = STATE(2215), + [sym__playground_literal] = STATE(2215), + [sym_lambda_literal] = STATE(2215), + [sym_self_expression] = STATE(1195), + [sym_super_expression] = STATE(2215), + [sym_key_path_expression] = STATE(2215), + [sym_key_path_string_expression] = STATE(2215), + [sym__try_operator] = STATE(751), + [sym__equality_operator] = STATE(2215), + [sym__comparison_operator] = STATE(2215), + [sym__additive_operator] = STATE(2215), + [sym__multiplicative_operator] = STATE(2215), + [sym__prefix_unary_operator] = STATE(754), + [sym_directly_assignable_expression] = STATE(5836), + [sym_assignment] = STATE(2215), + [sym__referenceable_operator] = STATE(2215), + [sym__eq_eq] = STATE(2215), + [sym__dot] = STATE(754), + [sym__three_dot_operator] = STATE(1331), + [sym__open_ended_range_operator] = STATE(750), + [aux_sym_raw_string_literal_repeat1] = STATE(7561), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(765), + [aux_sym_simple_identifier_token2] = ACTIONS(767), + [aux_sym_simple_identifier_token3] = ACTIONS(767), + [aux_sym_simple_identifier_token4] = ACTIONS(767), + [anon_sym_nil] = ACTIONS(4375), + [sym_real_literal] = ACTIONS(4377), + [sym_integer_literal] = ACTIONS(4375), + [sym_hex_literal] = ACTIONS(4377), + [sym_oct_literal] = ACTIONS(4377), + [sym_bin_literal] = ACTIONS(4377), + [anon_sym_true] = ACTIONS(773), + [anon_sym_false] = ACTIONS(773), + [anon_sym_DQUOTE] = ACTIONS(775), + [anon_sym_BSLASH] = ACTIONS(777), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(785), + [anon_sym_AMP] = ACTIONS(789), + [anon_sym_async] = ACTIONS(791), + [anon_sym_POUNDselector] = ACTIONS(793), + [aux_sym_custom_operator_token1] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(4375), + [anon_sym_GT] = ACTIONS(4375), + [sym__await_operator] = ACTIONS(797), + [anon_sym_POUNDfile] = ACTIONS(4375), + [anon_sym_POUNDfileID] = ACTIONS(4377), + [anon_sym_POUNDfilePath] = ACTIONS(4377), + [anon_sym_POUNDline] = ACTIONS(4377), + [anon_sym_POUNDcolumn] = ACTIONS(4377), + [anon_sym_POUNDfunction] = ACTIONS(4377), + [anon_sym_POUNDdsohandle] = ACTIONS(4377), + [anon_sym_POUNDcolorLiteral] = ACTIONS(799), + [anon_sym_POUNDfileLiteral] = ACTIONS(799), + [anon_sym_POUNDimageLiteral] = ACTIONS(799), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_self] = ACTIONS(803), + [anon_sym_super] = ACTIONS(805), + [anon_sym_POUNDkeyPath] = ACTIONS(807), + [anon_sym_try] = ACTIONS(809), + [anon_sym_try_BANG] = ACTIONS(811), + [anon_sym_try_QMARK] = ACTIONS(811), + [anon_sym_BANG_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(813), + [anon_sym_DASH] = ACTIONS(813), + [anon_sym_STAR] = ACTIONS(4375), + [anon_sym_SLASH] = ACTIONS(4375), + [anon_sym_PERCENT] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(815), + [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_TILDE] = ACTIONS(815), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(825), + [sym__dot_custom] = ACTIONS(827), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(831), + [sym__eq_eq_custom] = ACTIONS(4377), + [sym__plus_then_ws] = ACTIONS(4377), + [sym__minus_then_ws] = ACTIONS(4377), + [sym_bang] = ACTIONS(833), + }, + [1063] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1891), + [sym_boolean_literal] = STATE(1891), + [sym__string_literal] = STATE(1891), + [sym_line_string_literal] = STATE(1891), + [sym_multi_line_string_literal] = STATE(1891), + [sym_raw_string_literal] = STATE(1891), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1891), + [sym__unary_expression] = STATE(1891), + [sym_postfix_expression] = STATE(1891), + [sym_constructor_expression] = STATE(1891), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1891), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1891), + [sym_prefix_expression] = STATE(1891), + [sym_as_expression] = STATE(1891), + [sym_selector_expression] = STATE(1891), + [sym__binary_expression] = STATE(1891), + [sym_multiplicative_expression] = STATE(1891), + [sym_additive_expression] = STATE(1891), + [sym_range_expression] = STATE(1891), + [sym_infix_expression] = STATE(1891), + [sym_nil_coalescing_expression] = STATE(1891), + [sym_check_expression] = STATE(1891), + [sym_comparison_expression] = STATE(1891), + [sym_equality_expression] = STATE(1891), + [sym_conjunction_expression] = STATE(1891), + [sym_disjunction_expression] = STATE(1891), + [sym_bitwise_operation] = STATE(1891), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1891), + [sym_await_expression] = STATE(1891), + [sym_ternary_expression] = STATE(1891), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1891), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1891), + [sym_dictionary_literal] = STATE(1891), + [sym__special_literal] = STATE(1891), + [sym__playground_literal] = STATE(1891), + [sym_lambda_literal] = STATE(1891), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1891), + [sym_key_path_expression] = STATE(1891), + [sym_key_path_string_expression] = STATE(1891), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1891), + [sym__comparison_operator] = STATE(1891), + [sym__additive_operator] = STATE(1891), + [sym__multiplicative_operator] = STATE(1891), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1891), + [sym__referenceable_operator] = STATE(1891), + [sym__eq_eq] = STATE(1891), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4379), + [sym_real_literal] = ACTIONS(4381), + [sym_integer_literal] = ACTIONS(4379), + [sym_hex_literal] = ACTIONS(4381), + [sym_oct_literal] = ACTIONS(4381), + [sym_bin_literal] = ACTIONS(4381), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4379), + [anon_sym_GT] = ACTIONS(4379), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4379), + [anon_sym_POUNDfileID] = ACTIONS(4381), + [anon_sym_POUNDfilePath] = ACTIONS(4381), + [anon_sym_POUNDline] = ACTIONS(4381), + [anon_sym_POUNDcolumn] = ACTIONS(4381), + [anon_sym_POUNDfunction] = ACTIONS(4381), + [anon_sym_POUNDdsohandle] = ACTIONS(4381), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4379), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), + [anon_sym_LT_EQ] = ACTIONS(4379), + [anon_sym_GT_EQ] = ACTIONS(4379), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4379), + [anon_sym_SLASH] = ACTIONS(4379), + [anon_sym_PERCENT] = ACTIONS(4379), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4381), + [sym__plus_then_ws] = ACTIONS(4381), + [sym__minus_then_ws] = ACTIONS(4381), + [sym_bang] = ACTIONS(1069), + }, + [1064] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2029), + [sym_boolean_literal] = STATE(2029), + [sym__string_literal] = STATE(2029), + [sym_line_string_literal] = STATE(2029), + [sym_multi_line_string_literal] = STATE(2029), + [sym_raw_string_literal] = STATE(2029), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2029), + [sym__unary_expression] = STATE(2029), + [sym_postfix_expression] = STATE(2029), + [sym_constructor_expression] = STATE(2029), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2029), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2029), + [sym_prefix_expression] = STATE(2029), + [sym_as_expression] = STATE(2029), + [sym_selector_expression] = STATE(2029), + [sym__binary_expression] = STATE(2029), + [sym_multiplicative_expression] = STATE(2029), + [sym_additive_expression] = STATE(2029), + [sym_range_expression] = STATE(2029), + [sym_infix_expression] = STATE(2029), + [sym_nil_coalescing_expression] = STATE(2029), + [sym_check_expression] = STATE(2029), + [sym_comparison_expression] = STATE(2029), + [sym_equality_expression] = STATE(2029), + [sym_conjunction_expression] = STATE(2029), + [sym_disjunction_expression] = STATE(2029), + [sym_bitwise_operation] = STATE(2029), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2029), + [sym_await_expression] = STATE(2029), + [sym_ternary_expression] = STATE(2029), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2029), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2029), + [sym_dictionary_literal] = STATE(2029), + [sym__special_literal] = STATE(2029), + [sym__playground_literal] = STATE(2029), + [sym_lambda_literal] = STATE(2029), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2029), + [sym_key_path_expression] = STATE(2029), + [sym_key_path_string_expression] = STATE(2029), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2029), + [sym__comparison_operator] = STATE(2029), + [sym__additive_operator] = STATE(2029), + [sym__multiplicative_operator] = STATE(2029), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2029), + [sym__referenceable_operator] = STATE(2029), + [sym__eq_eq] = STATE(2029), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4383), + [sym_real_literal] = ACTIONS(4385), + [sym_integer_literal] = ACTIONS(4383), + [sym_hex_literal] = ACTIONS(4385), + [sym_oct_literal] = ACTIONS(4385), + [sym_bin_literal] = ACTIONS(4385), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4383), + [anon_sym_GT] = ACTIONS(4383), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4383), + [anon_sym_POUNDfileID] = ACTIONS(4385), + [anon_sym_POUNDfilePath] = ACTIONS(4385), + [anon_sym_POUNDline] = ACTIONS(4385), + [anon_sym_POUNDcolumn] = ACTIONS(4385), + [anon_sym_POUNDfunction] = ACTIONS(4385), + [anon_sym_POUNDdsohandle] = ACTIONS(4385), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4383), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4383), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4383), + [anon_sym_LT_EQ] = ACTIONS(4383), + [anon_sym_GT_EQ] = ACTIONS(4383), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4383), + [anon_sym_SLASH] = ACTIONS(4383), + [anon_sym_PERCENT] = ACTIONS(4383), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4385), + [sym__plus_then_ws] = ACTIONS(4385), + [sym__minus_then_ws] = ACTIONS(4385), + [sym_bang] = ACTIONS(1069), + }, + [1065] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2027), + [sym_boolean_literal] = STATE(2027), + [sym__string_literal] = STATE(2027), + [sym_line_string_literal] = STATE(2027), + [sym_multi_line_string_literal] = STATE(2027), + [sym_raw_string_literal] = STATE(2027), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2027), + [sym__unary_expression] = STATE(2027), + [sym_postfix_expression] = STATE(2027), + [sym_constructor_expression] = STATE(2027), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2027), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2027), + [sym_prefix_expression] = STATE(2027), + [sym_as_expression] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym__binary_expression] = STATE(2027), + [sym_multiplicative_expression] = STATE(2027), + [sym_additive_expression] = STATE(2027), + [sym_range_expression] = STATE(2027), + [sym_infix_expression] = STATE(2027), + [sym_nil_coalescing_expression] = STATE(2027), + [sym_check_expression] = STATE(2027), + [sym_comparison_expression] = STATE(2027), + [sym_equality_expression] = STATE(2027), + [sym_conjunction_expression] = STATE(2027), + [sym_disjunction_expression] = STATE(2027), + [sym_bitwise_operation] = STATE(2027), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2027), + [sym_await_expression] = STATE(2027), + [sym_ternary_expression] = STATE(2027), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2027), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2027), + [sym_dictionary_literal] = STATE(2027), + [sym__special_literal] = STATE(2027), + [sym__playground_literal] = STATE(2027), + [sym_lambda_literal] = STATE(2027), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2027), + [sym_key_path_expression] = STATE(2027), + [sym_key_path_string_expression] = STATE(2027), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2027), + [sym__comparison_operator] = STATE(2027), + [sym__additive_operator] = STATE(2027), + [sym__multiplicative_operator] = STATE(2027), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2027), + [sym__referenceable_operator] = STATE(2027), + [sym__eq_eq] = STATE(2027), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4387), + [sym_real_literal] = ACTIONS(4389), + [sym_integer_literal] = ACTIONS(4387), + [sym_hex_literal] = ACTIONS(4389), + [sym_oct_literal] = ACTIONS(4389), + [sym_bin_literal] = ACTIONS(4389), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4387), + [anon_sym_GT] = ACTIONS(4387), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4387), + [anon_sym_POUNDfileID] = ACTIONS(4389), + [anon_sym_POUNDfilePath] = ACTIONS(4389), + [anon_sym_POUNDline] = ACTIONS(4389), + [anon_sym_POUNDcolumn] = ACTIONS(4389), + [anon_sym_POUNDfunction] = ACTIONS(4389), + [anon_sym_POUNDdsohandle] = ACTIONS(4389), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), + [anon_sym_LT_EQ] = ACTIONS(4387), + [anon_sym_GT_EQ] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4387), + [anon_sym_SLASH] = ACTIONS(4387), + [anon_sym_PERCENT] = ACTIONS(4387), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4389), + [sym__plus_then_ws] = ACTIONS(4389), + [sym__minus_then_ws] = ACTIONS(4389), + [sym_bang] = ACTIONS(1069), + }, + [1066] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1635), + [sym_boolean_literal] = STATE(1635), + [sym__string_literal] = STATE(1635), + [sym_line_string_literal] = STATE(1635), + [sym_multi_line_string_literal] = STATE(1635), + [sym_raw_string_literal] = STATE(1635), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1635), + [sym__unary_expression] = STATE(1635), + [sym_postfix_expression] = STATE(1635), + [sym_constructor_expression] = STATE(1635), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1635), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1635), + [sym_prefix_expression] = STATE(1635), + [sym_as_expression] = STATE(1635), + [sym_selector_expression] = STATE(1635), + [sym__binary_expression] = STATE(1635), + [sym_multiplicative_expression] = STATE(1635), + [sym_additive_expression] = STATE(1635), + [sym_range_expression] = STATE(1635), + [sym_infix_expression] = STATE(1635), + [sym_nil_coalescing_expression] = STATE(1635), + [sym_check_expression] = STATE(1635), + [sym_comparison_expression] = STATE(1635), + [sym_equality_expression] = STATE(1635), + [sym_conjunction_expression] = STATE(1635), + [sym_disjunction_expression] = STATE(1635), + [sym_bitwise_operation] = STATE(1635), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1635), + [sym_await_expression] = STATE(1635), + [sym_ternary_expression] = STATE(1635), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1635), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1635), + [sym_dictionary_literal] = STATE(1635), + [sym__special_literal] = STATE(1635), + [sym__playground_literal] = STATE(1635), + [sym_lambda_literal] = STATE(1635), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1635), + [sym_key_path_expression] = STATE(1635), + [sym_key_path_string_expression] = STATE(1635), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1635), + [sym__comparison_operator] = STATE(1635), + [sym__additive_operator] = STATE(1635), + [sym__multiplicative_operator] = STATE(1635), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1635), + [sym__referenceable_operator] = STATE(1635), + [sym__eq_eq] = STATE(1635), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4391), + [sym_real_literal] = ACTIONS(4393), + [sym_integer_literal] = ACTIONS(4391), + [sym_hex_literal] = ACTIONS(4393), + [sym_oct_literal] = ACTIONS(4393), + [sym_bin_literal] = ACTIONS(4393), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4391), + [anon_sym_GT] = ACTIONS(4391), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4391), + [anon_sym_POUNDfileID] = ACTIONS(4393), + [anon_sym_POUNDfilePath] = ACTIONS(4393), + [anon_sym_POUNDline] = ACTIONS(4393), + [anon_sym_POUNDcolumn] = ACTIONS(4393), + [anon_sym_POUNDfunction] = ACTIONS(4393), + [anon_sym_POUNDdsohandle] = ACTIONS(4393), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4391), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), + [anon_sym_LT_EQ] = ACTIONS(4391), + [anon_sym_GT_EQ] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4391), + [anon_sym_SLASH] = ACTIONS(4391), + [anon_sym_PERCENT] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4393), + [sym__plus_then_ws] = ACTIONS(4393), + [sym__minus_then_ws] = ACTIONS(4393), + [sym_bang] = ACTIONS(1069), + }, + [1067] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1719), + [sym_boolean_literal] = STATE(1719), + [sym__string_literal] = STATE(1719), + [sym_line_string_literal] = STATE(1719), + [sym_multi_line_string_literal] = STATE(1719), + [sym_raw_string_literal] = STATE(1719), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1719), + [sym__unary_expression] = STATE(1719), + [sym_postfix_expression] = STATE(1719), + [sym_constructor_expression] = STATE(1719), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1719), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1719), + [sym_prefix_expression] = STATE(1719), + [sym_as_expression] = STATE(1719), + [sym_selector_expression] = STATE(1719), + [sym__binary_expression] = STATE(1719), + [sym_multiplicative_expression] = STATE(1719), + [sym_additive_expression] = STATE(1719), + [sym_range_expression] = STATE(1719), + [sym_infix_expression] = STATE(1719), + [sym_nil_coalescing_expression] = STATE(1719), + [sym_check_expression] = STATE(1719), + [sym_comparison_expression] = STATE(1719), + [sym_equality_expression] = STATE(1719), + [sym_conjunction_expression] = STATE(1719), + [sym_disjunction_expression] = STATE(1719), + [sym_bitwise_operation] = STATE(1719), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1719), + [sym_await_expression] = STATE(1719), + [sym_ternary_expression] = STATE(1719), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1719), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1719), + [sym_dictionary_literal] = STATE(1719), + [sym__special_literal] = STATE(1719), + [sym__playground_literal] = STATE(1719), + [sym_lambda_literal] = STATE(1719), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1719), + [sym_key_path_expression] = STATE(1719), + [sym_key_path_string_expression] = STATE(1719), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1719), + [sym__comparison_operator] = STATE(1719), + [sym__additive_operator] = STATE(1719), + [sym__multiplicative_operator] = STATE(1719), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1719), + [sym__referenceable_operator] = STATE(1719), + [sym__eq_eq] = STATE(1719), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4395), + [sym_real_literal] = ACTIONS(4397), + [sym_integer_literal] = ACTIONS(4395), + [sym_hex_literal] = ACTIONS(4397), + [sym_oct_literal] = ACTIONS(4397), + [sym_bin_literal] = ACTIONS(4397), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4395), + [anon_sym_GT] = ACTIONS(4395), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4395), + [anon_sym_POUNDfileID] = ACTIONS(4397), + [anon_sym_POUNDfilePath] = ACTIONS(4397), + [anon_sym_POUNDline] = ACTIONS(4397), + [anon_sym_POUNDcolumn] = ACTIONS(4397), + [anon_sym_POUNDfunction] = ACTIONS(4397), + [anon_sym_POUNDdsohandle] = ACTIONS(4397), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4395), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), + [anon_sym_LT_EQ] = ACTIONS(4395), + [anon_sym_GT_EQ] = ACTIONS(4395), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4395), + [anon_sym_SLASH] = ACTIONS(4395), + [anon_sym_PERCENT] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4397), + [sym__plus_then_ws] = ACTIONS(4397), + [sym__minus_then_ws] = ACTIONS(4397), + [sym_bang] = ACTIONS(1069), + }, + [1068] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1720), + [sym_boolean_literal] = STATE(1720), + [sym__string_literal] = STATE(1720), + [sym_line_string_literal] = STATE(1720), + [sym_multi_line_string_literal] = STATE(1720), + [sym_raw_string_literal] = STATE(1720), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1720), + [sym__unary_expression] = STATE(1720), + [sym_postfix_expression] = STATE(1720), + [sym_constructor_expression] = STATE(1720), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1720), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1720), + [sym_prefix_expression] = STATE(1720), + [sym_as_expression] = STATE(1720), + [sym_selector_expression] = STATE(1720), + [sym__binary_expression] = STATE(1720), + [sym_multiplicative_expression] = STATE(1720), + [sym_additive_expression] = STATE(1720), + [sym_range_expression] = STATE(1720), + [sym_infix_expression] = STATE(1720), + [sym_nil_coalescing_expression] = STATE(1720), + [sym_check_expression] = STATE(1720), + [sym_comparison_expression] = STATE(1720), + [sym_equality_expression] = STATE(1720), + [sym_conjunction_expression] = STATE(1720), + [sym_disjunction_expression] = STATE(1720), + [sym_bitwise_operation] = STATE(1720), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1720), + [sym_await_expression] = STATE(1720), + [sym_ternary_expression] = STATE(1720), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1720), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1720), + [sym_dictionary_literal] = STATE(1720), + [sym__special_literal] = STATE(1720), + [sym__playground_literal] = STATE(1720), + [sym_lambda_literal] = STATE(1720), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1720), + [sym_key_path_expression] = STATE(1720), + [sym_key_path_string_expression] = STATE(1720), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1720), + [sym__comparison_operator] = STATE(1720), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1720), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1720), + [sym__referenceable_operator] = STATE(1720), + [sym__eq_eq] = STATE(1720), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4399), + [sym_real_literal] = ACTIONS(4401), + [sym_integer_literal] = ACTIONS(4399), + [sym_hex_literal] = ACTIONS(4401), + [sym_oct_literal] = ACTIONS(4401), + [sym_bin_literal] = ACTIONS(4401), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4399), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4399), + [anon_sym_POUNDfileID] = ACTIONS(4401), + [anon_sym_POUNDfilePath] = ACTIONS(4401), + [anon_sym_POUNDline] = ACTIONS(4401), + [anon_sym_POUNDcolumn] = ACTIONS(4401), + [anon_sym_POUNDfunction] = ACTIONS(4401), + [anon_sym_POUNDdsohandle] = ACTIONS(4401), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4399), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4399), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4399), + [anon_sym_LT_EQ] = ACTIONS(4399), + [anon_sym_GT_EQ] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4399), + [anon_sym_SLASH] = ACTIONS(4399), + [anon_sym_PERCENT] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4401), + [sym__plus_then_ws] = ACTIONS(4401), + [sym__minus_then_ws] = ACTIONS(4401), + [sym_bang] = ACTIONS(1069), + }, + [1069] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1634), + [sym_boolean_literal] = STATE(1634), + [sym__string_literal] = STATE(1634), + [sym_line_string_literal] = STATE(1634), + [sym_multi_line_string_literal] = STATE(1634), + [sym_raw_string_literal] = STATE(1634), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1634), + [sym__unary_expression] = STATE(1634), + [sym_postfix_expression] = STATE(1634), + [sym_constructor_expression] = STATE(1634), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1634), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1634), + [sym_prefix_expression] = STATE(1634), + [sym_as_expression] = STATE(1634), + [sym_selector_expression] = STATE(1634), + [sym__binary_expression] = STATE(1634), + [sym_multiplicative_expression] = STATE(1634), + [sym_additive_expression] = STATE(1634), + [sym_range_expression] = STATE(1634), + [sym_infix_expression] = STATE(1634), + [sym_nil_coalescing_expression] = STATE(1634), + [sym_check_expression] = STATE(1634), + [sym_comparison_expression] = STATE(1634), + [sym_equality_expression] = STATE(1634), + [sym_conjunction_expression] = STATE(1634), + [sym_disjunction_expression] = STATE(1634), + [sym_bitwise_operation] = STATE(1634), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1634), + [sym_await_expression] = STATE(1634), + [sym_ternary_expression] = STATE(1634), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1634), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1634), + [sym_dictionary_literal] = STATE(1634), + [sym__special_literal] = STATE(1634), + [sym__playground_literal] = STATE(1634), + [sym_lambda_literal] = STATE(1634), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1634), + [sym_key_path_expression] = STATE(1634), + [sym_key_path_string_expression] = STATE(1634), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1634), + [sym__comparison_operator] = STATE(1634), + [sym__additive_operator] = STATE(1634), + [sym__multiplicative_operator] = STATE(1634), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1634), + [sym__referenceable_operator] = STATE(1634), + [sym__eq_eq] = STATE(1634), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4403), + [sym_real_literal] = ACTIONS(4405), + [sym_integer_literal] = ACTIONS(4403), + [sym_hex_literal] = ACTIONS(4405), + [sym_oct_literal] = ACTIONS(4405), + [sym_bin_literal] = ACTIONS(4405), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4403), + [anon_sym_GT] = ACTIONS(4403), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4403), + [anon_sym_POUNDfileID] = ACTIONS(4405), + [anon_sym_POUNDfilePath] = ACTIONS(4405), + [anon_sym_POUNDline] = ACTIONS(4405), + [anon_sym_POUNDcolumn] = ACTIONS(4405), + [anon_sym_POUNDfunction] = ACTIONS(4405), + [anon_sym_POUNDdsohandle] = ACTIONS(4405), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4403), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), + [anon_sym_LT_EQ] = ACTIONS(4403), + [anon_sym_GT_EQ] = ACTIONS(4403), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4403), + [anon_sym_SLASH] = ACTIONS(4403), + [anon_sym_PERCENT] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4405), + [sym__plus_then_ws] = ACTIONS(4405), + [sym__minus_then_ws] = ACTIONS(4405), + [sym_bang] = ACTIONS(1069), + }, + [1070] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2019), + [sym_boolean_literal] = STATE(2019), + [sym__string_literal] = STATE(2019), + [sym_line_string_literal] = STATE(2019), + [sym_multi_line_string_literal] = STATE(2019), + [sym_raw_string_literal] = STATE(2019), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2019), + [sym__unary_expression] = STATE(2019), + [sym_postfix_expression] = STATE(2019), + [sym_constructor_expression] = STATE(2019), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2019), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2019), + [sym_prefix_expression] = STATE(2019), + [sym_as_expression] = STATE(2019), + [sym_selector_expression] = STATE(2019), + [sym__binary_expression] = STATE(2019), + [sym_multiplicative_expression] = STATE(2019), + [sym_additive_expression] = STATE(2019), + [sym_range_expression] = STATE(2019), + [sym_infix_expression] = STATE(2019), + [sym_nil_coalescing_expression] = STATE(2019), + [sym_check_expression] = STATE(2019), + [sym_comparison_expression] = STATE(2019), + [sym_equality_expression] = STATE(2019), + [sym_conjunction_expression] = STATE(2019), + [sym_disjunction_expression] = STATE(2019), + [sym_bitwise_operation] = STATE(2019), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2019), + [sym_await_expression] = STATE(2019), + [sym_ternary_expression] = STATE(2019), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2019), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2019), + [sym_dictionary_literal] = STATE(2019), + [sym__special_literal] = STATE(2019), + [sym__playground_literal] = STATE(2019), + [sym_lambda_literal] = STATE(2019), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2019), + [sym_key_path_expression] = STATE(2019), + [sym_key_path_string_expression] = STATE(2019), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2019), + [sym__comparison_operator] = STATE(2019), + [sym__additive_operator] = STATE(2019), + [sym__multiplicative_operator] = STATE(2019), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2019), + [sym__referenceable_operator] = STATE(2019), + [sym__eq_eq] = STATE(2019), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4407), + [sym_real_literal] = ACTIONS(4409), + [sym_integer_literal] = ACTIONS(4407), + [sym_hex_literal] = ACTIONS(4409), + [sym_oct_literal] = ACTIONS(4409), + [sym_bin_literal] = ACTIONS(4409), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4407), + [anon_sym_POUNDfileID] = ACTIONS(4409), + [anon_sym_POUNDfilePath] = ACTIONS(4409), + [anon_sym_POUNDline] = ACTIONS(4409), + [anon_sym_POUNDcolumn] = ACTIONS(4409), + [anon_sym_POUNDfunction] = ACTIONS(4409), + [anon_sym_POUNDdsohandle] = ACTIONS(4409), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4407), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), + [anon_sym_LT_EQ] = ACTIONS(4407), + [anon_sym_GT_EQ] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4407), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_PERCENT] = ACTIONS(4407), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4409), + [sym__plus_then_ws] = ACTIONS(4409), + [sym__minus_then_ws] = ACTIONS(4409), + [sym_bang] = ACTIONS(1069), + }, + [1071] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1618), + [sym_boolean_literal] = STATE(1618), + [sym__string_literal] = STATE(1618), + [sym_line_string_literal] = STATE(1618), + [sym_multi_line_string_literal] = STATE(1618), + [sym_raw_string_literal] = STATE(1618), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1618), + [sym__unary_expression] = STATE(1618), + [sym_postfix_expression] = STATE(1618), + [sym_constructor_expression] = STATE(1618), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1618), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1618), + [sym_prefix_expression] = STATE(1618), + [sym_as_expression] = STATE(1618), + [sym_selector_expression] = STATE(1618), + [sym__binary_expression] = STATE(1618), + [sym_multiplicative_expression] = STATE(1618), + [sym_additive_expression] = STATE(1618), + [sym_range_expression] = STATE(1618), + [sym_infix_expression] = STATE(1618), + [sym_nil_coalescing_expression] = STATE(1618), + [sym_check_expression] = STATE(1618), + [sym_comparison_expression] = STATE(1618), + [sym_equality_expression] = STATE(1618), + [sym_conjunction_expression] = STATE(1618), + [sym_disjunction_expression] = STATE(1618), + [sym_bitwise_operation] = STATE(1618), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1618), + [sym_await_expression] = STATE(1618), + [sym_ternary_expression] = STATE(1618), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1618), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1618), + [sym_dictionary_literal] = STATE(1618), + [sym__special_literal] = STATE(1618), + [sym__playground_literal] = STATE(1618), + [sym_lambda_literal] = STATE(1618), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1618), + [sym_key_path_expression] = STATE(1618), + [sym_key_path_string_expression] = STATE(1618), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1618), + [sym__comparison_operator] = STATE(1618), + [sym__additive_operator] = STATE(1618), + [sym__multiplicative_operator] = STATE(1618), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1618), + [sym__referenceable_operator] = STATE(1618), + [sym__eq_eq] = STATE(1618), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4411), + [sym_real_literal] = ACTIONS(4413), + [sym_integer_literal] = ACTIONS(4411), + [sym_hex_literal] = ACTIONS(4413), + [sym_oct_literal] = ACTIONS(4413), + [sym_bin_literal] = ACTIONS(4413), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4411), + [anon_sym_GT] = ACTIONS(4411), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4411), + [anon_sym_POUNDfileID] = ACTIONS(4413), + [anon_sym_POUNDfilePath] = ACTIONS(4413), + [anon_sym_POUNDline] = ACTIONS(4413), + [anon_sym_POUNDcolumn] = ACTIONS(4413), + [anon_sym_POUNDfunction] = ACTIONS(4413), + [anon_sym_POUNDdsohandle] = ACTIONS(4413), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4411), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4411), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4411), + [anon_sym_LT_EQ] = ACTIONS(4411), + [anon_sym_GT_EQ] = ACTIONS(4411), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_SLASH] = ACTIONS(4411), + [anon_sym_PERCENT] = ACTIONS(4411), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4413), + [sym__plus_then_ws] = ACTIONS(4413), + [sym__minus_then_ws] = ACTIONS(4413), + [sym_bang] = ACTIONS(1069), + }, + [1072] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1724), + [sym_boolean_literal] = STATE(1724), + [sym__string_literal] = STATE(1724), + [sym_line_string_literal] = STATE(1724), + [sym_multi_line_string_literal] = STATE(1724), + [sym_raw_string_literal] = STATE(1724), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1724), + [sym__unary_expression] = STATE(1724), + [sym_postfix_expression] = STATE(1724), + [sym_constructor_expression] = STATE(1724), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1724), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1724), + [sym_prefix_expression] = STATE(1724), + [sym_as_expression] = STATE(1724), + [sym_selector_expression] = STATE(1724), + [sym__binary_expression] = STATE(1724), + [sym_multiplicative_expression] = STATE(1724), + [sym_additive_expression] = STATE(1724), + [sym_range_expression] = STATE(1724), + [sym_infix_expression] = STATE(1724), + [sym_nil_coalescing_expression] = STATE(1724), + [sym_check_expression] = STATE(1724), + [sym_comparison_expression] = STATE(1724), + [sym_equality_expression] = STATE(1724), + [sym_conjunction_expression] = STATE(1724), + [sym_disjunction_expression] = STATE(1724), + [sym_bitwise_operation] = STATE(1724), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1724), + [sym_await_expression] = STATE(1724), + [sym_ternary_expression] = STATE(1724), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1724), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1724), + [sym_dictionary_literal] = STATE(1724), + [sym__special_literal] = STATE(1724), + [sym__playground_literal] = STATE(1724), + [sym_lambda_literal] = STATE(1724), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1724), + [sym_key_path_expression] = STATE(1724), + [sym_key_path_string_expression] = STATE(1724), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1724), + [sym__comparison_operator] = STATE(1724), + [sym__additive_operator] = STATE(1724), + [sym__multiplicative_operator] = STATE(1724), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1724), + [sym__referenceable_operator] = STATE(1724), + [sym__eq_eq] = STATE(1724), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4415), + [sym_real_literal] = ACTIONS(4417), + [sym_integer_literal] = ACTIONS(4415), + [sym_hex_literal] = ACTIONS(4417), + [sym_oct_literal] = ACTIONS(4417), + [sym_bin_literal] = ACTIONS(4417), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4415), + [anon_sym_GT] = ACTIONS(4415), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4415), + [anon_sym_POUNDfileID] = ACTIONS(4417), + [anon_sym_POUNDfilePath] = ACTIONS(4417), + [anon_sym_POUNDline] = ACTIONS(4417), + [anon_sym_POUNDcolumn] = ACTIONS(4417), + [anon_sym_POUNDfunction] = ACTIONS(4417), + [anon_sym_POUNDdsohandle] = ACTIONS(4417), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4415), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4415), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4415), + [anon_sym_LT_EQ] = ACTIONS(4415), + [anon_sym_GT_EQ] = ACTIONS(4415), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4415), + [anon_sym_SLASH] = ACTIONS(4415), + [anon_sym_PERCENT] = ACTIONS(4415), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4417), + [sym__plus_then_ws] = ACTIONS(4417), + [sym__minus_then_ws] = ACTIONS(4417), + [sym_bang] = ACTIONS(1069), + }, + [1073] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2026), + [sym_boolean_literal] = STATE(2026), + [sym__string_literal] = STATE(2026), + [sym_line_string_literal] = STATE(2026), + [sym_multi_line_string_literal] = STATE(2026), + [sym_raw_string_literal] = STATE(2026), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2026), + [sym__unary_expression] = STATE(2026), + [sym_postfix_expression] = STATE(2026), + [sym_constructor_expression] = STATE(2026), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2026), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2026), + [sym_prefix_expression] = STATE(2026), + [sym_as_expression] = STATE(2026), + [sym_selector_expression] = STATE(2026), + [sym__binary_expression] = STATE(2026), + [sym_multiplicative_expression] = STATE(2026), + [sym_additive_expression] = STATE(2026), + [sym_range_expression] = STATE(2026), + [sym_infix_expression] = STATE(2026), + [sym_nil_coalescing_expression] = STATE(2026), + [sym_check_expression] = STATE(2026), + [sym_comparison_expression] = STATE(2026), + [sym_equality_expression] = STATE(2026), + [sym_conjunction_expression] = STATE(2026), + [sym_disjunction_expression] = STATE(2026), + [sym_bitwise_operation] = STATE(2026), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2026), + [sym_await_expression] = STATE(2026), + [sym_ternary_expression] = STATE(2026), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2026), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2026), + [sym_dictionary_literal] = STATE(2026), + [sym__special_literal] = STATE(2026), + [sym__playground_literal] = STATE(2026), + [sym_lambda_literal] = STATE(2026), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2026), + [sym_key_path_expression] = STATE(2026), + [sym_key_path_string_expression] = STATE(2026), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2026), + [sym__comparison_operator] = STATE(2026), + [sym__additive_operator] = STATE(2026), + [sym__multiplicative_operator] = STATE(2026), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2026), + [sym__referenceable_operator] = STATE(2026), + [sym__eq_eq] = STATE(2026), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4419), + [sym_real_literal] = ACTIONS(4421), + [sym_integer_literal] = ACTIONS(4419), + [sym_hex_literal] = ACTIONS(4421), + [sym_oct_literal] = ACTIONS(4421), + [sym_bin_literal] = ACTIONS(4421), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4419), + [anon_sym_GT] = ACTIONS(4419), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4419), + [anon_sym_POUNDfileID] = ACTIONS(4421), + [anon_sym_POUNDfilePath] = ACTIONS(4421), + [anon_sym_POUNDline] = ACTIONS(4421), + [anon_sym_POUNDcolumn] = ACTIONS(4421), + [anon_sym_POUNDfunction] = ACTIONS(4421), + [anon_sym_POUNDdsohandle] = ACTIONS(4421), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4419), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4419), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4419), + [anon_sym_LT_EQ] = ACTIONS(4419), + [anon_sym_GT_EQ] = ACTIONS(4419), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4419), + [anon_sym_SLASH] = ACTIONS(4419), + [anon_sym_PERCENT] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4421), + [sym__plus_then_ws] = ACTIONS(4421), + [sym__minus_then_ws] = ACTIONS(4421), + [sym_bang] = ACTIONS(1069), + }, + [1074] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1725), + [sym_boolean_literal] = STATE(1725), + [sym__string_literal] = STATE(1725), + [sym_line_string_literal] = STATE(1725), + [sym_multi_line_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1725), + [sym__unary_expression] = STATE(1725), + [sym_postfix_expression] = STATE(1725), + [sym_constructor_expression] = STATE(1725), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1725), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1725), + [sym_prefix_expression] = STATE(1725), + [sym_as_expression] = STATE(1725), + [sym_selector_expression] = STATE(1725), + [sym__binary_expression] = STATE(1725), + [sym_multiplicative_expression] = STATE(1725), + [sym_additive_expression] = STATE(1725), + [sym_range_expression] = STATE(1725), + [sym_infix_expression] = STATE(1725), + [sym_nil_coalescing_expression] = STATE(1725), + [sym_check_expression] = STATE(1725), + [sym_comparison_expression] = STATE(1725), + [sym_equality_expression] = STATE(1725), + [sym_conjunction_expression] = STATE(1725), + [sym_disjunction_expression] = STATE(1725), + [sym_bitwise_operation] = STATE(1725), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1725), + [sym_await_expression] = STATE(1725), + [sym_ternary_expression] = STATE(1725), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1725), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1725), + [sym_dictionary_literal] = STATE(1725), + [sym__special_literal] = STATE(1725), + [sym__playground_literal] = STATE(1725), + [sym_lambda_literal] = STATE(1725), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1725), + [sym_key_path_expression] = STATE(1725), + [sym_key_path_string_expression] = STATE(1725), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1725), + [sym__comparison_operator] = STATE(1725), + [sym__additive_operator] = STATE(1725), + [sym__multiplicative_operator] = STATE(1725), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1725), + [sym__referenceable_operator] = STATE(1725), + [sym__eq_eq] = STATE(1725), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4423), + [sym_real_literal] = ACTIONS(4425), + [sym_integer_literal] = ACTIONS(4423), + [sym_hex_literal] = ACTIONS(4425), + [sym_oct_literal] = ACTIONS(4425), + [sym_bin_literal] = ACTIONS(4425), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4423), + [anon_sym_GT] = ACTIONS(4423), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4423), + [anon_sym_POUNDfileID] = ACTIONS(4425), + [anon_sym_POUNDfilePath] = ACTIONS(4425), + [anon_sym_POUNDline] = ACTIONS(4425), + [anon_sym_POUNDcolumn] = ACTIONS(4425), + [anon_sym_POUNDfunction] = ACTIONS(4425), + [anon_sym_POUNDdsohandle] = ACTIONS(4425), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4423), + [anon_sym_LT_EQ] = ACTIONS(4423), + [anon_sym_GT_EQ] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4423), + [anon_sym_SLASH] = ACTIONS(4423), + [anon_sym_PERCENT] = ACTIONS(4423), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4425), + [sym__plus_then_ws] = ACTIONS(4425), + [sym__minus_then_ws] = ACTIONS(4425), + [sym_bang] = ACTIONS(1069), + }, + [1075] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2020), + [sym_boolean_literal] = STATE(2020), + [sym__string_literal] = STATE(2020), + [sym_line_string_literal] = STATE(2020), + [sym_multi_line_string_literal] = STATE(2020), + [sym_raw_string_literal] = STATE(2020), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2020), + [sym__unary_expression] = STATE(2020), + [sym_postfix_expression] = STATE(2020), + [sym_constructor_expression] = STATE(2020), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2020), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2020), + [sym_prefix_expression] = STATE(2020), + [sym_as_expression] = STATE(2020), + [sym_selector_expression] = STATE(2020), + [sym__binary_expression] = STATE(2020), + [sym_multiplicative_expression] = STATE(2020), + [sym_additive_expression] = STATE(2020), + [sym_range_expression] = STATE(2020), + [sym_infix_expression] = STATE(2020), + [sym_nil_coalescing_expression] = STATE(2020), + [sym_check_expression] = STATE(2020), + [sym_comparison_expression] = STATE(2020), + [sym_equality_expression] = STATE(2020), + [sym_conjunction_expression] = STATE(2020), + [sym_disjunction_expression] = STATE(2020), + [sym_bitwise_operation] = STATE(2020), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2020), + [sym_await_expression] = STATE(2020), + [sym_ternary_expression] = STATE(2020), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2020), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2020), + [sym_dictionary_literal] = STATE(2020), + [sym__special_literal] = STATE(2020), + [sym__playground_literal] = STATE(2020), + [sym_lambda_literal] = STATE(2020), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2020), + [sym_key_path_expression] = STATE(2020), + [sym_key_path_string_expression] = STATE(2020), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2020), + [sym__comparison_operator] = STATE(2020), + [sym__additive_operator] = STATE(2020), + [sym__multiplicative_operator] = STATE(2020), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2020), + [sym__referenceable_operator] = STATE(2020), + [sym__eq_eq] = STATE(2020), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4427), + [sym_real_literal] = ACTIONS(4429), + [sym_integer_literal] = ACTIONS(4427), + [sym_hex_literal] = ACTIONS(4429), + [sym_oct_literal] = ACTIONS(4429), + [sym_bin_literal] = ACTIONS(4429), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4427), + [anon_sym_GT] = ACTIONS(4427), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4427), + [anon_sym_POUNDfileID] = ACTIONS(4429), + [anon_sym_POUNDfilePath] = ACTIONS(4429), + [anon_sym_POUNDline] = ACTIONS(4429), + [anon_sym_POUNDcolumn] = ACTIONS(4429), + [anon_sym_POUNDfunction] = ACTIONS(4429), + [anon_sym_POUNDdsohandle] = ACTIONS(4429), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4427), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4427), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4427), + [anon_sym_LT_EQ] = ACTIONS(4427), + [anon_sym_GT_EQ] = ACTIONS(4427), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4427), + [anon_sym_SLASH] = ACTIONS(4427), + [anon_sym_PERCENT] = ACTIONS(4427), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4429), + [sym__plus_then_ws] = ACTIONS(4429), + [sym__minus_then_ws] = ACTIONS(4429), + [sym_bang] = ACTIONS(1069), + }, + [1076] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1919), + [sym_boolean_literal] = STATE(1919), + [sym__string_literal] = STATE(1919), + [sym_line_string_literal] = STATE(1919), + [sym_multi_line_string_literal] = STATE(1919), + [sym_raw_string_literal] = STATE(1919), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1919), + [sym__unary_expression] = STATE(1919), + [sym_postfix_expression] = STATE(1919), + [sym_constructor_expression] = STATE(1919), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1919), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1919), + [sym_prefix_expression] = STATE(1919), + [sym_as_expression] = STATE(1919), + [sym_selector_expression] = STATE(1919), + [sym__binary_expression] = STATE(1919), + [sym_multiplicative_expression] = STATE(1919), + [sym_additive_expression] = STATE(1919), + [sym_range_expression] = STATE(1919), + [sym_infix_expression] = STATE(1919), + [sym_nil_coalescing_expression] = STATE(1919), + [sym_check_expression] = STATE(1919), + [sym_comparison_expression] = STATE(1919), + [sym_equality_expression] = STATE(1919), + [sym_conjunction_expression] = STATE(1919), + [sym_disjunction_expression] = STATE(1919), + [sym_bitwise_operation] = STATE(1919), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1919), + [sym_await_expression] = STATE(1919), + [sym_ternary_expression] = STATE(1919), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1919), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1919), + [sym_dictionary_literal] = STATE(1919), + [sym__special_literal] = STATE(1919), + [sym__playground_literal] = STATE(1919), + [sym_lambda_literal] = STATE(1919), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1919), + [sym_key_path_expression] = STATE(1919), + [sym_key_path_string_expression] = STATE(1919), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1919), + [sym__comparison_operator] = STATE(1919), + [sym__additive_operator] = STATE(1919), + [sym__multiplicative_operator] = STATE(1919), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1919), + [sym__referenceable_operator] = STATE(1919), + [sym__eq_eq] = STATE(1919), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4431), + [sym_real_literal] = ACTIONS(4433), + [sym_integer_literal] = ACTIONS(4431), + [sym_hex_literal] = ACTIONS(4433), + [sym_oct_literal] = ACTIONS(4433), + [sym_bin_literal] = ACTIONS(4433), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4431), + [anon_sym_GT] = ACTIONS(4431), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4431), + [anon_sym_POUNDfileID] = ACTIONS(4433), + [anon_sym_POUNDfilePath] = ACTIONS(4433), + [anon_sym_POUNDline] = ACTIONS(4433), + [anon_sym_POUNDcolumn] = ACTIONS(4433), + [anon_sym_POUNDfunction] = ACTIONS(4433), + [anon_sym_POUNDdsohandle] = ACTIONS(4433), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4431), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4431), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), + [anon_sym_LT_EQ] = ACTIONS(4431), + [anon_sym_GT_EQ] = ACTIONS(4431), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4431), + [anon_sym_SLASH] = ACTIONS(4431), + [anon_sym_PERCENT] = ACTIONS(4431), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4433), + [sym__plus_then_ws] = ACTIONS(4433), + [sym__minus_then_ws] = ACTIONS(4433), + [sym_bang] = ACTIONS(1069), + }, + [1077] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1918), + [sym_boolean_literal] = STATE(1918), + [sym__string_literal] = STATE(1918), + [sym_line_string_literal] = STATE(1918), + [sym_multi_line_string_literal] = STATE(1918), + [sym_raw_string_literal] = STATE(1918), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1918), + [sym__unary_expression] = STATE(1918), + [sym_postfix_expression] = STATE(1918), + [sym_constructor_expression] = STATE(1918), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1918), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1918), + [sym_prefix_expression] = STATE(1918), + [sym_as_expression] = STATE(1918), + [sym_selector_expression] = STATE(1918), + [sym__binary_expression] = STATE(1918), + [sym_multiplicative_expression] = STATE(1918), + [sym_additive_expression] = STATE(1918), + [sym_range_expression] = STATE(1918), + [sym_infix_expression] = STATE(1918), + [sym_nil_coalescing_expression] = STATE(1918), + [sym_check_expression] = STATE(1918), + [sym_comparison_expression] = STATE(1918), + [sym_equality_expression] = STATE(1918), + [sym_conjunction_expression] = STATE(1918), + [sym_disjunction_expression] = STATE(1918), + [sym_bitwise_operation] = STATE(1918), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1918), + [sym_await_expression] = STATE(1918), + [sym_ternary_expression] = STATE(1918), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1918), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1918), + [sym_dictionary_literal] = STATE(1918), + [sym__special_literal] = STATE(1918), + [sym__playground_literal] = STATE(1918), + [sym_lambda_literal] = STATE(1918), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1918), + [sym_key_path_expression] = STATE(1918), + [sym_key_path_string_expression] = STATE(1918), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1918), + [sym__comparison_operator] = STATE(1918), + [sym__additive_operator] = STATE(1918), + [sym__multiplicative_operator] = STATE(1918), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1918), + [sym__referenceable_operator] = STATE(1918), + [sym__eq_eq] = STATE(1918), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4435), + [sym_real_literal] = ACTIONS(4437), + [sym_integer_literal] = ACTIONS(4435), + [sym_hex_literal] = ACTIONS(4437), + [sym_oct_literal] = ACTIONS(4437), + [sym_bin_literal] = ACTIONS(4437), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4435), + [anon_sym_GT] = ACTIONS(4435), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4435), + [anon_sym_POUNDfileID] = ACTIONS(4437), + [anon_sym_POUNDfilePath] = ACTIONS(4437), + [anon_sym_POUNDline] = ACTIONS(4437), + [anon_sym_POUNDcolumn] = ACTIONS(4437), + [anon_sym_POUNDfunction] = ACTIONS(4437), + [anon_sym_POUNDdsohandle] = ACTIONS(4437), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4435), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4435), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4435), + [anon_sym_LT_EQ] = ACTIONS(4435), + [anon_sym_GT_EQ] = ACTIONS(4435), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4435), + [anon_sym_SLASH] = ACTIONS(4435), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4437), + [sym__plus_then_ws] = ACTIONS(4437), + [sym__minus_then_ws] = ACTIONS(4437), + [sym_bang] = ACTIONS(1069), + }, + [1078] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1726), + [sym_boolean_literal] = STATE(1726), + [sym__string_literal] = STATE(1726), + [sym_line_string_literal] = STATE(1726), + [sym_multi_line_string_literal] = STATE(1726), + [sym_raw_string_literal] = STATE(1726), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1726), + [sym__unary_expression] = STATE(1726), + [sym_postfix_expression] = STATE(1726), + [sym_constructor_expression] = STATE(1726), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1726), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1726), + [sym_prefix_expression] = STATE(1726), + [sym_as_expression] = STATE(1726), + [sym_selector_expression] = STATE(1726), + [sym__binary_expression] = STATE(1726), + [sym_multiplicative_expression] = STATE(1726), + [sym_additive_expression] = STATE(1726), + [sym_range_expression] = STATE(1726), + [sym_infix_expression] = STATE(1726), + [sym_nil_coalescing_expression] = STATE(1726), + [sym_check_expression] = STATE(1726), + [sym_comparison_expression] = STATE(1726), + [sym_equality_expression] = STATE(1726), + [sym_conjunction_expression] = STATE(1726), + [sym_disjunction_expression] = STATE(1726), + [sym_bitwise_operation] = STATE(1726), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1726), + [sym_await_expression] = STATE(1726), + [sym_ternary_expression] = STATE(1726), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1726), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1726), + [sym_dictionary_literal] = STATE(1726), + [sym__special_literal] = STATE(1726), + [sym__playground_literal] = STATE(1726), + [sym_lambda_literal] = STATE(1726), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1726), + [sym_key_path_expression] = STATE(1726), + [sym_key_path_string_expression] = STATE(1726), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1726), + [sym__comparison_operator] = STATE(1726), + [sym__additive_operator] = STATE(1726), + [sym__multiplicative_operator] = STATE(1726), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1726), + [sym__referenceable_operator] = STATE(1726), + [sym__eq_eq] = STATE(1726), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4439), + [sym_real_literal] = ACTIONS(4441), + [sym_integer_literal] = ACTIONS(4439), + [sym_hex_literal] = ACTIONS(4441), + [sym_oct_literal] = ACTIONS(4441), + [sym_bin_literal] = ACTIONS(4441), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4439), + [anon_sym_GT] = ACTIONS(4439), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4439), + [anon_sym_POUNDfileID] = ACTIONS(4441), + [anon_sym_POUNDfilePath] = ACTIONS(4441), + [anon_sym_POUNDline] = ACTIONS(4441), + [anon_sym_POUNDcolumn] = ACTIONS(4441), + [anon_sym_POUNDfunction] = ACTIONS(4441), + [anon_sym_POUNDdsohandle] = ACTIONS(4441), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4439), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4439), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4439), + [anon_sym_LT_EQ] = ACTIONS(4439), + [anon_sym_GT_EQ] = ACTIONS(4439), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4439), + [anon_sym_SLASH] = ACTIONS(4439), + [anon_sym_PERCENT] = ACTIONS(4439), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4441), + [sym__plus_then_ws] = ACTIONS(4441), + [sym__minus_then_ws] = ACTIONS(4441), + [sym_bang] = ACTIONS(1069), + }, + [1079] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1572), + [sym_boolean_literal] = STATE(1572), + [sym__string_literal] = STATE(1572), + [sym_line_string_literal] = STATE(1572), + [sym_multi_line_string_literal] = STATE(1572), + [sym_raw_string_literal] = STATE(1572), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1572), + [sym__unary_expression] = STATE(1572), + [sym_postfix_expression] = STATE(1572), + [sym_constructor_expression] = STATE(1572), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1572), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1572), + [sym_prefix_expression] = STATE(1572), + [sym_as_expression] = STATE(1572), + [sym_selector_expression] = STATE(1572), + [sym__binary_expression] = STATE(1572), + [sym_multiplicative_expression] = STATE(1572), + [sym_additive_expression] = STATE(1572), + [sym_range_expression] = STATE(1572), + [sym_infix_expression] = STATE(1572), + [sym_nil_coalescing_expression] = STATE(1572), + [sym_check_expression] = STATE(1572), + [sym_comparison_expression] = STATE(1572), + [sym_equality_expression] = STATE(1572), + [sym_conjunction_expression] = STATE(1572), + [sym_disjunction_expression] = STATE(1572), + [sym_bitwise_operation] = STATE(1572), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1572), + [sym_await_expression] = STATE(1572), + [sym_ternary_expression] = STATE(1572), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1572), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1572), + [sym_dictionary_literal] = STATE(1572), + [sym__special_literal] = STATE(1572), + [sym__playground_literal] = STATE(1572), + [sym_lambda_literal] = STATE(1572), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1572), + [sym_key_path_expression] = STATE(1572), + [sym_key_path_string_expression] = STATE(1572), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1572), + [sym__comparison_operator] = STATE(1572), + [sym__additive_operator] = STATE(1572), + [sym__multiplicative_operator] = STATE(1572), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1572), + [sym__referenceable_operator] = STATE(1572), + [sym__eq_eq] = STATE(1572), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4443), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_oct_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4443), + [anon_sym_POUNDfileID] = ACTIONS(4445), + [anon_sym_POUNDfilePath] = ACTIONS(4445), + [anon_sym_POUNDline] = ACTIONS(4445), + [anon_sym_POUNDcolumn] = ACTIONS(4445), + [anon_sym_POUNDfunction] = ACTIONS(4445), + [anon_sym_POUNDdsohandle] = ACTIONS(4445), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4443), + [anon_sym_LT_EQ] = ACTIONS(4443), + [anon_sym_GT_EQ] = ACTIONS(4443), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4445), + [sym__plus_then_ws] = ACTIONS(4445), + [sym__minus_then_ws] = ACTIONS(4445), + [sym_bang] = ACTIONS(1069), + }, + [1080] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1571), + [sym_boolean_literal] = STATE(1571), + [sym__string_literal] = STATE(1571), + [sym_line_string_literal] = STATE(1571), + [sym_multi_line_string_literal] = STATE(1571), + [sym_raw_string_literal] = STATE(1571), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1571), + [sym__unary_expression] = STATE(1571), + [sym_postfix_expression] = STATE(1571), + [sym_constructor_expression] = STATE(1571), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1571), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1571), + [sym_prefix_expression] = STATE(1571), + [sym_as_expression] = STATE(1571), + [sym_selector_expression] = STATE(1571), + [sym__binary_expression] = STATE(1571), + [sym_multiplicative_expression] = STATE(1571), + [sym_additive_expression] = STATE(1571), + [sym_range_expression] = STATE(1571), + [sym_infix_expression] = STATE(1571), + [sym_nil_coalescing_expression] = STATE(1571), + [sym_check_expression] = STATE(1571), + [sym_comparison_expression] = STATE(1571), + [sym_equality_expression] = STATE(1571), + [sym_conjunction_expression] = STATE(1571), + [sym_disjunction_expression] = STATE(1571), + [sym_bitwise_operation] = STATE(1571), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1571), + [sym_await_expression] = STATE(1571), + [sym_ternary_expression] = STATE(1571), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1571), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1571), + [sym_dictionary_literal] = STATE(1571), + [sym__special_literal] = STATE(1571), + [sym__playground_literal] = STATE(1571), + [sym_lambda_literal] = STATE(1571), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1571), + [sym_key_path_expression] = STATE(1571), + [sym_key_path_string_expression] = STATE(1571), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1571), + [sym__comparison_operator] = STATE(1571), + [sym__additive_operator] = STATE(1571), + [sym__multiplicative_operator] = STATE(1571), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1571), + [sym__referenceable_operator] = STATE(1571), + [sym__eq_eq] = STATE(1571), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4447), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_oct_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4447), + [anon_sym_POUNDfileID] = ACTIONS(4449), + [anon_sym_POUNDfilePath] = ACTIONS(4449), + [anon_sym_POUNDline] = ACTIONS(4449), + [anon_sym_POUNDcolumn] = ACTIONS(4449), + [anon_sym_POUNDfunction] = ACTIONS(4449), + [anon_sym_POUNDdsohandle] = ACTIONS(4449), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4447), + [anon_sym_LT_EQ] = ACTIONS(4447), + [anon_sym_GT_EQ] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4449), + [sym__plus_then_ws] = ACTIONS(4449), + [sym__minus_then_ws] = ACTIONS(4449), + [sym_bang] = ACTIONS(1069), + }, + [1081] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2018), + [sym_boolean_literal] = STATE(2018), + [sym__string_literal] = STATE(2018), + [sym_line_string_literal] = STATE(2018), + [sym_multi_line_string_literal] = STATE(2018), + [sym_raw_string_literal] = STATE(2018), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2018), + [sym__unary_expression] = STATE(2018), + [sym_postfix_expression] = STATE(2018), + [sym_constructor_expression] = STATE(2018), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2018), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2018), + [sym_prefix_expression] = STATE(2018), + [sym_as_expression] = STATE(2018), + [sym_selector_expression] = STATE(2018), + [sym__binary_expression] = STATE(2018), + [sym_multiplicative_expression] = STATE(2018), + [sym_additive_expression] = STATE(2018), + [sym_range_expression] = STATE(2018), + [sym_infix_expression] = STATE(2018), + [sym_nil_coalescing_expression] = STATE(2018), + [sym_check_expression] = STATE(2018), + [sym_comparison_expression] = STATE(2018), + [sym_equality_expression] = STATE(2018), + [sym_conjunction_expression] = STATE(2018), + [sym_disjunction_expression] = STATE(2018), + [sym_bitwise_operation] = STATE(2018), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2018), + [sym_await_expression] = STATE(2018), + [sym_ternary_expression] = STATE(2018), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2018), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2018), + [sym_dictionary_literal] = STATE(2018), + [sym__special_literal] = STATE(2018), + [sym__playground_literal] = STATE(2018), + [sym_lambda_literal] = STATE(2018), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2018), + [sym_key_path_expression] = STATE(2018), + [sym_key_path_string_expression] = STATE(2018), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2018), + [sym__comparison_operator] = STATE(2018), + [sym__additive_operator] = STATE(2018), + [sym__multiplicative_operator] = STATE(2018), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2018), + [sym__referenceable_operator] = STATE(2018), + [sym__eq_eq] = STATE(2018), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4451), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_oct_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4451), + [anon_sym_POUNDfileID] = ACTIONS(4453), + [anon_sym_POUNDfilePath] = ACTIONS(4453), + [anon_sym_POUNDline] = ACTIONS(4453), + [anon_sym_POUNDcolumn] = ACTIONS(4453), + [anon_sym_POUNDfunction] = ACTIONS(4453), + [anon_sym_POUNDdsohandle] = ACTIONS(4453), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4451), + [anon_sym_LT_EQ] = ACTIONS(4451), + [anon_sym_GT_EQ] = ACTIONS(4451), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4453), + [sym__plus_then_ws] = ACTIONS(4453), + [sym__minus_then_ws] = ACTIONS(4453), + [sym_bang] = ACTIONS(1069), + }, + [1082] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2016), + [sym_boolean_literal] = STATE(2016), + [sym__string_literal] = STATE(2016), + [sym_line_string_literal] = STATE(2016), + [sym_multi_line_string_literal] = STATE(2016), + [sym_raw_string_literal] = STATE(2016), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2016), + [sym__unary_expression] = STATE(2016), + [sym_postfix_expression] = STATE(2016), + [sym_constructor_expression] = STATE(2016), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2016), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2016), + [sym_prefix_expression] = STATE(2016), + [sym_as_expression] = STATE(2016), + [sym_selector_expression] = STATE(2016), + [sym__binary_expression] = STATE(2016), + [sym_multiplicative_expression] = STATE(2016), + [sym_additive_expression] = STATE(2016), + [sym_range_expression] = STATE(2016), + [sym_infix_expression] = STATE(2016), + [sym_nil_coalescing_expression] = STATE(2016), + [sym_check_expression] = STATE(2016), + [sym_comparison_expression] = STATE(2016), + [sym_equality_expression] = STATE(2016), + [sym_conjunction_expression] = STATE(2016), + [sym_disjunction_expression] = STATE(2016), + [sym_bitwise_operation] = STATE(2016), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2016), + [sym_await_expression] = STATE(2016), + [sym_ternary_expression] = STATE(2016), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2016), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2016), + [sym_dictionary_literal] = STATE(2016), + [sym__special_literal] = STATE(2016), + [sym__playground_literal] = STATE(2016), + [sym_lambda_literal] = STATE(2016), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2016), + [sym_key_path_expression] = STATE(2016), + [sym_key_path_string_expression] = STATE(2016), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2016), + [sym__comparison_operator] = STATE(2016), + [sym__additive_operator] = STATE(2016), + [sym__multiplicative_operator] = STATE(2016), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2016), + [sym__referenceable_operator] = STATE(2016), + [sym__eq_eq] = STATE(2016), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4455), + [sym_real_literal] = ACTIONS(4457), + [sym_integer_literal] = ACTIONS(4455), + [sym_hex_literal] = ACTIONS(4457), + [sym_oct_literal] = ACTIONS(4457), + [sym_bin_literal] = ACTIONS(4457), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4455), + [anon_sym_POUNDfileID] = ACTIONS(4457), + [anon_sym_POUNDfilePath] = ACTIONS(4457), + [anon_sym_POUNDline] = ACTIONS(4457), + [anon_sym_POUNDcolumn] = ACTIONS(4457), + [anon_sym_POUNDfunction] = ACTIONS(4457), + [anon_sym_POUNDdsohandle] = ACTIONS(4457), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4455), + [anon_sym_LT_EQ] = ACTIONS(4455), + [anon_sym_GT_EQ] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4457), + [sym__plus_then_ws] = ACTIONS(4457), + [sym__minus_then_ws] = ACTIONS(4457), + [sym_bang] = ACTIONS(1069), + }, + [1083] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2013), + [sym_boolean_literal] = STATE(2013), + [sym__string_literal] = STATE(2013), + [sym_line_string_literal] = STATE(2013), + [sym_multi_line_string_literal] = STATE(2013), + [sym_raw_string_literal] = STATE(2013), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2013), + [sym__unary_expression] = STATE(2013), + [sym_postfix_expression] = STATE(2013), + [sym_constructor_expression] = STATE(2013), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2013), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2013), + [sym_prefix_expression] = STATE(2013), + [sym_as_expression] = STATE(2013), + [sym_selector_expression] = STATE(2013), + [sym__binary_expression] = STATE(2013), + [sym_multiplicative_expression] = STATE(2013), + [sym_additive_expression] = STATE(2013), + [sym_range_expression] = STATE(2013), + [sym_infix_expression] = STATE(2013), + [sym_nil_coalescing_expression] = STATE(2013), + [sym_check_expression] = STATE(2013), + [sym_comparison_expression] = STATE(2013), + [sym_equality_expression] = STATE(2013), + [sym_conjunction_expression] = STATE(2013), + [sym_disjunction_expression] = STATE(2013), + [sym_bitwise_operation] = STATE(2013), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2013), + [sym_await_expression] = STATE(2013), + [sym_ternary_expression] = STATE(2013), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2013), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2013), + [sym_dictionary_literal] = STATE(2013), + [sym__special_literal] = STATE(2013), + [sym__playground_literal] = STATE(2013), + [sym_lambda_literal] = STATE(2013), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2013), + [sym_key_path_expression] = STATE(2013), + [sym_key_path_string_expression] = STATE(2013), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2013), + [sym__comparison_operator] = STATE(2013), + [sym__additive_operator] = STATE(2013), + [sym__multiplicative_operator] = STATE(2013), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2013), + [sym__referenceable_operator] = STATE(2013), + [sym__eq_eq] = STATE(2013), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4459), + [sym_real_literal] = ACTIONS(4461), + [sym_integer_literal] = ACTIONS(4459), + [sym_hex_literal] = ACTIONS(4461), + [sym_oct_literal] = ACTIONS(4461), + [sym_bin_literal] = ACTIONS(4461), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4459), + [anon_sym_GT] = ACTIONS(4459), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4459), + [anon_sym_POUNDfileID] = ACTIONS(4461), + [anon_sym_POUNDfilePath] = ACTIONS(4461), + [anon_sym_POUNDline] = ACTIONS(4461), + [anon_sym_POUNDcolumn] = ACTIONS(4461), + [anon_sym_POUNDfunction] = ACTIONS(4461), + [anon_sym_POUNDdsohandle] = ACTIONS(4461), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4459), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4459), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4459), + [anon_sym_LT_EQ] = ACTIONS(4459), + [anon_sym_GT_EQ] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4459), + [anon_sym_SLASH] = ACTIONS(4459), + [anon_sym_PERCENT] = ACTIONS(4459), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4461), + [sym__plus_then_ws] = ACTIONS(4461), + [sym__minus_then_ws] = ACTIONS(4461), + [sym_bang] = ACTIONS(1069), + }, + [1084] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1569), + [sym_boolean_literal] = STATE(1569), + [sym__string_literal] = STATE(1569), + [sym_line_string_literal] = STATE(1569), + [sym_multi_line_string_literal] = STATE(1569), + [sym_raw_string_literal] = STATE(1569), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1569), + [sym__unary_expression] = STATE(1569), + [sym_postfix_expression] = STATE(1569), + [sym_constructor_expression] = STATE(1569), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1569), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1569), + [sym_prefix_expression] = STATE(1569), + [sym_as_expression] = STATE(1569), + [sym_selector_expression] = STATE(1569), + [sym__binary_expression] = STATE(1569), + [sym_multiplicative_expression] = STATE(1569), + [sym_additive_expression] = STATE(1569), + [sym_range_expression] = STATE(1569), + [sym_infix_expression] = STATE(1569), + [sym_nil_coalescing_expression] = STATE(1569), + [sym_check_expression] = STATE(1569), + [sym_comparison_expression] = STATE(1569), + [sym_equality_expression] = STATE(1569), + [sym_conjunction_expression] = STATE(1569), + [sym_disjunction_expression] = STATE(1569), + [sym_bitwise_operation] = STATE(1569), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1569), + [sym_await_expression] = STATE(1569), + [sym_ternary_expression] = STATE(1569), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1569), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1569), + [sym_dictionary_literal] = STATE(1569), + [sym__special_literal] = STATE(1569), + [sym__playground_literal] = STATE(1569), + [sym_lambda_literal] = STATE(1569), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1569), + [sym_key_path_expression] = STATE(1569), + [sym_key_path_string_expression] = STATE(1569), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1569), + [sym__comparison_operator] = STATE(1569), + [sym__additive_operator] = STATE(1569), + [sym__multiplicative_operator] = STATE(1569), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1569), + [sym__referenceable_operator] = STATE(1569), + [sym__eq_eq] = STATE(1569), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4463), + [sym_real_literal] = ACTIONS(4465), + [sym_integer_literal] = ACTIONS(4463), + [sym_hex_literal] = ACTIONS(4465), + [sym_oct_literal] = ACTIONS(4465), + [sym_bin_literal] = ACTIONS(4465), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4463), + [anon_sym_GT] = ACTIONS(4463), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4463), + [anon_sym_POUNDfileID] = ACTIONS(4465), + [anon_sym_POUNDfilePath] = ACTIONS(4465), + [anon_sym_POUNDline] = ACTIONS(4465), + [anon_sym_POUNDcolumn] = ACTIONS(4465), + [anon_sym_POUNDfunction] = ACTIONS(4465), + [anon_sym_POUNDdsohandle] = ACTIONS(4465), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4463), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4463), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4463), + [anon_sym_LT_EQ] = ACTIONS(4463), + [anon_sym_GT_EQ] = ACTIONS(4463), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4463), + [anon_sym_SLASH] = ACTIONS(4463), + [anon_sym_PERCENT] = ACTIONS(4463), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4465), + [sym__plus_then_ws] = ACTIONS(4465), + [sym__minus_then_ws] = ACTIONS(4465), + [sym_bang] = ACTIONS(1069), + }, + [1085] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1631), + [sym_boolean_literal] = STATE(1631), + [sym__string_literal] = STATE(1631), + [sym_line_string_literal] = STATE(1631), + [sym_multi_line_string_literal] = STATE(1631), + [sym_raw_string_literal] = STATE(1631), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1631), + [sym__unary_expression] = STATE(1631), + [sym_postfix_expression] = STATE(1631), + [sym_constructor_expression] = STATE(1631), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1631), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1631), + [sym_prefix_expression] = STATE(1631), + [sym_as_expression] = STATE(1631), + [sym_selector_expression] = STATE(1631), + [sym__binary_expression] = STATE(1631), + [sym_multiplicative_expression] = STATE(1631), + [sym_additive_expression] = STATE(1631), + [sym_range_expression] = STATE(1631), + [sym_infix_expression] = STATE(1631), + [sym_nil_coalescing_expression] = STATE(1631), + [sym_check_expression] = STATE(1631), + [sym_comparison_expression] = STATE(1631), + [sym_equality_expression] = STATE(1631), + [sym_conjunction_expression] = STATE(1631), + [sym_disjunction_expression] = STATE(1631), + [sym_bitwise_operation] = STATE(1631), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1631), + [sym_await_expression] = STATE(1631), + [sym_ternary_expression] = STATE(1631), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1631), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1631), + [sym_dictionary_literal] = STATE(1631), + [sym__special_literal] = STATE(1631), + [sym__playground_literal] = STATE(1631), + [sym_lambda_literal] = STATE(1631), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1631), + [sym_key_path_expression] = STATE(1631), + [sym_key_path_string_expression] = STATE(1631), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1631), + [sym__comparison_operator] = STATE(1631), + [sym__additive_operator] = STATE(1631), + [sym__multiplicative_operator] = STATE(1631), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1631), + [sym__referenceable_operator] = STATE(1631), + [sym__eq_eq] = STATE(1631), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4467), + [sym_real_literal] = ACTIONS(4469), + [sym_integer_literal] = ACTIONS(4467), + [sym_hex_literal] = ACTIONS(4469), + [sym_oct_literal] = ACTIONS(4469), + [sym_bin_literal] = ACTIONS(4469), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4467), + [anon_sym_GT] = ACTIONS(4467), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4467), + [anon_sym_POUNDfileID] = ACTIONS(4469), + [anon_sym_POUNDfilePath] = ACTIONS(4469), + [anon_sym_POUNDline] = ACTIONS(4469), + [anon_sym_POUNDcolumn] = ACTIONS(4469), + [anon_sym_POUNDfunction] = ACTIONS(4469), + [anon_sym_POUNDdsohandle] = ACTIONS(4469), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4467), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4467), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4467), + [anon_sym_LT_EQ] = ACTIONS(4467), + [anon_sym_GT_EQ] = ACTIONS(4467), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4467), + [anon_sym_PERCENT] = ACTIONS(4467), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4469), + [sym__plus_then_ws] = ACTIONS(4469), + [sym__minus_then_ws] = ACTIONS(4469), + [sym_bang] = ACTIONS(1069), + }, + [1086] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1568), + [sym_boolean_literal] = STATE(1568), + [sym__string_literal] = STATE(1568), + [sym_line_string_literal] = STATE(1568), + [sym_multi_line_string_literal] = STATE(1568), + [sym_raw_string_literal] = STATE(1568), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1568), + [sym__unary_expression] = STATE(1568), + [sym_postfix_expression] = STATE(1568), + [sym_constructor_expression] = STATE(1568), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1568), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1568), + [sym_prefix_expression] = STATE(1568), + [sym_as_expression] = STATE(1568), + [sym_selector_expression] = STATE(1568), + [sym__binary_expression] = STATE(1568), + [sym_multiplicative_expression] = STATE(1568), + [sym_additive_expression] = STATE(1568), + [sym_range_expression] = STATE(1568), + [sym_infix_expression] = STATE(1568), + [sym_nil_coalescing_expression] = STATE(1568), + [sym_check_expression] = STATE(1568), + [sym_comparison_expression] = STATE(1568), + [sym_equality_expression] = STATE(1568), + [sym_conjunction_expression] = STATE(1568), + [sym_disjunction_expression] = STATE(1568), + [sym_bitwise_operation] = STATE(1568), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1568), + [sym_await_expression] = STATE(1568), + [sym_ternary_expression] = STATE(1568), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1568), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1568), + [sym_dictionary_literal] = STATE(1568), + [sym__special_literal] = STATE(1568), + [sym__playground_literal] = STATE(1568), + [sym_lambda_literal] = STATE(1568), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1568), + [sym_key_path_expression] = STATE(1568), + [sym_key_path_string_expression] = STATE(1568), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1568), + [sym__comparison_operator] = STATE(1568), + [sym__additive_operator] = STATE(1568), + [sym__multiplicative_operator] = STATE(1568), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1568), + [sym__referenceable_operator] = STATE(1568), + [sym__eq_eq] = STATE(1568), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4471), + [sym_real_literal] = ACTIONS(4473), + [sym_integer_literal] = ACTIONS(4471), + [sym_hex_literal] = ACTIONS(4473), + [sym_oct_literal] = ACTIONS(4473), + [sym_bin_literal] = ACTIONS(4473), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4471), + [anon_sym_POUNDfileID] = ACTIONS(4473), + [anon_sym_POUNDfilePath] = ACTIONS(4473), + [anon_sym_POUNDline] = ACTIONS(4473), + [anon_sym_POUNDcolumn] = ACTIONS(4473), + [anon_sym_POUNDfunction] = ACTIONS(4473), + [anon_sym_POUNDdsohandle] = ACTIONS(4473), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4471), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4471), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4471), + [anon_sym_LT_EQ] = ACTIONS(4471), + [anon_sym_GT_EQ] = ACTIONS(4471), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_PERCENT] = ACTIONS(4471), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4473), + [sym__plus_then_ws] = ACTIONS(4473), + [sym__minus_then_ws] = ACTIONS(4473), + [sym_bang] = ACTIONS(1069), + }, + [1087] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1628), + [sym_boolean_literal] = STATE(1628), + [sym__string_literal] = STATE(1628), + [sym_line_string_literal] = STATE(1628), + [sym_multi_line_string_literal] = STATE(1628), + [sym_raw_string_literal] = STATE(1628), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1628), + [sym__unary_expression] = STATE(1628), + [sym_postfix_expression] = STATE(1628), + [sym_constructor_expression] = STATE(1628), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1628), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1628), + [sym_prefix_expression] = STATE(1628), + [sym_as_expression] = STATE(1628), + [sym_selector_expression] = STATE(1628), + [sym__binary_expression] = STATE(1628), + [sym_multiplicative_expression] = STATE(1628), + [sym_additive_expression] = STATE(1628), + [sym_range_expression] = STATE(1628), + [sym_infix_expression] = STATE(1628), + [sym_nil_coalescing_expression] = STATE(1628), + [sym_check_expression] = STATE(1628), + [sym_comparison_expression] = STATE(1628), + [sym_equality_expression] = STATE(1628), + [sym_conjunction_expression] = STATE(1628), + [sym_disjunction_expression] = STATE(1628), + [sym_bitwise_operation] = STATE(1628), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1628), + [sym_await_expression] = STATE(1628), + [sym_ternary_expression] = STATE(1628), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1628), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1628), + [sym_dictionary_literal] = STATE(1628), + [sym__special_literal] = STATE(1628), + [sym__playground_literal] = STATE(1628), + [sym_lambda_literal] = STATE(1628), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1628), + [sym_key_path_expression] = STATE(1628), + [sym_key_path_string_expression] = STATE(1628), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1628), + [sym__comparison_operator] = STATE(1628), + [sym__additive_operator] = STATE(1628), + [sym__multiplicative_operator] = STATE(1628), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1628), + [sym__referenceable_operator] = STATE(1628), + [sym__eq_eq] = STATE(1628), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4475), + [sym_real_literal] = ACTIONS(4477), + [sym_integer_literal] = ACTIONS(4475), + [sym_hex_literal] = ACTIONS(4477), + [sym_oct_literal] = ACTIONS(4477), + [sym_bin_literal] = ACTIONS(4477), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4475), + [anon_sym_POUNDfileID] = ACTIONS(4477), + [anon_sym_POUNDfilePath] = ACTIONS(4477), + [anon_sym_POUNDline] = ACTIONS(4477), + [anon_sym_POUNDcolumn] = ACTIONS(4477), + [anon_sym_POUNDfunction] = ACTIONS(4477), + [anon_sym_POUNDdsohandle] = ACTIONS(4477), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4475), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4475), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4475), + [anon_sym_LT_EQ] = ACTIONS(4475), + [anon_sym_GT_EQ] = ACTIONS(4475), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_PERCENT] = ACTIONS(4475), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4477), + [sym__plus_then_ws] = ACTIONS(4477), + [sym__minus_then_ws] = ACTIONS(4477), + [sym_bang] = ACTIONS(1069), + }, + [1088] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2012), + [sym_boolean_literal] = STATE(2012), + [sym__string_literal] = STATE(2012), + [sym_line_string_literal] = STATE(2012), + [sym_multi_line_string_literal] = STATE(2012), + [sym_raw_string_literal] = STATE(2012), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2012), + [sym__unary_expression] = STATE(2012), + [sym_postfix_expression] = STATE(2012), + [sym_constructor_expression] = STATE(2012), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2012), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2012), + [sym_prefix_expression] = STATE(2012), + [sym_as_expression] = STATE(2012), + [sym_selector_expression] = STATE(2012), + [sym__binary_expression] = STATE(2012), + [sym_multiplicative_expression] = STATE(2012), + [sym_additive_expression] = STATE(2012), + [sym_range_expression] = STATE(2012), + [sym_infix_expression] = STATE(2012), + [sym_nil_coalescing_expression] = STATE(2012), + [sym_check_expression] = STATE(2012), + [sym_comparison_expression] = STATE(2012), + [sym_equality_expression] = STATE(2012), + [sym_conjunction_expression] = STATE(2012), + [sym_disjunction_expression] = STATE(2012), + [sym_bitwise_operation] = STATE(2012), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2012), + [sym_await_expression] = STATE(2012), + [sym_ternary_expression] = STATE(2012), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2012), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2012), + [sym_dictionary_literal] = STATE(2012), + [sym__special_literal] = STATE(2012), + [sym__playground_literal] = STATE(2012), + [sym_lambda_literal] = STATE(2012), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2012), + [sym_key_path_expression] = STATE(2012), + [sym_key_path_string_expression] = STATE(2012), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2012), + [sym__comparison_operator] = STATE(2012), + [sym__additive_operator] = STATE(2012), + [sym__multiplicative_operator] = STATE(2012), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2012), + [sym__referenceable_operator] = STATE(2012), + [sym__eq_eq] = STATE(2012), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4479), + [sym_real_literal] = ACTIONS(4481), + [sym_integer_literal] = ACTIONS(4479), + [sym_hex_literal] = ACTIONS(4481), + [sym_oct_literal] = ACTIONS(4481), + [sym_bin_literal] = ACTIONS(4481), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4479), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4479), + [anon_sym_POUNDfileID] = ACTIONS(4481), + [anon_sym_POUNDfilePath] = ACTIONS(4481), + [anon_sym_POUNDline] = ACTIONS(4481), + [anon_sym_POUNDcolumn] = ACTIONS(4481), + [anon_sym_POUNDfunction] = ACTIONS(4481), + [anon_sym_POUNDdsohandle] = ACTIONS(4481), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4479), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4479), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4479), + [anon_sym_LT_EQ] = ACTIONS(4479), + [anon_sym_GT_EQ] = ACTIONS(4479), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_PERCENT] = ACTIONS(4479), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4481), + [sym__plus_then_ws] = ACTIONS(4481), + [sym__minus_then_ws] = ACTIONS(4481), + [sym_bang] = ACTIONS(1069), + }, + [1089] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1727), + [sym_boolean_literal] = STATE(1727), + [sym__string_literal] = STATE(1727), + [sym_line_string_literal] = STATE(1727), + [sym_multi_line_string_literal] = STATE(1727), + [sym_raw_string_literal] = STATE(1727), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1727), + [sym__unary_expression] = STATE(1727), + [sym_postfix_expression] = STATE(1727), + [sym_constructor_expression] = STATE(1727), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1727), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1727), + [sym_prefix_expression] = STATE(1727), + [sym_as_expression] = STATE(1727), + [sym_selector_expression] = STATE(1727), + [sym__binary_expression] = STATE(1727), + [sym_multiplicative_expression] = STATE(1727), + [sym_additive_expression] = STATE(1727), + [sym_range_expression] = STATE(1727), + [sym_infix_expression] = STATE(1727), + [sym_nil_coalescing_expression] = STATE(1727), + [sym_check_expression] = STATE(1727), + [sym_comparison_expression] = STATE(1727), + [sym_equality_expression] = STATE(1727), + [sym_conjunction_expression] = STATE(1727), + [sym_disjunction_expression] = STATE(1727), + [sym_bitwise_operation] = STATE(1727), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1727), + [sym_await_expression] = STATE(1727), + [sym_ternary_expression] = STATE(1727), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1727), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1727), + [sym_dictionary_literal] = STATE(1727), + [sym__special_literal] = STATE(1727), + [sym__playground_literal] = STATE(1727), + [sym_lambda_literal] = STATE(1727), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1727), + [sym_key_path_expression] = STATE(1727), + [sym_key_path_string_expression] = STATE(1727), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1727), + [sym__comparison_operator] = STATE(1727), + [sym__additive_operator] = STATE(1727), + [sym__multiplicative_operator] = STATE(1727), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1727), + [sym__referenceable_operator] = STATE(1727), + [sym__eq_eq] = STATE(1727), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4483), + [sym_real_literal] = ACTIONS(4485), + [sym_integer_literal] = ACTIONS(4483), + [sym_hex_literal] = ACTIONS(4485), + [sym_oct_literal] = ACTIONS(4485), + [sym_bin_literal] = ACTIONS(4485), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4483), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4483), + [anon_sym_POUNDfileID] = ACTIONS(4485), + [anon_sym_POUNDfilePath] = ACTIONS(4485), + [anon_sym_POUNDline] = ACTIONS(4485), + [anon_sym_POUNDcolumn] = ACTIONS(4485), + [anon_sym_POUNDfunction] = ACTIONS(4485), + [anon_sym_POUNDdsohandle] = ACTIONS(4485), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4483), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4483), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4483), + [anon_sym_LT_EQ] = ACTIONS(4483), + [anon_sym_GT_EQ] = ACTIONS(4483), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4483), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_PERCENT] = ACTIONS(4483), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4485), + [sym__plus_then_ws] = ACTIONS(4485), + [sym__minus_then_ws] = ACTIONS(4485), + [sym_bang] = ACTIONS(1069), + }, + [1090] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1734), + [sym_boolean_literal] = STATE(1734), + [sym__string_literal] = STATE(1734), + [sym_line_string_literal] = STATE(1734), + [sym_multi_line_string_literal] = STATE(1734), + [sym_raw_string_literal] = STATE(1734), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1734), + [sym__unary_expression] = STATE(1734), + [sym_postfix_expression] = STATE(1734), + [sym_constructor_expression] = STATE(1734), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1734), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1734), + [sym_prefix_expression] = STATE(1734), + [sym_as_expression] = STATE(1734), + [sym_selector_expression] = STATE(1734), + [sym__binary_expression] = STATE(1734), + [sym_multiplicative_expression] = STATE(1734), + [sym_additive_expression] = STATE(1734), + [sym_range_expression] = STATE(1734), + [sym_infix_expression] = STATE(1734), + [sym_nil_coalescing_expression] = STATE(1734), + [sym_check_expression] = STATE(1734), + [sym_comparison_expression] = STATE(1734), + [sym_equality_expression] = STATE(1734), + [sym_conjunction_expression] = STATE(1734), + [sym_disjunction_expression] = STATE(1734), + [sym_bitwise_operation] = STATE(1734), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1734), + [sym_await_expression] = STATE(1734), + [sym_ternary_expression] = STATE(1734), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1734), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1734), + [sym_dictionary_literal] = STATE(1734), + [sym__special_literal] = STATE(1734), + [sym__playground_literal] = STATE(1734), + [sym_lambda_literal] = STATE(1734), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1734), + [sym_key_path_expression] = STATE(1734), + [sym_key_path_string_expression] = STATE(1734), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1734), + [sym__comparison_operator] = STATE(1734), + [sym__additive_operator] = STATE(1734), + [sym__multiplicative_operator] = STATE(1734), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1734), + [sym__referenceable_operator] = STATE(1734), + [sym__eq_eq] = STATE(1734), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4487), + [sym_real_literal] = ACTIONS(4489), + [sym_integer_literal] = ACTIONS(4487), + [sym_hex_literal] = ACTIONS(4489), + [sym_oct_literal] = ACTIONS(4489), + [sym_bin_literal] = ACTIONS(4489), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4487), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4487), + [anon_sym_POUNDfileID] = ACTIONS(4489), + [anon_sym_POUNDfilePath] = ACTIONS(4489), + [anon_sym_POUNDline] = ACTIONS(4489), + [anon_sym_POUNDcolumn] = ACTIONS(4489), + [anon_sym_POUNDfunction] = ACTIONS(4489), + [anon_sym_POUNDdsohandle] = ACTIONS(4489), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4487), + [anon_sym_LT_EQ] = ACTIONS(4487), + [anon_sym_GT_EQ] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_PERCENT] = ACTIONS(4487), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4489), + [sym__plus_then_ws] = ACTIONS(4489), + [sym__minus_then_ws] = ACTIONS(4489), + [sym_bang] = ACTIONS(1069), + }, + [1091] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(2011), + [sym_boolean_literal] = STATE(2011), + [sym__string_literal] = STATE(2011), + [sym_line_string_literal] = STATE(2011), + [sym_multi_line_string_literal] = STATE(2011), + [sym_raw_string_literal] = STATE(2011), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(2011), + [sym__unary_expression] = STATE(2011), + [sym_postfix_expression] = STATE(2011), + [sym_constructor_expression] = STATE(2011), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(2011), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(2011), + [sym_prefix_expression] = STATE(2011), + [sym_as_expression] = STATE(2011), + [sym_selector_expression] = STATE(2011), + [sym__binary_expression] = STATE(2011), + [sym_multiplicative_expression] = STATE(2011), + [sym_additive_expression] = STATE(2011), + [sym_range_expression] = STATE(2011), + [sym_infix_expression] = STATE(2011), + [sym_nil_coalescing_expression] = STATE(2011), + [sym_check_expression] = STATE(2011), + [sym_comparison_expression] = STATE(2011), + [sym_equality_expression] = STATE(2011), + [sym_conjunction_expression] = STATE(2011), + [sym_disjunction_expression] = STATE(2011), + [sym_bitwise_operation] = STATE(2011), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(2011), + [sym_await_expression] = STATE(2011), + [sym_ternary_expression] = STATE(2011), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(2011), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(2011), + [sym_dictionary_literal] = STATE(2011), + [sym__special_literal] = STATE(2011), + [sym__playground_literal] = STATE(2011), + [sym_lambda_literal] = STATE(2011), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(2011), + [sym_key_path_expression] = STATE(2011), + [sym_key_path_string_expression] = STATE(2011), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(2011), + [sym__comparison_operator] = STATE(2011), + [sym__additive_operator] = STATE(2011), + [sym__multiplicative_operator] = STATE(2011), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(2011), + [sym__referenceable_operator] = STATE(2011), + [sym__eq_eq] = STATE(2011), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4491), + [sym_real_literal] = ACTIONS(4493), + [sym_integer_literal] = ACTIONS(4491), + [sym_hex_literal] = ACTIONS(4493), + [sym_oct_literal] = ACTIONS(4493), + [sym_bin_literal] = ACTIONS(4493), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4491), + [anon_sym_GT] = ACTIONS(4491), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4491), + [anon_sym_POUNDfileID] = ACTIONS(4493), + [anon_sym_POUNDfilePath] = ACTIONS(4493), + [anon_sym_POUNDline] = ACTIONS(4493), + [anon_sym_POUNDcolumn] = ACTIONS(4493), + [anon_sym_POUNDfunction] = ACTIONS(4493), + [anon_sym_POUNDdsohandle] = ACTIONS(4493), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4491), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4491), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4491), + [anon_sym_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_EQ] = ACTIONS(4491), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4491), + [anon_sym_SLASH] = ACTIONS(4491), + [anon_sym_PERCENT] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4493), + [sym__plus_then_ws] = ACTIONS(4493), + [sym__minus_then_ws] = ACTIONS(4493), + [sym_bang] = ACTIONS(1069), + }, + [1092] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1624), + [sym_boolean_literal] = STATE(1624), + [sym__string_literal] = STATE(1624), + [sym_line_string_literal] = STATE(1624), + [sym_multi_line_string_literal] = STATE(1624), + [sym_raw_string_literal] = STATE(1624), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1624), + [sym__unary_expression] = STATE(1624), + [sym_postfix_expression] = STATE(1624), + [sym_constructor_expression] = STATE(1624), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1624), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1624), + [sym_prefix_expression] = STATE(1624), + [sym_as_expression] = STATE(1624), + [sym_selector_expression] = STATE(1624), + [sym__binary_expression] = STATE(1624), + [sym_multiplicative_expression] = STATE(1624), + [sym_additive_expression] = STATE(1624), + [sym_range_expression] = STATE(1624), + [sym_infix_expression] = STATE(1624), + [sym_nil_coalescing_expression] = STATE(1624), + [sym_check_expression] = STATE(1624), + [sym_comparison_expression] = STATE(1624), + [sym_equality_expression] = STATE(1624), + [sym_conjunction_expression] = STATE(1624), + [sym_disjunction_expression] = STATE(1624), + [sym_bitwise_operation] = STATE(1624), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1624), + [sym_await_expression] = STATE(1624), + [sym_ternary_expression] = STATE(1624), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1624), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1624), + [sym_dictionary_literal] = STATE(1624), + [sym__special_literal] = STATE(1624), + [sym__playground_literal] = STATE(1624), + [sym_lambda_literal] = STATE(1624), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1624), + [sym_key_path_expression] = STATE(1624), + [sym_key_path_string_expression] = STATE(1624), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1624), + [sym__comparison_operator] = STATE(1624), + [sym__additive_operator] = STATE(1624), + [sym__multiplicative_operator] = STATE(1624), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1624), + [sym__referenceable_operator] = STATE(1624), + [sym__eq_eq] = STATE(1624), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4495), + [sym_real_literal] = ACTIONS(4497), + [sym_integer_literal] = ACTIONS(4495), + [sym_hex_literal] = ACTIONS(4497), + [sym_oct_literal] = ACTIONS(4497), + [sym_bin_literal] = ACTIONS(4497), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4495), + [anon_sym_GT] = ACTIONS(4495), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4495), + [anon_sym_POUNDfileID] = ACTIONS(4497), + [anon_sym_POUNDfilePath] = ACTIONS(4497), + [anon_sym_POUNDline] = ACTIONS(4497), + [anon_sym_POUNDcolumn] = ACTIONS(4497), + [anon_sym_POUNDfunction] = ACTIONS(4497), + [anon_sym_POUNDdsohandle] = ACTIONS(4497), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), + [anon_sym_LT_EQ] = ACTIONS(4495), + [anon_sym_GT_EQ] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4495), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_PERCENT] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4497), + [sym__plus_then_ws] = ACTIONS(4497), + [sym__minus_then_ws] = ACTIONS(4497), + [sym_bang] = ACTIONS(1069), + }, + [1093] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1899), + [sym_boolean_literal] = STATE(1899), + [sym__string_literal] = STATE(1899), + [sym_line_string_literal] = STATE(1899), + [sym_multi_line_string_literal] = STATE(1899), + [sym_raw_string_literal] = STATE(1899), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1899), + [sym__unary_expression] = STATE(1899), + [sym_postfix_expression] = STATE(1899), + [sym_constructor_expression] = STATE(1899), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1899), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1899), + [sym_prefix_expression] = STATE(1899), + [sym_as_expression] = STATE(1899), + [sym_selector_expression] = STATE(1899), + [sym__binary_expression] = STATE(1899), + [sym_multiplicative_expression] = STATE(1899), + [sym_additive_expression] = STATE(1899), + [sym_range_expression] = STATE(1899), + [sym_infix_expression] = STATE(1899), + [sym_nil_coalescing_expression] = STATE(1899), + [sym_check_expression] = STATE(1899), + [sym_comparison_expression] = STATE(1899), + [sym_equality_expression] = STATE(1899), + [sym_conjunction_expression] = STATE(1899), + [sym_disjunction_expression] = STATE(1899), + [sym_bitwise_operation] = STATE(1899), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1899), + [sym_await_expression] = STATE(1899), + [sym_ternary_expression] = STATE(1899), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1899), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1899), + [sym_dictionary_literal] = STATE(1899), + [sym__special_literal] = STATE(1899), + [sym__playground_literal] = STATE(1899), + [sym_lambda_literal] = STATE(1899), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1899), + [sym_key_path_expression] = STATE(1899), + [sym_key_path_string_expression] = STATE(1899), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1899), + [sym__comparison_operator] = STATE(1899), + [sym__additive_operator] = STATE(1899), + [sym__multiplicative_operator] = STATE(1899), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1899), + [sym__referenceable_operator] = STATE(1899), + [sym__eq_eq] = STATE(1899), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4499), + [sym_real_literal] = ACTIONS(4501), + [sym_integer_literal] = ACTIONS(4499), + [sym_hex_literal] = ACTIONS(4501), + [sym_oct_literal] = ACTIONS(4501), + [sym_bin_literal] = ACTIONS(4501), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4499), + [anon_sym_GT] = ACTIONS(4499), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4499), + [anon_sym_POUNDfileID] = ACTIONS(4501), + [anon_sym_POUNDfilePath] = ACTIONS(4501), + [anon_sym_POUNDline] = ACTIONS(4501), + [anon_sym_POUNDcolumn] = ACTIONS(4501), + [anon_sym_POUNDfunction] = ACTIONS(4501), + [anon_sym_POUNDdsohandle] = ACTIONS(4501), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4499), + [anon_sym_LT_EQ] = ACTIONS(4499), + [anon_sym_GT_EQ] = ACTIONS(4499), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4499), + [anon_sym_SLASH] = ACTIONS(4499), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4501), + [sym__plus_then_ws] = ACTIONS(4501), + [sym__minus_then_ws] = ACTIONS(4501), + [sym_bang] = ACTIONS(1069), + }, + [1094] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1565), + [sym_boolean_literal] = STATE(1565), + [sym__string_literal] = STATE(1565), + [sym_line_string_literal] = STATE(1565), + [sym_multi_line_string_literal] = STATE(1565), + [sym_raw_string_literal] = STATE(1565), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1565), + [sym__unary_expression] = STATE(1565), + [sym_postfix_expression] = STATE(1565), + [sym_constructor_expression] = STATE(1565), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1565), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1565), + [sym_prefix_expression] = STATE(1565), + [sym_as_expression] = STATE(1565), + [sym_selector_expression] = STATE(1565), + [sym__binary_expression] = STATE(1565), + [sym_multiplicative_expression] = STATE(1565), + [sym_additive_expression] = STATE(1565), + [sym_range_expression] = STATE(1565), + [sym_infix_expression] = STATE(1565), + [sym_nil_coalescing_expression] = STATE(1565), + [sym_check_expression] = STATE(1565), + [sym_comparison_expression] = STATE(1565), + [sym_equality_expression] = STATE(1565), + [sym_conjunction_expression] = STATE(1565), + [sym_disjunction_expression] = STATE(1565), + [sym_bitwise_operation] = STATE(1565), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1565), + [sym_await_expression] = STATE(1565), + [sym_ternary_expression] = STATE(1565), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1565), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1565), + [sym_dictionary_literal] = STATE(1565), + [sym__special_literal] = STATE(1565), + [sym__playground_literal] = STATE(1565), + [sym_lambda_literal] = STATE(1565), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1565), + [sym_key_path_expression] = STATE(1565), + [sym_key_path_string_expression] = STATE(1565), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1565), + [sym__comparison_operator] = STATE(1565), + [sym__additive_operator] = STATE(1565), + [sym__multiplicative_operator] = STATE(1565), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1565), + [sym__referenceable_operator] = STATE(1565), + [sym__eq_eq] = STATE(1565), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4503), + [sym_real_literal] = ACTIONS(4505), + [sym_integer_literal] = ACTIONS(4503), + [sym_hex_literal] = ACTIONS(4505), + [sym_oct_literal] = ACTIONS(4505), + [sym_bin_literal] = ACTIONS(4505), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4503), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4503), + [anon_sym_POUNDfileID] = ACTIONS(4505), + [anon_sym_POUNDfilePath] = ACTIONS(4505), + [anon_sym_POUNDline] = ACTIONS(4505), + [anon_sym_POUNDcolumn] = ACTIONS(4505), + [anon_sym_POUNDfunction] = ACTIONS(4505), + [anon_sym_POUNDdsohandle] = ACTIONS(4505), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4503), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4503), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4503), + [anon_sym_LT_EQ] = ACTIONS(4503), + [anon_sym_GT_EQ] = ACTIONS(4503), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4503), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4505), + [sym__plus_then_ws] = ACTIONS(4505), + [sym__minus_then_ws] = ACTIONS(4505), + [sym_bang] = ACTIONS(1069), + }, + [1095] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1733), + [sym_boolean_literal] = STATE(1733), + [sym__string_literal] = STATE(1733), + [sym_line_string_literal] = STATE(1733), + [sym_multi_line_string_literal] = STATE(1733), + [sym_raw_string_literal] = STATE(1733), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1733), + [sym__unary_expression] = STATE(1733), + [sym_postfix_expression] = STATE(1733), + [sym_constructor_expression] = STATE(1733), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1733), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1733), + [sym_prefix_expression] = STATE(1733), + [sym_as_expression] = STATE(1733), + [sym_selector_expression] = STATE(1733), + [sym__binary_expression] = STATE(1733), + [sym_multiplicative_expression] = STATE(1733), + [sym_additive_expression] = STATE(1733), + [sym_range_expression] = STATE(1733), + [sym_infix_expression] = STATE(1733), + [sym_nil_coalescing_expression] = STATE(1733), + [sym_check_expression] = STATE(1733), + [sym_comparison_expression] = STATE(1733), + [sym_equality_expression] = STATE(1733), + [sym_conjunction_expression] = STATE(1733), + [sym_disjunction_expression] = STATE(1733), + [sym_bitwise_operation] = STATE(1733), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1733), + [sym_await_expression] = STATE(1733), + [sym_ternary_expression] = STATE(1733), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1733), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1733), + [sym_dictionary_literal] = STATE(1733), + [sym__special_literal] = STATE(1733), + [sym__playground_literal] = STATE(1733), + [sym_lambda_literal] = STATE(1733), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1733), + [sym_key_path_expression] = STATE(1733), + [sym_key_path_string_expression] = STATE(1733), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1733), + [sym__comparison_operator] = STATE(1733), + [sym__additive_operator] = STATE(1733), + [sym__multiplicative_operator] = STATE(1733), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1733), + [sym__referenceable_operator] = STATE(1733), + [sym__eq_eq] = STATE(1733), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4507), + [sym_real_literal] = ACTIONS(4509), + [sym_integer_literal] = ACTIONS(4507), + [sym_hex_literal] = ACTIONS(4509), + [sym_oct_literal] = ACTIONS(4509), + [sym_bin_literal] = ACTIONS(4509), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4507), + [anon_sym_GT] = ACTIONS(4507), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4507), + [anon_sym_POUNDfileID] = ACTIONS(4509), + [anon_sym_POUNDfilePath] = ACTIONS(4509), + [anon_sym_POUNDline] = ACTIONS(4509), + [anon_sym_POUNDcolumn] = ACTIONS(4509), + [anon_sym_POUNDfunction] = ACTIONS(4509), + [anon_sym_POUNDdsohandle] = ACTIONS(4509), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4507), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4507), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4507), + [anon_sym_LT_EQ] = ACTIONS(4507), + [anon_sym_GT_EQ] = ACTIONS(4507), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4507), + [anon_sym_PERCENT] = ACTIONS(4507), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4509), + [sym__plus_then_ws] = ACTIONS(4509), + [sym__minus_then_ws] = ACTIONS(4509), + [sym_bang] = ACTIONS(1069), + }, + [1096] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1732), + [sym_boolean_literal] = STATE(1732), + [sym__string_literal] = STATE(1732), + [sym_line_string_literal] = STATE(1732), + [sym_multi_line_string_literal] = STATE(1732), + [sym_raw_string_literal] = STATE(1732), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1732), + [sym__unary_expression] = STATE(1732), + [sym_postfix_expression] = STATE(1732), + [sym_constructor_expression] = STATE(1732), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1732), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1732), + [sym_prefix_expression] = STATE(1732), + [sym_as_expression] = STATE(1732), + [sym_selector_expression] = STATE(1732), + [sym__binary_expression] = STATE(1732), + [sym_multiplicative_expression] = STATE(1732), + [sym_additive_expression] = STATE(1732), + [sym_range_expression] = STATE(1732), + [sym_infix_expression] = STATE(1732), + [sym_nil_coalescing_expression] = STATE(1732), + [sym_check_expression] = STATE(1732), + [sym_comparison_expression] = STATE(1732), + [sym_equality_expression] = STATE(1732), + [sym_conjunction_expression] = STATE(1732), + [sym_disjunction_expression] = STATE(1732), + [sym_bitwise_operation] = STATE(1732), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1732), + [sym_await_expression] = STATE(1732), + [sym_ternary_expression] = STATE(1732), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1732), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1732), + [sym_dictionary_literal] = STATE(1732), + [sym__special_literal] = STATE(1732), + [sym__playground_literal] = STATE(1732), + [sym_lambda_literal] = STATE(1732), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1732), + [sym_key_path_expression] = STATE(1732), + [sym_key_path_string_expression] = STATE(1732), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1732), + [sym__comparison_operator] = STATE(1732), + [sym__additive_operator] = STATE(1732), + [sym__multiplicative_operator] = STATE(1732), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1732), + [sym__referenceable_operator] = STATE(1732), + [sym__eq_eq] = STATE(1732), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4511), + [sym_real_literal] = ACTIONS(4513), + [sym_integer_literal] = ACTIONS(4511), + [sym_hex_literal] = ACTIONS(4513), + [sym_oct_literal] = ACTIONS(4513), + [sym_bin_literal] = ACTIONS(4513), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4511), + [anon_sym_GT] = ACTIONS(4511), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4511), + [anon_sym_POUNDfileID] = ACTIONS(4513), + [anon_sym_POUNDfilePath] = ACTIONS(4513), + [anon_sym_POUNDline] = ACTIONS(4513), + [anon_sym_POUNDcolumn] = ACTIONS(4513), + [anon_sym_POUNDfunction] = ACTIONS(4513), + [anon_sym_POUNDdsohandle] = ACTIONS(4513), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4511), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4511), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4511), + [anon_sym_LT_EQ] = ACTIONS(4511), + [anon_sym_GT_EQ] = ACTIONS(4511), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4511), + [anon_sym_SLASH] = ACTIONS(4511), + [anon_sym_PERCENT] = ACTIONS(4511), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4513), + [sym__plus_then_ws] = ACTIONS(4513), + [sym__minus_then_ws] = ACTIONS(4513), + [sym_bang] = ACTIONS(1069), + }, + [1097] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1621), + [sym_boolean_literal] = STATE(1621), + [sym__string_literal] = STATE(1621), + [sym_line_string_literal] = STATE(1621), + [sym_multi_line_string_literal] = STATE(1621), + [sym_raw_string_literal] = STATE(1621), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1621), + [sym__unary_expression] = STATE(1621), + [sym_postfix_expression] = STATE(1621), + [sym_constructor_expression] = STATE(1621), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1621), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1621), + [sym_prefix_expression] = STATE(1621), + [sym_as_expression] = STATE(1621), + [sym_selector_expression] = STATE(1621), + [sym__binary_expression] = STATE(1621), + [sym_multiplicative_expression] = STATE(1621), + [sym_additive_expression] = STATE(1621), + [sym_range_expression] = STATE(1621), + [sym_infix_expression] = STATE(1621), + [sym_nil_coalescing_expression] = STATE(1621), + [sym_check_expression] = STATE(1621), + [sym_comparison_expression] = STATE(1621), + [sym_equality_expression] = STATE(1621), + [sym_conjunction_expression] = STATE(1621), + [sym_disjunction_expression] = STATE(1621), + [sym_bitwise_operation] = STATE(1621), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1621), + [sym_await_expression] = STATE(1621), + [sym_ternary_expression] = STATE(1621), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1621), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1621), + [sym_dictionary_literal] = STATE(1621), + [sym__special_literal] = STATE(1621), + [sym__playground_literal] = STATE(1621), + [sym_lambda_literal] = STATE(1621), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1621), + [sym_key_path_expression] = STATE(1621), + [sym_key_path_string_expression] = STATE(1621), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1621), + [sym__comparison_operator] = STATE(1621), + [sym__additive_operator] = STATE(1621), + [sym__multiplicative_operator] = STATE(1621), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1621), + [sym__referenceable_operator] = STATE(1621), + [sym__eq_eq] = STATE(1621), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4515), + [sym_real_literal] = ACTIONS(4517), + [sym_integer_literal] = ACTIONS(4515), + [sym_hex_literal] = ACTIONS(4517), + [sym_oct_literal] = ACTIONS(4517), + [sym_bin_literal] = ACTIONS(4517), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4515), + [anon_sym_GT] = ACTIONS(4515), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4515), + [anon_sym_POUNDfileID] = ACTIONS(4517), + [anon_sym_POUNDfilePath] = ACTIONS(4517), + [anon_sym_POUNDline] = ACTIONS(4517), + [anon_sym_POUNDcolumn] = ACTIONS(4517), + [anon_sym_POUNDfunction] = ACTIONS(4517), + [anon_sym_POUNDdsohandle] = ACTIONS(4517), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4515), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4515), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4515), + [anon_sym_LT_EQ] = ACTIONS(4515), + [anon_sym_GT_EQ] = ACTIONS(4515), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4515), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_PERCENT] = ACTIONS(4515), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4517), + [sym__plus_then_ws] = ACTIONS(4517), + [sym__minus_then_ws] = ACTIONS(4517), + [sym_bang] = ACTIONS(1069), + }, + [1098] = { + [sym_simple_identifier] = STATE(2619), + [sym__basic_literal] = STATE(1731), + [sym_boolean_literal] = STATE(1731), + [sym__string_literal] = STATE(1731), + [sym_line_string_literal] = STATE(1731), + [sym_multi_line_string_literal] = STATE(1731), + [sym_raw_string_literal] = STATE(1731), + [sym_user_type] = STATE(5942), + [sym__simple_user_type] = STATE(4955), + [sym_array_type] = STATE(5942), + [sym_dictionary_type] = STATE(5942), + [sym__expression] = STATE(1731), + [sym__unary_expression] = STATE(1731), + [sym_postfix_expression] = STATE(1731), + [sym_constructor_expression] = STATE(1731), + [sym_navigation_expression] = STATE(2689), + [sym__navigable_type_expression] = STATE(8099), + [sym_open_start_range_expression] = STATE(1731), + [sym__range_operator] = STATE(1055), + [sym_open_end_range_expression] = STATE(1731), + [sym_prefix_expression] = STATE(1731), + [sym_as_expression] = STATE(1731), + [sym_selector_expression] = STATE(1731), + [sym__binary_expression] = STATE(1731), + [sym_multiplicative_expression] = STATE(1731), + [sym_additive_expression] = STATE(1731), + [sym_range_expression] = STATE(1731), + [sym_infix_expression] = STATE(1731), + [sym_nil_coalescing_expression] = STATE(1731), + [sym_check_expression] = STATE(1731), + [sym_comparison_expression] = STATE(1731), + [sym_equality_expression] = STATE(1731), + [sym_conjunction_expression] = STATE(1731), + [sym_disjunction_expression] = STATE(1731), + [sym_bitwise_operation] = STATE(1731), + [sym_custom_operator] = STATE(1350), + [sym_try_expression] = STATE(1731), + [sym_await_expression] = STATE(1731), + [sym_ternary_expression] = STATE(1731), + [sym_call_expression] = STATE(2689), + [sym__primary_expression] = STATE(1731), + [sym_tuple_expression] = STATE(2693), + [sym_array_literal] = STATE(1731), + [sym_dictionary_literal] = STATE(1731), + [sym__special_literal] = STATE(1731), + [sym__playground_literal] = STATE(1731), + [sym_lambda_literal] = STATE(1731), + [sym_self_expression] = STATE(2693), + [sym_super_expression] = STATE(1731), + [sym_key_path_expression] = STATE(1731), + [sym_key_path_string_expression] = STATE(1731), + [sym__try_operator] = STATE(1057), + [sym__equality_operator] = STATE(1731), + [sym__comparison_operator] = STATE(1731), + [sym__additive_operator] = STATE(1731), + [sym__multiplicative_operator] = STATE(1731), + [sym__prefix_unary_operator] = STATE(1058), + [sym_directly_assignable_expression] = STATE(5851), + [sym_assignment] = STATE(1731), + [sym__referenceable_operator] = STATE(1731), + [sym__eq_eq] = STATE(1731), + [sym__dot] = STATE(1058), + [sym__three_dot_operator] = STATE(1346), + [sym__open_ended_range_operator] = STATE(1055), + [aux_sym_raw_string_literal_repeat1] = STATE(8094), + [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_nil] = ACTIONS(4519), + [sym_real_literal] = ACTIONS(4521), + [sym_integer_literal] = ACTIONS(4519), + [sym_hex_literal] = ACTIONS(4521), + [sym_oct_literal] = ACTIONS(4521), + [sym_bin_literal] = ACTIONS(4521), + [anon_sym_true] = ACTIONS(1017), + [anon_sym_false] = ACTIONS(1017), + [anon_sym_DQUOTE] = ACTIONS(1019), + [anon_sym_BSLASH] = ACTIONS(1021), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_POUNDselector] = ACTIONS(1033), + [aux_sym_custom_operator_token1] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4519), + [sym__await_operator] = ACTIONS(1037), + [anon_sym_POUNDfile] = ACTIONS(4519), + [anon_sym_POUNDfileID] = ACTIONS(4521), + [anon_sym_POUNDfilePath] = ACTIONS(4521), + [anon_sym_POUNDline] = ACTIONS(4521), + [anon_sym_POUNDcolumn] = ACTIONS(4521), + [anon_sym_POUNDfunction] = ACTIONS(4521), + [anon_sym_POUNDdsohandle] = ACTIONS(4521), + [anon_sym_POUNDcolorLiteral] = ACTIONS(1039), + [anon_sym_POUNDfileLiteral] = ACTIONS(1039), + [anon_sym_POUNDimageLiteral] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_self] = ACTIONS(1043), + [anon_sym_super] = ACTIONS(1045), + [anon_sym_POUNDkeyPath] = ACTIONS(1047), + [anon_sym_try] = ACTIONS(1049), + [anon_sym_try_BANG] = ACTIONS(1051), + [anon_sym_try_QMARK] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(4519), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4519), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4519), + [anon_sym_LT_EQ] = ACTIONS(4519), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_PLUS] = ACTIONS(1055), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_STAR] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_PLUS_PLUS] = ACTIONS(1057), + [anon_sym_DASH_DASH] = ACTIONS(1057), + [anon_sym_TILDE] = ACTIONS(1057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(127), + [sym_raw_str_end_part] = ACTIONS(1061), + [sym__dot_custom] = ACTIONS(1391), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(1067), + [sym__eq_eq_custom] = ACTIONS(4521), + [sym__plus_then_ws] = ACTIONS(4521), + [sym__minus_then_ws] = ACTIONS(4521), + [sym_bang] = ACTIONS(1069), + }, + [1099] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4523), + [aux_sym_simple_identifier_token2] = ACTIONS(4525), + [aux_sym_simple_identifier_token3] = ACTIONS(4525), + [aux_sym_simple_identifier_token4] = ACTIONS(4525), + [anon_sym_nil] = ACTIONS(4523), + [sym_real_literal] = ACTIONS(4525), + [sym_integer_literal] = ACTIONS(4523), + [sym_hex_literal] = ACTIONS(4525), + [sym_oct_literal] = ACTIONS(4525), + [sym_bin_literal] = ACTIONS(4525), + [anon_sym_true] = ACTIONS(4523), + [anon_sym_false] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_BSLASH] = ACTIONS(4523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4525), + [anon_sym_COMMA] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_QMARK] = ACTIONS(4523), + [sym__immediate_quest] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_async] = ACTIONS(4523), + [anon_sym_POUNDselector] = ACTIONS(4525), + [aux_sym_custom_operator_token1] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4523), + [anon_sym_GT] = ACTIONS(4523), + [sym__await_operator] = ACTIONS(4523), + [anon_sym_POUNDfile] = ACTIONS(4523), + [anon_sym_POUNDfileID] = ACTIONS(4525), + [anon_sym_POUNDfilePath] = ACTIONS(4525), + [anon_sym_POUNDline] = ACTIONS(4525), + [anon_sym_POUNDcolumn] = ACTIONS(4525), + [anon_sym_POUNDfunction] = ACTIONS(4525), + [anon_sym_POUNDdsohandle] = ACTIONS(4525), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4525), + [anon_sym_POUNDfileLiteral] = ACTIONS(4525), + [anon_sym_POUNDimageLiteral] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_RBRACE] = ACTIONS(4525), + [anon_sym_self] = ACTIONS(4523), + [anon_sym_super] = ACTIONS(4523), + [anon_sym_case] = ACTIONS(4523), + [anon_sym_POUNDkeyPath] = ACTIONS(4525), + [anon_sym_try] = ACTIONS(4523), + [anon_sym_try_BANG] = ACTIONS(4525), + [anon_sym_try_QMARK] = ACTIONS(4525), + [anon_sym_BANG_EQ] = ACTIONS(4523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4523), + [anon_sym_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_EQ] = ACTIONS(4523), + [anon_sym_is] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_PLUS_PLUS] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_CARET] = ACTIONS(4523), + [anon_sym_LT_LT] = ACTIONS(4523), + [anon_sym_GT_GT] = ACTIONS(4523), + [anon_sym_import] = ACTIONS(4523), + [anon_sym_typealias] = ACTIONS(4523), + [anon_sym_struct] = ACTIONS(4523), + [anon_sym_class] = ACTIONS(4523), + [anon_sym_enum] = ACTIONS(4523), + [anon_sym_protocol] = ACTIONS(4523), + [anon_sym_let] = ACTIONS(4523), + [anon_sym_var] = ACTIONS(4523), + [anon_sym_func] = ACTIONS(4523), + [anon_sym_extension] = ACTIONS(4523), + [anon_sym_indirect] = ACTIONS(4523), + [anon_sym_init] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4525), + [anon_sym_deinit] = ACTIONS(4523), + [anon_sym_subscript] = ACTIONS(4523), + [anon_sym_prefix] = ACTIONS(4523), + [anon_sym_infix] = ACTIONS(4523), + [anon_sym_postfix] = ACTIONS(4523), + [anon_sym_precedencegroup] = ACTIONS(4523), + [anon_sym_associatedtype] = ACTIONS(4523), + [anon_sym_AT] = ACTIONS(4523), + [sym_property_behavior_modifier] = ACTIONS(4523), + [anon_sym_override] = ACTIONS(4523), + [anon_sym_convenience] = ACTIONS(4523), + [anon_sym_required] = ACTIONS(4523), + [anon_sym_public] = ACTIONS(4523), + [anon_sym_private] = ACTIONS(4523), + [anon_sym_internal] = ACTIONS(4523), + [anon_sym_fileprivate] = ACTIONS(4523), + [anon_sym_open] = ACTIONS(4523), + [anon_sym_mutating] = ACTIONS(4523), + [anon_sym_nonmutating] = ACTIONS(4523), + [anon_sym_static] = ACTIONS(4523), + [anon_sym_dynamic] = ACTIONS(4523), + [anon_sym_optional] = ACTIONS(4523), + [anon_sym_final] = ACTIONS(4523), + [anon_sym_inout] = ACTIONS(4523), + [anon_sym_ATescaping] = ACTIONS(4525), + [anon_sym_ATautoclosure] = ACTIONS(4525), + [anon_sym_weak] = ACTIONS(4523), + [anon_sym_unowned] = ACTIONS(4523), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4525), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4525), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4525), + [sym_raw_str_end_part] = ACTIONS(4525), + [sym__dot_custom] = ACTIONS(4525), + [sym__three_dot_operator_custom] = ACTIONS(4525), + [sym__open_ended_range_operator_custom] = ACTIONS(4525), + [sym__conjunction_operator_custom] = ACTIONS(4525), + [sym__disjunction_operator_custom] = ACTIONS(4525), + [sym__nil_coalescing_operator_custom] = ACTIONS(4525), + [sym__eq_eq_custom] = ACTIONS(4525), + [sym__plus_then_ws] = ACTIONS(4525), + [sym__minus_then_ws] = ACTIONS(4525), + [sym_bang] = ACTIONS(4525), + [sym__as_custom] = ACTIONS(4525), + [sym__as_quest_custom] = ACTIONS(4525), + [sym__as_bang_custom] = ACTIONS(4525), + }, + [1100] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4527), + [aux_sym_simple_identifier_token2] = ACTIONS(4529), + [aux_sym_simple_identifier_token3] = ACTIONS(4529), + [aux_sym_simple_identifier_token4] = ACTIONS(4529), + [anon_sym_nil] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_oct_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_BSLASH] = ACTIONS(4527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_QMARK] = ACTIONS(4536), + [sym__immediate_quest] = ACTIONS(4536), + [anon_sym_AMP] = ACTIONS(4538), + [anon_sym_async] = ACTIONS(4538), + [anon_sym_POUNDselector] = ACTIONS(4529), + [aux_sym_custom_operator_token1] = ACTIONS(4538), + [anon_sym_LT] = ACTIONS(4538), + [anon_sym_GT] = ACTIONS(4538), + [sym__await_operator] = ACTIONS(4527), + [anon_sym_POUNDfile] = ACTIONS(4527), + [anon_sym_POUNDfileID] = ACTIONS(4529), + [anon_sym_POUNDfilePath] = ACTIONS(4529), + [anon_sym_POUNDline] = ACTIONS(4529), + [anon_sym_POUNDcolumn] = ACTIONS(4529), + [anon_sym_POUNDfunction] = ACTIONS(4529), + [anon_sym_POUNDdsohandle] = ACTIONS(4529), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4529), + [anon_sym_POUNDfileLiteral] = ACTIONS(4529), + [anon_sym_POUNDimageLiteral] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_self] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_case] = ACTIONS(4536), + [anon_sym_POUNDkeyPath] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_try_BANG] = ACTIONS(4529), + [anon_sym_try_QMARK] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4538), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4538), + [anon_sym_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_EQ] = ACTIONS(4538), + [anon_sym_is] = ACTIONS(4536), + [anon_sym_PLUS] = ACTIONS(4538), + [anon_sym_DASH] = ACTIONS(4538), + [anon_sym_STAR] = ACTIONS(4538), + [anon_sym_SLASH] = ACTIONS(4538), + [anon_sym_PERCENT] = ACTIONS(4538), + [anon_sym_PLUS_PLUS] = ACTIONS(4538), + [anon_sym_DASH_DASH] = ACTIONS(4538), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym_LT_LT] = ACTIONS(4536), + [anon_sym_GT_GT] = ACTIONS(4536), + [anon_sym_import] = ACTIONS(4536), + [anon_sym_typealias] = ACTIONS(4536), + [anon_sym_struct] = ACTIONS(4536), + [anon_sym_class] = ACTIONS(4536), + [anon_sym_enum] = ACTIONS(4536), + [anon_sym_protocol] = ACTIONS(4536), + [anon_sym_let] = ACTIONS(4536), + [anon_sym_var] = ACTIONS(4536), + [anon_sym_func] = ACTIONS(4536), + [anon_sym_extension] = ACTIONS(4536), + [anon_sym_indirect] = ACTIONS(4536), + [anon_sym_init] = ACTIONS(4536), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_deinit] = ACTIONS(4536), + [anon_sym_subscript] = ACTIONS(4536), + [anon_sym_prefix] = ACTIONS(4536), + [anon_sym_infix] = ACTIONS(4536), + [anon_sym_postfix] = ACTIONS(4536), + [anon_sym_precedencegroup] = ACTIONS(4536), + [anon_sym_associatedtype] = ACTIONS(4536), + [anon_sym_AT] = ACTIONS(4536), + [sym_property_behavior_modifier] = ACTIONS(4536), + [anon_sym_override] = ACTIONS(4536), + [anon_sym_convenience] = ACTIONS(4536), + [anon_sym_required] = ACTIONS(4536), + [anon_sym_public] = ACTIONS(4536), + [anon_sym_private] = ACTIONS(4536), + [anon_sym_internal] = ACTIONS(4536), + [anon_sym_fileprivate] = ACTIONS(4536), + [anon_sym_open] = ACTIONS(4536), + [anon_sym_mutating] = ACTIONS(4536), + [anon_sym_nonmutating] = ACTIONS(4536), + [anon_sym_static] = ACTIONS(4536), + [anon_sym_dynamic] = ACTIONS(4536), + [anon_sym_optional] = ACTIONS(4536), + [anon_sym_final] = ACTIONS(4536), + [anon_sym_inout] = ACTIONS(4536), + [anon_sym_ATescaping] = ACTIONS(4531), + [anon_sym_ATautoclosure] = ACTIONS(4531), + [anon_sym_weak] = ACTIONS(4536), + [anon_sym_unowned] = ACTIONS(4536), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4531), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4531), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4529), + [sym_raw_str_end_part] = ACTIONS(4529), + [sym__dot_custom] = ACTIONS(4533), + [sym__three_dot_operator_custom] = ACTIONS(4533), + [sym__open_ended_range_operator_custom] = ACTIONS(4533), + [sym__conjunction_operator_custom] = ACTIONS(4531), + [sym__disjunction_operator_custom] = ACTIONS(4531), + [sym__nil_coalescing_operator_custom] = ACTIONS(4531), + [sym__eq_eq_custom] = ACTIONS(4533), + [sym__plus_then_ws] = ACTIONS(4533), + [sym__minus_then_ws] = ACTIONS(4533), + [sym_bang] = ACTIONS(4533), + [sym__as_custom] = ACTIONS(4531), + [sym__as_quest_custom] = ACTIONS(4531), + [sym__as_bang_custom] = ACTIONS(4531), + }, + [1101] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4527), + [aux_sym_simple_identifier_token2] = ACTIONS(4529), + [aux_sym_simple_identifier_token3] = ACTIONS(4529), + [aux_sym_simple_identifier_token4] = ACTIONS(4529), + [anon_sym_nil] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_oct_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_BSLASH] = ACTIONS(4527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4541), + [anon_sym_LPAREN] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4543), + [anon_sym_QMARK] = ACTIONS(4546), + [sym__immediate_quest] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_async] = ACTIONS(4548), + [anon_sym_POUNDselector] = ACTIONS(4529), + [aux_sym_custom_operator_token1] = ACTIONS(4548), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [sym__await_operator] = ACTIONS(4527), + [anon_sym_POUNDfile] = ACTIONS(4527), + [anon_sym_POUNDfileID] = ACTIONS(4529), + [anon_sym_POUNDfilePath] = ACTIONS(4529), + [anon_sym_POUNDline] = ACTIONS(4529), + [anon_sym_POUNDcolumn] = ACTIONS(4529), + [anon_sym_POUNDfunction] = ACTIONS(4529), + [anon_sym_POUNDdsohandle] = ACTIONS(4529), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4529), + [anon_sym_POUNDfileLiteral] = ACTIONS(4529), + [anon_sym_POUNDimageLiteral] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4543), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_self] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_case] = ACTIONS(4546), + [anon_sym_POUNDkeyPath] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_try_BANG] = ACTIONS(4529), + [anon_sym_try_QMARK] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4548), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4548), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4548), + [anon_sym_LT_EQ] = ACTIONS(4548), + [anon_sym_GT_EQ] = ACTIONS(4548), + [anon_sym_is] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_STAR] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4548), + [anon_sym_PERCENT] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4548), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4546), + [anon_sym_LT_LT] = ACTIONS(4546), + [anon_sym_GT_GT] = ACTIONS(4546), + [anon_sym_import] = ACTIONS(4546), + [anon_sym_typealias] = ACTIONS(4546), + [anon_sym_struct] = ACTIONS(4546), + [anon_sym_class] = ACTIONS(4546), + [anon_sym_enum] = ACTIONS(4546), + [anon_sym_protocol] = ACTIONS(4546), + [anon_sym_let] = ACTIONS(4546), + [anon_sym_var] = ACTIONS(4546), + [anon_sym_func] = ACTIONS(4546), + [anon_sym_extension] = ACTIONS(4546), + [anon_sym_indirect] = ACTIONS(4546), + [anon_sym_init] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4541), + [anon_sym_deinit] = ACTIONS(4546), + [anon_sym_subscript] = ACTIONS(4546), + [anon_sym_prefix] = ACTIONS(4546), + [anon_sym_infix] = ACTIONS(4546), + [anon_sym_postfix] = ACTIONS(4546), + [anon_sym_precedencegroup] = ACTIONS(4546), + [anon_sym_associatedtype] = ACTIONS(4546), + [anon_sym_AT] = ACTIONS(4546), + [sym_property_behavior_modifier] = ACTIONS(4546), + [anon_sym_override] = ACTIONS(4546), + [anon_sym_convenience] = ACTIONS(4546), + [anon_sym_required] = ACTIONS(4546), + [anon_sym_public] = ACTIONS(4546), + [anon_sym_private] = ACTIONS(4546), + [anon_sym_internal] = ACTIONS(4546), + [anon_sym_fileprivate] = ACTIONS(4546), + [anon_sym_open] = ACTIONS(4546), + [anon_sym_mutating] = ACTIONS(4546), + [anon_sym_nonmutating] = ACTIONS(4546), + [anon_sym_static] = ACTIONS(4546), + [anon_sym_dynamic] = ACTIONS(4546), + [anon_sym_optional] = ACTIONS(4546), + [anon_sym_final] = ACTIONS(4546), + [anon_sym_inout] = ACTIONS(4546), + [anon_sym_ATescaping] = ACTIONS(4541), + [anon_sym_ATautoclosure] = ACTIONS(4541), + [anon_sym_weak] = ACTIONS(4546), + [anon_sym_unowned] = ACTIONS(4546), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4541), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4541), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4529), + [sym_raw_str_end_part] = ACTIONS(4529), + [sym__dot_custom] = ACTIONS(4543), + [sym__three_dot_operator_custom] = ACTIONS(4543), + [sym__open_ended_range_operator_custom] = ACTIONS(4543), + [sym__conjunction_operator_custom] = ACTIONS(4541), + [sym__disjunction_operator_custom] = ACTIONS(4541), + [sym__nil_coalescing_operator_custom] = ACTIONS(4541), + [sym__eq_eq_custom] = ACTIONS(4543), + [sym__plus_then_ws] = ACTIONS(4543), + [sym__minus_then_ws] = ACTIONS(4543), + [sym_bang] = ACTIONS(4543), + [sym__as_custom] = ACTIONS(4541), + [sym__as_quest_custom] = ACTIONS(4541), + [sym__as_bang_custom] = ACTIONS(4541), + }, + [1102] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4551), + [aux_sym_simple_identifier_token2] = ACTIONS(4553), + [aux_sym_simple_identifier_token3] = ACTIONS(4553), + [aux_sym_simple_identifier_token4] = ACTIONS(4553), + [anon_sym_nil] = ACTIONS(4551), + [sym_real_literal] = ACTIONS(4553), + [sym_integer_literal] = ACTIONS(4551), + [sym_hex_literal] = ACTIONS(4553), + [sym_oct_literal] = ACTIONS(4553), + [sym_bin_literal] = ACTIONS(4553), + [anon_sym_true] = ACTIONS(4551), + [anon_sym_false] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_BSLASH] = ACTIONS(4551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4555), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_QMARK] = ACTIONS(4557), + [sym__immediate_quest] = ACTIONS(4557), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_async] = ACTIONS(4551), + [anon_sym_POUNDselector] = ACTIONS(4553), + [aux_sym_custom_operator_token1] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [sym__await_operator] = ACTIONS(4551), + [anon_sym_POUNDfile] = ACTIONS(4551), + [anon_sym_POUNDfileID] = ACTIONS(4553), + [anon_sym_POUNDfilePath] = ACTIONS(4553), + [anon_sym_POUNDline] = ACTIONS(4553), + [anon_sym_POUNDcolumn] = ACTIONS(4553), + [anon_sym_POUNDfunction] = ACTIONS(4553), + [anon_sym_POUNDdsohandle] = ACTIONS(4553), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4553), + [anon_sym_POUNDfileLiteral] = ACTIONS(4553), + [anon_sym_POUNDimageLiteral] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4555), + [anon_sym_self] = ACTIONS(4551), + [anon_sym_super] = ACTIONS(4551), + [anon_sym_case] = ACTIONS(4557), + [anon_sym_POUNDkeyPath] = ACTIONS(4553), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_try_BANG] = ACTIONS(4553), + [anon_sym_try_QMARK] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_LT_LT] = ACTIONS(4557), + [anon_sym_GT_GT] = ACTIONS(4557), + [anon_sym_import] = ACTIONS(4557), + [anon_sym_typealias] = ACTIONS(4557), + [anon_sym_struct] = ACTIONS(4557), + [anon_sym_class] = ACTIONS(4557), + [anon_sym_enum] = ACTIONS(4557), + [anon_sym_protocol] = ACTIONS(4557), + [anon_sym_let] = ACTIONS(4557), + [anon_sym_var] = ACTIONS(4557), + [anon_sym_func] = ACTIONS(4557), + [anon_sym_extension] = ACTIONS(4557), + [anon_sym_indirect] = ACTIONS(4557), + [anon_sym_init] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4555), + [anon_sym_deinit] = ACTIONS(4557), + [anon_sym_subscript] = ACTIONS(4557), + [anon_sym_prefix] = ACTIONS(4557), + [anon_sym_infix] = ACTIONS(4557), + [anon_sym_postfix] = ACTIONS(4557), + [anon_sym_precedencegroup] = ACTIONS(4557), + [anon_sym_associatedtype] = ACTIONS(4557), + [anon_sym_AT] = ACTIONS(4557), + [sym_property_behavior_modifier] = ACTIONS(4557), + [anon_sym_override] = ACTIONS(4557), + [anon_sym_convenience] = ACTIONS(4557), + [anon_sym_required] = ACTIONS(4557), + [anon_sym_public] = ACTIONS(4557), + [anon_sym_private] = ACTIONS(4557), + [anon_sym_internal] = ACTIONS(4557), + [anon_sym_fileprivate] = ACTIONS(4557), + [anon_sym_open] = ACTIONS(4557), + [anon_sym_mutating] = ACTIONS(4557), + [anon_sym_nonmutating] = ACTIONS(4557), + [anon_sym_static] = ACTIONS(4557), + [anon_sym_dynamic] = ACTIONS(4557), + [anon_sym_optional] = ACTIONS(4557), + [anon_sym_final] = ACTIONS(4557), + [anon_sym_inout] = ACTIONS(4557), + [anon_sym_ATescaping] = ACTIONS(4555), + [anon_sym_ATautoclosure] = ACTIONS(4555), + [anon_sym_weak] = ACTIONS(4557), + [anon_sym_unowned] = ACTIONS(4557), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4555), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4555), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4553), + [sym_raw_str_end_part] = ACTIONS(4553), + [sym__dot_custom] = ACTIONS(4553), + [sym__three_dot_operator_custom] = ACTIONS(4553), + [sym__open_ended_range_operator_custom] = ACTIONS(4553), + [sym__conjunction_operator_custom] = ACTIONS(4555), + [sym__disjunction_operator_custom] = ACTIONS(4555), + [sym__nil_coalescing_operator_custom] = ACTIONS(4555), + [sym__eq_eq_custom] = ACTIONS(4553), + [sym__plus_then_ws] = ACTIONS(4553), + [sym__minus_then_ws] = ACTIONS(4553), + [sym_bang] = ACTIONS(4553), + [sym__as_custom] = ACTIONS(4555), + [sym__as_quest_custom] = ACTIONS(4555), + [sym__as_bang_custom] = ACTIONS(4555), + }, + [1103] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4551), + [aux_sym_simple_identifier_token2] = ACTIONS(4553), + [aux_sym_simple_identifier_token3] = ACTIONS(4553), + [aux_sym_simple_identifier_token4] = ACTIONS(4553), + [anon_sym_nil] = ACTIONS(4551), + [sym_real_literal] = ACTIONS(4553), + [sym_integer_literal] = ACTIONS(4551), + [sym_hex_literal] = ACTIONS(4553), + [sym_oct_literal] = ACTIONS(4553), + [sym_bin_literal] = ACTIONS(4553), + [anon_sym_true] = ACTIONS(4551), + [anon_sym_false] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_BSLASH] = ACTIONS(4551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_QMARK] = ACTIONS(4561), + [sym__immediate_quest] = ACTIONS(4561), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_async] = ACTIONS(4551), + [anon_sym_POUNDselector] = ACTIONS(4553), + [aux_sym_custom_operator_token1] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [sym__await_operator] = ACTIONS(4551), + [anon_sym_POUNDfile] = ACTIONS(4551), + [anon_sym_POUNDfileID] = ACTIONS(4553), + [anon_sym_POUNDfilePath] = ACTIONS(4553), + [anon_sym_POUNDline] = ACTIONS(4553), + [anon_sym_POUNDcolumn] = ACTIONS(4553), + [anon_sym_POUNDfunction] = ACTIONS(4553), + [anon_sym_POUNDdsohandle] = ACTIONS(4553), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4553), + [anon_sym_POUNDfileLiteral] = ACTIONS(4553), + [anon_sym_POUNDimageLiteral] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4559), + [anon_sym_self] = ACTIONS(4551), + [anon_sym_super] = ACTIONS(4551), + [anon_sym_case] = ACTIONS(4561), + [anon_sym_POUNDkeyPath] = ACTIONS(4553), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_try_BANG] = ACTIONS(4553), + [anon_sym_try_QMARK] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4561), + [anon_sym_CARET] = ACTIONS(4561), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_import] = ACTIONS(4561), + [anon_sym_typealias] = ACTIONS(4561), + [anon_sym_struct] = ACTIONS(4561), + [anon_sym_class] = ACTIONS(4561), + [anon_sym_enum] = ACTIONS(4561), + [anon_sym_protocol] = ACTIONS(4561), + [anon_sym_let] = ACTIONS(4561), + [anon_sym_var] = ACTIONS(4561), + [anon_sym_func] = ACTIONS(4561), + [anon_sym_extension] = ACTIONS(4561), + [anon_sym_indirect] = ACTIONS(4561), + [anon_sym_init] = ACTIONS(4561), + [anon_sym_SEMI] = ACTIONS(4559), + [anon_sym_deinit] = ACTIONS(4561), + [anon_sym_subscript] = ACTIONS(4561), + [anon_sym_prefix] = ACTIONS(4561), + [anon_sym_infix] = ACTIONS(4561), + [anon_sym_postfix] = ACTIONS(4561), + [anon_sym_precedencegroup] = ACTIONS(4561), + [anon_sym_associatedtype] = ACTIONS(4561), + [anon_sym_AT] = ACTIONS(4561), + [sym_property_behavior_modifier] = ACTIONS(4561), + [anon_sym_override] = ACTIONS(4561), + [anon_sym_convenience] = ACTIONS(4561), + [anon_sym_required] = ACTIONS(4561), + [anon_sym_public] = ACTIONS(4561), + [anon_sym_private] = ACTIONS(4561), + [anon_sym_internal] = ACTIONS(4561), + [anon_sym_fileprivate] = ACTIONS(4561), + [anon_sym_open] = ACTIONS(4561), + [anon_sym_mutating] = ACTIONS(4561), + [anon_sym_nonmutating] = ACTIONS(4561), + [anon_sym_static] = ACTIONS(4561), + [anon_sym_dynamic] = ACTIONS(4561), + [anon_sym_optional] = ACTIONS(4561), + [anon_sym_final] = ACTIONS(4561), + [anon_sym_inout] = ACTIONS(4561), + [anon_sym_ATescaping] = ACTIONS(4559), + [anon_sym_ATautoclosure] = ACTIONS(4559), + [anon_sym_weak] = ACTIONS(4561), + [anon_sym_unowned] = ACTIONS(4561), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4559), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4559), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4553), + [sym_raw_str_end_part] = ACTIONS(4553), + [sym__dot_custom] = ACTIONS(4553), + [sym__three_dot_operator_custom] = ACTIONS(4553), + [sym__open_ended_range_operator_custom] = ACTIONS(4553), + [sym__conjunction_operator_custom] = ACTIONS(4559), + [sym__disjunction_operator_custom] = ACTIONS(4559), + [sym__nil_coalescing_operator_custom] = ACTIONS(4559), + [sym__eq_eq_custom] = ACTIONS(4553), + [sym__plus_then_ws] = ACTIONS(4553), + [sym__minus_then_ws] = ACTIONS(4553), + [sym_bang] = ACTIONS(4553), + [sym__as_custom] = ACTIONS(4559), + [sym__as_quest_custom] = ACTIONS(4559), + [sym__as_bang_custom] = ACTIONS(4559), + }, + [1104] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4563), + [aux_sym_simple_identifier_token2] = ACTIONS(4565), + [aux_sym_simple_identifier_token3] = ACTIONS(4565), + [aux_sym_simple_identifier_token4] = ACTIONS(4565), + [anon_sym_nil] = ACTIONS(4563), + [sym_real_literal] = ACTIONS(4565), + [sym_integer_literal] = ACTIONS(4563), + [sym_hex_literal] = ACTIONS(4565), + [sym_oct_literal] = ACTIONS(4565), + [sym_bin_literal] = ACTIONS(4565), + [anon_sym_true] = ACTIONS(4563), + [anon_sym_false] = ACTIONS(4563), + [anon_sym_DQUOTE] = ACTIONS(4563), + [anon_sym_BSLASH] = ACTIONS(4563), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_QMARK] = ACTIONS(4563), + [sym__immediate_quest] = ACTIONS(4563), + [anon_sym_AMP] = ACTIONS(4563), + [anon_sym_async] = ACTIONS(4563), + [anon_sym_POUNDselector] = ACTIONS(4565), + [aux_sym_custom_operator_token1] = ACTIONS(4563), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4563), + [sym__await_operator] = ACTIONS(4563), + [anon_sym_POUNDfile] = ACTIONS(4563), + [anon_sym_POUNDfileID] = ACTIONS(4565), + [anon_sym_POUNDfilePath] = ACTIONS(4565), + [anon_sym_POUNDline] = ACTIONS(4565), + [anon_sym_POUNDcolumn] = ACTIONS(4565), + [anon_sym_POUNDfunction] = ACTIONS(4565), + [anon_sym_POUNDdsohandle] = ACTIONS(4565), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4565), + [anon_sym_POUNDfileLiteral] = ACTIONS(4565), + [anon_sym_POUNDimageLiteral] = ACTIONS(4565), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_self] = ACTIONS(4563), + [anon_sym_super] = ACTIONS(4563), + [anon_sym_case] = ACTIONS(4563), + [anon_sym_POUNDkeyPath] = ACTIONS(4565), + [anon_sym_try] = ACTIONS(4563), + [anon_sym_try_BANG] = ACTIONS(4565), + [anon_sym_try_QMARK] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4563), + [anon_sym_LT_EQ] = ACTIONS(4563), + [anon_sym_GT_EQ] = ACTIONS(4563), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_PLUS_PLUS] = ACTIONS(4563), + [anon_sym_DASH_DASH] = ACTIONS(4563), + [anon_sym_TILDE] = ACTIONS(4563), + [anon_sym_PIPE] = ACTIONS(4563), + [anon_sym_CARET] = ACTIONS(4563), + [anon_sym_LT_LT] = ACTIONS(4563), + [anon_sym_GT_GT] = ACTIONS(4563), + [anon_sym_import] = ACTIONS(4563), + [anon_sym_typealias] = ACTIONS(4563), + [anon_sym_struct] = ACTIONS(4563), + [anon_sym_class] = ACTIONS(4563), + [anon_sym_enum] = ACTIONS(4563), + [anon_sym_protocol] = ACTIONS(4563), + [anon_sym_let] = ACTIONS(4563), + [anon_sym_var] = ACTIONS(4563), + [anon_sym_func] = ACTIONS(4563), + [anon_sym_extension] = ACTIONS(4563), + [anon_sym_indirect] = ACTIONS(4563), + [anon_sym_init] = ACTIONS(4563), + [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_deinit] = ACTIONS(4563), + [anon_sym_subscript] = ACTIONS(4563), + [anon_sym_prefix] = ACTIONS(4563), + [anon_sym_infix] = ACTIONS(4563), + [anon_sym_postfix] = ACTIONS(4563), + [anon_sym_precedencegroup] = ACTIONS(4563), + [anon_sym_associatedtype] = ACTIONS(4563), + [anon_sym_AT] = ACTIONS(4563), + [sym_property_behavior_modifier] = ACTIONS(4563), + [anon_sym_override] = ACTIONS(4563), + [anon_sym_convenience] = ACTIONS(4563), + [anon_sym_required] = ACTIONS(4563), + [anon_sym_public] = ACTIONS(4563), + [anon_sym_private] = ACTIONS(4563), + [anon_sym_internal] = ACTIONS(4563), + [anon_sym_fileprivate] = ACTIONS(4563), + [anon_sym_open] = ACTIONS(4563), + [anon_sym_mutating] = ACTIONS(4563), + [anon_sym_nonmutating] = ACTIONS(4563), + [anon_sym_static] = ACTIONS(4563), + [anon_sym_dynamic] = ACTIONS(4563), + [anon_sym_optional] = ACTIONS(4563), + [anon_sym_final] = ACTIONS(4563), + [anon_sym_inout] = ACTIONS(4563), + [anon_sym_ATescaping] = ACTIONS(4565), + [anon_sym_ATautoclosure] = ACTIONS(4565), + [anon_sym_weak] = ACTIONS(4563), + [anon_sym_unowned] = ACTIONS(4563), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4565), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4565), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4565), + [sym_raw_str_end_part] = ACTIONS(4565), + [sym__dot_custom] = ACTIONS(4565), + [sym__three_dot_operator_custom] = ACTIONS(4565), + [sym__open_ended_range_operator_custom] = ACTIONS(4565), + [sym__conjunction_operator_custom] = ACTIONS(4565), + [sym__disjunction_operator_custom] = ACTIONS(4565), + [sym__nil_coalescing_operator_custom] = ACTIONS(4565), + [sym__eq_eq_custom] = ACTIONS(4565), + [sym__plus_then_ws] = ACTIONS(4565), + [sym__minus_then_ws] = ACTIONS(4565), + [sym_bang] = ACTIONS(4565), + [sym__as_custom] = ACTIONS(4565), + [sym__as_quest_custom] = ACTIONS(4565), + [sym__as_bang_custom] = ACTIONS(4565), + }, + [1105] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4570), + [aux_sym_simple_identifier_token2] = ACTIONS(4572), + [aux_sym_simple_identifier_token3] = ACTIONS(4572), + [aux_sym_simple_identifier_token4] = ACTIONS(4572), + [anon_sym_nil] = ACTIONS(4570), + [sym_real_literal] = ACTIONS(4572), + [sym_integer_literal] = ACTIONS(4570), + [sym_hex_literal] = ACTIONS(4572), + [sym_oct_literal] = ACTIONS(4572), + [sym_bin_literal] = ACTIONS(4572), + [anon_sym_true] = ACTIONS(4570), + [anon_sym_false] = ACTIONS(4570), + [anon_sym_DQUOTE] = ACTIONS(4570), + [anon_sym_BSLASH] = ACTIONS(4570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4570), + [sym__immediate_quest] = ACTIONS(4570), + [anon_sym_AMP] = ACTIONS(4570), + [anon_sym_async] = ACTIONS(4570), + [anon_sym_POUNDselector] = ACTIONS(4572), + [aux_sym_custom_operator_token1] = ACTIONS(4570), + [anon_sym_LT] = ACTIONS(4570), + [anon_sym_GT] = ACTIONS(4570), + [sym__await_operator] = ACTIONS(4570), + [anon_sym_POUNDfile] = ACTIONS(4570), + [anon_sym_POUNDfileID] = ACTIONS(4572), + [anon_sym_POUNDfilePath] = ACTIONS(4572), + [anon_sym_POUNDline] = ACTIONS(4572), + [anon_sym_POUNDcolumn] = ACTIONS(4572), + [anon_sym_POUNDfunction] = ACTIONS(4572), + [anon_sym_POUNDdsohandle] = ACTIONS(4572), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4572), + [anon_sym_POUNDfileLiteral] = ACTIONS(4572), + [anon_sym_POUNDimageLiteral] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4572), + [anon_sym_RBRACE] = ACTIONS(4572), + [anon_sym_self] = ACTIONS(4570), + [anon_sym_super] = ACTIONS(4570), + [anon_sym_case] = ACTIONS(4570), + [anon_sym_POUNDkeyPath] = ACTIONS(4572), + [anon_sym_try] = ACTIONS(4570), + [anon_sym_try_BANG] = ACTIONS(4572), + [anon_sym_try_QMARK] = ACTIONS(4572), + [anon_sym_BANG_EQ] = ACTIONS(4570), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4570), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4570), + [anon_sym_LT_EQ] = ACTIONS(4570), + [anon_sym_GT_EQ] = ACTIONS(4570), + [anon_sym_is] = ACTIONS(4570), + [anon_sym_PLUS] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4570), + [anon_sym_STAR] = ACTIONS(4570), + [anon_sym_SLASH] = ACTIONS(4570), + [anon_sym_PERCENT] = ACTIONS(4570), + [anon_sym_PLUS_PLUS] = ACTIONS(4570), + [anon_sym_DASH_DASH] = ACTIONS(4570), + [anon_sym_TILDE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4570), + [anon_sym_CARET] = ACTIONS(4570), + [anon_sym_LT_LT] = ACTIONS(4570), + [anon_sym_GT_GT] = ACTIONS(4570), + [anon_sym_import] = ACTIONS(4570), + [anon_sym_typealias] = ACTIONS(4570), + [anon_sym_struct] = ACTIONS(4570), + [anon_sym_class] = ACTIONS(4570), + [anon_sym_enum] = ACTIONS(4570), + [anon_sym_protocol] = ACTIONS(4570), + [anon_sym_let] = ACTIONS(4570), + [anon_sym_var] = ACTIONS(4570), + [anon_sym_func] = ACTIONS(4570), + [anon_sym_extension] = ACTIONS(4570), + [anon_sym_indirect] = ACTIONS(4570), + [anon_sym_init] = ACTIONS(4570), + [anon_sym_SEMI] = ACTIONS(4572), + [anon_sym_deinit] = ACTIONS(4570), + [anon_sym_subscript] = ACTIONS(4570), + [anon_sym_prefix] = ACTIONS(4570), + [anon_sym_infix] = ACTIONS(4570), + [anon_sym_postfix] = ACTIONS(4570), + [anon_sym_precedencegroup] = ACTIONS(4570), + [anon_sym_associatedtype] = ACTIONS(4570), + [anon_sym_AT] = ACTIONS(4570), + [sym_property_behavior_modifier] = ACTIONS(4570), + [anon_sym_override] = ACTIONS(4570), + [anon_sym_convenience] = ACTIONS(4570), + [anon_sym_required] = ACTIONS(4570), + [anon_sym_public] = ACTIONS(4570), + [anon_sym_private] = ACTIONS(4570), + [anon_sym_internal] = ACTIONS(4570), + [anon_sym_fileprivate] = ACTIONS(4570), + [anon_sym_open] = ACTIONS(4570), + [anon_sym_mutating] = ACTIONS(4570), + [anon_sym_nonmutating] = ACTIONS(4570), + [anon_sym_static] = ACTIONS(4570), + [anon_sym_dynamic] = ACTIONS(4570), + [anon_sym_optional] = ACTIONS(4570), + [anon_sym_final] = ACTIONS(4570), + [anon_sym_inout] = ACTIONS(4570), + [anon_sym_ATescaping] = ACTIONS(4572), + [anon_sym_ATautoclosure] = ACTIONS(4572), + [anon_sym_weak] = ACTIONS(4570), + [anon_sym_unowned] = ACTIONS(4570), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4572), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4572), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4572), + [sym_raw_str_end_part] = ACTIONS(4572), + [sym__dot_custom] = ACTIONS(4572), + [sym__three_dot_operator_custom] = ACTIONS(4572), + [sym__open_ended_range_operator_custom] = ACTIONS(4572), + [sym__conjunction_operator_custom] = ACTIONS(4572), + [sym__disjunction_operator_custom] = ACTIONS(4572), + [sym__nil_coalescing_operator_custom] = ACTIONS(4572), + [sym__eq_eq_custom] = ACTIONS(4572), + [sym__plus_then_ws] = ACTIONS(4572), + [sym__minus_then_ws] = ACTIONS(4572), + [sym_bang] = ACTIONS(4572), + [sym__as_custom] = ACTIONS(4572), + [sym__as_quest_custom] = ACTIONS(4572), + [sym__as_bang_custom] = ACTIONS(4572), + }, + [1106] = { + [ts_builtin_sym_end] = ACTIONS(195), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4574), + [aux_sym_simple_identifier_token2] = ACTIONS(195), + [aux_sym_simple_identifier_token3] = ACTIONS(195), + [aux_sym_simple_identifier_token4] = ACTIONS(195), + [anon_sym_nil] = ACTIONS(4574), + [sym_real_literal] = ACTIONS(195), + [sym_integer_literal] = ACTIONS(4574), + [sym_hex_literal] = ACTIONS(195), + [sym_oct_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(4574), + [anon_sym_false] = ACTIONS(4574), + [anon_sym_DQUOTE] = ACTIONS(4574), + [anon_sym_BSLASH] = ACTIONS(4574), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(195), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_AMP] = ACTIONS(4574), + [anon_sym_async] = ACTIONS(4574), + [anon_sym_POUNDselector] = ACTIONS(195), + [aux_sym_custom_operator_token1] = ACTIONS(4574), + [anon_sym_LT] = ACTIONS(4574), + [anon_sym_GT] = ACTIONS(4574), + [sym__await_operator] = ACTIONS(4574), + [anon_sym_POUNDfile] = ACTIONS(4574), + [anon_sym_POUNDfileID] = ACTIONS(195), + [anon_sym_POUNDfilePath] = ACTIONS(195), + [anon_sym_POUNDline] = ACTIONS(195), + [anon_sym_POUNDcolumn] = ACTIONS(195), + [anon_sym_POUNDfunction] = ACTIONS(195), + [anon_sym_POUNDdsohandle] = ACTIONS(195), + [anon_sym_POUNDcolorLiteral] = ACTIONS(195), + [anon_sym_POUNDfileLiteral] = ACTIONS(195), + [anon_sym_POUNDimageLiteral] = ACTIONS(195), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_self] = ACTIONS(4574), + [anon_sym_super] = ACTIONS(4574), + [anon_sym_if] = ACTIONS(4574), + [anon_sym_guard] = ACTIONS(4574), + [anon_sym_switch] = ACTIONS(4574), + [anon_sym_do] = ACTIONS(4574), + [anon_sym_POUNDkeyPath] = ACTIONS(195), + [anon_sym_try] = ACTIONS(4574), + [anon_sym_try_BANG] = ACTIONS(195), + [anon_sym_try_QMARK] = ACTIONS(195), + [anon_sym_BANG_EQ] = ACTIONS(4574), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4574), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4574), + [anon_sym_LT_EQ] = ACTIONS(4574), + [anon_sym_GT_EQ] = ACTIONS(4574), + [anon_sym_PLUS] = ACTIONS(4574), + [anon_sym_DASH] = ACTIONS(4574), + [anon_sym_STAR] = ACTIONS(4574), + [anon_sym_SLASH] = ACTIONS(4574), + [anon_sym_PERCENT] = ACTIONS(4574), + [anon_sym_PLUS_PLUS] = ACTIONS(4574), + [anon_sym_DASH_DASH] = ACTIONS(4574), + [anon_sym_TILDE] = ACTIONS(4574), + [sym_statement_label] = ACTIONS(195), + [anon_sym_for] = ACTIONS(4574), + [anon_sym_while] = ACTIONS(4574), + [anon_sym_repeat] = ACTIONS(4574), + [sym_throw_keyword] = ACTIONS(4574), + [anon_sym_import] = ACTIONS(4574), + [anon_sym_typealias] = ACTIONS(4574), + [anon_sym_struct] = ACTIONS(4574), + [anon_sym_class] = ACTIONS(4574), + [anon_sym_enum] = ACTIONS(4574), + [anon_sym_protocol] = ACTIONS(4574), + [anon_sym_let] = ACTIONS(4574), + [anon_sym_var] = ACTIONS(4574), + [anon_sym_func] = ACTIONS(4574), + [anon_sym_extension] = ACTIONS(4574), + [anon_sym_indirect] = ACTIONS(4574), + [anon_sym_init] = ACTIONS(4574), + [anon_sym_prefix] = ACTIONS(4574), + [anon_sym_infix] = ACTIONS(4574), + [anon_sym_postfix] = ACTIONS(4574), + [anon_sym_precedencegroup] = ACTIONS(4574), + [anon_sym_associatedtype] = ACTIONS(4574), + [anon_sym_AT] = ACTIONS(4574), + [sym_property_behavior_modifier] = ACTIONS(4574), + [anon_sym_override] = ACTIONS(4574), + [anon_sym_convenience] = ACTIONS(4574), + [anon_sym_required] = ACTIONS(4574), + [anon_sym_public] = ACTIONS(4574), + [anon_sym_private] = ACTIONS(4574), + [anon_sym_internal] = ACTIONS(4574), + [anon_sym_fileprivate] = ACTIONS(4574), + [anon_sym_open] = ACTIONS(4574), + [anon_sym_mutating] = ACTIONS(4574), + [anon_sym_nonmutating] = ACTIONS(4574), + [anon_sym_static] = ACTIONS(4574), + [anon_sym_dynamic] = ACTIONS(4574), + [anon_sym_optional] = ACTIONS(4574), + [anon_sym_final] = ACTIONS(4574), + [anon_sym_inout] = ACTIONS(4574), + [anon_sym_ATescaping] = ACTIONS(195), + [anon_sym_ATautoclosure] = ACTIONS(195), + [anon_sym_weak] = ACTIONS(4574), + [anon_sym_unowned] = ACTIONS(4574), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(195), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(195), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(195), + [sym_raw_str_end_part] = ACTIONS(195), + [sym__dot_custom] = ACTIONS(195), + [sym__three_dot_operator_custom] = ACTIONS(195), + [sym__open_ended_range_operator_custom] = ACTIONS(195), + [sym__eq_eq_custom] = ACTIONS(195), + [sym__plus_then_ws] = ACTIONS(195), + [sym__minus_then_ws] = ACTIONS(195), + [sym_bang] = ACTIONS(195), + }, + [1107] = { + [ts_builtin_sym_end] = ACTIONS(4576), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4578), + [aux_sym_simple_identifier_token2] = ACTIONS(4576), + [aux_sym_simple_identifier_token3] = ACTIONS(4576), + [aux_sym_simple_identifier_token4] = ACTIONS(4576), + [anon_sym_nil] = ACTIONS(4578), + [sym_real_literal] = ACTIONS(4576), + [sym_integer_literal] = ACTIONS(4578), + [sym_hex_literal] = ACTIONS(4576), + [sym_oct_literal] = ACTIONS(4576), + [sym_bin_literal] = ACTIONS(4576), + [anon_sym_true] = ACTIONS(4578), + [anon_sym_false] = ACTIONS(4578), + [anon_sym_DQUOTE] = ACTIONS(4578), + [anon_sym_BSLASH] = ACTIONS(4578), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4576), + [anon_sym_LPAREN] = ACTIONS(4576), + [anon_sym_LBRACK] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4578), + [anon_sym_async] = ACTIONS(4578), + [anon_sym_POUNDselector] = ACTIONS(4576), + [aux_sym_custom_operator_token1] = ACTIONS(4578), + [anon_sym_LT] = ACTIONS(4578), + [anon_sym_GT] = ACTIONS(4578), + [sym__await_operator] = ACTIONS(4578), + [anon_sym_POUNDfile] = ACTIONS(4578), + [anon_sym_POUNDfileID] = ACTIONS(4576), + [anon_sym_POUNDfilePath] = ACTIONS(4576), + [anon_sym_POUNDline] = ACTIONS(4576), + [anon_sym_POUNDcolumn] = ACTIONS(4576), + [anon_sym_POUNDfunction] = ACTIONS(4576), + [anon_sym_POUNDdsohandle] = ACTIONS(4576), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4576), + [anon_sym_POUNDfileLiteral] = ACTIONS(4576), + [anon_sym_POUNDimageLiteral] = ACTIONS(4576), + [anon_sym_LBRACE] = ACTIONS(4576), + [anon_sym_self] = ACTIONS(4578), + [anon_sym_super] = ACTIONS(4578), + [anon_sym_if] = ACTIONS(4578), + [anon_sym_guard] = ACTIONS(4578), + [anon_sym_switch] = ACTIONS(4578), + [anon_sym_do] = ACTIONS(4578), + [anon_sym_POUNDkeyPath] = ACTIONS(4576), + [anon_sym_try] = ACTIONS(4578), + [anon_sym_try_BANG] = ACTIONS(4576), + [anon_sym_try_QMARK] = ACTIONS(4576), + [anon_sym_BANG_EQ] = ACTIONS(4578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4578), + [anon_sym_LT_EQ] = ACTIONS(4578), + [anon_sym_GT_EQ] = ACTIONS(4578), + [anon_sym_PLUS] = ACTIONS(4578), + [anon_sym_DASH] = ACTIONS(4578), + [anon_sym_STAR] = ACTIONS(4578), + [anon_sym_SLASH] = ACTIONS(4578), + [anon_sym_PERCENT] = ACTIONS(4578), + [anon_sym_PLUS_PLUS] = ACTIONS(4578), + [anon_sym_DASH_DASH] = ACTIONS(4578), + [anon_sym_TILDE] = ACTIONS(4578), + [sym_statement_label] = ACTIONS(4576), + [anon_sym_for] = ACTIONS(4578), + [anon_sym_while] = ACTIONS(4578), + [anon_sym_repeat] = ACTIONS(4578), + [sym_throw_keyword] = ACTIONS(4578), + [anon_sym_import] = ACTIONS(4578), + [anon_sym_typealias] = ACTIONS(4578), + [anon_sym_struct] = ACTIONS(4578), + [anon_sym_class] = ACTIONS(4578), + [anon_sym_enum] = ACTIONS(4578), + [anon_sym_protocol] = ACTIONS(4578), + [anon_sym_let] = ACTIONS(4578), + [anon_sym_var] = ACTIONS(4578), + [anon_sym_func] = ACTIONS(4578), + [anon_sym_extension] = ACTIONS(4578), + [anon_sym_indirect] = ACTIONS(4578), + [anon_sym_init] = ACTIONS(4578), + [anon_sym_prefix] = ACTIONS(4578), + [anon_sym_infix] = ACTIONS(4578), + [anon_sym_postfix] = ACTIONS(4578), + [anon_sym_precedencegroup] = ACTIONS(4578), + [anon_sym_associatedtype] = ACTIONS(4578), + [anon_sym_AT] = ACTIONS(4578), + [sym_property_behavior_modifier] = ACTIONS(4578), + [anon_sym_override] = ACTIONS(4578), + [anon_sym_convenience] = ACTIONS(4578), + [anon_sym_required] = ACTIONS(4578), + [anon_sym_public] = ACTIONS(4578), + [anon_sym_private] = ACTIONS(4578), + [anon_sym_internal] = ACTIONS(4578), + [anon_sym_fileprivate] = ACTIONS(4578), + [anon_sym_open] = ACTIONS(4578), + [anon_sym_mutating] = ACTIONS(4578), + [anon_sym_nonmutating] = ACTIONS(4578), + [anon_sym_static] = ACTIONS(4578), + [anon_sym_dynamic] = ACTIONS(4578), + [anon_sym_optional] = ACTIONS(4578), + [anon_sym_final] = ACTIONS(4578), + [anon_sym_inout] = ACTIONS(4578), + [anon_sym_ATescaping] = ACTIONS(4576), + [anon_sym_ATautoclosure] = ACTIONS(4576), + [anon_sym_weak] = ACTIONS(4578), + [anon_sym_unowned] = ACTIONS(4578), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4576), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4576), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4576), + [sym_raw_str_end_part] = ACTIONS(4576), + [sym__dot_custom] = ACTIONS(4576), + [sym__three_dot_operator_custom] = ACTIONS(4576), + [sym__open_ended_range_operator_custom] = ACTIONS(4576), + [sym__eq_eq_custom] = ACTIONS(4576), + [sym__plus_then_ws] = ACTIONS(4576), + [sym__minus_then_ws] = ACTIONS(4576), + [sym_bang] = ACTIONS(4576), + }, + [1108] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1198), + [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(1287), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4580), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4586), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_async] = ACTIONS(4580), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_RBRACE] = ACTIONS(4580), + [anon_sym_case] = ACTIONS(4580), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4594), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4580), + [anon_sym_typealias] = ACTIONS(4580), + [anon_sym_struct] = ACTIONS(4580), + [anon_sym_class] = ACTIONS(4580), + [anon_sym_enum] = ACTIONS(4580), + [anon_sym_protocol] = ACTIONS(4580), + [anon_sym_let] = ACTIONS(4580), + [anon_sym_var] = ACTIONS(4580), + [anon_sym_func] = ACTIONS(4580), + [anon_sym_extension] = ACTIONS(4580), + [anon_sym_indirect] = ACTIONS(4580), + [anon_sym_init] = ACTIONS(4580), + [anon_sym_SEMI] = ACTIONS(4580), + [anon_sym_deinit] = ACTIONS(4580), + [anon_sym_subscript] = ACTIONS(4580), + [anon_sym_prefix] = ACTIONS(4580), + [anon_sym_infix] = ACTIONS(4580), + [anon_sym_postfix] = ACTIONS(4580), + [anon_sym_precedencegroup] = ACTIONS(4580), + [anon_sym_associatedtype] = ACTIONS(4580), + [anon_sym_AT] = ACTIONS(4586), + [sym_property_behavior_modifier] = ACTIONS(4580), + [anon_sym_override] = ACTIONS(4580), + [anon_sym_convenience] = ACTIONS(4580), + [anon_sym_required] = ACTIONS(4580), + [anon_sym_public] = ACTIONS(4580), + [anon_sym_private] = ACTIONS(4580), + [anon_sym_internal] = ACTIONS(4580), + [anon_sym_fileprivate] = ACTIONS(4580), + [anon_sym_open] = ACTIONS(4580), + [anon_sym_mutating] = ACTIONS(4580), + [anon_sym_nonmutating] = ACTIONS(4580), + [anon_sym_static] = ACTIONS(4580), + [anon_sym_dynamic] = ACTIONS(4580), + [anon_sym_optional] = ACTIONS(4580), + [anon_sym_final] = ACTIONS(4580), + [anon_sym_inout] = ACTIONS(4580), + [anon_sym_ATescaping] = ACTIONS(4580), + [anon_sym_ATautoclosure] = ACTIONS(4580), + [anon_sym_weak] = ACTIONS(4580), + [anon_sym_unowned] = ACTIONS(4586), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4580), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4580), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(4608), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4612), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1109] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1198), + [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(1287), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4626), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_async] = ACTIONS(4624), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_RBRACE] = ACTIONS(4624), + [anon_sym_case] = ACTIONS(4624), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4594), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4624), + [anon_sym_typealias] = ACTIONS(4624), + [anon_sym_struct] = ACTIONS(4624), + [anon_sym_class] = ACTIONS(4624), + [anon_sym_enum] = ACTIONS(4624), + [anon_sym_protocol] = ACTIONS(4624), + [anon_sym_let] = ACTIONS(4624), + [anon_sym_var] = ACTIONS(4624), + [anon_sym_func] = ACTIONS(4624), + [anon_sym_extension] = ACTIONS(4624), + [anon_sym_indirect] = ACTIONS(4624), + [anon_sym_init] = ACTIONS(4624), + [anon_sym_SEMI] = ACTIONS(4624), + [anon_sym_deinit] = ACTIONS(4624), + [anon_sym_subscript] = ACTIONS(4624), + [anon_sym_prefix] = ACTIONS(4624), + [anon_sym_infix] = ACTIONS(4624), + [anon_sym_postfix] = ACTIONS(4624), + [anon_sym_precedencegroup] = ACTIONS(4624), + [anon_sym_associatedtype] = ACTIONS(4624), + [anon_sym_AT] = ACTIONS(4626), + [sym_property_behavior_modifier] = ACTIONS(4624), + [anon_sym_override] = ACTIONS(4624), + [anon_sym_convenience] = ACTIONS(4624), + [anon_sym_required] = ACTIONS(4624), + [anon_sym_public] = ACTIONS(4624), + [anon_sym_private] = ACTIONS(4624), + [anon_sym_internal] = ACTIONS(4624), + [anon_sym_fileprivate] = ACTIONS(4624), + [anon_sym_open] = ACTIONS(4624), + [anon_sym_mutating] = ACTIONS(4624), + [anon_sym_nonmutating] = ACTIONS(4624), + [anon_sym_static] = ACTIONS(4624), + [anon_sym_dynamic] = ACTIONS(4624), + [anon_sym_optional] = ACTIONS(4624), + [anon_sym_final] = ACTIONS(4624), + [anon_sym_inout] = ACTIONS(4624), + [anon_sym_ATescaping] = ACTIONS(4624), + [anon_sym_ATautoclosure] = ACTIONS(4624), + [anon_sym_weak] = ACTIONS(4624), + [anon_sym_unowned] = ACTIONS(4626), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4624), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4624), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(4608), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4612), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1110] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(4628), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_QMARK] = ACTIONS(4630), + [sym__immediate_quest] = ACTIONS(4630), + [anon_sym_AMP] = ACTIONS(4630), + [anon_sym_async] = ACTIONS(4628), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_RBRACE] = ACTIONS(4628), + [anon_sym_case] = ACTIONS(4628), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4630), + [anon_sym_GT_EQ] = ACTIONS(4630), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_CARET] = ACTIONS(4630), + [anon_sym_LT_LT] = ACTIONS(4630), + [anon_sym_GT_GT] = ACTIONS(4630), + [anon_sym_import] = ACTIONS(4628), + [anon_sym_typealias] = ACTIONS(4628), + [anon_sym_struct] = ACTIONS(4628), + [anon_sym_class] = ACTIONS(4628), + [anon_sym_enum] = ACTIONS(4628), + [anon_sym_protocol] = ACTIONS(4628), + [anon_sym_let] = ACTIONS(4628), + [anon_sym_var] = ACTIONS(4628), + [anon_sym_func] = ACTIONS(4628), + [anon_sym_extension] = ACTIONS(4628), + [anon_sym_indirect] = ACTIONS(4628), + [anon_sym_init] = ACTIONS(4628), + [anon_sym_SEMI] = ACTIONS(4628), + [anon_sym_deinit] = ACTIONS(4628), + [anon_sym_subscript] = ACTIONS(4628), + [anon_sym_prefix] = ACTIONS(4628), + [anon_sym_infix] = ACTIONS(4628), + [anon_sym_postfix] = ACTIONS(4628), + [anon_sym_precedencegroup] = ACTIONS(4628), + [anon_sym_associatedtype] = ACTIONS(4628), + [anon_sym_AT] = ACTIONS(4630), + [sym_property_behavior_modifier] = ACTIONS(4628), + [anon_sym_override] = ACTIONS(4628), + [anon_sym_convenience] = ACTIONS(4628), + [anon_sym_required] = ACTIONS(4628), + [anon_sym_public] = ACTIONS(4628), + [anon_sym_private] = ACTIONS(4628), + [anon_sym_internal] = ACTIONS(4628), + [anon_sym_fileprivate] = ACTIONS(4628), + [anon_sym_open] = ACTIONS(4628), + [anon_sym_mutating] = ACTIONS(4628), + [anon_sym_nonmutating] = ACTIONS(4628), + [anon_sym_static] = ACTIONS(4628), + [anon_sym_dynamic] = ACTIONS(4628), + [anon_sym_optional] = ACTIONS(4628), + [anon_sym_final] = ACTIONS(4628), + [anon_sym_inout] = ACTIONS(4628), + [anon_sym_ATescaping] = ACTIONS(4628), + [anon_sym_ATautoclosure] = ACTIONS(4628), + [anon_sym_weak] = ACTIONS(4628), + [anon_sym_unowned] = ACTIONS(4630), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4628), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4628), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4628), + [sym__three_dot_operator_custom] = ACTIONS(4628), + [sym__open_ended_range_operator_custom] = ACTIONS(4628), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4612), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4628), + [sym__as_quest_custom] = ACTIONS(4628), + [sym__as_bang_custom] = ACTIONS(4628), + }, + [1111] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(2763), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4634), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_async] = ACTIONS(4636), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4636), + [anon_sym_case] = ACTIONS(4636), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4594), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4636), + [anon_sym_typealias] = ACTIONS(4636), + [anon_sym_struct] = ACTIONS(4636), + [anon_sym_class] = ACTIONS(4636), + [anon_sym_enum] = ACTIONS(4636), + [anon_sym_protocol] = ACTIONS(4636), + [anon_sym_let] = ACTIONS(4636), + [anon_sym_var] = ACTIONS(4636), + [anon_sym_func] = ACTIONS(4636), + [anon_sym_extension] = ACTIONS(4636), + [anon_sym_indirect] = ACTIONS(4636), + [anon_sym_init] = ACTIONS(4636), + [anon_sym_deinit] = ACTIONS(4636), + [anon_sym_subscript] = ACTIONS(4636), + [anon_sym_prefix] = ACTIONS(4636), + [anon_sym_infix] = ACTIONS(4636), + [anon_sym_postfix] = ACTIONS(4636), + [anon_sym_precedencegroup] = ACTIONS(4636), + [anon_sym_associatedtype] = ACTIONS(4636), + [anon_sym_AT] = ACTIONS(4640), + [sym_property_behavior_modifier] = ACTIONS(4636), + [anon_sym_override] = ACTIONS(4636), + [anon_sym_convenience] = ACTIONS(4636), + [anon_sym_required] = ACTIONS(4636), + [anon_sym_public] = ACTIONS(4636), + [anon_sym_private] = ACTIONS(4636), + [anon_sym_internal] = ACTIONS(4636), + [anon_sym_fileprivate] = ACTIONS(4636), + [anon_sym_open] = ACTIONS(4636), + [anon_sym_mutating] = ACTIONS(4636), + [anon_sym_nonmutating] = ACTIONS(4636), + [anon_sym_static] = ACTIONS(4636), + [anon_sym_dynamic] = ACTIONS(4636), + [anon_sym_optional] = ACTIONS(4636), + [anon_sym_final] = ACTIONS(4636), + [anon_sym_inout] = ACTIONS(4636), + [anon_sym_ATescaping] = ACTIONS(4636), + [anon_sym_ATautoclosure] = ACTIONS(4636), + [anon_sym_weak] = ACTIONS(4636), + [anon_sym_unowned] = ACTIONS(4640), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4636), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4636), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(4608), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4612), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1112] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4644), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_async] = ACTIONS(4642), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_RBRACE] = ACTIONS(4642), + [anon_sym_case] = ACTIONS(4642), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4594), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4642), + [anon_sym_typealias] = ACTIONS(4642), + [anon_sym_struct] = ACTIONS(4642), + [anon_sym_class] = ACTIONS(4642), + [anon_sym_enum] = ACTIONS(4642), + [anon_sym_protocol] = ACTIONS(4642), + [anon_sym_let] = ACTIONS(4642), + [anon_sym_var] = ACTIONS(4642), + [anon_sym_func] = ACTIONS(4642), + [anon_sym_extension] = ACTIONS(4642), + [anon_sym_indirect] = ACTIONS(4642), + [anon_sym_init] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym_deinit] = ACTIONS(4642), + [anon_sym_subscript] = ACTIONS(4642), + [anon_sym_prefix] = ACTIONS(4642), + [anon_sym_infix] = ACTIONS(4642), + [anon_sym_postfix] = ACTIONS(4642), + [anon_sym_precedencegroup] = ACTIONS(4642), + [anon_sym_associatedtype] = ACTIONS(4642), + [anon_sym_AT] = ACTIONS(4644), + [sym_property_behavior_modifier] = ACTIONS(4642), + [anon_sym_override] = ACTIONS(4642), + [anon_sym_convenience] = ACTIONS(4642), + [anon_sym_required] = ACTIONS(4642), + [anon_sym_public] = ACTIONS(4642), + [anon_sym_private] = ACTIONS(4642), + [anon_sym_internal] = ACTIONS(4642), + [anon_sym_fileprivate] = ACTIONS(4642), + [anon_sym_open] = ACTIONS(4642), + [anon_sym_mutating] = ACTIONS(4642), + [anon_sym_nonmutating] = ACTIONS(4642), + [anon_sym_static] = ACTIONS(4642), + [anon_sym_dynamic] = ACTIONS(4642), + [anon_sym_optional] = ACTIONS(4642), + [anon_sym_final] = ACTIONS(4642), + [anon_sym_inout] = ACTIONS(4642), + [anon_sym_ATescaping] = ACTIONS(4642), + [anon_sym_ATautoclosure] = ACTIONS(4642), + [anon_sym_weak] = ACTIONS(4642), + [anon_sym_unowned] = ACTIONS(4644), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4642), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4642), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(4608), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4612), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1113] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_QMARK] = ACTIONS(4648), + [sym__immediate_quest] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4648), + [anon_sym_async] = ACTIONS(4646), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_case] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4648), + [anon_sym_is] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4648), + [anon_sym_LT_LT] = ACTIONS(4648), + [anon_sym_GT_GT] = ACTIONS(4648), + [anon_sym_import] = ACTIONS(4646), + [anon_sym_typealias] = ACTIONS(4646), + [anon_sym_struct] = ACTIONS(4646), + [anon_sym_class] = ACTIONS(4646), + [anon_sym_enum] = ACTIONS(4646), + [anon_sym_protocol] = ACTIONS(4646), + [anon_sym_let] = ACTIONS(4646), + [anon_sym_var] = ACTIONS(4646), + [anon_sym_func] = ACTIONS(4646), + [anon_sym_extension] = ACTIONS(4646), + [anon_sym_indirect] = ACTIONS(4646), + [anon_sym_init] = ACTIONS(4646), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym_deinit] = ACTIONS(4646), + [anon_sym_subscript] = ACTIONS(4646), + [anon_sym_prefix] = ACTIONS(4646), + [anon_sym_infix] = ACTIONS(4646), + [anon_sym_postfix] = ACTIONS(4646), + [anon_sym_precedencegroup] = ACTIONS(4646), + [anon_sym_associatedtype] = ACTIONS(4646), + [anon_sym_AT] = ACTIONS(4648), + [sym_property_behavior_modifier] = ACTIONS(4646), + [anon_sym_override] = ACTIONS(4646), + [anon_sym_convenience] = ACTIONS(4646), + [anon_sym_required] = ACTIONS(4646), + [anon_sym_public] = ACTIONS(4646), + [anon_sym_private] = ACTIONS(4646), + [anon_sym_internal] = ACTIONS(4646), + [anon_sym_fileprivate] = ACTIONS(4646), + [anon_sym_open] = ACTIONS(4646), + [anon_sym_mutating] = ACTIONS(4646), + [anon_sym_nonmutating] = ACTIONS(4646), + [anon_sym_static] = ACTIONS(4646), + [anon_sym_dynamic] = ACTIONS(4646), + [anon_sym_optional] = ACTIONS(4646), + [anon_sym_final] = ACTIONS(4646), + [anon_sym_inout] = ACTIONS(4646), + [anon_sym_ATescaping] = ACTIONS(4646), + [anon_sym_ATautoclosure] = ACTIONS(4646), + [anon_sym_weak] = ACTIONS(4646), + [anon_sym_unowned] = ACTIONS(4648), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4646), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4646), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4646), + [sym__three_dot_operator_custom] = ACTIONS(4646), + [sym__open_ended_range_operator_custom] = ACTIONS(4646), + [sym__conjunction_operator_custom] = ACTIONS(4646), + [sym__disjunction_operator_custom] = ACTIONS(4646), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4646), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4646), + [sym__as_custom] = ACTIONS(4646), + [sym__as_quest_custom] = ACTIONS(4646), + [sym__as_bang_custom] = ACTIONS(4646), + }, + [1114] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4650), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4634), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_async] = ACTIONS(4650), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4650), + [anon_sym_case] = ACTIONS(4650), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4594), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4650), + [anon_sym_typealias] = ACTIONS(4650), + [anon_sym_struct] = ACTIONS(4650), + [anon_sym_class] = ACTIONS(4650), + [anon_sym_enum] = ACTIONS(4650), + [anon_sym_protocol] = ACTIONS(4650), + [anon_sym_let] = ACTIONS(4650), + [anon_sym_var] = ACTIONS(4650), + [anon_sym_func] = ACTIONS(4650), + [anon_sym_extension] = ACTIONS(4650), + [anon_sym_indirect] = ACTIONS(4650), + [anon_sym_init] = ACTIONS(4650), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym_deinit] = ACTIONS(4650), + [anon_sym_subscript] = ACTIONS(4650), + [anon_sym_prefix] = ACTIONS(4650), + [anon_sym_infix] = ACTIONS(4650), + [anon_sym_postfix] = ACTIONS(4650), + [anon_sym_precedencegroup] = ACTIONS(4650), + [anon_sym_associatedtype] = ACTIONS(4650), + [anon_sym_AT] = ACTIONS(4652), + [sym_property_behavior_modifier] = ACTIONS(4650), + [anon_sym_override] = ACTIONS(4650), + [anon_sym_convenience] = ACTIONS(4650), + [anon_sym_required] = ACTIONS(4650), + [anon_sym_public] = ACTIONS(4650), + [anon_sym_private] = ACTIONS(4650), + [anon_sym_internal] = ACTIONS(4650), + [anon_sym_fileprivate] = ACTIONS(4650), + [anon_sym_open] = ACTIONS(4650), + [anon_sym_mutating] = ACTIONS(4650), + [anon_sym_nonmutating] = ACTIONS(4650), + [anon_sym_static] = ACTIONS(4650), + [anon_sym_dynamic] = ACTIONS(4650), + [anon_sym_optional] = ACTIONS(4650), + [anon_sym_final] = ACTIONS(4650), + [anon_sym_inout] = ACTIONS(4650), + [anon_sym_ATescaping] = ACTIONS(4650), + [anon_sym_ATautoclosure] = ACTIONS(4650), + [anon_sym_weak] = ACTIONS(4650), + [anon_sym_unowned] = ACTIONS(4652), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4650), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4650), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(4608), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4612), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1115] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_QMARK] = ACTIONS(4656), + [sym__immediate_quest] = ACTIONS(4656), + [anon_sym_AMP] = ACTIONS(4656), + [anon_sym_async] = ACTIONS(4654), + [aux_sym_custom_operator_token1] = ACTIONS(4656), + [anon_sym_LT] = ACTIONS(4656), + [anon_sym_GT] = ACTIONS(4656), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_case] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4656), + [anon_sym_GT_EQ] = ACTIONS(4656), + [anon_sym_is] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4656), + [anon_sym_DASH_DASH] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4656), + [anon_sym_CARET] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [anon_sym_import] = ACTIONS(4654), + [anon_sym_typealias] = ACTIONS(4654), + [anon_sym_struct] = ACTIONS(4654), + [anon_sym_class] = ACTIONS(4654), + [anon_sym_enum] = ACTIONS(4654), + [anon_sym_protocol] = ACTIONS(4654), + [anon_sym_let] = ACTIONS(4654), + [anon_sym_var] = ACTIONS(4654), + [anon_sym_func] = ACTIONS(4654), + [anon_sym_extension] = ACTIONS(4654), + [anon_sym_indirect] = ACTIONS(4654), + [anon_sym_init] = ACTIONS(4654), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_deinit] = ACTIONS(4654), + [anon_sym_subscript] = ACTIONS(4654), + [anon_sym_prefix] = ACTIONS(4654), + [anon_sym_infix] = ACTIONS(4654), + [anon_sym_postfix] = ACTIONS(4654), + [anon_sym_precedencegroup] = ACTIONS(4654), + [anon_sym_associatedtype] = ACTIONS(4654), + [anon_sym_AT] = ACTIONS(4656), + [sym_property_behavior_modifier] = ACTIONS(4654), + [anon_sym_override] = ACTIONS(4654), + [anon_sym_convenience] = ACTIONS(4654), + [anon_sym_required] = ACTIONS(4654), + [anon_sym_public] = ACTIONS(4654), + [anon_sym_private] = ACTIONS(4654), + [anon_sym_internal] = ACTIONS(4654), + [anon_sym_fileprivate] = ACTIONS(4654), + [anon_sym_open] = ACTIONS(4654), + [anon_sym_mutating] = ACTIONS(4654), + [anon_sym_nonmutating] = ACTIONS(4654), + [anon_sym_static] = ACTIONS(4654), + [anon_sym_dynamic] = ACTIONS(4654), + [anon_sym_optional] = ACTIONS(4654), + [anon_sym_final] = ACTIONS(4654), + [anon_sym_inout] = ACTIONS(4654), + [anon_sym_ATescaping] = ACTIONS(4654), + [anon_sym_ATautoclosure] = ACTIONS(4654), + [anon_sym_weak] = ACTIONS(4654), + [anon_sym_unowned] = ACTIONS(4656), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4654), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4654), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4654), + [sym__three_dot_operator_custom] = ACTIONS(4654), + [sym__open_ended_range_operator_custom] = ACTIONS(4654), + [sym__conjunction_operator_custom] = ACTIONS(4654), + [sym__disjunction_operator_custom] = ACTIONS(4654), + [sym__nil_coalescing_operator_custom] = ACTIONS(4654), + [sym__eq_eq_custom] = ACTIONS(4654), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4654), + [sym__as_custom] = ACTIONS(4654), + [sym__as_quest_custom] = ACTIONS(4654), + [sym__as_bang_custom] = ACTIONS(4654), + }, + [1116] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(2806), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4634), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_async] = ACTIONS(4658), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4658), + [anon_sym_case] = ACTIONS(4658), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4594), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4658), + [anon_sym_typealias] = ACTIONS(4658), + [anon_sym_struct] = ACTIONS(4658), + [anon_sym_class] = ACTIONS(4658), + [anon_sym_enum] = ACTIONS(4658), + [anon_sym_protocol] = ACTIONS(4658), + [anon_sym_let] = ACTIONS(4658), + [anon_sym_var] = ACTIONS(4658), + [anon_sym_func] = ACTIONS(4658), + [anon_sym_extension] = ACTIONS(4658), + [anon_sym_indirect] = ACTIONS(4658), + [anon_sym_init] = ACTIONS(4658), + [anon_sym_deinit] = ACTIONS(4658), + [anon_sym_subscript] = ACTIONS(4658), + [anon_sym_prefix] = ACTIONS(4658), + [anon_sym_infix] = ACTIONS(4658), + [anon_sym_postfix] = ACTIONS(4658), + [anon_sym_precedencegroup] = ACTIONS(4658), + [anon_sym_associatedtype] = ACTIONS(4658), + [anon_sym_AT] = ACTIONS(4660), + [sym_property_behavior_modifier] = ACTIONS(4658), + [anon_sym_override] = ACTIONS(4658), + [anon_sym_convenience] = ACTIONS(4658), + [anon_sym_required] = ACTIONS(4658), + [anon_sym_public] = ACTIONS(4658), + [anon_sym_private] = ACTIONS(4658), + [anon_sym_internal] = ACTIONS(4658), + [anon_sym_fileprivate] = ACTIONS(4658), + [anon_sym_open] = ACTIONS(4658), + [anon_sym_mutating] = ACTIONS(4658), + [anon_sym_nonmutating] = ACTIONS(4658), + [anon_sym_static] = ACTIONS(4658), + [anon_sym_dynamic] = ACTIONS(4658), + [anon_sym_optional] = ACTIONS(4658), + [anon_sym_final] = ACTIONS(4658), + [anon_sym_inout] = ACTIONS(4658), + [anon_sym_ATescaping] = ACTIONS(4658), + [anon_sym_ATautoclosure] = ACTIONS(4658), + [anon_sym_weak] = ACTIONS(4658), + [anon_sym_unowned] = ACTIONS(4660), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4658), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4658), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(4608), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4612), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1117] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_QMARK] = ACTIONS(4664), + [sym__immediate_quest] = ACTIONS(4664), + [anon_sym_AMP] = ACTIONS(4664), + [anon_sym_async] = ACTIONS(4662), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4664), + [anon_sym_GT] = ACTIONS(4664), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_case] = ACTIONS(4662), + [anon_sym_BANG_EQ] = ACTIONS(4664), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), + [anon_sym_LT_EQ] = ACTIONS(4664), + [anon_sym_GT_EQ] = ACTIONS(4664), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4664), + [anon_sym_CARET] = ACTIONS(4664), + [anon_sym_LT_LT] = ACTIONS(4664), + [anon_sym_GT_GT] = ACTIONS(4664), + [anon_sym_import] = ACTIONS(4662), + [anon_sym_typealias] = ACTIONS(4662), + [anon_sym_struct] = ACTIONS(4662), + [anon_sym_class] = ACTIONS(4662), + [anon_sym_enum] = ACTIONS(4662), + [anon_sym_protocol] = ACTIONS(4662), + [anon_sym_let] = ACTIONS(4662), + [anon_sym_var] = ACTIONS(4662), + [anon_sym_func] = ACTIONS(4662), + [anon_sym_extension] = ACTIONS(4662), + [anon_sym_indirect] = ACTIONS(4662), + [anon_sym_init] = ACTIONS(4662), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym_deinit] = ACTIONS(4662), + [anon_sym_subscript] = ACTIONS(4662), + [anon_sym_prefix] = ACTIONS(4662), + [anon_sym_infix] = ACTIONS(4662), + [anon_sym_postfix] = ACTIONS(4662), + [anon_sym_precedencegroup] = ACTIONS(4662), + [anon_sym_associatedtype] = ACTIONS(4662), + [anon_sym_AT] = ACTIONS(4664), + [sym_property_behavior_modifier] = ACTIONS(4662), + [anon_sym_override] = ACTIONS(4662), + [anon_sym_convenience] = ACTIONS(4662), + [anon_sym_required] = ACTIONS(4662), + [anon_sym_public] = ACTIONS(4662), + [anon_sym_private] = ACTIONS(4662), + [anon_sym_internal] = ACTIONS(4662), + [anon_sym_fileprivate] = ACTIONS(4662), + [anon_sym_open] = ACTIONS(4662), + [anon_sym_mutating] = ACTIONS(4662), + [anon_sym_nonmutating] = ACTIONS(4662), + [anon_sym_static] = ACTIONS(4662), + [anon_sym_dynamic] = ACTIONS(4662), + [anon_sym_optional] = ACTIONS(4662), + [anon_sym_final] = ACTIONS(4662), + [anon_sym_inout] = ACTIONS(4662), + [anon_sym_ATescaping] = ACTIONS(4662), + [anon_sym_ATautoclosure] = ACTIONS(4662), + [anon_sym_weak] = ACTIONS(4662), + [anon_sym_unowned] = ACTIONS(4664), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4662), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4662), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4662), + [sym__three_dot_operator_custom] = ACTIONS(4662), + [sym__open_ended_range_operator_custom] = ACTIONS(4662), + [sym__conjunction_operator_custom] = ACTIONS(4662), + [sym__disjunction_operator_custom] = ACTIONS(4662), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4662), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4662), + [sym__as_quest_custom] = ACTIONS(4662), + [sym__as_bang_custom] = ACTIONS(4662), + }, + [1118] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(2772), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4634), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_async] = ACTIONS(4666), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4666), + [anon_sym_case] = ACTIONS(4666), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4594), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4666), + [anon_sym_typealias] = ACTIONS(4666), + [anon_sym_struct] = ACTIONS(4666), + [anon_sym_class] = ACTIONS(4666), + [anon_sym_enum] = ACTIONS(4666), + [anon_sym_protocol] = ACTIONS(4666), + [anon_sym_let] = ACTIONS(4666), + [anon_sym_var] = ACTIONS(4666), + [anon_sym_func] = ACTIONS(4666), + [anon_sym_extension] = ACTIONS(4666), + [anon_sym_indirect] = ACTIONS(4666), + [anon_sym_init] = ACTIONS(4666), + [anon_sym_deinit] = ACTIONS(4666), + [anon_sym_subscript] = ACTIONS(4666), + [anon_sym_prefix] = ACTIONS(4666), + [anon_sym_infix] = ACTIONS(4666), + [anon_sym_postfix] = ACTIONS(4666), + [anon_sym_precedencegroup] = ACTIONS(4666), + [anon_sym_associatedtype] = ACTIONS(4666), + [anon_sym_AT] = ACTIONS(4668), + [sym_property_behavior_modifier] = ACTIONS(4666), + [anon_sym_override] = ACTIONS(4666), + [anon_sym_convenience] = ACTIONS(4666), + [anon_sym_required] = ACTIONS(4666), + [anon_sym_public] = ACTIONS(4666), + [anon_sym_private] = ACTIONS(4666), + [anon_sym_internal] = ACTIONS(4666), + [anon_sym_fileprivate] = ACTIONS(4666), + [anon_sym_open] = ACTIONS(4666), + [anon_sym_mutating] = ACTIONS(4666), + [anon_sym_nonmutating] = ACTIONS(4666), + [anon_sym_static] = ACTIONS(4666), + [anon_sym_dynamic] = ACTIONS(4666), + [anon_sym_optional] = ACTIONS(4666), + [anon_sym_final] = ACTIONS(4666), + [anon_sym_inout] = ACTIONS(4666), + [anon_sym_ATescaping] = ACTIONS(4666), + [anon_sym_ATautoclosure] = ACTIONS(4666), + [anon_sym_weak] = ACTIONS(4666), + [anon_sym_unowned] = ACTIONS(4668), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4666), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4666), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(4608), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4612), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1119] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4670), + [anon_sym_LPAREN] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_QMARK] = ACTIONS(4672), + [sym__immediate_quest] = ACTIONS(4672), + [anon_sym_AMP] = ACTIONS(4672), + [anon_sym_async] = ACTIONS(4670), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4670), + [anon_sym_RBRACE] = ACTIONS(4670), + [anon_sym_case] = ACTIONS(4670), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4672), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4672), + [anon_sym_CARET] = ACTIONS(4672), + [anon_sym_LT_LT] = ACTIONS(4672), + [anon_sym_GT_GT] = ACTIONS(4672), + [anon_sym_import] = ACTIONS(4670), + [anon_sym_typealias] = ACTIONS(4670), + [anon_sym_struct] = ACTIONS(4670), + [anon_sym_class] = ACTIONS(4670), + [anon_sym_enum] = ACTIONS(4670), + [anon_sym_protocol] = ACTIONS(4670), + [anon_sym_let] = ACTIONS(4670), + [anon_sym_var] = ACTIONS(4670), + [anon_sym_func] = ACTIONS(4670), + [anon_sym_extension] = ACTIONS(4670), + [anon_sym_indirect] = ACTIONS(4670), + [anon_sym_init] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4670), + [anon_sym_deinit] = ACTIONS(4670), + [anon_sym_subscript] = ACTIONS(4670), + [anon_sym_prefix] = ACTIONS(4670), + [anon_sym_infix] = ACTIONS(4670), + [anon_sym_postfix] = ACTIONS(4670), + [anon_sym_precedencegroup] = ACTIONS(4670), + [anon_sym_associatedtype] = ACTIONS(4670), + [anon_sym_AT] = ACTIONS(4672), + [sym_property_behavior_modifier] = ACTIONS(4670), + [anon_sym_override] = ACTIONS(4670), + [anon_sym_convenience] = ACTIONS(4670), + [anon_sym_required] = ACTIONS(4670), + [anon_sym_public] = ACTIONS(4670), + [anon_sym_private] = ACTIONS(4670), + [anon_sym_internal] = ACTIONS(4670), + [anon_sym_fileprivate] = ACTIONS(4670), + [anon_sym_open] = ACTIONS(4670), + [anon_sym_mutating] = ACTIONS(4670), + [anon_sym_nonmutating] = ACTIONS(4670), + [anon_sym_static] = ACTIONS(4670), + [anon_sym_dynamic] = ACTIONS(4670), + [anon_sym_optional] = ACTIONS(4670), + [anon_sym_final] = ACTIONS(4670), + [anon_sym_inout] = ACTIONS(4670), + [anon_sym_ATescaping] = ACTIONS(4670), + [anon_sym_ATautoclosure] = ACTIONS(4670), + [anon_sym_weak] = ACTIONS(4670), + [anon_sym_unowned] = ACTIONS(4672), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4670), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4670), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4670), + [sym__three_dot_operator_custom] = ACTIONS(4670), + [sym__open_ended_range_operator_custom] = ACTIONS(4670), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4670), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4670), + [sym__as_quest_custom] = ACTIONS(4670), + [sym__as_bang_custom] = ACTIONS(4670), + }, + [1120] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_QMARK] = ACTIONS(4676), + [sym__immediate_quest] = ACTIONS(4676), + [anon_sym_AMP] = ACTIONS(4676), + [anon_sym_async] = ACTIONS(4674), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(4674), + [anon_sym_case] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4676), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_is] = ACTIONS(4674), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4676), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4676), + [anon_sym_LT_LT] = ACTIONS(4676), + [anon_sym_GT_GT] = ACTIONS(4676), + [anon_sym_import] = ACTIONS(4674), + [anon_sym_typealias] = ACTIONS(4674), + [anon_sym_struct] = ACTIONS(4674), + [anon_sym_class] = ACTIONS(4674), + [anon_sym_enum] = ACTIONS(4674), + [anon_sym_protocol] = ACTIONS(4674), + [anon_sym_let] = ACTIONS(4674), + [anon_sym_var] = ACTIONS(4674), + [anon_sym_func] = ACTIONS(4674), + [anon_sym_extension] = ACTIONS(4674), + [anon_sym_indirect] = ACTIONS(4674), + [anon_sym_init] = ACTIONS(4674), + [anon_sym_SEMI] = ACTIONS(4674), + [anon_sym_deinit] = ACTIONS(4674), + [anon_sym_subscript] = ACTIONS(4674), + [anon_sym_prefix] = ACTIONS(4674), + [anon_sym_infix] = ACTIONS(4674), + [anon_sym_postfix] = ACTIONS(4674), + [anon_sym_precedencegroup] = ACTIONS(4674), + [anon_sym_associatedtype] = ACTIONS(4674), + [anon_sym_AT] = ACTIONS(4676), + [sym_property_behavior_modifier] = ACTIONS(4674), + [anon_sym_override] = ACTIONS(4674), + [anon_sym_convenience] = ACTIONS(4674), + [anon_sym_required] = ACTIONS(4674), + [anon_sym_public] = ACTIONS(4674), + [anon_sym_private] = ACTIONS(4674), + [anon_sym_internal] = ACTIONS(4674), + [anon_sym_fileprivate] = ACTIONS(4674), + [anon_sym_open] = ACTIONS(4674), + [anon_sym_mutating] = ACTIONS(4674), + [anon_sym_nonmutating] = ACTIONS(4674), + [anon_sym_static] = ACTIONS(4674), + [anon_sym_dynamic] = ACTIONS(4674), + [anon_sym_optional] = ACTIONS(4674), + [anon_sym_final] = ACTIONS(4674), + [anon_sym_inout] = ACTIONS(4674), + [anon_sym_ATescaping] = ACTIONS(4674), + [anon_sym_ATautoclosure] = ACTIONS(4674), + [anon_sym_weak] = ACTIONS(4674), + [anon_sym_unowned] = ACTIONS(4676), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4674), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4674), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4674), + [sym__three_dot_operator_custom] = ACTIONS(4674), + [sym__open_ended_range_operator_custom] = ACTIONS(4674), + [sym__conjunction_operator_custom] = ACTIONS(4674), + [sym__disjunction_operator_custom] = ACTIONS(4674), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4674), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4674), + [sym__as_custom] = ACTIONS(4674), + [sym__as_quest_custom] = ACTIONS(4674), + [sym__as_bang_custom] = ACTIONS(4674), + }, + [1121] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4634), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_async] = ACTIONS(4678), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4678), + [anon_sym_case] = ACTIONS(4678), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4594), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4678), + [anon_sym_typealias] = ACTIONS(4678), + [anon_sym_struct] = ACTIONS(4678), + [anon_sym_class] = ACTIONS(4678), + [anon_sym_enum] = ACTIONS(4678), + [anon_sym_protocol] = ACTIONS(4678), + [anon_sym_let] = ACTIONS(4678), + [anon_sym_var] = ACTIONS(4678), + [anon_sym_func] = ACTIONS(4678), + [anon_sym_extension] = ACTIONS(4678), + [anon_sym_indirect] = ACTIONS(4678), + [anon_sym_init] = ACTIONS(4678), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_deinit] = ACTIONS(4678), + [anon_sym_subscript] = ACTIONS(4678), + [anon_sym_prefix] = ACTIONS(4678), + [anon_sym_infix] = ACTIONS(4678), + [anon_sym_postfix] = ACTIONS(4678), + [anon_sym_precedencegroup] = ACTIONS(4678), + [anon_sym_associatedtype] = ACTIONS(4678), + [anon_sym_AT] = ACTIONS(4680), + [sym_property_behavior_modifier] = ACTIONS(4678), + [anon_sym_override] = ACTIONS(4678), + [anon_sym_convenience] = ACTIONS(4678), + [anon_sym_required] = ACTIONS(4678), + [anon_sym_public] = ACTIONS(4678), + [anon_sym_private] = ACTIONS(4678), + [anon_sym_internal] = ACTIONS(4678), + [anon_sym_fileprivate] = ACTIONS(4678), + [anon_sym_open] = ACTIONS(4678), + [anon_sym_mutating] = ACTIONS(4678), + [anon_sym_nonmutating] = ACTIONS(4678), + [anon_sym_static] = ACTIONS(4678), + [anon_sym_dynamic] = ACTIONS(4678), + [anon_sym_optional] = ACTIONS(4678), + [anon_sym_final] = ACTIONS(4678), + [anon_sym_inout] = ACTIONS(4678), + [anon_sym_ATescaping] = ACTIONS(4678), + [anon_sym_ATautoclosure] = ACTIONS(4678), + [anon_sym_weak] = ACTIONS(4678), + [anon_sym_unowned] = ACTIONS(4680), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4678), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4678), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(4608), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4612), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1122] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4682), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4634), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_async] = ACTIONS(4682), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4682), + [anon_sym_case] = ACTIONS(4682), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4594), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4682), + [anon_sym_typealias] = ACTIONS(4682), + [anon_sym_struct] = ACTIONS(4682), + [anon_sym_class] = ACTIONS(4682), + [anon_sym_enum] = ACTIONS(4682), + [anon_sym_protocol] = ACTIONS(4682), + [anon_sym_let] = ACTIONS(4682), + [anon_sym_var] = ACTIONS(4682), + [anon_sym_func] = ACTIONS(4682), + [anon_sym_extension] = ACTIONS(4682), + [anon_sym_indirect] = ACTIONS(4682), + [anon_sym_init] = ACTIONS(4682), + [anon_sym_SEMI] = ACTIONS(4682), + [anon_sym_deinit] = ACTIONS(4682), + [anon_sym_subscript] = ACTIONS(4682), + [anon_sym_prefix] = ACTIONS(4682), + [anon_sym_infix] = ACTIONS(4682), + [anon_sym_postfix] = ACTIONS(4682), + [anon_sym_precedencegroup] = ACTIONS(4682), + [anon_sym_associatedtype] = ACTIONS(4682), + [anon_sym_AT] = ACTIONS(4684), + [sym_property_behavior_modifier] = ACTIONS(4682), + [anon_sym_override] = ACTIONS(4682), + [anon_sym_convenience] = ACTIONS(4682), + [anon_sym_required] = ACTIONS(4682), + [anon_sym_public] = ACTIONS(4682), + [anon_sym_private] = ACTIONS(4682), + [anon_sym_internal] = ACTIONS(4682), + [anon_sym_fileprivate] = ACTIONS(4682), + [anon_sym_open] = ACTIONS(4682), + [anon_sym_mutating] = ACTIONS(4682), + [anon_sym_nonmutating] = ACTIONS(4682), + [anon_sym_static] = ACTIONS(4682), + [anon_sym_dynamic] = ACTIONS(4682), + [anon_sym_optional] = ACTIONS(4682), + [anon_sym_final] = ACTIONS(4682), + [anon_sym_inout] = ACTIONS(4682), + [anon_sym_ATescaping] = ACTIONS(4682), + [anon_sym_ATautoclosure] = ACTIONS(4682), + [anon_sym_weak] = ACTIONS(4682), + [anon_sym_unowned] = ACTIONS(4684), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4682), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4682), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(4608), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4612), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1123] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_QMARK] = ACTIONS(4688), + [sym__immediate_quest] = ACTIONS(4688), + [anon_sym_AMP] = ACTIONS(4688), + [anon_sym_async] = ACTIONS(4686), + [aux_sym_custom_operator_token1] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4688), + [anon_sym_GT] = ACTIONS(4688), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_case] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4688), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_GT_EQ] = ACTIONS(4688), + [anon_sym_is] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4688), + [anon_sym_DASH] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4688), + [anon_sym_DASH_DASH] = ACTIONS(4688), + [anon_sym_PIPE] = ACTIONS(4688), + [anon_sym_CARET] = ACTIONS(4688), + [anon_sym_LT_LT] = ACTIONS(4688), + [anon_sym_GT_GT] = ACTIONS(4688), + [anon_sym_import] = ACTIONS(4686), + [anon_sym_typealias] = ACTIONS(4686), + [anon_sym_struct] = ACTIONS(4686), + [anon_sym_class] = ACTIONS(4686), + [anon_sym_enum] = ACTIONS(4686), + [anon_sym_protocol] = ACTIONS(4686), + [anon_sym_let] = ACTIONS(4686), + [anon_sym_var] = ACTIONS(4686), + [anon_sym_func] = ACTIONS(4686), + [anon_sym_extension] = ACTIONS(4686), + [anon_sym_indirect] = ACTIONS(4686), + [anon_sym_init] = ACTIONS(4686), + [anon_sym_SEMI] = ACTIONS(4686), + [anon_sym_deinit] = ACTIONS(4686), + [anon_sym_subscript] = ACTIONS(4686), + [anon_sym_prefix] = ACTIONS(4686), + [anon_sym_infix] = ACTIONS(4686), + [anon_sym_postfix] = ACTIONS(4686), + [anon_sym_precedencegroup] = ACTIONS(4686), + [anon_sym_associatedtype] = ACTIONS(4686), + [anon_sym_AT] = ACTIONS(4688), + [sym_property_behavior_modifier] = ACTIONS(4686), + [anon_sym_override] = ACTIONS(4686), + [anon_sym_convenience] = ACTIONS(4686), + [anon_sym_required] = ACTIONS(4686), + [anon_sym_public] = ACTIONS(4686), + [anon_sym_private] = ACTIONS(4686), + [anon_sym_internal] = ACTIONS(4686), + [anon_sym_fileprivate] = ACTIONS(4686), + [anon_sym_open] = ACTIONS(4686), + [anon_sym_mutating] = ACTIONS(4686), + [anon_sym_nonmutating] = ACTIONS(4686), + [anon_sym_static] = ACTIONS(4686), + [anon_sym_dynamic] = ACTIONS(4686), + [anon_sym_optional] = ACTIONS(4686), + [anon_sym_final] = ACTIONS(4686), + [anon_sym_inout] = ACTIONS(4686), + [anon_sym_ATescaping] = ACTIONS(4686), + [anon_sym_ATautoclosure] = ACTIONS(4686), + [anon_sym_weak] = ACTIONS(4686), + [anon_sym_unowned] = ACTIONS(4688), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4686), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4686), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4686), + [sym__three_dot_operator_custom] = ACTIONS(4686), + [sym__open_ended_range_operator_custom] = ACTIONS(4686), + [sym__conjunction_operator_custom] = ACTIONS(4686), + [sym__disjunction_operator_custom] = ACTIONS(4686), + [sym__nil_coalescing_operator_custom] = ACTIONS(4686), + [sym__eq_eq_custom] = ACTIONS(4686), + [sym__plus_then_ws] = ACTIONS(4686), + [sym__minus_then_ws] = ACTIONS(4686), + [sym_bang] = ACTIONS(4686), + [sym__as_custom] = ACTIONS(4686), + [sym__as_quest_custom] = ACTIONS(4686), + [sym__as_bang_custom] = ACTIONS(4686), + }, + [1124] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4692), + [sym__immediate_quest] = ACTIONS(4692), + [anon_sym_AMP] = ACTIONS(4692), + [anon_sym_async] = ACTIONS(4690), + [aux_sym_custom_operator_token1] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4692), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_RBRACE] = ACTIONS(4690), + [anon_sym_case] = ACTIONS(4690), + [anon_sym_BANG_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4692), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_STAR] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4692), + [anon_sym_PERCENT] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_PIPE] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym_LT_LT] = ACTIONS(4692), + [anon_sym_GT_GT] = ACTIONS(4692), + [anon_sym_import] = ACTIONS(4690), + [anon_sym_typealias] = ACTIONS(4690), + [anon_sym_struct] = ACTIONS(4690), + [anon_sym_class] = ACTIONS(4690), + [anon_sym_enum] = ACTIONS(4690), + [anon_sym_protocol] = ACTIONS(4690), + [anon_sym_let] = ACTIONS(4690), + [anon_sym_var] = ACTIONS(4690), + [anon_sym_func] = ACTIONS(4690), + [anon_sym_extension] = ACTIONS(4690), + [anon_sym_indirect] = ACTIONS(4690), + [anon_sym_init] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_deinit] = ACTIONS(4690), + [anon_sym_subscript] = ACTIONS(4690), + [anon_sym_prefix] = ACTIONS(4690), + [anon_sym_infix] = ACTIONS(4690), + [anon_sym_postfix] = ACTIONS(4690), + [anon_sym_precedencegroup] = ACTIONS(4690), + [anon_sym_associatedtype] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [sym_property_behavior_modifier] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_convenience] = ACTIONS(4690), + [anon_sym_required] = ACTIONS(4690), + [anon_sym_public] = ACTIONS(4690), + [anon_sym_private] = ACTIONS(4690), + [anon_sym_internal] = ACTIONS(4690), + [anon_sym_fileprivate] = ACTIONS(4690), + [anon_sym_open] = ACTIONS(4690), + [anon_sym_mutating] = ACTIONS(4690), + [anon_sym_nonmutating] = ACTIONS(4690), + [anon_sym_static] = ACTIONS(4690), + [anon_sym_dynamic] = ACTIONS(4690), + [anon_sym_optional] = ACTIONS(4690), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_inout] = ACTIONS(4690), + [anon_sym_ATescaping] = ACTIONS(4690), + [anon_sym_ATautoclosure] = ACTIONS(4690), + [anon_sym_weak] = ACTIONS(4690), + [anon_sym_unowned] = ACTIONS(4692), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4690), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4690), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4690), + [sym__three_dot_operator_custom] = ACTIONS(4690), + [sym__open_ended_range_operator_custom] = ACTIONS(4690), + [sym__conjunction_operator_custom] = ACTIONS(4690), + [sym__disjunction_operator_custom] = ACTIONS(4690), + [sym__nil_coalescing_operator_custom] = ACTIONS(4690), + [sym__eq_eq_custom] = ACTIONS(4690), + [sym__plus_then_ws] = ACTIONS(4690), + [sym__minus_then_ws] = ACTIONS(4690), + [sym_bang] = ACTIONS(4690), + [sym__as_custom] = ACTIONS(4690), + [sym__as_quest_custom] = ACTIONS(4690), + [sym__as_bang_custom] = ACTIONS(4690), + }, + [1125] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4694), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4634), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_async] = ACTIONS(4694), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4694), + [anon_sym_case] = ACTIONS(4694), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4594), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4694), + [anon_sym_typealias] = ACTIONS(4694), + [anon_sym_struct] = ACTIONS(4694), + [anon_sym_class] = ACTIONS(4694), + [anon_sym_enum] = ACTIONS(4694), + [anon_sym_protocol] = ACTIONS(4694), + [anon_sym_let] = ACTIONS(4694), + [anon_sym_var] = ACTIONS(4694), + [anon_sym_func] = ACTIONS(4694), + [anon_sym_extension] = ACTIONS(4694), + [anon_sym_indirect] = ACTIONS(4694), + [anon_sym_init] = ACTIONS(4694), + [anon_sym_SEMI] = ACTIONS(4694), + [anon_sym_deinit] = ACTIONS(4694), + [anon_sym_subscript] = ACTIONS(4694), + [anon_sym_prefix] = ACTIONS(4694), + [anon_sym_infix] = ACTIONS(4694), + [anon_sym_postfix] = ACTIONS(4694), + [anon_sym_precedencegroup] = ACTIONS(4694), + [anon_sym_associatedtype] = ACTIONS(4694), + [anon_sym_AT] = ACTIONS(4696), + [sym_property_behavior_modifier] = ACTIONS(4694), + [anon_sym_override] = ACTIONS(4694), + [anon_sym_convenience] = ACTIONS(4694), + [anon_sym_required] = ACTIONS(4694), + [anon_sym_public] = ACTIONS(4694), + [anon_sym_private] = ACTIONS(4694), + [anon_sym_internal] = ACTIONS(4694), + [anon_sym_fileprivate] = ACTIONS(4694), + [anon_sym_open] = ACTIONS(4694), + [anon_sym_mutating] = ACTIONS(4694), + [anon_sym_nonmutating] = ACTIONS(4694), + [anon_sym_static] = ACTIONS(4694), + [anon_sym_dynamic] = ACTIONS(4694), + [anon_sym_optional] = ACTIONS(4694), + [anon_sym_final] = ACTIONS(4694), + [anon_sym_inout] = ACTIONS(4694), + [anon_sym_ATescaping] = ACTIONS(4694), + [anon_sym_ATautoclosure] = ACTIONS(4694), + [anon_sym_weak] = ACTIONS(4694), + [anon_sym_unowned] = ACTIONS(4696), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4694), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4694), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(4608), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4612), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1126] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4634), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_async] = ACTIONS(4698), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4698), + [anon_sym_case] = ACTIONS(4698), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4594), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4698), + [anon_sym_typealias] = ACTIONS(4698), + [anon_sym_struct] = ACTIONS(4698), + [anon_sym_class] = ACTIONS(4698), + [anon_sym_enum] = ACTIONS(4698), + [anon_sym_protocol] = ACTIONS(4698), + [anon_sym_let] = ACTIONS(4698), + [anon_sym_var] = ACTIONS(4698), + [anon_sym_func] = ACTIONS(4698), + [anon_sym_extension] = ACTIONS(4698), + [anon_sym_indirect] = ACTIONS(4698), + [anon_sym_init] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_deinit] = ACTIONS(4698), + [anon_sym_subscript] = ACTIONS(4698), + [anon_sym_prefix] = ACTIONS(4698), + [anon_sym_infix] = ACTIONS(4698), + [anon_sym_postfix] = ACTIONS(4698), + [anon_sym_precedencegroup] = ACTIONS(4698), + [anon_sym_associatedtype] = ACTIONS(4698), + [anon_sym_AT] = ACTIONS(4700), + [sym_property_behavior_modifier] = ACTIONS(4698), + [anon_sym_override] = ACTIONS(4698), + [anon_sym_convenience] = ACTIONS(4698), + [anon_sym_required] = ACTIONS(4698), + [anon_sym_public] = ACTIONS(4698), + [anon_sym_private] = ACTIONS(4698), + [anon_sym_internal] = ACTIONS(4698), + [anon_sym_fileprivate] = ACTIONS(4698), + [anon_sym_open] = ACTIONS(4698), + [anon_sym_mutating] = ACTIONS(4698), + [anon_sym_nonmutating] = ACTIONS(4698), + [anon_sym_static] = ACTIONS(4698), + [anon_sym_dynamic] = ACTIONS(4698), + [anon_sym_optional] = ACTIONS(4698), + [anon_sym_final] = ACTIONS(4698), + [anon_sym_inout] = ACTIONS(4698), + [anon_sym_ATescaping] = ACTIONS(4698), + [anon_sym_ATautoclosure] = ACTIONS(4698), + [anon_sym_weak] = ACTIONS(4698), + [anon_sym_unowned] = ACTIONS(4700), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4698), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4698), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(4608), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4612), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1127] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(2756), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4634), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_async] = ACTIONS(4702), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4702), + [anon_sym_case] = ACTIONS(4702), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4594), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4702), + [anon_sym_typealias] = ACTIONS(4702), + [anon_sym_struct] = ACTIONS(4702), + [anon_sym_class] = ACTIONS(4702), + [anon_sym_enum] = ACTIONS(4702), + [anon_sym_protocol] = ACTIONS(4702), + [anon_sym_let] = ACTIONS(4702), + [anon_sym_var] = ACTIONS(4702), + [anon_sym_func] = ACTIONS(4702), + [anon_sym_extension] = ACTIONS(4702), + [anon_sym_indirect] = ACTIONS(4702), + [anon_sym_init] = ACTIONS(4702), + [anon_sym_deinit] = ACTIONS(4702), + [anon_sym_subscript] = ACTIONS(4702), + [anon_sym_prefix] = ACTIONS(4702), + [anon_sym_infix] = ACTIONS(4702), + [anon_sym_postfix] = ACTIONS(4702), + [anon_sym_precedencegroup] = ACTIONS(4702), + [anon_sym_associatedtype] = ACTIONS(4702), + [anon_sym_AT] = ACTIONS(4704), + [sym_property_behavior_modifier] = ACTIONS(4702), + [anon_sym_override] = ACTIONS(4702), + [anon_sym_convenience] = ACTIONS(4702), + [anon_sym_required] = ACTIONS(4702), + [anon_sym_public] = ACTIONS(4702), + [anon_sym_private] = ACTIONS(4702), + [anon_sym_internal] = ACTIONS(4702), + [anon_sym_fileprivate] = ACTIONS(4702), + [anon_sym_open] = ACTIONS(4702), + [anon_sym_mutating] = ACTIONS(4702), + [anon_sym_nonmutating] = ACTIONS(4702), + [anon_sym_static] = ACTIONS(4702), + [anon_sym_dynamic] = ACTIONS(4702), + [anon_sym_optional] = ACTIONS(4702), + [anon_sym_final] = ACTIONS(4702), + [anon_sym_inout] = ACTIONS(4702), + [anon_sym_ATescaping] = ACTIONS(4702), + [anon_sym_ATautoclosure] = ACTIONS(4702), + [anon_sym_weak] = ACTIONS(4702), + [anon_sym_unowned] = ACTIONS(4704), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4702), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4702), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(4608), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4612), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1128] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4706), + [anon_sym_LPAREN] = ACTIONS(4706), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_QMARK] = ACTIONS(4708), + [sym__immediate_quest] = ACTIONS(4708), + [anon_sym_AMP] = ACTIONS(4708), + [anon_sym_async] = ACTIONS(4706), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4708), + [anon_sym_GT] = ACTIONS(4708), + [anon_sym_LBRACE] = ACTIONS(4706), + [anon_sym_RBRACE] = ACTIONS(4706), + [anon_sym_case] = ACTIONS(4706), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4708), + [anon_sym_CARET] = ACTIONS(4708), + [anon_sym_LT_LT] = ACTIONS(4708), + [anon_sym_GT_GT] = ACTIONS(4708), + [anon_sym_import] = ACTIONS(4706), + [anon_sym_typealias] = ACTIONS(4706), + [anon_sym_struct] = ACTIONS(4706), + [anon_sym_class] = ACTIONS(4706), + [anon_sym_enum] = ACTIONS(4706), + [anon_sym_protocol] = ACTIONS(4706), + [anon_sym_let] = ACTIONS(4706), + [anon_sym_var] = ACTIONS(4706), + [anon_sym_func] = ACTIONS(4706), + [anon_sym_extension] = ACTIONS(4706), + [anon_sym_indirect] = ACTIONS(4706), + [anon_sym_init] = ACTIONS(4706), + [anon_sym_SEMI] = ACTIONS(4706), + [anon_sym_deinit] = ACTIONS(4706), + [anon_sym_subscript] = ACTIONS(4706), + [anon_sym_prefix] = ACTIONS(4706), + [anon_sym_infix] = ACTIONS(4706), + [anon_sym_postfix] = ACTIONS(4706), + [anon_sym_precedencegroup] = ACTIONS(4706), + [anon_sym_associatedtype] = ACTIONS(4706), + [anon_sym_AT] = ACTIONS(4708), + [sym_property_behavior_modifier] = ACTIONS(4706), + [anon_sym_override] = ACTIONS(4706), + [anon_sym_convenience] = ACTIONS(4706), + [anon_sym_required] = ACTIONS(4706), + [anon_sym_public] = ACTIONS(4706), + [anon_sym_private] = ACTIONS(4706), + [anon_sym_internal] = ACTIONS(4706), + [anon_sym_fileprivate] = ACTIONS(4706), + [anon_sym_open] = ACTIONS(4706), + [anon_sym_mutating] = ACTIONS(4706), + [anon_sym_nonmutating] = ACTIONS(4706), + [anon_sym_static] = ACTIONS(4706), + [anon_sym_dynamic] = ACTIONS(4706), + [anon_sym_optional] = ACTIONS(4706), + [anon_sym_final] = ACTIONS(4706), + [anon_sym_inout] = ACTIONS(4706), + [anon_sym_ATescaping] = ACTIONS(4706), + [anon_sym_ATautoclosure] = ACTIONS(4706), + [anon_sym_weak] = ACTIONS(4706), + [anon_sym_unowned] = ACTIONS(4708), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4706), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4706), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4706), + [sym__three_dot_operator_custom] = ACTIONS(4706), + [sym__open_ended_range_operator_custom] = ACTIONS(4706), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4612), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4706), + [sym__as_quest_custom] = ACTIONS(4706), + [sym__as_bang_custom] = ACTIONS(4706), + }, + [1129] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(2757), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4634), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_async] = ACTIONS(4710), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4710), + [anon_sym_case] = ACTIONS(4710), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4594), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4710), + [anon_sym_typealias] = ACTIONS(4710), + [anon_sym_struct] = ACTIONS(4710), + [anon_sym_class] = ACTIONS(4710), + [anon_sym_enum] = ACTIONS(4710), + [anon_sym_protocol] = ACTIONS(4710), + [anon_sym_let] = ACTIONS(4710), + [anon_sym_var] = ACTIONS(4710), + [anon_sym_func] = ACTIONS(4710), + [anon_sym_extension] = ACTIONS(4710), + [anon_sym_indirect] = ACTIONS(4710), + [anon_sym_init] = ACTIONS(4710), + [anon_sym_deinit] = ACTIONS(4710), + [anon_sym_subscript] = ACTIONS(4710), + [anon_sym_prefix] = ACTIONS(4710), + [anon_sym_infix] = ACTIONS(4710), + [anon_sym_postfix] = ACTIONS(4710), + [anon_sym_precedencegroup] = ACTIONS(4710), + [anon_sym_associatedtype] = ACTIONS(4710), + [anon_sym_AT] = ACTIONS(4712), + [sym_property_behavior_modifier] = ACTIONS(4710), + [anon_sym_override] = ACTIONS(4710), + [anon_sym_convenience] = ACTIONS(4710), + [anon_sym_required] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(4710), + [anon_sym_private] = ACTIONS(4710), + [anon_sym_internal] = ACTIONS(4710), + [anon_sym_fileprivate] = ACTIONS(4710), + [anon_sym_open] = ACTIONS(4710), + [anon_sym_mutating] = ACTIONS(4710), + [anon_sym_nonmutating] = ACTIONS(4710), + [anon_sym_static] = ACTIONS(4710), + [anon_sym_dynamic] = ACTIONS(4710), + [anon_sym_optional] = ACTIONS(4710), + [anon_sym_final] = ACTIONS(4710), + [anon_sym_inout] = ACTIONS(4710), + [anon_sym_ATescaping] = ACTIONS(4710), + [anon_sym_ATautoclosure] = ACTIONS(4710), + [anon_sym_weak] = ACTIONS(4710), + [anon_sym_unowned] = ACTIONS(4712), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4710), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4710), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(4608), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4612), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1130] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(2759), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4634), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_async] = ACTIONS(4714), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4714), + [anon_sym_case] = ACTIONS(4714), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4594), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4714), + [anon_sym_typealias] = ACTIONS(4714), + [anon_sym_struct] = ACTIONS(4714), + [anon_sym_class] = ACTIONS(4714), + [anon_sym_enum] = ACTIONS(4714), + [anon_sym_protocol] = ACTIONS(4714), + [anon_sym_let] = ACTIONS(4714), + [anon_sym_var] = ACTIONS(4714), + [anon_sym_func] = ACTIONS(4714), + [anon_sym_extension] = ACTIONS(4714), + [anon_sym_indirect] = ACTIONS(4714), + [anon_sym_init] = ACTIONS(4714), + [anon_sym_deinit] = ACTIONS(4714), + [anon_sym_subscript] = ACTIONS(4714), + [anon_sym_prefix] = ACTIONS(4714), + [anon_sym_infix] = ACTIONS(4714), + [anon_sym_postfix] = ACTIONS(4714), + [anon_sym_precedencegroup] = ACTIONS(4714), + [anon_sym_associatedtype] = ACTIONS(4714), + [anon_sym_AT] = ACTIONS(4716), + [sym_property_behavior_modifier] = ACTIONS(4714), + [anon_sym_override] = ACTIONS(4714), + [anon_sym_convenience] = ACTIONS(4714), + [anon_sym_required] = ACTIONS(4714), + [anon_sym_public] = ACTIONS(4714), + [anon_sym_private] = ACTIONS(4714), + [anon_sym_internal] = ACTIONS(4714), + [anon_sym_fileprivate] = ACTIONS(4714), + [anon_sym_open] = ACTIONS(4714), + [anon_sym_mutating] = ACTIONS(4714), + [anon_sym_nonmutating] = ACTIONS(4714), + [anon_sym_static] = ACTIONS(4714), + [anon_sym_dynamic] = ACTIONS(4714), + [anon_sym_optional] = ACTIONS(4714), + [anon_sym_final] = ACTIONS(4714), + [anon_sym_inout] = ACTIONS(4714), + [anon_sym_ATescaping] = ACTIONS(4714), + [anon_sym_ATautoclosure] = ACTIONS(4714), + [anon_sym_weak] = ACTIONS(4714), + [anon_sym_unowned] = ACTIONS(4716), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4714), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4714), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(4608), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4612), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1131] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4634), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_async] = ACTIONS(4718), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4718), + [anon_sym_case] = ACTIONS(4718), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4594), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4718), + [anon_sym_typealias] = ACTIONS(4718), + [anon_sym_struct] = ACTIONS(4718), + [anon_sym_class] = ACTIONS(4718), + [anon_sym_enum] = ACTIONS(4718), + [anon_sym_protocol] = ACTIONS(4718), + [anon_sym_let] = ACTIONS(4718), + [anon_sym_var] = ACTIONS(4718), + [anon_sym_func] = ACTIONS(4718), + [anon_sym_extension] = ACTIONS(4718), + [anon_sym_indirect] = ACTIONS(4718), + [anon_sym_init] = ACTIONS(4718), + [anon_sym_deinit] = ACTIONS(4718), + [anon_sym_subscript] = ACTIONS(4718), + [anon_sym_prefix] = ACTIONS(4718), + [anon_sym_infix] = ACTIONS(4718), + [anon_sym_postfix] = ACTIONS(4718), + [anon_sym_precedencegroup] = ACTIONS(4718), + [anon_sym_associatedtype] = ACTIONS(4718), + [anon_sym_AT] = ACTIONS(4720), + [sym_property_behavior_modifier] = ACTIONS(4718), + [anon_sym_override] = ACTIONS(4718), + [anon_sym_convenience] = ACTIONS(4718), + [anon_sym_required] = ACTIONS(4718), + [anon_sym_public] = ACTIONS(4718), + [anon_sym_private] = ACTIONS(4718), + [anon_sym_internal] = ACTIONS(4718), + [anon_sym_fileprivate] = ACTIONS(4718), + [anon_sym_open] = ACTIONS(4718), + [anon_sym_mutating] = ACTIONS(4718), + [anon_sym_nonmutating] = ACTIONS(4718), + [anon_sym_static] = ACTIONS(4718), + [anon_sym_dynamic] = ACTIONS(4718), + [anon_sym_optional] = ACTIONS(4718), + [anon_sym_final] = ACTIONS(4718), + [anon_sym_inout] = ACTIONS(4718), + [anon_sym_ATescaping] = ACTIONS(4718), + [anon_sym_ATautoclosure] = ACTIONS(4718), + [anon_sym_weak] = ACTIONS(4718), + [anon_sym_unowned] = ACTIONS(4720), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4718), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4718), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(4608), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4612), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1132] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4634), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_async] = ACTIONS(4722), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4722), + [anon_sym_case] = ACTIONS(4722), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4594), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4722), + [anon_sym_typealias] = ACTIONS(4722), + [anon_sym_struct] = ACTIONS(4722), + [anon_sym_class] = ACTIONS(4722), + [anon_sym_enum] = ACTIONS(4722), + [anon_sym_protocol] = ACTIONS(4722), + [anon_sym_let] = ACTIONS(4722), + [anon_sym_var] = ACTIONS(4722), + [anon_sym_func] = ACTIONS(4722), + [anon_sym_extension] = ACTIONS(4722), + [anon_sym_indirect] = ACTIONS(4722), + [anon_sym_init] = ACTIONS(4722), + [anon_sym_deinit] = ACTIONS(4722), + [anon_sym_subscript] = ACTIONS(4722), + [anon_sym_prefix] = ACTIONS(4722), + [anon_sym_infix] = ACTIONS(4722), + [anon_sym_postfix] = ACTIONS(4722), + [anon_sym_precedencegroup] = ACTIONS(4722), + [anon_sym_associatedtype] = ACTIONS(4722), + [anon_sym_AT] = ACTIONS(4724), + [sym_property_behavior_modifier] = ACTIONS(4722), + [anon_sym_override] = ACTIONS(4722), + [anon_sym_convenience] = ACTIONS(4722), + [anon_sym_required] = ACTIONS(4722), + [anon_sym_public] = ACTIONS(4722), + [anon_sym_private] = ACTIONS(4722), + [anon_sym_internal] = ACTIONS(4722), + [anon_sym_fileprivate] = ACTIONS(4722), + [anon_sym_open] = ACTIONS(4722), + [anon_sym_mutating] = ACTIONS(4722), + [anon_sym_nonmutating] = ACTIONS(4722), + [anon_sym_static] = ACTIONS(4722), + [anon_sym_dynamic] = ACTIONS(4722), + [anon_sym_optional] = ACTIONS(4722), + [anon_sym_final] = ACTIONS(4722), + [anon_sym_inout] = ACTIONS(4722), + [anon_sym_ATescaping] = ACTIONS(4722), + [anon_sym_ATautoclosure] = ACTIONS(4722), + [anon_sym_weak] = ACTIONS(4722), + [anon_sym_unowned] = ACTIONS(4724), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4722), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4722), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(4608), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4612), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1133] = { + [sym__quest] = STATE(547), + [sym__range_operator] = STATE(813), + [sym_custom_operator] = STATE(812), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(1142), + [sym__equality_operator] = STATE(810), + [sym__comparison_operator] = STATE(809), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(808), + [sym__multiplicative_operator] = STATE(807), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(806), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(810), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1103), + [sym__open_ended_range_operator] = STATE(813), + [sym__conjunction_operator] = STATE(332), + [sym__disjunction_operator] = STATE(803), + [sym__nil_coalescing_operator] = STATE(802), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4726), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(4634), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(4590), + [anon_sym_async] = ACTIONS(4726), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4594), + [anon_sym_GT] = ACTIONS(4594), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_RBRACE] = ACTIONS(4726), + [anon_sym_case] = ACTIONS(4726), + [anon_sym_BANG_EQ] = ACTIONS(4596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4596), + [anon_sym_LT_EQ] = ACTIONS(4594), + [anon_sym_GT_EQ] = ACTIONS(4594), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(4600), + [anon_sym_DASH] = ACTIONS(4600), + [anon_sym_STAR] = ACTIONS(4602), + [anon_sym_SLASH] = ACTIONS(4602), + [anon_sym_PERCENT] = ACTIONS(4602), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4590), + [anon_sym_CARET] = ACTIONS(4590), + [anon_sym_LT_LT] = ACTIONS(4590), + [anon_sym_GT_GT] = ACTIONS(4590), + [anon_sym_import] = ACTIONS(4726), + [anon_sym_typealias] = ACTIONS(4726), + [anon_sym_struct] = ACTIONS(4726), + [anon_sym_class] = ACTIONS(4726), + [anon_sym_enum] = ACTIONS(4726), + [anon_sym_protocol] = ACTIONS(4726), + [anon_sym_let] = ACTIONS(4726), + [anon_sym_var] = ACTIONS(4726), + [anon_sym_func] = ACTIONS(4726), + [anon_sym_extension] = ACTIONS(4726), + [anon_sym_indirect] = ACTIONS(4726), + [anon_sym_init] = ACTIONS(4726), + [anon_sym_deinit] = ACTIONS(4726), + [anon_sym_subscript] = ACTIONS(4726), + [anon_sym_prefix] = ACTIONS(4726), + [anon_sym_infix] = ACTIONS(4726), + [anon_sym_postfix] = ACTIONS(4726), + [anon_sym_precedencegroup] = ACTIONS(4726), + [anon_sym_associatedtype] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [sym_property_behavior_modifier] = ACTIONS(4726), + [anon_sym_override] = ACTIONS(4726), + [anon_sym_convenience] = ACTIONS(4726), + [anon_sym_required] = ACTIONS(4726), + [anon_sym_public] = ACTIONS(4726), + [anon_sym_private] = ACTIONS(4726), + [anon_sym_internal] = ACTIONS(4726), + [anon_sym_fileprivate] = ACTIONS(4726), + [anon_sym_open] = ACTIONS(4726), + [anon_sym_mutating] = ACTIONS(4726), + [anon_sym_nonmutating] = ACTIONS(4726), + [anon_sym_static] = ACTIONS(4726), + [anon_sym_dynamic] = ACTIONS(4726), + [anon_sym_optional] = ACTIONS(4726), + [anon_sym_final] = ACTIONS(4726), + [anon_sym_inout] = ACTIONS(4726), + [anon_sym_ATescaping] = ACTIONS(4726), + [anon_sym_ATautoclosure] = ACTIONS(4726), + [anon_sym_weak] = ACTIONS(4726), + [anon_sym_unowned] = ACTIONS(4728), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4726), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4726), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(1497), + [sym__open_ended_range_operator_custom] = ACTIONS(4608), + [sym__conjunction_operator_custom] = ACTIONS(4610), + [sym__disjunction_operator_custom] = ACTIONS(4612), + [sym__nil_coalescing_operator_custom] = ACTIONS(4614), + [sym__eq_eq_custom] = ACTIONS(4616), + [sym__plus_then_ws] = ACTIONS(4618), + [sym__minus_then_ws] = ACTIONS(4618), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1134] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4527), + [aux_sym_simple_identifier_token2] = ACTIONS(4529), + [aux_sym_simple_identifier_token3] = ACTIONS(4529), + [aux_sym_simple_identifier_token4] = ACTIONS(4529), + [anon_sym_nil] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_oct_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_BSLASH] = ACTIONS(4527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_QMARK] = ACTIONS(4536), + [sym__immediate_quest] = ACTIONS(4536), + [anon_sym_AMP] = ACTIONS(4538), + [anon_sym_async] = ACTIONS(4527), + [anon_sym_POUNDselector] = ACTIONS(4529), + [aux_sym_custom_operator_token1] = ACTIONS(4538), + [anon_sym_LT] = ACTIONS(4538), + [anon_sym_GT] = ACTIONS(4538), + [sym__await_operator] = ACTIONS(4527), + [anon_sym_POUNDfile] = ACTIONS(4527), + [anon_sym_POUNDfileID] = ACTIONS(4529), + [anon_sym_POUNDfilePath] = ACTIONS(4529), + [anon_sym_POUNDline] = ACTIONS(4529), + [anon_sym_POUNDcolumn] = ACTIONS(4529), + [anon_sym_POUNDfunction] = ACTIONS(4529), + [anon_sym_POUNDdsohandle] = ACTIONS(4529), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4529), + [anon_sym_POUNDfileLiteral] = ACTIONS(4529), + [anon_sym_POUNDimageLiteral] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_self] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_case] = ACTIONS(4536), + [anon_sym_fallthrough] = ACTIONS(4536), + [anon_sym_POUNDkeyPath] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_try_BANG] = ACTIONS(4529), + [anon_sym_try_QMARK] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4538), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4538), + [anon_sym_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_EQ] = ACTIONS(4538), + [anon_sym_is] = ACTIONS(4536), + [anon_sym_PLUS] = ACTIONS(4538), + [anon_sym_DASH] = ACTIONS(4538), + [anon_sym_STAR] = ACTIONS(4538), + [anon_sym_SLASH] = ACTIONS(4538), + [anon_sym_PERCENT] = ACTIONS(4538), + [anon_sym_PLUS_PLUS] = ACTIONS(4538), + [anon_sym_DASH_DASH] = ACTIONS(4538), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym_LT_LT] = ACTIONS(4536), + [anon_sym_GT_GT] = ACTIONS(4536), + [anon_sym_class] = ACTIONS(4536), + [anon_sym_prefix] = ACTIONS(4536), + [anon_sym_infix] = ACTIONS(4536), + [anon_sym_postfix] = ACTIONS(4536), + [anon_sym_AT] = ACTIONS(4536), + [sym_property_behavior_modifier] = ACTIONS(4536), + [anon_sym_override] = ACTIONS(4536), + [anon_sym_convenience] = ACTIONS(4536), + [anon_sym_required] = ACTIONS(4536), + [anon_sym_public] = ACTIONS(4536), + [anon_sym_private] = ACTIONS(4536), + [anon_sym_internal] = ACTIONS(4536), + [anon_sym_fileprivate] = ACTIONS(4536), + [anon_sym_open] = ACTIONS(4536), + [anon_sym_mutating] = ACTIONS(4536), + [anon_sym_nonmutating] = ACTIONS(4536), + [anon_sym_static] = ACTIONS(4536), + [anon_sym_dynamic] = ACTIONS(4536), + [anon_sym_optional] = ACTIONS(4536), + [anon_sym_final] = ACTIONS(4536), + [anon_sym_inout] = ACTIONS(4536), + [anon_sym_ATescaping] = ACTIONS(4531), + [anon_sym_ATautoclosure] = ACTIONS(4531), + [anon_sym_weak] = ACTIONS(4536), + [anon_sym_unowned] = ACTIONS(4536), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4531), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4531), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4529), + [sym_raw_str_end_part] = ACTIONS(4529), + [sym__semi] = ACTIONS(4531), + [sym__dot_custom] = ACTIONS(4533), + [sym__three_dot_operator_custom] = ACTIONS(4533), + [sym__open_ended_range_operator_custom] = ACTIONS(4533), + [sym__conjunction_operator_custom] = ACTIONS(4531), + [sym__disjunction_operator_custom] = ACTIONS(4531), + [sym__nil_coalescing_operator_custom] = ACTIONS(4531), + [sym__eq_eq_custom] = ACTIONS(4533), + [sym__plus_then_ws] = ACTIONS(4533), + [sym__minus_then_ws] = ACTIONS(4533), + [sym_bang] = ACTIONS(4533), + [sym_default_keyword] = ACTIONS(4531), + [sym__as_custom] = ACTIONS(4531), + [sym__as_quest_custom] = ACTIONS(4531), + [sym__as_bang_custom] = ACTIONS(4531), + }, + [1135] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4570), + [aux_sym_simple_identifier_token2] = ACTIONS(4572), + [aux_sym_simple_identifier_token3] = ACTIONS(4572), + [aux_sym_simple_identifier_token4] = ACTIONS(4572), + [anon_sym_nil] = ACTIONS(4570), + [sym_real_literal] = ACTIONS(4572), + [sym_integer_literal] = ACTIONS(4570), + [sym_hex_literal] = ACTIONS(4572), + [sym_oct_literal] = ACTIONS(4572), + [sym_bin_literal] = ACTIONS(4572), + [anon_sym_true] = ACTIONS(4570), + [anon_sym_false] = ACTIONS(4570), + [anon_sym_DQUOTE] = ACTIONS(4570), + [anon_sym_BSLASH] = ACTIONS(4570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4570), + [sym__immediate_quest] = ACTIONS(4570), + [anon_sym_AMP] = ACTIONS(4570), + [anon_sym_async] = ACTIONS(4570), + [anon_sym_POUNDselector] = ACTIONS(4572), + [aux_sym_custom_operator_token1] = ACTIONS(4570), + [anon_sym_LT] = ACTIONS(4570), + [anon_sym_GT] = ACTIONS(4570), + [sym__await_operator] = ACTIONS(4570), + [anon_sym_POUNDfile] = ACTIONS(4570), + [anon_sym_POUNDfileID] = ACTIONS(4572), + [anon_sym_POUNDfilePath] = ACTIONS(4572), + [anon_sym_POUNDline] = ACTIONS(4572), + [anon_sym_POUNDcolumn] = ACTIONS(4572), + [anon_sym_POUNDfunction] = ACTIONS(4572), + [anon_sym_POUNDdsohandle] = ACTIONS(4572), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4572), + [anon_sym_POUNDfileLiteral] = ACTIONS(4572), + [anon_sym_POUNDimageLiteral] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4572), + [anon_sym_RBRACE] = ACTIONS(4572), + [anon_sym_self] = ACTIONS(4570), + [anon_sym_super] = ACTIONS(4570), + [anon_sym_case] = ACTIONS(4570), + [anon_sym_fallthrough] = ACTIONS(4570), + [anon_sym_POUNDkeyPath] = ACTIONS(4572), + [anon_sym_try] = ACTIONS(4570), + [anon_sym_try_BANG] = ACTIONS(4572), + [anon_sym_try_QMARK] = ACTIONS(4572), + [anon_sym_BANG_EQ] = ACTIONS(4570), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4570), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4570), + [anon_sym_LT_EQ] = ACTIONS(4570), + [anon_sym_GT_EQ] = ACTIONS(4570), + [anon_sym_is] = ACTIONS(4570), + [anon_sym_PLUS] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4570), + [anon_sym_STAR] = ACTIONS(4570), + [anon_sym_SLASH] = ACTIONS(4570), + [anon_sym_PERCENT] = ACTIONS(4570), + [anon_sym_PLUS_PLUS] = ACTIONS(4570), + [anon_sym_DASH_DASH] = ACTIONS(4570), + [anon_sym_TILDE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4570), + [anon_sym_CARET] = ACTIONS(4570), + [anon_sym_LT_LT] = ACTIONS(4570), + [anon_sym_GT_GT] = ACTIONS(4570), + [anon_sym_class] = ACTIONS(4570), + [anon_sym_prefix] = ACTIONS(4570), + [anon_sym_infix] = ACTIONS(4570), + [anon_sym_postfix] = ACTIONS(4570), + [anon_sym_AT] = ACTIONS(4570), + [sym_property_behavior_modifier] = ACTIONS(4570), + [anon_sym_override] = ACTIONS(4570), + [anon_sym_convenience] = ACTIONS(4570), + [anon_sym_required] = ACTIONS(4570), + [anon_sym_public] = ACTIONS(4570), + [anon_sym_private] = ACTIONS(4570), + [anon_sym_internal] = ACTIONS(4570), + [anon_sym_fileprivate] = ACTIONS(4570), + [anon_sym_open] = ACTIONS(4570), + [anon_sym_mutating] = ACTIONS(4570), + [anon_sym_nonmutating] = ACTIONS(4570), + [anon_sym_static] = ACTIONS(4570), + [anon_sym_dynamic] = ACTIONS(4570), + [anon_sym_optional] = ACTIONS(4570), + [anon_sym_final] = ACTIONS(4570), + [anon_sym_inout] = ACTIONS(4570), + [anon_sym_ATescaping] = ACTIONS(4572), + [anon_sym_ATautoclosure] = ACTIONS(4572), + [anon_sym_weak] = ACTIONS(4570), + [anon_sym_unowned] = ACTIONS(4570), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4572), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4572), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4572), + [sym_raw_str_end_part] = ACTIONS(4572), + [sym__semi] = ACTIONS(4572), + [sym__dot_custom] = ACTIONS(4572), + [sym__three_dot_operator_custom] = ACTIONS(4572), + [sym__open_ended_range_operator_custom] = ACTIONS(4572), + [sym__conjunction_operator_custom] = ACTIONS(4572), + [sym__disjunction_operator_custom] = ACTIONS(4572), + [sym__nil_coalescing_operator_custom] = ACTIONS(4572), + [sym__eq_eq_custom] = ACTIONS(4572), + [sym__plus_then_ws] = ACTIONS(4572), + [sym__minus_then_ws] = ACTIONS(4572), + [sym_bang] = ACTIONS(4572), + [sym_default_keyword] = ACTIONS(4572), + [sym__as_custom] = ACTIONS(4572), + [sym__as_quest_custom] = ACTIONS(4572), + [sym__as_bang_custom] = ACTIONS(4572), + }, + [1136] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4563), + [aux_sym_simple_identifier_token2] = ACTIONS(4565), + [aux_sym_simple_identifier_token3] = ACTIONS(4565), + [aux_sym_simple_identifier_token4] = ACTIONS(4565), + [anon_sym_nil] = ACTIONS(4563), + [sym_real_literal] = ACTIONS(4565), + [sym_integer_literal] = ACTIONS(4563), + [sym_hex_literal] = ACTIONS(4565), + [sym_oct_literal] = ACTIONS(4565), + [sym_bin_literal] = ACTIONS(4565), + [anon_sym_true] = ACTIONS(4563), + [anon_sym_false] = ACTIONS(4563), + [anon_sym_DQUOTE] = ACTIONS(4563), + [anon_sym_BSLASH] = ACTIONS(4563), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_QMARK] = ACTIONS(4563), + [sym__immediate_quest] = ACTIONS(4563), + [anon_sym_AMP] = ACTIONS(4563), + [anon_sym_async] = ACTIONS(4563), + [anon_sym_POUNDselector] = ACTIONS(4565), + [aux_sym_custom_operator_token1] = ACTIONS(4563), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4563), + [sym__await_operator] = ACTIONS(4563), + [anon_sym_POUNDfile] = ACTIONS(4563), + [anon_sym_POUNDfileID] = ACTIONS(4565), + [anon_sym_POUNDfilePath] = ACTIONS(4565), + [anon_sym_POUNDline] = ACTIONS(4565), + [anon_sym_POUNDcolumn] = ACTIONS(4565), + [anon_sym_POUNDfunction] = ACTIONS(4565), + [anon_sym_POUNDdsohandle] = ACTIONS(4565), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4565), + [anon_sym_POUNDfileLiteral] = ACTIONS(4565), + [anon_sym_POUNDimageLiteral] = ACTIONS(4565), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_self] = ACTIONS(4563), + [anon_sym_super] = ACTIONS(4563), + [anon_sym_case] = ACTIONS(4563), + [anon_sym_fallthrough] = ACTIONS(4563), + [anon_sym_POUNDkeyPath] = ACTIONS(4565), + [anon_sym_try] = ACTIONS(4563), + [anon_sym_try_BANG] = ACTIONS(4565), + [anon_sym_try_QMARK] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4563), + [anon_sym_LT_EQ] = ACTIONS(4563), + [anon_sym_GT_EQ] = ACTIONS(4563), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_PLUS_PLUS] = ACTIONS(4563), + [anon_sym_DASH_DASH] = ACTIONS(4563), + [anon_sym_TILDE] = ACTIONS(4563), + [anon_sym_PIPE] = ACTIONS(4563), + [anon_sym_CARET] = ACTIONS(4563), + [anon_sym_LT_LT] = ACTIONS(4563), + [anon_sym_GT_GT] = ACTIONS(4563), + [anon_sym_class] = ACTIONS(4563), + [anon_sym_prefix] = ACTIONS(4563), + [anon_sym_infix] = ACTIONS(4563), + [anon_sym_postfix] = ACTIONS(4563), + [anon_sym_AT] = ACTIONS(4563), + [sym_property_behavior_modifier] = ACTIONS(4563), + [anon_sym_override] = ACTIONS(4563), + [anon_sym_convenience] = ACTIONS(4563), + [anon_sym_required] = ACTIONS(4563), + [anon_sym_public] = ACTIONS(4563), + [anon_sym_private] = ACTIONS(4563), + [anon_sym_internal] = ACTIONS(4563), + [anon_sym_fileprivate] = ACTIONS(4563), + [anon_sym_open] = ACTIONS(4563), + [anon_sym_mutating] = ACTIONS(4563), + [anon_sym_nonmutating] = ACTIONS(4563), + [anon_sym_static] = ACTIONS(4563), + [anon_sym_dynamic] = ACTIONS(4563), + [anon_sym_optional] = ACTIONS(4563), + [anon_sym_final] = ACTIONS(4563), + [anon_sym_inout] = ACTIONS(4563), + [anon_sym_ATescaping] = ACTIONS(4565), + [anon_sym_ATautoclosure] = ACTIONS(4565), + [anon_sym_weak] = ACTIONS(4563), + [anon_sym_unowned] = ACTIONS(4563), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4565), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4565), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4565), + [sym_raw_str_end_part] = ACTIONS(4565), + [sym__semi] = ACTIONS(4565), + [sym__dot_custom] = ACTIONS(4565), + [sym__three_dot_operator_custom] = ACTIONS(4565), + [sym__open_ended_range_operator_custom] = ACTIONS(4565), + [sym__conjunction_operator_custom] = ACTIONS(4565), + [sym__disjunction_operator_custom] = ACTIONS(4565), + [sym__nil_coalescing_operator_custom] = ACTIONS(4565), + [sym__eq_eq_custom] = ACTIONS(4565), + [sym__plus_then_ws] = ACTIONS(4565), + [sym__minus_then_ws] = ACTIONS(4565), + [sym_bang] = ACTIONS(4565), + [sym_default_keyword] = ACTIONS(4565), + [sym__as_custom] = ACTIONS(4565), + [sym__as_quest_custom] = ACTIONS(4565), + [sym__as_bang_custom] = ACTIONS(4565), + }, + [1137] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4551), + [aux_sym_simple_identifier_token2] = ACTIONS(4553), + [aux_sym_simple_identifier_token3] = ACTIONS(4553), + [aux_sym_simple_identifier_token4] = ACTIONS(4553), + [anon_sym_nil] = ACTIONS(4551), + [sym_real_literal] = ACTIONS(4553), + [sym_integer_literal] = ACTIONS(4551), + [sym_hex_literal] = ACTIONS(4553), + [sym_oct_literal] = ACTIONS(4553), + [sym_bin_literal] = ACTIONS(4553), + [anon_sym_true] = ACTIONS(4551), + [anon_sym_false] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_BSLASH] = ACTIONS(4551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4555), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_QMARK] = ACTIONS(4557), + [sym__immediate_quest] = ACTIONS(4557), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_async] = ACTIONS(4551), + [anon_sym_POUNDselector] = ACTIONS(4553), + [aux_sym_custom_operator_token1] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [sym__await_operator] = ACTIONS(4551), + [anon_sym_POUNDfile] = ACTIONS(4551), + [anon_sym_POUNDfileID] = ACTIONS(4553), + [anon_sym_POUNDfilePath] = ACTIONS(4553), + [anon_sym_POUNDline] = ACTIONS(4553), + [anon_sym_POUNDcolumn] = ACTIONS(4553), + [anon_sym_POUNDfunction] = ACTIONS(4553), + [anon_sym_POUNDdsohandle] = ACTIONS(4553), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4553), + [anon_sym_POUNDfileLiteral] = ACTIONS(4553), + [anon_sym_POUNDimageLiteral] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4555), + [anon_sym_self] = ACTIONS(4551), + [anon_sym_super] = ACTIONS(4551), + [anon_sym_case] = ACTIONS(4557), + [anon_sym_fallthrough] = ACTIONS(4557), + [anon_sym_POUNDkeyPath] = ACTIONS(4553), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_try_BANG] = ACTIONS(4553), + [anon_sym_try_QMARK] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_LT_LT] = ACTIONS(4557), + [anon_sym_GT_GT] = ACTIONS(4557), + [anon_sym_class] = ACTIONS(4557), + [anon_sym_prefix] = ACTIONS(4557), + [anon_sym_infix] = ACTIONS(4557), + [anon_sym_postfix] = ACTIONS(4557), + [anon_sym_AT] = ACTIONS(4557), + [sym_property_behavior_modifier] = ACTIONS(4557), + [anon_sym_override] = ACTIONS(4557), + [anon_sym_convenience] = ACTIONS(4557), + [anon_sym_required] = ACTIONS(4557), + [anon_sym_public] = ACTIONS(4557), + [anon_sym_private] = ACTIONS(4557), + [anon_sym_internal] = ACTIONS(4557), + [anon_sym_fileprivate] = ACTIONS(4557), + [anon_sym_open] = ACTIONS(4557), + [anon_sym_mutating] = ACTIONS(4557), + [anon_sym_nonmutating] = ACTIONS(4557), + [anon_sym_static] = ACTIONS(4557), + [anon_sym_dynamic] = ACTIONS(4557), + [anon_sym_optional] = ACTIONS(4557), + [anon_sym_final] = ACTIONS(4557), + [anon_sym_inout] = ACTIONS(4557), + [anon_sym_ATescaping] = ACTIONS(4555), + [anon_sym_ATautoclosure] = ACTIONS(4555), + [anon_sym_weak] = ACTIONS(4557), + [anon_sym_unowned] = ACTIONS(4557), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4555), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4555), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4553), + [sym_raw_str_end_part] = ACTIONS(4553), + [sym__semi] = ACTIONS(4555), + [sym__dot_custom] = ACTIONS(4553), + [sym__three_dot_operator_custom] = ACTIONS(4553), + [sym__open_ended_range_operator_custom] = ACTIONS(4553), + [sym__conjunction_operator_custom] = ACTIONS(4555), + [sym__disjunction_operator_custom] = ACTIONS(4555), + [sym__nil_coalescing_operator_custom] = ACTIONS(4555), + [sym__eq_eq_custom] = ACTIONS(4553), + [sym__plus_then_ws] = ACTIONS(4553), + [sym__minus_then_ws] = ACTIONS(4553), + [sym_bang] = ACTIONS(4553), + [sym_default_keyword] = ACTIONS(4555), + [sym__as_custom] = ACTIONS(4555), + [sym__as_quest_custom] = ACTIONS(4555), + [sym__as_bang_custom] = ACTIONS(4555), + }, + [1138] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4523), + [aux_sym_simple_identifier_token2] = ACTIONS(4525), + [aux_sym_simple_identifier_token3] = ACTIONS(4525), + [aux_sym_simple_identifier_token4] = ACTIONS(4525), + [anon_sym_nil] = ACTIONS(4523), + [sym_real_literal] = ACTIONS(4525), + [sym_integer_literal] = ACTIONS(4523), + [sym_hex_literal] = ACTIONS(4525), + [sym_oct_literal] = ACTIONS(4525), + [sym_bin_literal] = ACTIONS(4525), + [anon_sym_true] = ACTIONS(4523), + [anon_sym_false] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_BSLASH] = ACTIONS(4523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4525), + [anon_sym_COMMA] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_QMARK] = ACTIONS(4523), + [sym__immediate_quest] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_async] = ACTIONS(4523), + [anon_sym_POUNDselector] = ACTIONS(4525), + [aux_sym_custom_operator_token1] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4523), + [anon_sym_GT] = ACTIONS(4523), + [sym__await_operator] = ACTIONS(4523), + [anon_sym_POUNDfile] = ACTIONS(4523), + [anon_sym_POUNDfileID] = ACTIONS(4525), + [anon_sym_POUNDfilePath] = ACTIONS(4525), + [anon_sym_POUNDline] = ACTIONS(4525), + [anon_sym_POUNDcolumn] = ACTIONS(4525), + [anon_sym_POUNDfunction] = ACTIONS(4525), + [anon_sym_POUNDdsohandle] = ACTIONS(4525), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4525), + [anon_sym_POUNDfileLiteral] = ACTIONS(4525), + [anon_sym_POUNDimageLiteral] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_RBRACE] = ACTIONS(4525), + [anon_sym_self] = ACTIONS(4523), + [anon_sym_super] = ACTIONS(4523), + [anon_sym_case] = ACTIONS(4523), + [anon_sym_fallthrough] = ACTIONS(4523), + [anon_sym_POUNDkeyPath] = ACTIONS(4525), + [anon_sym_try] = ACTIONS(4523), + [anon_sym_try_BANG] = ACTIONS(4525), + [anon_sym_try_QMARK] = ACTIONS(4525), + [anon_sym_BANG_EQ] = ACTIONS(4523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4523), + [anon_sym_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_EQ] = ACTIONS(4523), + [anon_sym_is] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_PLUS_PLUS] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_CARET] = ACTIONS(4523), + [anon_sym_LT_LT] = ACTIONS(4523), + [anon_sym_GT_GT] = ACTIONS(4523), + [anon_sym_class] = ACTIONS(4523), + [anon_sym_prefix] = ACTIONS(4523), + [anon_sym_infix] = ACTIONS(4523), + [anon_sym_postfix] = ACTIONS(4523), + [anon_sym_AT] = ACTIONS(4523), + [sym_property_behavior_modifier] = ACTIONS(4523), + [anon_sym_override] = ACTIONS(4523), + [anon_sym_convenience] = ACTIONS(4523), + [anon_sym_required] = ACTIONS(4523), + [anon_sym_public] = ACTIONS(4523), + [anon_sym_private] = ACTIONS(4523), + [anon_sym_internal] = ACTIONS(4523), + [anon_sym_fileprivate] = ACTIONS(4523), + [anon_sym_open] = ACTIONS(4523), + [anon_sym_mutating] = ACTIONS(4523), + [anon_sym_nonmutating] = ACTIONS(4523), + [anon_sym_static] = ACTIONS(4523), + [anon_sym_dynamic] = ACTIONS(4523), + [anon_sym_optional] = ACTIONS(4523), + [anon_sym_final] = ACTIONS(4523), + [anon_sym_inout] = ACTIONS(4523), + [anon_sym_ATescaping] = ACTIONS(4525), + [anon_sym_ATautoclosure] = ACTIONS(4525), + [anon_sym_weak] = ACTIONS(4523), + [anon_sym_unowned] = ACTIONS(4523), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4525), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4525), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4525), + [sym_raw_str_end_part] = ACTIONS(4525), + [sym__semi] = ACTIONS(4525), + [sym__dot_custom] = ACTIONS(4525), + [sym__three_dot_operator_custom] = ACTIONS(4525), + [sym__open_ended_range_operator_custom] = ACTIONS(4525), + [sym__conjunction_operator_custom] = ACTIONS(4525), + [sym__disjunction_operator_custom] = ACTIONS(4525), + [sym__nil_coalescing_operator_custom] = ACTIONS(4525), + [sym__eq_eq_custom] = ACTIONS(4525), + [sym__plus_then_ws] = ACTIONS(4525), + [sym__minus_then_ws] = ACTIONS(4525), + [sym_bang] = ACTIONS(4525), + [sym_default_keyword] = ACTIONS(4525), + [sym__as_custom] = ACTIONS(4525), + [sym__as_quest_custom] = ACTIONS(4525), + [sym__as_bang_custom] = ACTIONS(4525), + }, + [1139] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4527), + [aux_sym_simple_identifier_token2] = ACTIONS(4529), + [aux_sym_simple_identifier_token3] = ACTIONS(4529), + [aux_sym_simple_identifier_token4] = ACTIONS(4529), + [anon_sym_nil] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_oct_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_BSLASH] = ACTIONS(4527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4541), + [anon_sym_LPAREN] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4543), + [anon_sym_QMARK] = ACTIONS(4546), + [sym__immediate_quest] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_async] = ACTIONS(4527), + [anon_sym_POUNDselector] = ACTIONS(4529), + [aux_sym_custom_operator_token1] = ACTIONS(4548), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [sym__await_operator] = ACTIONS(4527), + [anon_sym_POUNDfile] = ACTIONS(4527), + [anon_sym_POUNDfileID] = ACTIONS(4529), + [anon_sym_POUNDfilePath] = ACTIONS(4529), + [anon_sym_POUNDline] = ACTIONS(4529), + [anon_sym_POUNDcolumn] = ACTIONS(4529), + [anon_sym_POUNDfunction] = ACTIONS(4529), + [anon_sym_POUNDdsohandle] = ACTIONS(4529), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4529), + [anon_sym_POUNDfileLiteral] = ACTIONS(4529), + [anon_sym_POUNDimageLiteral] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4543), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_self] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_case] = ACTIONS(4546), + [anon_sym_fallthrough] = ACTIONS(4546), + [anon_sym_POUNDkeyPath] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_try_BANG] = ACTIONS(4529), + [anon_sym_try_QMARK] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4548), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4548), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4548), + [anon_sym_LT_EQ] = ACTIONS(4548), + [anon_sym_GT_EQ] = ACTIONS(4548), + [anon_sym_is] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_STAR] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4548), + [anon_sym_PERCENT] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4548), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4546), + [anon_sym_LT_LT] = ACTIONS(4546), + [anon_sym_GT_GT] = ACTIONS(4546), + [anon_sym_class] = ACTIONS(4546), + [anon_sym_prefix] = ACTIONS(4546), + [anon_sym_infix] = ACTIONS(4546), + [anon_sym_postfix] = ACTIONS(4546), + [anon_sym_AT] = ACTIONS(4546), + [sym_property_behavior_modifier] = ACTIONS(4546), + [anon_sym_override] = ACTIONS(4546), + [anon_sym_convenience] = ACTIONS(4546), + [anon_sym_required] = ACTIONS(4546), + [anon_sym_public] = ACTIONS(4546), + [anon_sym_private] = ACTIONS(4546), + [anon_sym_internal] = ACTIONS(4546), + [anon_sym_fileprivate] = ACTIONS(4546), + [anon_sym_open] = ACTIONS(4546), + [anon_sym_mutating] = ACTIONS(4546), + [anon_sym_nonmutating] = ACTIONS(4546), + [anon_sym_static] = ACTIONS(4546), + [anon_sym_dynamic] = ACTIONS(4546), + [anon_sym_optional] = ACTIONS(4546), + [anon_sym_final] = ACTIONS(4546), + [anon_sym_inout] = ACTIONS(4546), + [anon_sym_ATescaping] = ACTIONS(4541), + [anon_sym_ATautoclosure] = ACTIONS(4541), + [anon_sym_weak] = ACTIONS(4546), + [anon_sym_unowned] = ACTIONS(4546), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4541), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4541), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4529), + [sym_raw_str_end_part] = ACTIONS(4529), + [sym__semi] = ACTIONS(4541), + [sym__dot_custom] = ACTIONS(4543), + [sym__three_dot_operator_custom] = ACTIONS(4543), + [sym__open_ended_range_operator_custom] = ACTIONS(4543), + [sym__conjunction_operator_custom] = ACTIONS(4541), + [sym__disjunction_operator_custom] = ACTIONS(4541), + [sym__nil_coalescing_operator_custom] = ACTIONS(4541), + [sym__eq_eq_custom] = ACTIONS(4543), + [sym__plus_then_ws] = ACTIONS(4543), + [sym__minus_then_ws] = ACTIONS(4543), + [sym_bang] = ACTIONS(4543), + [sym_default_keyword] = ACTIONS(4541), + [sym__as_custom] = ACTIONS(4541), + [sym__as_quest_custom] = ACTIONS(4541), + [sym__as_bang_custom] = ACTIONS(4541), + }, + [1140] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4551), + [aux_sym_simple_identifier_token2] = ACTIONS(4553), + [aux_sym_simple_identifier_token3] = ACTIONS(4553), + [aux_sym_simple_identifier_token4] = ACTIONS(4553), + [anon_sym_nil] = ACTIONS(4551), + [sym_real_literal] = ACTIONS(4553), + [sym_integer_literal] = ACTIONS(4551), + [sym_hex_literal] = ACTIONS(4553), + [sym_oct_literal] = ACTIONS(4553), + [sym_bin_literal] = ACTIONS(4553), + [anon_sym_true] = ACTIONS(4551), + [anon_sym_false] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_BSLASH] = ACTIONS(4551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_QMARK] = ACTIONS(4561), + [sym__immediate_quest] = ACTIONS(4561), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_async] = ACTIONS(4551), + [anon_sym_POUNDselector] = ACTIONS(4553), + [aux_sym_custom_operator_token1] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [sym__await_operator] = ACTIONS(4551), + [anon_sym_POUNDfile] = ACTIONS(4551), + [anon_sym_POUNDfileID] = ACTIONS(4553), + [anon_sym_POUNDfilePath] = ACTIONS(4553), + [anon_sym_POUNDline] = ACTIONS(4553), + [anon_sym_POUNDcolumn] = ACTIONS(4553), + [anon_sym_POUNDfunction] = ACTIONS(4553), + [anon_sym_POUNDdsohandle] = ACTIONS(4553), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4553), + [anon_sym_POUNDfileLiteral] = ACTIONS(4553), + [anon_sym_POUNDimageLiteral] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4559), + [anon_sym_self] = ACTIONS(4551), + [anon_sym_super] = ACTIONS(4551), + [anon_sym_case] = ACTIONS(4561), + [anon_sym_fallthrough] = ACTIONS(4561), + [anon_sym_POUNDkeyPath] = ACTIONS(4553), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_try_BANG] = ACTIONS(4553), + [anon_sym_try_QMARK] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4561), + [anon_sym_CARET] = ACTIONS(4561), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_class] = ACTIONS(4561), + [anon_sym_prefix] = ACTIONS(4561), + [anon_sym_infix] = ACTIONS(4561), + [anon_sym_postfix] = ACTIONS(4561), + [anon_sym_AT] = ACTIONS(4561), + [sym_property_behavior_modifier] = ACTIONS(4561), + [anon_sym_override] = ACTIONS(4561), + [anon_sym_convenience] = ACTIONS(4561), + [anon_sym_required] = ACTIONS(4561), + [anon_sym_public] = ACTIONS(4561), + [anon_sym_private] = ACTIONS(4561), + [anon_sym_internal] = ACTIONS(4561), + [anon_sym_fileprivate] = ACTIONS(4561), + [anon_sym_open] = ACTIONS(4561), + [anon_sym_mutating] = ACTIONS(4561), + [anon_sym_nonmutating] = ACTIONS(4561), + [anon_sym_static] = ACTIONS(4561), + [anon_sym_dynamic] = ACTIONS(4561), + [anon_sym_optional] = ACTIONS(4561), + [anon_sym_final] = ACTIONS(4561), + [anon_sym_inout] = ACTIONS(4561), + [anon_sym_ATescaping] = ACTIONS(4559), + [anon_sym_ATautoclosure] = ACTIONS(4559), + [anon_sym_weak] = ACTIONS(4561), + [anon_sym_unowned] = ACTIONS(4561), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4559), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4559), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4553), + [sym_raw_str_end_part] = ACTIONS(4553), + [sym__semi] = ACTIONS(4559), + [sym__dot_custom] = ACTIONS(4553), + [sym__three_dot_operator_custom] = ACTIONS(4553), + [sym__open_ended_range_operator_custom] = ACTIONS(4553), + [sym__conjunction_operator_custom] = ACTIONS(4559), + [sym__disjunction_operator_custom] = ACTIONS(4559), + [sym__nil_coalescing_operator_custom] = ACTIONS(4559), + [sym__eq_eq_custom] = ACTIONS(4553), + [sym__plus_then_ws] = ACTIONS(4553), + [sym__minus_then_ws] = ACTIONS(4553), + [sym_bang] = ACTIONS(4553), + [sym_default_keyword] = ACTIONS(4559), + [sym__as_custom] = ACTIONS(4559), + [sym__as_quest_custom] = ACTIONS(4559), + [sym__as_bang_custom] = ACTIONS(4559), + }, + [1141] = { + [sym__arrow_operator] = STATE(4524), + [sym__async_keyword] = STATE(6938), + [sym__async_keyword_internal] = STATE(6938), + [sym_throws] = STATE(9669), + [aux_sym_optional_type_repeat1] = STATE(1221), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4733), + [anon_sym_COMMA] = ACTIONS(4733), + [anon_sym_COLON] = ACTIONS(4733), + [anon_sym_LPAREN] = ACTIONS(4733), + [anon_sym_LBRACK] = ACTIONS(4733), + [anon_sym_RBRACK] = ACTIONS(4733), + [anon_sym_DOT] = ACTIONS(4735), + [anon_sym_QMARK] = ACTIONS(4735), + [sym__immediate_quest] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_async] = ACTIONS(4733), + [aux_sym_custom_operator_token1] = ACTIONS(4735), + [anon_sym_LT] = ACTIONS(4735), + [anon_sym_GT] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4733), + [anon_sym_RBRACE] = ACTIONS(4733), + [anon_sym_case] = ACTIONS(4733), + [anon_sym_BANG_EQ] = ACTIONS(4735), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4735), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4735), + [anon_sym_LT_EQ] = ACTIONS(4735), + [anon_sym_GT_EQ] = ACTIONS(4735), + [anon_sym_is] = ACTIONS(4733), + [anon_sym_PLUS] = ACTIONS(4735), + [anon_sym_DASH] = ACTIONS(4735), + [anon_sym_STAR] = ACTIONS(4735), + [anon_sym_SLASH] = ACTIONS(4735), + [anon_sym_PERCENT] = ACTIONS(4735), + [anon_sym_PLUS_PLUS] = ACTIONS(4735), + [anon_sym_DASH_DASH] = ACTIONS(4735), + [anon_sym_PIPE] = ACTIONS(4735), + [anon_sym_CARET] = ACTIONS(4735), + [anon_sym_LT_LT] = ACTIONS(4735), + [anon_sym_GT_GT] = ACTIONS(4735), + [anon_sym_import] = ACTIONS(4733), + [anon_sym_typealias] = ACTIONS(4733), + [anon_sym_struct] = ACTIONS(4733), + [anon_sym_class] = ACTIONS(4733), + [anon_sym_enum] = ACTIONS(4733), + [anon_sym_protocol] = ACTIONS(4733), + [anon_sym_let] = ACTIONS(4733), + [anon_sym_var] = ACTIONS(4733), + [anon_sym_func] = ACTIONS(4733), + [anon_sym_extension] = ACTIONS(4733), + [anon_sym_indirect] = ACTIONS(4733), + [anon_sym_init] = ACTIONS(4733), + [anon_sym_SEMI] = ACTIONS(4733), + [anon_sym_deinit] = ACTIONS(4733), + [anon_sym_subscript] = ACTIONS(4733), + [anon_sym_prefix] = ACTIONS(4733), + [anon_sym_infix] = ACTIONS(4733), + [anon_sym_postfix] = ACTIONS(4733), + [anon_sym_precedencegroup] = ACTIONS(4733), + [anon_sym_associatedtype] = ACTIONS(4733), + [anon_sym_AT] = ACTIONS(4735), + [sym_property_behavior_modifier] = ACTIONS(4733), + [anon_sym_override] = ACTIONS(4733), + [anon_sym_convenience] = ACTIONS(4733), + [anon_sym_required] = ACTIONS(4733), + [anon_sym_public] = ACTIONS(4733), + [anon_sym_private] = ACTIONS(4733), + [anon_sym_internal] = ACTIONS(4733), + [anon_sym_fileprivate] = ACTIONS(4733), + [anon_sym_open] = ACTIONS(4733), + [anon_sym_mutating] = ACTIONS(4733), + [anon_sym_nonmutating] = ACTIONS(4733), + [anon_sym_static] = ACTIONS(4733), + [anon_sym_dynamic] = ACTIONS(4733), + [anon_sym_optional] = ACTIONS(4733), + [anon_sym_final] = ACTIONS(4733), + [anon_sym_inout] = ACTIONS(4733), + [anon_sym_ATescaping] = ACTIONS(4733), + [anon_sym_ATautoclosure] = ACTIONS(4733), + [anon_sym_weak] = ACTIONS(4733), + [anon_sym_unowned] = ACTIONS(4735), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4733), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4733), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__arrow_operator_custom] = ACTIONS(4739), + [sym__dot_custom] = ACTIONS(4733), + [sym__three_dot_operator_custom] = ACTIONS(4733), + [sym__open_ended_range_operator_custom] = ACTIONS(4733), + [sym__conjunction_operator_custom] = ACTIONS(4733), + [sym__disjunction_operator_custom] = ACTIONS(4733), + [sym__nil_coalescing_operator_custom] = ACTIONS(4733), + [sym__eq_eq_custom] = ACTIONS(4733), + [sym__plus_then_ws] = ACTIONS(4733), + [sym__minus_then_ws] = ACTIONS(4733), + [sym_bang] = ACTIONS(4733), + [sym__throws_keyword] = ACTIONS(4741), + [sym__rethrows_keyword] = ACTIONS(4741), + [sym__as_custom] = ACTIONS(4733), + [sym__as_quest_custom] = ACTIONS(4733), + [sym__as_bang_custom] = ACTIONS(4733), + [sym__async_keyword_custom] = ACTIONS(4743), + }, + [1142] = { + [sym_simple_identifier] = STATE(9855), + [aux_sym_call_suffix_repeat1] = STATE(1150), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4745), + [aux_sym_simple_identifier_token2] = ACTIONS(4747), + [aux_sym_simple_identifier_token3] = ACTIONS(4747), + [aux_sym_simple_identifier_token4] = ACTIONS(4747), + [anon_sym_COMMA] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4749), + [anon_sym_LBRACK] = ACTIONS(4749), + [anon_sym_QMARK] = ACTIONS(4751), + [sym__immediate_quest] = ACTIONS(4751), + [anon_sym_AMP] = ACTIONS(4751), + [anon_sym_async] = ACTIONS(4751), + [aux_sym_custom_operator_token1] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(4749), + [anon_sym_RBRACE] = ACTIONS(4749), + [anon_sym_case] = ACTIONS(4751), + [anon_sym_PLUS_EQ] = ACTIONS(4751), + [anon_sym_DASH_EQ] = ACTIONS(4751), + [anon_sym_STAR_EQ] = ACTIONS(4751), + [anon_sym_SLASH_EQ] = ACTIONS(4751), + [anon_sym_PERCENT_EQ] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_BANG_EQ] = ACTIONS(4751), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4751), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4751), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_is] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4751), + [anon_sym_STAR] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_PERCENT] = ACTIONS(4751), + [anon_sym_PLUS_PLUS] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_LT_LT] = ACTIONS(4751), + [anon_sym_GT_GT] = ACTIONS(4751), + [anon_sym_import] = ACTIONS(4751), + [anon_sym_typealias] = ACTIONS(4751), + [anon_sym_struct] = ACTIONS(4751), + [anon_sym_class] = ACTIONS(4751), + [anon_sym_enum] = ACTIONS(4751), + [anon_sym_protocol] = ACTIONS(4751), + [anon_sym_let] = ACTIONS(4751), + [anon_sym_var] = ACTIONS(4751), + [anon_sym_func] = ACTIONS(4751), + [anon_sym_extension] = ACTIONS(4751), + [anon_sym_indirect] = ACTIONS(4751), + [anon_sym_init] = ACTIONS(4751), + [anon_sym_SEMI] = ACTIONS(4749), + [anon_sym_deinit] = ACTIONS(4751), + [anon_sym_subscript] = ACTIONS(4751), + [anon_sym_prefix] = ACTIONS(4751), + [anon_sym_infix] = ACTIONS(4751), + [anon_sym_postfix] = ACTIONS(4751), + [anon_sym_precedencegroup] = ACTIONS(4751), + [anon_sym_associatedtype] = ACTIONS(4751), + [anon_sym_AT] = ACTIONS(4751), + [sym_property_behavior_modifier] = ACTIONS(4751), + [anon_sym_override] = ACTIONS(4751), + [anon_sym_convenience] = ACTIONS(4751), + [anon_sym_required] = ACTIONS(4751), + [anon_sym_public] = ACTIONS(4751), + [anon_sym_private] = ACTIONS(4751), + [anon_sym_internal] = ACTIONS(4751), + [anon_sym_fileprivate] = ACTIONS(4751), + [anon_sym_open] = ACTIONS(4751), + [anon_sym_mutating] = ACTIONS(4751), + [anon_sym_nonmutating] = ACTIONS(4751), + [anon_sym_static] = ACTIONS(4751), + [anon_sym_dynamic] = ACTIONS(4751), + [anon_sym_optional] = ACTIONS(4751), + [anon_sym_final] = ACTIONS(4751), + [anon_sym_inout] = ACTIONS(4751), + [anon_sym_ATescaping] = ACTIONS(4749), + [anon_sym_ATautoclosure] = ACTIONS(4749), + [anon_sym_weak] = ACTIONS(4751), + [anon_sym_unowned] = ACTIONS(4751), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4749), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4749), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4749), + [sym__three_dot_operator_custom] = ACTIONS(4749), + [sym__open_ended_range_operator_custom] = ACTIONS(4749), + [sym__conjunction_operator_custom] = ACTIONS(4749), + [sym__disjunction_operator_custom] = ACTIONS(4749), + [sym__nil_coalescing_operator_custom] = ACTIONS(4749), + [sym__eq_eq_custom] = ACTIONS(4749), + [sym__plus_then_ws] = ACTIONS(4749), + [sym__minus_then_ws] = ACTIONS(4749), + [sym_bang] = ACTIONS(4749), + [sym__as_custom] = ACTIONS(4749), + [sym__as_quest_custom] = ACTIONS(4749), + [sym__as_bang_custom] = ACTIONS(4749), + }, + [1143] = { + [sym_simple_identifier] = STATE(9855), + [aux_sym_call_suffix_repeat1] = STATE(1143), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4753), + [aux_sym_simple_identifier_token2] = ACTIONS(4756), + [aux_sym_simple_identifier_token3] = ACTIONS(4756), + [aux_sym_simple_identifier_token4] = ACTIONS(4756), + [anon_sym_COMMA] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4759), + [anon_sym_LBRACK] = ACTIONS(4759), + [anon_sym_QMARK] = ACTIONS(4761), + [sym__immediate_quest] = ACTIONS(4761), + [anon_sym_AMP] = ACTIONS(4761), + [anon_sym_async] = ACTIONS(4761), + [aux_sym_custom_operator_token1] = ACTIONS(4761), + [anon_sym_LT] = ACTIONS(4761), + [anon_sym_GT] = ACTIONS(4761), + [anon_sym_LBRACE] = ACTIONS(4759), + [anon_sym_RBRACE] = ACTIONS(4759), + [anon_sym_case] = ACTIONS(4761), + [anon_sym_PLUS_EQ] = ACTIONS(4761), + [anon_sym_DASH_EQ] = ACTIONS(4761), + [anon_sym_STAR_EQ] = ACTIONS(4761), + [anon_sym_SLASH_EQ] = ACTIONS(4761), + [anon_sym_PERCENT_EQ] = ACTIONS(4761), + [anon_sym_EQ] = ACTIONS(4761), + [anon_sym_BANG_EQ] = ACTIONS(4761), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4761), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4761), + [anon_sym_LT_EQ] = ACTIONS(4761), + [anon_sym_GT_EQ] = ACTIONS(4761), + [anon_sym_is] = ACTIONS(4761), + [anon_sym_PLUS] = ACTIONS(4761), + [anon_sym_DASH] = ACTIONS(4761), + [anon_sym_STAR] = ACTIONS(4761), + [anon_sym_SLASH] = ACTIONS(4761), + [anon_sym_PERCENT] = ACTIONS(4761), + [anon_sym_PLUS_PLUS] = ACTIONS(4761), + [anon_sym_DASH_DASH] = ACTIONS(4761), + [anon_sym_PIPE] = ACTIONS(4761), + [anon_sym_CARET] = ACTIONS(4761), + [anon_sym_LT_LT] = ACTIONS(4761), + [anon_sym_GT_GT] = ACTIONS(4761), + [anon_sym_import] = ACTIONS(4761), + [anon_sym_typealias] = ACTIONS(4761), + [anon_sym_struct] = ACTIONS(4761), + [anon_sym_class] = ACTIONS(4761), + [anon_sym_enum] = ACTIONS(4761), + [anon_sym_protocol] = ACTIONS(4761), + [anon_sym_let] = ACTIONS(4761), + [anon_sym_var] = ACTIONS(4761), + [anon_sym_func] = ACTIONS(4761), + [anon_sym_extension] = ACTIONS(4761), + [anon_sym_indirect] = ACTIONS(4761), + [anon_sym_init] = ACTIONS(4761), + [anon_sym_SEMI] = ACTIONS(4759), + [anon_sym_deinit] = ACTIONS(4761), + [anon_sym_subscript] = ACTIONS(4761), + [anon_sym_prefix] = ACTIONS(4761), + [anon_sym_infix] = ACTIONS(4761), + [anon_sym_postfix] = ACTIONS(4761), + [anon_sym_precedencegroup] = ACTIONS(4761), + [anon_sym_associatedtype] = ACTIONS(4761), + [anon_sym_AT] = ACTIONS(4761), + [sym_property_behavior_modifier] = ACTIONS(4761), + [anon_sym_override] = ACTIONS(4761), + [anon_sym_convenience] = ACTIONS(4761), + [anon_sym_required] = ACTIONS(4761), + [anon_sym_public] = ACTIONS(4761), + [anon_sym_private] = ACTIONS(4761), + [anon_sym_internal] = ACTIONS(4761), + [anon_sym_fileprivate] = ACTIONS(4761), + [anon_sym_open] = ACTIONS(4761), + [anon_sym_mutating] = ACTIONS(4761), + [anon_sym_nonmutating] = ACTIONS(4761), + [anon_sym_static] = ACTIONS(4761), + [anon_sym_dynamic] = ACTIONS(4761), + [anon_sym_optional] = ACTIONS(4761), + [anon_sym_final] = ACTIONS(4761), + [anon_sym_inout] = ACTIONS(4761), + [anon_sym_ATescaping] = ACTIONS(4759), + [anon_sym_ATautoclosure] = ACTIONS(4759), + [anon_sym_weak] = ACTIONS(4761), + [anon_sym_unowned] = ACTIONS(4761), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4759), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4759), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4759), + [sym__three_dot_operator_custom] = ACTIONS(4759), + [sym__open_ended_range_operator_custom] = ACTIONS(4759), + [sym__conjunction_operator_custom] = ACTIONS(4759), + [sym__disjunction_operator_custom] = ACTIONS(4759), + [sym__nil_coalescing_operator_custom] = ACTIONS(4759), + [sym__eq_eq_custom] = ACTIONS(4759), + [sym__plus_then_ws] = ACTIONS(4759), + [sym__minus_then_ws] = ACTIONS(4759), + [sym_bang] = ACTIONS(4759), + [sym__as_custom] = ACTIONS(4759), + [sym__as_quest_custom] = ACTIONS(4759), + [sym__as_bang_custom] = ACTIONS(4759), + }, + [1144] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(3531), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4763), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4769), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4777), + [anon_sym_RBRACE] = ACTIONS(4702), + [anon_sym_case] = ACTIONS(4702), + [anon_sym_fallthrough] = ACTIONS(4702), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4702), + [anon_sym_prefix] = ACTIONS(4702), + [anon_sym_infix] = ACTIONS(4702), + [anon_sym_postfix] = ACTIONS(4702), + [anon_sym_AT] = ACTIONS(4704), + [sym_property_behavior_modifier] = ACTIONS(4702), + [anon_sym_override] = ACTIONS(4702), + [anon_sym_convenience] = ACTIONS(4702), + [anon_sym_required] = ACTIONS(4702), + [anon_sym_public] = ACTIONS(4702), + [anon_sym_private] = ACTIONS(4702), + [anon_sym_internal] = ACTIONS(4702), + [anon_sym_fileprivate] = ACTIONS(4702), + [anon_sym_open] = ACTIONS(4702), + [anon_sym_mutating] = ACTIONS(4702), + [anon_sym_nonmutating] = ACTIONS(4702), + [anon_sym_static] = ACTIONS(4702), + [anon_sym_dynamic] = ACTIONS(4702), + [anon_sym_optional] = ACTIONS(4702), + [anon_sym_final] = ACTIONS(4702), + [anon_sym_inout] = ACTIONS(4702), + [anon_sym_ATescaping] = ACTIONS(4702), + [anon_sym_ATautoclosure] = ACTIONS(4702), + [anon_sym_weak] = ACTIONS(4702), + [anon_sym_unowned] = ACTIONS(4704), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4702), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4702), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4702), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4702), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1145] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1372), + [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(1430), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4580), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4586), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_RBRACE] = ACTIONS(4580), + [anon_sym_case] = ACTIONS(4580), + [anon_sym_fallthrough] = ACTIONS(4580), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4580), + [anon_sym_prefix] = ACTIONS(4580), + [anon_sym_infix] = ACTIONS(4580), + [anon_sym_postfix] = ACTIONS(4580), + [anon_sym_AT] = ACTIONS(4586), + [sym_property_behavior_modifier] = ACTIONS(4580), + [anon_sym_override] = ACTIONS(4580), + [anon_sym_convenience] = ACTIONS(4580), + [anon_sym_required] = ACTIONS(4580), + [anon_sym_public] = ACTIONS(4580), + [anon_sym_private] = ACTIONS(4580), + [anon_sym_internal] = ACTIONS(4580), + [anon_sym_fileprivate] = ACTIONS(4580), + [anon_sym_open] = ACTIONS(4580), + [anon_sym_mutating] = ACTIONS(4580), + [anon_sym_nonmutating] = ACTIONS(4580), + [anon_sym_static] = ACTIONS(4580), + [anon_sym_dynamic] = ACTIONS(4580), + [anon_sym_optional] = ACTIONS(4580), + [anon_sym_final] = ACTIONS(4580), + [anon_sym_inout] = ACTIONS(4580), + [anon_sym_ATescaping] = ACTIONS(4580), + [anon_sym_ATautoclosure] = ACTIONS(4580), + [anon_sym_weak] = ACTIONS(4580), + [anon_sym_unowned] = ACTIONS(4586), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4580), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4580), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4580), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4580), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1146] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1372), + [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(1430), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4626), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_RBRACE] = ACTIONS(4624), + [anon_sym_case] = ACTIONS(4624), + [anon_sym_fallthrough] = ACTIONS(4624), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4624), + [anon_sym_prefix] = ACTIONS(4624), + [anon_sym_infix] = ACTIONS(4624), + [anon_sym_postfix] = ACTIONS(4624), + [anon_sym_AT] = ACTIONS(4626), + [sym_property_behavior_modifier] = ACTIONS(4624), + [anon_sym_override] = ACTIONS(4624), + [anon_sym_convenience] = ACTIONS(4624), + [anon_sym_required] = ACTIONS(4624), + [anon_sym_public] = ACTIONS(4624), + [anon_sym_private] = ACTIONS(4624), + [anon_sym_internal] = ACTIONS(4624), + [anon_sym_fileprivate] = ACTIONS(4624), + [anon_sym_open] = ACTIONS(4624), + [anon_sym_mutating] = ACTIONS(4624), + [anon_sym_nonmutating] = ACTIONS(4624), + [anon_sym_static] = ACTIONS(4624), + [anon_sym_dynamic] = ACTIONS(4624), + [anon_sym_optional] = ACTIONS(4624), + [anon_sym_final] = ACTIONS(4624), + [anon_sym_inout] = ACTIONS(4624), + [anon_sym_ATescaping] = ACTIONS(4624), + [anon_sym_ATautoclosure] = ACTIONS(4624), + [anon_sym_weak] = ACTIONS(4624), + [anon_sym_unowned] = ACTIONS(4626), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4624), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4624), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4624), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4624), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1147] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(3573), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4763), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4769), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4777), + [anon_sym_RBRACE] = ACTIONS(4658), + [anon_sym_case] = ACTIONS(4658), + [anon_sym_fallthrough] = ACTIONS(4658), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4658), + [anon_sym_prefix] = ACTIONS(4658), + [anon_sym_infix] = ACTIONS(4658), + [anon_sym_postfix] = ACTIONS(4658), + [anon_sym_AT] = ACTIONS(4660), + [sym_property_behavior_modifier] = ACTIONS(4658), + [anon_sym_override] = ACTIONS(4658), + [anon_sym_convenience] = ACTIONS(4658), + [anon_sym_required] = ACTIONS(4658), + [anon_sym_public] = ACTIONS(4658), + [anon_sym_private] = ACTIONS(4658), + [anon_sym_internal] = ACTIONS(4658), + [anon_sym_fileprivate] = ACTIONS(4658), + [anon_sym_open] = ACTIONS(4658), + [anon_sym_mutating] = ACTIONS(4658), + [anon_sym_nonmutating] = ACTIONS(4658), + [anon_sym_static] = ACTIONS(4658), + [anon_sym_dynamic] = ACTIONS(4658), + [anon_sym_optional] = ACTIONS(4658), + [anon_sym_final] = ACTIONS(4658), + [anon_sym_inout] = ACTIONS(4658), + [anon_sym_ATescaping] = ACTIONS(4658), + [anon_sym_ATautoclosure] = ACTIONS(4658), + [anon_sym_weak] = ACTIONS(4658), + [anon_sym_unowned] = ACTIONS(4660), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4658), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4658), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4658), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4658), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1148] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(3554), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4763), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4769), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4777), + [anon_sym_RBRACE] = ACTIONS(4666), + [anon_sym_case] = ACTIONS(4666), + [anon_sym_fallthrough] = ACTIONS(4666), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4666), + [anon_sym_prefix] = ACTIONS(4666), + [anon_sym_infix] = ACTIONS(4666), + [anon_sym_postfix] = ACTIONS(4666), + [anon_sym_AT] = ACTIONS(4668), + [sym_property_behavior_modifier] = ACTIONS(4666), + [anon_sym_override] = ACTIONS(4666), + [anon_sym_convenience] = ACTIONS(4666), + [anon_sym_required] = ACTIONS(4666), + [anon_sym_public] = ACTIONS(4666), + [anon_sym_private] = ACTIONS(4666), + [anon_sym_internal] = ACTIONS(4666), + [anon_sym_fileprivate] = ACTIONS(4666), + [anon_sym_open] = ACTIONS(4666), + [anon_sym_mutating] = ACTIONS(4666), + [anon_sym_nonmutating] = ACTIONS(4666), + [anon_sym_static] = ACTIONS(4666), + [anon_sym_dynamic] = ACTIONS(4666), + [anon_sym_optional] = ACTIONS(4666), + [anon_sym_final] = ACTIONS(4666), + [anon_sym_inout] = ACTIONS(4666), + [anon_sym_ATescaping] = ACTIONS(4666), + [anon_sym_ATautoclosure] = ACTIONS(4666), + [anon_sym_weak] = ACTIONS(4666), + [anon_sym_unowned] = ACTIONS(4668), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4666), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4666), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4666), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4666), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1149] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(3522), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4763), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4769), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4777), + [anon_sym_RBRACE] = ACTIONS(4636), + [anon_sym_case] = ACTIONS(4636), + [anon_sym_fallthrough] = ACTIONS(4636), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4636), + [anon_sym_prefix] = ACTIONS(4636), + [anon_sym_infix] = ACTIONS(4636), + [anon_sym_postfix] = ACTIONS(4636), + [anon_sym_AT] = ACTIONS(4640), + [sym_property_behavior_modifier] = ACTIONS(4636), + [anon_sym_override] = ACTIONS(4636), + [anon_sym_convenience] = ACTIONS(4636), + [anon_sym_required] = ACTIONS(4636), + [anon_sym_public] = ACTIONS(4636), + [anon_sym_private] = ACTIONS(4636), + [anon_sym_internal] = ACTIONS(4636), + [anon_sym_fileprivate] = ACTIONS(4636), + [anon_sym_open] = ACTIONS(4636), + [anon_sym_mutating] = ACTIONS(4636), + [anon_sym_nonmutating] = ACTIONS(4636), + [anon_sym_static] = ACTIONS(4636), + [anon_sym_dynamic] = ACTIONS(4636), + [anon_sym_optional] = ACTIONS(4636), + [anon_sym_final] = ACTIONS(4636), + [anon_sym_inout] = ACTIONS(4636), + [anon_sym_ATescaping] = ACTIONS(4636), + [anon_sym_ATautoclosure] = ACTIONS(4636), + [anon_sym_weak] = ACTIONS(4636), + [anon_sym_unowned] = ACTIONS(4640), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4636), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4636), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4636), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4636), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1150] = { + [sym_simple_identifier] = STATE(9855), + [aux_sym_call_suffix_repeat1] = STATE(1143), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4745), + [aux_sym_simple_identifier_token2] = ACTIONS(4747), + [aux_sym_simple_identifier_token3] = ACTIONS(4747), + [aux_sym_simple_identifier_token4] = ACTIONS(4747), + [anon_sym_COMMA] = ACTIONS(4805), + [anon_sym_LPAREN] = ACTIONS(4805), + [anon_sym_LBRACK] = ACTIONS(4805), + [anon_sym_QMARK] = ACTIONS(4807), + [sym__immediate_quest] = ACTIONS(4807), + [anon_sym_AMP] = ACTIONS(4807), + [anon_sym_async] = ACTIONS(4807), + [aux_sym_custom_operator_token1] = ACTIONS(4807), + [anon_sym_LT] = ACTIONS(4807), + [anon_sym_GT] = ACTIONS(4807), + [anon_sym_LBRACE] = ACTIONS(4805), + [anon_sym_RBRACE] = ACTIONS(4805), + [anon_sym_case] = ACTIONS(4807), + [anon_sym_PLUS_EQ] = ACTIONS(4807), + [anon_sym_DASH_EQ] = ACTIONS(4807), + [anon_sym_STAR_EQ] = ACTIONS(4807), + [anon_sym_SLASH_EQ] = ACTIONS(4807), + [anon_sym_PERCENT_EQ] = ACTIONS(4807), + [anon_sym_EQ] = ACTIONS(4807), + [anon_sym_BANG_EQ] = ACTIONS(4807), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4807), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4807), + [anon_sym_LT_EQ] = ACTIONS(4807), + [anon_sym_GT_EQ] = ACTIONS(4807), + [anon_sym_is] = ACTIONS(4807), + [anon_sym_PLUS] = ACTIONS(4807), + [anon_sym_DASH] = ACTIONS(4807), + [anon_sym_STAR] = ACTIONS(4807), + [anon_sym_SLASH] = ACTIONS(4807), + [anon_sym_PERCENT] = ACTIONS(4807), + [anon_sym_PLUS_PLUS] = ACTIONS(4807), + [anon_sym_DASH_DASH] = ACTIONS(4807), + [anon_sym_PIPE] = ACTIONS(4807), + [anon_sym_CARET] = ACTIONS(4807), + [anon_sym_LT_LT] = ACTIONS(4807), + [anon_sym_GT_GT] = ACTIONS(4807), + [anon_sym_import] = ACTIONS(4807), + [anon_sym_typealias] = ACTIONS(4807), + [anon_sym_struct] = ACTIONS(4807), + [anon_sym_class] = ACTIONS(4807), + [anon_sym_enum] = ACTIONS(4807), + [anon_sym_protocol] = ACTIONS(4807), + [anon_sym_let] = ACTIONS(4807), + [anon_sym_var] = ACTIONS(4807), + [anon_sym_func] = ACTIONS(4807), + [anon_sym_extension] = ACTIONS(4807), + [anon_sym_indirect] = ACTIONS(4807), + [anon_sym_init] = ACTIONS(4807), + [anon_sym_SEMI] = ACTIONS(4805), + [anon_sym_deinit] = ACTIONS(4807), + [anon_sym_subscript] = ACTIONS(4807), + [anon_sym_prefix] = ACTIONS(4807), + [anon_sym_infix] = ACTIONS(4807), + [anon_sym_postfix] = ACTIONS(4807), + [anon_sym_precedencegroup] = ACTIONS(4807), + [anon_sym_associatedtype] = ACTIONS(4807), + [anon_sym_AT] = ACTIONS(4807), + [sym_property_behavior_modifier] = ACTIONS(4807), + [anon_sym_override] = ACTIONS(4807), + [anon_sym_convenience] = ACTIONS(4807), + [anon_sym_required] = ACTIONS(4807), + [anon_sym_public] = ACTIONS(4807), + [anon_sym_private] = ACTIONS(4807), + [anon_sym_internal] = ACTIONS(4807), + [anon_sym_fileprivate] = ACTIONS(4807), + [anon_sym_open] = ACTIONS(4807), + [anon_sym_mutating] = ACTIONS(4807), + [anon_sym_nonmutating] = ACTIONS(4807), + [anon_sym_static] = ACTIONS(4807), + [anon_sym_dynamic] = ACTIONS(4807), + [anon_sym_optional] = ACTIONS(4807), + [anon_sym_final] = ACTIONS(4807), + [anon_sym_inout] = ACTIONS(4807), + [anon_sym_ATescaping] = ACTIONS(4805), + [anon_sym_ATautoclosure] = ACTIONS(4805), + [anon_sym_weak] = ACTIONS(4807), + [anon_sym_unowned] = ACTIONS(4807), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4805), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4805), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4805), + [sym__three_dot_operator_custom] = ACTIONS(4805), + [sym__open_ended_range_operator_custom] = ACTIONS(4805), + [sym__conjunction_operator_custom] = ACTIONS(4805), + [sym__disjunction_operator_custom] = ACTIONS(4805), + [sym__nil_coalescing_operator_custom] = ACTIONS(4805), + [sym__eq_eq_custom] = ACTIONS(4805), + [sym__plus_then_ws] = ACTIONS(4805), + [sym__minus_then_ws] = ACTIONS(4805), + [sym_bang] = ACTIONS(4805), + [sym__as_custom] = ACTIONS(4805), + [sym__as_quest_custom] = ACTIONS(4805), + [sym__as_bang_custom] = ACTIONS(4805), + }, + [1151] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(3518), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4763), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4769), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4777), + [anon_sym_RBRACE] = ACTIONS(4710), + [anon_sym_case] = ACTIONS(4710), + [anon_sym_fallthrough] = ACTIONS(4710), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4710), + [anon_sym_prefix] = ACTIONS(4710), + [anon_sym_infix] = ACTIONS(4710), + [anon_sym_postfix] = ACTIONS(4710), + [anon_sym_AT] = ACTIONS(4712), + [sym_property_behavior_modifier] = ACTIONS(4710), + [anon_sym_override] = ACTIONS(4710), + [anon_sym_convenience] = ACTIONS(4710), + [anon_sym_required] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(4710), + [anon_sym_private] = ACTIONS(4710), + [anon_sym_internal] = ACTIONS(4710), + [anon_sym_fileprivate] = ACTIONS(4710), + [anon_sym_open] = ACTIONS(4710), + [anon_sym_mutating] = ACTIONS(4710), + [anon_sym_nonmutating] = ACTIONS(4710), + [anon_sym_static] = ACTIONS(4710), + [anon_sym_dynamic] = ACTIONS(4710), + [anon_sym_optional] = ACTIONS(4710), + [anon_sym_final] = ACTIONS(4710), + [anon_sym_inout] = ACTIONS(4710), + [anon_sym_ATescaping] = ACTIONS(4710), + [anon_sym_ATautoclosure] = ACTIONS(4710), + [anon_sym_weak] = ACTIONS(4710), + [anon_sym_unowned] = ACTIONS(4712), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4710), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4710), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4710), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4710), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1152] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(3527), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4763), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4769), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4777), + [anon_sym_RBRACE] = ACTIONS(4714), + [anon_sym_case] = ACTIONS(4714), + [anon_sym_fallthrough] = ACTIONS(4714), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4714), + [anon_sym_prefix] = ACTIONS(4714), + [anon_sym_infix] = ACTIONS(4714), + [anon_sym_postfix] = ACTIONS(4714), + [anon_sym_AT] = ACTIONS(4716), + [sym_property_behavior_modifier] = ACTIONS(4714), + [anon_sym_override] = ACTIONS(4714), + [anon_sym_convenience] = ACTIONS(4714), + [anon_sym_required] = ACTIONS(4714), + [anon_sym_public] = ACTIONS(4714), + [anon_sym_private] = ACTIONS(4714), + [anon_sym_internal] = ACTIONS(4714), + [anon_sym_fileprivate] = ACTIONS(4714), + [anon_sym_open] = ACTIONS(4714), + [anon_sym_mutating] = ACTIONS(4714), + [anon_sym_nonmutating] = ACTIONS(4714), + [anon_sym_static] = ACTIONS(4714), + [anon_sym_dynamic] = ACTIONS(4714), + [anon_sym_optional] = ACTIONS(4714), + [anon_sym_final] = ACTIONS(4714), + [anon_sym_inout] = ACTIONS(4714), + [anon_sym_ATescaping] = ACTIONS(4714), + [anon_sym_ATautoclosure] = ACTIONS(4714), + [anon_sym_weak] = ACTIONS(4714), + [anon_sym_unowned] = ACTIONS(4716), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4714), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4714), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4714), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4714), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1153] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_QMARK] = ACTIONS(4676), + [sym__immediate_quest] = ACTIONS(4676), + [anon_sym_AMP] = ACTIONS(4676), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(4674), + [anon_sym_case] = ACTIONS(4674), + [anon_sym_fallthrough] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4676), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_is] = ACTIONS(4674), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4676), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4676), + [anon_sym_LT_LT] = ACTIONS(4676), + [anon_sym_GT_GT] = ACTIONS(4676), + [anon_sym_class] = ACTIONS(4674), + [anon_sym_prefix] = ACTIONS(4674), + [anon_sym_infix] = ACTIONS(4674), + [anon_sym_postfix] = ACTIONS(4674), + [anon_sym_AT] = ACTIONS(4676), + [sym_property_behavior_modifier] = ACTIONS(4674), + [anon_sym_override] = ACTIONS(4674), + [anon_sym_convenience] = ACTIONS(4674), + [anon_sym_required] = ACTIONS(4674), + [anon_sym_public] = ACTIONS(4674), + [anon_sym_private] = ACTIONS(4674), + [anon_sym_internal] = ACTIONS(4674), + [anon_sym_fileprivate] = ACTIONS(4674), + [anon_sym_open] = ACTIONS(4674), + [anon_sym_mutating] = ACTIONS(4674), + [anon_sym_nonmutating] = ACTIONS(4674), + [anon_sym_static] = ACTIONS(4674), + [anon_sym_dynamic] = ACTIONS(4674), + [anon_sym_optional] = ACTIONS(4674), + [anon_sym_final] = ACTIONS(4674), + [anon_sym_inout] = ACTIONS(4674), + [anon_sym_ATescaping] = ACTIONS(4674), + [anon_sym_ATautoclosure] = ACTIONS(4674), + [anon_sym_weak] = ACTIONS(4674), + [anon_sym_unowned] = ACTIONS(4676), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4674), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4674), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4674), + [sym__dot_custom] = ACTIONS(4674), + [sym__three_dot_operator_custom] = ACTIONS(4674), + [sym__open_ended_range_operator_custom] = ACTIONS(4674), + [sym__conjunction_operator_custom] = ACTIONS(4674), + [sym__disjunction_operator_custom] = ACTIONS(4674), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4674), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4674), + [sym_default_keyword] = ACTIONS(4674), + [sym__as_custom] = ACTIONS(4674), + [sym__as_quest_custom] = ACTIONS(4674), + [sym__as_bang_custom] = ACTIONS(4674), + }, + [1154] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(4628), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_QMARK] = ACTIONS(4630), + [sym__immediate_quest] = ACTIONS(4630), + [anon_sym_AMP] = ACTIONS(4630), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_RBRACE] = ACTIONS(4628), + [anon_sym_case] = ACTIONS(4628), + [anon_sym_fallthrough] = ACTIONS(4628), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4630), + [anon_sym_GT_EQ] = ACTIONS(4630), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_CARET] = ACTIONS(4630), + [anon_sym_LT_LT] = ACTIONS(4630), + [anon_sym_GT_GT] = ACTIONS(4630), + [anon_sym_class] = ACTIONS(4628), + [anon_sym_prefix] = ACTIONS(4628), + [anon_sym_infix] = ACTIONS(4628), + [anon_sym_postfix] = ACTIONS(4628), + [anon_sym_AT] = ACTIONS(4630), + [sym_property_behavior_modifier] = ACTIONS(4628), + [anon_sym_override] = ACTIONS(4628), + [anon_sym_convenience] = ACTIONS(4628), + [anon_sym_required] = ACTIONS(4628), + [anon_sym_public] = ACTIONS(4628), + [anon_sym_private] = ACTIONS(4628), + [anon_sym_internal] = ACTIONS(4628), + [anon_sym_fileprivate] = ACTIONS(4628), + [anon_sym_open] = ACTIONS(4628), + [anon_sym_mutating] = ACTIONS(4628), + [anon_sym_nonmutating] = ACTIONS(4628), + [anon_sym_static] = ACTIONS(4628), + [anon_sym_dynamic] = ACTIONS(4628), + [anon_sym_optional] = ACTIONS(4628), + [anon_sym_final] = ACTIONS(4628), + [anon_sym_inout] = ACTIONS(4628), + [anon_sym_ATescaping] = ACTIONS(4628), + [anon_sym_ATautoclosure] = ACTIONS(4628), + [anon_sym_weak] = ACTIONS(4628), + [anon_sym_unowned] = ACTIONS(4630), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4628), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4628), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4628), + [sym__dot_custom] = ACTIONS(4628), + [sym__three_dot_operator_custom] = ACTIONS(4628), + [sym__open_ended_range_operator_custom] = ACTIONS(4628), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4628), + [sym__as_custom] = ACTIONS(4628), + [sym__as_quest_custom] = ACTIONS(4628), + [sym__as_bang_custom] = ACTIONS(4628), + }, + [1155] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4769), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4777), + [anon_sym_RBRACE] = ACTIONS(4698), + [anon_sym_case] = ACTIONS(4698), + [anon_sym_fallthrough] = ACTIONS(4698), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4698), + [anon_sym_prefix] = ACTIONS(4698), + [anon_sym_infix] = ACTIONS(4698), + [anon_sym_postfix] = ACTIONS(4698), + [anon_sym_AT] = ACTIONS(4700), + [sym_property_behavior_modifier] = ACTIONS(4698), + [anon_sym_override] = ACTIONS(4698), + [anon_sym_convenience] = ACTIONS(4698), + [anon_sym_required] = ACTIONS(4698), + [anon_sym_public] = ACTIONS(4698), + [anon_sym_private] = ACTIONS(4698), + [anon_sym_internal] = ACTIONS(4698), + [anon_sym_fileprivate] = ACTIONS(4698), + [anon_sym_open] = ACTIONS(4698), + [anon_sym_mutating] = ACTIONS(4698), + [anon_sym_nonmutating] = ACTIONS(4698), + [anon_sym_static] = ACTIONS(4698), + [anon_sym_dynamic] = ACTIONS(4698), + [anon_sym_optional] = ACTIONS(4698), + [anon_sym_final] = ACTIONS(4698), + [anon_sym_inout] = ACTIONS(4698), + [anon_sym_ATescaping] = ACTIONS(4698), + [anon_sym_ATautoclosure] = ACTIONS(4698), + [anon_sym_weak] = ACTIONS(4698), + [anon_sym_unowned] = ACTIONS(4700), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4698), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4698), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4698), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4698), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1156] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4809), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4769), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4777), + [anon_sym_RBRACE] = ACTIONS(4809), + [anon_sym_case] = ACTIONS(4809), + [anon_sym_fallthrough] = ACTIONS(4809), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4809), + [anon_sym_prefix] = ACTIONS(4809), + [anon_sym_infix] = ACTIONS(4809), + [anon_sym_postfix] = ACTIONS(4809), + [anon_sym_AT] = ACTIONS(4811), + [sym_property_behavior_modifier] = ACTIONS(4809), + [anon_sym_override] = ACTIONS(4809), + [anon_sym_convenience] = ACTIONS(4809), + [anon_sym_required] = ACTIONS(4809), + [anon_sym_public] = ACTIONS(4809), + [anon_sym_private] = ACTIONS(4809), + [anon_sym_internal] = ACTIONS(4809), + [anon_sym_fileprivate] = ACTIONS(4809), + [anon_sym_open] = ACTIONS(4809), + [anon_sym_mutating] = ACTIONS(4809), + [anon_sym_nonmutating] = ACTIONS(4809), + [anon_sym_static] = ACTIONS(4809), + [anon_sym_dynamic] = ACTIONS(4809), + [anon_sym_optional] = ACTIONS(4809), + [anon_sym_final] = ACTIONS(4809), + [anon_sym_inout] = ACTIONS(4809), + [anon_sym_ATescaping] = ACTIONS(4809), + [anon_sym_ATautoclosure] = ACTIONS(4809), + [anon_sym_weak] = ACTIONS(4809), + [anon_sym_unowned] = ACTIONS(4811), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4809), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4809), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4809), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4809), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1157] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4726), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4769), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4777), + [anon_sym_RBRACE] = ACTIONS(4726), + [anon_sym_case] = ACTIONS(4726), + [anon_sym_fallthrough] = ACTIONS(4726), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4726), + [anon_sym_prefix] = ACTIONS(4726), + [anon_sym_infix] = ACTIONS(4726), + [anon_sym_postfix] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [sym_property_behavior_modifier] = ACTIONS(4726), + [anon_sym_override] = ACTIONS(4726), + [anon_sym_convenience] = ACTIONS(4726), + [anon_sym_required] = ACTIONS(4726), + [anon_sym_public] = ACTIONS(4726), + [anon_sym_private] = ACTIONS(4726), + [anon_sym_internal] = ACTIONS(4726), + [anon_sym_fileprivate] = ACTIONS(4726), + [anon_sym_open] = ACTIONS(4726), + [anon_sym_mutating] = ACTIONS(4726), + [anon_sym_nonmutating] = ACTIONS(4726), + [anon_sym_static] = ACTIONS(4726), + [anon_sym_dynamic] = ACTIONS(4726), + [anon_sym_optional] = ACTIONS(4726), + [anon_sym_final] = ACTIONS(4726), + [anon_sym_inout] = ACTIONS(4726), + [anon_sym_ATescaping] = ACTIONS(4726), + [anon_sym_ATautoclosure] = ACTIONS(4726), + [anon_sym_weak] = ACTIONS(4726), + [anon_sym_unowned] = ACTIONS(4728), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4726), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4726), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4726), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4726), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1158] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_QMARK] = ACTIONS(4664), + [sym__immediate_quest] = ACTIONS(4664), + [anon_sym_AMP] = ACTIONS(4664), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4664), + [anon_sym_GT] = ACTIONS(4664), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_case] = ACTIONS(4662), + [anon_sym_fallthrough] = ACTIONS(4662), + [anon_sym_BANG_EQ] = ACTIONS(4664), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), + [anon_sym_LT_EQ] = ACTIONS(4664), + [anon_sym_GT_EQ] = ACTIONS(4664), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4664), + [anon_sym_CARET] = ACTIONS(4664), + [anon_sym_LT_LT] = ACTIONS(4664), + [anon_sym_GT_GT] = ACTIONS(4664), + [anon_sym_class] = ACTIONS(4662), + [anon_sym_prefix] = ACTIONS(4662), + [anon_sym_infix] = ACTIONS(4662), + [anon_sym_postfix] = ACTIONS(4662), + [anon_sym_AT] = ACTIONS(4664), + [sym_property_behavior_modifier] = ACTIONS(4662), + [anon_sym_override] = ACTIONS(4662), + [anon_sym_convenience] = ACTIONS(4662), + [anon_sym_required] = ACTIONS(4662), + [anon_sym_public] = ACTIONS(4662), + [anon_sym_private] = ACTIONS(4662), + [anon_sym_internal] = ACTIONS(4662), + [anon_sym_fileprivate] = ACTIONS(4662), + [anon_sym_open] = ACTIONS(4662), + [anon_sym_mutating] = ACTIONS(4662), + [anon_sym_nonmutating] = ACTIONS(4662), + [anon_sym_static] = ACTIONS(4662), + [anon_sym_dynamic] = ACTIONS(4662), + [anon_sym_optional] = ACTIONS(4662), + [anon_sym_final] = ACTIONS(4662), + [anon_sym_inout] = ACTIONS(4662), + [anon_sym_ATescaping] = ACTIONS(4662), + [anon_sym_ATautoclosure] = ACTIONS(4662), + [anon_sym_weak] = ACTIONS(4662), + [anon_sym_unowned] = ACTIONS(4664), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4662), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4662), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4662), + [sym__dot_custom] = ACTIONS(4662), + [sym__three_dot_operator_custom] = ACTIONS(4662), + [sym__open_ended_range_operator_custom] = ACTIONS(4662), + [sym__conjunction_operator_custom] = ACTIONS(4662), + [sym__disjunction_operator_custom] = ACTIONS(4662), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4662), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4662), + [sym__as_custom] = ACTIONS(4662), + [sym__as_quest_custom] = ACTIONS(4662), + [sym__as_bang_custom] = ACTIONS(4662), + }, + [1159] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_QMARK] = ACTIONS(4656), + [sym__immediate_quest] = ACTIONS(4656), + [anon_sym_AMP] = ACTIONS(4656), + [aux_sym_custom_operator_token1] = ACTIONS(4656), + [anon_sym_LT] = ACTIONS(4656), + [anon_sym_GT] = ACTIONS(4656), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_case] = ACTIONS(4654), + [anon_sym_fallthrough] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4656), + [anon_sym_GT_EQ] = ACTIONS(4656), + [anon_sym_is] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4656), + [anon_sym_DASH_DASH] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4656), + [anon_sym_CARET] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [anon_sym_class] = ACTIONS(4654), + [anon_sym_prefix] = ACTIONS(4654), + [anon_sym_infix] = ACTIONS(4654), + [anon_sym_postfix] = ACTIONS(4654), + [anon_sym_AT] = ACTIONS(4656), + [sym_property_behavior_modifier] = ACTIONS(4654), + [anon_sym_override] = ACTIONS(4654), + [anon_sym_convenience] = ACTIONS(4654), + [anon_sym_required] = ACTIONS(4654), + [anon_sym_public] = ACTIONS(4654), + [anon_sym_private] = ACTIONS(4654), + [anon_sym_internal] = ACTIONS(4654), + [anon_sym_fileprivate] = ACTIONS(4654), + [anon_sym_open] = ACTIONS(4654), + [anon_sym_mutating] = ACTIONS(4654), + [anon_sym_nonmutating] = ACTIONS(4654), + [anon_sym_static] = ACTIONS(4654), + [anon_sym_dynamic] = ACTIONS(4654), + [anon_sym_optional] = ACTIONS(4654), + [anon_sym_final] = ACTIONS(4654), + [anon_sym_inout] = ACTIONS(4654), + [anon_sym_ATescaping] = ACTIONS(4654), + [anon_sym_ATautoclosure] = ACTIONS(4654), + [anon_sym_weak] = ACTIONS(4654), + [anon_sym_unowned] = ACTIONS(4656), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4654), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4654), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4654), + [sym__dot_custom] = ACTIONS(4654), + [sym__three_dot_operator_custom] = ACTIONS(4654), + [sym__open_ended_range_operator_custom] = ACTIONS(4654), + [sym__conjunction_operator_custom] = ACTIONS(4654), + [sym__disjunction_operator_custom] = ACTIONS(4654), + [sym__nil_coalescing_operator_custom] = ACTIONS(4654), + [sym__eq_eq_custom] = ACTIONS(4654), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4654), + [sym_default_keyword] = ACTIONS(4654), + [sym__as_custom] = ACTIONS(4654), + [sym__as_quest_custom] = ACTIONS(4654), + [sym__as_bang_custom] = ACTIONS(4654), + }, + [1160] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4769), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4777), + [anon_sym_RBRACE] = ACTIONS(4718), + [anon_sym_case] = ACTIONS(4718), + [anon_sym_fallthrough] = ACTIONS(4718), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4718), + [anon_sym_prefix] = ACTIONS(4718), + [anon_sym_infix] = ACTIONS(4718), + [anon_sym_postfix] = ACTIONS(4718), + [anon_sym_AT] = ACTIONS(4720), + [sym_property_behavior_modifier] = ACTIONS(4718), + [anon_sym_override] = ACTIONS(4718), + [anon_sym_convenience] = ACTIONS(4718), + [anon_sym_required] = ACTIONS(4718), + [anon_sym_public] = ACTIONS(4718), + [anon_sym_private] = ACTIONS(4718), + [anon_sym_internal] = ACTIONS(4718), + [anon_sym_fileprivate] = ACTIONS(4718), + [anon_sym_open] = ACTIONS(4718), + [anon_sym_mutating] = ACTIONS(4718), + [anon_sym_nonmutating] = ACTIONS(4718), + [anon_sym_static] = ACTIONS(4718), + [anon_sym_dynamic] = ACTIONS(4718), + [anon_sym_optional] = ACTIONS(4718), + [anon_sym_final] = ACTIONS(4718), + [anon_sym_inout] = ACTIONS(4718), + [anon_sym_ATescaping] = ACTIONS(4718), + [anon_sym_ATautoclosure] = ACTIONS(4718), + [anon_sym_weak] = ACTIONS(4718), + [anon_sym_unowned] = ACTIONS(4720), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4718), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4718), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4718), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4718), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1161] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4813), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4769), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4777), + [anon_sym_RBRACE] = ACTIONS(4813), + [anon_sym_case] = ACTIONS(4813), + [anon_sym_fallthrough] = ACTIONS(4813), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4813), + [anon_sym_prefix] = ACTIONS(4813), + [anon_sym_infix] = ACTIONS(4813), + [anon_sym_postfix] = ACTIONS(4813), + [anon_sym_AT] = ACTIONS(4815), + [sym_property_behavior_modifier] = ACTIONS(4813), + [anon_sym_override] = ACTIONS(4813), + [anon_sym_convenience] = ACTIONS(4813), + [anon_sym_required] = ACTIONS(4813), + [anon_sym_public] = ACTIONS(4813), + [anon_sym_private] = ACTIONS(4813), + [anon_sym_internal] = ACTIONS(4813), + [anon_sym_fileprivate] = ACTIONS(4813), + [anon_sym_open] = ACTIONS(4813), + [anon_sym_mutating] = ACTIONS(4813), + [anon_sym_nonmutating] = ACTIONS(4813), + [anon_sym_static] = ACTIONS(4813), + [anon_sym_dynamic] = ACTIONS(4813), + [anon_sym_optional] = ACTIONS(4813), + [anon_sym_final] = ACTIONS(4813), + [anon_sym_inout] = ACTIONS(4813), + [anon_sym_ATescaping] = ACTIONS(4813), + [anon_sym_ATautoclosure] = ACTIONS(4813), + [anon_sym_weak] = ACTIONS(4813), + [anon_sym_unowned] = ACTIONS(4815), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4813), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4813), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4813), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4813), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1162] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4817), + [anon_sym_COMMA] = ACTIONS(4817), + [anon_sym_COLON] = ACTIONS(4817), + [anon_sym_BANG] = ACTIONS(4819), + [anon_sym_LPAREN] = ACTIONS(4817), + [anon_sym_LBRACK] = ACTIONS(4817), + [anon_sym_RBRACK] = ACTIONS(4817), + [anon_sym_DOT] = ACTIONS(4819), + [anon_sym_QMARK] = ACTIONS(4819), + [sym__immediate_quest] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4819), + [anon_sym_async] = ACTIONS(4817), + [aux_sym_custom_operator_token1] = ACTIONS(4819), + [anon_sym_LT] = ACTIONS(4819), + [anon_sym_GT] = ACTIONS(4819), + [anon_sym_LBRACE] = ACTIONS(4817), + [anon_sym_RBRACE] = ACTIONS(4817), + [anon_sym_case] = ACTIONS(4817), + [anon_sym_PLUS_EQ] = ACTIONS(4819), + [anon_sym_DASH_EQ] = ACTIONS(4819), + [anon_sym_STAR_EQ] = ACTIONS(4819), + [anon_sym_SLASH_EQ] = ACTIONS(4819), + [anon_sym_PERCENT_EQ] = ACTIONS(4819), + [anon_sym_EQ] = ACTIONS(4819), + [anon_sym_BANG_EQ] = ACTIONS(4819), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4819), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4819), + [anon_sym_LT_EQ] = ACTIONS(4819), + [anon_sym_GT_EQ] = ACTIONS(4819), + [anon_sym_is] = ACTIONS(4817), + [anon_sym_PLUS] = ACTIONS(4819), + [anon_sym_DASH] = ACTIONS(4819), + [anon_sym_STAR] = ACTIONS(4819), + [anon_sym_SLASH] = ACTIONS(4819), + [anon_sym_PERCENT] = ACTIONS(4819), + [anon_sym_PLUS_PLUS] = ACTIONS(4819), + [anon_sym_DASH_DASH] = ACTIONS(4819), + [anon_sym_PIPE] = ACTIONS(4819), + [anon_sym_CARET] = ACTIONS(4819), + [anon_sym_LT_LT] = ACTIONS(4819), + [anon_sym_GT_GT] = ACTIONS(4819), + [anon_sym_import] = ACTIONS(4817), + [anon_sym_typealias] = ACTIONS(4817), + [anon_sym_struct] = ACTIONS(4817), + [anon_sym_class] = ACTIONS(4817), + [anon_sym_enum] = ACTIONS(4817), + [anon_sym_protocol] = ACTIONS(4817), + [anon_sym_let] = ACTIONS(4817), + [anon_sym_var] = ACTIONS(4817), + [anon_sym_func] = ACTIONS(4817), + [anon_sym_extension] = ACTIONS(4817), + [anon_sym_indirect] = ACTIONS(4817), + [anon_sym_init] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_deinit] = ACTIONS(4817), + [anon_sym_subscript] = ACTIONS(4817), + [anon_sym_prefix] = ACTIONS(4817), + [anon_sym_infix] = ACTIONS(4817), + [anon_sym_postfix] = ACTIONS(4817), + [anon_sym_precedencegroup] = ACTIONS(4817), + [anon_sym_associatedtype] = ACTIONS(4817), + [anon_sym_AT] = ACTIONS(4819), + [sym_property_behavior_modifier] = ACTIONS(4817), + [anon_sym_override] = ACTIONS(4817), + [anon_sym_convenience] = ACTIONS(4817), + [anon_sym_required] = ACTIONS(4817), + [anon_sym_public] = ACTIONS(4817), + [anon_sym_private] = ACTIONS(4817), + [anon_sym_internal] = ACTIONS(4817), + [anon_sym_fileprivate] = ACTIONS(4817), + [anon_sym_open] = ACTIONS(4817), + [anon_sym_mutating] = ACTIONS(4817), + [anon_sym_nonmutating] = ACTIONS(4817), + [anon_sym_static] = ACTIONS(4817), + [anon_sym_dynamic] = ACTIONS(4817), + [anon_sym_optional] = ACTIONS(4817), + [anon_sym_final] = ACTIONS(4817), + [anon_sym_inout] = ACTIONS(4817), + [anon_sym_ATescaping] = ACTIONS(4817), + [anon_sym_ATautoclosure] = ACTIONS(4817), + [anon_sym_weak] = ACTIONS(4817), + [anon_sym_unowned] = ACTIONS(4819), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4817), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4817), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4817), + [sym__three_dot_operator_custom] = ACTIONS(4817), + [sym__open_ended_range_operator_custom] = ACTIONS(4817), + [sym__conjunction_operator_custom] = ACTIONS(4817), + [sym__disjunction_operator_custom] = ACTIONS(4817), + [sym__nil_coalescing_operator_custom] = ACTIONS(4817), + [sym__eq_eq_custom] = ACTIONS(4817), + [sym__plus_then_ws] = ACTIONS(4817), + [sym__minus_then_ws] = ACTIONS(4817), + [sym_bang] = ACTIONS(4817), + [sym__as_custom] = ACTIONS(4817), + [sym__as_quest_custom] = ACTIONS(4817), + [sym__as_bang_custom] = ACTIONS(4817), + }, + [1163] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_QMARK] = ACTIONS(4648), + [sym__immediate_quest] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4648), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_case] = ACTIONS(4646), + [anon_sym_fallthrough] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4648), + [anon_sym_is] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4648), + [anon_sym_LT_LT] = ACTIONS(4648), + [anon_sym_GT_GT] = ACTIONS(4648), + [anon_sym_class] = ACTIONS(4646), + [anon_sym_prefix] = ACTIONS(4646), + [anon_sym_infix] = ACTIONS(4646), + [anon_sym_postfix] = ACTIONS(4646), + [anon_sym_AT] = ACTIONS(4648), + [sym_property_behavior_modifier] = ACTIONS(4646), + [anon_sym_override] = ACTIONS(4646), + [anon_sym_convenience] = ACTIONS(4646), + [anon_sym_required] = ACTIONS(4646), + [anon_sym_public] = ACTIONS(4646), + [anon_sym_private] = ACTIONS(4646), + [anon_sym_internal] = ACTIONS(4646), + [anon_sym_fileprivate] = ACTIONS(4646), + [anon_sym_open] = ACTIONS(4646), + [anon_sym_mutating] = ACTIONS(4646), + [anon_sym_nonmutating] = ACTIONS(4646), + [anon_sym_static] = ACTIONS(4646), + [anon_sym_dynamic] = ACTIONS(4646), + [anon_sym_optional] = ACTIONS(4646), + [anon_sym_final] = ACTIONS(4646), + [anon_sym_inout] = ACTIONS(4646), + [anon_sym_ATescaping] = ACTIONS(4646), + [anon_sym_ATautoclosure] = ACTIONS(4646), + [anon_sym_weak] = ACTIONS(4646), + [anon_sym_unowned] = ACTIONS(4648), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4646), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4646), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4646), + [sym__dot_custom] = ACTIONS(4646), + [sym__three_dot_operator_custom] = ACTIONS(4646), + [sym__open_ended_range_operator_custom] = ACTIONS(4646), + [sym__conjunction_operator_custom] = ACTIONS(4646), + [sym__disjunction_operator_custom] = ACTIONS(4646), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4646), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4646), + [sym_default_keyword] = ACTIONS(4646), + [sym__as_custom] = ACTIONS(4646), + [sym__as_quest_custom] = ACTIONS(4646), + [sym__as_bang_custom] = ACTIONS(4646), + }, + [1164] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4650), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4769), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4777), + [anon_sym_RBRACE] = ACTIONS(4650), + [anon_sym_case] = ACTIONS(4650), + [anon_sym_fallthrough] = ACTIONS(4650), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4650), + [anon_sym_prefix] = ACTIONS(4650), + [anon_sym_infix] = ACTIONS(4650), + [anon_sym_postfix] = ACTIONS(4650), + [anon_sym_AT] = ACTIONS(4652), + [sym_property_behavior_modifier] = ACTIONS(4650), + [anon_sym_override] = ACTIONS(4650), + [anon_sym_convenience] = ACTIONS(4650), + [anon_sym_required] = ACTIONS(4650), + [anon_sym_public] = ACTIONS(4650), + [anon_sym_private] = ACTIONS(4650), + [anon_sym_internal] = ACTIONS(4650), + [anon_sym_fileprivate] = ACTIONS(4650), + [anon_sym_open] = ACTIONS(4650), + [anon_sym_mutating] = ACTIONS(4650), + [anon_sym_nonmutating] = ACTIONS(4650), + [anon_sym_static] = ACTIONS(4650), + [anon_sym_dynamic] = ACTIONS(4650), + [anon_sym_optional] = ACTIONS(4650), + [anon_sym_final] = ACTIONS(4650), + [anon_sym_inout] = ACTIONS(4650), + [anon_sym_ATescaping] = ACTIONS(4650), + [anon_sym_ATautoclosure] = ACTIONS(4650), + [anon_sym_weak] = ACTIONS(4650), + [anon_sym_unowned] = ACTIONS(4652), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4650), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4650), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4650), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4650), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1165] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4769), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4777), + [anon_sym_RBRACE] = ACTIONS(4722), + [anon_sym_case] = ACTIONS(4722), + [anon_sym_fallthrough] = ACTIONS(4722), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4722), + [anon_sym_prefix] = ACTIONS(4722), + [anon_sym_infix] = ACTIONS(4722), + [anon_sym_postfix] = ACTIONS(4722), + [anon_sym_AT] = ACTIONS(4724), + [sym_property_behavior_modifier] = ACTIONS(4722), + [anon_sym_override] = ACTIONS(4722), + [anon_sym_convenience] = ACTIONS(4722), + [anon_sym_required] = ACTIONS(4722), + [anon_sym_public] = ACTIONS(4722), + [anon_sym_private] = ACTIONS(4722), + [anon_sym_internal] = ACTIONS(4722), + [anon_sym_fileprivate] = ACTIONS(4722), + [anon_sym_open] = ACTIONS(4722), + [anon_sym_mutating] = ACTIONS(4722), + [anon_sym_nonmutating] = ACTIONS(4722), + [anon_sym_static] = ACTIONS(4722), + [anon_sym_dynamic] = ACTIONS(4722), + [anon_sym_optional] = ACTIONS(4722), + [anon_sym_final] = ACTIONS(4722), + [anon_sym_inout] = ACTIONS(4722), + [anon_sym_ATescaping] = ACTIONS(4722), + [anon_sym_ATautoclosure] = ACTIONS(4722), + [anon_sym_weak] = ACTIONS(4722), + [anon_sym_unowned] = ACTIONS(4724), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4722), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4722), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4722), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4722), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1166] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4670), + [anon_sym_LPAREN] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_QMARK] = ACTIONS(4672), + [sym__immediate_quest] = ACTIONS(4672), + [anon_sym_AMP] = ACTIONS(4672), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4670), + [anon_sym_RBRACE] = ACTIONS(4670), + [anon_sym_case] = ACTIONS(4670), + [anon_sym_fallthrough] = ACTIONS(4670), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4672), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4672), + [anon_sym_CARET] = ACTIONS(4672), + [anon_sym_LT_LT] = ACTIONS(4672), + [anon_sym_GT_GT] = ACTIONS(4672), + [anon_sym_class] = ACTIONS(4670), + [anon_sym_prefix] = ACTIONS(4670), + [anon_sym_infix] = ACTIONS(4670), + [anon_sym_postfix] = ACTIONS(4670), + [anon_sym_AT] = ACTIONS(4672), + [sym_property_behavior_modifier] = ACTIONS(4670), + [anon_sym_override] = ACTIONS(4670), + [anon_sym_convenience] = ACTIONS(4670), + [anon_sym_required] = ACTIONS(4670), + [anon_sym_public] = ACTIONS(4670), + [anon_sym_private] = ACTIONS(4670), + [anon_sym_internal] = ACTIONS(4670), + [anon_sym_fileprivate] = ACTIONS(4670), + [anon_sym_open] = ACTIONS(4670), + [anon_sym_mutating] = ACTIONS(4670), + [anon_sym_nonmutating] = ACTIONS(4670), + [anon_sym_static] = ACTIONS(4670), + [anon_sym_dynamic] = ACTIONS(4670), + [anon_sym_optional] = ACTIONS(4670), + [anon_sym_final] = ACTIONS(4670), + [anon_sym_inout] = ACTIONS(4670), + [anon_sym_ATescaping] = ACTIONS(4670), + [anon_sym_ATautoclosure] = ACTIONS(4670), + [anon_sym_weak] = ACTIONS(4670), + [anon_sym_unowned] = ACTIONS(4672), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4670), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4670), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4670), + [sym__dot_custom] = ACTIONS(4670), + [sym__three_dot_operator_custom] = ACTIONS(4670), + [sym__open_ended_range_operator_custom] = ACTIONS(4670), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4670), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4670), + [sym__as_custom] = ACTIONS(4670), + [sym__as_quest_custom] = ACTIONS(4670), + [sym__as_bang_custom] = ACTIONS(4670), + }, + [1167] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_QMARK] = ACTIONS(4688), + [sym__immediate_quest] = ACTIONS(4688), + [anon_sym_AMP] = ACTIONS(4688), + [aux_sym_custom_operator_token1] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4688), + [anon_sym_GT] = ACTIONS(4688), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_case] = ACTIONS(4686), + [anon_sym_fallthrough] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4688), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_GT_EQ] = ACTIONS(4688), + [anon_sym_is] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4688), + [anon_sym_DASH] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4688), + [anon_sym_DASH_DASH] = ACTIONS(4688), + [anon_sym_PIPE] = ACTIONS(4688), + [anon_sym_CARET] = ACTIONS(4688), + [anon_sym_LT_LT] = ACTIONS(4688), + [anon_sym_GT_GT] = ACTIONS(4688), + [anon_sym_class] = ACTIONS(4686), + [anon_sym_prefix] = ACTIONS(4686), + [anon_sym_infix] = ACTIONS(4686), + [anon_sym_postfix] = ACTIONS(4686), + [anon_sym_AT] = ACTIONS(4688), + [sym_property_behavior_modifier] = ACTIONS(4686), + [anon_sym_override] = ACTIONS(4686), + [anon_sym_convenience] = ACTIONS(4686), + [anon_sym_required] = ACTIONS(4686), + [anon_sym_public] = ACTIONS(4686), + [anon_sym_private] = ACTIONS(4686), + [anon_sym_internal] = ACTIONS(4686), + [anon_sym_fileprivate] = ACTIONS(4686), + [anon_sym_open] = ACTIONS(4686), + [anon_sym_mutating] = ACTIONS(4686), + [anon_sym_nonmutating] = ACTIONS(4686), + [anon_sym_static] = ACTIONS(4686), + [anon_sym_dynamic] = ACTIONS(4686), + [anon_sym_optional] = ACTIONS(4686), + [anon_sym_final] = ACTIONS(4686), + [anon_sym_inout] = ACTIONS(4686), + [anon_sym_ATescaping] = ACTIONS(4686), + [anon_sym_ATautoclosure] = ACTIONS(4686), + [anon_sym_weak] = ACTIONS(4686), + [anon_sym_unowned] = ACTIONS(4688), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4686), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4686), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4686), + [sym__dot_custom] = ACTIONS(4686), + [sym__three_dot_operator_custom] = ACTIONS(4686), + [sym__open_ended_range_operator_custom] = ACTIONS(4686), + [sym__conjunction_operator_custom] = ACTIONS(4686), + [sym__disjunction_operator_custom] = ACTIONS(4686), + [sym__nil_coalescing_operator_custom] = ACTIONS(4686), + [sym__eq_eq_custom] = ACTIONS(4686), + [sym__plus_then_ws] = ACTIONS(4686), + [sym__minus_then_ws] = ACTIONS(4686), + [sym_bang] = ACTIONS(4686), + [sym_default_keyword] = ACTIONS(4686), + [sym__as_custom] = ACTIONS(4686), + [sym__as_quest_custom] = ACTIONS(4686), + [sym__as_bang_custom] = ACTIONS(4686), + }, + [1168] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4694), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4769), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4777), + [anon_sym_RBRACE] = ACTIONS(4694), + [anon_sym_case] = ACTIONS(4694), + [anon_sym_fallthrough] = ACTIONS(4694), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4694), + [anon_sym_prefix] = ACTIONS(4694), + [anon_sym_infix] = ACTIONS(4694), + [anon_sym_postfix] = ACTIONS(4694), + [anon_sym_AT] = ACTIONS(4696), + [sym_property_behavior_modifier] = ACTIONS(4694), + [anon_sym_override] = ACTIONS(4694), + [anon_sym_convenience] = ACTIONS(4694), + [anon_sym_required] = ACTIONS(4694), + [anon_sym_public] = ACTIONS(4694), + [anon_sym_private] = ACTIONS(4694), + [anon_sym_internal] = ACTIONS(4694), + [anon_sym_fileprivate] = ACTIONS(4694), + [anon_sym_open] = ACTIONS(4694), + [anon_sym_mutating] = ACTIONS(4694), + [anon_sym_nonmutating] = ACTIONS(4694), + [anon_sym_static] = ACTIONS(4694), + [anon_sym_dynamic] = ACTIONS(4694), + [anon_sym_optional] = ACTIONS(4694), + [anon_sym_final] = ACTIONS(4694), + [anon_sym_inout] = ACTIONS(4694), + [anon_sym_ATescaping] = ACTIONS(4694), + [anon_sym_ATautoclosure] = ACTIONS(4694), + [anon_sym_weak] = ACTIONS(4694), + [anon_sym_unowned] = ACTIONS(4696), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4694), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4694), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4694), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4694), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1169] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4706), + [anon_sym_LPAREN] = ACTIONS(4706), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_QMARK] = ACTIONS(4708), + [sym__immediate_quest] = ACTIONS(4708), + [anon_sym_AMP] = ACTIONS(4708), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4708), + [anon_sym_GT] = ACTIONS(4708), + [anon_sym_LBRACE] = ACTIONS(4706), + [anon_sym_RBRACE] = ACTIONS(4706), + [anon_sym_case] = ACTIONS(4706), + [anon_sym_fallthrough] = ACTIONS(4706), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4708), + [anon_sym_CARET] = ACTIONS(4708), + [anon_sym_LT_LT] = ACTIONS(4708), + [anon_sym_GT_GT] = ACTIONS(4708), + [anon_sym_class] = ACTIONS(4706), + [anon_sym_prefix] = ACTIONS(4706), + [anon_sym_infix] = ACTIONS(4706), + [anon_sym_postfix] = ACTIONS(4706), + [anon_sym_AT] = ACTIONS(4708), + [sym_property_behavior_modifier] = ACTIONS(4706), + [anon_sym_override] = ACTIONS(4706), + [anon_sym_convenience] = ACTIONS(4706), + [anon_sym_required] = ACTIONS(4706), + [anon_sym_public] = ACTIONS(4706), + [anon_sym_private] = ACTIONS(4706), + [anon_sym_internal] = ACTIONS(4706), + [anon_sym_fileprivate] = ACTIONS(4706), + [anon_sym_open] = ACTIONS(4706), + [anon_sym_mutating] = ACTIONS(4706), + [anon_sym_nonmutating] = ACTIONS(4706), + [anon_sym_static] = ACTIONS(4706), + [anon_sym_dynamic] = ACTIONS(4706), + [anon_sym_optional] = ACTIONS(4706), + [anon_sym_final] = ACTIONS(4706), + [anon_sym_inout] = ACTIONS(4706), + [anon_sym_ATescaping] = ACTIONS(4706), + [anon_sym_ATautoclosure] = ACTIONS(4706), + [anon_sym_weak] = ACTIONS(4706), + [anon_sym_unowned] = ACTIONS(4708), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4706), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4706), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4706), + [sym__dot_custom] = ACTIONS(4706), + [sym__three_dot_operator_custom] = ACTIONS(4706), + [sym__open_ended_range_operator_custom] = ACTIONS(4706), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4706), + [sym__as_custom] = ACTIONS(4706), + [sym__as_quest_custom] = ACTIONS(4706), + [sym__as_bang_custom] = ACTIONS(4706), + }, + [1170] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4692), + [sym__immediate_quest] = ACTIONS(4692), + [anon_sym_AMP] = ACTIONS(4692), + [aux_sym_custom_operator_token1] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4692), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_RBRACE] = ACTIONS(4690), + [anon_sym_case] = ACTIONS(4690), + [anon_sym_fallthrough] = ACTIONS(4690), + [anon_sym_BANG_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4692), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_STAR] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4692), + [anon_sym_PERCENT] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_PIPE] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym_LT_LT] = ACTIONS(4692), + [anon_sym_GT_GT] = ACTIONS(4692), + [anon_sym_class] = ACTIONS(4690), + [anon_sym_prefix] = ACTIONS(4690), + [anon_sym_infix] = ACTIONS(4690), + [anon_sym_postfix] = ACTIONS(4690), + [anon_sym_AT] = ACTIONS(4692), + [sym_property_behavior_modifier] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_convenience] = ACTIONS(4690), + [anon_sym_required] = ACTIONS(4690), + [anon_sym_public] = ACTIONS(4690), + [anon_sym_private] = ACTIONS(4690), + [anon_sym_internal] = ACTIONS(4690), + [anon_sym_fileprivate] = ACTIONS(4690), + [anon_sym_open] = ACTIONS(4690), + [anon_sym_mutating] = ACTIONS(4690), + [anon_sym_nonmutating] = ACTIONS(4690), + [anon_sym_static] = ACTIONS(4690), + [anon_sym_dynamic] = ACTIONS(4690), + [anon_sym_optional] = ACTIONS(4690), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_inout] = ACTIONS(4690), + [anon_sym_ATescaping] = ACTIONS(4690), + [anon_sym_ATautoclosure] = ACTIONS(4690), + [anon_sym_weak] = ACTIONS(4690), + [anon_sym_unowned] = ACTIONS(4692), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4690), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4690), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4690), + [sym__dot_custom] = ACTIONS(4690), + [sym__three_dot_operator_custom] = ACTIONS(4690), + [sym__open_ended_range_operator_custom] = ACTIONS(4690), + [sym__conjunction_operator_custom] = ACTIONS(4690), + [sym__disjunction_operator_custom] = ACTIONS(4690), + [sym__nil_coalescing_operator_custom] = ACTIONS(4690), + [sym__eq_eq_custom] = ACTIONS(4690), + [sym__plus_then_ws] = ACTIONS(4690), + [sym__minus_then_ws] = ACTIONS(4690), + [sym_bang] = ACTIONS(4690), + [sym_default_keyword] = ACTIONS(4690), + [sym__as_custom] = ACTIONS(4690), + [sym__as_quest_custom] = ACTIONS(4690), + [sym__as_bang_custom] = ACTIONS(4690), + }, + [1171] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4644), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_RBRACE] = ACTIONS(4642), + [anon_sym_case] = ACTIONS(4642), + [anon_sym_fallthrough] = ACTIONS(4642), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4642), + [anon_sym_prefix] = ACTIONS(4642), + [anon_sym_infix] = ACTIONS(4642), + [anon_sym_postfix] = ACTIONS(4642), + [anon_sym_AT] = ACTIONS(4644), + [sym_property_behavior_modifier] = ACTIONS(4642), + [anon_sym_override] = ACTIONS(4642), + [anon_sym_convenience] = ACTIONS(4642), + [anon_sym_required] = ACTIONS(4642), + [anon_sym_public] = ACTIONS(4642), + [anon_sym_private] = ACTIONS(4642), + [anon_sym_internal] = ACTIONS(4642), + [anon_sym_fileprivate] = ACTIONS(4642), + [anon_sym_open] = ACTIONS(4642), + [anon_sym_mutating] = ACTIONS(4642), + [anon_sym_nonmutating] = ACTIONS(4642), + [anon_sym_static] = ACTIONS(4642), + [anon_sym_dynamic] = ACTIONS(4642), + [anon_sym_optional] = ACTIONS(4642), + [anon_sym_final] = ACTIONS(4642), + [anon_sym_inout] = ACTIONS(4642), + [anon_sym_ATescaping] = ACTIONS(4642), + [anon_sym_ATautoclosure] = ACTIONS(4642), + [anon_sym_weak] = ACTIONS(4642), + [anon_sym_unowned] = ACTIONS(4644), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4642), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4642), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4642), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4642), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1172] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4769), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4777), + [anon_sym_RBRACE] = ACTIONS(4678), + [anon_sym_case] = ACTIONS(4678), + [anon_sym_fallthrough] = ACTIONS(4678), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4678), + [anon_sym_prefix] = ACTIONS(4678), + [anon_sym_infix] = ACTIONS(4678), + [anon_sym_postfix] = ACTIONS(4678), + [anon_sym_AT] = ACTIONS(4680), + [sym_property_behavior_modifier] = ACTIONS(4678), + [anon_sym_override] = ACTIONS(4678), + [anon_sym_convenience] = ACTIONS(4678), + [anon_sym_required] = ACTIONS(4678), + [anon_sym_public] = ACTIONS(4678), + [anon_sym_private] = ACTIONS(4678), + [anon_sym_internal] = ACTIONS(4678), + [anon_sym_fileprivate] = ACTIONS(4678), + [anon_sym_open] = ACTIONS(4678), + [anon_sym_mutating] = ACTIONS(4678), + [anon_sym_nonmutating] = ACTIONS(4678), + [anon_sym_static] = ACTIONS(4678), + [anon_sym_dynamic] = ACTIONS(4678), + [anon_sym_optional] = ACTIONS(4678), + [anon_sym_final] = ACTIONS(4678), + [anon_sym_inout] = ACTIONS(4678), + [anon_sym_ATescaping] = ACTIONS(4678), + [anon_sym_ATautoclosure] = ACTIONS(4678), + [anon_sym_weak] = ACTIONS(4678), + [anon_sym_unowned] = ACTIONS(4680), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4678), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4678), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4678), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4678), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1173] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4769), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4777), + [anon_sym_RBRACE] = ACTIONS(4821), + [anon_sym_case] = ACTIONS(4821), + [anon_sym_fallthrough] = ACTIONS(4821), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4821), + [anon_sym_prefix] = ACTIONS(4821), + [anon_sym_infix] = ACTIONS(4821), + [anon_sym_postfix] = ACTIONS(4821), + [anon_sym_AT] = ACTIONS(4823), + [sym_property_behavior_modifier] = ACTIONS(4821), + [anon_sym_override] = ACTIONS(4821), + [anon_sym_convenience] = ACTIONS(4821), + [anon_sym_required] = ACTIONS(4821), + [anon_sym_public] = ACTIONS(4821), + [anon_sym_private] = ACTIONS(4821), + [anon_sym_internal] = ACTIONS(4821), + [anon_sym_fileprivate] = ACTIONS(4821), + [anon_sym_open] = ACTIONS(4821), + [anon_sym_mutating] = ACTIONS(4821), + [anon_sym_nonmutating] = ACTIONS(4821), + [anon_sym_static] = ACTIONS(4821), + [anon_sym_dynamic] = ACTIONS(4821), + [anon_sym_optional] = ACTIONS(4821), + [anon_sym_final] = ACTIONS(4821), + [anon_sym_inout] = ACTIONS(4821), + [anon_sym_ATescaping] = ACTIONS(4821), + [anon_sym_ATautoclosure] = ACTIONS(4821), + [anon_sym_weak] = ACTIONS(4821), + [anon_sym_unowned] = ACTIONS(4823), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4821), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4821), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4821), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4821), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1174] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4825), + [aux_sym_simple_identifier_token2] = ACTIONS(4827), + [aux_sym_simple_identifier_token3] = ACTIONS(4827), + [aux_sym_simple_identifier_token4] = ACTIONS(4827), + [anon_sym_COMMA] = ACTIONS(4827), + [anon_sym_LPAREN] = ACTIONS(4827), + [anon_sym_LBRACK] = ACTIONS(4827), + [anon_sym_QMARK] = ACTIONS(4825), + [sym__immediate_quest] = ACTIONS(4825), + [anon_sym_AMP] = ACTIONS(4825), + [anon_sym_async] = ACTIONS(4825), + [aux_sym_custom_operator_token1] = ACTIONS(4825), + [anon_sym_LT] = ACTIONS(4825), + [anon_sym_GT] = ACTIONS(4825), + [anon_sym_LBRACE] = ACTIONS(4827), + [anon_sym_RBRACE] = ACTIONS(4827), + [anon_sym_case] = ACTIONS(4825), + [anon_sym_PLUS_EQ] = ACTIONS(4825), + [anon_sym_DASH_EQ] = ACTIONS(4825), + [anon_sym_STAR_EQ] = ACTIONS(4825), + [anon_sym_SLASH_EQ] = ACTIONS(4825), + [anon_sym_PERCENT_EQ] = ACTIONS(4825), + [anon_sym_EQ] = ACTIONS(4825), + [anon_sym_BANG_EQ] = ACTIONS(4825), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4825), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4825), + [anon_sym_LT_EQ] = ACTIONS(4825), + [anon_sym_GT_EQ] = ACTIONS(4825), + [anon_sym_is] = ACTIONS(4825), + [anon_sym_PLUS] = ACTIONS(4825), + [anon_sym_DASH] = ACTIONS(4825), + [anon_sym_STAR] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4825), + [anon_sym_PERCENT] = ACTIONS(4825), + [anon_sym_PLUS_PLUS] = ACTIONS(4825), + [anon_sym_DASH_DASH] = ACTIONS(4825), + [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_LT_LT] = ACTIONS(4825), + [anon_sym_GT_GT] = ACTIONS(4825), + [anon_sym_import] = ACTIONS(4825), + [anon_sym_typealias] = ACTIONS(4825), + [anon_sym_struct] = ACTIONS(4825), + [anon_sym_class] = ACTIONS(4825), + [anon_sym_enum] = ACTIONS(4825), + [anon_sym_protocol] = ACTIONS(4825), + [anon_sym_let] = ACTIONS(4825), + [anon_sym_var] = ACTIONS(4825), + [anon_sym_func] = ACTIONS(4825), + [anon_sym_extension] = ACTIONS(4825), + [anon_sym_indirect] = ACTIONS(4825), + [anon_sym_init] = ACTIONS(4825), + [anon_sym_SEMI] = ACTIONS(4827), + [anon_sym_deinit] = ACTIONS(4825), + [anon_sym_subscript] = ACTIONS(4825), + [anon_sym_prefix] = ACTIONS(4825), + [anon_sym_infix] = ACTIONS(4825), + [anon_sym_postfix] = ACTIONS(4825), + [anon_sym_precedencegroup] = ACTIONS(4825), + [anon_sym_associatedtype] = ACTIONS(4825), + [anon_sym_AT] = ACTIONS(4825), + [sym_property_behavior_modifier] = ACTIONS(4825), + [anon_sym_override] = ACTIONS(4825), + [anon_sym_convenience] = ACTIONS(4825), + [anon_sym_required] = ACTIONS(4825), + [anon_sym_public] = ACTIONS(4825), + [anon_sym_private] = ACTIONS(4825), + [anon_sym_internal] = ACTIONS(4825), + [anon_sym_fileprivate] = ACTIONS(4825), + [anon_sym_open] = ACTIONS(4825), + [anon_sym_mutating] = ACTIONS(4825), + [anon_sym_nonmutating] = ACTIONS(4825), + [anon_sym_static] = ACTIONS(4825), + [anon_sym_dynamic] = ACTIONS(4825), + [anon_sym_optional] = ACTIONS(4825), + [anon_sym_final] = ACTIONS(4825), + [anon_sym_inout] = ACTIONS(4825), + [anon_sym_ATescaping] = ACTIONS(4827), + [anon_sym_ATautoclosure] = ACTIONS(4827), + [anon_sym_weak] = ACTIONS(4825), + [anon_sym_unowned] = ACTIONS(4825), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4827), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4827), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4827), + [sym__three_dot_operator_custom] = ACTIONS(4827), + [sym__open_ended_range_operator_custom] = ACTIONS(4827), + [sym__conjunction_operator_custom] = ACTIONS(4827), + [sym__disjunction_operator_custom] = ACTIONS(4827), + [sym__nil_coalescing_operator_custom] = ACTIONS(4827), + [sym__eq_eq_custom] = ACTIONS(4827), + [sym__plus_then_ws] = ACTIONS(4827), + [sym__minus_then_ws] = ACTIONS(4827), + [sym_bang] = ACTIONS(4827), + [sym__as_custom] = ACTIONS(4827), + [sym__as_quest_custom] = ACTIONS(4827), + [sym__as_bang_custom] = ACTIONS(4827), + }, + [1175] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4829), + [aux_sym_simple_identifier_token2] = ACTIONS(4831), + [aux_sym_simple_identifier_token3] = ACTIONS(4831), + [aux_sym_simple_identifier_token4] = ACTIONS(4831), + [anon_sym_COMMA] = ACTIONS(4831), + [anon_sym_LPAREN] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(4831), + [anon_sym_QMARK] = ACTIONS(4829), + [sym__immediate_quest] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + [anon_sym_async] = ACTIONS(4829), + [aux_sym_custom_operator_token1] = ACTIONS(4829), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_LBRACE] = ACTIONS(4831), + [anon_sym_RBRACE] = ACTIONS(4831), + [anon_sym_case] = ACTIONS(4829), + [anon_sym_PLUS_EQ] = ACTIONS(4829), + [anon_sym_DASH_EQ] = ACTIONS(4829), + [anon_sym_STAR_EQ] = ACTIONS(4829), + [anon_sym_SLASH_EQ] = ACTIONS(4829), + [anon_sym_PERCENT_EQ] = ACTIONS(4829), + [anon_sym_EQ] = ACTIONS(4829), + [anon_sym_BANG_EQ] = ACTIONS(4829), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4829), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4829), + [anon_sym_LT_EQ] = ACTIONS(4829), + [anon_sym_GT_EQ] = ACTIONS(4829), + [anon_sym_is] = ACTIONS(4829), + [anon_sym_PLUS] = ACTIONS(4829), + [anon_sym_DASH] = ACTIONS(4829), + [anon_sym_STAR] = ACTIONS(4829), + [anon_sym_SLASH] = ACTIONS(4829), + [anon_sym_PERCENT] = ACTIONS(4829), + [anon_sym_PLUS_PLUS] = ACTIONS(4829), + [anon_sym_DASH_DASH] = ACTIONS(4829), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_CARET] = ACTIONS(4829), + [anon_sym_LT_LT] = ACTIONS(4829), + [anon_sym_GT_GT] = ACTIONS(4829), + [anon_sym_import] = ACTIONS(4829), + [anon_sym_typealias] = ACTIONS(4829), + [anon_sym_struct] = ACTIONS(4829), + [anon_sym_class] = ACTIONS(4829), + [anon_sym_enum] = ACTIONS(4829), + [anon_sym_protocol] = ACTIONS(4829), + [anon_sym_let] = ACTIONS(4829), + [anon_sym_var] = ACTIONS(4829), + [anon_sym_func] = ACTIONS(4829), + [anon_sym_extension] = ACTIONS(4829), + [anon_sym_indirect] = ACTIONS(4829), + [anon_sym_init] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4831), + [anon_sym_deinit] = ACTIONS(4829), + [anon_sym_subscript] = ACTIONS(4829), + [anon_sym_prefix] = ACTIONS(4829), + [anon_sym_infix] = ACTIONS(4829), + [anon_sym_postfix] = ACTIONS(4829), + [anon_sym_precedencegroup] = ACTIONS(4829), + [anon_sym_associatedtype] = ACTIONS(4829), + [anon_sym_AT] = ACTIONS(4829), + [sym_property_behavior_modifier] = ACTIONS(4829), + [anon_sym_override] = ACTIONS(4829), + [anon_sym_convenience] = ACTIONS(4829), + [anon_sym_required] = ACTIONS(4829), + [anon_sym_public] = ACTIONS(4829), + [anon_sym_private] = ACTIONS(4829), + [anon_sym_internal] = ACTIONS(4829), + [anon_sym_fileprivate] = ACTIONS(4829), + [anon_sym_open] = ACTIONS(4829), + [anon_sym_mutating] = ACTIONS(4829), + [anon_sym_nonmutating] = ACTIONS(4829), + [anon_sym_static] = ACTIONS(4829), + [anon_sym_dynamic] = ACTIONS(4829), + [anon_sym_optional] = ACTIONS(4829), + [anon_sym_final] = ACTIONS(4829), + [anon_sym_inout] = ACTIONS(4829), + [anon_sym_ATescaping] = ACTIONS(4831), + [anon_sym_ATautoclosure] = ACTIONS(4831), + [anon_sym_weak] = ACTIONS(4829), + [anon_sym_unowned] = ACTIONS(4829), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4831), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4831), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4831), + [sym__three_dot_operator_custom] = ACTIONS(4831), + [sym__open_ended_range_operator_custom] = ACTIONS(4831), + [sym__conjunction_operator_custom] = ACTIONS(4831), + [sym__disjunction_operator_custom] = ACTIONS(4831), + [sym__nil_coalescing_operator_custom] = ACTIONS(4831), + [sym__eq_eq_custom] = ACTIONS(4831), + [sym__plus_then_ws] = ACTIONS(4831), + [sym__minus_then_ws] = ACTIONS(4831), + [sym_bang] = ACTIONS(4831), + [sym__as_custom] = ACTIONS(4831), + [sym__as_quest_custom] = ACTIONS(4831), + [sym__as_bang_custom] = ACTIONS(4831), + }, + [1176] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4769), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4777), + [anon_sym_RBRACE] = ACTIONS(4833), + [anon_sym_case] = ACTIONS(4833), + [anon_sym_fallthrough] = ACTIONS(4833), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4833), + [anon_sym_prefix] = ACTIONS(4833), + [anon_sym_infix] = ACTIONS(4833), + [anon_sym_postfix] = ACTIONS(4833), + [anon_sym_AT] = ACTIONS(4835), + [sym_property_behavior_modifier] = ACTIONS(4833), + [anon_sym_override] = ACTIONS(4833), + [anon_sym_convenience] = ACTIONS(4833), + [anon_sym_required] = ACTIONS(4833), + [anon_sym_public] = ACTIONS(4833), + [anon_sym_private] = ACTIONS(4833), + [anon_sym_internal] = ACTIONS(4833), + [anon_sym_fileprivate] = ACTIONS(4833), + [anon_sym_open] = ACTIONS(4833), + [anon_sym_mutating] = ACTIONS(4833), + [anon_sym_nonmutating] = ACTIONS(4833), + [anon_sym_static] = ACTIONS(4833), + [anon_sym_dynamic] = ACTIONS(4833), + [anon_sym_optional] = ACTIONS(4833), + [anon_sym_final] = ACTIONS(4833), + [anon_sym_inout] = ACTIONS(4833), + [anon_sym_ATescaping] = ACTIONS(4833), + [anon_sym_ATautoclosure] = ACTIONS(4833), + [anon_sym_weak] = ACTIONS(4833), + [anon_sym_unowned] = ACTIONS(4835), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4833), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4833), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4833), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4833), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1177] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4837), + [aux_sym_simple_identifier_token2] = ACTIONS(4839), + [aux_sym_simple_identifier_token3] = ACTIONS(4839), + [aux_sym_simple_identifier_token4] = ACTIONS(4839), + [anon_sym_COMMA] = ACTIONS(4839), + [anon_sym_LPAREN] = ACTIONS(4839), + [anon_sym_LBRACK] = ACTIONS(4839), + [anon_sym_QMARK] = ACTIONS(4837), + [sym__immediate_quest] = ACTIONS(4837), + [anon_sym_AMP] = ACTIONS(4837), + [anon_sym_async] = ACTIONS(4837), + [aux_sym_custom_operator_token1] = ACTIONS(4837), + [anon_sym_LT] = ACTIONS(4837), + [anon_sym_GT] = ACTIONS(4837), + [anon_sym_LBRACE] = ACTIONS(4839), + [anon_sym_RBRACE] = ACTIONS(4839), + [anon_sym_case] = ACTIONS(4837), + [anon_sym_PLUS_EQ] = ACTIONS(4837), + [anon_sym_DASH_EQ] = ACTIONS(4837), + [anon_sym_STAR_EQ] = ACTIONS(4837), + [anon_sym_SLASH_EQ] = ACTIONS(4837), + [anon_sym_PERCENT_EQ] = ACTIONS(4837), + [anon_sym_EQ] = ACTIONS(4837), + [anon_sym_BANG_EQ] = ACTIONS(4837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4837), + [anon_sym_LT_EQ] = ACTIONS(4837), + [anon_sym_GT_EQ] = ACTIONS(4837), + [anon_sym_is] = ACTIONS(4837), + [anon_sym_PLUS] = ACTIONS(4837), + [anon_sym_DASH] = ACTIONS(4837), + [anon_sym_STAR] = ACTIONS(4837), + [anon_sym_SLASH] = ACTIONS(4837), + [anon_sym_PERCENT] = ACTIONS(4837), + [anon_sym_PLUS_PLUS] = ACTIONS(4837), + [anon_sym_DASH_DASH] = ACTIONS(4837), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_CARET] = ACTIONS(4837), + [anon_sym_LT_LT] = ACTIONS(4837), + [anon_sym_GT_GT] = ACTIONS(4837), + [anon_sym_import] = ACTIONS(4837), + [anon_sym_typealias] = ACTIONS(4837), + [anon_sym_struct] = ACTIONS(4837), + [anon_sym_class] = ACTIONS(4837), + [anon_sym_enum] = ACTIONS(4837), + [anon_sym_protocol] = ACTIONS(4837), + [anon_sym_let] = ACTIONS(4837), + [anon_sym_var] = ACTIONS(4837), + [anon_sym_func] = ACTIONS(4837), + [anon_sym_extension] = ACTIONS(4837), + [anon_sym_indirect] = ACTIONS(4837), + [anon_sym_init] = ACTIONS(4837), + [anon_sym_SEMI] = ACTIONS(4839), + [anon_sym_deinit] = ACTIONS(4837), + [anon_sym_subscript] = ACTIONS(4837), + [anon_sym_prefix] = ACTIONS(4837), + [anon_sym_infix] = ACTIONS(4837), + [anon_sym_postfix] = ACTIONS(4837), + [anon_sym_precedencegroup] = ACTIONS(4837), + [anon_sym_associatedtype] = ACTIONS(4837), + [anon_sym_AT] = ACTIONS(4837), + [sym_property_behavior_modifier] = ACTIONS(4837), + [anon_sym_override] = ACTIONS(4837), + [anon_sym_convenience] = ACTIONS(4837), + [anon_sym_required] = ACTIONS(4837), + [anon_sym_public] = ACTIONS(4837), + [anon_sym_private] = ACTIONS(4837), + [anon_sym_internal] = ACTIONS(4837), + [anon_sym_fileprivate] = ACTIONS(4837), + [anon_sym_open] = ACTIONS(4837), + [anon_sym_mutating] = ACTIONS(4837), + [anon_sym_nonmutating] = ACTIONS(4837), + [anon_sym_static] = ACTIONS(4837), + [anon_sym_dynamic] = ACTIONS(4837), + [anon_sym_optional] = ACTIONS(4837), + [anon_sym_final] = ACTIONS(4837), + [anon_sym_inout] = ACTIONS(4837), + [anon_sym_ATescaping] = ACTIONS(4839), + [anon_sym_ATautoclosure] = ACTIONS(4839), + [anon_sym_weak] = ACTIONS(4837), + [anon_sym_unowned] = ACTIONS(4837), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4839), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4839), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4839), + [sym__three_dot_operator_custom] = ACTIONS(4839), + [sym__open_ended_range_operator_custom] = ACTIONS(4839), + [sym__conjunction_operator_custom] = ACTIONS(4839), + [sym__disjunction_operator_custom] = ACTIONS(4839), + [sym__nil_coalescing_operator_custom] = ACTIONS(4839), + [sym__eq_eq_custom] = ACTIONS(4839), + [sym__plus_then_ws] = ACTIONS(4839), + [sym__minus_then_ws] = ACTIONS(4839), + [sym_bang] = ACTIONS(4839), + [sym__as_custom] = ACTIONS(4839), + [sym__as_quest_custom] = ACTIONS(4839), + [sym__as_bang_custom] = ACTIONS(4839), + }, + [1178] = { + [sym__quest] = STATE(422), + [sym__range_operator] = STATE(1014), + [sym_custom_operator] = STATE(1013), + [sym_navigation_suffix] = STATE(1366), + [sym_call_suffix] = STATE(1368), + [sym_value_arguments] = STATE(1373), + [sym_lambda_literal] = STATE(1300), + [sym__equality_operator] = STATE(1008), + [sym__comparison_operator] = STATE(1007), + [sym__is_operator] = STATE(4513), + [sym__additive_operator] = STATE(1006), + [sym__multiplicative_operator] = STATE(1005), + [sym_as_operator] = STATE(4514), + [sym__bitwise_binary_operator] = STATE(1003), + [sym__postfix_unary_operator] = STATE(1461), + [sym__eq_eq] = STATE(1008), + [sym__dot] = STATE(6244), + [sym__three_dot_operator] = STATE(1140), + [sym__open_ended_range_operator] = STATE(1014), + [sym__conjunction_operator] = STATE(324), + [sym__disjunction_operator] = STATE(999), + [sym__nil_coalescing_operator] = STATE(998), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(4765), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_QMARK] = ACTIONS(4769), + [sym__immediate_quest] = ACTIONS(4771), + [anon_sym_AMP] = ACTIONS(4773), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4775), + [anon_sym_LBRACE] = ACTIONS(4777), + [anon_sym_RBRACE] = ACTIONS(4841), + [anon_sym_case] = ACTIONS(4841), + [anon_sym_fallthrough] = ACTIONS(4841), + [anon_sym_BANG_EQ] = ACTIONS(4779), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4779), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4779), + [anon_sym_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_is] = ACTIONS(4781), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_SLASH] = ACTIONS(4785), + [anon_sym_PERCENT] = ACTIONS(4785), + [anon_sym_PLUS_PLUS] = ACTIONS(4787), + [anon_sym_DASH_DASH] = ACTIONS(4787), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_class] = ACTIONS(4841), + [anon_sym_prefix] = ACTIONS(4841), + [anon_sym_infix] = ACTIONS(4841), + [anon_sym_postfix] = ACTIONS(4841), + [anon_sym_AT] = ACTIONS(4843), + [sym_property_behavior_modifier] = ACTIONS(4841), + [anon_sym_override] = ACTIONS(4841), + [anon_sym_convenience] = ACTIONS(4841), + [anon_sym_required] = ACTIONS(4841), + [anon_sym_public] = ACTIONS(4841), + [anon_sym_private] = ACTIONS(4841), + [anon_sym_internal] = ACTIONS(4841), + [anon_sym_fileprivate] = ACTIONS(4841), + [anon_sym_open] = ACTIONS(4841), + [anon_sym_mutating] = ACTIONS(4841), + [anon_sym_nonmutating] = ACTIONS(4841), + [anon_sym_static] = ACTIONS(4841), + [anon_sym_dynamic] = ACTIONS(4841), + [anon_sym_optional] = ACTIONS(4841), + [anon_sym_final] = ACTIONS(4841), + [anon_sym_inout] = ACTIONS(4841), + [anon_sym_ATescaping] = ACTIONS(4841), + [anon_sym_ATautoclosure] = ACTIONS(4841), + [anon_sym_weak] = ACTIONS(4841), + [anon_sym_unowned] = ACTIONS(4843), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4841), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4841), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4841), + [sym__dot_custom] = ACTIONS(4789), + [sym__three_dot_operator_custom] = ACTIONS(477), + [sym__open_ended_range_operator_custom] = ACTIONS(4791), + [sym__conjunction_operator_custom] = ACTIONS(4793), + [sym__disjunction_operator_custom] = ACTIONS(4795), + [sym__nil_coalescing_operator_custom] = ACTIONS(4797), + [sym__eq_eq_custom] = ACTIONS(4799), + [sym__plus_then_ws] = ACTIONS(4801), + [sym__minus_then_ws] = ACTIONS(4801), + [sym_bang] = ACTIONS(4803), + [sym_default_keyword] = ACTIONS(4841), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1179] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4845), + [aux_sym_simple_identifier_token2] = ACTIONS(4847), + [aux_sym_simple_identifier_token3] = ACTIONS(4847), + [aux_sym_simple_identifier_token4] = ACTIONS(4847), + [anon_sym_COMMA] = ACTIONS(4847), + [anon_sym_LPAREN] = ACTIONS(4847), + [anon_sym_LBRACK] = ACTIONS(4847), + [anon_sym_QMARK] = ACTIONS(4845), + [sym__immediate_quest] = ACTIONS(4845), + [anon_sym_AMP] = ACTIONS(4845), + [anon_sym_async] = ACTIONS(4845), + [aux_sym_custom_operator_token1] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4845), + [anon_sym_GT] = ACTIONS(4845), + [anon_sym_LBRACE] = ACTIONS(4847), + [anon_sym_RBRACE] = ACTIONS(4847), + [anon_sym_case] = ACTIONS(4845), + [anon_sym_PLUS_EQ] = ACTIONS(4845), + [anon_sym_DASH_EQ] = ACTIONS(4845), + [anon_sym_STAR_EQ] = ACTIONS(4845), + [anon_sym_SLASH_EQ] = ACTIONS(4845), + [anon_sym_PERCENT_EQ] = ACTIONS(4845), + [anon_sym_EQ] = ACTIONS(4845), + [anon_sym_BANG_EQ] = ACTIONS(4845), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4845), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4845), + [anon_sym_LT_EQ] = ACTIONS(4845), + [anon_sym_GT_EQ] = ACTIONS(4845), + [anon_sym_is] = ACTIONS(4845), + [anon_sym_PLUS] = ACTIONS(4845), + [anon_sym_DASH] = ACTIONS(4845), + [anon_sym_STAR] = ACTIONS(4845), + [anon_sym_SLASH] = ACTIONS(4845), + [anon_sym_PERCENT] = ACTIONS(4845), + [anon_sym_PLUS_PLUS] = ACTIONS(4845), + [anon_sym_DASH_DASH] = ACTIONS(4845), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_CARET] = ACTIONS(4845), + [anon_sym_LT_LT] = ACTIONS(4845), + [anon_sym_GT_GT] = ACTIONS(4845), + [anon_sym_import] = ACTIONS(4845), + [anon_sym_typealias] = ACTIONS(4845), + [anon_sym_struct] = ACTIONS(4845), + [anon_sym_class] = ACTIONS(4845), + [anon_sym_enum] = ACTIONS(4845), + [anon_sym_protocol] = ACTIONS(4845), + [anon_sym_let] = ACTIONS(4845), + [anon_sym_var] = ACTIONS(4845), + [anon_sym_func] = ACTIONS(4845), + [anon_sym_extension] = ACTIONS(4845), + [anon_sym_indirect] = ACTIONS(4845), + [anon_sym_init] = ACTIONS(4845), + [anon_sym_SEMI] = ACTIONS(4847), + [anon_sym_deinit] = ACTIONS(4845), + [anon_sym_subscript] = ACTIONS(4845), + [anon_sym_prefix] = ACTIONS(4845), + [anon_sym_infix] = ACTIONS(4845), + [anon_sym_postfix] = ACTIONS(4845), + [anon_sym_precedencegroup] = ACTIONS(4845), + [anon_sym_associatedtype] = ACTIONS(4845), + [anon_sym_AT] = ACTIONS(4845), + [sym_property_behavior_modifier] = ACTIONS(4845), + [anon_sym_override] = ACTIONS(4845), + [anon_sym_convenience] = ACTIONS(4845), + [anon_sym_required] = ACTIONS(4845), + [anon_sym_public] = ACTIONS(4845), + [anon_sym_private] = ACTIONS(4845), + [anon_sym_internal] = ACTIONS(4845), + [anon_sym_fileprivate] = ACTIONS(4845), + [anon_sym_open] = ACTIONS(4845), + [anon_sym_mutating] = ACTIONS(4845), + [anon_sym_nonmutating] = ACTIONS(4845), + [anon_sym_static] = ACTIONS(4845), + [anon_sym_dynamic] = ACTIONS(4845), + [anon_sym_optional] = ACTIONS(4845), + [anon_sym_final] = ACTIONS(4845), + [anon_sym_inout] = ACTIONS(4845), + [anon_sym_ATescaping] = ACTIONS(4847), + [anon_sym_ATautoclosure] = ACTIONS(4847), + [anon_sym_weak] = ACTIONS(4845), + [anon_sym_unowned] = ACTIONS(4845), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4847), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4847), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4847), + [sym__three_dot_operator_custom] = ACTIONS(4847), + [sym__open_ended_range_operator_custom] = ACTIONS(4847), + [sym__conjunction_operator_custom] = ACTIONS(4847), + [sym__disjunction_operator_custom] = ACTIONS(4847), + [sym__nil_coalescing_operator_custom] = ACTIONS(4847), + [sym__eq_eq_custom] = ACTIONS(4847), + [sym__plus_then_ws] = ACTIONS(4847), + [sym__minus_then_ws] = ACTIONS(4847), + [sym_bang] = ACTIONS(4847), + [sym__as_custom] = ACTIONS(4847), + [sym__as_quest_custom] = ACTIONS(4847), + [sym__as_bang_custom] = ACTIONS(4847), + }, + [1180] = { + [sym_simple_identifier] = STATE(1229), + [sym__simple_user_type] = STATE(1231), + [sym_array_type] = STATE(1231), + [sym_dictionary_type] = STATE(1231), + [aux_sym_key_path_expression_repeat1] = STATE(1222), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4849), + [aux_sym_simple_identifier_token2] = ACTIONS(4851), + [aux_sym_simple_identifier_token3] = ACTIONS(4851), + [aux_sym_simple_identifier_token4] = ACTIONS(4851), + [anon_sym_COMMA] = ACTIONS(4853), + [anon_sym_LPAREN] = ACTIONS(4853), + [anon_sym_LBRACK] = ACTIONS(4855), + [anon_sym_DOT] = ACTIONS(4857), + [anon_sym_QMARK] = ACTIONS(4859), + [sym__immediate_quest] = ACTIONS(4859), + [anon_sym_AMP] = ACTIONS(4859), + [anon_sym_async] = ACTIONS(4859), + [aux_sym_custom_operator_token1] = ACTIONS(4859), + [anon_sym_LT] = ACTIONS(4859), + [anon_sym_GT] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4853), + [anon_sym_RBRACE] = ACTIONS(4853), + [anon_sym_case] = ACTIONS(4859), + [anon_sym_BANG_EQ] = ACTIONS(4859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4859), + [anon_sym_LT_EQ] = ACTIONS(4859), + [anon_sym_GT_EQ] = ACTIONS(4859), + [anon_sym_is] = ACTIONS(4859), + [anon_sym_PLUS] = ACTIONS(4859), + [anon_sym_DASH] = ACTIONS(4859), + [anon_sym_STAR] = ACTIONS(4859), + [anon_sym_SLASH] = ACTIONS(4859), + [anon_sym_PERCENT] = ACTIONS(4859), + [anon_sym_PLUS_PLUS] = ACTIONS(4859), + [anon_sym_DASH_DASH] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(4859), + [anon_sym_CARET] = ACTIONS(4859), + [anon_sym_LT_LT] = ACTIONS(4859), + [anon_sym_GT_GT] = ACTIONS(4859), + [anon_sym_import] = ACTIONS(4859), + [anon_sym_typealias] = ACTIONS(4859), + [anon_sym_struct] = ACTIONS(4859), + [anon_sym_class] = ACTIONS(4859), + [anon_sym_enum] = ACTIONS(4859), + [anon_sym_protocol] = ACTIONS(4859), + [anon_sym_let] = ACTIONS(4859), + [anon_sym_var] = ACTIONS(4859), + [anon_sym_func] = ACTIONS(4859), + [anon_sym_extension] = ACTIONS(4859), + [anon_sym_indirect] = ACTIONS(4859), + [anon_sym_init] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(4853), + [anon_sym_deinit] = ACTIONS(4859), + [anon_sym_subscript] = ACTIONS(4859), + [anon_sym_prefix] = ACTIONS(4859), + [anon_sym_infix] = ACTIONS(4859), + [anon_sym_postfix] = ACTIONS(4859), + [anon_sym_precedencegroup] = ACTIONS(4859), + [anon_sym_associatedtype] = ACTIONS(4859), + [anon_sym_AT] = ACTIONS(4859), + [sym_property_behavior_modifier] = ACTIONS(4859), + [anon_sym_override] = ACTIONS(4859), + [anon_sym_convenience] = ACTIONS(4859), + [anon_sym_required] = ACTIONS(4859), + [anon_sym_public] = ACTIONS(4859), + [anon_sym_private] = ACTIONS(4859), + [anon_sym_internal] = ACTIONS(4859), + [anon_sym_fileprivate] = ACTIONS(4859), + [anon_sym_open] = ACTIONS(4859), + [anon_sym_mutating] = ACTIONS(4859), + [anon_sym_nonmutating] = ACTIONS(4859), + [anon_sym_static] = ACTIONS(4859), + [anon_sym_dynamic] = ACTIONS(4859), + [anon_sym_optional] = ACTIONS(4859), + [anon_sym_final] = ACTIONS(4859), + [anon_sym_inout] = ACTIONS(4859), + [anon_sym_ATescaping] = ACTIONS(4853), + [anon_sym_ATautoclosure] = ACTIONS(4853), + [anon_sym_weak] = ACTIONS(4859), + [anon_sym_unowned] = ACTIONS(4859), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4853), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4853), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4853), + [sym__three_dot_operator_custom] = ACTIONS(4853), + [sym__open_ended_range_operator_custom] = ACTIONS(4853), + [sym__conjunction_operator_custom] = ACTIONS(4853), + [sym__disjunction_operator_custom] = ACTIONS(4853), + [sym__nil_coalescing_operator_custom] = ACTIONS(4853), + [sym__eq_eq_custom] = ACTIONS(4853), + [sym__plus_then_ws] = ACTIONS(4853), + [sym__minus_then_ws] = ACTIONS(4853), + [sym_bang] = ACTIONS(4853), + [sym__as_custom] = ACTIONS(4853), + [sym__as_quest_custom] = ACTIONS(4853), + [sym__as_bang_custom] = ACTIONS(4853), + }, + [1181] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4861), + [aux_sym_simple_identifier_token2] = ACTIONS(4863), + [aux_sym_simple_identifier_token3] = ACTIONS(4863), + [aux_sym_simple_identifier_token4] = ACTIONS(4863), + [anon_sym_COMMA] = ACTIONS(4863), + [anon_sym_LPAREN] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_QMARK] = ACTIONS(4861), + [sym__immediate_quest] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), + [anon_sym_async] = ACTIONS(4861), + [aux_sym_custom_operator_token1] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4861), + [anon_sym_GT] = ACTIONS(4861), + [anon_sym_LBRACE] = ACTIONS(4863), + [anon_sym_RBRACE] = ACTIONS(4863), + [anon_sym_case] = ACTIONS(4861), + [anon_sym_PLUS_EQ] = ACTIONS(4861), + [anon_sym_DASH_EQ] = ACTIONS(4861), + [anon_sym_STAR_EQ] = ACTIONS(4861), + [anon_sym_SLASH_EQ] = ACTIONS(4861), + [anon_sym_PERCENT_EQ] = ACTIONS(4861), + [anon_sym_EQ] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4861), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4861), + [anon_sym_PLUS] = ACTIONS(4861), + [anon_sym_DASH] = ACTIONS(4861), + [anon_sym_STAR] = ACTIONS(4861), + [anon_sym_SLASH] = ACTIONS(4861), + [anon_sym_PERCENT] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_CARET] = ACTIONS(4861), + [anon_sym_LT_LT] = ACTIONS(4861), + [anon_sym_GT_GT] = ACTIONS(4861), + [anon_sym_import] = ACTIONS(4861), + [anon_sym_typealias] = ACTIONS(4861), + [anon_sym_struct] = ACTIONS(4861), + [anon_sym_class] = ACTIONS(4861), + [anon_sym_enum] = ACTIONS(4861), + [anon_sym_protocol] = ACTIONS(4861), + [anon_sym_let] = ACTIONS(4861), + [anon_sym_var] = ACTIONS(4861), + [anon_sym_func] = ACTIONS(4861), + [anon_sym_extension] = ACTIONS(4861), + [anon_sym_indirect] = ACTIONS(4861), + [anon_sym_init] = ACTIONS(4861), + [anon_sym_SEMI] = ACTIONS(4863), + [anon_sym_deinit] = ACTIONS(4861), + [anon_sym_subscript] = ACTIONS(4861), + [anon_sym_prefix] = ACTIONS(4861), + [anon_sym_infix] = ACTIONS(4861), + [anon_sym_postfix] = ACTIONS(4861), + [anon_sym_precedencegroup] = ACTIONS(4861), + [anon_sym_associatedtype] = ACTIONS(4861), + [anon_sym_AT] = ACTIONS(4861), + [sym_property_behavior_modifier] = ACTIONS(4861), + [anon_sym_override] = ACTIONS(4861), + [anon_sym_convenience] = ACTIONS(4861), + [anon_sym_required] = ACTIONS(4861), + [anon_sym_public] = ACTIONS(4861), + [anon_sym_private] = ACTIONS(4861), + [anon_sym_internal] = ACTIONS(4861), + [anon_sym_fileprivate] = ACTIONS(4861), + [anon_sym_open] = ACTIONS(4861), + [anon_sym_mutating] = ACTIONS(4861), + [anon_sym_nonmutating] = ACTIONS(4861), + [anon_sym_static] = ACTIONS(4861), + [anon_sym_dynamic] = ACTIONS(4861), + [anon_sym_optional] = ACTIONS(4861), + [anon_sym_final] = ACTIONS(4861), + [anon_sym_inout] = ACTIONS(4861), + [anon_sym_ATescaping] = ACTIONS(4863), + [anon_sym_ATautoclosure] = ACTIONS(4863), + [anon_sym_weak] = ACTIONS(4861), + [anon_sym_unowned] = ACTIONS(4861), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4863), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4863), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4863), + [sym__three_dot_operator_custom] = ACTIONS(4863), + [sym__open_ended_range_operator_custom] = ACTIONS(4863), + [sym__conjunction_operator_custom] = ACTIONS(4863), + [sym__disjunction_operator_custom] = ACTIONS(4863), + [sym__nil_coalescing_operator_custom] = ACTIONS(4863), + [sym__eq_eq_custom] = ACTIONS(4863), + [sym__plus_then_ws] = ACTIONS(4863), + [sym__minus_then_ws] = ACTIONS(4863), + [sym_bang] = ACTIONS(4863), + [sym__as_custom] = ACTIONS(4863), + [sym__as_quest_custom] = ACTIONS(4863), + [sym__as_bang_custom] = ACTIONS(4863), + }, + [1182] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4865), + [aux_sym_simple_identifier_token2] = ACTIONS(4867), + [aux_sym_simple_identifier_token3] = ACTIONS(4867), + [aux_sym_simple_identifier_token4] = ACTIONS(4867), + [anon_sym_COMMA] = ACTIONS(4867), + [anon_sym_LPAREN] = ACTIONS(4867), + [anon_sym_LBRACK] = ACTIONS(4867), + [anon_sym_QMARK] = ACTIONS(4865), + [sym__immediate_quest] = ACTIONS(4865), + [anon_sym_AMP] = ACTIONS(4865), + [anon_sym_async] = ACTIONS(4865), + [aux_sym_custom_operator_token1] = ACTIONS(4865), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_LBRACE] = ACTIONS(4867), + [anon_sym_RBRACE] = ACTIONS(4867), + [anon_sym_case] = ACTIONS(4865), + [anon_sym_PLUS_EQ] = ACTIONS(4865), + [anon_sym_DASH_EQ] = ACTIONS(4865), + [anon_sym_STAR_EQ] = ACTIONS(4865), + [anon_sym_SLASH_EQ] = ACTIONS(4865), + [anon_sym_PERCENT_EQ] = ACTIONS(4865), + [anon_sym_EQ] = ACTIONS(4865), + [anon_sym_BANG_EQ] = ACTIONS(4865), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4865), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4865), + [anon_sym_LT_EQ] = ACTIONS(4865), + [anon_sym_GT_EQ] = ACTIONS(4865), + [anon_sym_is] = ACTIONS(4865), + [anon_sym_PLUS] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4865), + [anon_sym_STAR] = ACTIONS(4865), + [anon_sym_SLASH] = ACTIONS(4865), + [anon_sym_PERCENT] = ACTIONS(4865), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_PIPE] = ACTIONS(4865), + [anon_sym_CARET] = ACTIONS(4865), + [anon_sym_LT_LT] = ACTIONS(4865), + [anon_sym_GT_GT] = ACTIONS(4865), + [anon_sym_import] = ACTIONS(4865), + [anon_sym_typealias] = ACTIONS(4865), + [anon_sym_struct] = ACTIONS(4865), + [anon_sym_class] = ACTIONS(4865), + [anon_sym_enum] = ACTIONS(4865), + [anon_sym_protocol] = ACTIONS(4865), + [anon_sym_let] = ACTIONS(4865), + [anon_sym_var] = ACTIONS(4865), + [anon_sym_func] = ACTIONS(4865), + [anon_sym_extension] = ACTIONS(4865), + [anon_sym_indirect] = ACTIONS(4865), + [anon_sym_init] = ACTIONS(4865), + [anon_sym_SEMI] = ACTIONS(4867), + [anon_sym_deinit] = ACTIONS(4865), + [anon_sym_subscript] = ACTIONS(4865), + [anon_sym_prefix] = ACTIONS(4865), + [anon_sym_infix] = ACTIONS(4865), + [anon_sym_postfix] = ACTIONS(4865), + [anon_sym_precedencegroup] = ACTIONS(4865), + [anon_sym_associatedtype] = ACTIONS(4865), + [anon_sym_AT] = ACTIONS(4865), + [sym_property_behavior_modifier] = ACTIONS(4865), + [anon_sym_override] = ACTIONS(4865), + [anon_sym_convenience] = ACTIONS(4865), + [anon_sym_required] = ACTIONS(4865), + [anon_sym_public] = ACTIONS(4865), + [anon_sym_private] = ACTIONS(4865), + [anon_sym_internal] = ACTIONS(4865), + [anon_sym_fileprivate] = ACTIONS(4865), + [anon_sym_open] = ACTIONS(4865), + [anon_sym_mutating] = ACTIONS(4865), + [anon_sym_nonmutating] = ACTIONS(4865), + [anon_sym_static] = ACTIONS(4865), + [anon_sym_dynamic] = ACTIONS(4865), + [anon_sym_optional] = ACTIONS(4865), + [anon_sym_final] = ACTIONS(4865), + [anon_sym_inout] = ACTIONS(4865), + [anon_sym_ATescaping] = ACTIONS(4867), + [anon_sym_ATautoclosure] = ACTIONS(4867), + [anon_sym_weak] = ACTIONS(4865), + [anon_sym_unowned] = ACTIONS(4865), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4867), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4867), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4867), + [sym__three_dot_operator_custom] = ACTIONS(4867), + [sym__open_ended_range_operator_custom] = ACTIONS(4867), + [sym__conjunction_operator_custom] = ACTIONS(4867), + [sym__disjunction_operator_custom] = ACTIONS(4867), + [sym__nil_coalescing_operator_custom] = ACTIONS(4867), + [sym__eq_eq_custom] = ACTIONS(4867), + [sym__plus_then_ws] = ACTIONS(4867), + [sym__minus_then_ws] = ACTIONS(4867), + [sym_bang] = ACTIONS(4867), + [sym__as_custom] = ACTIONS(4867), + [sym__as_quest_custom] = ACTIONS(4867), + [sym__as_bang_custom] = ACTIONS(4867), + }, + [1183] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4869), + [aux_sym_simple_identifier_token2] = ACTIONS(4871), + [aux_sym_simple_identifier_token3] = ACTIONS(4871), + [aux_sym_simple_identifier_token4] = ACTIONS(4871), + [anon_sym_COMMA] = ACTIONS(4871), + [anon_sym_LPAREN] = ACTIONS(4871), + [anon_sym_LBRACK] = ACTIONS(4871), + [anon_sym_QMARK] = ACTIONS(4869), + [sym__immediate_quest] = ACTIONS(4869), + [anon_sym_AMP] = ACTIONS(4869), + [anon_sym_async] = ACTIONS(4869), + [aux_sym_custom_operator_token1] = ACTIONS(4869), + [anon_sym_LT] = ACTIONS(4869), + [anon_sym_GT] = ACTIONS(4869), + [anon_sym_LBRACE] = ACTIONS(4871), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_case] = ACTIONS(4869), + [anon_sym_PLUS_EQ] = ACTIONS(4869), + [anon_sym_DASH_EQ] = ACTIONS(4869), + [anon_sym_STAR_EQ] = ACTIONS(4869), + [anon_sym_SLASH_EQ] = ACTIONS(4869), + [anon_sym_PERCENT_EQ] = ACTIONS(4869), + [anon_sym_EQ] = ACTIONS(4869), + [anon_sym_BANG_EQ] = ACTIONS(4869), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4869), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4869), + [anon_sym_LT_EQ] = ACTIONS(4869), + [anon_sym_GT_EQ] = ACTIONS(4869), + [anon_sym_is] = ACTIONS(4869), + [anon_sym_PLUS] = ACTIONS(4869), + [anon_sym_DASH] = ACTIONS(4869), + [anon_sym_STAR] = ACTIONS(4869), + [anon_sym_SLASH] = ACTIONS(4869), + [anon_sym_PERCENT] = ACTIONS(4869), + [anon_sym_PLUS_PLUS] = ACTIONS(4869), + [anon_sym_DASH_DASH] = ACTIONS(4869), + [anon_sym_PIPE] = ACTIONS(4869), + [anon_sym_CARET] = ACTIONS(4869), + [anon_sym_LT_LT] = ACTIONS(4869), + [anon_sym_GT_GT] = ACTIONS(4869), + [anon_sym_import] = ACTIONS(4869), + [anon_sym_typealias] = ACTIONS(4869), + [anon_sym_struct] = ACTIONS(4869), + [anon_sym_class] = ACTIONS(4869), + [anon_sym_enum] = ACTIONS(4869), + [anon_sym_protocol] = ACTIONS(4869), + [anon_sym_let] = ACTIONS(4869), + [anon_sym_var] = ACTIONS(4869), + [anon_sym_func] = ACTIONS(4869), + [anon_sym_extension] = ACTIONS(4869), + [anon_sym_indirect] = ACTIONS(4869), + [anon_sym_init] = ACTIONS(4869), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_deinit] = ACTIONS(4869), + [anon_sym_subscript] = ACTIONS(4869), + [anon_sym_prefix] = ACTIONS(4869), + [anon_sym_infix] = ACTIONS(4869), + [anon_sym_postfix] = ACTIONS(4869), + [anon_sym_precedencegroup] = ACTIONS(4869), + [anon_sym_associatedtype] = ACTIONS(4869), + [anon_sym_AT] = ACTIONS(4869), + [sym_property_behavior_modifier] = ACTIONS(4869), + [anon_sym_override] = ACTIONS(4869), + [anon_sym_convenience] = ACTIONS(4869), + [anon_sym_required] = ACTIONS(4869), + [anon_sym_public] = ACTIONS(4869), + [anon_sym_private] = ACTIONS(4869), + [anon_sym_internal] = ACTIONS(4869), + [anon_sym_fileprivate] = ACTIONS(4869), + [anon_sym_open] = ACTIONS(4869), + [anon_sym_mutating] = ACTIONS(4869), + [anon_sym_nonmutating] = ACTIONS(4869), + [anon_sym_static] = ACTIONS(4869), + [anon_sym_dynamic] = ACTIONS(4869), + [anon_sym_optional] = ACTIONS(4869), + [anon_sym_final] = ACTIONS(4869), + [anon_sym_inout] = ACTIONS(4869), + [anon_sym_ATescaping] = ACTIONS(4871), + [anon_sym_ATautoclosure] = ACTIONS(4871), + [anon_sym_weak] = ACTIONS(4869), + [anon_sym_unowned] = ACTIONS(4869), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4871), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4871), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4871), + [sym__three_dot_operator_custom] = ACTIONS(4871), + [sym__open_ended_range_operator_custom] = ACTIONS(4871), + [sym__conjunction_operator_custom] = ACTIONS(4871), + [sym__disjunction_operator_custom] = ACTIONS(4871), + [sym__nil_coalescing_operator_custom] = ACTIONS(4871), + [sym__eq_eq_custom] = ACTIONS(4871), + [sym__plus_then_ws] = ACTIONS(4871), + [sym__minus_then_ws] = ACTIONS(4871), + [sym_bang] = ACTIONS(4871), + [sym__as_custom] = ACTIONS(4871), + [sym__as_quest_custom] = ACTIONS(4871), + [sym__as_bang_custom] = ACTIONS(4871), + }, + [1184] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4873), + [aux_sym_simple_identifier_token2] = ACTIONS(4875), + [aux_sym_simple_identifier_token3] = ACTIONS(4875), + [aux_sym_simple_identifier_token4] = ACTIONS(4875), + [anon_sym_COMMA] = ACTIONS(4875), + [anon_sym_LPAREN] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4875), + [anon_sym_QMARK] = ACTIONS(4873), + [sym__immediate_quest] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), + [anon_sym_async] = ACTIONS(4873), + [aux_sym_custom_operator_token1] = ACTIONS(4873), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_LBRACE] = ACTIONS(4875), + [anon_sym_RBRACE] = ACTIONS(4875), + [anon_sym_case] = ACTIONS(4873), + [anon_sym_PLUS_EQ] = ACTIONS(4873), + [anon_sym_DASH_EQ] = ACTIONS(4873), + [anon_sym_STAR_EQ] = ACTIONS(4873), + [anon_sym_SLASH_EQ] = ACTIONS(4873), + [anon_sym_PERCENT_EQ] = ACTIONS(4873), + [anon_sym_EQ] = ACTIONS(4873), + [anon_sym_BANG_EQ] = ACTIONS(4873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4873), + [anon_sym_LT_EQ] = ACTIONS(4873), + [anon_sym_GT_EQ] = ACTIONS(4873), + [anon_sym_is] = ACTIONS(4873), + [anon_sym_PLUS] = ACTIONS(4873), + [anon_sym_DASH] = ACTIONS(4873), + [anon_sym_STAR] = ACTIONS(4873), + [anon_sym_SLASH] = ACTIONS(4873), + [anon_sym_PERCENT] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4873), + [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_CARET] = ACTIONS(4873), + [anon_sym_LT_LT] = ACTIONS(4873), + [anon_sym_GT_GT] = ACTIONS(4873), + [anon_sym_import] = ACTIONS(4873), + [anon_sym_typealias] = ACTIONS(4873), + [anon_sym_struct] = ACTIONS(4873), + [anon_sym_class] = ACTIONS(4873), + [anon_sym_enum] = ACTIONS(4873), + [anon_sym_protocol] = ACTIONS(4873), + [anon_sym_let] = ACTIONS(4873), + [anon_sym_var] = ACTIONS(4873), + [anon_sym_func] = ACTIONS(4873), + [anon_sym_extension] = ACTIONS(4873), + [anon_sym_indirect] = ACTIONS(4873), + [anon_sym_init] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4875), + [anon_sym_deinit] = ACTIONS(4873), + [anon_sym_subscript] = ACTIONS(4873), + [anon_sym_prefix] = ACTIONS(4873), + [anon_sym_infix] = ACTIONS(4873), + [anon_sym_postfix] = ACTIONS(4873), + [anon_sym_precedencegroup] = ACTIONS(4873), + [anon_sym_associatedtype] = ACTIONS(4873), + [anon_sym_AT] = ACTIONS(4873), + [sym_property_behavior_modifier] = ACTIONS(4873), + [anon_sym_override] = ACTIONS(4873), + [anon_sym_convenience] = ACTIONS(4873), + [anon_sym_required] = ACTIONS(4873), + [anon_sym_public] = ACTIONS(4873), + [anon_sym_private] = ACTIONS(4873), + [anon_sym_internal] = ACTIONS(4873), + [anon_sym_fileprivate] = ACTIONS(4873), + [anon_sym_open] = ACTIONS(4873), + [anon_sym_mutating] = ACTIONS(4873), + [anon_sym_nonmutating] = ACTIONS(4873), + [anon_sym_static] = ACTIONS(4873), + [anon_sym_dynamic] = ACTIONS(4873), + [anon_sym_optional] = ACTIONS(4873), + [anon_sym_final] = ACTIONS(4873), + [anon_sym_inout] = ACTIONS(4873), + [anon_sym_ATescaping] = ACTIONS(4875), + [anon_sym_ATautoclosure] = ACTIONS(4875), + [anon_sym_weak] = ACTIONS(4873), + [anon_sym_unowned] = ACTIONS(4873), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4875), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4875), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4875), + [sym__three_dot_operator_custom] = ACTIONS(4875), + [sym__open_ended_range_operator_custom] = ACTIONS(4875), + [sym__conjunction_operator_custom] = ACTIONS(4875), + [sym__disjunction_operator_custom] = ACTIONS(4875), + [sym__nil_coalescing_operator_custom] = ACTIONS(4875), + [sym__eq_eq_custom] = ACTIONS(4875), + [sym__plus_then_ws] = ACTIONS(4875), + [sym__minus_then_ws] = ACTIONS(4875), + [sym_bang] = ACTIONS(4875), + [sym__as_custom] = ACTIONS(4875), + [sym__as_quest_custom] = ACTIONS(4875), + [sym__as_bang_custom] = ACTIONS(4875), + }, + [1185] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4877), + [aux_sym_simple_identifier_token2] = ACTIONS(4879), + [aux_sym_simple_identifier_token3] = ACTIONS(4879), + [aux_sym_simple_identifier_token4] = ACTIONS(4879), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_QMARK] = ACTIONS(4877), + [sym__immediate_quest] = ACTIONS(4877), + [anon_sym_AMP] = ACTIONS(4877), + [anon_sym_async] = ACTIONS(4877), + [aux_sym_custom_operator_token1] = ACTIONS(4877), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_case] = ACTIONS(4877), + [anon_sym_PLUS_EQ] = ACTIONS(4877), + [anon_sym_DASH_EQ] = ACTIONS(4877), + [anon_sym_STAR_EQ] = ACTIONS(4877), + [anon_sym_SLASH_EQ] = ACTIONS(4877), + [anon_sym_PERCENT_EQ] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4877), + [anon_sym_LT_EQ] = ACTIONS(4877), + [anon_sym_GT_EQ] = ACTIONS(4877), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_PLUS_PLUS] = ACTIONS(4877), + [anon_sym_DASH_DASH] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4877), + [anon_sym_CARET] = ACTIONS(4877), + [anon_sym_LT_LT] = ACTIONS(4877), + [anon_sym_GT_GT] = ACTIONS(4877), + [anon_sym_import] = ACTIONS(4877), + [anon_sym_typealias] = ACTIONS(4877), + [anon_sym_struct] = ACTIONS(4877), + [anon_sym_class] = ACTIONS(4877), + [anon_sym_enum] = ACTIONS(4877), + [anon_sym_protocol] = ACTIONS(4877), + [anon_sym_let] = ACTIONS(4877), + [anon_sym_var] = ACTIONS(4877), + [anon_sym_func] = ACTIONS(4877), + [anon_sym_extension] = ACTIONS(4877), + [anon_sym_indirect] = ACTIONS(4877), + [anon_sym_init] = ACTIONS(4877), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_deinit] = ACTIONS(4877), + [anon_sym_subscript] = ACTIONS(4877), + [anon_sym_prefix] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_postfix] = ACTIONS(4877), + [anon_sym_precedencegroup] = ACTIONS(4877), + [anon_sym_associatedtype] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4877), + [sym_property_behavior_modifier] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_convenience] = ACTIONS(4877), + [anon_sym_required] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_fileprivate] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_mutating] = ACTIONS(4877), + [anon_sym_nonmutating] = ACTIONS(4877), + [anon_sym_static] = ACTIONS(4877), + [anon_sym_dynamic] = ACTIONS(4877), + [anon_sym_optional] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_inout] = ACTIONS(4877), + [anon_sym_ATescaping] = ACTIONS(4879), + [anon_sym_ATautoclosure] = ACTIONS(4879), + [anon_sym_weak] = ACTIONS(4877), + [anon_sym_unowned] = ACTIONS(4877), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4879), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4879), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4879), + [sym__three_dot_operator_custom] = ACTIONS(4879), + [sym__open_ended_range_operator_custom] = ACTIONS(4879), + [sym__conjunction_operator_custom] = ACTIONS(4879), + [sym__disjunction_operator_custom] = ACTIONS(4879), + [sym__nil_coalescing_operator_custom] = ACTIONS(4879), + [sym__eq_eq_custom] = ACTIONS(4879), + [sym__plus_then_ws] = ACTIONS(4879), + [sym__minus_then_ws] = ACTIONS(4879), + [sym_bang] = ACTIONS(4879), + [sym__as_custom] = ACTIONS(4879), + [sym__as_quest_custom] = ACTIONS(4879), + [sym__as_bang_custom] = ACTIONS(4879), + }, + [1186] = { + [sym_type_arguments] = STATE(2302), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4881), + [anon_sym_COMMA] = ACTIONS(4881), + [anon_sym_COLON] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_LBRACK] = ACTIONS(4881), + [anon_sym_RBRACK] = ACTIONS(4881), + [anon_sym_QMARK] = ACTIONS(4886), + [sym__immediate_quest] = ACTIONS(4886), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_async] = ACTIONS(4881), + [aux_sym_custom_operator_token1] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4888), + [anon_sym_GT] = ACTIONS(4886), + [anon_sym_LBRACE] = ACTIONS(4883), + [anon_sym_RBRACE] = ACTIONS(4881), + [anon_sym_case] = ACTIONS(4881), + [anon_sym_PLUS_EQ] = ACTIONS(4891), + [anon_sym_DASH_EQ] = ACTIONS(4891), + [anon_sym_STAR_EQ] = ACTIONS(4891), + [anon_sym_SLASH_EQ] = ACTIONS(4891), + [anon_sym_PERCENT_EQ] = ACTIONS(4891), + [anon_sym_EQ] = ACTIONS(4891), + [anon_sym_BANG_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4886), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(4881), + [anon_sym_PLUS] = ACTIONS(4886), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_STAR] = ACTIONS(4886), + [anon_sym_SLASH] = ACTIONS(4886), + [anon_sym_PERCENT] = ACTIONS(4886), + [anon_sym_PLUS_PLUS] = ACTIONS(4886), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_PIPE] = ACTIONS(4886), + [anon_sym_CARET] = ACTIONS(4886), + [anon_sym_LT_LT] = ACTIONS(4886), + [anon_sym_GT_GT] = ACTIONS(4886), + [anon_sym_import] = ACTIONS(4881), + [anon_sym_typealias] = ACTIONS(4881), + [anon_sym_struct] = ACTIONS(4881), + [anon_sym_class] = ACTIONS(4881), + [anon_sym_enum] = ACTIONS(4881), + [anon_sym_protocol] = ACTIONS(4881), + [anon_sym_let] = ACTIONS(4881), + [anon_sym_var] = ACTIONS(4881), + [anon_sym_func] = ACTIONS(4881), + [anon_sym_extension] = ACTIONS(4881), + [anon_sym_indirect] = ACTIONS(4881), + [anon_sym_init] = ACTIONS(4881), + [anon_sym_SEMI] = ACTIONS(4881), + [anon_sym_deinit] = ACTIONS(4881), + [anon_sym_subscript] = ACTIONS(4881), + [anon_sym_prefix] = ACTIONS(4881), + [anon_sym_infix] = ACTIONS(4881), + [anon_sym_postfix] = ACTIONS(4881), + [anon_sym_precedencegroup] = ACTIONS(4881), + [anon_sym_associatedtype] = ACTIONS(4881), + [anon_sym_AT] = ACTIONS(4886), + [sym_property_behavior_modifier] = ACTIONS(4881), + [anon_sym_override] = ACTIONS(4881), + [anon_sym_convenience] = ACTIONS(4881), + [anon_sym_required] = ACTIONS(4881), + [anon_sym_public] = ACTIONS(4881), + [anon_sym_private] = ACTIONS(4881), + [anon_sym_internal] = ACTIONS(4881), + [anon_sym_fileprivate] = ACTIONS(4881), + [anon_sym_open] = ACTIONS(4881), + [anon_sym_mutating] = ACTIONS(4881), + [anon_sym_nonmutating] = ACTIONS(4881), + [anon_sym_static] = ACTIONS(4881), + [anon_sym_dynamic] = ACTIONS(4881), + [anon_sym_optional] = ACTIONS(4881), + [anon_sym_final] = ACTIONS(4881), + [anon_sym_inout] = ACTIONS(4881), + [anon_sym_ATescaping] = ACTIONS(4881), + [anon_sym_ATautoclosure] = ACTIONS(4881), + [anon_sym_weak] = ACTIONS(4881), + [anon_sym_unowned] = ACTIONS(4886), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4881), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4881), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4883), + [sym__three_dot_operator_custom] = ACTIONS(4881), + [sym__open_ended_range_operator_custom] = ACTIONS(4881), + [sym__conjunction_operator_custom] = ACTIONS(4881), + [sym__disjunction_operator_custom] = ACTIONS(4881), + [sym__nil_coalescing_operator_custom] = ACTIONS(4881), + [sym__eq_eq_custom] = ACTIONS(4881), + [sym__plus_then_ws] = ACTIONS(4881), + [sym__minus_then_ws] = ACTIONS(4881), + [sym_bang] = ACTIONS(4881), + [sym__as_custom] = ACTIONS(4881), + [sym__as_quest_custom] = ACTIONS(4881), + [sym__as_bang_custom] = ACTIONS(4881), + }, + [1187] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4893), + [aux_sym_simple_identifier_token2] = ACTIONS(4895), + [aux_sym_simple_identifier_token3] = ACTIONS(4895), + [aux_sym_simple_identifier_token4] = ACTIONS(4895), + [anon_sym_COMMA] = ACTIONS(4895), + [anon_sym_LPAREN] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4895), + [anon_sym_QMARK] = ACTIONS(4893), + [sym__immediate_quest] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4893), + [aux_sym_custom_operator_token1] = ACTIONS(4893), + [anon_sym_LT] = ACTIONS(4893), + [anon_sym_GT] = ACTIONS(4893), + [anon_sym_LBRACE] = ACTIONS(4895), + [anon_sym_RBRACE] = ACTIONS(4895), + [anon_sym_case] = ACTIONS(4893), + [anon_sym_PLUS_EQ] = ACTIONS(4893), + [anon_sym_DASH_EQ] = ACTIONS(4893), + [anon_sym_STAR_EQ] = ACTIONS(4893), + [anon_sym_SLASH_EQ] = ACTIONS(4893), + [anon_sym_PERCENT_EQ] = ACTIONS(4893), + [anon_sym_EQ] = ACTIONS(4893), + [anon_sym_BANG_EQ] = ACTIONS(4893), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4893), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4893), + [anon_sym_LT_EQ] = ACTIONS(4893), + [anon_sym_GT_EQ] = ACTIONS(4893), + [anon_sym_is] = ACTIONS(4893), + [anon_sym_PLUS] = ACTIONS(4893), + [anon_sym_DASH] = ACTIONS(4893), + [anon_sym_STAR] = ACTIONS(4893), + [anon_sym_SLASH] = ACTIONS(4893), + [anon_sym_PERCENT] = ACTIONS(4893), + [anon_sym_PLUS_PLUS] = ACTIONS(4893), + [anon_sym_DASH_DASH] = ACTIONS(4893), + [anon_sym_PIPE] = ACTIONS(4893), + [anon_sym_CARET] = ACTIONS(4893), + [anon_sym_LT_LT] = ACTIONS(4893), + [anon_sym_GT_GT] = ACTIONS(4893), + [anon_sym_import] = ACTIONS(4893), + [anon_sym_typealias] = ACTIONS(4893), + [anon_sym_struct] = ACTIONS(4893), + [anon_sym_class] = ACTIONS(4893), + [anon_sym_enum] = ACTIONS(4893), + [anon_sym_protocol] = ACTIONS(4893), + [anon_sym_let] = ACTIONS(4893), + [anon_sym_var] = ACTIONS(4893), + [anon_sym_func] = ACTIONS(4893), + [anon_sym_extension] = ACTIONS(4893), + [anon_sym_indirect] = ACTIONS(4893), + [anon_sym_init] = ACTIONS(4893), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_deinit] = ACTIONS(4893), + [anon_sym_subscript] = ACTIONS(4893), + [anon_sym_prefix] = ACTIONS(4893), + [anon_sym_infix] = ACTIONS(4893), + [anon_sym_postfix] = ACTIONS(4893), + [anon_sym_precedencegroup] = ACTIONS(4893), + [anon_sym_associatedtype] = ACTIONS(4893), + [anon_sym_AT] = ACTIONS(4893), + [sym_property_behavior_modifier] = ACTIONS(4893), + [anon_sym_override] = ACTIONS(4893), + [anon_sym_convenience] = ACTIONS(4893), + [anon_sym_required] = ACTIONS(4893), + [anon_sym_public] = ACTIONS(4893), + [anon_sym_private] = ACTIONS(4893), + [anon_sym_internal] = ACTIONS(4893), + [anon_sym_fileprivate] = ACTIONS(4893), + [anon_sym_open] = ACTIONS(4893), + [anon_sym_mutating] = ACTIONS(4893), + [anon_sym_nonmutating] = ACTIONS(4893), + [anon_sym_static] = ACTIONS(4893), + [anon_sym_dynamic] = ACTIONS(4893), + [anon_sym_optional] = ACTIONS(4893), + [anon_sym_final] = ACTIONS(4893), + [anon_sym_inout] = ACTIONS(4893), + [anon_sym_ATescaping] = ACTIONS(4895), + [anon_sym_ATautoclosure] = ACTIONS(4895), + [anon_sym_weak] = ACTIONS(4893), + [anon_sym_unowned] = ACTIONS(4893), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4895), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4895), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4895), + [sym__three_dot_operator_custom] = ACTIONS(4895), + [sym__open_ended_range_operator_custom] = ACTIONS(4895), + [sym__conjunction_operator_custom] = ACTIONS(4895), + [sym__disjunction_operator_custom] = ACTIONS(4895), + [sym__nil_coalescing_operator_custom] = ACTIONS(4895), + [sym__eq_eq_custom] = ACTIONS(4895), + [sym__plus_then_ws] = ACTIONS(4895), + [sym__minus_then_ws] = ACTIONS(4895), + [sym_bang] = ACTIONS(4895), + [sym__as_custom] = ACTIONS(4895), + [sym__as_quest_custom] = ACTIONS(4895), + [sym__as_bang_custom] = ACTIONS(4895), + }, + [1188] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4897), + [aux_sym_simple_identifier_token2] = ACTIONS(4899), + [aux_sym_simple_identifier_token3] = ACTIONS(4899), + [aux_sym_simple_identifier_token4] = ACTIONS(4899), + [anon_sym_COMMA] = ACTIONS(4899), + [anon_sym_LPAREN] = ACTIONS(4899), + [anon_sym_LBRACK] = ACTIONS(4899), + [anon_sym_QMARK] = ACTIONS(4897), + [sym__immediate_quest] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), + [anon_sym_async] = ACTIONS(4897), + [aux_sym_custom_operator_token1] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_LBRACE] = ACTIONS(4899), + [anon_sym_RBRACE] = ACTIONS(4899), + [anon_sym_case] = ACTIONS(4897), + [anon_sym_PLUS_EQ] = ACTIONS(4897), + [anon_sym_DASH_EQ] = ACTIONS(4897), + [anon_sym_STAR_EQ] = ACTIONS(4897), + [anon_sym_SLASH_EQ] = ACTIONS(4897), + [anon_sym_PERCENT_EQ] = ACTIONS(4897), + [anon_sym_EQ] = ACTIONS(4897), + [anon_sym_BANG_EQ] = ACTIONS(4897), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4897), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4897), + [anon_sym_LT_EQ] = ACTIONS(4897), + [anon_sym_GT_EQ] = ACTIONS(4897), + [anon_sym_is] = ACTIONS(4897), + [anon_sym_PLUS] = ACTIONS(4897), + [anon_sym_DASH] = ACTIONS(4897), + [anon_sym_STAR] = ACTIONS(4897), + [anon_sym_SLASH] = ACTIONS(4897), + [anon_sym_PERCENT] = ACTIONS(4897), + [anon_sym_PLUS_PLUS] = ACTIONS(4897), + [anon_sym_DASH_DASH] = ACTIONS(4897), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_CARET] = ACTIONS(4897), + [anon_sym_LT_LT] = ACTIONS(4897), + [anon_sym_GT_GT] = ACTIONS(4897), + [anon_sym_import] = ACTIONS(4897), + [anon_sym_typealias] = ACTIONS(4897), + [anon_sym_struct] = ACTIONS(4897), + [anon_sym_class] = ACTIONS(4897), + [anon_sym_enum] = ACTIONS(4897), + [anon_sym_protocol] = ACTIONS(4897), + [anon_sym_let] = ACTIONS(4897), + [anon_sym_var] = ACTIONS(4897), + [anon_sym_func] = ACTIONS(4897), + [anon_sym_extension] = ACTIONS(4897), + [anon_sym_indirect] = ACTIONS(4897), + [anon_sym_init] = ACTIONS(4897), + [anon_sym_SEMI] = ACTIONS(4899), + [anon_sym_deinit] = ACTIONS(4897), + [anon_sym_subscript] = ACTIONS(4897), + [anon_sym_prefix] = ACTIONS(4897), + [anon_sym_infix] = ACTIONS(4897), + [anon_sym_postfix] = ACTIONS(4897), + [anon_sym_precedencegroup] = ACTIONS(4897), + [anon_sym_associatedtype] = ACTIONS(4897), + [anon_sym_AT] = ACTIONS(4897), + [sym_property_behavior_modifier] = ACTIONS(4897), + [anon_sym_override] = ACTIONS(4897), + [anon_sym_convenience] = ACTIONS(4897), + [anon_sym_required] = ACTIONS(4897), + [anon_sym_public] = ACTIONS(4897), + [anon_sym_private] = ACTIONS(4897), + [anon_sym_internal] = ACTIONS(4897), + [anon_sym_fileprivate] = ACTIONS(4897), + [anon_sym_open] = ACTIONS(4897), + [anon_sym_mutating] = ACTIONS(4897), + [anon_sym_nonmutating] = ACTIONS(4897), + [anon_sym_static] = ACTIONS(4897), + [anon_sym_dynamic] = ACTIONS(4897), + [anon_sym_optional] = ACTIONS(4897), + [anon_sym_final] = ACTIONS(4897), + [anon_sym_inout] = ACTIONS(4897), + [anon_sym_ATescaping] = ACTIONS(4899), + [anon_sym_ATautoclosure] = ACTIONS(4899), + [anon_sym_weak] = ACTIONS(4897), + [anon_sym_unowned] = ACTIONS(4897), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4899), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4899), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4899), + [sym__three_dot_operator_custom] = ACTIONS(4899), + [sym__open_ended_range_operator_custom] = ACTIONS(4899), + [sym__conjunction_operator_custom] = ACTIONS(4899), + [sym__disjunction_operator_custom] = ACTIONS(4899), + [sym__nil_coalescing_operator_custom] = ACTIONS(4899), + [sym__eq_eq_custom] = ACTIONS(4899), + [sym__plus_then_ws] = ACTIONS(4899), + [sym__minus_then_ws] = ACTIONS(4899), + [sym_bang] = ACTIONS(4899), + [sym__as_custom] = ACTIONS(4899), + [sym__as_quest_custom] = ACTIONS(4899), + [sym__as_bang_custom] = ACTIONS(4899), + }, + [1189] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4901), + [anon_sym_COMMA] = ACTIONS(4901), + [anon_sym_COLON] = ACTIONS(4901), + [anon_sym_LPAREN] = ACTIONS(4901), + [anon_sym_LBRACK] = ACTIONS(4901), + [anon_sym_RBRACK] = ACTIONS(4901), + [anon_sym_QMARK] = ACTIONS(4903), + [sym__immediate_quest] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), + [anon_sym_async] = ACTIONS(4901), + [aux_sym_custom_operator_token1] = ACTIONS(4903), + [anon_sym_LT] = ACTIONS(4903), + [anon_sym_GT] = ACTIONS(4903), + [anon_sym_LBRACE] = ACTIONS(4901), + [anon_sym_RBRACE] = ACTIONS(4901), + [anon_sym_case] = ACTIONS(4901), + [anon_sym_PLUS_EQ] = ACTIONS(4903), + [anon_sym_DASH_EQ] = ACTIONS(4903), + [anon_sym_STAR_EQ] = ACTIONS(4903), + [anon_sym_SLASH_EQ] = ACTIONS(4903), + [anon_sym_PERCENT_EQ] = ACTIONS(4903), + [anon_sym_EQ] = ACTIONS(4903), + [anon_sym_BANG_EQ] = ACTIONS(4903), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4903), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4903), + [anon_sym_LT_EQ] = ACTIONS(4903), + [anon_sym_GT_EQ] = ACTIONS(4903), + [anon_sym_is] = ACTIONS(4901), + [anon_sym_PLUS] = ACTIONS(4903), + [anon_sym_DASH] = ACTIONS(4903), + [anon_sym_STAR] = ACTIONS(4903), + [anon_sym_SLASH] = ACTIONS(4903), + [anon_sym_PERCENT] = ACTIONS(4903), + [anon_sym_PLUS_PLUS] = ACTIONS(4903), + [anon_sym_DASH_DASH] = ACTIONS(4903), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_CARET] = ACTIONS(4903), + [anon_sym_LT_LT] = ACTIONS(4903), + [anon_sym_GT_GT] = ACTIONS(4903), + [anon_sym_import] = ACTIONS(4901), + [anon_sym_typealias] = ACTIONS(4901), + [anon_sym_struct] = ACTIONS(4901), + [anon_sym_class] = ACTIONS(4901), + [anon_sym_enum] = ACTIONS(4901), + [anon_sym_protocol] = ACTIONS(4901), + [anon_sym_let] = ACTIONS(4901), + [anon_sym_var] = ACTIONS(4901), + [anon_sym_func] = ACTIONS(4901), + [anon_sym_extension] = ACTIONS(4901), + [anon_sym_indirect] = ACTIONS(4901), + [anon_sym_init] = ACTIONS(4901), + [anon_sym_SEMI] = ACTIONS(4901), + [anon_sym_deinit] = ACTIONS(4901), + [anon_sym_subscript] = ACTIONS(4901), + [anon_sym_prefix] = ACTIONS(4901), + [anon_sym_infix] = ACTIONS(4901), + [anon_sym_postfix] = ACTIONS(4901), + [anon_sym_precedencegroup] = ACTIONS(4901), + [anon_sym_associatedtype] = ACTIONS(4901), + [anon_sym_AT] = ACTIONS(4903), + [sym_property_behavior_modifier] = ACTIONS(4901), + [anon_sym_override] = ACTIONS(4901), + [anon_sym_convenience] = ACTIONS(4901), + [anon_sym_required] = ACTIONS(4901), + [anon_sym_public] = ACTIONS(4901), + [anon_sym_private] = ACTIONS(4901), + [anon_sym_internal] = ACTIONS(4901), + [anon_sym_fileprivate] = ACTIONS(4901), + [anon_sym_open] = ACTIONS(4901), + [anon_sym_mutating] = ACTIONS(4901), + [anon_sym_nonmutating] = ACTIONS(4901), + [anon_sym_static] = ACTIONS(4901), + [anon_sym_dynamic] = ACTIONS(4901), + [anon_sym_optional] = ACTIONS(4901), + [anon_sym_final] = ACTIONS(4901), + [anon_sym_inout] = ACTIONS(4901), + [anon_sym_ATescaping] = ACTIONS(4901), + [anon_sym_ATautoclosure] = ACTIONS(4901), + [anon_sym_weak] = ACTIONS(4901), + [anon_sym_unowned] = ACTIONS(4903), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4901), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4901), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4901), + [sym__three_dot_operator_custom] = ACTIONS(4901), + [sym__open_ended_range_operator_custom] = ACTIONS(4901), + [sym__conjunction_operator_custom] = ACTIONS(4901), + [sym__disjunction_operator_custom] = ACTIONS(4901), + [sym__nil_coalescing_operator_custom] = ACTIONS(4901), + [sym__eq_eq_custom] = ACTIONS(4901), + [sym__plus_then_ws] = ACTIONS(4901), + [sym__minus_then_ws] = ACTIONS(4901), + [sym_bang] = ACTIONS(4901), + [sym__as_custom] = ACTIONS(4901), + [sym__as_quest_custom] = ACTIONS(4901), + [sym__as_bang_custom] = ACTIONS(4901), + }, + [1190] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4905), + [anon_sym_COMMA] = ACTIONS(4905), + [anon_sym_COLON] = ACTIONS(4905), + [anon_sym_LPAREN] = ACTIONS(4905), + [anon_sym_LBRACK] = ACTIONS(4905), + [anon_sym_RBRACK] = ACTIONS(4905), + [anon_sym_QMARK] = ACTIONS(4907), + [sym__immediate_quest] = ACTIONS(4907), + [anon_sym_AMP] = ACTIONS(4907), + [anon_sym_async] = ACTIONS(4905), + [aux_sym_custom_operator_token1] = ACTIONS(4907), + [anon_sym_LT] = ACTIONS(4907), + [anon_sym_GT] = ACTIONS(4907), + [anon_sym_LBRACE] = ACTIONS(4905), + [anon_sym_RBRACE] = ACTIONS(4905), + [anon_sym_case] = ACTIONS(4905), + [anon_sym_PLUS_EQ] = ACTIONS(4907), + [anon_sym_DASH_EQ] = ACTIONS(4907), + [anon_sym_STAR_EQ] = ACTIONS(4907), + [anon_sym_SLASH_EQ] = ACTIONS(4907), + [anon_sym_PERCENT_EQ] = ACTIONS(4907), + [anon_sym_EQ] = ACTIONS(4907), + [anon_sym_BANG_EQ] = ACTIONS(4907), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4907), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4907), + [anon_sym_LT_EQ] = ACTIONS(4907), + [anon_sym_GT_EQ] = ACTIONS(4907), + [anon_sym_is] = ACTIONS(4905), + [anon_sym_PLUS] = ACTIONS(4907), + [anon_sym_DASH] = ACTIONS(4907), + [anon_sym_STAR] = ACTIONS(4907), + [anon_sym_SLASH] = ACTIONS(4907), + [anon_sym_PERCENT] = ACTIONS(4907), + [anon_sym_PLUS_PLUS] = ACTIONS(4907), + [anon_sym_DASH_DASH] = ACTIONS(4907), + [anon_sym_PIPE] = ACTIONS(4907), + [anon_sym_CARET] = ACTIONS(4907), + [anon_sym_LT_LT] = ACTIONS(4907), + [anon_sym_GT_GT] = ACTIONS(4907), + [anon_sym_import] = ACTIONS(4905), + [anon_sym_typealias] = ACTIONS(4905), + [anon_sym_struct] = ACTIONS(4905), + [anon_sym_class] = ACTIONS(4905), + [anon_sym_enum] = ACTIONS(4905), + [anon_sym_protocol] = ACTIONS(4905), + [anon_sym_let] = ACTIONS(4905), + [anon_sym_var] = ACTIONS(4905), + [anon_sym_func] = ACTIONS(4905), + [anon_sym_extension] = ACTIONS(4905), + [anon_sym_indirect] = ACTIONS(4905), + [anon_sym_init] = ACTIONS(4905), + [anon_sym_SEMI] = ACTIONS(4905), + [anon_sym_deinit] = ACTIONS(4905), + [anon_sym_subscript] = ACTIONS(4905), + [anon_sym_prefix] = ACTIONS(4905), + [anon_sym_infix] = ACTIONS(4905), + [anon_sym_postfix] = ACTIONS(4905), + [anon_sym_precedencegroup] = ACTIONS(4905), + [anon_sym_associatedtype] = ACTIONS(4905), + [anon_sym_AT] = ACTIONS(4907), + [sym_property_behavior_modifier] = ACTIONS(4905), + [anon_sym_override] = ACTIONS(4905), + [anon_sym_convenience] = ACTIONS(4905), + [anon_sym_required] = ACTIONS(4905), + [anon_sym_public] = ACTIONS(4905), + [anon_sym_private] = ACTIONS(4905), + [anon_sym_internal] = ACTIONS(4905), + [anon_sym_fileprivate] = ACTIONS(4905), + [anon_sym_open] = ACTIONS(4905), + [anon_sym_mutating] = ACTIONS(4905), + [anon_sym_nonmutating] = ACTIONS(4905), + [anon_sym_static] = ACTIONS(4905), + [anon_sym_dynamic] = ACTIONS(4905), + [anon_sym_optional] = ACTIONS(4905), + [anon_sym_final] = ACTIONS(4905), + [anon_sym_inout] = ACTIONS(4905), + [anon_sym_ATescaping] = ACTIONS(4905), + [anon_sym_ATautoclosure] = ACTIONS(4905), + [anon_sym_weak] = ACTIONS(4905), + [anon_sym_unowned] = ACTIONS(4907), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4905), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4905), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4905), + [sym__three_dot_operator_custom] = ACTIONS(4905), + [sym__open_ended_range_operator_custom] = ACTIONS(4905), + [sym__conjunction_operator_custom] = ACTIONS(4905), + [sym__disjunction_operator_custom] = ACTIONS(4905), + [sym__nil_coalescing_operator_custom] = ACTIONS(4905), + [sym__eq_eq_custom] = ACTIONS(4905), + [sym__plus_then_ws] = ACTIONS(4905), + [sym__minus_then_ws] = ACTIONS(4905), + [sym_bang] = ACTIONS(4905), + [sym__as_custom] = ACTIONS(4905), + [sym__as_quest_custom] = ACTIONS(4905), + [sym__as_bang_custom] = ACTIONS(4905), + }, + [1191] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4909), + [anon_sym_COMMA] = ACTIONS(4909), + [anon_sym_COLON] = ACTIONS(4909), + [anon_sym_LPAREN] = ACTIONS(4909), + [anon_sym_LBRACK] = ACTIONS(4909), + [anon_sym_RBRACK] = ACTIONS(4909), + [anon_sym_QMARK] = ACTIONS(4911), + [sym__immediate_quest] = ACTIONS(4911), + [anon_sym_AMP] = ACTIONS(4911), + [anon_sym_async] = ACTIONS(4909), + [aux_sym_custom_operator_token1] = ACTIONS(4911), + [anon_sym_LT] = ACTIONS(4911), + [anon_sym_GT] = ACTIONS(4911), + [anon_sym_LBRACE] = ACTIONS(4909), + [anon_sym_RBRACE] = ACTIONS(4909), + [anon_sym_case] = ACTIONS(4909), + [anon_sym_PLUS_EQ] = ACTIONS(4911), + [anon_sym_DASH_EQ] = ACTIONS(4911), + [anon_sym_STAR_EQ] = ACTIONS(4911), + [anon_sym_SLASH_EQ] = ACTIONS(4911), + [anon_sym_PERCENT_EQ] = ACTIONS(4911), + [anon_sym_EQ] = ACTIONS(4911), + [anon_sym_BANG_EQ] = ACTIONS(4911), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4911), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4911), + [anon_sym_LT_EQ] = ACTIONS(4911), + [anon_sym_GT_EQ] = ACTIONS(4911), + [anon_sym_is] = ACTIONS(4909), + [anon_sym_PLUS] = ACTIONS(4911), + [anon_sym_DASH] = ACTIONS(4911), + [anon_sym_STAR] = ACTIONS(4911), + [anon_sym_SLASH] = ACTIONS(4911), + [anon_sym_PERCENT] = ACTIONS(4911), + [anon_sym_PLUS_PLUS] = ACTIONS(4911), + [anon_sym_DASH_DASH] = ACTIONS(4911), + [anon_sym_PIPE] = ACTIONS(4911), + [anon_sym_CARET] = ACTIONS(4911), + [anon_sym_LT_LT] = ACTIONS(4911), + [anon_sym_GT_GT] = ACTIONS(4911), + [anon_sym_import] = ACTIONS(4909), + [anon_sym_typealias] = ACTIONS(4909), + [anon_sym_struct] = ACTIONS(4909), + [anon_sym_class] = ACTIONS(4909), + [anon_sym_enum] = ACTIONS(4909), + [anon_sym_protocol] = ACTIONS(4909), + [anon_sym_let] = ACTIONS(4909), + [anon_sym_var] = ACTIONS(4909), + [anon_sym_func] = ACTIONS(4909), + [anon_sym_extension] = ACTIONS(4909), + [anon_sym_indirect] = ACTIONS(4909), + [anon_sym_init] = ACTIONS(4909), + [anon_sym_SEMI] = ACTIONS(4909), + [anon_sym_deinit] = ACTIONS(4909), + [anon_sym_subscript] = ACTIONS(4909), + [anon_sym_prefix] = ACTIONS(4909), + [anon_sym_infix] = ACTIONS(4909), + [anon_sym_postfix] = ACTIONS(4909), + [anon_sym_precedencegroup] = ACTIONS(4909), + [anon_sym_associatedtype] = ACTIONS(4909), + [anon_sym_AT] = ACTIONS(4911), + [sym_property_behavior_modifier] = ACTIONS(4909), + [anon_sym_override] = ACTIONS(4909), + [anon_sym_convenience] = ACTIONS(4909), + [anon_sym_required] = ACTIONS(4909), + [anon_sym_public] = ACTIONS(4909), + [anon_sym_private] = ACTIONS(4909), + [anon_sym_internal] = ACTIONS(4909), + [anon_sym_fileprivate] = ACTIONS(4909), + [anon_sym_open] = ACTIONS(4909), + [anon_sym_mutating] = ACTIONS(4909), + [anon_sym_nonmutating] = ACTIONS(4909), + [anon_sym_static] = ACTIONS(4909), + [anon_sym_dynamic] = ACTIONS(4909), + [anon_sym_optional] = ACTIONS(4909), + [anon_sym_final] = ACTIONS(4909), + [anon_sym_inout] = ACTIONS(4909), + [anon_sym_ATescaping] = ACTIONS(4909), + [anon_sym_ATautoclosure] = ACTIONS(4909), + [anon_sym_weak] = ACTIONS(4909), + [anon_sym_unowned] = ACTIONS(4911), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4909), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4909), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4909), + [sym__three_dot_operator_custom] = ACTIONS(4909), + [sym__open_ended_range_operator_custom] = ACTIONS(4909), + [sym__conjunction_operator_custom] = ACTIONS(4909), + [sym__disjunction_operator_custom] = ACTIONS(4909), + [sym__nil_coalescing_operator_custom] = ACTIONS(4909), + [sym__eq_eq_custom] = ACTIONS(4909), + [sym__plus_then_ws] = ACTIONS(4909), + [sym__minus_then_ws] = ACTIONS(4909), + [sym_bang] = ACTIONS(4909), + [sym__as_custom] = ACTIONS(4909), + [sym__as_quest_custom] = ACTIONS(4909), + [sym__as_bang_custom] = ACTIONS(4909), + }, + [1192] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4913), + [anon_sym_COMMA] = ACTIONS(4913), + [anon_sym_COLON] = ACTIONS(4913), + [anon_sym_LPAREN] = ACTIONS(4913), + [anon_sym_LBRACK] = ACTIONS(4913), + [anon_sym_RBRACK] = ACTIONS(4913), + [anon_sym_QMARK] = ACTIONS(4915), + [sym__immediate_quest] = ACTIONS(4915), + [anon_sym_AMP] = ACTIONS(4915), + [anon_sym_async] = ACTIONS(4913), + [aux_sym_custom_operator_token1] = ACTIONS(4915), + [anon_sym_LT] = ACTIONS(4915), + [anon_sym_GT] = ACTIONS(4915), + [anon_sym_LBRACE] = ACTIONS(4913), + [anon_sym_RBRACE] = ACTIONS(4913), + [anon_sym_case] = ACTIONS(4913), + [anon_sym_PLUS_EQ] = ACTIONS(4915), + [anon_sym_DASH_EQ] = ACTIONS(4915), + [anon_sym_STAR_EQ] = ACTIONS(4915), + [anon_sym_SLASH_EQ] = ACTIONS(4915), + [anon_sym_PERCENT_EQ] = ACTIONS(4915), + [anon_sym_EQ] = ACTIONS(4915), + [anon_sym_BANG_EQ] = ACTIONS(4915), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4915), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4915), + [anon_sym_LT_EQ] = ACTIONS(4915), + [anon_sym_GT_EQ] = ACTIONS(4915), + [anon_sym_is] = ACTIONS(4913), + [anon_sym_PLUS] = ACTIONS(4915), + [anon_sym_DASH] = ACTIONS(4915), + [anon_sym_STAR] = ACTIONS(4915), + [anon_sym_SLASH] = ACTIONS(4915), + [anon_sym_PERCENT] = ACTIONS(4915), + [anon_sym_PLUS_PLUS] = ACTIONS(4915), + [anon_sym_DASH_DASH] = ACTIONS(4915), + [anon_sym_PIPE] = ACTIONS(4915), + [anon_sym_CARET] = ACTIONS(4915), + [anon_sym_LT_LT] = ACTIONS(4915), + [anon_sym_GT_GT] = ACTIONS(4915), + [anon_sym_import] = ACTIONS(4913), + [anon_sym_typealias] = ACTIONS(4913), + [anon_sym_struct] = ACTIONS(4913), + [anon_sym_class] = ACTIONS(4913), + [anon_sym_enum] = ACTIONS(4913), + [anon_sym_protocol] = ACTIONS(4913), + [anon_sym_let] = ACTIONS(4913), + [anon_sym_var] = ACTIONS(4913), + [anon_sym_func] = ACTIONS(4913), + [anon_sym_extension] = ACTIONS(4913), + [anon_sym_indirect] = ACTIONS(4913), + [anon_sym_init] = ACTIONS(4913), + [anon_sym_SEMI] = ACTIONS(4913), + [anon_sym_deinit] = ACTIONS(4913), + [anon_sym_subscript] = ACTIONS(4913), + [anon_sym_prefix] = ACTIONS(4913), + [anon_sym_infix] = ACTIONS(4913), + [anon_sym_postfix] = ACTIONS(4913), + [anon_sym_precedencegroup] = ACTIONS(4913), + [anon_sym_associatedtype] = ACTIONS(4913), + [anon_sym_AT] = ACTIONS(4915), + [sym_property_behavior_modifier] = ACTIONS(4913), + [anon_sym_override] = ACTIONS(4913), + [anon_sym_convenience] = ACTIONS(4913), + [anon_sym_required] = ACTIONS(4913), + [anon_sym_public] = ACTIONS(4913), + [anon_sym_private] = ACTIONS(4913), + [anon_sym_internal] = ACTIONS(4913), + [anon_sym_fileprivate] = ACTIONS(4913), + [anon_sym_open] = ACTIONS(4913), + [anon_sym_mutating] = ACTIONS(4913), + [anon_sym_nonmutating] = ACTIONS(4913), + [anon_sym_static] = ACTIONS(4913), + [anon_sym_dynamic] = ACTIONS(4913), + [anon_sym_optional] = ACTIONS(4913), + [anon_sym_final] = ACTIONS(4913), + [anon_sym_inout] = ACTIONS(4913), + [anon_sym_ATescaping] = ACTIONS(4913), + [anon_sym_ATautoclosure] = ACTIONS(4913), + [anon_sym_weak] = ACTIONS(4913), + [anon_sym_unowned] = ACTIONS(4915), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4913), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4913), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4913), + [sym__three_dot_operator_custom] = ACTIONS(4913), + [sym__open_ended_range_operator_custom] = ACTIONS(4913), + [sym__conjunction_operator_custom] = ACTIONS(4913), + [sym__disjunction_operator_custom] = ACTIONS(4913), + [sym__nil_coalescing_operator_custom] = ACTIONS(4913), + [sym__eq_eq_custom] = ACTIONS(4913), + [sym__plus_then_ws] = ACTIONS(4913), + [sym__minus_then_ws] = ACTIONS(4913), + [sym_bang] = ACTIONS(4913), + [sym__as_custom] = ACTIONS(4913), + [sym__as_quest_custom] = ACTIONS(4913), + [sym__as_bang_custom] = ACTIONS(4913), + }, + [1193] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4917), + [anon_sym_COMMA] = ACTIONS(4917), + [anon_sym_COLON] = ACTIONS(4917), + [anon_sym_LPAREN] = ACTIONS(4917), + [anon_sym_LBRACK] = ACTIONS(4917), + [anon_sym_RBRACK] = ACTIONS(4917), + [anon_sym_QMARK] = ACTIONS(4920), + [sym__immediate_quest] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(4920), + [anon_sym_async] = ACTIONS(4917), + [aux_sym_custom_operator_token1] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4917), + [anon_sym_RBRACE] = ACTIONS(4917), + [anon_sym_case] = ACTIONS(4917), + [anon_sym_PLUS_EQ] = ACTIONS(4891), + [anon_sym_DASH_EQ] = ACTIONS(4891), + [anon_sym_STAR_EQ] = ACTIONS(4891), + [anon_sym_SLASH_EQ] = ACTIONS(4891), + [anon_sym_PERCENT_EQ] = ACTIONS(4891), + [anon_sym_EQ] = ACTIONS(4891), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4920), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4920), + [anon_sym_LT_EQ] = ACTIONS(4920), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_is] = ACTIONS(4917), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_PLUS_PLUS] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_CARET] = ACTIONS(4920), + [anon_sym_LT_LT] = ACTIONS(4920), + [anon_sym_GT_GT] = ACTIONS(4920), + [anon_sym_import] = ACTIONS(4917), + [anon_sym_typealias] = ACTIONS(4917), + [anon_sym_struct] = ACTIONS(4917), + [anon_sym_class] = ACTIONS(4917), + [anon_sym_enum] = ACTIONS(4917), + [anon_sym_protocol] = ACTIONS(4917), + [anon_sym_let] = ACTIONS(4917), + [anon_sym_var] = ACTIONS(4917), + [anon_sym_func] = ACTIONS(4917), + [anon_sym_extension] = ACTIONS(4917), + [anon_sym_indirect] = ACTIONS(4917), + [anon_sym_init] = ACTIONS(4917), + [anon_sym_SEMI] = ACTIONS(4917), + [anon_sym_deinit] = ACTIONS(4917), + [anon_sym_subscript] = ACTIONS(4917), + [anon_sym_prefix] = ACTIONS(4917), + [anon_sym_infix] = ACTIONS(4917), + [anon_sym_postfix] = ACTIONS(4917), + [anon_sym_precedencegroup] = ACTIONS(4917), + [anon_sym_associatedtype] = ACTIONS(4917), + [anon_sym_AT] = ACTIONS(4920), + [sym_property_behavior_modifier] = ACTIONS(4917), + [anon_sym_override] = ACTIONS(4917), + [anon_sym_convenience] = ACTIONS(4917), + [anon_sym_required] = ACTIONS(4917), + [anon_sym_public] = ACTIONS(4917), + [anon_sym_private] = ACTIONS(4917), + [anon_sym_internal] = ACTIONS(4917), + [anon_sym_fileprivate] = ACTIONS(4917), + [anon_sym_open] = ACTIONS(4917), + [anon_sym_mutating] = ACTIONS(4917), + [anon_sym_nonmutating] = ACTIONS(4917), + [anon_sym_static] = ACTIONS(4917), + [anon_sym_dynamic] = ACTIONS(4917), + [anon_sym_optional] = ACTIONS(4917), + [anon_sym_final] = ACTIONS(4917), + [anon_sym_inout] = ACTIONS(4917), + [anon_sym_ATescaping] = ACTIONS(4917), + [anon_sym_ATautoclosure] = ACTIONS(4917), + [anon_sym_weak] = ACTIONS(4917), + [anon_sym_unowned] = ACTIONS(4920), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4917), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4917), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4917), + [sym__three_dot_operator_custom] = ACTIONS(4917), + [sym__open_ended_range_operator_custom] = ACTIONS(4917), + [sym__conjunction_operator_custom] = ACTIONS(4917), + [sym__disjunction_operator_custom] = ACTIONS(4917), + [sym__nil_coalescing_operator_custom] = ACTIONS(4917), + [sym__eq_eq_custom] = ACTIONS(4917), + [sym__plus_then_ws] = ACTIONS(4917), + [sym__minus_then_ws] = ACTIONS(4917), + [sym_bang] = ACTIONS(4917), + [sym__as_custom] = ACTIONS(4917), + [sym__as_quest_custom] = ACTIONS(4917), + [sym__as_bang_custom] = ACTIONS(4917), + }, + [1194] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4923), + [anon_sym_COMMA] = ACTIONS(4923), + [anon_sym_COLON] = ACTIONS(4923), + [anon_sym_LPAREN] = ACTIONS(4923), + [anon_sym_LBRACK] = ACTIONS(4923), + [anon_sym_RBRACK] = ACTIONS(4923), + [anon_sym_QMARK] = ACTIONS(4925), + [sym__immediate_quest] = ACTIONS(4925), + [anon_sym_AMP] = ACTIONS(4925), + [anon_sym_async] = ACTIONS(4923), + [aux_sym_custom_operator_token1] = ACTIONS(4925), + [anon_sym_LT] = ACTIONS(4925), + [anon_sym_GT] = ACTIONS(4925), + [anon_sym_LBRACE] = ACTIONS(4923), + [anon_sym_RBRACE] = ACTIONS(4923), + [anon_sym_case] = ACTIONS(4923), + [anon_sym_PLUS_EQ] = ACTIONS(4925), + [anon_sym_DASH_EQ] = ACTIONS(4925), + [anon_sym_STAR_EQ] = ACTIONS(4925), + [anon_sym_SLASH_EQ] = ACTIONS(4925), + [anon_sym_PERCENT_EQ] = ACTIONS(4925), + [anon_sym_EQ] = ACTIONS(4925), + [anon_sym_BANG_EQ] = ACTIONS(4925), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4925), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4925), + [anon_sym_LT_EQ] = ACTIONS(4925), + [anon_sym_GT_EQ] = ACTIONS(4925), + [anon_sym_is] = ACTIONS(4923), + [anon_sym_PLUS] = ACTIONS(4925), + [anon_sym_DASH] = ACTIONS(4925), + [anon_sym_STAR] = ACTIONS(4925), + [anon_sym_SLASH] = ACTIONS(4925), + [anon_sym_PERCENT] = ACTIONS(4925), + [anon_sym_PLUS_PLUS] = ACTIONS(4925), + [anon_sym_DASH_DASH] = ACTIONS(4925), + [anon_sym_PIPE] = ACTIONS(4925), + [anon_sym_CARET] = ACTIONS(4925), + [anon_sym_LT_LT] = ACTIONS(4925), + [anon_sym_GT_GT] = ACTIONS(4925), + [anon_sym_import] = ACTIONS(4923), + [anon_sym_typealias] = ACTIONS(4923), + [anon_sym_struct] = ACTIONS(4923), + [anon_sym_class] = ACTIONS(4923), + [anon_sym_enum] = ACTIONS(4923), + [anon_sym_protocol] = ACTIONS(4923), + [anon_sym_let] = ACTIONS(4923), + [anon_sym_var] = ACTIONS(4923), + [anon_sym_func] = ACTIONS(4923), + [anon_sym_extension] = ACTIONS(4923), + [anon_sym_indirect] = ACTIONS(4923), + [anon_sym_init] = ACTIONS(4923), + [anon_sym_SEMI] = ACTIONS(4923), + [anon_sym_deinit] = ACTIONS(4923), + [anon_sym_subscript] = ACTIONS(4923), + [anon_sym_prefix] = ACTIONS(4923), + [anon_sym_infix] = ACTIONS(4923), + [anon_sym_postfix] = ACTIONS(4923), + [anon_sym_precedencegroup] = ACTIONS(4923), + [anon_sym_associatedtype] = ACTIONS(4923), + [anon_sym_AT] = ACTIONS(4925), + [sym_property_behavior_modifier] = ACTIONS(4923), + [anon_sym_override] = ACTIONS(4923), + [anon_sym_convenience] = ACTIONS(4923), + [anon_sym_required] = ACTIONS(4923), + [anon_sym_public] = ACTIONS(4923), + [anon_sym_private] = ACTIONS(4923), + [anon_sym_internal] = ACTIONS(4923), + [anon_sym_fileprivate] = ACTIONS(4923), + [anon_sym_open] = ACTIONS(4923), + [anon_sym_mutating] = ACTIONS(4923), + [anon_sym_nonmutating] = ACTIONS(4923), + [anon_sym_static] = ACTIONS(4923), + [anon_sym_dynamic] = ACTIONS(4923), + [anon_sym_optional] = ACTIONS(4923), + [anon_sym_final] = ACTIONS(4923), + [anon_sym_inout] = ACTIONS(4923), + [anon_sym_ATescaping] = ACTIONS(4923), + [anon_sym_ATautoclosure] = ACTIONS(4923), + [anon_sym_weak] = ACTIONS(4923), + [anon_sym_unowned] = ACTIONS(4925), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4923), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4923), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4923), + [sym__three_dot_operator_custom] = ACTIONS(4923), + [sym__open_ended_range_operator_custom] = ACTIONS(4923), + [sym__conjunction_operator_custom] = ACTIONS(4923), + [sym__disjunction_operator_custom] = ACTIONS(4923), + [sym__nil_coalescing_operator_custom] = ACTIONS(4923), + [sym__eq_eq_custom] = ACTIONS(4923), + [sym__plus_then_ws] = ACTIONS(4923), + [sym__minus_then_ws] = ACTIONS(4923), + [sym_bang] = ACTIONS(4923), + [sym__as_custom] = ACTIONS(4923), + [sym__as_quest_custom] = ACTIONS(4923), + [sym__as_bang_custom] = ACTIONS(4923), + }, + [1195] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4927), + [anon_sym_COMMA] = ACTIONS(4927), + [anon_sym_COLON] = ACTIONS(4927), + [anon_sym_LPAREN] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4927), + [anon_sym_RBRACK] = ACTIONS(4927), + [anon_sym_QMARK] = ACTIONS(4929), + [sym__immediate_quest] = ACTIONS(4929), + [anon_sym_AMP] = ACTIONS(4929), + [anon_sym_async] = ACTIONS(4927), + [aux_sym_custom_operator_token1] = ACTIONS(4929), + [anon_sym_LT] = ACTIONS(4929), + [anon_sym_GT] = ACTIONS(4929), + [anon_sym_LBRACE] = ACTIONS(4927), + [anon_sym_RBRACE] = ACTIONS(4927), + [anon_sym_case] = ACTIONS(4927), + [anon_sym_PLUS_EQ] = ACTIONS(4891), + [anon_sym_DASH_EQ] = ACTIONS(4891), + [anon_sym_STAR_EQ] = ACTIONS(4891), + [anon_sym_SLASH_EQ] = ACTIONS(4891), + [anon_sym_PERCENT_EQ] = ACTIONS(4891), + [anon_sym_EQ] = ACTIONS(4891), + [anon_sym_BANG_EQ] = ACTIONS(4929), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4929), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4929), + [anon_sym_LT_EQ] = ACTIONS(4929), + [anon_sym_GT_EQ] = ACTIONS(4929), + [anon_sym_is] = ACTIONS(4927), + [anon_sym_PLUS] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4929), + [anon_sym_STAR] = ACTIONS(4929), + [anon_sym_SLASH] = ACTIONS(4929), + [anon_sym_PERCENT] = ACTIONS(4929), + [anon_sym_PLUS_PLUS] = ACTIONS(4929), + [anon_sym_DASH_DASH] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4929), + [anon_sym_CARET] = ACTIONS(4929), + [anon_sym_LT_LT] = ACTIONS(4929), + [anon_sym_GT_GT] = ACTIONS(4929), + [anon_sym_import] = ACTIONS(4927), + [anon_sym_typealias] = ACTIONS(4927), + [anon_sym_struct] = ACTIONS(4927), + [anon_sym_class] = ACTIONS(4927), + [anon_sym_enum] = ACTIONS(4927), + [anon_sym_protocol] = ACTIONS(4927), + [anon_sym_let] = ACTIONS(4927), + [anon_sym_var] = ACTIONS(4927), + [anon_sym_func] = ACTIONS(4927), + [anon_sym_extension] = ACTIONS(4927), + [anon_sym_indirect] = ACTIONS(4927), + [anon_sym_init] = ACTIONS(4927), + [anon_sym_SEMI] = ACTIONS(4927), + [anon_sym_deinit] = ACTIONS(4927), + [anon_sym_subscript] = ACTIONS(4927), + [anon_sym_prefix] = ACTIONS(4927), + [anon_sym_infix] = ACTIONS(4927), + [anon_sym_postfix] = ACTIONS(4927), + [anon_sym_precedencegroup] = ACTIONS(4927), + [anon_sym_associatedtype] = ACTIONS(4927), + [anon_sym_AT] = ACTIONS(4929), + [sym_property_behavior_modifier] = ACTIONS(4927), + [anon_sym_override] = ACTIONS(4927), + [anon_sym_convenience] = ACTIONS(4927), + [anon_sym_required] = ACTIONS(4927), + [anon_sym_public] = ACTIONS(4927), + [anon_sym_private] = ACTIONS(4927), + [anon_sym_internal] = ACTIONS(4927), + [anon_sym_fileprivate] = ACTIONS(4927), + [anon_sym_open] = ACTIONS(4927), + [anon_sym_mutating] = ACTIONS(4927), + [anon_sym_nonmutating] = ACTIONS(4927), + [anon_sym_static] = ACTIONS(4927), + [anon_sym_dynamic] = ACTIONS(4927), + [anon_sym_optional] = ACTIONS(4927), + [anon_sym_final] = ACTIONS(4927), + [anon_sym_inout] = ACTIONS(4927), + [anon_sym_ATescaping] = ACTIONS(4927), + [anon_sym_ATautoclosure] = ACTIONS(4927), + [anon_sym_weak] = ACTIONS(4927), + [anon_sym_unowned] = ACTIONS(4929), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4927), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4927), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4927), + [sym__three_dot_operator_custom] = ACTIONS(4927), + [sym__open_ended_range_operator_custom] = ACTIONS(4927), + [sym__conjunction_operator_custom] = ACTIONS(4927), + [sym__disjunction_operator_custom] = ACTIONS(4927), + [sym__nil_coalescing_operator_custom] = ACTIONS(4927), + [sym__eq_eq_custom] = ACTIONS(4927), + [sym__plus_then_ws] = ACTIONS(4927), + [sym__minus_then_ws] = ACTIONS(4927), + [sym_bang] = ACTIONS(4927), + [sym__as_custom] = ACTIONS(4927), + [sym__as_quest_custom] = ACTIONS(4927), + [sym__as_bang_custom] = ACTIONS(4927), + }, + [1196] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4931), + [aux_sym_simple_identifier_token2] = ACTIONS(4933), + [aux_sym_simple_identifier_token3] = ACTIONS(4933), + [aux_sym_simple_identifier_token4] = ACTIONS(4933), + [anon_sym_nil] = ACTIONS(4931), + [sym_real_literal] = ACTIONS(4933), + [sym_integer_literal] = ACTIONS(4931), + [sym_hex_literal] = ACTIONS(4933), + [sym_oct_literal] = ACTIONS(4933), + [sym_bin_literal] = ACTIONS(4933), + [anon_sym_true] = ACTIONS(4931), + [anon_sym_false] = ACTIONS(4931), + [anon_sym_DQUOTE] = ACTIONS(4931), + [anon_sym_BSLASH] = ACTIONS(4931), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4933), + [anon_sym_LPAREN] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(4933), + [anon_sym_AMP] = ACTIONS(4931), + [anon_sym_async] = ACTIONS(4931), + [anon_sym_POUNDselector] = ACTIONS(4933), + [aux_sym_custom_operator_token1] = ACTIONS(4931), + [anon_sym_LT] = ACTIONS(4931), + [anon_sym_GT] = ACTIONS(4931), + [sym__await_operator] = ACTIONS(4931), + [anon_sym_POUNDfile] = ACTIONS(4931), + [anon_sym_POUNDfileID] = ACTIONS(4933), + [anon_sym_POUNDfilePath] = ACTIONS(4933), + [anon_sym_POUNDline] = ACTIONS(4933), + [anon_sym_POUNDcolumn] = ACTIONS(4933), + [anon_sym_POUNDfunction] = ACTIONS(4933), + [anon_sym_POUNDdsohandle] = ACTIONS(4933), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4933), + [anon_sym_POUNDfileLiteral] = ACTIONS(4933), + [anon_sym_POUNDimageLiteral] = ACTIONS(4933), + [anon_sym_LBRACE] = ACTIONS(4933), + [anon_sym_in] = ACTIONS(4931), + [anon_sym_RBRACE] = ACTIONS(4933), + [anon_sym_self] = ACTIONS(4931), + [anon_sym_super] = ACTIONS(4931), + [anon_sym_if] = ACTIONS(4931), + [anon_sym_guard] = ACTIONS(4931), + [anon_sym_switch] = ACTIONS(4931), + [anon_sym_do] = ACTIONS(4931), + [anon_sym_POUNDkeyPath] = ACTIONS(4933), + [anon_sym_try] = ACTIONS(4931), + [anon_sym_try_BANG] = ACTIONS(4933), + [anon_sym_try_QMARK] = ACTIONS(4933), + [anon_sym_BANG_EQ] = ACTIONS(4931), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4931), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4931), + [anon_sym_LT_EQ] = ACTIONS(4931), + [anon_sym_GT_EQ] = ACTIONS(4931), + [anon_sym_PLUS] = ACTIONS(4931), + [anon_sym_DASH] = ACTIONS(4931), + [anon_sym_STAR] = ACTIONS(4931), + [anon_sym_SLASH] = ACTIONS(4931), + [anon_sym_PERCENT] = ACTIONS(4931), + [anon_sym_PLUS_PLUS] = ACTIONS(4931), + [anon_sym_DASH_DASH] = ACTIONS(4931), + [anon_sym_TILDE] = ACTIONS(4931), + [sym_statement_label] = ACTIONS(4933), + [anon_sym_for] = ACTIONS(4931), + [anon_sym_while] = ACTIONS(4931), + [anon_sym_repeat] = ACTIONS(4931), + [sym_throw_keyword] = ACTIONS(4931), + [anon_sym_return] = ACTIONS(4931), + [anon_sym_continue] = ACTIONS(4931), + [anon_sym_break] = ACTIONS(4931), + [anon_sym_yield] = ACTIONS(4931), + [anon_sym_typealias] = ACTIONS(4931), + [anon_sym_struct] = ACTIONS(4931), + [anon_sym_class] = ACTIONS(4931), + [anon_sym_enum] = ACTIONS(4931), + [anon_sym_let] = ACTIONS(4931), + [anon_sym_var] = ACTIONS(4931), + [anon_sym_func] = ACTIONS(4931), + [anon_sym_extension] = ACTIONS(4931), + [anon_sym_indirect] = ACTIONS(4931), + [anon_sym_init] = ACTIONS(4931), + [anon_sym_AT] = ACTIONS(4933), + [sym_property_behavior_modifier] = ACTIONS(4931), + [anon_sym_final] = ACTIONS(4931), + [anon_sym_weak] = ACTIONS(4931), + [anon_sym_unowned] = ACTIONS(4931), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4933), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4933), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4933), + [sym_raw_str_end_part] = ACTIONS(4933), + [sym__dot_custom] = ACTIONS(4933), + [sym__three_dot_operator_custom] = ACTIONS(4933), + [sym__open_ended_range_operator_custom] = ACTIONS(4933), + [sym__eq_eq_custom] = ACTIONS(4933), + [sym__plus_then_ws] = ACTIONS(4933), + [sym__minus_then_ws] = ACTIONS(4933), + [sym_bang] = ACTIONS(4933), + }, + [1197] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4935), + [anon_sym_COMMA] = ACTIONS(4935), + [anon_sym_COLON] = ACTIONS(4935), + [anon_sym_LPAREN] = ACTIONS(4935), + [anon_sym_LBRACK] = ACTIONS(4935), + [anon_sym_RBRACK] = ACTIONS(4935), + [anon_sym_QMARK] = ACTIONS(4937), + [sym__immediate_quest] = ACTIONS(4937), + [anon_sym_AMP] = ACTIONS(4937), + [anon_sym_async] = ACTIONS(4935), + [aux_sym_custom_operator_token1] = ACTIONS(4937), + [anon_sym_LT] = ACTIONS(4937), + [anon_sym_GT] = ACTIONS(4937), + [anon_sym_LBRACE] = ACTIONS(4935), + [anon_sym_RBRACE] = ACTIONS(4935), + [anon_sym_case] = ACTIONS(4935), + [anon_sym_PLUS_EQ] = ACTIONS(4937), + [anon_sym_DASH_EQ] = ACTIONS(4937), + [anon_sym_STAR_EQ] = ACTIONS(4937), + [anon_sym_SLASH_EQ] = ACTIONS(4937), + [anon_sym_PERCENT_EQ] = ACTIONS(4937), + [anon_sym_EQ] = ACTIONS(4937), + [anon_sym_BANG_EQ] = ACTIONS(4937), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4937), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4937), + [anon_sym_LT_EQ] = ACTIONS(4937), + [anon_sym_GT_EQ] = ACTIONS(4937), + [anon_sym_is] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(4937), + [anon_sym_STAR] = ACTIONS(4937), + [anon_sym_SLASH] = ACTIONS(4937), + [anon_sym_PERCENT] = ACTIONS(4937), + [anon_sym_PLUS_PLUS] = ACTIONS(4937), + [anon_sym_DASH_DASH] = ACTIONS(4937), + [anon_sym_PIPE] = ACTIONS(4937), + [anon_sym_CARET] = ACTIONS(4937), + [anon_sym_LT_LT] = ACTIONS(4937), + [anon_sym_GT_GT] = ACTIONS(4937), + [anon_sym_import] = ACTIONS(4935), + [anon_sym_typealias] = ACTIONS(4935), + [anon_sym_struct] = ACTIONS(4935), + [anon_sym_class] = ACTIONS(4935), + [anon_sym_enum] = ACTIONS(4935), + [anon_sym_protocol] = ACTIONS(4935), + [anon_sym_let] = ACTIONS(4935), + [anon_sym_var] = ACTIONS(4935), + [anon_sym_func] = ACTIONS(4935), + [anon_sym_extension] = ACTIONS(4935), + [anon_sym_indirect] = ACTIONS(4935), + [anon_sym_init] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(4935), + [anon_sym_deinit] = ACTIONS(4935), + [anon_sym_subscript] = ACTIONS(4935), + [anon_sym_prefix] = ACTIONS(4935), + [anon_sym_infix] = ACTIONS(4935), + [anon_sym_postfix] = ACTIONS(4935), + [anon_sym_precedencegroup] = ACTIONS(4935), + [anon_sym_associatedtype] = ACTIONS(4935), + [anon_sym_AT] = ACTIONS(4937), + [sym_property_behavior_modifier] = ACTIONS(4935), + [anon_sym_override] = ACTIONS(4935), + [anon_sym_convenience] = ACTIONS(4935), + [anon_sym_required] = ACTIONS(4935), + [anon_sym_public] = ACTIONS(4935), + [anon_sym_private] = ACTIONS(4935), + [anon_sym_internal] = ACTIONS(4935), + [anon_sym_fileprivate] = ACTIONS(4935), + [anon_sym_open] = ACTIONS(4935), + [anon_sym_mutating] = ACTIONS(4935), + [anon_sym_nonmutating] = ACTIONS(4935), + [anon_sym_static] = ACTIONS(4935), + [anon_sym_dynamic] = ACTIONS(4935), + [anon_sym_optional] = ACTIONS(4935), + [anon_sym_final] = ACTIONS(4935), + [anon_sym_inout] = ACTIONS(4935), + [anon_sym_ATescaping] = ACTIONS(4935), + [anon_sym_ATautoclosure] = ACTIONS(4935), + [anon_sym_weak] = ACTIONS(4935), + [anon_sym_unowned] = ACTIONS(4937), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4935), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4935), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4935), + [sym__three_dot_operator_custom] = ACTIONS(4935), + [sym__open_ended_range_operator_custom] = ACTIONS(4935), + [sym__conjunction_operator_custom] = ACTIONS(4935), + [sym__disjunction_operator_custom] = ACTIONS(4935), + [sym__nil_coalescing_operator_custom] = ACTIONS(4935), + [sym__eq_eq_custom] = ACTIONS(4935), + [sym__plus_then_ws] = ACTIONS(4935), + [sym__minus_then_ws] = ACTIONS(4935), + [sym_bang] = ACTIONS(4935), + [sym__as_custom] = ACTIONS(4935), + [sym__as_quest_custom] = ACTIONS(4935), + [sym__as_bang_custom] = ACTIONS(4935), + }, + [1198] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4939), + [anon_sym_COMMA] = ACTIONS(4939), + [anon_sym_COLON] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [anon_sym_RBRACK] = ACTIONS(4939), + [anon_sym_QMARK] = ACTIONS(4942), + [sym__immediate_quest] = ACTIONS(4942), + [anon_sym_AMP] = ACTIONS(4942), + [anon_sym_async] = ACTIONS(4939), + [aux_sym_custom_operator_token1] = ACTIONS(4942), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4939), + [anon_sym_RBRACE] = ACTIONS(4939), + [anon_sym_case] = ACTIONS(4939), + [anon_sym_PLUS_EQ] = ACTIONS(4751), + [anon_sym_DASH_EQ] = ACTIONS(4751), + [anon_sym_STAR_EQ] = ACTIONS(4751), + [anon_sym_SLASH_EQ] = ACTIONS(4751), + [anon_sym_PERCENT_EQ] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_BANG_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4942), + [anon_sym_LT_EQ] = ACTIONS(4942), + [anon_sym_GT_EQ] = ACTIONS(4942), + [anon_sym_is] = ACTIONS(4939), + [anon_sym_PLUS] = ACTIONS(4942), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_STAR] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4942), + [anon_sym_PERCENT] = ACTIONS(4942), + [anon_sym_PLUS_PLUS] = ACTIONS(4942), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_PIPE] = ACTIONS(4942), + [anon_sym_CARET] = ACTIONS(4942), + [anon_sym_LT_LT] = ACTIONS(4942), + [anon_sym_GT_GT] = ACTIONS(4942), + [anon_sym_import] = ACTIONS(4939), + [anon_sym_typealias] = ACTIONS(4939), + [anon_sym_struct] = ACTIONS(4939), + [anon_sym_class] = ACTIONS(4939), + [anon_sym_enum] = ACTIONS(4939), + [anon_sym_protocol] = ACTIONS(4939), + [anon_sym_let] = ACTIONS(4939), + [anon_sym_var] = ACTIONS(4939), + [anon_sym_func] = ACTIONS(4939), + [anon_sym_extension] = ACTIONS(4939), + [anon_sym_indirect] = ACTIONS(4939), + [anon_sym_init] = ACTIONS(4939), + [anon_sym_SEMI] = ACTIONS(4939), + [anon_sym_deinit] = ACTIONS(4939), + [anon_sym_subscript] = ACTIONS(4939), + [anon_sym_prefix] = ACTIONS(4939), + [anon_sym_infix] = ACTIONS(4939), + [anon_sym_postfix] = ACTIONS(4939), + [anon_sym_precedencegroup] = ACTIONS(4939), + [anon_sym_associatedtype] = ACTIONS(4939), + [anon_sym_AT] = ACTIONS(4942), + [sym_property_behavior_modifier] = ACTIONS(4939), + [anon_sym_override] = ACTIONS(4939), + [anon_sym_convenience] = ACTIONS(4939), + [anon_sym_required] = ACTIONS(4939), + [anon_sym_public] = ACTIONS(4939), + [anon_sym_private] = ACTIONS(4939), + [anon_sym_internal] = ACTIONS(4939), + [anon_sym_fileprivate] = ACTIONS(4939), + [anon_sym_open] = ACTIONS(4939), + [anon_sym_mutating] = ACTIONS(4939), + [anon_sym_nonmutating] = ACTIONS(4939), + [anon_sym_static] = ACTIONS(4939), + [anon_sym_dynamic] = ACTIONS(4939), + [anon_sym_optional] = ACTIONS(4939), + [anon_sym_final] = ACTIONS(4939), + [anon_sym_inout] = ACTIONS(4939), + [anon_sym_ATescaping] = ACTIONS(4939), + [anon_sym_ATautoclosure] = ACTIONS(4939), + [anon_sym_weak] = ACTIONS(4939), + [anon_sym_unowned] = ACTIONS(4942), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4939), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4939), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4939), + [sym__three_dot_operator_custom] = ACTIONS(4939), + [sym__open_ended_range_operator_custom] = ACTIONS(4939), + [sym__conjunction_operator_custom] = ACTIONS(4939), + [sym__disjunction_operator_custom] = ACTIONS(4939), + [sym__nil_coalescing_operator_custom] = ACTIONS(4939), + [sym__eq_eq_custom] = ACTIONS(4939), + [sym__plus_then_ws] = ACTIONS(4939), + [sym__minus_then_ws] = ACTIONS(4939), + [sym_bang] = ACTIONS(4939), + [sym__as_custom] = ACTIONS(4939), + [sym__as_quest_custom] = ACTIONS(4939), + [sym__as_bang_custom] = ACTIONS(4939), + }, + [1199] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4945), + [anon_sym_COMMA] = ACTIONS(4945), + [anon_sym_COLON] = ACTIONS(4945), + [anon_sym_LPAREN] = ACTIONS(4945), + [anon_sym_LBRACK] = ACTIONS(4945), + [anon_sym_RBRACK] = ACTIONS(4945), + [anon_sym_QMARK] = ACTIONS(4947), + [sym__immediate_quest] = ACTIONS(4947), + [anon_sym_AMP] = ACTIONS(4947), + [anon_sym_async] = ACTIONS(4945), + [aux_sym_custom_operator_token1] = ACTIONS(4947), + [anon_sym_LT] = ACTIONS(4947), + [anon_sym_GT] = ACTIONS(4947), + [anon_sym_LBRACE] = ACTIONS(4945), + [anon_sym_RBRACE] = ACTIONS(4945), + [anon_sym_case] = ACTIONS(4945), + [anon_sym_PLUS_EQ] = ACTIONS(4947), + [anon_sym_DASH_EQ] = ACTIONS(4947), + [anon_sym_STAR_EQ] = ACTIONS(4947), + [anon_sym_SLASH_EQ] = ACTIONS(4947), + [anon_sym_PERCENT_EQ] = ACTIONS(4947), + [anon_sym_EQ] = ACTIONS(4947), + [anon_sym_BANG_EQ] = ACTIONS(4947), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4947), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4947), + [anon_sym_LT_EQ] = ACTIONS(4947), + [anon_sym_GT_EQ] = ACTIONS(4947), + [anon_sym_is] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(4947), + [anon_sym_DASH] = ACTIONS(4947), + [anon_sym_STAR] = ACTIONS(4947), + [anon_sym_SLASH] = ACTIONS(4947), + [anon_sym_PERCENT] = ACTIONS(4947), + [anon_sym_PLUS_PLUS] = ACTIONS(4947), + [anon_sym_DASH_DASH] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4947), + [anon_sym_CARET] = ACTIONS(4947), + [anon_sym_LT_LT] = ACTIONS(4947), + [anon_sym_GT_GT] = ACTIONS(4947), + [anon_sym_import] = ACTIONS(4945), + [anon_sym_typealias] = ACTIONS(4945), + [anon_sym_struct] = ACTIONS(4945), + [anon_sym_class] = ACTIONS(4945), + [anon_sym_enum] = ACTIONS(4945), + [anon_sym_protocol] = ACTIONS(4945), + [anon_sym_let] = ACTIONS(4945), + [anon_sym_var] = ACTIONS(4945), + [anon_sym_func] = ACTIONS(4945), + [anon_sym_extension] = ACTIONS(4945), + [anon_sym_indirect] = ACTIONS(4945), + [anon_sym_init] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(4945), + [anon_sym_deinit] = ACTIONS(4945), + [anon_sym_subscript] = ACTIONS(4945), + [anon_sym_prefix] = ACTIONS(4945), + [anon_sym_infix] = ACTIONS(4945), + [anon_sym_postfix] = ACTIONS(4945), + [anon_sym_precedencegroup] = ACTIONS(4945), + [anon_sym_associatedtype] = ACTIONS(4945), + [anon_sym_AT] = ACTIONS(4947), + [sym_property_behavior_modifier] = ACTIONS(4945), + [anon_sym_override] = ACTIONS(4945), + [anon_sym_convenience] = ACTIONS(4945), + [anon_sym_required] = ACTIONS(4945), + [anon_sym_public] = ACTIONS(4945), + [anon_sym_private] = ACTIONS(4945), + [anon_sym_internal] = ACTIONS(4945), + [anon_sym_fileprivate] = ACTIONS(4945), + [anon_sym_open] = ACTIONS(4945), + [anon_sym_mutating] = ACTIONS(4945), + [anon_sym_nonmutating] = ACTIONS(4945), + [anon_sym_static] = ACTIONS(4945), + [anon_sym_dynamic] = ACTIONS(4945), + [anon_sym_optional] = ACTIONS(4945), + [anon_sym_final] = ACTIONS(4945), + [anon_sym_inout] = ACTIONS(4945), + [anon_sym_ATescaping] = ACTIONS(4945), + [anon_sym_ATautoclosure] = ACTIONS(4945), + [anon_sym_weak] = ACTIONS(4945), + [anon_sym_unowned] = ACTIONS(4947), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4945), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4945), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4945), + [sym__three_dot_operator_custom] = ACTIONS(4945), + [sym__open_ended_range_operator_custom] = ACTIONS(4945), + [sym__conjunction_operator_custom] = ACTIONS(4945), + [sym__disjunction_operator_custom] = ACTIONS(4945), + [sym__nil_coalescing_operator_custom] = ACTIONS(4945), + [sym__eq_eq_custom] = ACTIONS(4945), + [sym__plus_then_ws] = ACTIONS(4945), + [sym__minus_then_ws] = ACTIONS(4945), + [sym_bang] = ACTIONS(4945), + [sym__as_custom] = ACTIONS(4945), + [sym__as_quest_custom] = ACTIONS(4945), + [sym__as_bang_custom] = ACTIONS(4945), + }, + [1200] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4949), + [aux_sym_simple_identifier_token2] = ACTIONS(4951), + [aux_sym_simple_identifier_token3] = ACTIONS(4951), + [aux_sym_simple_identifier_token4] = ACTIONS(4951), + [anon_sym_nil] = ACTIONS(4949), + [sym_real_literal] = ACTIONS(4951), + [sym_integer_literal] = ACTIONS(4949), + [sym_hex_literal] = ACTIONS(4951), + [sym_oct_literal] = ACTIONS(4951), + [sym_bin_literal] = ACTIONS(4951), + [anon_sym_true] = ACTIONS(4949), + [anon_sym_false] = ACTIONS(4949), + [anon_sym_DQUOTE] = ACTIONS(4949), + [anon_sym_BSLASH] = ACTIONS(4949), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4951), + [anon_sym_LPAREN] = ACTIONS(4951), + [anon_sym_LBRACK] = ACTIONS(4951), + [anon_sym_AMP] = ACTIONS(4949), + [anon_sym_async] = ACTIONS(4949), + [anon_sym_POUNDselector] = ACTIONS(4951), + [aux_sym_custom_operator_token1] = ACTIONS(4949), + [anon_sym_LT] = ACTIONS(4949), + [anon_sym_GT] = ACTIONS(4949), + [sym__await_operator] = ACTIONS(4949), + [anon_sym_POUNDfile] = ACTIONS(4949), + [anon_sym_POUNDfileID] = ACTIONS(4951), + [anon_sym_POUNDfilePath] = ACTIONS(4951), + [anon_sym_POUNDline] = ACTIONS(4951), + [anon_sym_POUNDcolumn] = ACTIONS(4951), + [anon_sym_POUNDfunction] = ACTIONS(4951), + [anon_sym_POUNDdsohandle] = ACTIONS(4951), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4951), + [anon_sym_POUNDfileLiteral] = ACTIONS(4951), + [anon_sym_POUNDimageLiteral] = ACTIONS(4951), + [anon_sym_LBRACE] = ACTIONS(4951), + [anon_sym_in] = ACTIONS(4949), + [anon_sym_RBRACE] = ACTIONS(4951), + [anon_sym_self] = ACTIONS(4949), + [anon_sym_super] = ACTIONS(4949), + [anon_sym_if] = ACTIONS(4949), + [anon_sym_guard] = ACTIONS(4949), + [anon_sym_switch] = ACTIONS(4949), + [anon_sym_do] = ACTIONS(4949), + [anon_sym_POUNDkeyPath] = ACTIONS(4951), + [anon_sym_try] = ACTIONS(4949), + [anon_sym_try_BANG] = ACTIONS(4951), + [anon_sym_try_QMARK] = ACTIONS(4951), + [anon_sym_BANG_EQ] = ACTIONS(4949), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4949), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4949), + [anon_sym_LT_EQ] = ACTIONS(4949), + [anon_sym_GT_EQ] = ACTIONS(4949), + [anon_sym_PLUS] = ACTIONS(4949), + [anon_sym_DASH] = ACTIONS(4949), + [anon_sym_STAR] = ACTIONS(4949), + [anon_sym_SLASH] = ACTIONS(4949), + [anon_sym_PERCENT] = ACTIONS(4949), + [anon_sym_PLUS_PLUS] = ACTIONS(4949), + [anon_sym_DASH_DASH] = ACTIONS(4949), + [anon_sym_TILDE] = ACTIONS(4949), + [sym_statement_label] = ACTIONS(4951), + [anon_sym_for] = ACTIONS(4949), + [anon_sym_while] = ACTIONS(4949), + [anon_sym_repeat] = ACTIONS(4949), + [sym_throw_keyword] = ACTIONS(4949), + [anon_sym_return] = ACTIONS(4949), + [anon_sym_continue] = ACTIONS(4949), + [anon_sym_break] = ACTIONS(4949), + [anon_sym_yield] = ACTIONS(4949), + [anon_sym_typealias] = ACTIONS(4949), + [anon_sym_struct] = ACTIONS(4949), + [anon_sym_class] = ACTIONS(4949), + [anon_sym_enum] = ACTIONS(4949), + [anon_sym_let] = ACTIONS(4949), + [anon_sym_var] = ACTIONS(4949), + [anon_sym_func] = ACTIONS(4949), + [anon_sym_extension] = ACTIONS(4949), + [anon_sym_indirect] = ACTIONS(4949), + [anon_sym_init] = ACTIONS(4949), + [anon_sym_AT] = ACTIONS(4951), + [sym_property_behavior_modifier] = ACTIONS(4949), + [anon_sym_final] = ACTIONS(4949), + [anon_sym_weak] = ACTIONS(4949), + [anon_sym_unowned] = ACTIONS(4949), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4951), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4951), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4951), + [sym_raw_str_end_part] = ACTIONS(4951), + [sym__dot_custom] = ACTIONS(4951), + [sym__three_dot_operator_custom] = ACTIONS(4951), + [sym__open_ended_range_operator_custom] = ACTIONS(4951), + [sym__eq_eq_custom] = ACTIONS(4951), + [sym__plus_then_ws] = ACTIONS(4951), + [sym__minus_then_ws] = ACTIONS(4951), + [sym_bang] = ACTIONS(4951), + }, + [1201] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4953), + [anon_sym_COMMA] = ACTIONS(4953), + [anon_sym_COLON] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4953), + [anon_sym_LBRACK] = ACTIONS(4953), + [anon_sym_RBRACK] = ACTIONS(4953), + [anon_sym_QMARK] = ACTIONS(4955), + [sym__immediate_quest] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4955), + [anon_sym_async] = ACTIONS(4953), + [aux_sym_custom_operator_token1] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_LBRACE] = ACTIONS(4953), + [anon_sym_RBRACE] = ACTIONS(4953), + [anon_sym_case] = ACTIONS(4953), + [anon_sym_PLUS_EQ] = ACTIONS(4955), + [anon_sym_DASH_EQ] = ACTIONS(4955), + [anon_sym_STAR_EQ] = ACTIONS(4955), + [anon_sym_SLASH_EQ] = ACTIONS(4955), + [anon_sym_PERCENT_EQ] = ACTIONS(4955), + [anon_sym_EQ] = ACTIONS(4955), + [anon_sym_BANG_EQ] = ACTIONS(4955), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), + [anon_sym_LT_EQ] = ACTIONS(4955), + [anon_sym_GT_EQ] = ACTIONS(4955), + [anon_sym_is] = ACTIONS(4953), + [anon_sym_PLUS] = ACTIONS(4955), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_STAR] = ACTIONS(4955), + [anon_sym_SLASH] = ACTIONS(4955), + [anon_sym_PERCENT] = ACTIONS(4955), + [anon_sym_PLUS_PLUS] = ACTIONS(4955), + [anon_sym_DASH_DASH] = ACTIONS(4955), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_CARET] = ACTIONS(4955), + [anon_sym_LT_LT] = ACTIONS(4955), + [anon_sym_GT_GT] = ACTIONS(4955), + [anon_sym_import] = ACTIONS(4953), + [anon_sym_typealias] = ACTIONS(4953), + [anon_sym_struct] = ACTIONS(4953), + [anon_sym_class] = ACTIONS(4953), + [anon_sym_enum] = ACTIONS(4953), + [anon_sym_protocol] = ACTIONS(4953), + [anon_sym_let] = ACTIONS(4953), + [anon_sym_var] = ACTIONS(4953), + [anon_sym_func] = ACTIONS(4953), + [anon_sym_extension] = ACTIONS(4953), + [anon_sym_indirect] = ACTIONS(4953), + [anon_sym_init] = ACTIONS(4953), + [anon_sym_SEMI] = ACTIONS(4953), + [anon_sym_deinit] = ACTIONS(4953), + [anon_sym_subscript] = ACTIONS(4953), + [anon_sym_prefix] = ACTIONS(4953), + [anon_sym_infix] = ACTIONS(4953), + [anon_sym_postfix] = ACTIONS(4953), + [anon_sym_precedencegroup] = ACTIONS(4953), + [anon_sym_associatedtype] = ACTIONS(4953), + [anon_sym_AT] = ACTIONS(4955), + [sym_property_behavior_modifier] = ACTIONS(4953), + [anon_sym_override] = ACTIONS(4953), + [anon_sym_convenience] = ACTIONS(4953), + [anon_sym_required] = ACTIONS(4953), + [anon_sym_public] = ACTIONS(4953), + [anon_sym_private] = ACTIONS(4953), + [anon_sym_internal] = ACTIONS(4953), + [anon_sym_fileprivate] = ACTIONS(4953), + [anon_sym_open] = ACTIONS(4953), + [anon_sym_mutating] = ACTIONS(4953), + [anon_sym_nonmutating] = ACTIONS(4953), + [anon_sym_static] = ACTIONS(4953), + [anon_sym_dynamic] = ACTIONS(4953), + [anon_sym_optional] = ACTIONS(4953), + [anon_sym_final] = ACTIONS(4953), + [anon_sym_inout] = ACTIONS(4953), + [anon_sym_ATescaping] = ACTIONS(4953), + [anon_sym_ATautoclosure] = ACTIONS(4953), + [anon_sym_weak] = ACTIONS(4953), + [anon_sym_unowned] = ACTIONS(4955), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4953), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4953), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4953), + [sym__three_dot_operator_custom] = ACTIONS(4953), + [sym__open_ended_range_operator_custom] = ACTIONS(4953), + [sym__conjunction_operator_custom] = ACTIONS(4953), + [sym__disjunction_operator_custom] = ACTIONS(4953), + [sym__nil_coalescing_operator_custom] = ACTIONS(4953), + [sym__eq_eq_custom] = ACTIONS(4953), + [sym__plus_then_ws] = ACTIONS(4953), + [sym__minus_then_ws] = ACTIONS(4953), + [sym_bang] = ACTIONS(4953), + [sym__as_custom] = ACTIONS(4953), + [sym__as_quest_custom] = ACTIONS(4953), + [sym__as_bang_custom] = ACTIONS(4953), + }, + [1202] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4957), + [anon_sym_COMMA] = ACTIONS(4957), + [anon_sym_COLON] = ACTIONS(4957), + [anon_sym_LPAREN] = ACTIONS(4957), + [anon_sym_LBRACK] = ACTIONS(4957), + [anon_sym_RBRACK] = ACTIONS(4957), + [anon_sym_QMARK] = ACTIONS(4959), + [sym__immediate_quest] = ACTIONS(4959), + [anon_sym_AMP] = ACTIONS(4959), + [anon_sym_async] = ACTIONS(4957), + [aux_sym_custom_operator_token1] = ACTIONS(4959), + [anon_sym_LT] = ACTIONS(4959), + [anon_sym_GT] = ACTIONS(4959), + [anon_sym_LBRACE] = ACTIONS(4957), + [anon_sym_RBRACE] = ACTIONS(4957), + [anon_sym_case] = ACTIONS(4957), + [anon_sym_PLUS_EQ] = ACTIONS(4959), + [anon_sym_DASH_EQ] = ACTIONS(4959), + [anon_sym_STAR_EQ] = ACTIONS(4959), + [anon_sym_SLASH_EQ] = ACTIONS(4959), + [anon_sym_PERCENT_EQ] = ACTIONS(4959), + [anon_sym_EQ] = ACTIONS(4959), + [anon_sym_BANG_EQ] = ACTIONS(4959), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4959), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4959), + [anon_sym_LT_EQ] = ACTIONS(4959), + [anon_sym_GT_EQ] = ACTIONS(4959), + [anon_sym_is] = ACTIONS(4957), + [anon_sym_PLUS] = ACTIONS(4959), + [anon_sym_DASH] = ACTIONS(4959), + [anon_sym_STAR] = ACTIONS(4959), + [anon_sym_SLASH] = ACTIONS(4959), + [anon_sym_PERCENT] = ACTIONS(4959), + [anon_sym_PLUS_PLUS] = ACTIONS(4959), + [anon_sym_DASH_DASH] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(4959), + [anon_sym_CARET] = ACTIONS(4959), + [anon_sym_LT_LT] = ACTIONS(4959), + [anon_sym_GT_GT] = ACTIONS(4959), + [anon_sym_import] = ACTIONS(4957), + [anon_sym_typealias] = ACTIONS(4957), + [anon_sym_struct] = ACTIONS(4957), + [anon_sym_class] = ACTIONS(4957), + [anon_sym_enum] = ACTIONS(4957), + [anon_sym_protocol] = ACTIONS(4957), + [anon_sym_let] = ACTIONS(4957), + [anon_sym_var] = ACTIONS(4957), + [anon_sym_func] = ACTIONS(4957), + [anon_sym_extension] = ACTIONS(4957), + [anon_sym_indirect] = ACTIONS(4957), + [anon_sym_init] = ACTIONS(4957), + [anon_sym_SEMI] = ACTIONS(4957), + [anon_sym_deinit] = ACTIONS(4957), + [anon_sym_subscript] = ACTIONS(4957), + [anon_sym_prefix] = ACTIONS(4957), + [anon_sym_infix] = ACTIONS(4957), + [anon_sym_postfix] = ACTIONS(4957), + [anon_sym_precedencegroup] = ACTIONS(4957), + [anon_sym_associatedtype] = ACTIONS(4957), + [anon_sym_AT] = ACTIONS(4959), + [sym_property_behavior_modifier] = ACTIONS(4957), + [anon_sym_override] = ACTIONS(4957), + [anon_sym_convenience] = ACTIONS(4957), + [anon_sym_required] = ACTIONS(4957), + [anon_sym_public] = ACTIONS(4957), + [anon_sym_private] = ACTIONS(4957), + [anon_sym_internal] = ACTIONS(4957), + [anon_sym_fileprivate] = ACTIONS(4957), + [anon_sym_open] = ACTIONS(4957), + [anon_sym_mutating] = ACTIONS(4957), + [anon_sym_nonmutating] = ACTIONS(4957), + [anon_sym_static] = ACTIONS(4957), + [anon_sym_dynamic] = ACTIONS(4957), + [anon_sym_optional] = ACTIONS(4957), + [anon_sym_final] = ACTIONS(4957), + [anon_sym_inout] = ACTIONS(4957), + [anon_sym_ATescaping] = ACTIONS(4957), + [anon_sym_ATautoclosure] = ACTIONS(4957), + [anon_sym_weak] = ACTIONS(4957), + [anon_sym_unowned] = ACTIONS(4959), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4957), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4957), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4957), + [sym__three_dot_operator_custom] = ACTIONS(4957), + [sym__open_ended_range_operator_custom] = ACTIONS(4957), + [sym__conjunction_operator_custom] = ACTIONS(4957), + [sym__disjunction_operator_custom] = ACTIONS(4957), + [sym__nil_coalescing_operator_custom] = ACTIONS(4957), + [sym__eq_eq_custom] = ACTIONS(4957), + [sym__plus_then_ws] = ACTIONS(4957), + [sym__minus_then_ws] = ACTIONS(4957), + [sym_bang] = ACTIONS(4957), + [sym__as_custom] = ACTIONS(4957), + [sym__as_quest_custom] = ACTIONS(4957), + [sym__as_bang_custom] = ACTIONS(4957), + }, + [1203] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4961), + [anon_sym_COMMA] = ACTIONS(4961), + [anon_sym_COLON] = ACTIONS(4961), + [anon_sym_LPAREN] = ACTIONS(4961), + [anon_sym_LBRACK] = ACTIONS(4961), + [anon_sym_RBRACK] = ACTIONS(4961), + [anon_sym_QMARK] = ACTIONS(4963), + [sym__immediate_quest] = ACTIONS(4963), + [anon_sym_AMP] = ACTIONS(4963), + [anon_sym_async] = ACTIONS(4961), + [aux_sym_custom_operator_token1] = ACTIONS(4963), + [anon_sym_LT] = ACTIONS(4963), + [anon_sym_GT] = ACTIONS(4963), + [anon_sym_LBRACE] = ACTIONS(4961), + [anon_sym_RBRACE] = ACTIONS(4961), + [anon_sym_case] = ACTIONS(4961), + [anon_sym_PLUS_EQ] = ACTIONS(4891), + [anon_sym_DASH_EQ] = ACTIONS(4891), + [anon_sym_STAR_EQ] = ACTIONS(4891), + [anon_sym_SLASH_EQ] = ACTIONS(4891), + [anon_sym_PERCENT_EQ] = ACTIONS(4891), + [anon_sym_EQ] = ACTIONS(4891), + [anon_sym_BANG_EQ] = ACTIONS(4963), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4963), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4963), + [anon_sym_LT_EQ] = ACTIONS(4963), + [anon_sym_GT_EQ] = ACTIONS(4963), + [anon_sym_is] = ACTIONS(4961), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4963), + [anon_sym_SLASH] = ACTIONS(4963), + [anon_sym_PERCENT] = ACTIONS(4963), + [anon_sym_PLUS_PLUS] = ACTIONS(4963), + [anon_sym_DASH_DASH] = ACTIONS(4963), + [anon_sym_PIPE] = ACTIONS(4963), + [anon_sym_CARET] = ACTIONS(4963), + [anon_sym_LT_LT] = ACTIONS(4963), + [anon_sym_GT_GT] = ACTIONS(4963), + [anon_sym_import] = ACTIONS(4961), + [anon_sym_typealias] = ACTIONS(4961), + [anon_sym_struct] = ACTIONS(4961), + [anon_sym_class] = ACTIONS(4961), + [anon_sym_enum] = ACTIONS(4961), + [anon_sym_protocol] = ACTIONS(4961), + [anon_sym_let] = ACTIONS(4961), + [anon_sym_var] = ACTIONS(4961), + [anon_sym_func] = ACTIONS(4961), + [anon_sym_extension] = ACTIONS(4961), + [anon_sym_indirect] = ACTIONS(4961), + [anon_sym_init] = ACTIONS(4961), + [anon_sym_SEMI] = ACTIONS(4961), + [anon_sym_deinit] = ACTIONS(4961), + [anon_sym_subscript] = ACTIONS(4961), + [anon_sym_prefix] = ACTIONS(4961), + [anon_sym_infix] = ACTIONS(4961), + [anon_sym_postfix] = ACTIONS(4961), + [anon_sym_precedencegroup] = ACTIONS(4961), + [anon_sym_associatedtype] = ACTIONS(4961), + [anon_sym_AT] = ACTIONS(4963), + [sym_property_behavior_modifier] = ACTIONS(4961), + [anon_sym_override] = ACTIONS(4961), + [anon_sym_convenience] = ACTIONS(4961), + [anon_sym_required] = ACTIONS(4961), + [anon_sym_public] = ACTIONS(4961), + [anon_sym_private] = ACTIONS(4961), + [anon_sym_internal] = ACTIONS(4961), + [anon_sym_fileprivate] = ACTIONS(4961), + [anon_sym_open] = ACTIONS(4961), + [anon_sym_mutating] = ACTIONS(4961), + [anon_sym_nonmutating] = ACTIONS(4961), + [anon_sym_static] = ACTIONS(4961), + [anon_sym_dynamic] = ACTIONS(4961), + [anon_sym_optional] = ACTIONS(4961), + [anon_sym_final] = ACTIONS(4961), + [anon_sym_inout] = ACTIONS(4961), + [anon_sym_ATescaping] = ACTIONS(4961), + [anon_sym_ATautoclosure] = ACTIONS(4961), + [anon_sym_weak] = ACTIONS(4961), + [anon_sym_unowned] = ACTIONS(4963), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4961), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4961), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4961), + [sym__three_dot_operator_custom] = ACTIONS(4961), + [sym__open_ended_range_operator_custom] = ACTIONS(4961), + [sym__conjunction_operator_custom] = ACTIONS(4961), + [sym__disjunction_operator_custom] = ACTIONS(4961), + [sym__nil_coalescing_operator_custom] = ACTIONS(4961), + [sym__eq_eq_custom] = ACTIONS(4961), + [sym__plus_then_ws] = ACTIONS(4961), + [sym__minus_then_ws] = ACTIONS(4961), + [sym_bang] = ACTIONS(4961), + [sym__as_custom] = ACTIONS(4961), + [sym__as_quest_custom] = ACTIONS(4961), + [sym__as_bang_custom] = ACTIONS(4961), + }, + [1204] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4965), + [aux_sym_simple_identifier_token2] = ACTIONS(4967), + [aux_sym_simple_identifier_token3] = ACTIONS(4967), + [aux_sym_simple_identifier_token4] = ACTIONS(4967), + [anon_sym_nil] = ACTIONS(4965), + [sym_real_literal] = ACTIONS(4967), + [sym_integer_literal] = ACTIONS(4965), + [sym_hex_literal] = ACTIONS(4967), + [sym_oct_literal] = ACTIONS(4967), + [sym_bin_literal] = ACTIONS(4967), + [anon_sym_true] = ACTIONS(4965), + [anon_sym_false] = ACTIONS(4965), + [anon_sym_DQUOTE] = ACTIONS(4965), + [anon_sym_BSLASH] = ACTIONS(4965), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4967), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_LBRACK] = ACTIONS(4967), + [anon_sym_AMP] = ACTIONS(4965), + [anon_sym_async] = ACTIONS(4965), + [anon_sym_POUNDselector] = ACTIONS(4967), + [aux_sym_custom_operator_token1] = ACTIONS(4965), + [anon_sym_LT] = ACTIONS(4965), + [anon_sym_GT] = ACTIONS(4965), + [sym__await_operator] = ACTIONS(4965), + [anon_sym_POUNDfile] = ACTIONS(4965), + [anon_sym_POUNDfileID] = ACTIONS(4967), + [anon_sym_POUNDfilePath] = ACTIONS(4967), + [anon_sym_POUNDline] = ACTIONS(4967), + [anon_sym_POUNDcolumn] = ACTIONS(4967), + [anon_sym_POUNDfunction] = ACTIONS(4967), + [anon_sym_POUNDdsohandle] = ACTIONS(4967), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4967), + [anon_sym_POUNDfileLiteral] = ACTIONS(4967), + [anon_sym_POUNDimageLiteral] = ACTIONS(4967), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_in] = ACTIONS(4965), + [anon_sym_RBRACE] = ACTIONS(4967), + [anon_sym_self] = ACTIONS(4965), + [anon_sym_super] = ACTIONS(4965), + [anon_sym_if] = ACTIONS(4965), + [anon_sym_guard] = ACTIONS(4965), + [anon_sym_switch] = ACTIONS(4965), + [anon_sym_do] = ACTIONS(4965), + [anon_sym_POUNDkeyPath] = ACTIONS(4967), + [anon_sym_try] = ACTIONS(4965), + [anon_sym_try_BANG] = ACTIONS(4967), + [anon_sym_try_QMARK] = ACTIONS(4967), + [anon_sym_BANG_EQ] = ACTIONS(4965), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4965), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4965), + [anon_sym_LT_EQ] = ACTIONS(4965), + [anon_sym_GT_EQ] = ACTIONS(4965), + [anon_sym_PLUS] = ACTIONS(4965), + [anon_sym_DASH] = ACTIONS(4965), + [anon_sym_STAR] = ACTIONS(4965), + [anon_sym_SLASH] = ACTIONS(4965), + [anon_sym_PERCENT] = ACTIONS(4965), + [anon_sym_PLUS_PLUS] = ACTIONS(4965), + [anon_sym_DASH_DASH] = ACTIONS(4965), + [anon_sym_TILDE] = ACTIONS(4965), + [sym_statement_label] = ACTIONS(4967), + [anon_sym_for] = ACTIONS(4965), + [anon_sym_while] = ACTIONS(4965), + [anon_sym_repeat] = ACTIONS(4965), + [sym_throw_keyword] = ACTIONS(4965), + [anon_sym_return] = ACTIONS(4965), + [anon_sym_continue] = ACTIONS(4965), + [anon_sym_break] = ACTIONS(4965), + [anon_sym_yield] = ACTIONS(4965), + [anon_sym_typealias] = ACTIONS(4965), + [anon_sym_struct] = ACTIONS(4965), + [anon_sym_class] = ACTIONS(4965), + [anon_sym_enum] = ACTIONS(4965), + [anon_sym_let] = ACTIONS(4965), + [anon_sym_var] = ACTIONS(4965), + [anon_sym_func] = ACTIONS(4965), + [anon_sym_extension] = ACTIONS(4965), + [anon_sym_indirect] = ACTIONS(4965), + [anon_sym_init] = ACTIONS(4965), + [anon_sym_AT] = ACTIONS(4967), + [sym_property_behavior_modifier] = ACTIONS(4965), + [anon_sym_final] = ACTIONS(4965), + [anon_sym_weak] = ACTIONS(4965), + [anon_sym_unowned] = ACTIONS(4965), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4967), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4967), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4967), + [sym_raw_str_end_part] = ACTIONS(4967), + [sym__dot_custom] = ACTIONS(4967), + [sym__three_dot_operator_custom] = ACTIONS(4967), + [sym__open_ended_range_operator_custom] = ACTIONS(4967), + [sym__eq_eq_custom] = ACTIONS(4967), + [sym__plus_then_ws] = ACTIONS(4967), + [sym__minus_then_ws] = ACTIONS(4967), + [sym_bang] = ACTIONS(4967), + }, + [1205] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4969), + [anon_sym_COMMA] = ACTIONS(4969), + [anon_sym_COLON] = ACTIONS(4969), + [anon_sym_LPAREN] = ACTIONS(4969), + [anon_sym_LBRACK] = ACTIONS(4969), + [anon_sym_RBRACK] = ACTIONS(4969), + [anon_sym_QMARK] = ACTIONS(4972), + [sym__immediate_quest] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4972), + [anon_sym_async] = ACTIONS(4969), + [aux_sym_custom_operator_token1] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4972), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4969), + [anon_sym_RBRACE] = ACTIONS(4969), + [anon_sym_case] = ACTIONS(4969), + [anon_sym_PLUS_EQ] = ACTIONS(4891), + [anon_sym_DASH_EQ] = ACTIONS(4891), + [anon_sym_STAR_EQ] = ACTIONS(4891), + [anon_sym_SLASH_EQ] = ACTIONS(4891), + [anon_sym_PERCENT_EQ] = ACTIONS(4891), + [anon_sym_EQ] = ACTIONS(4891), + [anon_sym_BANG_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4972), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4972), + [anon_sym_LT_EQ] = ACTIONS(4972), + [anon_sym_GT_EQ] = ACTIONS(4972), + [anon_sym_is] = ACTIONS(4969), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_PLUS_PLUS] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4972), + [anon_sym_PIPE] = ACTIONS(4972), + [anon_sym_CARET] = ACTIONS(4972), + [anon_sym_LT_LT] = ACTIONS(4972), + [anon_sym_GT_GT] = ACTIONS(4972), + [anon_sym_import] = ACTIONS(4969), + [anon_sym_typealias] = ACTIONS(4969), + [anon_sym_struct] = ACTIONS(4969), + [anon_sym_class] = ACTIONS(4969), + [anon_sym_enum] = ACTIONS(4969), + [anon_sym_protocol] = ACTIONS(4969), + [anon_sym_let] = ACTIONS(4969), + [anon_sym_var] = ACTIONS(4969), + [anon_sym_func] = ACTIONS(4969), + [anon_sym_extension] = ACTIONS(4969), + [anon_sym_indirect] = ACTIONS(4969), + [anon_sym_init] = ACTIONS(4969), + [anon_sym_SEMI] = ACTIONS(4969), + [anon_sym_deinit] = ACTIONS(4969), + [anon_sym_subscript] = ACTIONS(4969), + [anon_sym_prefix] = ACTIONS(4969), + [anon_sym_infix] = ACTIONS(4969), + [anon_sym_postfix] = ACTIONS(4969), + [anon_sym_precedencegroup] = ACTIONS(4969), + [anon_sym_associatedtype] = ACTIONS(4969), + [anon_sym_AT] = ACTIONS(4972), + [sym_property_behavior_modifier] = ACTIONS(4969), + [anon_sym_override] = ACTIONS(4969), + [anon_sym_convenience] = ACTIONS(4969), + [anon_sym_required] = ACTIONS(4969), + [anon_sym_public] = ACTIONS(4969), + [anon_sym_private] = ACTIONS(4969), + [anon_sym_internal] = ACTIONS(4969), + [anon_sym_fileprivate] = ACTIONS(4969), + [anon_sym_open] = ACTIONS(4969), + [anon_sym_mutating] = ACTIONS(4969), + [anon_sym_nonmutating] = ACTIONS(4969), + [anon_sym_static] = ACTIONS(4969), + [anon_sym_dynamic] = ACTIONS(4969), + [anon_sym_optional] = ACTIONS(4969), + [anon_sym_final] = ACTIONS(4969), + [anon_sym_inout] = ACTIONS(4969), + [anon_sym_ATescaping] = ACTIONS(4969), + [anon_sym_ATautoclosure] = ACTIONS(4969), + [anon_sym_weak] = ACTIONS(4969), + [anon_sym_unowned] = ACTIONS(4972), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4969), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4969), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4969), + [sym__three_dot_operator_custom] = ACTIONS(4969), + [sym__open_ended_range_operator_custom] = ACTIONS(4969), + [sym__conjunction_operator_custom] = ACTIONS(4969), + [sym__disjunction_operator_custom] = ACTIONS(4969), + [sym__nil_coalescing_operator_custom] = ACTIONS(4969), + [sym__eq_eq_custom] = ACTIONS(4969), + [sym__plus_then_ws] = ACTIONS(4969), + [sym__minus_then_ws] = ACTIONS(4969), + [sym_bang] = ACTIONS(4969), + [sym__as_custom] = ACTIONS(4969), + [sym__as_quest_custom] = ACTIONS(4969), + [sym__as_bang_custom] = ACTIONS(4969), + }, + [1206] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4975), + [anon_sym_COMMA] = ACTIONS(4975), + [anon_sym_COLON] = ACTIONS(4975), + [anon_sym_LPAREN] = ACTIONS(4975), + [anon_sym_LBRACK] = ACTIONS(4975), + [anon_sym_RBRACK] = ACTIONS(4975), + [anon_sym_QMARK] = ACTIONS(4977), + [sym__immediate_quest] = ACTIONS(4977), + [anon_sym_AMP] = ACTIONS(4977), + [anon_sym_async] = ACTIONS(4975), + [aux_sym_custom_operator_token1] = ACTIONS(4977), + [anon_sym_LT] = ACTIONS(4977), + [anon_sym_GT] = ACTIONS(4977), + [anon_sym_LBRACE] = ACTIONS(4975), + [anon_sym_RBRACE] = ACTIONS(4975), + [anon_sym_case] = ACTIONS(4975), + [anon_sym_PLUS_EQ] = ACTIONS(4977), + [anon_sym_DASH_EQ] = ACTIONS(4977), + [anon_sym_STAR_EQ] = ACTIONS(4977), + [anon_sym_SLASH_EQ] = ACTIONS(4977), + [anon_sym_PERCENT_EQ] = ACTIONS(4977), + [anon_sym_EQ] = ACTIONS(4977), + [anon_sym_BANG_EQ] = ACTIONS(4977), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4977), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4977), + [anon_sym_LT_EQ] = ACTIONS(4977), + [anon_sym_GT_EQ] = ACTIONS(4977), + [anon_sym_is] = ACTIONS(4975), + [anon_sym_PLUS] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4977), + [anon_sym_STAR] = ACTIONS(4977), + [anon_sym_SLASH] = ACTIONS(4977), + [anon_sym_PERCENT] = ACTIONS(4977), + [anon_sym_PLUS_PLUS] = ACTIONS(4977), + [anon_sym_DASH_DASH] = ACTIONS(4977), + [anon_sym_PIPE] = ACTIONS(4977), + [anon_sym_CARET] = ACTIONS(4977), + [anon_sym_LT_LT] = ACTIONS(4977), + [anon_sym_GT_GT] = ACTIONS(4977), + [anon_sym_import] = ACTIONS(4975), + [anon_sym_typealias] = ACTIONS(4975), + [anon_sym_struct] = ACTIONS(4975), + [anon_sym_class] = ACTIONS(4975), + [anon_sym_enum] = ACTIONS(4975), + [anon_sym_protocol] = ACTIONS(4975), + [anon_sym_let] = ACTIONS(4975), + [anon_sym_var] = ACTIONS(4975), + [anon_sym_func] = ACTIONS(4975), + [anon_sym_extension] = ACTIONS(4975), + [anon_sym_indirect] = ACTIONS(4975), + [anon_sym_init] = ACTIONS(4975), + [anon_sym_SEMI] = ACTIONS(4975), + [anon_sym_deinit] = ACTIONS(4975), + [anon_sym_subscript] = ACTIONS(4975), + [anon_sym_prefix] = ACTIONS(4975), + [anon_sym_infix] = ACTIONS(4975), + [anon_sym_postfix] = ACTIONS(4975), + [anon_sym_precedencegroup] = ACTIONS(4975), + [anon_sym_associatedtype] = ACTIONS(4975), + [anon_sym_AT] = ACTIONS(4977), + [sym_property_behavior_modifier] = ACTIONS(4975), + [anon_sym_override] = ACTIONS(4975), + [anon_sym_convenience] = ACTIONS(4975), + [anon_sym_required] = ACTIONS(4975), + [anon_sym_public] = ACTIONS(4975), + [anon_sym_private] = ACTIONS(4975), + [anon_sym_internal] = ACTIONS(4975), + [anon_sym_fileprivate] = ACTIONS(4975), + [anon_sym_open] = ACTIONS(4975), + [anon_sym_mutating] = ACTIONS(4975), + [anon_sym_nonmutating] = ACTIONS(4975), + [anon_sym_static] = ACTIONS(4975), + [anon_sym_dynamic] = ACTIONS(4975), + [anon_sym_optional] = ACTIONS(4975), + [anon_sym_final] = ACTIONS(4975), + [anon_sym_inout] = ACTIONS(4975), + [anon_sym_ATescaping] = ACTIONS(4975), + [anon_sym_ATautoclosure] = ACTIONS(4975), + [anon_sym_weak] = ACTIONS(4975), + [anon_sym_unowned] = ACTIONS(4977), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4975), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4975), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4975), + [sym__three_dot_operator_custom] = ACTIONS(4975), + [sym__open_ended_range_operator_custom] = ACTIONS(4975), + [sym__conjunction_operator_custom] = ACTIONS(4975), + [sym__disjunction_operator_custom] = ACTIONS(4975), + [sym__nil_coalescing_operator_custom] = ACTIONS(4975), + [sym__eq_eq_custom] = ACTIONS(4975), + [sym__plus_then_ws] = ACTIONS(4975), + [sym__minus_then_ws] = ACTIONS(4975), + [sym_bang] = ACTIONS(4975), + [sym__as_custom] = ACTIONS(4975), + [sym__as_quest_custom] = ACTIONS(4975), + [sym__as_bang_custom] = ACTIONS(4975), + }, + [1207] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4979), + [anon_sym_COMMA] = ACTIONS(4979), + [anon_sym_COLON] = ACTIONS(4979), + [anon_sym_LPAREN] = ACTIONS(4979), + [anon_sym_LBRACK] = ACTIONS(4979), + [anon_sym_RBRACK] = ACTIONS(4979), + [anon_sym_QMARK] = ACTIONS(4981), + [sym__immediate_quest] = ACTIONS(4981), + [anon_sym_AMP] = ACTIONS(4981), + [anon_sym_async] = ACTIONS(4979), + [aux_sym_custom_operator_token1] = ACTIONS(4981), + [anon_sym_LT] = ACTIONS(4981), + [anon_sym_GT] = ACTIONS(4981), + [anon_sym_LBRACE] = ACTIONS(4979), + [anon_sym_RBRACE] = ACTIONS(4979), + [anon_sym_case] = ACTIONS(4979), + [anon_sym_PLUS_EQ] = ACTIONS(4981), + [anon_sym_DASH_EQ] = ACTIONS(4981), + [anon_sym_STAR_EQ] = ACTIONS(4981), + [anon_sym_SLASH_EQ] = ACTIONS(4981), + [anon_sym_PERCENT_EQ] = ACTIONS(4981), + [anon_sym_EQ] = ACTIONS(4981), + [anon_sym_BANG_EQ] = ACTIONS(4981), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4981), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4981), + [anon_sym_LT_EQ] = ACTIONS(4981), + [anon_sym_GT_EQ] = ACTIONS(4981), + [anon_sym_is] = ACTIONS(4979), + [anon_sym_PLUS] = ACTIONS(4981), + [anon_sym_DASH] = ACTIONS(4981), + [anon_sym_STAR] = ACTIONS(4981), + [anon_sym_SLASH] = ACTIONS(4981), + [anon_sym_PERCENT] = ACTIONS(4981), + [anon_sym_PLUS_PLUS] = ACTIONS(4981), + [anon_sym_DASH_DASH] = ACTIONS(4981), + [anon_sym_PIPE] = ACTIONS(4981), + [anon_sym_CARET] = ACTIONS(4981), + [anon_sym_LT_LT] = ACTIONS(4981), + [anon_sym_GT_GT] = ACTIONS(4981), + [anon_sym_import] = ACTIONS(4979), + [anon_sym_typealias] = ACTIONS(4979), + [anon_sym_struct] = ACTIONS(4979), + [anon_sym_class] = ACTIONS(4979), + [anon_sym_enum] = ACTIONS(4979), + [anon_sym_protocol] = ACTIONS(4979), + [anon_sym_let] = ACTIONS(4979), + [anon_sym_var] = ACTIONS(4979), + [anon_sym_func] = ACTIONS(4979), + [anon_sym_extension] = ACTIONS(4979), + [anon_sym_indirect] = ACTIONS(4979), + [anon_sym_init] = ACTIONS(4979), + [anon_sym_SEMI] = ACTIONS(4979), + [anon_sym_deinit] = ACTIONS(4979), + [anon_sym_subscript] = ACTIONS(4979), + [anon_sym_prefix] = ACTIONS(4979), + [anon_sym_infix] = ACTIONS(4979), + [anon_sym_postfix] = ACTIONS(4979), + [anon_sym_precedencegroup] = ACTIONS(4979), + [anon_sym_associatedtype] = ACTIONS(4979), + [anon_sym_AT] = ACTIONS(4981), + [sym_property_behavior_modifier] = ACTIONS(4979), + [anon_sym_override] = ACTIONS(4979), + [anon_sym_convenience] = ACTIONS(4979), + [anon_sym_required] = ACTIONS(4979), + [anon_sym_public] = ACTIONS(4979), + [anon_sym_private] = ACTIONS(4979), + [anon_sym_internal] = ACTIONS(4979), + [anon_sym_fileprivate] = ACTIONS(4979), + [anon_sym_open] = ACTIONS(4979), + [anon_sym_mutating] = ACTIONS(4979), + [anon_sym_nonmutating] = ACTIONS(4979), + [anon_sym_static] = ACTIONS(4979), + [anon_sym_dynamic] = ACTIONS(4979), + [anon_sym_optional] = ACTIONS(4979), + [anon_sym_final] = ACTIONS(4979), + [anon_sym_inout] = ACTIONS(4979), + [anon_sym_ATescaping] = ACTIONS(4979), + [anon_sym_ATautoclosure] = ACTIONS(4979), + [anon_sym_weak] = ACTIONS(4979), + [anon_sym_unowned] = ACTIONS(4981), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4979), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4979), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4979), + [sym__three_dot_operator_custom] = ACTIONS(4979), + [sym__open_ended_range_operator_custom] = ACTIONS(4979), + [sym__conjunction_operator_custom] = ACTIONS(4979), + [sym__disjunction_operator_custom] = ACTIONS(4979), + [sym__nil_coalescing_operator_custom] = ACTIONS(4979), + [sym__eq_eq_custom] = ACTIONS(4979), + [sym__plus_then_ws] = ACTIONS(4979), + [sym__minus_then_ws] = ACTIONS(4979), + [sym_bang] = ACTIONS(4979), + [sym__as_custom] = ACTIONS(4979), + [sym__as_quest_custom] = ACTIONS(4979), + [sym__as_bang_custom] = ACTIONS(4979), + }, + [1208] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4749), + [anon_sym_COMMA] = ACTIONS(4749), + [anon_sym_COLON] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4749), + [anon_sym_LBRACK] = ACTIONS(4749), + [anon_sym_RBRACK] = ACTIONS(4749), + [anon_sym_QMARK] = ACTIONS(4751), + [sym__immediate_quest] = ACTIONS(4751), + [anon_sym_AMP] = ACTIONS(4751), + [anon_sym_async] = ACTIONS(4749), + [aux_sym_custom_operator_token1] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(4749), + [anon_sym_RBRACE] = ACTIONS(4749), + [anon_sym_case] = ACTIONS(4749), + [anon_sym_PLUS_EQ] = ACTIONS(4751), + [anon_sym_DASH_EQ] = ACTIONS(4751), + [anon_sym_STAR_EQ] = ACTIONS(4751), + [anon_sym_SLASH_EQ] = ACTIONS(4751), + [anon_sym_PERCENT_EQ] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_BANG_EQ] = ACTIONS(4751), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4751), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4751), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_is] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4751), + [anon_sym_STAR] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_PERCENT] = ACTIONS(4751), + [anon_sym_PLUS_PLUS] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_LT_LT] = ACTIONS(4751), + [anon_sym_GT_GT] = ACTIONS(4751), + [anon_sym_import] = ACTIONS(4749), + [anon_sym_typealias] = ACTIONS(4749), + [anon_sym_struct] = ACTIONS(4749), + [anon_sym_class] = ACTIONS(4749), + [anon_sym_enum] = ACTIONS(4749), + [anon_sym_protocol] = ACTIONS(4749), + [anon_sym_let] = ACTIONS(4749), + [anon_sym_var] = ACTIONS(4749), + [anon_sym_func] = ACTIONS(4749), + [anon_sym_extension] = ACTIONS(4749), + [anon_sym_indirect] = ACTIONS(4749), + [anon_sym_init] = ACTIONS(4749), + [anon_sym_SEMI] = ACTIONS(4749), + [anon_sym_deinit] = ACTIONS(4749), + [anon_sym_subscript] = ACTIONS(4749), + [anon_sym_prefix] = ACTIONS(4749), + [anon_sym_infix] = ACTIONS(4749), + [anon_sym_postfix] = ACTIONS(4749), + [anon_sym_precedencegroup] = ACTIONS(4749), + [anon_sym_associatedtype] = ACTIONS(4749), + [anon_sym_AT] = ACTIONS(4751), + [sym_property_behavior_modifier] = ACTIONS(4749), + [anon_sym_override] = ACTIONS(4749), + [anon_sym_convenience] = ACTIONS(4749), + [anon_sym_required] = ACTIONS(4749), + [anon_sym_public] = ACTIONS(4749), + [anon_sym_private] = ACTIONS(4749), + [anon_sym_internal] = ACTIONS(4749), + [anon_sym_fileprivate] = ACTIONS(4749), + [anon_sym_open] = ACTIONS(4749), + [anon_sym_mutating] = ACTIONS(4749), + [anon_sym_nonmutating] = ACTIONS(4749), + [anon_sym_static] = ACTIONS(4749), + [anon_sym_dynamic] = ACTIONS(4749), + [anon_sym_optional] = ACTIONS(4749), + [anon_sym_final] = ACTIONS(4749), + [anon_sym_inout] = ACTIONS(4749), + [anon_sym_ATescaping] = ACTIONS(4749), + [anon_sym_ATautoclosure] = ACTIONS(4749), + [anon_sym_weak] = ACTIONS(4749), + [anon_sym_unowned] = ACTIONS(4751), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4749), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4749), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4749), + [sym__three_dot_operator_custom] = ACTIONS(4749), + [sym__open_ended_range_operator_custom] = ACTIONS(4749), + [sym__conjunction_operator_custom] = ACTIONS(4749), + [sym__disjunction_operator_custom] = ACTIONS(4749), + [sym__nil_coalescing_operator_custom] = ACTIONS(4749), + [sym__eq_eq_custom] = ACTIONS(4749), + [sym__plus_then_ws] = ACTIONS(4749), + [sym__minus_then_ws] = ACTIONS(4749), + [sym_bang] = ACTIONS(4749), + [sym__as_custom] = ACTIONS(4749), + [sym__as_quest_custom] = ACTIONS(4749), + [sym__as_bang_custom] = ACTIONS(4749), + }, + [1209] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4983), + [anon_sym_COMMA] = ACTIONS(4983), + [anon_sym_COLON] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4983), + [anon_sym_LBRACK] = ACTIONS(4983), + [anon_sym_RBRACK] = ACTIONS(4983), + [anon_sym_DOT] = ACTIONS(4985), + [anon_sym_QMARK] = ACTIONS(4985), + [sym__immediate_quest] = ACTIONS(4985), + [anon_sym_AMP] = ACTIONS(4985), + [anon_sym_async] = ACTIONS(4983), + [aux_sym_custom_operator_token1] = ACTIONS(4985), + [anon_sym_LT] = ACTIONS(4985), + [anon_sym_GT] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4983), + [anon_sym_RBRACE] = ACTIONS(4983), + [anon_sym_case] = ACTIONS(4983), + [anon_sym_BANG_EQ] = ACTIONS(4985), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4985), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4985), + [anon_sym_LT_EQ] = ACTIONS(4985), + [anon_sym_GT_EQ] = ACTIONS(4985), + [anon_sym_is] = ACTIONS(4983), + [anon_sym_PLUS] = ACTIONS(4985), + [anon_sym_DASH] = ACTIONS(4985), + [anon_sym_STAR] = ACTIONS(4985), + [anon_sym_SLASH] = ACTIONS(4985), + [anon_sym_PERCENT] = ACTIONS(4985), + [anon_sym_PLUS_PLUS] = ACTIONS(4985), + [anon_sym_DASH_DASH] = ACTIONS(4985), + [anon_sym_PIPE] = ACTIONS(4985), + [anon_sym_CARET] = ACTIONS(4985), + [anon_sym_LT_LT] = ACTIONS(4985), + [anon_sym_GT_GT] = ACTIONS(4985), + [anon_sym_import] = ACTIONS(4983), + [anon_sym_typealias] = ACTIONS(4983), + [anon_sym_struct] = ACTIONS(4983), + [anon_sym_class] = ACTIONS(4983), + [anon_sym_enum] = ACTIONS(4983), + [anon_sym_protocol] = ACTIONS(4983), + [anon_sym_let] = ACTIONS(4983), + [anon_sym_var] = ACTIONS(4983), + [anon_sym_func] = ACTIONS(4983), + [anon_sym_extension] = ACTIONS(4983), + [anon_sym_indirect] = ACTIONS(4983), + [anon_sym_init] = ACTIONS(4983), + [anon_sym_SEMI] = ACTIONS(4983), + [anon_sym_deinit] = ACTIONS(4983), + [anon_sym_subscript] = ACTIONS(4983), + [anon_sym_prefix] = ACTIONS(4983), + [anon_sym_infix] = ACTIONS(4983), + [anon_sym_postfix] = ACTIONS(4983), + [anon_sym_precedencegroup] = ACTIONS(4983), + [anon_sym_associatedtype] = ACTIONS(4983), + [anon_sym_AT] = ACTIONS(4985), + [sym_property_behavior_modifier] = ACTIONS(4983), + [anon_sym_override] = ACTIONS(4983), + [anon_sym_convenience] = ACTIONS(4983), + [anon_sym_required] = ACTIONS(4983), + [anon_sym_public] = ACTIONS(4983), + [anon_sym_private] = ACTIONS(4983), + [anon_sym_internal] = ACTIONS(4983), + [anon_sym_fileprivate] = ACTIONS(4983), + [anon_sym_open] = ACTIONS(4983), + [anon_sym_mutating] = ACTIONS(4983), + [anon_sym_nonmutating] = ACTIONS(4983), + [anon_sym_static] = ACTIONS(4983), + [anon_sym_dynamic] = ACTIONS(4983), + [anon_sym_optional] = ACTIONS(4983), + [anon_sym_final] = ACTIONS(4983), + [anon_sym_inout] = ACTIONS(4983), + [anon_sym_ATescaping] = ACTIONS(4983), + [anon_sym_ATautoclosure] = ACTIONS(4983), + [anon_sym_weak] = ACTIONS(4983), + [anon_sym_unowned] = ACTIONS(4985), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4983), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4983), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__arrow_operator_custom] = ACTIONS(4983), + [sym__dot_custom] = ACTIONS(4983), + [sym__three_dot_operator_custom] = ACTIONS(4983), + [sym__open_ended_range_operator_custom] = ACTIONS(4983), + [sym__conjunction_operator_custom] = ACTIONS(4983), + [sym__disjunction_operator_custom] = ACTIONS(4983), + [sym__nil_coalescing_operator_custom] = ACTIONS(4983), + [sym__eq_eq_custom] = ACTIONS(4983), + [sym__plus_then_ws] = ACTIONS(4983), + [sym__minus_then_ws] = ACTIONS(4983), + [sym_bang] = ACTIONS(4983), + [sym__throws_keyword] = ACTIONS(4983), + [sym__rethrows_keyword] = ACTIONS(4983), + [sym__as_custom] = ACTIONS(4983), + [sym__as_quest_custom] = ACTIONS(4983), + [sym__as_bang_custom] = ACTIONS(4983), + [sym__async_keyword_custom] = ACTIONS(4983), + }, + [1210] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym_COLON] = ACTIONS(4987), + [anon_sym_LPAREN] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(4987), + [anon_sym_RBRACK] = ACTIONS(4987), + [anon_sym_DOT] = ACTIONS(4989), + [anon_sym_QMARK] = ACTIONS(4989), + [sym__immediate_quest] = ACTIONS(4989), + [anon_sym_AMP] = ACTIONS(4989), + [anon_sym_async] = ACTIONS(4987), + [aux_sym_custom_operator_token1] = ACTIONS(4989), + [anon_sym_LT] = ACTIONS(4989), + [anon_sym_GT] = ACTIONS(4989), + [anon_sym_LBRACE] = ACTIONS(4987), + [anon_sym_RBRACE] = ACTIONS(4987), + [anon_sym_case] = ACTIONS(4987), + [anon_sym_BANG_EQ] = ACTIONS(4989), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4989), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4989), + [anon_sym_LT_EQ] = ACTIONS(4989), + [anon_sym_GT_EQ] = ACTIONS(4989), + [anon_sym_is] = ACTIONS(4987), + [anon_sym_PLUS] = ACTIONS(4989), + [anon_sym_DASH] = ACTIONS(4989), + [anon_sym_STAR] = ACTIONS(4989), + [anon_sym_SLASH] = ACTIONS(4989), + [anon_sym_PERCENT] = ACTIONS(4989), + [anon_sym_PLUS_PLUS] = ACTIONS(4989), + [anon_sym_DASH_DASH] = ACTIONS(4989), + [anon_sym_PIPE] = ACTIONS(4989), + [anon_sym_CARET] = ACTIONS(4989), + [anon_sym_LT_LT] = ACTIONS(4989), + [anon_sym_GT_GT] = ACTIONS(4989), + [anon_sym_import] = ACTIONS(4987), + [anon_sym_typealias] = ACTIONS(4987), + [anon_sym_struct] = ACTIONS(4987), + [anon_sym_class] = ACTIONS(4987), + [anon_sym_enum] = ACTIONS(4987), + [anon_sym_protocol] = ACTIONS(4987), + [anon_sym_let] = ACTIONS(4987), + [anon_sym_var] = ACTIONS(4987), + [anon_sym_func] = ACTIONS(4987), + [anon_sym_extension] = ACTIONS(4987), + [anon_sym_indirect] = ACTIONS(4987), + [anon_sym_init] = ACTIONS(4987), + [anon_sym_SEMI] = ACTIONS(4987), + [anon_sym_deinit] = ACTIONS(4987), + [anon_sym_subscript] = ACTIONS(4987), + [anon_sym_prefix] = ACTIONS(4987), + [anon_sym_infix] = ACTIONS(4987), + [anon_sym_postfix] = ACTIONS(4987), + [anon_sym_precedencegroup] = ACTIONS(4987), + [anon_sym_associatedtype] = ACTIONS(4987), + [anon_sym_AT] = ACTIONS(4989), + [sym_property_behavior_modifier] = ACTIONS(4987), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_convenience] = ACTIONS(4987), + [anon_sym_required] = ACTIONS(4987), + [anon_sym_public] = ACTIONS(4987), + [anon_sym_private] = ACTIONS(4987), + [anon_sym_internal] = ACTIONS(4987), + [anon_sym_fileprivate] = ACTIONS(4987), + [anon_sym_open] = ACTIONS(4987), + [anon_sym_mutating] = ACTIONS(4987), + [anon_sym_nonmutating] = ACTIONS(4987), + [anon_sym_static] = ACTIONS(4987), + [anon_sym_dynamic] = ACTIONS(4987), + [anon_sym_optional] = ACTIONS(4987), + [anon_sym_final] = ACTIONS(4987), + [anon_sym_inout] = ACTIONS(4987), + [anon_sym_ATescaping] = ACTIONS(4987), + [anon_sym_ATautoclosure] = ACTIONS(4987), + [anon_sym_weak] = ACTIONS(4987), + [anon_sym_unowned] = ACTIONS(4989), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4987), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4987), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__arrow_operator_custom] = ACTIONS(4987), + [sym__dot_custom] = ACTIONS(4987), + [sym__three_dot_operator_custom] = ACTIONS(4987), + [sym__open_ended_range_operator_custom] = ACTIONS(4987), + [sym__conjunction_operator_custom] = ACTIONS(4987), + [sym__disjunction_operator_custom] = ACTIONS(4987), + [sym__nil_coalescing_operator_custom] = ACTIONS(4987), + [sym__eq_eq_custom] = ACTIONS(4987), + [sym__plus_then_ws] = ACTIONS(4987), + [sym__minus_then_ws] = ACTIONS(4987), + [sym_bang] = ACTIONS(4987), + [sym__throws_keyword] = ACTIONS(4987), + [sym__rethrows_keyword] = ACTIONS(4987), + [sym__as_custom] = ACTIONS(4987), + [sym__as_quest_custom] = ACTIONS(4987), + [sym__as_bang_custom] = ACTIONS(4987), + [sym__async_keyword_custom] = ACTIONS(4987), + }, + [1211] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4991), + [anon_sym_COMMA] = ACTIONS(4991), + [anon_sym_COLON] = ACTIONS(4991), + [anon_sym_LPAREN] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(4991), + [anon_sym_RBRACK] = ACTIONS(4991), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_QMARK] = ACTIONS(4993), + [sym__immediate_quest] = ACTIONS(4993), + [anon_sym_AMP] = ACTIONS(4993), + [anon_sym_async] = ACTIONS(4991), + [aux_sym_custom_operator_token1] = ACTIONS(4993), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_GT] = ACTIONS(4993), + [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_RBRACE] = ACTIONS(4991), + [anon_sym_case] = ACTIONS(4991), + [anon_sym_BANG_EQ] = ACTIONS(4993), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4993), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4993), + [anon_sym_LT_EQ] = ACTIONS(4993), + [anon_sym_GT_EQ] = ACTIONS(4993), + [anon_sym_is] = ACTIONS(4991), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4993), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4993), + [anon_sym_PLUS_PLUS] = ACTIONS(4993), + [anon_sym_DASH_DASH] = ACTIONS(4993), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_CARET] = ACTIONS(4993), + [anon_sym_LT_LT] = ACTIONS(4993), + [anon_sym_GT_GT] = ACTIONS(4993), + [anon_sym_import] = ACTIONS(4991), + [anon_sym_typealias] = ACTIONS(4991), + [anon_sym_struct] = ACTIONS(4991), + [anon_sym_class] = ACTIONS(4991), + [anon_sym_enum] = ACTIONS(4991), + [anon_sym_protocol] = ACTIONS(4991), + [anon_sym_let] = ACTIONS(4991), + [anon_sym_var] = ACTIONS(4991), + [anon_sym_func] = ACTIONS(4991), + [anon_sym_extension] = ACTIONS(4991), + [anon_sym_indirect] = ACTIONS(4991), + [anon_sym_init] = ACTIONS(4991), + [anon_sym_SEMI] = ACTIONS(4991), + [anon_sym_deinit] = ACTIONS(4991), + [anon_sym_subscript] = ACTIONS(4991), + [anon_sym_prefix] = ACTIONS(4991), + [anon_sym_infix] = ACTIONS(4991), + [anon_sym_postfix] = ACTIONS(4991), + [anon_sym_precedencegroup] = ACTIONS(4991), + [anon_sym_associatedtype] = ACTIONS(4991), + [anon_sym_AT] = ACTIONS(4993), + [sym_property_behavior_modifier] = ACTIONS(4991), + [anon_sym_override] = ACTIONS(4991), + [anon_sym_convenience] = ACTIONS(4991), + [anon_sym_required] = ACTIONS(4991), + [anon_sym_public] = ACTIONS(4991), + [anon_sym_private] = ACTIONS(4991), + [anon_sym_internal] = ACTIONS(4991), + [anon_sym_fileprivate] = ACTIONS(4991), + [anon_sym_open] = ACTIONS(4991), + [anon_sym_mutating] = ACTIONS(4991), + [anon_sym_nonmutating] = ACTIONS(4991), + [anon_sym_static] = ACTIONS(4991), + [anon_sym_dynamic] = ACTIONS(4991), + [anon_sym_optional] = ACTIONS(4991), + [anon_sym_final] = ACTIONS(4991), + [anon_sym_inout] = ACTIONS(4991), + [anon_sym_ATescaping] = ACTIONS(4991), + [anon_sym_ATautoclosure] = ACTIONS(4991), + [anon_sym_weak] = ACTIONS(4991), + [anon_sym_unowned] = ACTIONS(4993), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4991), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4991), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__arrow_operator_custom] = ACTIONS(4991), + [sym__dot_custom] = ACTIONS(4991), + [sym__three_dot_operator_custom] = ACTIONS(4991), + [sym__open_ended_range_operator_custom] = ACTIONS(4991), + [sym__conjunction_operator_custom] = ACTIONS(4991), + [sym__disjunction_operator_custom] = ACTIONS(4991), + [sym__nil_coalescing_operator_custom] = ACTIONS(4991), + [sym__eq_eq_custom] = ACTIONS(4991), + [sym__plus_then_ws] = ACTIONS(4991), + [sym__minus_then_ws] = ACTIONS(4991), + [sym_bang] = ACTIONS(4991), + [sym__throws_keyword] = ACTIONS(4991), + [sym__rethrows_keyword] = ACTIONS(4991), + [sym__as_custom] = ACTIONS(4991), + [sym__as_quest_custom] = ACTIONS(4991), + [sym__as_bang_custom] = ACTIONS(4991), + [sym__async_keyword_custom] = ACTIONS(4991), + }, + [1212] = { + [sym__key_path_postfixes] = STATE(1213), + [aux_sym__key_path_component_repeat1] = STATE(1213), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4995), + [anon_sym_COMMA] = ACTIONS(4995), + [anon_sym_COLON] = ACTIONS(4995), + [anon_sym_LPAREN] = ACTIONS(4995), + [anon_sym_LBRACK] = ACTIONS(4995), + [anon_sym_RBRACK] = ACTIONS(4995), + [anon_sym_DOT] = ACTIONS(4997), + [anon_sym_QMARK] = ACTIONS(4997), + [sym__immediate_quest] = ACTIONS(4997), + [anon_sym_AMP] = ACTIONS(4997), + [anon_sym_async] = ACTIONS(4995), + [aux_sym_custom_operator_token1] = ACTIONS(4997), + [anon_sym_LT] = ACTIONS(4997), + [anon_sym_GT] = ACTIONS(4997), + [anon_sym_LBRACE] = ACTIONS(4995), + [anon_sym_RBRACE] = ACTIONS(4995), + [anon_sym_self] = ACTIONS(4999), + [anon_sym_case] = ACTIONS(4995), + [anon_sym_BANG_EQ] = ACTIONS(4997), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4997), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4997), + [anon_sym_LT_EQ] = ACTIONS(4997), + [anon_sym_GT_EQ] = ACTIONS(4997), + [anon_sym_is] = ACTIONS(4995), + [anon_sym_PLUS] = ACTIONS(4997), + [anon_sym_DASH] = ACTIONS(4997), + [anon_sym_STAR] = ACTIONS(4997), + [anon_sym_SLASH] = ACTIONS(4997), + [anon_sym_PERCENT] = ACTIONS(4997), + [anon_sym_PLUS_PLUS] = ACTIONS(4997), + [anon_sym_DASH_DASH] = ACTIONS(4997), + [anon_sym_PIPE] = ACTIONS(4997), + [anon_sym_CARET] = ACTIONS(4997), + [anon_sym_LT_LT] = ACTIONS(4997), + [anon_sym_GT_GT] = ACTIONS(4997), + [anon_sym_import] = ACTIONS(4995), + [anon_sym_typealias] = ACTIONS(4995), + [anon_sym_struct] = ACTIONS(4995), + [anon_sym_class] = ACTIONS(4995), + [anon_sym_enum] = ACTIONS(4995), + [anon_sym_protocol] = ACTIONS(4995), + [anon_sym_let] = ACTIONS(4995), + [anon_sym_var] = ACTIONS(4995), + [anon_sym_func] = ACTIONS(4995), + [anon_sym_extension] = ACTIONS(4995), + [anon_sym_indirect] = ACTIONS(4995), + [anon_sym_init] = ACTIONS(4995), + [anon_sym_SEMI] = ACTIONS(4995), + [anon_sym_deinit] = ACTIONS(4995), + [anon_sym_subscript] = ACTIONS(4995), + [anon_sym_prefix] = ACTIONS(4995), + [anon_sym_infix] = ACTIONS(4995), + [anon_sym_postfix] = ACTIONS(4995), + [anon_sym_precedencegroup] = ACTIONS(4995), + [anon_sym_associatedtype] = ACTIONS(4995), + [anon_sym_AT] = ACTIONS(4997), + [sym_property_behavior_modifier] = ACTIONS(4995), + [anon_sym_override] = ACTIONS(4995), + [anon_sym_convenience] = ACTIONS(4995), + [anon_sym_required] = ACTIONS(4995), + [anon_sym_public] = ACTIONS(4995), + [anon_sym_private] = ACTIONS(4995), + [anon_sym_internal] = ACTIONS(4995), + [anon_sym_fileprivate] = ACTIONS(4995), + [anon_sym_open] = ACTIONS(4995), + [anon_sym_mutating] = ACTIONS(4995), + [anon_sym_nonmutating] = ACTIONS(4995), + [anon_sym_static] = ACTIONS(4995), + [anon_sym_dynamic] = ACTIONS(4995), + [anon_sym_optional] = ACTIONS(4995), + [anon_sym_final] = ACTIONS(4995), + [anon_sym_inout] = ACTIONS(4995), + [anon_sym_ATescaping] = ACTIONS(4995), + [anon_sym_ATautoclosure] = ACTIONS(4995), + [anon_sym_weak] = ACTIONS(4995), + [anon_sym_unowned] = ACTIONS(4997), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4995), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4995), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4995), + [sym__three_dot_operator_custom] = ACTIONS(4995), + [sym__open_ended_range_operator_custom] = ACTIONS(4995), + [sym__conjunction_operator_custom] = ACTIONS(4995), + [sym__disjunction_operator_custom] = ACTIONS(4995), + [sym__nil_coalescing_operator_custom] = ACTIONS(4995), + [sym__eq_eq_custom] = ACTIONS(4995), + [sym__plus_then_ws] = ACTIONS(4995), + [sym__minus_then_ws] = ACTIONS(4995), + [sym_bang] = ACTIONS(4995), + [sym__as_custom] = ACTIONS(4995), + [sym__as_quest_custom] = ACTIONS(4995), + [sym__as_bang_custom] = ACTIONS(4995), + }, + [1213] = { + [sym__key_path_postfixes] = STATE(1213), + [aux_sym__key_path_component_repeat1] = STATE(1213), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5001), + [anon_sym_COMMA] = ACTIONS(5001), + [anon_sym_COLON] = ACTIONS(5001), + [anon_sym_LPAREN] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(5003), + [anon_sym_RBRACK] = ACTIONS(5001), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_QMARK] = ACTIONS(5008), + [sym__immediate_quest] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(5006), + [anon_sym_async] = ACTIONS(5001), + [aux_sym_custom_operator_token1] = ACTIONS(5006), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5001), + [anon_sym_RBRACE] = ACTIONS(5001), + [anon_sym_self] = ACTIONS(5011), + [anon_sym_case] = ACTIONS(5001), + [anon_sym_BANG_EQ] = ACTIONS(5006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5006), + [anon_sym_LT_EQ] = ACTIONS(5006), + [anon_sym_GT_EQ] = ACTIONS(5006), + [anon_sym_is] = ACTIONS(5001), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5006), + [anon_sym_PERCENT] = ACTIONS(5006), + [anon_sym_PLUS_PLUS] = ACTIONS(5006), + [anon_sym_DASH_DASH] = ACTIONS(5006), + [anon_sym_PIPE] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym_LT_LT] = ACTIONS(5006), + [anon_sym_GT_GT] = ACTIONS(5006), + [anon_sym_import] = ACTIONS(5001), + [anon_sym_typealias] = ACTIONS(5001), + [anon_sym_struct] = ACTIONS(5001), + [anon_sym_class] = ACTIONS(5001), + [anon_sym_enum] = ACTIONS(5001), + [anon_sym_protocol] = ACTIONS(5001), + [anon_sym_let] = ACTIONS(5001), + [anon_sym_var] = ACTIONS(5001), + [anon_sym_func] = ACTIONS(5001), + [anon_sym_extension] = ACTIONS(5001), + [anon_sym_indirect] = ACTIONS(5001), + [anon_sym_init] = ACTIONS(5001), + [anon_sym_SEMI] = ACTIONS(5001), + [anon_sym_deinit] = ACTIONS(5001), + [anon_sym_subscript] = ACTIONS(5001), + [anon_sym_prefix] = ACTIONS(5001), + [anon_sym_infix] = ACTIONS(5001), + [anon_sym_postfix] = ACTIONS(5001), + [anon_sym_precedencegroup] = ACTIONS(5001), + [anon_sym_associatedtype] = ACTIONS(5001), + [anon_sym_AT] = ACTIONS(5006), + [sym_property_behavior_modifier] = ACTIONS(5001), + [anon_sym_override] = ACTIONS(5001), + [anon_sym_convenience] = ACTIONS(5001), + [anon_sym_required] = ACTIONS(5001), + [anon_sym_public] = ACTIONS(5001), + [anon_sym_private] = ACTIONS(5001), + [anon_sym_internal] = ACTIONS(5001), + [anon_sym_fileprivate] = ACTIONS(5001), + [anon_sym_open] = ACTIONS(5001), + [anon_sym_mutating] = ACTIONS(5001), + [anon_sym_nonmutating] = ACTIONS(5001), + [anon_sym_static] = ACTIONS(5001), + [anon_sym_dynamic] = ACTIONS(5001), + [anon_sym_optional] = ACTIONS(5001), + [anon_sym_final] = ACTIONS(5001), + [anon_sym_inout] = ACTIONS(5001), + [anon_sym_ATescaping] = ACTIONS(5001), + [anon_sym_ATautoclosure] = ACTIONS(5001), + [anon_sym_weak] = ACTIONS(5001), + [anon_sym_unowned] = ACTIONS(5006), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5001), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5001), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5001), + [sym__three_dot_operator_custom] = ACTIONS(5001), + [sym__open_ended_range_operator_custom] = ACTIONS(5001), + [sym__conjunction_operator_custom] = ACTIONS(5001), + [sym__disjunction_operator_custom] = ACTIONS(5001), + [sym__nil_coalescing_operator_custom] = ACTIONS(5001), + [sym__eq_eq_custom] = ACTIONS(5001), + [sym__plus_then_ws] = ACTIONS(5001), + [sym__minus_then_ws] = ACTIONS(5001), + [sym_bang] = ACTIONS(5011), + [sym__as_custom] = ACTIONS(5001), + [sym__as_quest_custom] = ACTIONS(5001), + [sym__as_bang_custom] = ACTIONS(5001), + }, + [1214] = { + [sym__key_path_postfixes] = STATE(1212), + [aux_sym__key_path_component_repeat1] = STATE(1212), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5014), + [anon_sym_COMMA] = ACTIONS(5014), + [anon_sym_COLON] = ACTIONS(5014), + [anon_sym_LPAREN] = ACTIONS(5014), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_RBRACK] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5016), + [sym__immediate_quest] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5016), + [anon_sym_async] = ACTIONS(5014), + [aux_sym_custom_operator_token1] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5016), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5014), + [anon_sym_RBRACE] = ACTIONS(5014), + [anon_sym_self] = ACTIONS(5018), + [anon_sym_case] = ACTIONS(5014), + [anon_sym_BANG_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5016), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_is] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_CARET] = ACTIONS(5016), + [anon_sym_LT_LT] = ACTIONS(5016), + [anon_sym_GT_GT] = ACTIONS(5016), + [anon_sym_import] = ACTIONS(5014), + [anon_sym_typealias] = ACTIONS(5014), + [anon_sym_struct] = ACTIONS(5014), + [anon_sym_class] = ACTIONS(5014), + [anon_sym_enum] = ACTIONS(5014), + [anon_sym_protocol] = ACTIONS(5014), + [anon_sym_let] = ACTIONS(5014), + [anon_sym_var] = ACTIONS(5014), + [anon_sym_func] = ACTIONS(5014), + [anon_sym_extension] = ACTIONS(5014), + [anon_sym_indirect] = ACTIONS(5014), + [anon_sym_init] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5014), + [anon_sym_deinit] = ACTIONS(5014), + [anon_sym_subscript] = ACTIONS(5014), + [anon_sym_prefix] = ACTIONS(5014), + [anon_sym_infix] = ACTIONS(5014), + [anon_sym_postfix] = ACTIONS(5014), + [anon_sym_precedencegroup] = ACTIONS(5014), + [anon_sym_associatedtype] = ACTIONS(5014), + [anon_sym_AT] = ACTIONS(5016), + [sym_property_behavior_modifier] = ACTIONS(5014), + [anon_sym_override] = ACTIONS(5014), + [anon_sym_convenience] = ACTIONS(5014), + [anon_sym_required] = ACTIONS(5014), + [anon_sym_public] = ACTIONS(5014), + [anon_sym_private] = ACTIONS(5014), + [anon_sym_internal] = ACTIONS(5014), + [anon_sym_fileprivate] = ACTIONS(5014), + [anon_sym_open] = ACTIONS(5014), + [anon_sym_mutating] = ACTIONS(5014), + [anon_sym_nonmutating] = ACTIONS(5014), + [anon_sym_static] = ACTIONS(5014), + [anon_sym_dynamic] = ACTIONS(5014), + [anon_sym_optional] = ACTIONS(5014), + [anon_sym_final] = ACTIONS(5014), + [anon_sym_inout] = ACTIONS(5014), + [anon_sym_ATescaping] = ACTIONS(5014), + [anon_sym_ATautoclosure] = ACTIONS(5014), + [anon_sym_weak] = ACTIONS(5014), + [anon_sym_unowned] = ACTIONS(5016), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5014), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5014), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5014), + [sym__three_dot_operator_custom] = ACTIONS(5014), + [sym__open_ended_range_operator_custom] = ACTIONS(5014), + [sym__conjunction_operator_custom] = ACTIONS(5014), + [sym__disjunction_operator_custom] = ACTIONS(5014), + [sym__nil_coalescing_operator_custom] = ACTIONS(5014), + [sym__eq_eq_custom] = ACTIONS(5014), + [sym__plus_then_ws] = ACTIONS(5014), + [sym__minus_then_ws] = ACTIONS(5014), + [sym_bang] = ACTIONS(5014), + [sym__as_custom] = ACTIONS(5014), + [sym__as_quest_custom] = ACTIONS(5014), + [sym__as_bang_custom] = ACTIONS(5014), + }, + [1215] = { + [sym__key_path_postfixes] = STATE(1213), + [aux_sym__key_path_component_repeat1] = STATE(1213), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5014), + [anon_sym_COMMA] = ACTIONS(5014), + [anon_sym_COLON] = ACTIONS(5014), + [anon_sym_LPAREN] = ACTIONS(5014), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_RBRACK] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5016), + [sym__immediate_quest] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5016), + [anon_sym_async] = ACTIONS(5014), + [aux_sym_custom_operator_token1] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5016), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5014), + [anon_sym_RBRACE] = ACTIONS(5014), + [anon_sym_self] = ACTIONS(4999), + [anon_sym_case] = ACTIONS(5014), + [anon_sym_BANG_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5016), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_is] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_CARET] = ACTIONS(5016), + [anon_sym_LT_LT] = ACTIONS(5016), + [anon_sym_GT_GT] = ACTIONS(5016), + [anon_sym_import] = ACTIONS(5014), + [anon_sym_typealias] = ACTIONS(5014), + [anon_sym_struct] = ACTIONS(5014), + [anon_sym_class] = ACTIONS(5014), + [anon_sym_enum] = ACTIONS(5014), + [anon_sym_protocol] = ACTIONS(5014), + [anon_sym_let] = ACTIONS(5014), + [anon_sym_var] = ACTIONS(5014), + [anon_sym_func] = ACTIONS(5014), + [anon_sym_extension] = ACTIONS(5014), + [anon_sym_indirect] = ACTIONS(5014), + [anon_sym_init] = ACTIONS(5014), + [anon_sym_SEMI] = ACTIONS(5014), + [anon_sym_deinit] = ACTIONS(5014), + [anon_sym_subscript] = ACTIONS(5014), + [anon_sym_prefix] = ACTIONS(5014), + [anon_sym_infix] = ACTIONS(5014), + [anon_sym_postfix] = ACTIONS(5014), + [anon_sym_precedencegroup] = ACTIONS(5014), + [anon_sym_associatedtype] = ACTIONS(5014), + [anon_sym_AT] = ACTIONS(5016), + [sym_property_behavior_modifier] = ACTIONS(5014), + [anon_sym_override] = ACTIONS(5014), + [anon_sym_convenience] = ACTIONS(5014), + [anon_sym_required] = ACTIONS(5014), + [anon_sym_public] = ACTIONS(5014), + [anon_sym_private] = ACTIONS(5014), + [anon_sym_internal] = ACTIONS(5014), + [anon_sym_fileprivate] = ACTIONS(5014), + [anon_sym_open] = ACTIONS(5014), + [anon_sym_mutating] = ACTIONS(5014), + [anon_sym_nonmutating] = ACTIONS(5014), + [anon_sym_static] = ACTIONS(5014), + [anon_sym_dynamic] = ACTIONS(5014), + [anon_sym_optional] = ACTIONS(5014), + [anon_sym_final] = ACTIONS(5014), + [anon_sym_inout] = ACTIONS(5014), + [anon_sym_ATescaping] = ACTIONS(5014), + [anon_sym_ATautoclosure] = ACTIONS(5014), + [anon_sym_weak] = ACTIONS(5014), + [anon_sym_unowned] = ACTIONS(5016), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5014), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5014), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5014), + [sym__three_dot_operator_custom] = ACTIONS(5014), + [sym__open_ended_range_operator_custom] = ACTIONS(5014), + [sym__conjunction_operator_custom] = ACTIONS(5014), + [sym__disjunction_operator_custom] = ACTIONS(5014), + [sym__nil_coalescing_operator_custom] = ACTIONS(5014), + [sym__eq_eq_custom] = ACTIONS(5014), + [sym__plus_then_ws] = ACTIONS(5014), + [sym__minus_then_ws] = ACTIONS(5014), + [sym_bang] = ACTIONS(5014), + [sym__as_custom] = ACTIONS(5014), + [sym__as_quest_custom] = ACTIONS(5014), + [sym__as_bang_custom] = ACTIONS(5014), + }, + [1216] = { + [sym__dot] = STATE(6272), + [aux_sym_user_type_repeat1] = STATE(1218), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_COLON] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_RBRACK] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_QMARK] = ACTIONS(5022), + [sym__immediate_quest] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_async] = ACTIONS(5020), + [aux_sym_custom_operator_token1] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_case] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5022), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5022), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5022), + [anon_sym_is] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5022), + [anon_sym_PLUS_PLUS] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym_LT_LT] = ACTIONS(5022), + [anon_sym_GT_GT] = ACTIONS(5022), + [anon_sym_import] = ACTIONS(5020), + [anon_sym_typealias] = ACTIONS(5020), + [anon_sym_struct] = ACTIONS(5020), + [anon_sym_class] = ACTIONS(5020), + [anon_sym_enum] = ACTIONS(5020), + [anon_sym_protocol] = ACTIONS(5020), + [anon_sym_let] = ACTIONS(5020), + [anon_sym_var] = ACTIONS(5020), + [anon_sym_func] = ACTIONS(5020), + [anon_sym_extension] = ACTIONS(5020), + [anon_sym_indirect] = ACTIONS(5020), + [anon_sym_init] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym_deinit] = ACTIONS(5020), + [anon_sym_subscript] = ACTIONS(5020), + [anon_sym_prefix] = ACTIONS(5020), + [anon_sym_infix] = ACTIONS(5020), + [anon_sym_postfix] = ACTIONS(5020), + [anon_sym_precedencegroup] = ACTIONS(5020), + [anon_sym_associatedtype] = ACTIONS(5020), + [anon_sym_AT] = ACTIONS(5022), + [sym_property_behavior_modifier] = ACTIONS(5020), + [anon_sym_override] = ACTIONS(5020), + [anon_sym_convenience] = ACTIONS(5020), + [anon_sym_required] = ACTIONS(5020), + [anon_sym_public] = ACTIONS(5020), + [anon_sym_private] = ACTIONS(5020), + [anon_sym_internal] = ACTIONS(5020), + [anon_sym_fileprivate] = ACTIONS(5020), + [anon_sym_open] = ACTIONS(5020), + [anon_sym_mutating] = ACTIONS(5020), + [anon_sym_nonmutating] = ACTIONS(5020), + [anon_sym_static] = ACTIONS(5020), + [anon_sym_dynamic] = ACTIONS(5020), + [anon_sym_optional] = ACTIONS(5020), + [anon_sym_final] = ACTIONS(5020), + [anon_sym_inout] = ACTIONS(5020), + [anon_sym_ATescaping] = ACTIONS(5020), + [anon_sym_ATautoclosure] = ACTIONS(5020), + [anon_sym_weak] = ACTIONS(5020), + [anon_sym_unowned] = ACTIONS(5022), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5020), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5020), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5024), + [sym__three_dot_operator_custom] = ACTIONS(5020), + [sym__open_ended_range_operator_custom] = ACTIONS(5020), + [sym__conjunction_operator_custom] = ACTIONS(5020), + [sym__disjunction_operator_custom] = ACTIONS(5020), + [sym__nil_coalescing_operator_custom] = ACTIONS(5020), + [sym__eq_eq_custom] = ACTIONS(5020), + [sym__plus_then_ws] = ACTIONS(5020), + [sym__minus_then_ws] = ACTIONS(5020), + [sym_bang] = ACTIONS(5020), + [sym__as_custom] = ACTIONS(5020), + [sym__as_quest_custom] = ACTIONS(5020), + [sym__as_bang_custom] = ACTIONS(5020), + }, + [1217] = { + [sym__dot] = STATE(6272), + [aux_sym_user_type_repeat1] = STATE(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5027), + [anon_sym_COMMA] = ACTIONS(5027), + [anon_sym_COLON] = ACTIONS(5027), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_RBRACK] = ACTIONS(5027), + [anon_sym_DOT] = ACTIONS(5029), + [anon_sym_QMARK] = ACTIONS(5029), + [sym__immediate_quest] = ACTIONS(5029), + [anon_sym_AMP] = ACTIONS(5029), + [anon_sym_async] = ACTIONS(5027), + [aux_sym_custom_operator_token1] = ACTIONS(5029), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_LBRACE] = ACTIONS(5027), + [anon_sym_RBRACE] = ACTIONS(5027), + [anon_sym_case] = ACTIONS(5027), + [anon_sym_BANG_EQ] = ACTIONS(5029), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5029), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5029), + [anon_sym_LT_EQ] = ACTIONS(5029), + [anon_sym_GT_EQ] = ACTIONS(5029), + [anon_sym_is] = ACTIONS(5027), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_PERCENT] = ACTIONS(5029), + [anon_sym_PLUS_PLUS] = ACTIONS(5029), + [anon_sym_DASH_DASH] = ACTIONS(5029), + [anon_sym_PIPE] = ACTIONS(5029), + [anon_sym_CARET] = ACTIONS(5029), + [anon_sym_LT_LT] = ACTIONS(5029), + [anon_sym_GT_GT] = ACTIONS(5029), + [anon_sym_import] = ACTIONS(5027), + [anon_sym_typealias] = ACTIONS(5027), + [anon_sym_struct] = ACTIONS(5027), + [anon_sym_class] = ACTIONS(5027), + [anon_sym_enum] = ACTIONS(5027), + [anon_sym_protocol] = ACTIONS(5027), + [anon_sym_let] = ACTIONS(5027), + [anon_sym_var] = ACTIONS(5027), + [anon_sym_func] = ACTIONS(5027), + [anon_sym_extension] = ACTIONS(5027), + [anon_sym_indirect] = ACTIONS(5027), + [anon_sym_init] = ACTIONS(5027), + [anon_sym_SEMI] = ACTIONS(5027), + [anon_sym_deinit] = ACTIONS(5027), + [anon_sym_subscript] = ACTIONS(5027), + [anon_sym_prefix] = ACTIONS(5027), + [anon_sym_infix] = ACTIONS(5027), + [anon_sym_postfix] = ACTIONS(5027), + [anon_sym_precedencegroup] = ACTIONS(5027), + [anon_sym_associatedtype] = ACTIONS(5027), + [anon_sym_AT] = ACTIONS(5029), + [sym_property_behavior_modifier] = ACTIONS(5027), + [anon_sym_override] = ACTIONS(5027), + [anon_sym_convenience] = ACTIONS(5027), + [anon_sym_required] = ACTIONS(5027), + [anon_sym_public] = ACTIONS(5027), + [anon_sym_private] = ACTIONS(5027), + [anon_sym_internal] = ACTIONS(5027), + [anon_sym_fileprivate] = ACTIONS(5027), + [anon_sym_open] = ACTIONS(5027), + [anon_sym_mutating] = ACTIONS(5027), + [anon_sym_nonmutating] = ACTIONS(5027), + [anon_sym_static] = ACTIONS(5027), + [anon_sym_dynamic] = ACTIONS(5027), + [anon_sym_optional] = ACTIONS(5027), + [anon_sym_final] = ACTIONS(5027), + [anon_sym_inout] = ACTIONS(5027), + [anon_sym_ATescaping] = ACTIONS(5027), + [anon_sym_ATautoclosure] = ACTIONS(5027), + [anon_sym_weak] = ACTIONS(5027), + [anon_sym_unowned] = ACTIONS(5029), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5027), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5027), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5031), + [sym__three_dot_operator_custom] = ACTIONS(5027), + [sym__open_ended_range_operator_custom] = ACTIONS(5027), + [sym__conjunction_operator_custom] = ACTIONS(5027), + [sym__disjunction_operator_custom] = ACTIONS(5027), + [sym__nil_coalescing_operator_custom] = ACTIONS(5027), + [sym__eq_eq_custom] = ACTIONS(5027), + [sym__plus_then_ws] = ACTIONS(5027), + [sym__minus_then_ws] = ACTIONS(5027), + [sym_bang] = ACTIONS(5027), + [sym__as_custom] = ACTIONS(5027), + [sym__as_quest_custom] = ACTIONS(5027), + [sym__as_bang_custom] = ACTIONS(5027), + }, + [1218] = { + [sym__dot] = STATE(6272), + [aux_sym_user_type_repeat1] = STATE(1217), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5034), + [anon_sym_COMMA] = ACTIONS(5034), + [anon_sym_COLON] = ACTIONS(5034), + [anon_sym_LPAREN] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_RBRACK] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5036), + [sym__immediate_quest] = ACTIONS(5036), + [anon_sym_AMP] = ACTIONS(5036), + [anon_sym_async] = ACTIONS(5034), + [aux_sym_custom_operator_token1] = ACTIONS(5036), + [anon_sym_LT] = ACTIONS(5036), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5034), + [anon_sym_RBRACE] = ACTIONS(5034), + [anon_sym_case] = ACTIONS(5034), + [anon_sym_BANG_EQ] = ACTIONS(5036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5036), + [anon_sym_LT_EQ] = ACTIONS(5036), + [anon_sym_GT_EQ] = ACTIONS(5036), + [anon_sym_is] = ACTIONS(5034), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_PLUS_PLUS] = ACTIONS(5036), + [anon_sym_DASH_DASH] = ACTIONS(5036), + [anon_sym_PIPE] = ACTIONS(5036), + [anon_sym_CARET] = ACTIONS(5036), + [anon_sym_LT_LT] = ACTIONS(5036), + [anon_sym_GT_GT] = ACTIONS(5036), + [anon_sym_import] = ACTIONS(5034), + [anon_sym_typealias] = ACTIONS(5034), + [anon_sym_struct] = ACTIONS(5034), + [anon_sym_class] = ACTIONS(5034), + [anon_sym_enum] = ACTIONS(5034), + [anon_sym_protocol] = ACTIONS(5034), + [anon_sym_let] = ACTIONS(5034), + [anon_sym_var] = ACTIONS(5034), + [anon_sym_func] = ACTIONS(5034), + [anon_sym_extension] = ACTIONS(5034), + [anon_sym_indirect] = ACTIONS(5034), + [anon_sym_init] = ACTIONS(5034), + [anon_sym_SEMI] = ACTIONS(5034), + [anon_sym_deinit] = ACTIONS(5034), + [anon_sym_subscript] = ACTIONS(5034), + [anon_sym_prefix] = ACTIONS(5034), + [anon_sym_infix] = ACTIONS(5034), + [anon_sym_postfix] = ACTIONS(5034), + [anon_sym_precedencegroup] = ACTIONS(5034), + [anon_sym_associatedtype] = ACTIONS(5034), + [anon_sym_AT] = ACTIONS(5036), + [sym_property_behavior_modifier] = ACTIONS(5034), + [anon_sym_override] = ACTIONS(5034), + [anon_sym_convenience] = ACTIONS(5034), + [anon_sym_required] = ACTIONS(5034), + [anon_sym_public] = ACTIONS(5034), + [anon_sym_private] = ACTIONS(5034), + [anon_sym_internal] = ACTIONS(5034), + [anon_sym_fileprivate] = ACTIONS(5034), + [anon_sym_open] = ACTIONS(5034), + [anon_sym_mutating] = ACTIONS(5034), + [anon_sym_nonmutating] = ACTIONS(5034), + [anon_sym_static] = ACTIONS(5034), + [anon_sym_dynamic] = ACTIONS(5034), + [anon_sym_optional] = ACTIONS(5034), + [anon_sym_final] = ACTIONS(5034), + [anon_sym_inout] = ACTIONS(5034), + [anon_sym_ATescaping] = ACTIONS(5034), + [anon_sym_ATautoclosure] = ACTIONS(5034), + [anon_sym_weak] = ACTIONS(5034), + [anon_sym_unowned] = ACTIONS(5036), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5034), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5034), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5038), + [sym__three_dot_operator_custom] = ACTIONS(5034), + [sym__open_ended_range_operator_custom] = ACTIONS(5034), + [sym__conjunction_operator_custom] = ACTIONS(5034), + [sym__disjunction_operator_custom] = ACTIONS(5034), + [sym__nil_coalescing_operator_custom] = ACTIONS(5034), + [sym__eq_eq_custom] = ACTIONS(5034), + [sym__plus_then_ws] = ACTIONS(5034), + [sym__minus_then_ws] = ACTIONS(5034), + [sym_bang] = ACTIONS(5034), + [sym__as_custom] = ACTIONS(5034), + [sym__as_quest_custom] = ACTIONS(5034), + [sym__as_bang_custom] = ACTIONS(5034), + }, + [1219] = { + [aux_sym_protocol_composition_type_repeat1] = STATE(1220), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5041), + [anon_sym_COMMA] = ACTIONS(5041), + [anon_sym_COLON] = ACTIONS(5041), + [anon_sym_LPAREN] = ACTIONS(5041), + [anon_sym_LBRACK] = ACTIONS(5041), + [anon_sym_RBRACK] = ACTIONS(5041), + [anon_sym_DOT] = ACTIONS(5043), + [anon_sym_QMARK] = ACTIONS(5045), + [sym__immediate_quest] = ACTIONS(5045), + [anon_sym_AMP] = ACTIONS(5047), + [anon_sym_async] = ACTIONS(5041), + [aux_sym_custom_operator_token1] = ACTIONS(5045), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_LBRACE] = ACTIONS(5041), + [anon_sym_RBRACE] = ACTIONS(5041), + [anon_sym_case] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5045), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5045), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5045), + [anon_sym_LT_EQ] = ACTIONS(5045), + [anon_sym_GT_EQ] = ACTIONS(5045), + [anon_sym_is] = ACTIONS(5041), + [anon_sym_PLUS] = ACTIONS(5045), + [anon_sym_DASH] = ACTIONS(5045), + [anon_sym_STAR] = ACTIONS(5045), + [anon_sym_SLASH] = ACTIONS(5045), + [anon_sym_PERCENT] = ACTIONS(5045), + [anon_sym_PLUS_PLUS] = ACTIONS(5045), + [anon_sym_DASH_DASH] = ACTIONS(5045), + [anon_sym_PIPE] = ACTIONS(5045), + [anon_sym_CARET] = ACTIONS(5045), + [anon_sym_LT_LT] = ACTIONS(5045), + [anon_sym_GT_GT] = ACTIONS(5045), + [anon_sym_import] = ACTIONS(5041), + [anon_sym_typealias] = ACTIONS(5041), + [anon_sym_struct] = ACTIONS(5041), + [anon_sym_class] = ACTIONS(5041), + [anon_sym_enum] = ACTIONS(5041), + [anon_sym_protocol] = ACTIONS(5041), + [anon_sym_let] = ACTIONS(5041), + [anon_sym_var] = ACTIONS(5041), + [anon_sym_func] = ACTIONS(5041), + [anon_sym_extension] = ACTIONS(5041), + [anon_sym_indirect] = ACTIONS(5041), + [anon_sym_init] = ACTIONS(5041), + [anon_sym_SEMI] = ACTIONS(5041), + [anon_sym_deinit] = ACTIONS(5041), + [anon_sym_subscript] = ACTIONS(5041), + [anon_sym_prefix] = ACTIONS(5041), + [anon_sym_infix] = ACTIONS(5041), + [anon_sym_postfix] = ACTIONS(5041), + [anon_sym_precedencegroup] = ACTIONS(5041), + [anon_sym_associatedtype] = ACTIONS(5041), + [anon_sym_AT] = ACTIONS(5045), + [sym_property_behavior_modifier] = ACTIONS(5041), + [anon_sym_override] = ACTIONS(5041), + [anon_sym_convenience] = ACTIONS(5041), + [anon_sym_required] = ACTIONS(5041), + [anon_sym_public] = ACTIONS(5041), + [anon_sym_private] = ACTIONS(5041), + [anon_sym_internal] = ACTIONS(5041), + [anon_sym_fileprivate] = ACTIONS(5041), + [anon_sym_open] = ACTIONS(5041), + [anon_sym_mutating] = ACTIONS(5041), + [anon_sym_nonmutating] = ACTIONS(5041), + [anon_sym_static] = ACTIONS(5041), + [anon_sym_dynamic] = ACTIONS(5041), + [anon_sym_optional] = ACTIONS(5041), + [anon_sym_final] = ACTIONS(5041), + [anon_sym_inout] = ACTIONS(5041), + [anon_sym_ATescaping] = ACTIONS(5041), + [anon_sym_ATautoclosure] = ACTIONS(5041), + [anon_sym_weak] = ACTIONS(5041), + [anon_sym_unowned] = ACTIONS(5045), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5041), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5041), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5041), + [sym__three_dot_operator_custom] = ACTIONS(5041), + [sym__open_ended_range_operator_custom] = ACTIONS(5041), + [sym__conjunction_operator_custom] = ACTIONS(5041), + [sym__disjunction_operator_custom] = ACTIONS(5041), + [sym__nil_coalescing_operator_custom] = ACTIONS(5041), + [sym__eq_eq_custom] = ACTIONS(5041), + [sym__plus_then_ws] = ACTIONS(5041), + [sym__minus_then_ws] = ACTIONS(5041), + [sym_bang] = ACTIONS(5041), + [sym__as_custom] = ACTIONS(5041), + [sym__as_quest_custom] = ACTIONS(5041), + [sym__as_bang_custom] = ACTIONS(5041), + }, + [1220] = { + [aux_sym_protocol_composition_type_repeat1] = STATE(1234), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5049), + [anon_sym_COMMA] = ACTIONS(5049), + [anon_sym_COLON] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_RBRACK] = ACTIONS(5049), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_QMARK] = ACTIONS(5051), + [sym__immediate_quest] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(5047), + [anon_sym_async] = ACTIONS(5049), + [aux_sym_custom_operator_token1] = ACTIONS(5051), + [anon_sym_LT] = ACTIONS(5051), + [anon_sym_GT] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_case] = ACTIONS(5049), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5051), + [anon_sym_LT_EQ] = ACTIONS(5051), + [anon_sym_GT_EQ] = ACTIONS(5051), + [anon_sym_is] = ACTIONS(5049), + [anon_sym_PLUS] = ACTIONS(5051), + [anon_sym_DASH] = ACTIONS(5051), + [anon_sym_STAR] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5051), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_PLUS_PLUS] = ACTIONS(5051), + [anon_sym_DASH_DASH] = ACTIONS(5051), + [anon_sym_PIPE] = ACTIONS(5051), + [anon_sym_CARET] = ACTIONS(5051), + [anon_sym_LT_LT] = ACTIONS(5051), + [anon_sym_GT_GT] = ACTIONS(5051), + [anon_sym_import] = ACTIONS(5049), + [anon_sym_typealias] = ACTIONS(5049), + [anon_sym_struct] = ACTIONS(5049), + [anon_sym_class] = ACTIONS(5049), + [anon_sym_enum] = ACTIONS(5049), + [anon_sym_protocol] = ACTIONS(5049), + [anon_sym_let] = ACTIONS(5049), + [anon_sym_var] = ACTIONS(5049), + [anon_sym_func] = ACTIONS(5049), + [anon_sym_extension] = ACTIONS(5049), + [anon_sym_indirect] = ACTIONS(5049), + [anon_sym_init] = ACTIONS(5049), + [anon_sym_SEMI] = ACTIONS(5049), + [anon_sym_deinit] = ACTIONS(5049), + [anon_sym_subscript] = ACTIONS(5049), + [anon_sym_prefix] = ACTIONS(5049), + [anon_sym_infix] = ACTIONS(5049), + [anon_sym_postfix] = ACTIONS(5049), + [anon_sym_precedencegroup] = ACTIONS(5049), + [anon_sym_associatedtype] = ACTIONS(5049), + [anon_sym_AT] = ACTIONS(5051), + [sym_property_behavior_modifier] = ACTIONS(5049), + [anon_sym_override] = ACTIONS(5049), + [anon_sym_convenience] = ACTIONS(5049), + [anon_sym_required] = ACTIONS(5049), + [anon_sym_public] = ACTIONS(5049), + [anon_sym_private] = ACTIONS(5049), + [anon_sym_internal] = ACTIONS(5049), + [anon_sym_fileprivate] = ACTIONS(5049), + [anon_sym_open] = ACTIONS(5049), + [anon_sym_mutating] = ACTIONS(5049), + [anon_sym_nonmutating] = ACTIONS(5049), + [anon_sym_static] = ACTIONS(5049), + [anon_sym_dynamic] = ACTIONS(5049), + [anon_sym_optional] = ACTIONS(5049), + [anon_sym_final] = ACTIONS(5049), + [anon_sym_inout] = ACTIONS(5049), + [anon_sym_ATescaping] = ACTIONS(5049), + [anon_sym_ATautoclosure] = ACTIONS(5049), + [anon_sym_weak] = ACTIONS(5049), + [anon_sym_unowned] = ACTIONS(5051), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5049), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5049), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5049), + [sym__three_dot_operator_custom] = ACTIONS(5049), + [sym__open_ended_range_operator_custom] = ACTIONS(5049), + [sym__conjunction_operator_custom] = ACTIONS(5049), + [sym__disjunction_operator_custom] = ACTIONS(5049), + [sym__nil_coalescing_operator_custom] = ACTIONS(5049), + [sym__eq_eq_custom] = ACTIONS(5049), + [sym__plus_then_ws] = ACTIONS(5049), + [sym__minus_then_ws] = ACTIONS(5049), + [sym_bang] = ACTIONS(5049), + [sym__as_custom] = ACTIONS(5049), + [sym__as_quest_custom] = ACTIONS(5049), + [sym__as_bang_custom] = ACTIONS(5049), + }, + [1221] = { + [aux_sym_optional_type_repeat1] = STATE(1235), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5053), + [anon_sym_COMMA] = ACTIONS(5053), + [anon_sym_COLON] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [anon_sym_RBRACK] = ACTIONS(5053), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_QMARK] = ACTIONS(5055), + [sym__immediate_quest] = ACTIONS(5055), + [anon_sym_AMP] = ACTIONS(5055), + [anon_sym_async] = ACTIONS(5053), + [aux_sym_custom_operator_token1] = ACTIONS(5055), + [anon_sym_LT] = ACTIONS(5055), + [anon_sym_GT] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5053), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_case] = ACTIONS(5053), + [anon_sym_BANG_EQ] = ACTIONS(5055), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5055), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5055), + [anon_sym_LT_EQ] = ACTIONS(5055), + [anon_sym_GT_EQ] = ACTIONS(5055), + [anon_sym_is] = ACTIONS(5053), + [anon_sym_PLUS] = ACTIONS(5055), + [anon_sym_DASH] = ACTIONS(5055), + [anon_sym_STAR] = ACTIONS(5055), + [anon_sym_SLASH] = ACTIONS(5055), + [anon_sym_PERCENT] = ACTIONS(5055), + [anon_sym_PLUS_PLUS] = ACTIONS(5055), + [anon_sym_DASH_DASH] = ACTIONS(5055), + [anon_sym_PIPE] = ACTIONS(5055), + [anon_sym_CARET] = ACTIONS(5055), + [anon_sym_LT_LT] = ACTIONS(5055), + [anon_sym_GT_GT] = ACTIONS(5055), + [anon_sym_import] = ACTIONS(5053), + [anon_sym_typealias] = ACTIONS(5053), + [anon_sym_struct] = ACTIONS(5053), + [anon_sym_class] = ACTIONS(5053), + [anon_sym_enum] = ACTIONS(5053), + [anon_sym_protocol] = ACTIONS(5053), + [anon_sym_let] = ACTIONS(5053), + [anon_sym_var] = ACTIONS(5053), + [anon_sym_func] = ACTIONS(5053), + [anon_sym_extension] = ACTIONS(5053), + [anon_sym_indirect] = ACTIONS(5053), + [anon_sym_init] = ACTIONS(5053), + [anon_sym_SEMI] = ACTIONS(5053), + [anon_sym_deinit] = ACTIONS(5053), + [anon_sym_subscript] = ACTIONS(5053), + [anon_sym_prefix] = ACTIONS(5053), + [anon_sym_infix] = ACTIONS(5053), + [anon_sym_postfix] = ACTIONS(5053), + [anon_sym_precedencegroup] = ACTIONS(5053), + [anon_sym_associatedtype] = ACTIONS(5053), + [anon_sym_AT] = ACTIONS(5055), + [sym_property_behavior_modifier] = ACTIONS(5053), + [anon_sym_override] = ACTIONS(5053), + [anon_sym_convenience] = ACTIONS(5053), + [anon_sym_required] = ACTIONS(5053), + [anon_sym_public] = ACTIONS(5053), + [anon_sym_private] = ACTIONS(5053), + [anon_sym_internal] = ACTIONS(5053), + [anon_sym_fileprivate] = ACTIONS(5053), + [anon_sym_open] = ACTIONS(5053), + [anon_sym_mutating] = ACTIONS(5053), + [anon_sym_nonmutating] = ACTIONS(5053), + [anon_sym_static] = ACTIONS(5053), + [anon_sym_dynamic] = ACTIONS(5053), + [anon_sym_optional] = ACTIONS(5053), + [anon_sym_final] = ACTIONS(5053), + [anon_sym_inout] = ACTIONS(5053), + [anon_sym_ATescaping] = ACTIONS(5053), + [anon_sym_ATautoclosure] = ACTIONS(5053), + [anon_sym_weak] = ACTIONS(5053), + [anon_sym_unowned] = ACTIONS(5055), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5053), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5053), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5053), + [sym__three_dot_operator_custom] = ACTIONS(5053), + [sym__open_ended_range_operator_custom] = ACTIONS(5053), + [sym__conjunction_operator_custom] = ACTIONS(5053), + [sym__disjunction_operator_custom] = ACTIONS(5053), + [sym__nil_coalescing_operator_custom] = ACTIONS(5053), + [sym__eq_eq_custom] = ACTIONS(5053), + [sym__plus_then_ws] = ACTIONS(5053), + [sym__minus_then_ws] = ACTIONS(5053), + [sym_bang] = ACTIONS(5053), + [sym__as_custom] = ACTIONS(5053), + [sym__as_quest_custom] = ACTIONS(5053), + [sym__as_bang_custom] = ACTIONS(5053), + }, + [1222] = { + [aux_sym_key_path_expression_repeat1] = STATE(1228), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5057), + [anon_sym_COMMA] = ACTIONS(5057), + [anon_sym_COLON] = ACTIONS(5057), + [anon_sym_LPAREN] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [anon_sym_RBRACK] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(4857), + [anon_sym_QMARK] = ACTIONS(5059), + [sym__immediate_quest] = ACTIONS(5059), + [anon_sym_AMP] = ACTIONS(5059), + [anon_sym_async] = ACTIONS(5057), + [aux_sym_custom_operator_token1] = ACTIONS(5059), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_LBRACE] = ACTIONS(5057), + [anon_sym_RBRACE] = ACTIONS(5057), + [anon_sym_case] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5059), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5059), + [anon_sym_GT_EQ] = ACTIONS(5059), + [anon_sym_is] = ACTIONS(5057), + [anon_sym_PLUS] = ACTIONS(5059), + [anon_sym_DASH] = ACTIONS(5059), + [anon_sym_STAR] = ACTIONS(5059), + [anon_sym_SLASH] = ACTIONS(5059), + [anon_sym_PERCENT] = ACTIONS(5059), + [anon_sym_PLUS_PLUS] = ACTIONS(5059), + [anon_sym_DASH_DASH] = ACTIONS(5059), + [anon_sym_PIPE] = ACTIONS(5059), + [anon_sym_CARET] = ACTIONS(5059), + [anon_sym_LT_LT] = ACTIONS(5059), + [anon_sym_GT_GT] = ACTIONS(5059), + [anon_sym_import] = ACTIONS(5057), + [anon_sym_typealias] = ACTIONS(5057), + [anon_sym_struct] = ACTIONS(5057), + [anon_sym_class] = ACTIONS(5057), + [anon_sym_enum] = ACTIONS(5057), + [anon_sym_protocol] = ACTIONS(5057), + [anon_sym_let] = ACTIONS(5057), + [anon_sym_var] = ACTIONS(5057), + [anon_sym_func] = ACTIONS(5057), + [anon_sym_extension] = ACTIONS(5057), + [anon_sym_indirect] = ACTIONS(5057), + [anon_sym_init] = ACTIONS(5057), + [anon_sym_SEMI] = ACTIONS(5057), + [anon_sym_deinit] = ACTIONS(5057), + [anon_sym_subscript] = ACTIONS(5057), + [anon_sym_prefix] = ACTIONS(5057), + [anon_sym_infix] = ACTIONS(5057), + [anon_sym_postfix] = ACTIONS(5057), + [anon_sym_precedencegroup] = ACTIONS(5057), + [anon_sym_associatedtype] = ACTIONS(5057), + [anon_sym_AT] = ACTIONS(5059), + [sym_property_behavior_modifier] = ACTIONS(5057), + [anon_sym_override] = ACTIONS(5057), + [anon_sym_convenience] = ACTIONS(5057), + [anon_sym_required] = ACTIONS(5057), + [anon_sym_public] = ACTIONS(5057), + [anon_sym_private] = ACTIONS(5057), + [anon_sym_internal] = ACTIONS(5057), + [anon_sym_fileprivate] = ACTIONS(5057), + [anon_sym_open] = ACTIONS(5057), + [anon_sym_mutating] = ACTIONS(5057), + [anon_sym_nonmutating] = ACTIONS(5057), + [anon_sym_static] = ACTIONS(5057), + [anon_sym_dynamic] = ACTIONS(5057), + [anon_sym_optional] = ACTIONS(5057), + [anon_sym_final] = ACTIONS(5057), + [anon_sym_inout] = ACTIONS(5057), + [anon_sym_ATescaping] = ACTIONS(5057), + [anon_sym_ATautoclosure] = ACTIONS(5057), + [anon_sym_weak] = ACTIONS(5057), + [anon_sym_unowned] = ACTIONS(5059), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5057), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5057), + [sym__three_dot_operator_custom] = ACTIONS(5057), + [sym__open_ended_range_operator_custom] = ACTIONS(5057), + [sym__conjunction_operator_custom] = ACTIONS(5057), + [sym__disjunction_operator_custom] = ACTIONS(5057), + [sym__nil_coalescing_operator_custom] = ACTIONS(5057), + [sym__eq_eq_custom] = ACTIONS(5057), + [sym__plus_then_ws] = ACTIONS(5057), + [sym__minus_then_ws] = ACTIONS(5057), + [sym_bang] = ACTIONS(5057), + [sym__as_custom] = ACTIONS(5057), + [sym__as_quest_custom] = ACTIONS(5057), + [sym__as_bang_custom] = ACTIONS(5057), + }, + [1223] = { + [aux_sym_protocol_composition_type_repeat1] = STATE(1220), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5061), + [anon_sym_COMMA] = ACTIONS(5061), + [anon_sym_COLON] = ACTIONS(5061), + [anon_sym_LPAREN] = ACTIONS(5061), + [anon_sym_LBRACK] = ACTIONS(5061), + [anon_sym_RBRACK] = ACTIONS(5061), + [anon_sym_DOT] = ACTIONS(5043), + [anon_sym_QMARK] = ACTIONS(5063), + [sym__immediate_quest] = ACTIONS(5063), + [anon_sym_AMP] = ACTIONS(5047), + [anon_sym_async] = ACTIONS(5061), + [aux_sym_custom_operator_token1] = ACTIONS(5063), + [anon_sym_LT] = ACTIONS(5063), + [anon_sym_GT] = ACTIONS(5063), + [anon_sym_LBRACE] = ACTIONS(5061), + [anon_sym_RBRACE] = ACTIONS(5061), + [anon_sym_case] = ACTIONS(5061), + [anon_sym_BANG_EQ] = ACTIONS(5063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5063), + [anon_sym_LT_EQ] = ACTIONS(5063), + [anon_sym_GT_EQ] = ACTIONS(5063), + [anon_sym_is] = ACTIONS(5061), + [anon_sym_PLUS] = ACTIONS(5063), + [anon_sym_DASH] = ACTIONS(5063), + [anon_sym_STAR] = ACTIONS(5063), + [anon_sym_SLASH] = ACTIONS(5063), + [anon_sym_PERCENT] = ACTIONS(5063), + [anon_sym_PLUS_PLUS] = ACTIONS(5063), + [anon_sym_DASH_DASH] = ACTIONS(5063), + [anon_sym_PIPE] = ACTIONS(5063), + [anon_sym_CARET] = ACTIONS(5063), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5063), + [anon_sym_import] = ACTIONS(5061), + [anon_sym_typealias] = ACTIONS(5061), + [anon_sym_struct] = ACTIONS(5061), + [anon_sym_class] = ACTIONS(5061), + [anon_sym_enum] = ACTIONS(5061), + [anon_sym_protocol] = ACTIONS(5061), + [anon_sym_let] = ACTIONS(5061), + [anon_sym_var] = ACTIONS(5061), + [anon_sym_func] = ACTIONS(5061), + [anon_sym_extension] = ACTIONS(5061), + [anon_sym_indirect] = ACTIONS(5061), + [anon_sym_init] = ACTIONS(5061), + [anon_sym_SEMI] = ACTIONS(5061), + [anon_sym_deinit] = ACTIONS(5061), + [anon_sym_subscript] = ACTIONS(5061), + [anon_sym_prefix] = ACTIONS(5061), + [anon_sym_infix] = ACTIONS(5061), + [anon_sym_postfix] = ACTIONS(5061), + [anon_sym_precedencegroup] = ACTIONS(5061), + [anon_sym_associatedtype] = ACTIONS(5061), + [anon_sym_AT] = ACTIONS(5063), + [sym_property_behavior_modifier] = ACTIONS(5061), + [anon_sym_override] = ACTIONS(5061), + [anon_sym_convenience] = ACTIONS(5061), + [anon_sym_required] = ACTIONS(5061), + [anon_sym_public] = ACTIONS(5061), + [anon_sym_private] = ACTIONS(5061), + [anon_sym_internal] = ACTIONS(5061), + [anon_sym_fileprivate] = ACTIONS(5061), + [anon_sym_open] = ACTIONS(5061), + [anon_sym_mutating] = ACTIONS(5061), + [anon_sym_nonmutating] = ACTIONS(5061), + [anon_sym_static] = ACTIONS(5061), + [anon_sym_dynamic] = ACTIONS(5061), + [anon_sym_optional] = ACTIONS(5061), + [anon_sym_final] = ACTIONS(5061), + [anon_sym_inout] = ACTIONS(5061), + [anon_sym_ATescaping] = ACTIONS(5061), + [anon_sym_ATautoclosure] = ACTIONS(5061), + [anon_sym_weak] = ACTIONS(5061), + [anon_sym_unowned] = ACTIONS(5063), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5061), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5061), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5061), + [sym__three_dot_operator_custom] = ACTIONS(5061), + [sym__open_ended_range_operator_custom] = ACTIONS(5061), + [sym__conjunction_operator_custom] = ACTIONS(5061), + [sym__disjunction_operator_custom] = ACTIONS(5061), + [sym__nil_coalescing_operator_custom] = ACTIONS(5061), + [sym__eq_eq_custom] = ACTIONS(5061), + [sym__plus_then_ws] = ACTIONS(5061), + [sym__minus_then_ws] = ACTIONS(5061), + [sym_bang] = ACTIONS(5061), + [sym__as_custom] = ACTIONS(5061), + [sym__as_quest_custom] = ACTIONS(5061), + [sym__as_bang_custom] = ACTIONS(5061), + }, + [1224] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5065), + [anon_sym_COMMA] = ACTIONS(5065), + [anon_sym_COLON] = ACTIONS(5065), + [anon_sym_LPAREN] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5065), + [anon_sym_RBRACK] = ACTIONS(5065), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_QMARK] = ACTIONS(5067), + [sym__immediate_quest] = ACTIONS(5067), + [anon_sym_AMP] = ACTIONS(5067), + [anon_sym_async] = ACTIONS(5065), + [aux_sym_custom_operator_token1] = ACTIONS(5067), + [anon_sym_LT] = ACTIONS(5067), + [anon_sym_GT] = ACTIONS(5067), + [anon_sym_LBRACE] = ACTIONS(5065), + [anon_sym_RBRACE] = ACTIONS(5065), + [anon_sym_self] = ACTIONS(5065), + [anon_sym_case] = ACTIONS(5065), + [anon_sym_BANG_EQ] = ACTIONS(5067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5067), + [anon_sym_LT_EQ] = ACTIONS(5067), + [anon_sym_GT_EQ] = ACTIONS(5067), + [anon_sym_is] = ACTIONS(5065), + [anon_sym_PLUS] = ACTIONS(5067), + [anon_sym_DASH] = ACTIONS(5067), + [anon_sym_STAR] = ACTIONS(5067), + [anon_sym_SLASH] = ACTIONS(5067), + [anon_sym_PERCENT] = ACTIONS(5067), + [anon_sym_PLUS_PLUS] = ACTIONS(5067), + [anon_sym_DASH_DASH] = ACTIONS(5067), + [anon_sym_PIPE] = ACTIONS(5067), + [anon_sym_CARET] = ACTIONS(5067), + [anon_sym_LT_LT] = ACTIONS(5067), + [anon_sym_GT_GT] = ACTIONS(5067), + [anon_sym_import] = ACTIONS(5065), + [anon_sym_typealias] = ACTIONS(5065), + [anon_sym_struct] = ACTIONS(5065), + [anon_sym_class] = ACTIONS(5065), + [anon_sym_enum] = ACTIONS(5065), + [anon_sym_protocol] = ACTIONS(5065), + [anon_sym_let] = ACTIONS(5065), + [anon_sym_var] = ACTIONS(5065), + [anon_sym_func] = ACTIONS(5065), + [anon_sym_extension] = ACTIONS(5065), + [anon_sym_indirect] = ACTIONS(5065), + [anon_sym_init] = ACTIONS(5065), + [anon_sym_SEMI] = ACTIONS(5065), + [anon_sym_deinit] = ACTIONS(5065), + [anon_sym_subscript] = ACTIONS(5065), + [anon_sym_prefix] = ACTIONS(5065), + [anon_sym_infix] = ACTIONS(5065), + [anon_sym_postfix] = ACTIONS(5065), + [anon_sym_precedencegroup] = ACTIONS(5065), + [anon_sym_associatedtype] = ACTIONS(5065), + [anon_sym_AT] = ACTIONS(5067), + [sym_property_behavior_modifier] = ACTIONS(5065), + [anon_sym_override] = ACTIONS(5065), + [anon_sym_convenience] = ACTIONS(5065), + [anon_sym_required] = ACTIONS(5065), + [anon_sym_public] = ACTIONS(5065), + [anon_sym_private] = ACTIONS(5065), + [anon_sym_internal] = ACTIONS(5065), + [anon_sym_fileprivate] = ACTIONS(5065), + [anon_sym_open] = ACTIONS(5065), + [anon_sym_mutating] = ACTIONS(5065), + [anon_sym_nonmutating] = ACTIONS(5065), + [anon_sym_static] = ACTIONS(5065), + [anon_sym_dynamic] = ACTIONS(5065), + [anon_sym_optional] = ACTIONS(5065), + [anon_sym_final] = ACTIONS(5065), + [anon_sym_inout] = ACTIONS(5065), + [anon_sym_ATescaping] = ACTIONS(5065), + [anon_sym_ATautoclosure] = ACTIONS(5065), + [anon_sym_weak] = ACTIONS(5065), + [anon_sym_unowned] = ACTIONS(5067), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5065), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5065), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5065), + [sym__three_dot_operator_custom] = ACTIONS(5065), + [sym__open_ended_range_operator_custom] = ACTIONS(5065), + [sym__conjunction_operator_custom] = ACTIONS(5065), + [sym__disjunction_operator_custom] = ACTIONS(5065), + [sym__nil_coalescing_operator_custom] = ACTIONS(5065), + [sym__eq_eq_custom] = ACTIONS(5065), + [sym__plus_then_ws] = ACTIONS(5065), + [sym__minus_then_ws] = ACTIONS(5065), + [sym_bang] = ACTIONS(5065), + [sym__as_custom] = ACTIONS(5065), + [sym__as_quest_custom] = ACTIONS(5065), + [sym__as_bang_custom] = ACTIONS(5065), + }, + [1225] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5069), + [anon_sym_COMMA] = ACTIONS(5069), + [anon_sym_COLON] = ACTIONS(5069), + [anon_sym_LPAREN] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [anon_sym_RBRACK] = ACTIONS(5069), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_QMARK] = ACTIONS(5071), + [sym__immediate_quest] = ACTIONS(5071), + [anon_sym_AMP] = ACTIONS(5071), + [anon_sym_async] = ACTIONS(5069), + [aux_sym_custom_operator_token1] = ACTIONS(5071), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5069), + [anon_sym_RBRACE] = ACTIONS(5069), + [anon_sym_self] = ACTIONS(5069), + [anon_sym_case] = ACTIONS(5069), + [anon_sym_BANG_EQ] = ACTIONS(5071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5071), + [anon_sym_LT_EQ] = ACTIONS(5071), + [anon_sym_GT_EQ] = ACTIONS(5071), + [anon_sym_is] = ACTIONS(5069), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5071), + [anon_sym_SLASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5071), + [anon_sym_PLUS_PLUS] = ACTIONS(5071), + [anon_sym_DASH_DASH] = ACTIONS(5071), + [anon_sym_PIPE] = ACTIONS(5071), + [anon_sym_CARET] = ACTIONS(5071), + [anon_sym_LT_LT] = ACTIONS(5071), + [anon_sym_GT_GT] = ACTIONS(5071), + [anon_sym_import] = ACTIONS(5069), + [anon_sym_typealias] = ACTIONS(5069), + [anon_sym_struct] = ACTIONS(5069), + [anon_sym_class] = ACTIONS(5069), + [anon_sym_enum] = ACTIONS(5069), + [anon_sym_protocol] = ACTIONS(5069), + [anon_sym_let] = ACTIONS(5069), + [anon_sym_var] = ACTIONS(5069), + [anon_sym_func] = ACTIONS(5069), + [anon_sym_extension] = ACTIONS(5069), + [anon_sym_indirect] = ACTIONS(5069), + [anon_sym_init] = ACTIONS(5069), + [anon_sym_SEMI] = ACTIONS(5069), + [anon_sym_deinit] = ACTIONS(5069), + [anon_sym_subscript] = ACTIONS(5069), + [anon_sym_prefix] = ACTIONS(5069), + [anon_sym_infix] = ACTIONS(5069), + [anon_sym_postfix] = ACTIONS(5069), + [anon_sym_precedencegroup] = ACTIONS(5069), + [anon_sym_associatedtype] = ACTIONS(5069), + [anon_sym_AT] = ACTIONS(5071), + [sym_property_behavior_modifier] = ACTIONS(5069), + [anon_sym_override] = ACTIONS(5069), + [anon_sym_convenience] = ACTIONS(5069), + [anon_sym_required] = ACTIONS(5069), + [anon_sym_public] = ACTIONS(5069), + [anon_sym_private] = ACTIONS(5069), + [anon_sym_internal] = ACTIONS(5069), + [anon_sym_fileprivate] = ACTIONS(5069), + [anon_sym_open] = ACTIONS(5069), + [anon_sym_mutating] = ACTIONS(5069), + [anon_sym_nonmutating] = ACTIONS(5069), + [anon_sym_static] = ACTIONS(5069), + [anon_sym_dynamic] = ACTIONS(5069), + [anon_sym_optional] = ACTIONS(5069), + [anon_sym_final] = ACTIONS(5069), + [anon_sym_inout] = ACTIONS(5069), + [anon_sym_ATescaping] = ACTIONS(5069), + [anon_sym_ATautoclosure] = ACTIONS(5069), + [anon_sym_weak] = ACTIONS(5069), + [anon_sym_unowned] = ACTIONS(5071), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5069), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5069), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5069), + [sym__three_dot_operator_custom] = ACTIONS(5069), + [sym__open_ended_range_operator_custom] = ACTIONS(5069), + [sym__conjunction_operator_custom] = ACTIONS(5069), + [sym__disjunction_operator_custom] = ACTIONS(5069), + [sym__nil_coalescing_operator_custom] = ACTIONS(5069), + [sym__eq_eq_custom] = ACTIONS(5069), + [sym__plus_then_ws] = ACTIONS(5069), + [sym__minus_then_ws] = ACTIONS(5069), + [sym_bang] = ACTIONS(5069), + [sym__as_custom] = ACTIONS(5069), + [sym__as_quest_custom] = ACTIONS(5069), + [sym__as_bang_custom] = ACTIONS(5069), + }, + [1226] = { + [aux_sym_key_path_expression_repeat1] = STATE(1228), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5073), + [anon_sym_COMMA] = ACTIONS(5073), + [anon_sym_COLON] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(5073), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_RBRACK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(4857), + [anon_sym_QMARK] = ACTIONS(5075), + [sym__immediate_quest] = ACTIONS(5075), + [anon_sym_AMP] = ACTIONS(5075), + [anon_sym_async] = ACTIONS(5073), + [aux_sym_custom_operator_token1] = ACTIONS(5075), + [anon_sym_LT] = ACTIONS(5075), + [anon_sym_GT] = ACTIONS(5075), + [anon_sym_LBRACE] = ACTIONS(5073), + [anon_sym_RBRACE] = ACTIONS(5073), + [anon_sym_case] = ACTIONS(5073), + [anon_sym_BANG_EQ] = ACTIONS(5075), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5075), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5075), + [anon_sym_LT_EQ] = ACTIONS(5075), + [anon_sym_GT_EQ] = ACTIONS(5075), + [anon_sym_is] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5075), + [anon_sym_DASH] = ACTIONS(5075), + [anon_sym_STAR] = ACTIONS(5075), + [anon_sym_SLASH] = ACTIONS(5075), + [anon_sym_PERCENT] = ACTIONS(5075), + [anon_sym_PLUS_PLUS] = ACTIONS(5075), + [anon_sym_DASH_DASH] = ACTIONS(5075), + [anon_sym_PIPE] = ACTIONS(5075), + [anon_sym_CARET] = ACTIONS(5075), + [anon_sym_LT_LT] = ACTIONS(5075), + [anon_sym_GT_GT] = ACTIONS(5075), + [anon_sym_import] = ACTIONS(5073), + [anon_sym_typealias] = ACTIONS(5073), + [anon_sym_struct] = ACTIONS(5073), + [anon_sym_class] = ACTIONS(5073), + [anon_sym_enum] = ACTIONS(5073), + [anon_sym_protocol] = ACTIONS(5073), + [anon_sym_let] = ACTIONS(5073), + [anon_sym_var] = ACTIONS(5073), + [anon_sym_func] = ACTIONS(5073), + [anon_sym_extension] = ACTIONS(5073), + [anon_sym_indirect] = ACTIONS(5073), + [anon_sym_init] = ACTIONS(5073), + [anon_sym_SEMI] = ACTIONS(5073), + [anon_sym_deinit] = ACTIONS(5073), + [anon_sym_subscript] = ACTIONS(5073), + [anon_sym_prefix] = ACTIONS(5073), + [anon_sym_infix] = ACTIONS(5073), + [anon_sym_postfix] = ACTIONS(5073), + [anon_sym_precedencegroup] = ACTIONS(5073), + [anon_sym_associatedtype] = ACTIONS(5073), + [anon_sym_AT] = ACTIONS(5075), + [sym_property_behavior_modifier] = ACTIONS(5073), + [anon_sym_override] = ACTIONS(5073), + [anon_sym_convenience] = ACTIONS(5073), + [anon_sym_required] = ACTIONS(5073), + [anon_sym_public] = ACTIONS(5073), + [anon_sym_private] = ACTIONS(5073), + [anon_sym_internal] = ACTIONS(5073), + [anon_sym_fileprivate] = ACTIONS(5073), + [anon_sym_open] = ACTIONS(5073), + [anon_sym_mutating] = ACTIONS(5073), + [anon_sym_nonmutating] = ACTIONS(5073), + [anon_sym_static] = ACTIONS(5073), + [anon_sym_dynamic] = ACTIONS(5073), + [anon_sym_optional] = ACTIONS(5073), + [anon_sym_final] = ACTIONS(5073), + [anon_sym_inout] = ACTIONS(5073), + [anon_sym_ATescaping] = ACTIONS(5073), + [anon_sym_ATautoclosure] = ACTIONS(5073), + [anon_sym_weak] = ACTIONS(5073), + [anon_sym_unowned] = ACTIONS(5075), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5073), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5073), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5073), + [sym__three_dot_operator_custom] = ACTIONS(5073), + [sym__open_ended_range_operator_custom] = ACTIONS(5073), + [sym__conjunction_operator_custom] = ACTIONS(5073), + [sym__disjunction_operator_custom] = ACTIONS(5073), + [sym__nil_coalescing_operator_custom] = ACTIONS(5073), + [sym__eq_eq_custom] = ACTIONS(5073), + [sym__plus_then_ws] = ACTIONS(5073), + [sym__minus_then_ws] = ACTIONS(5073), + [sym_bang] = ACTIONS(5073), + [sym__as_custom] = ACTIONS(5073), + [sym__as_quest_custom] = ACTIONS(5073), + [sym__as_bang_custom] = ACTIONS(5073), + }, + [1227] = { + [aux_sym_optional_type_repeat1] = STATE(1221), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4733), + [anon_sym_COMMA] = ACTIONS(4733), + [anon_sym_COLON] = ACTIONS(4733), + [anon_sym_LPAREN] = ACTIONS(4733), + [anon_sym_LBRACK] = ACTIONS(4733), + [anon_sym_RBRACK] = ACTIONS(4733), + [anon_sym_DOT] = ACTIONS(4735), + [anon_sym_QMARK] = ACTIONS(4735), + [sym__immediate_quest] = ACTIONS(4737), + [anon_sym_AMP] = ACTIONS(4735), + [anon_sym_async] = ACTIONS(4733), + [aux_sym_custom_operator_token1] = ACTIONS(4735), + [anon_sym_LT] = ACTIONS(4735), + [anon_sym_GT] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4733), + [anon_sym_RBRACE] = ACTIONS(4733), + [anon_sym_case] = ACTIONS(4733), + [anon_sym_BANG_EQ] = ACTIONS(4735), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4735), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4735), + [anon_sym_LT_EQ] = ACTIONS(4735), + [anon_sym_GT_EQ] = ACTIONS(4735), + [anon_sym_is] = ACTIONS(4733), + [anon_sym_PLUS] = ACTIONS(4735), + [anon_sym_DASH] = ACTIONS(4735), + [anon_sym_STAR] = ACTIONS(4735), + [anon_sym_SLASH] = ACTIONS(4735), + [anon_sym_PERCENT] = ACTIONS(4735), + [anon_sym_PLUS_PLUS] = ACTIONS(4735), + [anon_sym_DASH_DASH] = ACTIONS(4735), + [anon_sym_PIPE] = ACTIONS(4735), + [anon_sym_CARET] = ACTIONS(4735), + [anon_sym_LT_LT] = ACTIONS(4735), + [anon_sym_GT_GT] = ACTIONS(4735), + [anon_sym_import] = ACTIONS(4733), + [anon_sym_typealias] = ACTIONS(4733), + [anon_sym_struct] = ACTIONS(4733), + [anon_sym_class] = ACTIONS(4733), + [anon_sym_enum] = ACTIONS(4733), + [anon_sym_protocol] = ACTIONS(4733), + [anon_sym_let] = ACTIONS(4733), + [anon_sym_var] = ACTIONS(4733), + [anon_sym_func] = ACTIONS(4733), + [anon_sym_extension] = ACTIONS(4733), + [anon_sym_indirect] = ACTIONS(4733), + [anon_sym_init] = ACTIONS(4733), + [anon_sym_SEMI] = ACTIONS(4733), + [anon_sym_deinit] = ACTIONS(4733), + [anon_sym_subscript] = ACTIONS(4733), + [anon_sym_prefix] = ACTIONS(4733), + [anon_sym_infix] = ACTIONS(4733), + [anon_sym_postfix] = ACTIONS(4733), + [anon_sym_precedencegroup] = ACTIONS(4733), + [anon_sym_associatedtype] = ACTIONS(4733), + [anon_sym_AT] = ACTIONS(4735), + [sym_property_behavior_modifier] = ACTIONS(4733), + [anon_sym_override] = ACTIONS(4733), + [anon_sym_convenience] = ACTIONS(4733), + [anon_sym_required] = ACTIONS(4733), + [anon_sym_public] = ACTIONS(4733), + [anon_sym_private] = ACTIONS(4733), + [anon_sym_internal] = ACTIONS(4733), + [anon_sym_fileprivate] = ACTIONS(4733), + [anon_sym_open] = ACTIONS(4733), + [anon_sym_mutating] = ACTIONS(4733), + [anon_sym_nonmutating] = ACTIONS(4733), + [anon_sym_static] = ACTIONS(4733), + [anon_sym_dynamic] = ACTIONS(4733), + [anon_sym_optional] = ACTIONS(4733), + [anon_sym_final] = ACTIONS(4733), + [anon_sym_inout] = ACTIONS(4733), + [anon_sym_ATescaping] = ACTIONS(4733), + [anon_sym_ATautoclosure] = ACTIONS(4733), + [anon_sym_weak] = ACTIONS(4733), + [anon_sym_unowned] = ACTIONS(4735), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4733), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4733), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4733), + [sym__three_dot_operator_custom] = ACTIONS(4733), + [sym__open_ended_range_operator_custom] = ACTIONS(4733), + [sym__conjunction_operator_custom] = ACTIONS(4733), + [sym__disjunction_operator_custom] = ACTIONS(4733), + [sym__nil_coalescing_operator_custom] = ACTIONS(4733), + [sym__eq_eq_custom] = ACTIONS(4733), + [sym__plus_then_ws] = ACTIONS(4733), + [sym__minus_then_ws] = ACTIONS(4733), + [sym_bang] = ACTIONS(4733), + [sym__as_custom] = ACTIONS(4733), + [sym__as_quest_custom] = ACTIONS(4733), + [sym__as_bang_custom] = ACTIONS(4733), + }, + [1228] = { + [aux_sym_key_path_expression_repeat1] = STATE(1228), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5077), + [anon_sym_COMMA] = ACTIONS(5077), + [anon_sym_COLON] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5077), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_RBRACK] = ACTIONS(5077), + [anon_sym_DOT] = ACTIONS(5079), + [anon_sym_QMARK] = ACTIONS(5082), + [sym__immediate_quest] = ACTIONS(5082), + [anon_sym_AMP] = ACTIONS(5082), + [anon_sym_async] = ACTIONS(5077), + [aux_sym_custom_operator_token1] = ACTIONS(5082), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_LBRACE] = ACTIONS(5077), + [anon_sym_RBRACE] = ACTIONS(5077), + [anon_sym_case] = ACTIONS(5077), + [anon_sym_BANG_EQ] = ACTIONS(5082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5082), + [anon_sym_LT_EQ] = ACTIONS(5082), + [anon_sym_GT_EQ] = ACTIONS(5082), + [anon_sym_is] = ACTIONS(5077), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_STAR] = ACTIONS(5082), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_PERCENT] = ACTIONS(5082), + [anon_sym_PLUS_PLUS] = ACTIONS(5082), + [anon_sym_DASH_DASH] = ACTIONS(5082), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_CARET] = ACTIONS(5082), + [anon_sym_LT_LT] = ACTIONS(5082), + [anon_sym_GT_GT] = ACTIONS(5082), + [anon_sym_import] = ACTIONS(5077), + [anon_sym_typealias] = ACTIONS(5077), + [anon_sym_struct] = ACTIONS(5077), + [anon_sym_class] = ACTIONS(5077), + [anon_sym_enum] = ACTIONS(5077), + [anon_sym_protocol] = ACTIONS(5077), + [anon_sym_let] = ACTIONS(5077), + [anon_sym_var] = ACTIONS(5077), + [anon_sym_func] = ACTIONS(5077), + [anon_sym_extension] = ACTIONS(5077), + [anon_sym_indirect] = ACTIONS(5077), + [anon_sym_init] = ACTIONS(5077), + [anon_sym_SEMI] = ACTIONS(5077), + [anon_sym_deinit] = ACTIONS(5077), + [anon_sym_subscript] = ACTIONS(5077), + [anon_sym_prefix] = ACTIONS(5077), + [anon_sym_infix] = ACTIONS(5077), + [anon_sym_postfix] = ACTIONS(5077), + [anon_sym_precedencegroup] = ACTIONS(5077), + [anon_sym_associatedtype] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5082), + [sym_property_behavior_modifier] = ACTIONS(5077), + [anon_sym_override] = ACTIONS(5077), + [anon_sym_convenience] = ACTIONS(5077), + [anon_sym_required] = ACTIONS(5077), + [anon_sym_public] = ACTIONS(5077), + [anon_sym_private] = ACTIONS(5077), + [anon_sym_internal] = ACTIONS(5077), + [anon_sym_fileprivate] = ACTIONS(5077), + [anon_sym_open] = ACTIONS(5077), + [anon_sym_mutating] = ACTIONS(5077), + [anon_sym_nonmutating] = ACTIONS(5077), + [anon_sym_static] = ACTIONS(5077), + [anon_sym_dynamic] = ACTIONS(5077), + [anon_sym_optional] = ACTIONS(5077), + [anon_sym_final] = ACTIONS(5077), + [anon_sym_inout] = ACTIONS(5077), + [anon_sym_ATescaping] = ACTIONS(5077), + [anon_sym_ATautoclosure] = ACTIONS(5077), + [anon_sym_weak] = ACTIONS(5077), + [anon_sym_unowned] = ACTIONS(5082), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5077), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5077), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5077), + [sym__three_dot_operator_custom] = ACTIONS(5077), + [sym__open_ended_range_operator_custom] = ACTIONS(5077), + [sym__conjunction_operator_custom] = ACTIONS(5077), + [sym__disjunction_operator_custom] = ACTIONS(5077), + [sym__nil_coalescing_operator_custom] = ACTIONS(5077), + [sym__eq_eq_custom] = ACTIONS(5077), + [sym__plus_then_ws] = ACTIONS(5077), + [sym__minus_then_ws] = ACTIONS(5077), + [sym_bang] = ACTIONS(5077), + [sym__as_custom] = ACTIONS(5077), + [sym__as_quest_custom] = ACTIONS(5077), + [sym__as_bang_custom] = ACTIONS(5077), + }, + [1229] = { + [sym_type_arguments] = STATE(1241), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5084), + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_COLON] = ACTIONS(5084), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_RBRACK] = ACTIONS(5084), + [anon_sym_DOT] = ACTIONS(5086), + [anon_sym_QMARK] = ACTIONS(5086), + [sym__immediate_quest] = ACTIONS(5086), + [anon_sym_AMP] = ACTIONS(5086), + [anon_sym_async] = ACTIONS(5084), + [aux_sym_custom_operator_token1] = ACTIONS(5086), + [anon_sym_LT] = ACTIONS(5088), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_LBRACE] = ACTIONS(5084), + [anon_sym_RBRACE] = ACTIONS(5084), + [anon_sym_case] = ACTIONS(5084), + [anon_sym_BANG_EQ] = ACTIONS(5086), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5086), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5086), + [anon_sym_LT_EQ] = ACTIONS(5086), + [anon_sym_GT_EQ] = ACTIONS(5086), + [anon_sym_is] = ACTIONS(5084), + [anon_sym_PLUS] = ACTIONS(5086), + [anon_sym_DASH] = ACTIONS(5086), + [anon_sym_STAR] = ACTIONS(5086), + [anon_sym_SLASH] = ACTIONS(5086), + [anon_sym_PERCENT] = ACTIONS(5086), + [anon_sym_PLUS_PLUS] = ACTIONS(5086), + [anon_sym_DASH_DASH] = ACTIONS(5086), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_CARET] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(5086), + [anon_sym_GT_GT] = ACTIONS(5086), + [anon_sym_import] = ACTIONS(5084), + [anon_sym_typealias] = ACTIONS(5084), + [anon_sym_struct] = ACTIONS(5084), + [anon_sym_class] = ACTIONS(5084), + [anon_sym_enum] = ACTIONS(5084), + [anon_sym_protocol] = ACTIONS(5084), + [anon_sym_let] = ACTIONS(5084), + [anon_sym_var] = ACTIONS(5084), + [anon_sym_func] = ACTIONS(5084), + [anon_sym_extension] = ACTIONS(5084), + [anon_sym_indirect] = ACTIONS(5084), + [anon_sym_init] = ACTIONS(5084), + [anon_sym_SEMI] = ACTIONS(5084), + [anon_sym_deinit] = ACTIONS(5084), + [anon_sym_subscript] = ACTIONS(5084), + [anon_sym_prefix] = ACTIONS(5084), + [anon_sym_infix] = ACTIONS(5084), + [anon_sym_postfix] = ACTIONS(5084), + [anon_sym_precedencegroup] = ACTIONS(5084), + [anon_sym_associatedtype] = ACTIONS(5084), + [anon_sym_AT] = ACTIONS(5086), + [sym_property_behavior_modifier] = ACTIONS(5084), + [anon_sym_override] = ACTIONS(5084), + [anon_sym_convenience] = ACTIONS(5084), + [anon_sym_required] = ACTIONS(5084), + [anon_sym_public] = ACTIONS(5084), + [anon_sym_private] = ACTIONS(5084), + [anon_sym_internal] = ACTIONS(5084), + [anon_sym_fileprivate] = ACTIONS(5084), + [anon_sym_open] = ACTIONS(5084), + [anon_sym_mutating] = ACTIONS(5084), + [anon_sym_nonmutating] = ACTIONS(5084), + [anon_sym_static] = ACTIONS(5084), + [anon_sym_dynamic] = ACTIONS(5084), + [anon_sym_optional] = ACTIONS(5084), + [anon_sym_final] = ACTIONS(5084), + [anon_sym_inout] = ACTIONS(5084), + [anon_sym_ATescaping] = ACTIONS(5084), + [anon_sym_ATautoclosure] = ACTIONS(5084), + [anon_sym_weak] = ACTIONS(5084), + [anon_sym_unowned] = ACTIONS(5086), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5084), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5084), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5084), + [sym__three_dot_operator_custom] = ACTIONS(5084), + [sym__open_ended_range_operator_custom] = ACTIONS(5084), + [sym__conjunction_operator_custom] = ACTIONS(5084), + [sym__disjunction_operator_custom] = ACTIONS(5084), + [sym__nil_coalescing_operator_custom] = ACTIONS(5084), + [sym__eq_eq_custom] = ACTIONS(5084), + [sym__plus_then_ws] = ACTIONS(5084), + [sym__minus_then_ws] = ACTIONS(5084), + [sym_bang] = ACTIONS(5084), + [sym__as_custom] = ACTIONS(5084), + [sym__as_quest_custom] = ACTIONS(5084), + [sym__as_bang_custom] = ACTIONS(5084), + }, + [1230] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4817), + [anon_sym_COMMA] = ACTIONS(4817), + [anon_sym_COLON] = ACTIONS(4817), + [anon_sym_LPAREN] = ACTIONS(4817), + [anon_sym_LBRACK] = ACTIONS(4817), + [anon_sym_RBRACK] = ACTIONS(4817), + [anon_sym_DOT] = ACTIONS(4819), + [anon_sym_QMARK] = ACTIONS(4819), + [sym__immediate_quest] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4819), + [anon_sym_async] = ACTIONS(4817), + [aux_sym_custom_operator_token1] = ACTIONS(4819), + [anon_sym_LT] = ACTIONS(4819), + [anon_sym_GT] = ACTIONS(4819), + [anon_sym_LBRACE] = ACTIONS(4817), + [anon_sym_RBRACE] = ACTIONS(4817), + [anon_sym_self] = ACTIONS(4817), + [anon_sym_case] = ACTIONS(4817), + [anon_sym_BANG_EQ] = ACTIONS(4819), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4819), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4819), + [anon_sym_LT_EQ] = ACTIONS(4819), + [anon_sym_GT_EQ] = ACTIONS(4819), + [anon_sym_is] = ACTIONS(4817), + [anon_sym_PLUS] = ACTIONS(4819), + [anon_sym_DASH] = ACTIONS(4819), + [anon_sym_STAR] = ACTIONS(4819), + [anon_sym_SLASH] = ACTIONS(4819), + [anon_sym_PERCENT] = ACTIONS(4819), + [anon_sym_PLUS_PLUS] = ACTIONS(4819), + [anon_sym_DASH_DASH] = ACTIONS(4819), + [anon_sym_PIPE] = ACTIONS(4819), + [anon_sym_CARET] = ACTIONS(4819), + [anon_sym_LT_LT] = ACTIONS(4819), + [anon_sym_GT_GT] = ACTIONS(4819), + [anon_sym_import] = ACTIONS(4817), + [anon_sym_typealias] = ACTIONS(4817), + [anon_sym_struct] = ACTIONS(4817), + [anon_sym_class] = ACTIONS(4817), + [anon_sym_enum] = ACTIONS(4817), + [anon_sym_protocol] = ACTIONS(4817), + [anon_sym_let] = ACTIONS(4817), + [anon_sym_var] = ACTIONS(4817), + [anon_sym_func] = ACTIONS(4817), + [anon_sym_extension] = ACTIONS(4817), + [anon_sym_indirect] = ACTIONS(4817), + [anon_sym_init] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_deinit] = ACTIONS(4817), + [anon_sym_subscript] = ACTIONS(4817), + [anon_sym_prefix] = ACTIONS(4817), + [anon_sym_infix] = ACTIONS(4817), + [anon_sym_postfix] = ACTIONS(4817), + [anon_sym_precedencegroup] = ACTIONS(4817), + [anon_sym_associatedtype] = ACTIONS(4817), + [anon_sym_AT] = ACTIONS(4819), + [sym_property_behavior_modifier] = ACTIONS(4817), + [anon_sym_override] = ACTIONS(4817), + [anon_sym_convenience] = ACTIONS(4817), + [anon_sym_required] = ACTIONS(4817), + [anon_sym_public] = ACTIONS(4817), + [anon_sym_private] = ACTIONS(4817), + [anon_sym_internal] = ACTIONS(4817), + [anon_sym_fileprivate] = ACTIONS(4817), + [anon_sym_open] = ACTIONS(4817), + [anon_sym_mutating] = ACTIONS(4817), + [anon_sym_nonmutating] = ACTIONS(4817), + [anon_sym_static] = ACTIONS(4817), + [anon_sym_dynamic] = ACTIONS(4817), + [anon_sym_optional] = ACTIONS(4817), + [anon_sym_final] = ACTIONS(4817), + [anon_sym_inout] = ACTIONS(4817), + [anon_sym_ATescaping] = ACTIONS(4817), + [anon_sym_ATautoclosure] = ACTIONS(4817), + [anon_sym_weak] = ACTIONS(4817), + [anon_sym_unowned] = ACTIONS(4819), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4817), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4817), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4817), + [sym__three_dot_operator_custom] = ACTIONS(4817), + [sym__open_ended_range_operator_custom] = ACTIONS(4817), + [sym__conjunction_operator_custom] = ACTIONS(4817), + [sym__disjunction_operator_custom] = ACTIONS(4817), + [sym__nil_coalescing_operator_custom] = ACTIONS(4817), + [sym__eq_eq_custom] = ACTIONS(4817), + [sym__plus_then_ws] = ACTIONS(4817), + [sym__minus_then_ws] = ACTIONS(4817), + [sym_bang] = ACTIONS(4817), + [sym__as_custom] = ACTIONS(4817), + [sym__as_quest_custom] = ACTIONS(4817), + [sym__as_bang_custom] = ACTIONS(4817), + }, + [1231] = { + [aux_sym_key_path_expression_repeat1] = STATE(1226), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5057), + [anon_sym_COMMA] = ACTIONS(5057), + [anon_sym_COLON] = ACTIONS(5057), + [anon_sym_LPAREN] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [anon_sym_RBRACK] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(4857), + [anon_sym_QMARK] = ACTIONS(5059), + [sym__immediate_quest] = ACTIONS(5059), + [anon_sym_AMP] = ACTIONS(5059), + [anon_sym_async] = ACTIONS(5057), + [aux_sym_custom_operator_token1] = ACTIONS(5059), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_LBRACE] = ACTIONS(5057), + [anon_sym_RBRACE] = ACTIONS(5057), + [anon_sym_case] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5059), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5059), + [anon_sym_GT_EQ] = ACTIONS(5059), + [anon_sym_is] = ACTIONS(5057), + [anon_sym_PLUS] = ACTIONS(5059), + [anon_sym_DASH] = ACTIONS(5059), + [anon_sym_STAR] = ACTIONS(5059), + [anon_sym_SLASH] = ACTIONS(5059), + [anon_sym_PERCENT] = ACTIONS(5059), + [anon_sym_PLUS_PLUS] = ACTIONS(5059), + [anon_sym_DASH_DASH] = ACTIONS(5059), + [anon_sym_PIPE] = ACTIONS(5059), + [anon_sym_CARET] = ACTIONS(5059), + [anon_sym_LT_LT] = ACTIONS(5059), + [anon_sym_GT_GT] = ACTIONS(5059), + [anon_sym_import] = ACTIONS(5057), + [anon_sym_typealias] = ACTIONS(5057), + [anon_sym_struct] = ACTIONS(5057), + [anon_sym_class] = ACTIONS(5057), + [anon_sym_enum] = ACTIONS(5057), + [anon_sym_protocol] = ACTIONS(5057), + [anon_sym_let] = ACTIONS(5057), + [anon_sym_var] = ACTIONS(5057), + [anon_sym_func] = ACTIONS(5057), + [anon_sym_extension] = ACTIONS(5057), + [anon_sym_indirect] = ACTIONS(5057), + [anon_sym_init] = ACTIONS(5057), + [anon_sym_SEMI] = ACTIONS(5057), + [anon_sym_deinit] = ACTIONS(5057), + [anon_sym_subscript] = ACTIONS(5057), + [anon_sym_prefix] = ACTIONS(5057), + [anon_sym_infix] = ACTIONS(5057), + [anon_sym_postfix] = ACTIONS(5057), + [anon_sym_precedencegroup] = ACTIONS(5057), + [anon_sym_associatedtype] = ACTIONS(5057), + [anon_sym_AT] = ACTIONS(5059), + [sym_property_behavior_modifier] = ACTIONS(5057), + [anon_sym_override] = ACTIONS(5057), + [anon_sym_convenience] = ACTIONS(5057), + [anon_sym_required] = ACTIONS(5057), + [anon_sym_public] = ACTIONS(5057), + [anon_sym_private] = ACTIONS(5057), + [anon_sym_internal] = ACTIONS(5057), + [anon_sym_fileprivate] = ACTIONS(5057), + [anon_sym_open] = ACTIONS(5057), + [anon_sym_mutating] = ACTIONS(5057), + [anon_sym_nonmutating] = ACTIONS(5057), + [anon_sym_static] = ACTIONS(5057), + [anon_sym_dynamic] = ACTIONS(5057), + [anon_sym_optional] = ACTIONS(5057), + [anon_sym_final] = ACTIONS(5057), + [anon_sym_inout] = ACTIONS(5057), + [anon_sym_ATescaping] = ACTIONS(5057), + [anon_sym_ATautoclosure] = ACTIONS(5057), + [anon_sym_weak] = ACTIONS(5057), + [anon_sym_unowned] = ACTIONS(5059), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5057), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5057), + [sym__three_dot_operator_custom] = ACTIONS(5057), + [sym__open_ended_range_operator_custom] = ACTIONS(5057), + [sym__conjunction_operator_custom] = ACTIONS(5057), + [sym__disjunction_operator_custom] = ACTIONS(5057), + [sym__nil_coalescing_operator_custom] = ACTIONS(5057), + [sym__eq_eq_custom] = ACTIONS(5057), + [sym__plus_then_ws] = ACTIONS(5057), + [sym__minus_then_ws] = ACTIONS(5057), + [sym_bang] = ACTIONS(5057), + [sym__as_custom] = ACTIONS(5057), + [sym__as_quest_custom] = ACTIONS(5057), + [sym__as_bang_custom] = ACTIONS(5057), + }, + [1232] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5090), + [anon_sym_COMMA] = ACTIONS(5090), + [anon_sym_COLON] = ACTIONS(5090), + [anon_sym_LPAREN] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5090), + [anon_sym_RBRACK] = ACTIONS(5090), + [anon_sym_DOT] = ACTIONS(5092), + [anon_sym_QMARK] = ACTIONS(5092), + [sym__immediate_quest] = ACTIONS(5092), + [anon_sym_AMP] = ACTIONS(5092), + [anon_sym_async] = ACTIONS(5090), + [aux_sym_custom_operator_token1] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5092), + [anon_sym_GT] = ACTIONS(5092), + [anon_sym_LBRACE] = ACTIONS(5090), + [anon_sym_RBRACE] = ACTIONS(5090), + [anon_sym_self] = ACTIONS(5090), + [anon_sym_case] = ACTIONS(5090), + [anon_sym_BANG_EQ] = ACTIONS(5092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5092), + [anon_sym_LT_EQ] = ACTIONS(5092), + [anon_sym_GT_EQ] = ACTIONS(5092), + [anon_sym_is] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(5092), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_SLASH] = ACTIONS(5092), + [anon_sym_PERCENT] = ACTIONS(5092), + [anon_sym_PLUS_PLUS] = ACTIONS(5092), + [anon_sym_DASH_DASH] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5092), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym_LT_LT] = ACTIONS(5092), + [anon_sym_GT_GT] = ACTIONS(5092), + [anon_sym_import] = ACTIONS(5090), + [anon_sym_typealias] = ACTIONS(5090), + [anon_sym_struct] = ACTIONS(5090), + [anon_sym_class] = ACTIONS(5090), + [anon_sym_enum] = ACTIONS(5090), + [anon_sym_protocol] = ACTIONS(5090), + [anon_sym_let] = ACTIONS(5090), + [anon_sym_var] = ACTIONS(5090), + [anon_sym_func] = ACTIONS(5090), + [anon_sym_extension] = ACTIONS(5090), + [anon_sym_indirect] = ACTIONS(5090), + [anon_sym_init] = ACTIONS(5090), + [anon_sym_SEMI] = ACTIONS(5090), + [anon_sym_deinit] = ACTIONS(5090), + [anon_sym_subscript] = ACTIONS(5090), + [anon_sym_prefix] = ACTIONS(5090), + [anon_sym_infix] = ACTIONS(5090), + [anon_sym_postfix] = ACTIONS(5090), + [anon_sym_precedencegroup] = ACTIONS(5090), + [anon_sym_associatedtype] = ACTIONS(5090), + [anon_sym_AT] = ACTIONS(5092), + [sym_property_behavior_modifier] = ACTIONS(5090), + [anon_sym_override] = ACTIONS(5090), + [anon_sym_convenience] = ACTIONS(5090), + [anon_sym_required] = ACTIONS(5090), + [anon_sym_public] = ACTIONS(5090), + [anon_sym_private] = ACTIONS(5090), + [anon_sym_internal] = ACTIONS(5090), + [anon_sym_fileprivate] = ACTIONS(5090), + [anon_sym_open] = ACTIONS(5090), + [anon_sym_mutating] = ACTIONS(5090), + [anon_sym_nonmutating] = ACTIONS(5090), + [anon_sym_static] = ACTIONS(5090), + [anon_sym_dynamic] = ACTIONS(5090), + [anon_sym_optional] = ACTIONS(5090), + [anon_sym_final] = ACTIONS(5090), + [anon_sym_inout] = ACTIONS(5090), + [anon_sym_ATescaping] = ACTIONS(5090), + [anon_sym_ATautoclosure] = ACTIONS(5090), + [anon_sym_weak] = ACTIONS(5090), + [anon_sym_unowned] = ACTIONS(5092), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5090), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5090), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5090), + [sym__three_dot_operator_custom] = ACTIONS(5090), + [sym__open_ended_range_operator_custom] = ACTIONS(5090), + [sym__conjunction_operator_custom] = ACTIONS(5090), + [sym__disjunction_operator_custom] = ACTIONS(5090), + [sym__nil_coalescing_operator_custom] = ACTIONS(5090), + [sym__eq_eq_custom] = ACTIONS(5090), + [sym__plus_then_ws] = ACTIONS(5090), + [sym__minus_then_ws] = ACTIONS(5090), + [sym_bang] = ACTIONS(5090), + [sym__as_custom] = ACTIONS(5090), + [sym__as_quest_custom] = ACTIONS(5090), + [sym__as_bang_custom] = ACTIONS(5090), + }, + [1233] = { + [aux_sym_protocol_composition_type_repeat1] = STATE(1220), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5094), + [anon_sym_COMMA] = ACTIONS(5094), + [anon_sym_COLON] = ACTIONS(5094), + [anon_sym_LPAREN] = ACTIONS(5094), + [anon_sym_LBRACK] = ACTIONS(5094), + [anon_sym_RBRACK] = ACTIONS(5094), + [anon_sym_DOT] = ACTIONS(5043), + [anon_sym_QMARK] = ACTIONS(5096), + [sym__immediate_quest] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5047), + [anon_sym_async] = ACTIONS(5094), + [aux_sym_custom_operator_token1] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5094), + [anon_sym_RBRACE] = ACTIONS(5094), + [anon_sym_case] = ACTIONS(5094), + [anon_sym_BANG_EQ] = ACTIONS(5096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5096), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5096), + [anon_sym_is] = ACTIONS(5094), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_PERCENT] = ACTIONS(5096), + [anon_sym_PLUS_PLUS] = ACTIONS(5096), + [anon_sym_DASH_DASH] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_LT_LT] = ACTIONS(5096), + [anon_sym_GT_GT] = ACTIONS(5096), + [anon_sym_import] = ACTIONS(5094), + [anon_sym_typealias] = ACTIONS(5094), + [anon_sym_struct] = ACTIONS(5094), + [anon_sym_class] = ACTIONS(5094), + [anon_sym_enum] = ACTIONS(5094), + [anon_sym_protocol] = ACTIONS(5094), + [anon_sym_let] = ACTIONS(5094), + [anon_sym_var] = ACTIONS(5094), + [anon_sym_func] = ACTIONS(5094), + [anon_sym_extension] = ACTIONS(5094), + [anon_sym_indirect] = ACTIONS(5094), + [anon_sym_init] = ACTIONS(5094), + [anon_sym_SEMI] = ACTIONS(5094), + [anon_sym_deinit] = ACTIONS(5094), + [anon_sym_subscript] = ACTIONS(5094), + [anon_sym_prefix] = ACTIONS(5094), + [anon_sym_infix] = ACTIONS(5094), + [anon_sym_postfix] = ACTIONS(5094), + [anon_sym_precedencegroup] = ACTIONS(5094), + [anon_sym_associatedtype] = ACTIONS(5094), + [anon_sym_AT] = ACTIONS(5096), + [sym_property_behavior_modifier] = ACTIONS(5094), + [anon_sym_override] = ACTIONS(5094), + [anon_sym_convenience] = ACTIONS(5094), + [anon_sym_required] = ACTIONS(5094), + [anon_sym_public] = ACTIONS(5094), + [anon_sym_private] = ACTIONS(5094), + [anon_sym_internal] = ACTIONS(5094), + [anon_sym_fileprivate] = ACTIONS(5094), + [anon_sym_open] = ACTIONS(5094), + [anon_sym_mutating] = ACTIONS(5094), + [anon_sym_nonmutating] = ACTIONS(5094), + [anon_sym_static] = ACTIONS(5094), + [anon_sym_dynamic] = ACTIONS(5094), + [anon_sym_optional] = ACTIONS(5094), + [anon_sym_final] = ACTIONS(5094), + [anon_sym_inout] = ACTIONS(5094), + [anon_sym_ATescaping] = ACTIONS(5094), + [anon_sym_ATautoclosure] = ACTIONS(5094), + [anon_sym_weak] = ACTIONS(5094), + [anon_sym_unowned] = ACTIONS(5096), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5094), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5094), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5094), + [sym__three_dot_operator_custom] = ACTIONS(5094), + [sym__open_ended_range_operator_custom] = ACTIONS(5094), + [sym__conjunction_operator_custom] = ACTIONS(5094), + [sym__disjunction_operator_custom] = ACTIONS(5094), + [sym__nil_coalescing_operator_custom] = ACTIONS(5094), + [sym__eq_eq_custom] = ACTIONS(5094), + [sym__plus_then_ws] = ACTIONS(5094), + [sym__minus_then_ws] = ACTIONS(5094), + [sym_bang] = ACTIONS(5094), + [sym__as_custom] = ACTIONS(5094), + [sym__as_quest_custom] = ACTIONS(5094), + [sym__as_bang_custom] = ACTIONS(5094), + }, + [1234] = { + [aux_sym_protocol_composition_type_repeat1] = STATE(1234), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5094), + [anon_sym_COMMA] = ACTIONS(5094), + [anon_sym_COLON] = ACTIONS(5094), + [anon_sym_LPAREN] = ACTIONS(5094), + [anon_sym_LBRACK] = ACTIONS(5094), + [anon_sym_RBRACK] = ACTIONS(5094), + [anon_sym_DOT] = ACTIONS(5096), + [anon_sym_QMARK] = ACTIONS(5096), + [sym__immediate_quest] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5098), + [anon_sym_async] = ACTIONS(5094), + [aux_sym_custom_operator_token1] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5094), + [anon_sym_RBRACE] = ACTIONS(5094), + [anon_sym_case] = ACTIONS(5094), + [anon_sym_BANG_EQ] = ACTIONS(5096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5096), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5096), + [anon_sym_is] = ACTIONS(5094), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_PERCENT] = ACTIONS(5096), + [anon_sym_PLUS_PLUS] = ACTIONS(5096), + [anon_sym_DASH_DASH] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_LT_LT] = ACTIONS(5096), + [anon_sym_GT_GT] = ACTIONS(5096), + [anon_sym_import] = ACTIONS(5094), + [anon_sym_typealias] = ACTIONS(5094), + [anon_sym_struct] = ACTIONS(5094), + [anon_sym_class] = ACTIONS(5094), + [anon_sym_enum] = ACTIONS(5094), + [anon_sym_protocol] = ACTIONS(5094), + [anon_sym_let] = ACTIONS(5094), + [anon_sym_var] = ACTIONS(5094), + [anon_sym_func] = ACTIONS(5094), + [anon_sym_extension] = ACTIONS(5094), + [anon_sym_indirect] = ACTIONS(5094), + [anon_sym_init] = ACTIONS(5094), + [anon_sym_SEMI] = ACTIONS(5094), + [anon_sym_deinit] = ACTIONS(5094), + [anon_sym_subscript] = ACTIONS(5094), + [anon_sym_prefix] = ACTIONS(5094), + [anon_sym_infix] = ACTIONS(5094), + [anon_sym_postfix] = ACTIONS(5094), + [anon_sym_precedencegroup] = ACTIONS(5094), + [anon_sym_associatedtype] = ACTIONS(5094), + [anon_sym_AT] = ACTIONS(5096), + [sym_property_behavior_modifier] = ACTIONS(5094), + [anon_sym_override] = ACTIONS(5094), + [anon_sym_convenience] = ACTIONS(5094), + [anon_sym_required] = ACTIONS(5094), + [anon_sym_public] = ACTIONS(5094), + [anon_sym_private] = ACTIONS(5094), + [anon_sym_internal] = ACTIONS(5094), + [anon_sym_fileprivate] = ACTIONS(5094), + [anon_sym_open] = ACTIONS(5094), + [anon_sym_mutating] = ACTIONS(5094), + [anon_sym_nonmutating] = ACTIONS(5094), + [anon_sym_static] = ACTIONS(5094), + [anon_sym_dynamic] = ACTIONS(5094), + [anon_sym_optional] = ACTIONS(5094), + [anon_sym_final] = ACTIONS(5094), + [anon_sym_inout] = ACTIONS(5094), + [anon_sym_ATescaping] = ACTIONS(5094), + [anon_sym_ATautoclosure] = ACTIONS(5094), + [anon_sym_weak] = ACTIONS(5094), + [anon_sym_unowned] = ACTIONS(5096), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5094), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5094), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5094), + [sym__three_dot_operator_custom] = ACTIONS(5094), + [sym__open_ended_range_operator_custom] = ACTIONS(5094), + [sym__conjunction_operator_custom] = ACTIONS(5094), + [sym__disjunction_operator_custom] = ACTIONS(5094), + [sym__nil_coalescing_operator_custom] = ACTIONS(5094), + [sym__eq_eq_custom] = ACTIONS(5094), + [sym__plus_then_ws] = ACTIONS(5094), + [sym__minus_then_ws] = ACTIONS(5094), + [sym_bang] = ACTIONS(5094), + [sym__as_custom] = ACTIONS(5094), + [sym__as_quest_custom] = ACTIONS(5094), + [sym__as_bang_custom] = ACTIONS(5094), + }, + [1235] = { + [aux_sym_optional_type_repeat1] = STATE(1235), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5101), + [anon_sym_COMMA] = ACTIONS(5101), + [anon_sym_COLON] = ACTIONS(5101), + [anon_sym_LPAREN] = ACTIONS(5101), + [anon_sym_LBRACK] = ACTIONS(5101), + [anon_sym_RBRACK] = ACTIONS(5101), + [anon_sym_DOT] = ACTIONS(5103), + [anon_sym_QMARK] = ACTIONS(5103), + [sym__immediate_quest] = ACTIONS(5105), + [anon_sym_AMP] = ACTIONS(5103), + [anon_sym_async] = ACTIONS(5101), + [aux_sym_custom_operator_token1] = ACTIONS(5103), + [anon_sym_LT] = ACTIONS(5103), + [anon_sym_GT] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(5101), + [anon_sym_RBRACE] = ACTIONS(5101), + [anon_sym_case] = ACTIONS(5101), + [anon_sym_BANG_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5103), + [anon_sym_LT_EQ] = ACTIONS(5103), + [anon_sym_GT_EQ] = ACTIONS(5103), + [anon_sym_is] = ACTIONS(5101), + [anon_sym_PLUS] = ACTIONS(5103), + [anon_sym_DASH] = ACTIONS(5103), + [anon_sym_STAR] = ACTIONS(5103), + [anon_sym_SLASH] = ACTIONS(5103), + [anon_sym_PERCENT] = ACTIONS(5103), + [anon_sym_PLUS_PLUS] = ACTIONS(5103), + [anon_sym_DASH_DASH] = ACTIONS(5103), + [anon_sym_PIPE] = ACTIONS(5103), + [anon_sym_CARET] = ACTIONS(5103), + [anon_sym_LT_LT] = ACTIONS(5103), + [anon_sym_GT_GT] = ACTIONS(5103), + [anon_sym_import] = ACTIONS(5101), + [anon_sym_typealias] = ACTIONS(5101), + [anon_sym_struct] = ACTIONS(5101), + [anon_sym_class] = ACTIONS(5101), + [anon_sym_enum] = ACTIONS(5101), + [anon_sym_protocol] = ACTIONS(5101), + [anon_sym_let] = ACTIONS(5101), + [anon_sym_var] = ACTIONS(5101), + [anon_sym_func] = ACTIONS(5101), + [anon_sym_extension] = ACTIONS(5101), + [anon_sym_indirect] = ACTIONS(5101), + [anon_sym_init] = ACTIONS(5101), + [anon_sym_SEMI] = ACTIONS(5101), + [anon_sym_deinit] = ACTIONS(5101), + [anon_sym_subscript] = ACTIONS(5101), + [anon_sym_prefix] = ACTIONS(5101), + [anon_sym_infix] = ACTIONS(5101), + [anon_sym_postfix] = ACTIONS(5101), + [anon_sym_precedencegroup] = ACTIONS(5101), + [anon_sym_associatedtype] = ACTIONS(5101), + [anon_sym_AT] = ACTIONS(5103), + [sym_property_behavior_modifier] = ACTIONS(5101), + [anon_sym_override] = ACTIONS(5101), + [anon_sym_convenience] = ACTIONS(5101), + [anon_sym_required] = ACTIONS(5101), + [anon_sym_public] = ACTIONS(5101), + [anon_sym_private] = ACTIONS(5101), + [anon_sym_internal] = ACTIONS(5101), + [anon_sym_fileprivate] = ACTIONS(5101), + [anon_sym_open] = ACTIONS(5101), + [anon_sym_mutating] = ACTIONS(5101), + [anon_sym_nonmutating] = ACTIONS(5101), + [anon_sym_static] = ACTIONS(5101), + [anon_sym_dynamic] = ACTIONS(5101), + [anon_sym_optional] = ACTIONS(5101), + [anon_sym_final] = ACTIONS(5101), + [anon_sym_inout] = ACTIONS(5101), + [anon_sym_ATescaping] = ACTIONS(5101), + [anon_sym_ATautoclosure] = ACTIONS(5101), + [anon_sym_weak] = ACTIONS(5101), + [anon_sym_unowned] = ACTIONS(5103), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5101), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5101), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5101), + [sym__three_dot_operator_custom] = ACTIONS(5101), + [sym__open_ended_range_operator_custom] = ACTIONS(5101), + [sym__conjunction_operator_custom] = ACTIONS(5101), + [sym__disjunction_operator_custom] = ACTIONS(5101), + [sym__nil_coalescing_operator_custom] = ACTIONS(5101), + [sym__eq_eq_custom] = ACTIONS(5101), + [sym__plus_then_ws] = ACTIONS(5101), + [sym__minus_then_ws] = ACTIONS(5101), + [sym_bang] = ACTIONS(5101), + [sym__as_custom] = ACTIONS(5101), + [sym__as_quest_custom] = ACTIONS(5101), + [sym__as_bang_custom] = ACTIONS(5101), + }, + [1236] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5108), + [anon_sym_COMMA] = ACTIONS(5108), + [anon_sym_COLON] = ACTIONS(5108), + [anon_sym_LPAREN] = ACTIONS(5108), + [anon_sym_LBRACK] = ACTIONS(5108), + [anon_sym_RBRACK] = ACTIONS(5108), + [anon_sym_DOT] = ACTIONS(5110), + [anon_sym_QMARK] = ACTIONS(5110), + [sym__immediate_quest] = ACTIONS(5110), + [anon_sym_AMP] = ACTIONS(5110), + [anon_sym_async] = ACTIONS(5108), + [aux_sym_custom_operator_token1] = ACTIONS(5110), + [anon_sym_LT] = ACTIONS(5110), + [anon_sym_GT] = ACTIONS(5110), + [anon_sym_LBRACE] = ACTIONS(5108), + [anon_sym_RBRACE] = ACTIONS(5108), + [anon_sym_case] = ACTIONS(5108), + [anon_sym_BANG_EQ] = ACTIONS(5110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5110), + [anon_sym_LT_EQ] = ACTIONS(5110), + [anon_sym_GT_EQ] = ACTIONS(5110), + [anon_sym_is] = ACTIONS(5108), + [anon_sym_PLUS] = ACTIONS(5110), + [anon_sym_DASH] = ACTIONS(5110), + [anon_sym_STAR] = ACTIONS(5110), + [anon_sym_SLASH] = ACTIONS(5110), + [anon_sym_PERCENT] = ACTIONS(5110), + [anon_sym_PLUS_PLUS] = ACTIONS(5110), + [anon_sym_DASH_DASH] = ACTIONS(5110), + [anon_sym_PIPE] = ACTIONS(5110), + [anon_sym_CARET] = ACTIONS(5110), + [anon_sym_LT_LT] = ACTIONS(5110), + [anon_sym_GT_GT] = ACTIONS(5110), + [anon_sym_import] = ACTIONS(5108), + [anon_sym_typealias] = ACTIONS(5108), + [anon_sym_struct] = ACTIONS(5108), + [anon_sym_class] = ACTIONS(5108), + [anon_sym_enum] = ACTIONS(5108), + [anon_sym_protocol] = ACTIONS(5108), + [anon_sym_let] = ACTIONS(5108), + [anon_sym_var] = ACTIONS(5108), + [anon_sym_func] = ACTIONS(5108), + [anon_sym_extension] = ACTIONS(5108), + [anon_sym_indirect] = ACTIONS(5108), + [anon_sym_init] = ACTIONS(5108), + [anon_sym_SEMI] = ACTIONS(5108), + [anon_sym_deinit] = ACTIONS(5108), + [anon_sym_subscript] = ACTIONS(5108), + [anon_sym_prefix] = ACTIONS(5108), + [anon_sym_infix] = ACTIONS(5108), + [anon_sym_postfix] = ACTIONS(5108), + [anon_sym_precedencegroup] = ACTIONS(5108), + [anon_sym_associatedtype] = ACTIONS(5108), + [anon_sym_AT] = ACTIONS(5110), + [sym_property_behavior_modifier] = ACTIONS(5108), + [anon_sym_override] = ACTIONS(5108), + [anon_sym_convenience] = ACTIONS(5108), + [anon_sym_required] = ACTIONS(5108), + [anon_sym_public] = ACTIONS(5108), + [anon_sym_private] = ACTIONS(5108), + [anon_sym_internal] = ACTIONS(5108), + [anon_sym_fileprivate] = ACTIONS(5108), + [anon_sym_open] = ACTIONS(5108), + [anon_sym_mutating] = ACTIONS(5108), + [anon_sym_nonmutating] = ACTIONS(5108), + [anon_sym_static] = ACTIONS(5108), + [anon_sym_dynamic] = ACTIONS(5108), + [anon_sym_optional] = ACTIONS(5108), + [anon_sym_final] = ACTIONS(5108), + [anon_sym_inout] = ACTIONS(5108), + [anon_sym_ATescaping] = ACTIONS(5108), + [anon_sym_ATautoclosure] = ACTIONS(5108), + [anon_sym_weak] = ACTIONS(5108), + [anon_sym_unowned] = ACTIONS(5110), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5108), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5108), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5108), + [sym__three_dot_operator_custom] = ACTIONS(5108), + [sym__open_ended_range_operator_custom] = ACTIONS(5108), + [sym__conjunction_operator_custom] = ACTIONS(5108), + [sym__disjunction_operator_custom] = ACTIONS(5108), + [sym__nil_coalescing_operator_custom] = ACTIONS(5108), + [sym__eq_eq_custom] = ACTIONS(5108), + [sym__plus_then_ws] = ACTIONS(5108), + [sym__minus_then_ws] = ACTIONS(5108), + [sym_bang] = ACTIONS(5108), + [sym__as_custom] = ACTIONS(5108), + [sym__as_quest_custom] = ACTIONS(5108), + [sym__as_bang_custom] = ACTIONS(5108), + }, + [1237] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5112), + [anon_sym_COMMA] = ACTIONS(5112), + [anon_sym_COLON] = ACTIONS(5112), + [anon_sym_LPAREN] = ACTIONS(5112), + [anon_sym_LBRACK] = ACTIONS(5112), + [anon_sym_RBRACK] = ACTIONS(5112), + [anon_sym_DOT] = ACTIONS(5114), + [anon_sym_QMARK] = ACTIONS(5114), + [sym__immediate_quest] = ACTIONS(5114), + [anon_sym_AMP] = ACTIONS(5114), + [anon_sym_async] = ACTIONS(5112), + [aux_sym_custom_operator_token1] = ACTIONS(5114), + [anon_sym_LT] = ACTIONS(5114), + [anon_sym_GT] = ACTIONS(5114), + [anon_sym_LBRACE] = ACTIONS(5112), + [anon_sym_RBRACE] = ACTIONS(5112), + [anon_sym_case] = ACTIONS(5112), + [anon_sym_BANG_EQ] = ACTIONS(5114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5114), + [anon_sym_LT_EQ] = ACTIONS(5114), + [anon_sym_GT_EQ] = ACTIONS(5114), + [anon_sym_is] = ACTIONS(5112), + [anon_sym_PLUS] = ACTIONS(5114), + [anon_sym_DASH] = ACTIONS(5114), + [anon_sym_STAR] = ACTIONS(5114), + [anon_sym_SLASH] = ACTIONS(5114), + [anon_sym_PERCENT] = ACTIONS(5114), + [anon_sym_PLUS_PLUS] = ACTIONS(5114), + [anon_sym_DASH_DASH] = ACTIONS(5114), + [anon_sym_PIPE] = ACTIONS(5114), + [anon_sym_CARET] = ACTIONS(5114), + [anon_sym_LT_LT] = ACTIONS(5114), + [anon_sym_GT_GT] = ACTIONS(5114), + [anon_sym_import] = ACTIONS(5112), + [anon_sym_typealias] = ACTIONS(5112), + [anon_sym_struct] = ACTIONS(5112), + [anon_sym_class] = ACTIONS(5112), + [anon_sym_enum] = ACTIONS(5112), + [anon_sym_protocol] = ACTIONS(5112), + [anon_sym_let] = ACTIONS(5112), + [anon_sym_var] = ACTIONS(5112), + [anon_sym_func] = ACTIONS(5112), + [anon_sym_extension] = ACTIONS(5112), + [anon_sym_indirect] = ACTIONS(5112), + [anon_sym_init] = ACTIONS(5112), + [anon_sym_SEMI] = ACTIONS(5112), + [anon_sym_deinit] = ACTIONS(5112), + [anon_sym_subscript] = ACTIONS(5112), + [anon_sym_prefix] = ACTIONS(5112), + [anon_sym_infix] = ACTIONS(5112), + [anon_sym_postfix] = ACTIONS(5112), + [anon_sym_precedencegroup] = ACTIONS(5112), + [anon_sym_associatedtype] = ACTIONS(5112), + [anon_sym_AT] = ACTIONS(5114), + [sym_property_behavior_modifier] = ACTIONS(5112), + [anon_sym_override] = ACTIONS(5112), + [anon_sym_convenience] = ACTIONS(5112), + [anon_sym_required] = ACTIONS(5112), + [anon_sym_public] = ACTIONS(5112), + [anon_sym_private] = ACTIONS(5112), + [anon_sym_internal] = ACTIONS(5112), + [anon_sym_fileprivate] = ACTIONS(5112), + [anon_sym_open] = ACTIONS(5112), + [anon_sym_mutating] = ACTIONS(5112), + [anon_sym_nonmutating] = ACTIONS(5112), + [anon_sym_static] = ACTIONS(5112), + [anon_sym_dynamic] = ACTIONS(5112), + [anon_sym_optional] = ACTIONS(5112), + [anon_sym_final] = ACTIONS(5112), + [anon_sym_inout] = ACTIONS(5112), + [anon_sym_ATescaping] = ACTIONS(5112), + [anon_sym_ATautoclosure] = ACTIONS(5112), + [anon_sym_weak] = ACTIONS(5112), + [anon_sym_unowned] = ACTIONS(5114), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5112), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5112), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5112), + [sym__three_dot_operator_custom] = ACTIONS(5112), + [sym__open_ended_range_operator_custom] = ACTIONS(5112), + [sym__conjunction_operator_custom] = ACTIONS(5112), + [sym__disjunction_operator_custom] = ACTIONS(5112), + [sym__nil_coalescing_operator_custom] = ACTIONS(5112), + [sym__eq_eq_custom] = ACTIONS(5112), + [sym__plus_then_ws] = ACTIONS(5112), + [sym__minus_then_ws] = ACTIONS(5112), + [sym_bang] = ACTIONS(5112), + [sym__as_custom] = ACTIONS(5112), + [sym__as_quest_custom] = ACTIONS(5112), + [sym__as_bang_custom] = ACTIONS(5112), + }, + [1238] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5116), + [anon_sym_COMMA] = ACTIONS(5116), + [anon_sym_COLON] = ACTIONS(5116), + [anon_sym_LPAREN] = ACTIONS(5116), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_RBRACK] = ACTIONS(5116), + [anon_sym_DOT] = ACTIONS(5118), + [anon_sym_QMARK] = ACTIONS(5118), + [sym__immediate_quest] = ACTIONS(5118), + [anon_sym_AMP] = ACTIONS(5118), + [anon_sym_async] = ACTIONS(5116), + [aux_sym_custom_operator_token1] = ACTIONS(5118), + [anon_sym_LT] = ACTIONS(5118), + [anon_sym_GT] = ACTIONS(5118), + [anon_sym_LBRACE] = ACTIONS(5116), + [anon_sym_RBRACE] = ACTIONS(5116), + [anon_sym_case] = ACTIONS(5116), + [anon_sym_BANG_EQ] = ACTIONS(5118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5118), + [anon_sym_LT_EQ] = ACTIONS(5118), + [anon_sym_GT_EQ] = ACTIONS(5118), + [anon_sym_is] = ACTIONS(5116), + [anon_sym_PLUS] = ACTIONS(5118), + [anon_sym_DASH] = ACTIONS(5118), + [anon_sym_STAR] = ACTIONS(5118), + [anon_sym_SLASH] = ACTIONS(5118), + [anon_sym_PERCENT] = ACTIONS(5118), + [anon_sym_PLUS_PLUS] = ACTIONS(5118), + [anon_sym_DASH_DASH] = ACTIONS(5118), + [anon_sym_PIPE] = ACTIONS(5118), + [anon_sym_CARET] = ACTIONS(5118), + [anon_sym_LT_LT] = ACTIONS(5118), + [anon_sym_GT_GT] = ACTIONS(5118), + [anon_sym_import] = ACTIONS(5116), + [anon_sym_typealias] = ACTIONS(5116), + [anon_sym_struct] = ACTIONS(5116), + [anon_sym_class] = ACTIONS(5116), + [anon_sym_enum] = ACTIONS(5116), + [anon_sym_protocol] = ACTIONS(5116), + [anon_sym_let] = ACTIONS(5116), + [anon_sym_var] = ACTIONS(5116), + [anon_sym_func] = ACTIONS(5116), + [anon_sym_extension] = ACTIONS(5116), + [anon_sym_indirect] = ACTIONS(5116), + [anon_sym_init] = ACTIONS(5116), + [anon_sym_SEMI] = ACTIONS(5116), + [anon_sym_deinit] = ACTIONS(5116), + [anon_sym_subscript] = ACTIONS(5116), + [anon_sym_prefix] = ACTIONS(5116), + [anon_sym_infix] = ACTIONS(5116), + [anon_sym_postfix] = ACTIONS(5116), + [anon_sym_precedencegroup] = ACTIONS(5116), + [anon_sym_associatedtype] = ACTIONS(5116), + [anon_sym_AT] = ACTIONS(5118), + [sym_property_behavior_modifier] = ACTIONS(5116), + [anon_sym_override] = ACTIONS(5116), + [anon_sym_convenience] = ACTIONS(5116), + [anon_sym_required] = ACTIONS(5116), + [anon_sym_public] = ACTIONS(5116), + [anon_sym_private] = ACTIONS(5116), + [anon_sym_internal] = ACTIONS(5116), + [anon_sym_fileprivate] = ACTIONS(5116), + [anon_sym_open] = ACTIONS(5116), + [anon_sym_mutating] = ACTIONS(5116), + [anon_sym_nonmutating] = ACTIONS(5116), + [anon_sym_static] = ACTIONS(5116), + [anon_sym_dynamic] = ACTIONS(5116), + [anon_sym_optional] = ACTIONS(5116), + [anon_sym_final] = ACTIONS(5116), + [anon_sym_inout] = ACTIONS(5116), + [anon_sym_ATescaping] = ACTIONS(5116), + [anon_sym_ATautoclosure] = ACTIONS(5116), + [anon_sym_weak] = ACTIONS(5116), + [anon_sym_unowned] = ACTIONS(5118), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5116), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5116), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5116), + [sym__three_dot_operator_custom] = ACTIONS(5116), + [sym__open_ended_range_operator_custom] = ACTIONS(5116), + [sym__conjunction_operator_custom] = ACTIONS(5116), + [sym__disjunction_operator_custom] = ACTIONS(5116), + [sym__nil_coalescing_operator_custom] = ACTIONS(5116), + [sym__eq_eq_custom] = ACTIONS(5116), + [sym__plus_then_ws] = ACTIONS(5116), + [sym__minus_then_ws] = ACTIONS(5116), + [sym_bang] = ACTIONS(5116), + [sym__as_custom] = ACTIONS(5116), + [sym__as_quest_custom] = ACTIONS(5116), + [sym__as_bang_custom] = ACTIONS(5116), + }, + [1239] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5120), + [anon_sym_COMMA] = ACTIONS(5120), + [anon_sym_COLON] = ACTIONS(5120), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_RBRACK] = ACTIONS(5120), + [anon_sym_DOT] = ACTIONS(5122), + [anon_sym_QMARK] = ACTIONS(5122), + [sym__immediate_quest] = ACTIONS(5122), + [anon_sym_AMP] = ACTIONS(5122), + [anon_sym_async] = ACTIONS(5120), + [aux_sym_custom_operator_token1] = ACTIONS(5122), + [anon_sym_LT] = ACTIONS(5122), + [anon_sym_GT] = ACTIONS(5122), + [anon_sym_LBRACE] = ACTIONS(5120), + [anon_sym_RBRACE] = ACTIONS(5120), + [anon_sym_case] = ACTIONS(5120), + [anon_sym_BANG_EQ] = ACTIONS(5122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5122), + [anon_sym_LT_EQ] = ACTIONS(5122), + [anon_sym_GT_EQ] = ACTIONS(5122), + [anon_sym_is] = ACTIONS(5120), + [anon_sym_PLUS] = ACTIONS(5122), + [anon_sym_DASH] = ACTIONS(5122), + [anon_sym_STAR] = ACTIONS(5122), + [anon_sym_SLASH] = ACTIONS(5122), + [anon_sym_PERCENT] = ACTIONS(5122), + [anon_sym_PLUS_PLUS] = ACTIONS(5122), + [anon_sym_DASH_DASH] = ACTIONS(5122), + [anon_sym_PIPE] = ACTIONS(5122), + [anon_sym_CARET] = ACTIONS(5122), + [anon_sym_LT_LT] = ACTIONS(5122), + [anon_sym_GT_GT] = ACTIONS(5122), + [anon_sym_import] = ACTIONS(5120), + [anon_sym_typealias] = ACTIONS(5120), + [anon_sym_struct] = ACTIONS(5120), + [anon_sym_class] = ACTIONS(5120), + [anon_sym_enum] = ACTIONS(5120), + [anon_sym_protocol] = ACTIONS(5120), + [anon_sym_let] = ACTIONS(5120), + [anon_sym_var] = ACTIONS(5120), + [anon_sym_func] = ACTIONS(5120), + [anon_sym_extension] = ACTIONS(5120), + [anon_sym_indirect] = ACTIONS(5120), + [anon_sym_init] = ACTIONS(5120), + [anon_sym_SEMI] = ACTIONS(5120), + [anon_sym_deinit] = ACTIONS(5120), + [anon_sym_subscript] = ACTIONS(5120), + [anon_sym_prefix] = ACTIONS(5120), + [anon_sym_infix] = ACTIONS(5120), + [anon_sym_postfix] = ACTIONS(5120), + [anon_sym_precedencegroup] = ACTIONS(5120), + [anon_sym_associatedtype] = ACTIONS(5120), + [anon_sym_AT] = ACTIONS(5122), + [sym_property_behavior_modifier] = ACTIONS(5120), + [anon_sym_override] = ACTIONS(5120), + [anon_sym_convenience] = ACTIONS(5120), + [anon_sym_required] = ACTIONS(5120), + [anon_sym_public] = ACTIONS(5120), + [anon_sym_private] = ACTIONS(5120), + [anon_sym_internal] = ACTIONS(5120), + [anon_sym_fileprivate] = ACTIONS(5120), + [anon_sym_open] = ACTIONS(5120), + [anon_sym_mutating] = ACTIONS(5120), + [anon_sym_nonmutating] = ACTIONS(5120), + [anon_sym_static] = ACTIONS(5120), + [anon_sym_dynamic] = ACTIONS(5120), + [anon_sym_optional] = ACTIONS(5120), + [anon_sym_final] = ACTIONS(5120), + [anon_sym_inout] = ACTIONS(5120), + [anon_sym_ATescaping] = ACTIONS(5120), + [anon_sym_ATautoclosure] = ACTIONS(5120), + [anon_sym_weak] = ACTIONS(5120), + [anon_sym_unowned] = ACTIONS(5122), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5120), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5120), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5120), + [sym__three_dot_operator_custom] = ACTIONS(5120), + [sym__open_ended_range_operator_custom] = ACTIONS(5120), + [sym__conjunction_operator_custom] = ACTIONS(5120), + [sym__disjunction_operator_custom] = ACTIONS(5120), + [sym__nil_coalescing_operator_custom] = ACTIONS(5120), + [sym__eq_eq_custom] = ACTIONS(5120), + [sym__plus_then_ws] = ACTIONS(5120), + [sym__minus_then_ws] = ACTIONS(5120), + [sym_bang] = ACTIONS(5120), + [sym__as_custom] = ACTIONS(5120), + [sym__as_quest_custom] = ACTIONS(5120), + [sym__as_bang_custom] = ACTIONS(5120), + }, + [1240] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5124), + [anon_sym_COMMA] = ACTIONS(5124), + [anon_sym_COLON] = ACTIONS(5124), + [anon_sym_LPAREN] = ACTIONS(5124), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_RBRACK] = ACTIONS(5124), + [anon_sym_DOT] = ACTIONS(5126), + [anon_sym_QMARK] = ACTIONS(5126), + [sym__immediate_quest] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5126), + [anon_sym_async] = ACTIONS(5124), + [aux_sym_custom_operator_token1] = ACTIONS(5126), + [anon_sym_LT] = ACTIONS(5126), + [anon_sym_GT] = ACTIONS(5126), + [anon_sym_LBRACE] = ACTIONS(5124), + [anon_sym_RBRACE] = ACTIONS(5124), + [anon_sym_case] = ACTIONS(5124), + [anon_sym_BANG_EQ] = ACTIONS(5126), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5126), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5126), + [anon_sym_LT_EQ] = ACTIONS(5126), + [anon_sym_GT_EQ] = ACTIONS(5126), + [anon_sym_is] = ACTIONS(5124), + [anon_sym_PLUS] = ACTIONS(5126), + [anon_sym_DASH] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_SLASH] = ACTIONS(5126), + [anon_sym_PERCENT] = ACTIONS(5126), + [anon_sym_PLUS_PLUS] = ACTIONS(5126), + [anon_sym_DASH_DASH] = ACTIONS(5126), + [anon_sym_PIPE] = ACTIONS(5126), + [anon_sym_CARET] = ACTIONS(5126), + [anon_sym_LT_LT] = ACTIONS(5126), + [anon_sym_GT_GT] = ACTIONS(5126), + [anon_sym_import] = ACTIONS(5124), + [anon_sym_typealias] = ACTIONS(5124), + [anon_sym_struct] = ACTIONS(5124), + [anon_sym_class] = ACTIONS(5124), + [anon_sym_enum] = ACTIONS(5124), + [anon_sym_protocol] = ACTIONS(5124), + [anon_sym_let] = ACTIONS(5124), + [anon_sym_var] = ACTIONS(5124), + [anon_sym_func] = ACTIONS(5124), + [anon_sym_extension] = ACTIONS(5124), + [anon_sym_indirect] = ACTIONS(5124), + [anon_sym_init] = ACTIONS(5124), + [anon_sym_SEMI] = ACTIONS(5124), + [anon_sym_deinit] = ACTIONS(5124), + [anon_sym_subscript] = ACTIONS(5124), + [anon_sym_prefix] = ACTIONS(5124), + [anon_sym_infix] = ACTIONS(5124), + [anon_sym_postfix] = ACTIONS(5124), + [anon_sym_precedencegroup] = ACTIONS(5124), + [anon_sym_associatedtype] = ACTIONS(5124), + [anon_sym_AT] = ACTIONS(5126), + [sym_property_behavior_modifier] = ACTIONS(5124), + [anon_sym_override] = ACTIONS(5124), + [anon_sym_convenience] = ACTIONS(5124), + [anon_sym_required] = ACTIONS(5124), + [anon_sym_public] = ACTIONS(5124), + [anon_sym_private] = ACTIONS(5124), + [anon_sym_internal] = ACTIONS(5124), + [anon_sym_fileprivate] = ACTIONS(5124), + [anon_sym_open] = ACTIONS(5124), + [anon_sym_mutating] = ACTIONS(5124), + [anon_sym_nonmutating] = ACTIONS(5124), + [anon_sym_static] = ACTIONS(5124), + [anon_sym_dynamic] = ACTIONS(5124), + [anon_sym_optional] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(5124), + [anon_sym_inout] = ACTIONS(5124), + [anon_sym_ATescaping] = ACTIONS(5124), + [anon_sym_ATautoclosure] = ACTIONS(5124), + [anon_sym_weak] = ACTIONS(5124), + [anon_sym_unowned] = ACTIONS(5126), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5124), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5124), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5124), + [sym__three_dot_operator_custom] = ACTIONS(5124), + [sym__open_ended_range_operator_custom] = ACTIONS(5124), + [sym__conjunction_operator_custom] = ACTIONS(5124), + [sym__disjunction_operator_custom] = ACTIONS(5124), + [sym__nil_coalescing_operator_custom] = ACTIONS(5124), + [sym__eq_eq_custom] = ACTIONS(5124), + [sym__plus_then_ws] = ACTIONS(5124), + [sym__minus_then_ws] = ACTIONS(5124), + [sym_bang] = ACTIONS(5124), + [sym__as_custom] = ACTIONS(5124), + [sym__as_quest_custom] = ACTIONS(5124), + [sym__as_bang_custom] = ACTIONS(5124), + }, + [1241] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5128), + [anon_sym_COMMA] = ACTIONS(5128), + [anon_sym_COLON] = ACTIONS(5128), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_LBRACK] = ACTIONS(5128), + [anon_sym_RBRACK] = ACTIONS(5128), + [anon_sym_DOT] = ACTIONS(5130), + [anon_sym_QMARK] = ACTIONS(5130), + [sym__immediate_quest] = ACTIONS(5130), + [anon_sym_AMP] = ACTIONS(5130), + [anon_sym_async] = ACTIONS(5128), + [aux_sym_custom_operator_token1] = ACTIONS(5130), + [anon_sym_LT] = ACTIONS(5130), + [anon_sym_GT] = ACTIONS(5130), + [anon_sym_LBRACE] = ACTIONS(5128), + [anon_sym_RBRACE] = ACTIONS(5128), + [anon_sym_case] = ACTIONS(5128), + [anon_sym_BANG_EQ] = ACTIONS(5130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5130), + [anon_sym_LT_EQ] = ACTIONS(5130), + [anon_sym_GT_EQ] = ACTIONS(5130), + [anon_sym_is] = ACTIONS(5128), + [anon_sym_PLUS] = ACTIONS(5130), + [anon_sym_DASH] = ACTIONS(5130), + [anon_sym_STAR] = ACTIONS(5130), + [anon_sym_SLASH] = ACTIONS(5130), + [anon_sym_PERCENT] = ACTIONS(5130), + [anon_sym_PLUS_PLUS] = ACTIONS(5130), + [anon_sym_DASH_DASH] = ACTIONS(5130), + [anon_sym_PIPE] = ACTIONS(5130), + [anon_sym_CARET] = ACTIONS(5130), + [anon_sym_LT_LT] = ACTIONS(5130), + [anon_sym_GT_GT] = ACTIONS(5130), + [anon_sym_import] = ACTIONS(5128), + [anon_sym_typealias] = ACTIONS(5128), + [anon_sym_struct] = ACTIONS(5128), + [anon_sym_class] = ACTIONS(5128), + [anon_sym_enum] = ACTIONS(5128), + [anon_sym_protocol] = ACTIONS(5128), + [anon_sym_let] = ACTIONS(5128), + [anon_sym_var] = ACTIONS(5128), + [anon_sym_func] = ACTIONS(5128), + [anon_sym_extension] = ACTIONS(5128), + [anon_sym_indirect] = ACTIONS(5128), + [anon_sym_init] = ACTIONS(5128), + [anon_sym_SEMI] = ACTIONS(5128), + [anon_sym_deinit] = ACTIONS(5128), + [anon_sym_subscript] = ACTIONS(5128), + [anon_sym_prefix] = ACTIONS(5128), + [anon_sym_infix] = ACTIONS(5128), + [anon_sym_postfix] = ACTIONS(5128), + [anon_sym_precedencegroup] = ACTIONS(5128), + [anon_sym_associatedtype] = ACTIONS(5128), + [anon_sym_AT] = ACTIONS(5130), + [sym_property_behavior_modifier] = ACTIONS(5128), + [anon_sym_override] = ACTIONS(5128), + [anon_sym_convenience] = ACTIONS(5128), + [anon_sym_required] = ACTIONS(5128), + [anon_sym_public] = ACTIONS(5128), + [anon_sym_private] = ACTIONS(5128), + [anon_sym_internal] = ACTIONS(5128), + [anon_sym_fileprivate] = ACTIONS(5128), + [anon_sym_open] = ACTIONS(5128), + [anon_sym_mutating] = ACTIONS(5128), + [anon_sym_nonmutating] = ACTIONS(5128), + [anon_sym_static] = ACTIONS(5128), + [anon_sym_dynamic] = ACTIONS(5128), + [anon_sym_optional] = ACTIONS(5128), + [anon_sym_final] = ACTIONS(5128), + [anon_sym_inout] = ACTIONS(5128), + [anon_sym_ATescaping] = ACTIONS(5128), + [anon_sym_ATautoclosure] = ACTIONS(5128), + [anon_sym_weak] = ACTIONS(5128), + [anon_sym_unowned] = ACTIONS(5130), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5128), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5128), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5128), + [sym__three_dot_operator_custom] = ACTIONS(5128), + [sym__open_ended_range_operator_custom] = ACTIONS(5128), + [sym__conjunction_operator_custom] = ACTIONS(5128), + [sym__disjunction_operator_custom] = ACTIONS(5128), + [sym__nil_coalescing_operator_custom] = ACTIONS(5128), + [sym__eq_eq_custom] = ACTIONS(5128), + [sym__plus_then_ws] = ACTIONS(5128), + [sym__minus_then_ws] = ACTIONS(5128), + [sym_bang] = ACTIONS(5128), + [sym__as_custom] = ACTIONS(5128), + [sym__as_quest_custom] = ACTIONS(5128), + [sym__as_bang_custom] = ACTIONS(5128), + }, + [1242] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5132), + [anon_sym_COMMA] = ACTIONS(5132), + [anon_sym_COLON] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(5132), + [anon_sym_LBRACK] = ACTIONS(5132), + [anon_sym_RBRACK] = ACTIONS(5132), + [anon_sym_DOT] = ACTIONS(5134), + [anon_sym_QMARK] = ACTIONS(5134), + [sym__immediate_quest] = ACTIONS(5134), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_async] = ACTIONS(5132), + [aux_sym_custom_operator_token1] = ACTIONS(5134), + [anon_sym_LT] = ACTIONS(5134), + [anon_sym_GT] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(5132), + [anon_sym_RBRACE] = ACTIONS(5132), + [anon_sym_case] = ACTIONS(5132), + [anon_sym_BANG_EQ] = ACTIONS(5134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5134), + [anon_sym_LT_EQ] = ACTIONS(5134), + [anon_sym_GT_EQ] = ACTIONS(5134), + [anon_sym_is] = ACTIONS(5132), + [anon_sym_PLUS] = ACTIONS(5134), + [anon_sym_DASH] = ACTIONS(5134), + [anon_sym_STAR] = ACTIONS(5134), + [anon_sym_SLASH] = ACTIONS(5134), + [anon_sym_PERCENT] = ACTIONS(5134), + [anon_sym_PLUS_PLUS] = ACTIONS(5134), + [anon_sym_DASH_DASH] = ACTIONS(5134), + [anon_sym_PIPE] = ACTIONS(5134), + [anon_sym_CARET] = ACTIONS(5134), + [anon_sym_LT_LT] = ACTIONS(5134), + [anon_sym_GT_GT] = ACTIONS(5134), + [anon_sym_import] = ACTIONS(5132), + [anon_sym_typealias] = ACTIONS(5132), + [anon_sym_struct] = ACTIONS(5132), + [anon_sym_class] = ACTIONS(5132), + [anon_sym_enum] = ACTIONS(5132), + [anon_sym_protocol] = ACTIONS(5132), + [anon_sym_let] = ACTIONS(5132), + [anon_sym_var] = ACTIONS(5132), + [anon_sym_func] = ACTIONS(5132), + [anon_sym_extension] = ACTIONS(5132), + [anon_sym_indirect] = ACTIONS(5132), + [anon_sym_init] = ACTIONS(5132), + [anon_sym_SEMI] = ACTIONS(5132), + [anon_sym_deinit] = ACTIONS(5132), + [anon_sym_subscript] = ACTIONS(5132), + [anon_sym_prefix] = ACTIONS(5132), + [anon_sym_infix] = ACTIONS(5132), + [anon_sym_postfix] = ACTIONS(5132), + [anon_sym_precedencegroup] = ACTIONS(5132), + [anon_sym_associatedtype] = ACTIONS(5132), + [anon_sym_AT] = ACTIONS(5134), + [sym_property_behavior_modifier] = ACTIONS(5132), + [anon_sym_override] = ACTIONS(5132), + [anon_sym_convenience] = ACTIONS(5132), + [anon_sym_required] = ACTIONS(5132), + [anon_sym_public] = ACTIONS(5132), + [anon_sym_private] = ACTIONS(5132), + [anon_sym_internal] = ACTIONS(5132), + [anon_sym_fileprivate] = ACTIONS(5132), + [anon_sym_open] = ACTIONS(5132), + [anon_sym_mutating] = ACTIONS(5132), + [anon_sym_nonmutating] = ACTIONS(5132), + [anon_sym_static] = ACTIONS(5132), + [anon_sym_dynamic] = ACTIONS(5132), + [anon_sym_optional] = ACTIONS(5132), + [anon_sym_final] = ACTIONS(5132), + [anon_sym_inout] = ACTIONS(5132), + [anon_sym_ATescaping] = ACTIONS(5132), + [anon_sym_ATautoclosure] = ACTIONS(5132), + [anon_sym_weak] = ACTIONS(5132), + [anon_sym_unowned] = ACTIONS(5134), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5132), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5132), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5132), + [sym__three_dot_operator_custom] = ACTIONS(5132), + [sym__open_ended_range_operator_custom] = ACTIONS(5132), + [sym__conjunction_operator_custom] = ACTIONS(5132), + [sym__disjunction_operator_custom] = ACTIONS(5132), + [sym__nil_coalescing_operator_custom] = ACTIONS(5132), + [sym__eq_eq_custom] = ACTIONS(5132), + [sym__plus_then_ws] = ACTIONS(5132), + [sym__minus_then_ws] = ACTIONS(5132), + [sym_bang] = ACTIONS(5132), + [sym__as_custom] = ACTIONS(5132), + [sym__as_quest_custom] = ACTIONS(5132), + [sym__as_bang_custom] = ACTIONS(5132), + }, + [1243] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5136), + [anon_sym_COMMA] = ACTIONS(5136), + [anon_sym_COLON] = ACTIONS(5136), + [anon_sym_LPAREN] = ACTIONS(5136), + [anon_sym_LBRACK] = ACTIONS(5136), + [anon_sym_RBRACK] = ACTIONS(5136), + [anon_sym_DOT] = ACTIONS(5138), + [anon_sym_QMARK] = ACTIONS(5138), + [sym__immediate_quest] = ACTIONS(5138), + [anon_sym_AMP] = ACTIONS(5138), + [anon_sym_async] = ACTIONS(5136), + [aux_sym_custom_operator_token1] = ACTIONS(5138), + [anon_sym_LT] = ACTIONS(5138), + [anon_sym_GT] = ACTIONS(5138), + [anon_sym_LBRACE] = ACTIONS(5136), + [anon_sym_RBRACE] = ACTIONS(5136), + [anon_sym_case] = ACTIONS(5136), + [anon_sym_BANG_EQ] = ACTIONS(5138), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5138), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5138), + [anon_sym_LT_EQ] = ACTIONS(5138), + [anon_sym_GT_EQ] = ACTIONS(5138), + [anon_sym_is] = ACTIONS(5136), + [anon_sym_PLUS] = ACTIONS(5138), + [anon_sym_DASH] = ACTIONS(5138), + [anon_sym_STAR] = ACTIONS(5138), + [anon_sym_SLASH] = ACTIONS(5138), + [anon_sym_PERCENT] = ACTIONS(5138), + [anon_sym_PLUS_PLUS] = ACTIONS(5138), + [anon_sym_DASH_DASH] = ACTIONS(5138), + [anon_sym_PIPE] = ACTIONS(5138), + [anon_sym_CARET] = ACTIONS(5138), + [anon_sym_LT_LT] = ACTIONS(5138), + [anon_sym_GT_GT] = ACTIONS(5138), + [anon_sym_import] = ACTIONS(5136), + [anon_sym_typealias] = ACTIONS(5136), + [anon_sym_struct] = ACTIONS(5136), + [anon_sym_class] = ACTIONS(5136), + [anon_sym_enum] = ACTIONS(5136), + [anon_sym_protocol] = ACTIONS(5136), + [anon_sym_let] = ACTIONS(5136), + [anon_sym_var] = ACTIONS(5136), + [anon_sym_func] = ACTIONS(5136), + [anon_sym_extension] = ACTIONS(5136), + [anon_sym_indirect] = ACTIONS(5136), + [anon_sym_init] = ACTIONS(5136), + [anon_sym_SEMI] = ACTIONS(5136), + [anon_sym_deinit] = ACTIONS(5136), + [anon_sym_subscript] = ACTIONS(5136), + [anon_sym_prefix] = ACTIONS(5136), + [anon_sym_infix] = ACTIONS(5136), + [anon_sym_postfix] = ACTIONS(5136), + [anon_sym_precedencegroup] = ACTIONS(5136), + [anon_sym_associatedtype] = ACTIONS(5136), + [anon_sym_AT] = ACTIONS(5138), + [sym_property_behavior_modifier] = ACTIONS(5136), + [anon_sym_override] = ACTIONS(5136), + [anon_sym_convenience] = ACTIONS(5136), + [anon_sym_required] = ACTIONS(5136), + [anon_sym_public] = ACTIONS(5136), + [anon_sym_private] = ACTIONS(5136), + [anon_sym_internal] = ACTIONS(5136), + [anon_sym_fileprivate] = ACTIONS(5136), + [anon_sym_open] = ACTIONS(5136), + [anon_sym_mutating] = ACTIONS(5136), + [anon_sym_nonmutating] = ACTIONS(5136), + [anon_sym_static] = ACTIONS(5136), + [anon_sym_dynamic] = ACTIONS(5136), + [anon_sym_optional] = ACTIONS(5136), + [anon_sym_final] = ACTIONS(5136), + [anon_sym_inout] = ACTIONS(5136), + [anon_sym_ATescaping] = ACTIONS(5136), + [anon_sym_ATautoclosure] = ACTIONS(5136), + [anon_sym_weak] = ACTIONS(5136), + [anon_sym_unowned] = ACTIONS(5138), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5136), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5136), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5136), + [sym__three_dot_operator_custom] = ACTIONS(5136), + [sym__open_ended_range_operator_custom] = ACTIONS(5136), + [sym__conjunction_operator_custom] = ACTIONS(5136), + [sym__disjunction_operator_custom] = ACTIONS(5136), + [sym__nil_coalescing_operator_custom] = ACTIONS(5136), + [sym__eq_eq_custom] = ACTIONS(5136), + [sym__plus_then_ws] = ACTIONS(5136), + [sym__minus_then_ws] = ACTIONS(5136), + [sym_bang] = ACTIONS(5136), + [sym__as_custom] = ACTIONS(5136), + [sym__as_quest_custom] = ACTIONS(5136), + [sym__as_bang_custom] = ACTIONS(5136), + }, + [1244] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5140), + [anon_sym_COMMA] = ACTIONS(5140), + [anon_sym_COLON] = ACTIONS(5140), + [anon_sym_LPAREN] = ACTIONS(5140), + [anon_sym_LBRACK] = ACTIONS(5140), + [anon_sym_RBRACK] = ACTIONS(5140), + [anon_sym_DOT] = ACTIONS(5142), + [anon_sym_QMARK] = ACTIONS(5142), + [sym__immediate_quest] = ACTIONS(5142), + [anon_sym_AMP] = ACTIONS(5142), + [anon_sym_async] = ACTIONS(5140), + [aux_sym_custom_operator_token1] = ACTIONS(5142), + [anon_sym_LT] = ACTIONS(5142), + [anon_sym_GT] = ACTIONS(5142), + [anon_sym_LBRACE] = ACTIONS(5140), + [anon_sym_RBRACE] = ACTIONS(5140), + [anon_sym_case] = ACTIONS(5140), + [anon_sym_BANG_EQ] = ACTIONS(5142), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5142), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5142), + [anon_sym_LT_EQ] = ACTIONS(5142), + [anon_sym_GT_EQ] = ACTIONS(5142), + [anon_sym_is] = ACTIONS(5140), + [anon_sym_PLUS] = ACTIONS(5142), + [anon_sym_DASH] = ACTIONS(5142), + [anon_sym_STAR] = ACTIONS(5142), + [anon_sym_SLASH] = ACTIONS(5142), + [anon_sym_PERCENT] = ACTIONS(5142), + [anon_sym_PLUS_PLUS] = ACTIONS(5142), + [anon_sym_DASH_DASH] = ACTIONS(5142), + [anon_sym_PIPE] = ACTIONS(5142), + [anon_sym_CARET] = ACTIONS(5142), + [anon_sym_LT_LT] = ACTIONS(5142), + [anon_sym_GT_GT] = ACTIONS(5142), + [anon_sym_import] = ACTIONS(5140), + [anon_sym_typealias] = ACTIONS(5140), + [anon_sym_struct] = ACTIONS(5140), + [anon_sym_class] = ACTIONS(5140), + [anon_sym_enum] = ACTIONS(5140), + [anon_sym_protocol] = ACTIONS(5140), + [anon_sym_let] = ACTIONS(5140), + [anon_sym_var] = ACTIONS(5140), + [anon_sym_func] = ACTIONS(5140), + [anon_sym_extension] = ACTIONS(5140), + [anon_sym_indirect] = ACTIONS(5140), + [anon_sym_init] = ACTIONS(5140), + [anon_sym_SEMI] = ACTIONS(5140), + [anon_sym_deinit] = ACTIONS(5140), + [anon_sym_subscript] = ACTIONS(5140), + [anon_sym_prefix] = ACTIONS(5140), + [anon_sym_infix] = ACTIONS(5140), + [anon_sym_postfix] = ACTIONS(5140), + [anon_sym_precedencegroup] = ACTIONS(5140), + [anon_sym_associatedtype] = ACTIONS(5140), + [anon_sym_AT] = ACTIONS(5142), + [sym_property_behavior_modifier] = ACTIONS(5140), + [anon_sym_override] = ACTIONS(5140), + [anon_sym_convenience] = ACTIONS(5140), + [anon_sym_required] = ACTIONS(5140), + [anon_sym_public] = ACTIONS(5140), + [anon_sym_private] = ACTIONS(5140), + [anon_sym_internal] = ACTIONS(5140), + [anon_sym_fileprivate] = ACTIONS(5140), + [anon_sym_open] = ACTIONS(5140), + [anon_sym_mutating] = ACTIONS(5140), + [anon_sym_nonmutating] = ACTIONS(5140), + [anon_sym_static] = ACTIONS(5140), + [anon_sym_dynamic] = ACTIONS(5140), + [anon_sym_optional] = ACTIONS(5140), + [anon_sym_final] = ACTIONS(5140), + [anon_sym_inout] = ACTIONS(5140), + [anon_sym_ATescaping] = ACTIONS(5140), + [anon_sym_ATautoclosure] = ACTIONS(5140), + [anon_sym_weak] = ACTIONS(5140), + [anon_sym_unowned] = ACTIONS(5142), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5140), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5140), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5140), + [sym__three_dot_operator_custom] = ACTIONS(5140), + [sym__open_ended_range_operator_custom] = ACTIONS(5140), + [sym__conjunction_operator_custom] = ACTIONS(5140), + [sym__disjunction_operator_custom] = ACTIONS(5140), + [sym__nil_coalescing_operator_custom] = ACTIONS(5140), + [sym__eq_eq_custom] = ACTIONS(5140), + [sym__plus_then_ws] = ACTIONS(5140), + [sym__minus_then_ws] = ACTIONS(5140), + [sym_bang] = ACTIONS(5140), + [sym__as_custom] = ACTIONS(5140), + [sym__as_quest_custom] = ACTIONS(5140), + [sym__as_bang_custom] = ACTIONS(5140), + }, + [1245] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5027), + [anon_sym_COMMA] = ACTIONS(5027), + [anon_sym_COLON] = ACTIONS(5027), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_RBRACK] = ACTIONS(5027), + [anon_sym_DOT] = ACTIONS(5029), + [anon_sym_QMARK] = ACTIONS(5029), + [sym__immediate_quest] = ACTIONS(5029), + [anon_sym_AMP] = ACTIONS(5029), + [anon_sym_async] = ACTIONS(5027), + [aux_sym_custom_operator_token1] = ACTIONS(5029), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_LBRACE] = ACTIONS(5027), + [anon_sym_RBRACE] = ACTIONS(5027), + [anon_sym_case] = ACTIONS(5027), + [anon_sym_BANG_EQ] = ACTIONS(5029), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5029), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5029), + [anon_sym_LT_EQ] = ACTIONS(5029), + [anon_sym_GT_EQ] = ACTIONS(5029), + [anon_sym_is] = ACTIONS(5027), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_PERCENT] = ACTIONS(5029), + [anon_sym_PLUS_PLUS] = ACTIONS(5029), + [anon_sym_DASH_DASH] = ACTIONS(5029), + [anon_sym_PIPE] = ACTIONS(5029), + [anon_sym_CARET] = ACTIONS(5029), + [anon_sym_LT_LT] = ACTIONS(5029), + [anon_sym_GT_GT] = ACTIONS(5029), + [anon_sym_import] = ACTIONS(5027), + [anon_sym_typealias] = ACTIONS(5027), + [anon_sym_struct] = ACTIONS(5027), + [anon_sym_class] = ACTIONS(5027), + [anon_sym_enum] = ACTIONS(5027), + [anon_sym_protocol] = ACTIONS(5027), + [anon_sym_let] = ACTIONS(5027), + [anon_sym_var] = ACTIONS(5027), + [anon_sym_func] = ACTIONS(5027), + [anon_sym_extension] = ACTIONS(5027), + [anon_sym_indirect] = ACTIONS(5027), + [anon_sym_init] = ACTIONS(5027), + [anon_sym_SEMI] = ACTIONS(5027), + [anon_sym_deinit] = ACTIONS(5027), + [anon_sym_subscript] = ACTIONS(5027), + [anon_sym_prefix] = ACTIONS(5027), + [anon_sym_infix] = ACTIONS(5027), + [anon_sym_postfix] = ACTIONS(5027), + [anon_sym_precedencegroup] = ACTIONS(5027), + [anon_sym_associatedtype] = ACTIONS(5027), + [anon_sym_AT] = ACTIONS(5029), + [sym_property_behavior_modifier] = ACTIONS(5027), + [anon_sym_override] = ACTIONS(5027), + [anon_sym_convenience] = ACTIONS(5027), + [anon_sym_required] = ACTIONS(5027), + [anon_sym_public] = ACTIONS(5027), + [anon_sym_private] = ACTIONS(5027), + [anon_sym_internal] = ACTIONS(5027), + [anon_sym_fileprivate] = ACTIONS(5027), + [anon_sym_open] = ACTIONS(5027), + [anon_sym_mutating] = ACTIONS(5027), + [anon_sym_nonmutating] = ACTIONS(5027), + [anon_sym_static] = ACTIONS(5027), + [anon_sym_dynamic] = ACTIONS(5027), + [anon_sym_optional] = ACTIONS(5027), + [anon_sym_final] = ACTIONS(5027), + [anon_sym_inout] = ACTIONS(5027), + [anon_sym_ATescaping] = ACTIONS(5027), + [anon_sym_ATautoclosure] = ACTIONS(5027), + [anon_sym_weak] = ACTIONS(5027), + [anon_sym_unowned] = ACTIONS(5029), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5027), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5027), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5027), + [sym__three_dot_operator_custom] = ACTIONS(5027), + [sym__open_ended_range_operator_custom] = ACTIONS(5027), + [sym__conjunction_operator_custom] = ACTIONS(5027), + [sym__disjunction_operator_custom] = ACTIONS(5027), + [sym__nil_coalescing_operator_custom] = ACTIONS(5027), + [sym__eq_eq_custom] = ACTIONS(5027), + [sym__plus_then_ws] = ACTIONS(5027), + [sym__minus_then_ws] = ACTIONS(5027), + [sym_bang] = ACTIONS(5027), + [sym__as_custom] = ACTIONS(5027), + [sym__as_quest_custom] = ACTIONS(5027), + [sym__as_bang_custom] = ACTIONS(5027), + }, + [1246] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5077), + [anon_sym_COMMA] = ACTIONS(5077), + [anon_sym_COLON] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5077), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_RBRACK] = ACTIONS(5077), + [anon_sym_DOT] = ACTIONS(5082), + [anon_sym_QMARK] = ACTIONS(5082), + [sym__immediate_quest] = ACTIONS(5082), + [anon_sym_AMP] = ACTIONS(5082), + [anon_sym_async] = ACTIONS(5077), + [aux_sym_custom_operator_token1] = ACTIONS(5082), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_LBRACE] = ACTIONS(5077), + [anon_sym_RBRACE] = ACTIONS(5077), + [anon_sym_case] = ACTIONS(5077), + [anon_sym_BANG_EQ] = ACTIONS(5082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5082), + [anon_sym_LT_EQ] = ACTIONS(5082), + [anon_sym_GT_EQ] = ACTIONS(5082), + [anon_sym_is] = ACTIONS(5077), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_STAR] = ACTIONS(5082), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_PERCENT] = ACTIONS(5082), + [anon_sym_PLUS_PLUS] = ACTIONS(5082), + [anon_sym_DASH_DASH] = ACTIONS(5082), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_CARET] = ACTIONS(5082), + [anon_sym_LT_LT] = ACTIONS(5082), + [anon_sym_GT_GT] = ACTIONS(5082), + [anon_sym_import] = ACTIONS(5077), + [anon_sym_typealias] = ACTIONS(5077), + [anon_sym_struct] = ACTIONS(5077), + [anon_sym_class] = ACTIONS(5077), + [anon_sym_enum] = ACTIONS(5077), + [anon_sym_protocol] = ACTIONS(5077), + [anon_sym_let] = ACTIONS(5077), + [anon_sym_var] = ACTIONS(5077), + [anon_sym_func] = ACTIONS(5077), + [anon_sym_extension] = ACTIONS(5077), + [anon_sym_indirect] = ACTIONS(5077), + [anon_sym_init] = ACTIONS(5077), + [anon_sym_SEMI] = ACTIONS(5077), + [anon_sym_deinit] = ACTIONS(5077), + [anon_sym_subscript] = ACTIONS(5077), + [anon_sym_prefix] = ACTIONS(5077), + [anon_sym_infix] = ACTIONS(5077), + [anon_sym_postfix] = ACTIONS(5077), + [anon_sym_precedencegroup] = ACTIONS(5077), + [anon_sym_associatedtype] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5082), + [sym_property_behavior_modifier] = ACTIONS(5077), + [anon_sym_override] = ACTIONS(5077), + [anon_sym_convenience] = ACTIONS(5077), + [anon_sym_required] = ACTIONS(5077), + [anon_sym_public] = ACTIONS(5077), + [anon_sym_private] = ACTIONS(5077), + [anon_sym_internal] = ACTIONS(5077), + [anon_sym_fileprivate] = ACTIONS(5077), + [anon_sym_open] = ACTIONS(5077), + [anon_sym_mutating] = ACTIONS(5077), + [anon_sym_nonmutating] = ACTIONS(5077), + [anon_sym_static] = ACTIONS(5077), + [anon_sym_dynamic] = ACTIONS(5077), + [anon_sym_optional] = ACTIONS(5077), + [anon_sym_final] = ACTIONS(5077), + [anon_sym_inout] = ACTIONS(5077), + [anon_sym_ATescaping] = ACTIONS(5077), + [anon_sym_ATautoclosure] = ACTIONS(5077), + [anon_sym_weak] = ACTIONS(5077), + [anon_sym_unowned] = ACTIONS(5082), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5077), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5077), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5077), + [sym__three_dot_operator_custom] = ACTIONS(5077), + [sym__open_ended_range_operator_custom] = ACTIONS(5077), + [sym__conjunction_operator_custom] = ACTIONS(5077), + [sym__disjunction_operator_custom] = ACTIONS(5077), + [sym__nil_coalescing_operator_custom] = ACTIONS(5077), + [sym__eq_eq_custom] = ACTIONS(5077), + [sym__plus_then_ws] = ACTIONS(5077), + [sym__minus_then_ws] = ACTIONS(5077), + [sym_bang] = ACTIONS(5077), + [sym__as_custom] = ACTIONS(5077), + [sym__as_quest_custom] = ACTIONS(5077), + [sym__as_bang_custom] = ACTIONS(5077), + }, + [1247] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5144), + [anon_sym_COMMA] = ACTIONS(5144), + [anon_sym_COLON] = ACTIONS(5144), + [anon_sym_LPAREN] = ACTIONS(5144), + [anon_sym_LBRACK] = ACTIONS(5144), + [anon_sym_RBRACK] = ACTIONS(5144), + [anon_sym_DOT] = ACTIONS(5146), + [anon_sym_QMARK] = ACTIONS(5146), + [sym__immediate_quest] = ACTIONS(5146), + [anon_sym_AMP] = ACTIONS(5146), + [anon_sym_async] = ACTIONS(5144), + [aux_sym_custom_operator_token1] = ACTIONS(5146), + [anon_sym_LT] = ACTIONS(5146), + [anon_sym_GT] = ACTIONS(5146), + [anon_sym_LBRACE] = ACTIONS(5144), + [anon_sym_RBRACE] = ACTIONS(5144), + [anon_sym_case] = ACTIONS(5144), + [anon_sym_BANG_EQ] = ACTIONS(5146), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5146), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5146), + [anon_sym_LT_EQ] = ACTIONS(5146), + [anon_sym_GT_EQ] = ACTIONS(5146), + [anon_sym_is] = ACTIONS(5144), + [anon_sym_PLUS] = ACTIONS(5146), + [anon_sym_DASH] = ACTIONS(5146), + [anon_sym_STAR] = ACTIONS(5146), + [anon_sym_SLASH] = ACTIONS(5146), + [anon_sym_PERCENT] = ACTIONS(5146), + [anon_sym_PLUS_PLUS] = ACTIONS(5146), + [anon_sym_DASH_DASH] = ACTIONS(5146), + [anon_sym_PIPE] = ACTIONS(5146), + [anon_sym_CARET] = ACTIONS(5146), + [anon_sym_LT_LT] = ACTIONS(5146), + [anon_sym_GT_GT] = ACTIONS(5146), + [anon_sym_import] = ACTIONS(5144), + [anon_sym_typealias] = ACTIONS(5144), + [anon_sym_struct] = ACTIONS(5144), + [anon_sym_class] = ACTIONS(5144), + [anon_sym_enum] = ACTIONS(5144), + [anon_sym_protocol] = ACTIONS(5144), + [anon_sym_let] = ACTIONS(5144), + [anon_sym_var] = ACTIONS(5144), + [anon_sym_func] = ACTIONS(5144), + [anon_sym_extension] = ACTIONS(5144), + [anon_sym_indirect] = ACTIONS(5144), + [anon_sym_init] = ACTIONS(5144), + [anon_sym_SEMI] = ACTIONS(5144), + [anon_sym_deinit] = ACTIONS(5144), + [anon_sym_subscript] = ACTIONS(5144), + [anon_sym_prefix] = ACTIONS(5144), + [anon_sym_infix] = ACTIONS(5144), + [anon_sym_postfix] = ACTIONS(5144), + [anon_sym_precedencegroup] = ACTIONS(5144), + [anon_sym_associatedtype] = ACTIONS(5144), + [anon_sym_AT] = ACTIONS(5146), + [sym_property_behavior_modifier] = ACTIONS(5144), + [anon_sym_override] = ACTIONS(5144), + [anon_sym_convenience] = ACTIONS(5144), + [anon_sym_required] = ACTIONS(5144), + [anon_sym_public] = ACTIONS(5144), + [anon_sym_private] = ACTIONS(5144), + [anon_sym_internal] = ACTIONS(5144), + [anon_sym_fileprivate] = ACTIONS(5144), + [anon_sym_open] = ACTIONS(5144), + [anon_sym_mutating] = ACTIONS(5144), + [anon_sym_nonmutating] = ACTIONS(5144), + [anon_sym_static] = ACTIONS(5144), + [anon_sym_dynamic] = ACTIONS(5144), + [anon_sym_optional] = ACTIONS(5144), + [anon_sym_final] = ACTIONS(5144), + [anon_sym_inout] = ACTIONS(5144), + [anon_sym_ATescaping] = ACTIONS(5144), + [anon_sym_ATautoclosure] = ACTIONS(5144), + [anon_sym_weak] = ACTIONS(5144), + [anon_sym_unowned] = ACTIONS(5146), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5144), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5144), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5144), + [sym__three_dot_operator_custom] = ACTIONS(5144), + [sym__open_ended_range_operator_custom] = ACTIONS(5144), + [sym__conjunction_operator_custom] = ACTIONS(5144), + [sym__disjunction_operator_custom] = ACTIONS(5144), + [sym__nil_coalescing_operator_custom] = ACTIONS(5144), + [sym__eq_eq_custom] = ACTIONS(5144), + [sym__plus_then_ws] = ACTIONS(5144), + [sym__minus_then_ws] = ACTIONS(5144), + [sym_bang] = ACTIONS(5144), + [sym__as_custom] = ACTIONS(5144), + [sym__as_quest_custom] = ACTIONS(5144), + [sym__as_bang_custom] = ACTIONS(5144), + }, + [1248] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5148), + [anon_sym_COMMA] = ACTIONS(5148), + [anon_sym_COLON] = ACTIONS(5148), + [anon_sym_LPAREN] = ACTIONS(5148), + [anon_sym_LBRACK] = ACTIONS(5148), + [anon_sym_RBRACK] = ACTIONS(5148), + [anon_sym_QMARK] = ACTIONS(5150), + [sym__immediate_quest] = ACTIONS(5150), + [anon_sym_AMP] = ACTIONS(5150), + [anon_sym_async] = ACTIONS(5148), + [aux_sym_custom_operator_token1] = ACTIONS(5150), + [anon_sym_LT] = ACTIONS(5150), + [anon_sym_GT] = ACTIONS(5150), + [anon_sym_LBRACE] = ACTIONS(5148), + [anon_sym_RBRACE] = ACTIONS(5148), + [anon_sym_case] = ACTIONS(5148), + [anon_sym_BANG_EQ] = ACTIONS(5150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5150), + [anon_sym_LT_EQ] = ACTIONS(5150), + [anon_sym_GT_EQ] = ACTIONS(5150), + [anon_sym_is] = ACTIONS(5148), + [anon_sym_PLUS] = ACTIONS(5150), + [anon_sym_DASH] = ACTIONS(5150), + [anon_sym_STAR] = ACTIONS(5150), + [anon_sym_SLASH] = ACTIONS(5150), + [anon_sym_PERCENT] = ACTIONS(5150), + [anon_sym_PLUS_PLUS] = ACTIONS(5150), + [anon_sym_DASH_DASH] = ACTIONS(5150), + [anon_sym_PIPE] = ACTIONS(5150), + [anon_sym_CARET] = ACTIONS(5150), + [anon_sym_LT_LT] = ACTIONS(5150), + [anon_sym_GT_GT] = ACTIONS(5150), + [anon_sym_import] = ACTIONS(5148), + [anon_sym_typealias] = ACTIONS(5148), + [anon_sym_struct] = ACTIONS(5148), + [anon_sym_class] = ACTIONS(5148), + [anon_sym_enum] = ACTIONS(5148), + [anon_sym_protocol] = ACTIONS(5148), + [anon_sym_let] = ACTIONS(5148), + [anon_sym_var] = ACTIONS(5148), + [anon_sym_func] = ACTIONS(5148), + [anon_sym_extension] = ACTIONS(5148), + [anon_sym_indirect] = ACTIONS(5148), + [anon_sym_init] = ACTIONS(5148), + [anon_sym_SEMI] = ACTIONS(5148), + [anon_sym_deinit] = ACTIONS(5148), + [anon_sym_subscript] = ACTIONS(5148), + [anon_sym_prefix] = ACTIONS(5148), + [anon_sym_infix] = ACTIONS(5148), + [anon_sym_postfix] = ACTIONS(5148), + [anon_sym_precedencegroup] = ACTIONS(5148), + [anon_sym_associatedtype] = ACTIONS(5148), + [anon_sym_AT] = ACTIONS(5150), + [sym_property_behavior_modifier] = ACTIONS(5148), + [anon_sym_override] = ACTIONS(5148), + [anon_sym_convenience] = ACTIONS(5148), + [anon_sym_required] = ACTIONS(5148), + [anon_sym_public] = ACTIONS(5148), + [anon_sym_private] = ACTIONS(5148), + [anon_sym_internal] = ACTIONS(5148), + [anon_sym_fileprivate] = ACTIONS(5148), + [anon_sym_open] = ACTIONS(5148), + [anon_sym_mutating] = ACTIONS(5148), + [anon_sym_nonmutating] = ACTIONS(5148), + [anon_sym_static] = ACTIONS(5148), + [anon_sym_dynamic] = ACTIONS(5148), + [anon_sym_optional] = ACTIONS(5148), + [anon_sym_final] = ACTIONS(5148), + [anon_sym_inout] = ACTIONS(5148), + [anon_sym_ATescaping] = ACTIONS(5148), + [anon_sym_ATautoclosure] = ACTIONS(5148), + [anon_sym_weak] = ACTIONS(5148), + [anon_sym_unowned] = ACTIONS(5150), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5148), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5148), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5148), + [sym__three_dot_operator_custom] = ACTIONS(5148), + [sym__open_ended_range_operator_custom] = ACTIONS(5148), + [sym__conjunction_operator_custom] = ACTIONS(5148), + [sym__disjunction_operator_custom] = ACTIONS(5148), + [sym__nil_coalescing_operator_custom] = ACTIONS(5148), + [sym__eq_eq_custom] = ACTIONS(5148), + [sym__plus_then_ws] = ACTIONS(5148), + [sym__minus_then_ws] = ACTIONS(5148), + [sym_bang] = ACTIONS(5148), + [sym__as_custom] = ACTIONS(5148), + [sym__as_quest_custom] = ACTIONS(5148), + [sym__as_bang_custom] = ACTIONS(5148), + }, + [1249] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5152), + [anon_sym_COMMA] = ACTIONS(5152), + [anon_sym_COLON] = ACTIONS(5152), + [anon_sym_LPAREN] = ACTIONS(5152), + [anon_sym_LBRACK] = ACTIONS(5152), + [anon_sym_RBRACK] = ACTIONS(5152), + [anon_sym_QMARK] = ACTIONS(5154), + [sym__immediate_quest] = ACTIONS(5154), + [anon_sym_AMP] = ACTIONS(5154), + [anon_sym_async] = ACTIONS(5152), + [aux_sym_custom_operator_token1] = ACTIONS(5154), + [anon_sym_LT] = ACTIONS(5154), + [anon_sym_GT] = ACTIONS(5154), + [anon_sym_LBRACE] = ACTIONS(5152), + [anon_sym_RBRACE] = ACTIONS(5152), + [anon_sym_case] = ACTIONS(5152), + [anon_sym_BANG_EQ] = ACTIONS(5154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5154), + [anon_sym_LT_EQ] = ACTIONS(5154), + [anon_sym_GT_EQ] = ACTIONS(5154), + [anon_sym_is] = ACTIONS(5152), + [anon_sym_PLUS] = ACTIONS(5154), + [anon_sym_DASH] = ACTIONS(5154), + [anon_sym_STAR] = ACTIONS(5154), + [anon_sym_SLASH] = ACTIONS(5154), + [anon_sym_PERCENT] = ACTIONS(5154), + [anon_sym_PLUS_PLUS] = ACTIONS(5154), + [anon_sym_DASH_DASH] = ACTIONS(5154), + [anon_sym_PIPE] = ACTIONS(5154), + [anon_sym_CARET] = ACTIONS(5154), + [anon_sym_LT_LT] = ACTIONS(5154), + [anon_sym_GT_GT] = ACTIONS(5154), + [anon_sym_import] = ACTIONS(5152), + [anon_sym_typealias] = ACTIONS(5152), + [anon_sym_struct] = ACTIONS(5152), + [anon_sym_class] = ACTIONS(5152), + [anon_sym_enum] = ACTIONS(5152), + [anon_sym_protocol] = ACTIONS(5152), + [anon_sym_let] = ACTIONS(5152), + [anon_sym_var] = ACTIONS(5152), + [anon_sym_func] = ACTIONS(5152), + [anon_sym_extension] = ACTIONS(5152), + [anon_sym_indirect] = ACTIONS(5152), + [anon_sym_init] = ACTIONS(5152), + [anon_sym_SEMI] = ACTIONS(5152), + [anon_sym_deinit] = ACTIONS(5152), + [anon_sym_subscript] = ACTIONS(5152), + [anon_sym_prefix] = ACTIONS(5152), + [anon_sym_infix] = ACTIONS(5152), + [anon_sym_postfix] = ACTIONS(5152), + [anon_sym_precedencegroup] = ACTIONS(5152), + [anon_sym_associatedtype] = ACTIONS(5152), + [anon_sym_AT] = ACTIONS(5154), + [sym_property_behavior_modifier] = ACTIONS(5152), + [anon_sym_override] = ACTIONS(5152), + [anon_sym_convenience] = ACTIONS(5152), + [anon_sym_required] = ACTIONS(5152), + [anon_sym_public] = ACTIONS(5152), + [anon_sym_private] = ACTIONS(5152), + [anon_sym_internal] = ACTIONS(5152), + [anon_sym_fileprivate] = ACTIONS(5152), + [anon_sym_open] = ACTIONS(5152), + [anon_sym_mutating] = ACTIONS(5152), + [anon_sym_nonmutating] = ACTIONS(5152), + [anon_sym_static] = ACTIONS(5152), + [anon_sym_dynamic] = ACTIONS(5152), + [anon_sym_optional] = ACTIONS(5152), + [anon_sym_final] = ACTIONS(5152), + [anon_sym_inout] = ACTIONS(5152), + [anon_sym_ATescaping] = ACTIONS(5152), + [anon_sym_ATautoclosure] = ACTIONS(5152), + [anon_sym_weak] = ACTIONS(5152), + [anon_sym_unowned] = ACTIONS(5154), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5152), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5152), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5152), + [sym__three_dot_operator_custom] = ACTIONS(5152), + [sym__open_ended_range_operator_custom] = ACTIONS(5152), + [sym__conjunction_operator_custom] = ACTIONS(5152), + [sym__disjunction_operator_custom] = ACTIONS(5152), + [sym__nil_coalescing_operator_custom] = ACTIONS(5152), + [sym__eq_eq_custom] = ACTIONS(5152), + [sym__plus_then_ws] = ACTIONS(5152), + [sym__minus_then_ws] = ACTIONS(5152), + [sym_bang] = ACTIONS(5152), + [sym__as_custom] = ACTIONS(5152), + [sym__as_quest_custom] = ACTIONS(5152), + [sym__as_bang_custom] = ACTIONS(5152), + }, + [1250] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5156), + [anon_sym_COMMA] = ACTIONS(5156), + [anon_sym_COLON] = ACTIONS(5156), + [anon_sym_LPAREN] = ACTIONS(5156), + [anon_sym_LBRACK] = ACTIONS(5156), + [anon_sym_RBRACK] = ACTIONS(5156), + [anon_sym_QMARK] = ACTIONS(5158), + [sym__immediate_quest] = ACTIONS(5158), + [anon_sym_AMP] = ACTIONS(5158), + [anon_sym_async] = ACTIONS(5156), + [aux_sym_custom_operator_token1] = ACTIONS(5158), + [anon_sym_LT] = ACTIONS(5158), + [anon_sym_GT] = ACTIONS(5158), + [anon_sym_LBRACE] = ACTIONS(5156), + [anon_sym_RBRACE] = ACTIONS(5156), + [anon_sym_case] = ACTIONS(5156), + [anon_sym_BANG_EQ] = ACTIONS(5158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5158), + [anon_sym_LT_EQ] = ACTIONS(5158), + [anon_sym_GT_EQ] = ACTIONS(5158), + [anon_sym_is] = ACTIONS(5156), + [anon_sym_PLUS] = ACTIONS(5158), + [anon_sym_DASH] = ACTIONS(5158), + [anon_sym_STAR] = ACTIONS(5158), + [anon_sym_SLASH] = ACTIONS(5158), + [anon_sym_PERCENT] = ACTIONS(5158), + [anon_sym_PLUS_PLUS] = ACTIONS(5158), + [anon_sym_DASH_DASH] = ACTIONS(5158), + [anon_sym_PIPE] = ACTIONS(5158), + [anon_sym_CARET] = ACTIONS(5158), + [anon_sym_LT_LT] = ACTIONS(5158), + [anon_sym_GT_GT] = ACTIONS(5158), + [anon_sym_import] = ACTIONS(5156), + [anon_sym_typealias] = ACTIONS(5156), + [anon_sym_struct] = ACTIONS(5156), + [anon_sym_class] = ACTIONS(5156), + [anon_sym_enum] = ACTIONS(5156), + [anon_sym_protocol] = ACTIONS(5156), + [anon_sym_let] = ACTIONS(5156), + [anon_sym_var] = ACTIONS(5156), + [anon_sym_func] = ACTIONS(5156), + [anon_sym_extension] = ACTIONS(5156), + [anon_sym_indirect] = ACTIONS(5156), + [anon_sym_init] = ACTIONS(5156), + [anon_sym_SEMI] = ACTIONS(5156), + [anon_sym_deinit] = ACTIONS(5156), + [anon_sym_subscript] = ACTIONS(5156), + [anon_sym_prefix] = ACTIONS(5156), + [anon_sym_infix] = ACTIONS(5156), + [anon_sym_postfix] = ACTIONS(5156), + [anon_sym_precedencegroup] = ACTIONS(5156), + [anon_sym_associatedtype] = ACTIONS(5156), + [anon_sym_AT] = ACTIONS(5158), + [sym_property_behavior_modifier] = ACTIONS(5156), + [anon_sym_override] = ACTIONS(5156), + [anon_sym_convenience] = ACTIONS(5156), + [anon_sym_required] = ACTIONS(5156), + [anon_sym_public] = ACTIONS(5156), + [anon_sym_private] = ACTIONS(5156), + [anon_sym_internal] = ACTIONS(5156), + [anon_sym_fileprivate] = ACTIONS(5156), + [anon_sym_open] = ACTIONS(5156), + [anon_sym_mutating] = ACTIONS(5156), + [anon_sym_nonmutating] = ACTIONS(5156), + [anon_sym_static] = ACTIONS(5156), + [anon_sym_dynamic] = ACTIONS(5156), + [anon_sym_optional] = ACTIONS(5156), + [anon_sym_final] = ACTIONS(5156), + [anon_sym_inout] = ACTIONS(5156), + [anon_sym_ATescaping] = ACTIONS(5156), + [anon_sym_ATautoclosure] = ACTIONS(5156), + [anon_sym_weak] = ACTIONS(5156), + [anon_sym_unowned] = ACTIONS(5158), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5156), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5156), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5156), + [sym__three_dot_operator_custom] = ACTIONS(5156), + [sym__open_ended_range_operator_custom] = ACTIONS(5156), + [sym__conjunction_operator_custom] = ACTIONS(5156), + [sym__disjunction_operator_custom] = ACTIONS(5156), + [sym__nil_coalescing_operator_custom] = ACTIONS(5156), + [sym__eq_eq_custom] = ACTIONS(5156), + [sym__plus_then_ws] = ACTIONS(5156), + [sym__minus_then_ws] = ACTIONS(5156), + [sym_bang] = ACTIONS(5156), + [sym__as_custom] = ACTIONS(5156), + [sym__as_quest_custom] = ACTIONS(5156), + [sym__as_bang_custom] = ACTIONS(5156), + }, + [1251] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5160), + [anon_sym_COMMA] = ACTIONS(5160), + [anon_sym_COLON] = ACTIONS(5160), + [anon_sym_LPAREN] = ACTIONS(5160), + [anon_sym_LBRACK] = ACTIONS(5160), + [anon_sym_RBRACK] = ACTIONS(5160), + [anon_sym_QMARK] = ACTIONS(5162), + [sym__immediate_quest] = ACTIONS(5162), + [anon_sym_AMP] = ACTIONS(5162), + [anon_sym_async] = ACTIONS(5160), + [aux_sym_custom_operator_token1] = ACTIONS(5162), + [anon_sym_LT] = ACTIONS(5162), + [anon_sym_GT] = ACTIONS(5162), + [anon_sym_LBRACE] = ACTIONS(5160), + [anon_sym_RBRACE] = ACTIONS(5160), + [anon_sym_case] = ACTIONS(5160), + [anon_sym_BANG_EQ] = ACTIONS(5162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5162), + [anon_sym_LT_EQ] = ACTIONS(5162), + [anon_sym_GT_EQ] = ACTIONS(5162), + [anon_sym_is] = ACTIONS(5160), + [anon_sym_PLUS] = ACTIONS(5162), + [anon_sym_DASH] = ACTIONS(5162), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_SLASH] = ACTIONS(5162), + [anon_sym_PERCENT] = ACTIONS(5162), + [anon_sym_PLUS_PLUS] = ACTIONS(5162), + [anon_sym_DASH_DASH] = ACTIONS(5162), + [anon_sym_PIPE] = ACTIONS(5162), + [anon_sym_CARET] = ACTIONS(5162), + [anon_sym_LT_LT] = ACTIONS(5162), + [anon_sym_GT_GT] = ACTIONS(5162), + [anon_sym_import] = ACTIONS(5160), + [anon_sym_typealias] = ACTIONS(5160), + [anon_sym_struct] = ACTIONS(5160), + [anon_sym_class] = ACTIONS(5160), + [anon_sym_enum] = ACTIONS(5160), + [anon_sym_protocol] = ACTIONS(5160), + [anon_sym_let] = ACTIONS(5160), + [anon_sym_var] = ACTIONS(5160), + [anon_sym_func] = ACTIONS(5160), + [anon_sym_extension] = ACTIONS(5160), + [anon_sym_indirect] = ACTIONS(5160), + [anon_sym_init] = ACTIONS(5160), + [anon_sym_SEMI] = ACTIONS(5160), + [anon_sym_deinit] = ACTIONS(5160), + [anon_sym_subscript] = ACTIONS(5160), + [anon_sym_prefix] = ACTIONS(5160), + [anon_sym_infix] = ACTIONS(5160), + [anon_sym_postfix] = ACTIONS(5160), + [anon_sym_precedencegroup] = ACTIONS(5160), + [anon_sym_associatedtype] = ACTIONS(5160), + [anon_sym_AT] = ACTIONS(5162), + [sym_property_behavior_modifier] = ACTIONS(5160), + [anon_sym_override] = ACTIONS(5160), + [anon_sym_convenience] = ACTIONS(5160), + [anon_sym_required] = ACTIONS(5160), + [anon_sym_public] = ACTIONS(5160), + [anon_sym_private] = ACTIONS(5160), + [anon_sym_internal] = ACTIONS(5160), + [anon_sym_fileprivate] = ACTIONS(5160), + [anon_sym_open] = ACTIONS(5160), + [anon_sym_mutating] = ACTIONS(5160), + [anon_sym_nonmutating] = ACTIONS(5160), + [anon_sym_static] = ACTIONS(5160), + [anon_sym_dynamic] = ACTIONS(5160), + [anon_sym_optional] = ACTIONS(5160), + [anon_sym_final] = ACTIONS(5160), + [anon_sym_inout] = ACTIONS(5160), + [anon_sym_ATescaping] = ACTIONS(5160), + [anon_sym_ATautoclosure] = ACTIONS(5160), + [anon_sym_weak] = ACTIONS(5160), + [anon_sym_unowned] = ACTIONS(5162), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5160), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5160), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5160), + [sym__three_dot_operator_custom] = ACTIONS(5160), + [sym__open_ended_range_operator_custom] = ACTIONS(5160), + [sym__conjunction_operator_custom] = ACTIONS(5160), + [sym__disjunction_operator_custom] = ACTIONS(5160), + [sym__nil_coalescing_operator_custom] = ACTIONS(5160), + [sym__eq_eq_custom] = ACTIONS(5160), + [sym__plus_then_ws] = ACTIONS(5160), + [sym__minus_then_ws] = ACTIONS(5160), + [sym_bang] = ACTIONS(5160), + [sym__as_custom] = ACTIONS(5160), + [sym__as_quest_custom] = ACTIONS(5160), + [sym__as_bang_custom] = ACTIONS(5160), + }, + [1252] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5164), + [anon_sym_COMMA] = ACTIONS(5164), + [anon_sym_COLON] = ACTIONS(5164), + [anon_sym_LPAREN] = ACTIONS(5164), + [anon_sym_LBRACK] = ACTIONS(5164), + [anon_sym_RBRACK] = ACTIONS(5164), + [anon_sym_QMARK] = ACTIONS(5166), + [sym__immediate_quest] = ACTIONS(5166), + [anon_sym_AMP] = ACTIONS(5166), + [anon_sym_async] = ACTIONS(5164), + [aux_sym_custom_operator_token1] = ACTIONS(5166), + [anon_sym_LT] = ACTIONS(5166), + [anon_sym_GT] = ACTIONS(5166), + [anon_sym_LBRACE] = ACTIONS(5164), + [anon_sym_RBRACE] = ACTIONS(5164), + [anon_sym_case] = ACTIONS(5164), + [anon_sym_BANG_EQ] = ACTIONS(5166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5166), + [anon_sym_LT_EQ] = ACTIONS(5166), + [anon_sym_GT_EQ] = ACTIONS(5166), + [anon_sym_is] = ACTIONS(5164), + [anon_sym_PLUS] = ACTIONS(5166), + [anon_sym_DASH] = ACTIONS(5166), + [anon_sym_STAR] = ACTIONS(5166), + [anon_sym_SLASH] = ACTIONS(5166), + [anon_sym_PERCENT] = ACTIONS(5166), + [anon_sym_PLUS_PLUS] = ACTIONS(5166), + [anon_sym_DASH_DASH] = ACTIONS(5166), + [anon_sym_PIPE] = ACTIONS(5166), + [anon_sym_CARET] = ACTIONS(5166), + [anon_sym_LT_LT] = ACTIONS(5166), + [anon_sym_GT_GT] = ACTIONS(5166), + [anon_sym_import] = ACTIONS(5164), + [anon_sym_typealias] = ACTIONS(5164), + [anon_sym_struct] = ACTIONS(5164), + [anon_sym_class] = ACTIONS(5164), + [anon_sym_enum] = ACTIONS(5164), + [anon_sym_protocol] = ACTIONS(5164), + [anon_sym_let] = ACTIONS(5164), + [anon_sym_var] = ACTIONS(5164), + [anon_sym_func] = ACTIONS(5164), + [anon_sym_extension] = ACTIONS(5164), + [anon_sym_indirect] = ACTIONS(5164), + [anon_sym_init] = ACTIONS(5164), + [anon_sym_SEMI] = ACTIONS(5164), + [anon_sym_deinit] = ACTIONS(5164), + [anon_sym_subscript] = ACTIONS(5164), + [anon_sym_prefix] = ACTIONS(5164), + [anon_sym_infix] = ACTIONS(5164), + [anon_sym_postfix] = ACTIONS(5164), + [anon_sym_precedencegroup] = ACTIONS(5164), + [anon_sym_associatedtype] = ACTIONS(5164), + [anon_sym_AT] = ACTIONS(5166), + [sym_property_behavior_modifier] = ACTIONS(5164), + [anon_sym_override] = ACTIONS(5164), + [anon_sym_convenience] = ACTIONS(5164), + [anon_sym_required] = ACTIONS(5164), + [anon_sym_public] = ACTIONS(5164), + [anon_sym_private] = ACTIONS(5164), + [anon_sym_internal] = ACTIONS(5164), + [anon_sym_fileprivate] = ACTIONS(5164), + [anon_sym_open] = ACTIONS(5164), + [anon_sym_mutating] = ACTIONS(5164), + [anon_sym_nonmutating] = ACTIONS(5164), + [anon_sym_static] = ACTIONS(5164), + [anon_sym_dynamic] = ACTIONS(5164), + [anon_sym_optional] = ACTIONS(5164), + [anon_sym_final] = ACTIONS(5164), + [anon_sym_inout] = ACTIONS(5164), + [anon_sym_ATescaping] = ACTIONS(5164), + [anon_sym_ATautoclosure] = ACTIONS(5164), + [anon_sym_weak] = ACTIONS(5164), + [anon_sym_unowned] = ACTIONS(5166), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5164), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5164), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5164), + [sym__three_dot_operator_custom] = ACTIONS(5164), + [sym__open_ended_range_operator_custom] = ACTIONS(5164), + [sym__conjunction_operator_custom] = ACTIONS(5164), + [sym__disjunction_operator_custom] = ACTIONS(5164), + [sym__nil_coalescing_operator_custom] = ACTIONS(5164), + [sym__eq_eq_custom] = ACTIONS(5164), + [sym__plus_then_ws] = ACTIONS(5164), + [sym__minus_then_ws] = ACTIONS(5164), + [sym_bang] = ACTIONS(5164), + [sym__as_custom] = ACTIONS(5164), + [sym__as_quest_custom] = ACTIONS(5164), + [sym__as_bang_custom] = ACTIONS(5164), + }, + [1253] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4580), + [anon_sym_COMMA] = ACTIONS(4580), + [anon_sym_COLON] = ACTIONS(4580), + [anon_sym_LPAREN] = ACTIONS(4580), + [anon_sym_LBRACK] = ACTIONS(4580), + [anon_sym_RBRACK] = ACTIONS(4580), + [anon_sym_QMARK] = ACTIONS(4586), + [sym__immediate_quest] = ACTIONS(4586), + [anon_sym_AMP] = ACTIONS(4586), + [anon_sym_async] = ACTIONS(4580), + [aux_sym_custom_operator_token1] = ACTIONS(4586), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_GT] = ACTIONS(4586), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_RBRACE] = ACTIONS(4580), + [anon_sym_case] = ACTIONS(4580), + [anon_sym_BANG_EQ] = ACTIONS(4586), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4586), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4586), + [anon_sym_LT_EQ] = ACTIONS(4586), + [anon_sym_GT_EQ] = ACTIONS(4586), + [anon_sym_is] = ACTIONS(4580), + [anon_sym_PLUS] = ACTIONS(4586), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_STAR] = ACTIONS(4586), + [anon_sym_SLASH] = ACTIONS(4586), + [anon_sym_PERCENT] = ACTIONS(4586), + [anon_sym_PLUS_PLUS] = ACTIONS(4586), + [anon_sym_DASH_DASH] = ACTIONS(4586), + [anon_sym_PIPE] = ACTIONS(4586), + [anon_sym_CARET] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(4586), + [anon_sym_GT_GT] = ACTIONS(4586), + [anon_sym_import] = ACTIONS(4580), + [anon_sym_typealias] = ACTIONS(4580), + [anon_sym_struct] = ACTIONS(4580), + [anon_sym_class] = ACTIONS(4580), + [anon_sym_enum] = ACTIONS(4580), + [anon_sym_protocol] = ACTIONS(4580), + [anon_sym_let] = ACTIONS(4580), + [anon_sym_var] = ACTIONS(4580), + [anon_sym_func] = ACTIONS(4580), + [anon_sym_extension] = ACTIONS(4580), + [anon_sym_indirect] = ACTIONS(4580), + [anon_sym_init] = ACTIONS(4580), + [anon_sym_SEMI] = ACTIONS(4580), + [anon_sym_deinit] = ACTIONS(4580), + [anon_sym_subscript] = ACTIONS(4580), + [anon_sym_prefix] = ACTIONS(4580), + [anon_sym_infix] = ACTIONS(4580), + [anon_sym_postfix] = ACTIONS(4580), + [anon_sym_precedencegroup] = ACTIONS(4580), + [anon_sym_associatedtype] = ACTIONS(4580), + [anon_sym_AT] = ACTIONS(4586), + [sym_property_behavior_modifier] = ACTIONS(4580), + [anon_sym_override] = ACTIONS(4580), + [anon_sym_convenience] = ACTIONS(4580), + [anon_sym_required] = ACTIONS(4580), + [anon_sym_public] = ACTIONS(4580), + [anon_sym_private] = ACTIONS(4580), + [anon_sym_internal] = ACTIONS(4580), + [anon_sym_fileprivate] = ACTIONS(4580), + [anon_sym_open] = ACTIONS(4580), + [anon_sym_mutating] = ACTIONS(4580), + [anon_sym_nonmutating] = ACTIONS(4580), + [anon_sym_static] = ACTIONS(4580), + [anon_sym_dynamic] = ACTIONS(4580), + [anon_sym_optional] = ACTIONS(4580), + [anon_sym_final] = ACTIONS(4580), + [anon_sym_inout] = ACTIONS(4580), + [anon_sym_ATescaping] = ACTIONS(4580), + [anon_sym_ATautoclosure] = ACTIONS(4580), + [anon_sym_weak] = ACTIONS(4580), + [anon_sym_unowned] = ACTIONS(4586), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4580), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4580), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4580), + [sym__three_dot_operator_custom] = ACTIONS(4580), + [sym__open_ended_range_operator_custom] = ACTIONS(4580), + [sym__conjunction_operator_custom] = ACTIONS(4580), + [sym__disjunction_operator_custom] = ACTIONS(4580), + [sym__nil_coalescing_operator_custom] = ACTIONS(4580), + [sym__eq_eq_custom] = ACTIONS(4580), + [sym__plus_then_ws] = ACTIONS(4580), + [sym__minus_then_ws] = ACTIONS(4580), + [sym_bang] = ACTIONS(4580), + [sym__as_custom] = ACTIONS(4580), + [sym__as_quest_custom] = ACTIONS(4580), + [sym__as_bang_custom] = ACTIONS(4580), + }, + [1254] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4624), + [anon_sym_COMMA] = ACTIONS(4624), + [anon_sym_COLON] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(4624), + [anon_sym_LBRACK] = ACTIONS(4624), + [anon_sym_RBRACK] = ACTIONS(4624), + [anon_sym_QMARK] = ACTIONS(4626), + [sym__immediate_quest] = ACTIONS(4626), + [anon_sym_AMP] = ACTIONS(4626), + [anon_sym_async] = ACTIONS(4624), + [aux_sym_custom_operator_token1] = ACTIONS(4626), + [anon_sym_LT] = ACTIONS(4626), + [anon_sym_GT] = ACTIONS(4626), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_RBRACE] = ACTIONS(4624), + [anon_sym_case] = ACTIONS(4624), + [anon_sym_BANG_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4626), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4626), + [anon_sym_LT_EQ] = ACTIONS(4626), + [anon_sym_GT_EQ] = ACTIONS(4626), + [anon_sym_is] = ACTIONS(4624), + [anon_sym_PLUS] = ACTIONS(4626), + [anon_sym_DASH] = ACTIONS(4626), + [anon_sym_STAR] = ACTIONS(4626), + [anon_sym_SLASH] = ACTIONS(4626), + [anon_sym_PERCENT] = ACTIONS(4626), + [anon_sym_PLUS_PLUS] = ACTIONS(4626), + [anon_sym_DASH_DASH] = ACTIONS(4626), + [anon_sym_PIPE] = ACTIONS(4626), + [anon_sym_CARET] = ACTIONS(4626), + [anon_sym_LT_LT] = ACTIONS(4626), + [anon_sym_GT_GT] = ACTIONS(4626), + [anon_sym_import] = ACTIONS(4624), + [anon_sym_typealias] = ACTIONS(4624), + [anon_sym_struct] = ACTIONS(4624), + [anon_sym_class] = ACTIONS(4624), + [anon_sym_enum] = ACTIONS(4624), + [anon_sym_protocol] = ACTIONS(4624), + [anon_sym_let] = ACTIONS(4624), + [anon_sym_var] = ACTIONS(4624), + [anon_sym_func] = ACTIONS(4624), + [anon_sym_extension] = ACTIONS(4624), + [anon_sym_indirect] = ACTIONS(4624), + [anon_sym_init] = ACTIONS(4624), + [anon_sym_SEMI] = ACTIONS(4624), + [anon_sym_deinit] = ACTIONS(4624), + [anon_sym_subscript] = ACTIONS(4624), + [anon_sym_prefix] = ACTIONS(4624), + [anon_sym_infix] = ACTIONS(4624), + [anon_sym_postfix] = ACTIONS(4624), + [anon_sym_precedencegroup] = ACTIONS(4624), + [anon_sym_associatedtype] = ACTIONS(4624), + [anon_sym_AT] = ACTIONS(4626), + [sym_property_behavior_modifier] = ACTIONS(4624), + [anon_sym_override] = ACTIONS(4624), + [anon_sym_convenience] = ACTIONS(4624), + [anon_sym_required] = ACTIONS(4624), + [anon_sym_public] = ACTIONS(4624), + [anon_sym_private] = ACTIONS(4624), + [anon_sym_internal] = ACTIONS(4624), + [anon_sym_fileprivate] = ACTIONS(4624), + [anon_sym_open] = ACTIONS(4624), + [anon_sym_mutating] = ACTIONS(4624), + [anon_sym_nonmutating] = ACTIONS(4624), + [anon_sym_static] = ACTIONS(4624), + [anon_sym_dynamic] = ACTIONS(4624), + [anon_sym_optional] = ACTIONS(4624), + [anon_sym_final] = ACTIONS(4624), + [anon_sym_inout] = ACTIONS(4624), + [anon_sym_ATescaping] = ACTIONS(4624), + [anon_sym_ATautoclosure] = ACTIONS(4624), + [anon_sym_weak] = ACTIONS(4624), + [anon_sym_unowned] = ACTIONS(4626), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4624), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4624), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4624), + [sym__three_dot_operator_custom] = ACTIONS(4624), + [sym__open_ended_range_operator_custom] = ACTIONS(4624), + [sym__conjunction_operator_custom] = ACTIONS(4624), + [sym__disjunction_operator_custom] = ACTIONS(4624), + [sym__nil_coalescing_operator_custom] = ACTIONS(4624), + [sym__eq_eq_custom] = ACTIONS(4624), + [sym__plus_then_ws] = ACTIONS(4624), + [sym__minus_then_ws] = ACTIONS(4624), + [sym_bang] = ACTIONS(4624), + [sym__as_custom] = ACTIONS(4624), + [sym__as_quest_custom] = ACTIONS(4624), + [sym__as_bang_custom] = ACTIONS(4624), + }, + [1255] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4847), + [anon_sym_COMMA] = ACTIONS(4847), + [anon_sym_COLON] = ACTIONS(4847), + [anon_sym_LPAREN] = ACTIONS(4847), + [anon_sym_LBRACK] = ACTIONS(4847), + [anon_sym_RBRACK] = ACTIONS(4847), + [anon_sym_QMARK] = ACTIONS(4845), + [sym__immediate_quest] = ACTIONS(4845), + [anon_sym_AMP] = ACTIONS(4845), + [anon_sym_async] = ACTIONS(4847), + [aux_sym_custom_operator_token1] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4845), + [anon_sym_GT] = ACTIONS(4845), + [anon_sym_LBRACE] = ACTIONS(4847), + [anon_sym_RBRACE] = ACTIONS(4847), + [anon_sym_case] = ACTIONS(4847), + [anon_sym_BANG_EQ] = ACTIONS(4845), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4845), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4845), + [anon_sym_LT_EQ] = ACTIONS(4845), + [anon_sym_GT_EQ] = ACTIONS(4845), + [anon_sym_is] = ACTIONS(4847), + [anon_sym_PLUS] = ACTIONS(4845), + [anon_sym_DASH] = ACTIONS(4845), + [anon_sym_STAR] = ACTIONS(4845), + [anon_sym_SLASH] = ACTIONS(4845), + [anon_sym_PERCENT] = ACTIONS(4845), + [anon_sym_PLUS_PLUS] = ACTIONS(4845), + [anon_sym_DASH_DASH] = ACTIONS(4845), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_CARET] = ACTIONS(4845), + [anon_sym_LT_LT] = ACTIONS(4845), + [anon_sym_GT_GT] = ACTIONS(4845), + [anon_sym_import] = ACTIONS(4847), + [anon_sym_typealias] = ACTIONS(4847), + [anon_sym_struct] = ACTIONS(4847), + [anon_sym_class] = ACTIONS(4847), + [anon_sym_enum] = ACTIONS(4847), + [anon_sym_protocol] = ACTIONS(4847), + [anon_sym_let] = ACTIONS(4847), + [anon_sym_var] = ACTIONS(4847), + [anon_sym_func] = ACTIONS(4847), + [anon_sym_extension] = ACTIONS(4847), + [anon_sym_indirect] = ACTIONS(4847), + [anon_sym_init] = ACTIONS(4847), + [anon_sym_SEMI] = ACTIONS(4847), + [anon_sym_deinit] = ACTIONS(4847), + [anon_sym_subscript] = ACTIONS(4847), + [anon_sym_prefix] = ACTIONS(4847), + [anon_sym_infix] = ACTIONS(4847), + [anon_sym_postfix] = ACTIONS(4847), + [anon_sym_precedencegroup] = ACTIONS(4847), + [anon_sym_associatedtype] = ACTIONS(4847), + [anon_sym_AT] = ACTIONS(4845), + [sym_property_behavior_modifier] = ACTIONS(4847), + [anon_sym_override] = ACTIONS(4847), + [anon_sym_convenience] = ACTIONS(4847), + [anon_sym_required] = ACTIONS(4847), + [anon_sym_public] = ACTIONS(4847), + [anon_sym_private] = ACTIONS(4847), + [anon_sym_internal] = ACTIONS(4847), + [anon_sym_fileprivate] = ACTIONS(4847), + [anon_sym_open] = ACTIONS(4847), + [anon_sym_mutating] = ACTIONS(4847), + [anon_sym_nonmutating] = ACTIONS(4847), + [anon_sym_static] = ACTIONS(4847), + [anon_sym_dynamic] = ACTIONS(4847), + [anon_sym_optional] = ACTIONS(4847), + [anon_sym_final] = ACTIONS(4847), + [anon_sym_inout] = ACTIONS(4847), + [anon_sym_ATescaping] = ACTIONS(4847), + [anon_sym_ATautoclosure] = ACTIONS(4847), + [anon_sym_weak] = ACTIONS(4847), + [anon_sym_unowned] = ACTIONS(4845), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4847), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4847), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4847), + [sym__three_dot_operator_custom] = ACTIONS(4847), + [sym__open_ended_range_operator_custom] = ACTIONS(4847), + [sym__conjunction_operator_custom] = ACTIONS(4847), + [sym__disjunction_operator_custom] = ACTIONS(4847), + [sym__nil_coalescing_operator_custom] = ACTIONS(4847), + [sym__eq_eq_custom] = ACTIONS(4847), + [sym__plus_then_ws] = ACTIONS(4847), + [sym__minus_then_ws] = ACTIONS(4847), + [sym_bang] = ACTIONS(4847), + [sym__as_custom] = ACTIONS(4847), + [sym__as_quest_custom] = ACTIONS(4847), + [sym__as_bang_custom] = ACTIONS(4847), + }, + [1256] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5168), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_COLON] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(5168), + [anon_sym_LBRACK] = ACTIONS(5168), + [anon_sym_RBRACK] = ACTIONS(5168), + [anon_sym_QMARK] = ACTIONS(5171), + [sym__immediate_quest] = ACTIONS(5171), + [anon_sym_AMP] = ACTIONS(5171), + [anon_sym_async] = ACTIONS(5168), + [aux_sym_custom_operator_token1] = ACTIONS(5171), + [anon_sym_LT] = ACTIONS(5171), + [anon_sym_GT] = ACTIONS(5171), + [anon_sym_LBRACE] = ACTIONS(5168), + [anon_sym_RBRACE] = ACTIONS(5168), + [anon_sym_case] = ACTIONS(5168), + [anon_sym_BANG_EQ] = ACTIONS(5171), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5171), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5171), + [anon_sym_LT_EQ] = ACTIONS(5171), + [anon_sym_GT_EQ] = ACTIONS(5171), + [anon_sym_is] = ACTIONS(5168), + [anon_sym_PLUS] = ACTIONS(5171), + [anon_sym_DASH] = ACTIONS(5171), + [anon_sym_STAR] = ACTIONS(5171), + [anon_sym_SLASH] = ACTIONS(5171), + [anon_sym_PERCENT] = ACTIONS(5171), + [anon_sym_PLUS_PLUS] = ACTIONS(5171), + [anon_sym_DASH_DASH] = ACTIONS(5171), + [anon_sym_PIPE] = ACTIONS(5171), + [anon_sym_CARET] = ACTIONS(5171), + [anon_sym_LT_LT] = ACTIONS(5171), + [anon_sym_GT_GT] = ACTIONS(5171), + [anon_sym_import] = ACTIONS(5168), + [anon_sym_typealias] = ACTIONS(5168), + [anon_sym_struct] = ACTIONS(5168), + [anon_sym_class] = ACTIONS(5168), + [anon_sym_enum] = ACTIONS(5168), + [anon_sym_protocol] = ACTIONS(5168), + [anon_sym_let] = ACTIONS(5168), + [anon_sym_var] = ACTIONS(5168), + [anon_sym_func] = ACTIONS(5168), + [anon_sym_extension] = ACTIONS(5168), + [anon_sym_indirect] = ACTIONS(5168), + [anon_sym_init] = ACTIONS(5168), + [anon_sym_SEMI] = ACTIONS(5168), + [anon_sym_deinit] = ACTIONS(5168), + [anon_sym_subscript] = ACTIONS(5168), + [anon_sym_prefix] = ACTIONS(5168), + [anon_sym_infix] = ACTIONS(5168), + [anon_sym_postfix] = ACTIONS(5168), + [anon_sym_precedencegroup] = ACTIONS(5168), + [anon_sym_associatedtype] = ACTIONS(5168), + [anon_sym_AT] = ACTIONS(5171), + [sym_property_behavior_modifier] = ACTIONS(5168), + [anon_sym_override] = ACTIONS(5168), + [anon_sym_convenience] = ACTIONS(5168), + [anon_sym_required] = ACTIONS(5168), + [anon_sym_public] = ACTIONS(5168), + [anon_sym_private] = ACTIONS(5168), + [anon_sym_internal] = ACTIONS(5168), + [anon_sym_fileprivate] = ACTIONS(5168), + [anon_sym_open] = ACTIONS(5168), + [anon_sym_mutating] = ACTIONS(5168), + [anon_sym_nonmutating] = ACTIONS(5168), + [anon_sym_static] = ACTIONS(5168), + [anon_sym_dynamic] = ACTIONS(5168), + [anon_sym_optional] = ACTIONS(5168), + [anon_sym_final] = ACTIONS(5168), + [anon_sym_inout] = ACTIONS(5168), + [anon_sym_ATescaping] = ACTIONS(5168), + [anon_sym_ATautoclosure] = ACTIONS(5168), + [anon_sym_weak] = ACTIONS(5168), + [anon_sym_unowned] = ACTIONS(5171), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5168), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5168), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5168), + [sym__three_dot_operator_custom] = ACTIONS(5168), + [sym__open_ended_range_operator_custom] = ACTIONS(5168), + [sym__conjunction_operator_custom] = ACTIONS(5168), + [sym__disjunction_operator_custom] = ACTIONS(5168), + [sym__nil_coalescing_operator_custom] = ACTIONS(5168), + [sym__eq_eq_custom] = ACTIONS(5168), + [sym__plus_then_ws] = ACTIONS(5168), + [sym__minus_then_ws] = ACTIONS(5168), + [sym_bang] = ACTIONS(5168), + [sym__as_custom] = ACTIONS(5168), + [sym__as_quest_custom] = ACTIONS(5168), + [sym__as_bang_custom] = ACTIONS(5168), + }, + [1257] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5174), + [anon_sym_COMMA] = ACTIONS(5174), + [anon_sym_COLON] = ACTIONS(5174), + [anon_sym_LPAREN] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(5174), + [anon_sym_RBRACK] = ACTIONS(5174), + [anon_sym_QMARK] = ACTIONS(5176), + [sym__immediate_quest] = ACTIONS(5176), + [anon_sym_AMP] = ACTIONS(5176), + [anon_sym_async] = ACTIONS(5174), + [aux_sym_custom_operator_token1] = ACTIONS(5176), + [anon_sym_LT] = ACTIONS(5176), + [anon_sym_GT] = ACTIONS(5176), + [anon_sym_LBRACE] = ACTIONS(5174), + [anon_sym_RBRACE] = ACTIONS(5174), + [anon_sym_case] = ACTIONS(5174), + [anon_sym_BANG_EQ] = ACTIONS(5176), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5176), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5176), + [anon_sym_LT_EQ] = ACTIONS(5176), + [anon_sym_GT_EQ] = ACTIONS(5176), + [anon_sym_is] = ACTIONS(5174), + [anon_sym_PLUS] = ACTIONS(5176), + [anon_sym_DASH] = ACTIONS(5176), + [anon_sym_STAR] = ACTIONS(5176), + [anon_sym_SLASH] = ACTIONS(5176), + [anon_sym_PERCENT] = ACTIONS(5176), + [anon_sym_PLUS_PLUS] = ACTIONS(5176), + [anon_sym_DASH_DASH] = ACTIONS(5176), + [anon_sym_PIPE] = ACTIONS(5176), + [anon_sym_CARET] = ACTIONS(5176), + [anon_sym_LT_LT] = ACTIONS(5176), + [anon_sym_GT_GT] = ACTIONS(5176), + [anon_sym_import] = ACTIONS(5174), + [anon_sym_typealias] = ACTIONS(5174), + [anon_sym_struct] = ACTIONS(5174), + [anon_sym_class] = ACTIONS(5174), + [anon_sym_enum] = ACTIONS(5174), + [anon_sym_protocol] = ACTIONS(5174), + [anon_sym_let] = ACTIONS(5174), + [anon_sym_var] = ACTIONS(5174), + [anon_sym_func] = ACTIONS(5174), + [anon_sym_extension] = ACTIONS(5174), + [anon_sym_indirect] = ACTIONS(5174), + [anon_sym_init] = ACTIONS(5174), + [anon_sym_SEMI] = ACTIONS(5174), + [anon_sym_deinit] = ACTIONS(5174), + [anon_sym_subscript] = ACTIONS(5174), + [anon_sym_prefix] = ACTIONS(5174), + [anon_sym_infix] = ACTIONS(5174), + [anon_sym_postfix] = ACTIONS(5174), + [anon_sym_precedencegroup] = ACTIONS(5174), + [anon_sym_associatedtype] = ACTIONS(5174), + [anon_sym_AT] = ACTIONS(5176), + [sym_property_behavior_modifier] = ACTIONS(5174), + [anon_sym_override] = ACTIONS(5174), + [anon_sym_convenience] = ACTIONS(5174), + [anon_sym_required] = ACTIONS(5174), + [anon_sym_public] = ACTIONS(5174), + [anon_sym_private] = ACTIONS(5174), + [anon_sym_internal] = ACTIONS(5174), + [anon_sym_fileprivate] = ACTIONS(5174), + [anon_sym_open] = ACTIONS(5174), + [anon_sym_mutating] = ACTIONS(5174), + [anon_sym_nonmutating] = ACTIONS(5174), + [anon_sym_static] = ACTIONS(5174), + [anon_sym_dynamic] = ACTIONS(5174), + [anon_sym_optional] = ACTIONS(5174), + [anon_sym_final] = ACTIONS(5174), + [anon_sym_inout] = ACTIONS(5174), + [anon_sym_ATescaping] = ACTIONS(5174), + [anon_sym_ATautoclosure] = ACTIONS(5174), + [anon_sym_weak] = ACTIONS(5174), + [anon_sym_unowned] = ACTIONS(5176), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5174), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5174), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5174), + [sym__three_dot_operator_custom] = ACTIONS(5174), + [sym__open_ended_range_operator_custom] = ACTIONS(5174), + [sym__conjunction_operator_custom] = ACTIONS(5174), + [sym__disjunction_operator_custom] = ACTIONS(5174), + [sym__nil_coalescing_operator_custom] = ACTIONS(5174), + [sym__eq_eq_custom] = ACTIONS(5174), + [sym__plus_then_ws] = ACTIONS(5174), + [sym__minus_then_ws] = ACTIONS(5174), + [sym_bang] = ACTIONS(5174), + [sym__as_custom] = ACTIONS(5174), + [sym__as_quest_custom] = ACTIONS(5174), + [sym__as_bang_custom] = ACTIONS(5174), + }, + [1258] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5178), + [anon_sym_COMMA] = ACTIONS(5178), + [anon_sym_COLON] = ACTIONS(5178), + [anon_sym_LPAREN] = ACTIONS(5178), + [anon_sym_LBRACK] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5178), + [anon_sym_QMARK] = ACTIONS(5180), + [sym__immediate_quest] = ACTIONS(5180), + [anon_sym_AMP] = ACTIONS(5180), + [anon_sym_async] = ACTIONS(5178), + [aux_sym_custom_operator_token1] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_LBRACE] = ACTIONS(5178), + [anon_sym_RBRACE] = ACTIONS(5178), + [anon_sym_case] = ACTIONS(5178), + [anon_sym_BANG_EQ] = ACTIONS(5180), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5180), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5180), + [anon_sym_LT_EQ] = ACTIONS(5180), + [anon_sym_GT_EQ] = ACTIONS(5180), + [anon_sym_is] = ACTIONS(5178), + [anon_sym_PLUS] = ACTIONS(5180), + [anon_sym_DASH] = ACTIONS(5180), + [anon_sym_STAR] = ACTIONS(5180), + [anon_sym_SLASH] = ACTIONS(5180), + [anon_sym_PERCENT] = ACTIONS(5180), + [anon_sym_PLUS_PLUS] = ACTIONS(5180), + [anon_sym_DASH_DASH] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_CARET] = ACTIONS(5180), + [anon_sym_LT_LT] = ACTIONS(5180), + [anon_sym_GT_GT] = ACTIONS(5180), + [anon_sym_import] = ACTIONS(5178), + [anon_sym_typealias] = ACTIONS(5178), + [anon_sym_struct] = ACTIONS(5178), + [anon_sym_class] = ACTIONS(5178), + [anon_sym_enum] = ACTIONS(5178), + [anon_sym_protocol] = ACTIONS(5178), + [anon_sym_let] = ACTIONS(5178), + [anon_sym_var] = ACTIONS(5178), + [anon_sym_func] = ACTIONS(5178), + [anon_sym_extension] = ACTIONS(5178), + [anon_sym_indirect] = ACTIONS(5178), + [anon_sym_init] = ACTIONS(5178), + [anon_sym_SEMI] = ACTIONS(5178), + [anon_sym_deinit] = ACTIONS(5178), + [anon_sym_subscript] = ACTIONS(5178), + [anon_sym_prefix] = ACTIONS(5178), + [anon_sym_infix] = ACTIONS(5178), + [anon_sym_postfix] = ACTIONS(5178), + [anon_sym_precedencegroup] = ACTIONS(5178), + [anon_sym_associatedtype] = ACTIONS(5178), + [anon_sym_AT] = ACTIONS(5180), + [sym_property_behavior_modifier] = ACTIONS(5178), + [anon_sym_override] = ACTIONS(5178), + [anon_sym_convenience] = ACTIONS(5178), + [anon_sym_required] = ACTIONS(5178), + [anon_sym_public] = ACTIONS(5178), + [anon_sym_private] = ACTIONS(5178), + [anon_sym_internal] = ACTIONS(5178), + [anon_sym_fileprivate] = ACTIONS(5178), + [anon_sym_open] = ACTIONS(5178), + [anon_sym_mutating] = ACTIONS(5178), + [anon_sym_nonmutating] = ACTIONS(5178), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_dynamic] = ACTIONS(5178), + [anon_sym_optional] = ACTIONS(5178), + [anon_sym_final] = ACTIONS(5178), + [anon_sym_inout] = ACTIONS(5178), + [anon_sym_ATescaping] = ACTIONS(5178), + [anon_sym_ATautoclosure] = ACTIONS(5178), + [anon_sym_weak] = ACTIONS(5178), + [anon_sym_unowned] = ACTIONS(5180), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5178), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5178), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5178), + [sym__three_dot_operator_custom] = ACTIONS(5178), + [sym__open_ended_range_operator_custom] = ACTIONS(5178), + [sym__conjunction_operator_custom] = ACTIONS(5178), + [sym__disjunction_operator_custom] = ACTIONS(5178), + [sym__nil_coalescing_operator_custom] = ACTIONS(5178), + [sym__eq_eq_custom] = ACTIONS(5178), + [sym__plus_then_ws] = ACTIONS(5178), + [sym__minus_then_ws] = ACTIONS(5178), + [sym_bang] = ACTIONS(5178), + [sym__as_custom] = ACTIONS(5178), + [sym__as_quest_custom] = ACTIONS(5178), + [sym__as_bang_custom] = ACTIONS(5178), + }, + [1259] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5182), + [anon_sym_COMMA] = ACTIONS(5182), + [anon_sym_COLON] = ACTIONS(5182), + [anon_sym_LPAREN] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(5182), + [anon_sym_RBRACK] = ACTIONS(5182), + [anon_sym_QMARK] = ACTIONS(5184), + [sym__immediate_quest] = ACTIONS(5184), + [anon_sym_AMP] = ACTIONS(5184), + [anon_sym_async] = ACTIONS(5182), + [aux_sym_custom_operator_token1] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5184), + [anon_sym_LBRACE] = ACTIONS(5182), + [anon_sym_RBRACE] = ACTIONS(5182), + [anon_sym_case] = ACTIONS(5182), + [anon_sym_BANG_EQ] = ACTIONS(5184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5184), + [anon_sym_LT_EQ] = ACTIONS(5184), + [anon_sym_GT_EQ] = ACTIONS(5184), + [anon_sym_is] = ACTIONS(5182), + [anon_sym_PLUS] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_STAR] = ACTIONS(5184), + [anon_sym_SLASH] = ACTIONS(5184), + [anon_sym_PERCENT] = ACTIONS(5184), + [anon_sym_PLUS_PLUS] = ACTIONS(5184), + [anon_sym_DASH_DASH] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_CARET] = ACTIONS(5184), + [anon_sym_LT_LT] = ACTIONS(5184), + [anon_sym_GT_GT] = ACTIONS(5184), + [anon_sym_import] = ACTIONS(5182), + [anon_sym_typealias] = ACTIONS(5182), + [anon_sym_struct] = ACTIONS(5182), + [anon_sym_class] = ACTIONS(5182), + [anon_sym_enum] = ACTIONS(5182), + [anon_sym_protocol] = ACTIONS(5182), + [anon_sym_let] = ACTIONS(5182), + [anon_sym_var] = ACTIONS(5182), + [anon_sym_func] = ACTIONS(5182), + [anon_sym_extension] = ACTIONS(5182), + [anon_sym_indirect] = ACTIONS(5182), + [anon_sym_init] = ACTIONS(5182), + [anon_sym_SEMI] = ACTIONS(5182), + [anon_sym_deinit] = ACTIONS(5182), + [anon_sym_subscript] = ACTIONS(5182), + [anon_sym_prefix] = ACTIONS(5182), + [anon_sym_infix] = ACTIONS(5182), + [anon_sym_postfix] = ACTIONS(5182), + [anon_sym_precedencegroup] = ACTIONS(5182), + [anon_sym_associatedtype] = ACTIONS(5182), + [anon_sym_AT] = ACTIONS(5184), + [sym_property_behavior_modifier] = ACTIONS(5182), + [anon_sym_override] = ACTIONS(5182), + [anon_sym_convenience] = ACTIONS(5182), + [anon_sym_required] = ACTIONS(5182), + [anon_sym_public] = ACTIONS(5182), + [anon_sym_private] = ACTIONS(5182), + [anon_sym_internal] = ACTIONS(5182), + [anon_sym_fileprivate] = ACTIONS(5182), + [anon_sym_open] = ACTIONS(5182), + [anon_sym_mutating] = ACTIONS(5182), + [anon_sym_nonmutating] = ACTIONS(5182), + [anon_sym_static] = ACTIONS(5182), + [anon_sym_dynamic] = ACTIONS(5182), + [anon_sym_optional] = ACTIONS(5182), + [anon_sym_final] = ACTIONS(5182), + [anon_sym_inout] = ACTIONS(5182), + [anon_sym_ATescaping] = ACTIONS(5182), + [anon_sym_ATautoclosure] = ACTIONS(5182), + [anon_sym_weak] = ACTIONS(5182), + [anon_sym_unowned] = ACTIONS(5184), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5182), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5182), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5182), + [sym__three_dot_operator_custom] = ACTIONS(5182), + [sym__open_ended_range_operator_custom] = ACTIONS(5182), + [sym__conjunction_operator_custom] = ACTIONS(5182), + [sym__disjunction_operator_custom] = ACTIONS(5182), + [sym__nil_coalescing_operator_custom] = ACTIONS(5182), + [sym__eq_eq_custom] = ACTIONS(5182), + [sym__plus_then_ws] = ACTIONS(5182), + [sym__minus_then_ws] = ACTIONS(5182), + [sym_bang] = ACTIONS(5182), + [sym__as_custom] = ACTIONS(5182), + [sym__as_quest_custom] = ACTIONS(5182), + [sym__as_bang_custom] = ACTIONS(5182), + }, + [1260] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5186), + [anon_sym_COMMA] = ACTIONS(5186), + [anon_sym_COLON] = ACTIONS(5186), + [anon_sym_LPAREN] = ACTIONS(5186), + [anon_sym_LBRACK] = ACTIONS(5186), + [anon_sym_RBRACK] = ACTIONS(5186), + [anon_sym_QMARK] = ACTIONS(5188), + [sym__immediate_quest] = ACTIONS(5188), + [anon_sym_AMP] = ACTIONS(5188), + [anon_sym_async] = ACTIONS(5186), + [aux_sym_custom_operator_token1] = ACTIONS(5188), + [anon_sym_LT] = ACTIONS(5188), + [anon_sym_GT] = ACTIONS(5188), + [anon_sym_LBRACE] = ACTIONS(5186), + [anon_sym_RBRACE] = ACTIONS(5186), + [anon_sym_case] = ACTIONS(5186), + [anon_sym_BANG_EQ] = ACTIONS(5188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5188), + [anon_sym_LT_EQ] = ACTIONS(5188), + [anon_sym_GT_EQ] = ACTIONS(5188), + [anon_sym_is] = ACTIONS(5186), + [anon_sym_PLUS] = ACTIONS(5188), + [anon_sym_DASH] = ACTIONS(5188), + [anon_sym_STAR] = ACTIONS(5188), + [anon_sym_SLASH] = ACTIONS(5188), + [anon_sym_PERCENT] = ACTIONS(5188), + [anon_sym_PLUS_PLUS] = ACTIONS(5188), + [anon_sym_DASH_DASH] = ACTIONS(5188), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_CARET] = ACTIONS(5188), + [anon_sym_LT_LT] = ACTIONS(5188), + [anon_sym_GT_GT] = ACTIONS(5188), + [anon_sym_import] = ACTIONS(5186), + [anon_sym_typealias] = ACTIONS(5186), + [anon_sym_struct] = ACTIONS(5186), + [anon_sym_class] = ACTIONS(5186), + [anon_sym_enum] = ACTIONS(5186), + [anon_sym_protocol] = ACTIONS(5186), + [anon_sym_let] = ACTIONS(5186), + [anon_sym_var] = ACTIONS(5186), + [anon_sym_func] = ACTIONS(5186), + [anon_sym_extension] = ACTIONS(5186), + [anon_sym_indirect] = ACTIONS(5186), + [anon_sym_init] = ACTIONS(5186), + [anon_sym_SEMI] = ACTIONS(5186), + [anon_sym_deinit] = ACTIONS(5186), + [anon_sym_subscript] = ACTIONS(5186), + [anon_sym_prefix] = ACTIONS(5186), + [anon_sym_infix] = ACTIONS(5186), + [anon_sym_postfix] = ACTIONS(5186), + [anon_sym_precedencegroup] = ACTIONS(5186), + [anon_sym_associatedtype] = ACTIONS(5186), + [anon_sym_AT] = ACTIONS(5188), + [sym_property_behavior_modifier] = ACTIONS(5186), + [anon_sym_override] = ACTIONS(5186), + [anon_sym_convenience] = ACTIONS(5186), + [anon_sym_required] = ACTIONS(5186), + [anon_sym_public] = ACTIONS(5186), + [anon_sym_private] = ACTIONS(5186), + [anon_sym_internal] = ACTIONS(5186), + [anon_sym_fileprivate] = ACTIONS(5186), + [anon_sym_open] = ACTIONS(5186), + [anon_sym_mutating] = ACTIONS(5186), + [anon_sym_nonmutating] = ACTIONS(5186), + [anon_sym_static] = ACTIONS(5186), + [anon_sym_dynamic] = ACTIONS(5186), + [anon_sym_optional] = ACTIONS(5186), + [anon_sym_final] = ACTIONS(5186), + [anon_sym_inout] = ACTIONS(5186), + [anon_sym_ATescaping] = ACTIONS(5186), + [anon_sym_ATautoclosure] = ACTIONS(5186), + [anon_sym_weak] = ACTIONS(5186), + [anon_sym_unowned] = ACTIONS(5188), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5186), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5186), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5186), + [sym__three_dot_operator_custom] = ACTIONS(5186), + [sym__open_ended_range_operator_custom] = ACTIONS(5186), + [sym__conjunction_operator_custom] = ACTIONS(5186), + [sym__disjunction_operator_custom] = ACTIONS(5186), + [sym__nil_coalescing_operator_custom] = ACTIONS(5186), + [sym__eq_eq_custom] = ACTIONS(5186), + [sym__plus_then_ws] = ACTIONS(5186), + [sym__minus_then_ws] = ACTIONS(5186), + [sym_bang] = ACTIONS(5186), + [sym__as_custom] = ACTIONS(5186), + [sym__as_quest_custom] = ACTIONS(5186), + [sym__as_bang_custom] = ACTIONS(5186), + }, + [1261] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5190), + [anon_sym_COMMA] = ACTIONS(5190), + [anon_sym_COLON] = ACTIONS(5190), + [anon_sym_LPAREN] = ACTIONS(5190), + [anon_sym_LBRACK] = ACTIONS(5190), + [anon_sym_RBRACK] = ACTIONS(5190), + [anon_sym_QMARK] = ACTIONS(5192), + [sym__immediate_quest] = ACTIONS(5192), + [anon_sym_AMP] = ACTIONS(5192), + [anon_sym_async] = ACTIONS(5190), + [aux_sym_custom_operator_token1] = ACTIONS(5192), + [anon_sym_LT] = ACTIONS(5192), + [anon_sym_GT] = ACTIONS(5192), + [anon_sym_LBRACE] = ACTIONS(5190), + [anon_sym_RBRACE] = ACTIONS(5190), + [anon_sym_case] = ACTIONS(5190), + [anon_sym_BANG_EQ] = ACTIONS(5192), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5192), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5192), + [anon_sym_LT_EQ] = ACTIONS(5192), + [anon_sym_GT_EQ] = ACTIONS(5192), + [anon_sym_is] = ACTIONS(5190), + [anon_sym_PLUS] = ACTIONS(5192), + [anon_sym_DASH] = ACTIONS(5192), + [anon_sym_STAR] = ACTIONS(5192), + [anon_sym_SLASH] = ACTIONS(5192), + [anon_sym_PERCENT] = ACTIONS(5192), + [anon_sym_PLUS_PLUS] = ACTIONS(5192), + [anon_sym_DASH_DASH] = ACTIONS(5192), + [anon_sym_PIPE] = ACTIONS(5192), + [anon_sym_CARET] = ACTIONS(5192), + [anon_sym_LT_LT] = ACTIONS(5192), + [anon_sym_GT_GT] = ACTIONS(5192), + [anon_sym_import] = ACTIONS(5190), + [anon_sym_typealias] = ACTIONS(5190), + [anon_sym_struct] = ACTIONS(5190), + [anon_sym_class] = ACTIONS(5190), + [anon_sym_enum] = ACTIONS(5190), + [anon_sym_protocol] = ACTIONS(5190), + [anon_sym_let] = ACTIONS(5190), + [anon_sym_var] = ACTIONS(5190), + [anon_sym_func] = ACTIONS(5190), + [anon_sym_extension] = ACTIONS(5190), + [anon_sym_indirect] = ACTIONS(5190), + [anon_sym_init] = ACTIONS(5190), + [anon_sym_SEMI] = ACTIONS(5190), + [anon_sym_deinit] = ACTIONS(5190), + [anon_sym_subscript] = ACTIONS(5190), + [anon_sym_prefix] = ACTIONS(5190), + [anon_sym_infix] = ACTIONS(5190), + [anon_sym_postfix] = ACTIONS(5190), + [anon_sym_precedencegroup] = ACTIONS(5190), + [anon_sym_associatedtype] = ACTIONS(5190), + [anon_sym_AT] = ACTIONS(5192), + [sym_property_behavior_modifier] = ACTIONS(5190), + [anon_sym_override] = ACTIONS(5190), + [anon_sym_convenience] = ACTIONS(5190), + [anon_sym_required] = ACTIONS(5190), + [anon_sym_public] = ACTIONS(5190), + [anon_sym_private] = ACTIONS(5190), + [anon_sym_internal] = ACTIONS(5190), + [anon_sym_fileprivate] = ACTIONS(5190), + [anon_sym_open] = ACTIONS(5190), + [anon_sym_mutating] = ACTIONS(5190), + [anon_sym_nonmutating] = ACTIONS(5190), + [anon_sym_static] = ACTIONS(5190), + [anon_sym_dynamic] = ACTIONS(5190), + [anon_sym_optional] = ACTIONS(5190), + [anon_sym_final] = ACTIONS(5190), + [anon_sym_inout] = ACTIONS(5190), + [anon_sym_ATescaping] = ACTIONS(5190), + [anon_sym_ATautoclosure] = ACTIONS(5190), + [anon_sym_weak] = ACTIONS(5190), + [anon_sym_unowned] = ACTIONS(5192), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5190), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5190), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5190), + [sym__three_dot_operator_custom] = ACTIONS(5190), + [sym__open_ended_range_operator_custom] = ACTIONS(5190), + [sym__conjunction_operator_custom] = ACTIONS(5190), + [sym__disjunction_operator_custom] = ACTIONS(5190), + [sym__nil_coalescing_operator_custom] = ACTIONS(5190), + [sym__eq_eq_custom] = ACTIONS(5190), + [sym__plus_then_ws] = ACTIONS(5190), + [sym__minus_then_ws] = ACTIONS(5190), + [sym_bang] = ACTIONS(5190), + [sym__as_custom] = ACTIONS(5190), + [sym__as_quest_custom] = ACTIONS(5190), + [sym__as_bang_custom] = ACTIONS(5190), + }, + [1262] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5194), + [anon_sym_COMMA] = ACTIONS(5194), + [anon_sym_COLON] = ACTIONS(5194), + [anon_sym_LPAREN] = ACTIONS(5194), + [anon_sym_LBRACK] = ACTIONS(5194), + [anon_sym_RBRACK] = ACTIONS(5194), + [anon_sym_QMARK] = ACTIONS(5196), + [sym__immediate_quest] = ACTIONS(5196), + [anon_sym_AMP] = ACTIONS(5196), + [anon_sym_async] = ACTIONS(5194), + [aux_sym_custom_operator_token1] = ACTIONS(5196), + [anon_sym_LT] = ACTIONS(5196), + [anon_sym_GT] = ACTIONS(5196), + [anon_sym_LBRACE] = ACTIONS(5194), + [anon_sym_RBRACE] = ACTIONS(5194), + [anon_sym_case] = ACTIONS(5194), + [anon_sym_BANG_EQ] = ACTIONS(5196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5196), + [anon_sym_LT_EQ] = ACTIONS(5196), + [anon_sym_GT_EQ] = ACTIONS(5196), + [anon_sym_is] = ACTIONS(5194), + [anon_sym_PLUS] = ACTIONS(5196), + [anon_sym_DASH] = ACTIONS(5196), + [anon_sym_STAR] = ACTIONS(5196), + [anon_sym_SLASH] = ACTIONS(5196), + [anon_sym_PERCENT] = ACTIONS(5196), + [anon_sym_PLUS_PLUS] = ACTIONS(5196), + [anon_sym_DASH_DASH] = ACTIONS(5196), + [anon_sym_PIPE] = ACTIONS(5196), + [anon_sym_CARET] = ACTIONS(5196), + [anon_sym_LT_LT] = ACTIONS(5196), + [anon_sym_GT_GT] = ACTIONS(5196), + [anon_sym_import] = ACTIONS(5194), + [anon_sym_typealias] = ACTIONS(5194), + [anon_sym_struct] = ACTIONS(5194), + [anon_sym_class] = ACTIONS(5194), + [anon_sym_enum] = ACTIONS(5194), + [anon_sym_protocol] = ACTIONS(5194), + [anon_sym_let] = ACTIONS(5194), + [anon_sym_var] = ACTIONS(5194), + [anon_sym_func] = ACTIONS(5194), + [anon_sym_extension] = ACTIONS(5194), + [anon_sym_indirect] = ACTIONS(5194), + [anon_sym_init] = ACTIONS(5194), + [anon_sym_SEMI] = ACTIONS(5194), + [anon_sym_deinit] = ACTIONS(5194), + [anon_sym_subscript] = ACTIONS(5194), + [anon_sym_prefix] = ACTIONS(5194), + [anon_sym_infix] = ACTIONS(5194), + [anon_sym_postfix] = ACTIONS(5194), + [anon_sym_precedencegroup] = ACTIONS(5194), + [anon_sym_associatedtype] = ACTIONS(5194), + [anon_sym_AT] = ACTIONS(5196), + [sym_property_behavior_modifier] = ACTIONS(5194), + [anon_sym_override] = ACTIONS(5194), + [anon_sym_convenience] = ACTIONS(5194), + [anon_sym_required] = ACTIONS(5194), + [anon_sym_public] = ACTIONS(5194), + [anon_sym_private] = ACTIONS(5194), + [anon_sym_internal] = ACTIONS(5194), + [anon_sym_fileprivate] = ACTIONS(5194), + [anon_sym_open] = ACTIONS(5194), + [anon_sym_mutating] = ACTIONS(5194), + [anon_sym_nonmutating] = ACTIONS(5194), + [anon_sym_static] = ACTIONS(5194), + [anon_sym_dynamic] = ACTIONS(5194), + [anon_sym_optional] = ACTIONS(5194), + [anon_sym_final] = ACTIONS(5194), + [anon_sym_inout] = ACTIONS(5194), + [anon_sym_ATescaping] = ACTIONS(5194), + [anon_sym_ATautoclosure] = ACTIONS(5194), + [anon_sym_weak] = ACTIONS(5194), + [anon_sym_unowned] = ACTIONS(5196), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5194), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5194), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5194), + [sym__three_dot_operator_custom] = ACTIONS(5194), + [sym__open_ended_range_operator_custom] = ACTIONS(5194), + [sym__conjunction_operator_custom] = ACTIONS(5194), + [sym__disjunction_operator_custom] = ACTIONS(5194), + [sym__nil_coalescing_operator_custom] = ACTIONS(5194), + [sym__eq_eq_custom] = ACTIONS(5194), + [sym__plus_then_ws] = ACTIONS(5194), + [sym__minus_then_ws] = ACTIONS(5194), + [sym_bang] = ACTIONS(5194), + [sym__as_custom] = ACTIONS(5194), + [sym__as_quest_custom] = ACTIONS(5194), + [sym__as_bang_custom] = ACTIONS(5194), + }, + [1263] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5198), + [anon_sym_COMMA] = ACTIONS(5198), + [anon_sym_COLON] = ACTIONS(5198), + [anon_sym_LPAREN] = ACTIONS(5198), + [anon_sym_LBRACK] = ACTIONS(5198), + [anon_sym_RBRACK] = ACTIONS(5198), + [anon_sym_QMARK] = ACTIONS(5200), + [sym__immediate_quest] = ACTIONS(5200), + [anon_sym_AMP] = ACTIONS(5200), + [anon_sym_async] = ACTIONS(5198), + [aux_sym_custom_operator_token1] = ACTIONS(5200), + [anon_sym_LT] = ACTIONS(5200), + [anon_sym_GT] = ACTIONS(5200), + [anon_sym_LBRACE] = ACTIONS(5198), + [anon_sym_RBRACE] = ACTIONS(5198), + [anon_sym_case] = ACTIONS(5198), + [anon_sym_BANG_EQ] = ACTIONS(5200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5200), + [anon_sym_LT_EQ] = ACTIONS(5200), + [anon_sym_GT_EQ] = ACTIONS(5200), + [anon_sym_is] = ACTIONS(5198), + [anon_sym_PLUS] = ACTIONS(5200), + [anon_sym_DASH] = ACTIONS(5200), + [anon_sym_STAR] = ACTIONS(5200), + [anon_sym_SLASH] = ACTIONS(5200), + [anon_sym_PERCENT] = ACTIONS(5200), + [anon_sym_PLUS_PLUS] = ACTIONS(5200), + [anon_sym_DASH_DASH] = ACTIONS(5200), + [anon_sym_PIPE] = ACTIONS(5200), + [anon_sym_CARET] = ACTIONS(5200), + [anon_sym_LT_LT] = ACTIONS(5200), + [anon_sym_GT_GT] = ACTIONS(5200), + [anon_sym_import] = ACTIONS(5198), + [anon_sym_typealias] = ACTIONS(5198), + [anon_sym_struct] = ACTIONS(5198), + [anon_sym_class] = ACTIONS(5198), + [anon_sym_enum] = ACTIONS(5198), + [anon_sym_protocol] = ACTIONS(5198), + [anon_sym_let] = ACTIONS(5198), + [anon_sym_var] = ACTIONS(5198), + [anon_sym_func] = ACTIONS(5198), + [anon_sym_extension] = ACTIONS(5198), + [anon_sym_indirect] = ACTIONS(5198), + [anon_sym_init] = ACTIONS(5198), + [anon_sym_SEMI] = ACTIONS(5198), + [anon_sym_deinit] = ACTIONS(5198), + [anon_sym_subscript] = ACTIONS(5198), + [anon_sym_prefix] = ACTIONS(5198), + [anon_sym_infix] = ACTIONS(5198), + [anon_sym_postfix] = ACTIONS(5198), + [anon_sym_precedencegroup] = ACTIONS(5198), + [anon_sym_associatedtype] = ACTIONS(5198), + [anon_sym_AT] = ACTIONS(5200), + [sym_property_behavior_modifier] = ACTIONS(5198), + [anon_sym_override] = ACTIONS(5198), + [anon_sym_convenience] = ACTIONS(5198), + [anon_sym_required] = ACTIONS(5198), + [anon_sym_public] = ACTIONS(5198), + [anon_sym_private] = ACTIONS(5198), + [anon_sym_internal] = ACTIONS(5198), + [anon_sym_fileprivate] = ACTIONS(5198), + [anon_sym_open] = ACTIONS(5198), + [anon_sym_mutating] = ACTIONS(5198), + [anon_sym_nonmutating] = ACTIONS(5198), + [anon_sym_static] = ACTIONS(5198), + [anon_sym_dynamic] = ACTIONS(5198), + [anon_sym_optional] = ACTIONS(5198), + [anon_sym_final] = ACTIONS(5198), + [anon_sym_inout] = ACTIONS(5198), + [anon_sym_ATescaping] = ACTIONS(5198), + [anon_sym_ATautoclosure] = ACTIONS(5198), + [anon_sym_weak] = ACTIONS(5198), + [anon_sym_unowned] = ACTIONS(5200), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5198), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5198), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5198), + [sym__three_dot_operator_custom] = ACTIONS(5198), + [sym__open_ended_range_operator_custom] = ACTIONS(5198), + [sym__conjunction_operator_custom] = ACTIONS(5198), + [sym__disjunction_operator_custom] = ACTIONS(5198), + [sym__nil_coalescing_operator_custom] = ACTIONS(5198), + [sym__eq_eq_custom] = ACTIONS(5198), + [sym__plus_then_ws] = ACTIONS(5198), + [sym__minus_then_ws] = ACTIONS(5198), + [sym_bang] = ACTIONS(5198), + [sym__as_custom] = ACTIONS(5198), + [sym__as_quest_custom] = ACTIONS(5198), + [sym__as_bang_custom] = ACTIONS(5198), + }, + [1264] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4831), + [anon_sym_COMMA] = ACTIONS(4831), + [anon_sym_COLON] = ACTIONS(4831), + [anon_sym_LPAREN] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(4831), + [anon_sym_RBRACK] = ACTIONS(4831), + [anon_sym_QMARK] = ACTIONS(4829), + [sym__immediate_quest] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + [anon_sym_async] = ACTIONS(4831), + [aux_sym_custom_operator_token1] = ACTIONS(4829), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_LBRACE] = ACTIONS(4831), + [anon_sym_RBRACE] = ACTIONS(4831), + [anon_sym_case] = ACTIONS(4831), + [anon_sym_BANG_EQ] = ACTIONS(4829), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4829), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4829), + [anon_sym_LT_EQ] = ACTIONS(4829), + [anon_sym_GT_EQ] = ACTIONS(4829), + [anon_sym_is] = ACTIONS(4831), + [anon_sym_PLUS] = ACTIONS(4829), + [anon_sym_DASH] = ACTIONS(4829), + [anon_sym_STAR] = ACTIONS(4829), + [anon_sym_SLASH] = ACTIONS(4829), + [anon_sym_PERCENT] = ACTIONS(4829), + [anon_sym_PLUS_PLUS] = ACTIONS(4829), + [anon_sym_DASH_DASH] = ACTIONS(4829), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_CARET] = ACTIONS(4829), + [anon_sym_LT_LT] = ACTIONS(4829), + [anon_sym_GT_GT] = ACTIONS(4829), + [anon_sym_import] = ACTIONS(4831), + [anon_sym_typealias] = ACTIONS(4831), + [anon_sym_struct] = ACTIONS(4831), + [anon_sym_class] = ACTIONS(4831), + [anon_sym_enum] = ACTIONS(4831), + [anon_sym_protocol] = ACTIONS(4831), + [anon_sym_let] = ACTIONS(4831), + [anon_sym_var] = ACTIONS(4831), + [anon_sym_func] = ACTIONS(4831), + [anon_sym_extension] = ACTIONS(4831), + [anon_sym_indirect] = ACTIONS(4831), + [anon_sym_init] = ACTIONS(4831), + [anon_sym_SEMI] = ACTIONS(4831), + [anon_sym_deinit] = ACTIONS(4831), + [anon_sym_subscript] = ACTIONS(4831), + [anon_sym_prefix] = ACTIONS(4831), + [anon_sym_infix] = ACTIONS(4831), + [anon_sym_postfix] = ACTIONS(4831), + [anon_sym_precedencegroup] = ACTIONS(4831), + [anon_sym_associatedtype] = ACTIONS(4831), + [anon_sym_AT] = ACTIONS(4829), + [sym_property_behavior_modifier] = ACTIONS(4831), + [anon_sym_override] = ACTIONS(4831), + [anon_sym_convenience] = ACTIONS(4831), + [anon_sym_required] = ACTIONS(4831), + [anon_sym_public] = ACTIONS(4831), + [anon_sym_private] = ACTIONS(4831), + [anon_sym_internal] = ACTIONS(4831), + [anon_sym_fileprivate] = ACTIONS(4831), + [anon_sym_open] = ACTIONS(4831), + [anon_sym_mutating] = ACTIONS(4831), + [anon_sym_nonmutating] = ACTIONS(4831), + [anon_sym_static] = ACTIONS(4831), + [anon_sym_dynamic] = ACTIONS(4831), + [anon_sym_optional] = ACTIONS(4831), + [anon_sym_final] = ACTIONS(4831), + [anon_sym_inout] = ACTIONS(4831), + [anon_sym_ATescaping] = ACTIONS(4831), + [anon_sym_ATautoclosure] = ACTIONS(4831), + [anon_sym_weak] = ACTIONS(4831), + [anon_sym_unowned] = ACTIONS(4829), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4831), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4831), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4831), + [sym__three_dot_operator_custom] = ACTIONS(4831), + [sym__open_ended_range_operator_custom] = ACTIONS(4831), + [sym__conjunction_operator_custom] = ACTIONS(4831), + [sym__disjunction_operator_custom] = ACTIONS(4831), + [sym__nil_coalescing_operator_custom] = ACTIONS(4831), + [sym__eq_eq_custom] = ACTIONS(4831), + [sym__plus_then_ws] = ACTIONS(4831), + [sym__minus_then_ws] = ACTIONS(4831), + [sym_bang] = ACTIONS(4831), + [sym__as_custom] = ACTIONS(4831), + [sym__as_quest_custom] = ACTIONS(4831), + [sym__as_bang_custom] = ACTIONS(4831), + }, + [1265] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4827), + [anon_sym_COMMA] = ACTIONS(4827), + [anon_sym_COLON] = ACTIONS(4827), + [anon_sym_LPAREN] = ACTIONS(4827), + [anon_sym_LBRACK] = ACTIONS(4827), + [anon_sym_RBRACK] = ACTIONS(4827), + [anon_sym_QMARK] = ACTIONS(4825), + [sym__immediate_quest] = ACTIONS(4825), + [anon_sym_AMP] = ACTIONS(4825), + [anon_sym_async] = ACTIONS(4827), + [aux_sym_custom_operator_token1] = ACTIONS(4825), + [anon_sym_LT] = ACTIONS(4825), + [anon_sym_GT] = ACTIONS(4825), + [anon_sym_LBRACE] = ACTIONS(4827), + [anon_sym_RBRACE] = ACTIONS(4827), + [anon_sym_case] = ACTIONS(4827), + [anon_sym_BANG_EQ] = ACTIONS(4825), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4825), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4825), + [anon_sym_LT_EQ] = ACTIONS(4825), + [anon_sym_GT_EQ] = ACTIONS(4825), + [anon_sym_is] = ACTIONS(4827), + [anon_sym_PLUS] = ACTIONS(4825), + [anon_sym_DASH] = ACTIONS(4825), + [anon_sym_STAR] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4825), + [anon_sym_PERCENT] = ACTIONS(4825), + [anon_sym_PLUS_PLUS] = ACTIONS(4825), + [anon_sym_DASH_DASH] = ACTIONS(4825), + [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_LT_LT] = ACTIONS(4825), + [anon_sym_GT_GT] = ACTIONS(4825), + [anon_sym_import] = ACTIONS(4827), + [anon_sym_typealias] = ACTIONS(4827), + [anon_sym_struct] = ACTIONS(4827), + [anon_sym_class] = ACTIONS(4827), + [anon_sym_enum] = ACTIONS(4827), + [anon_sym_protocol] = ACTIONS(4827), + [anon_sym_let] = ACTIONS(4827), + [anon_sym_var] = ACTIONS(4827), + [anon_sym_func] = ACTIONS(4827), + [anon_sym_extension] = ACTIONS(4827), + [anon_sym_indirect] = ACTIONS(4827), + [anon_sym_init] = ACTIONS(4827), + [anon_sym_SEMI] = ACTIONS(4827), + [anon_sym_deinit] = ACTIONS(4827), + [anon_sym_subscript] = ACTIONS(4827), + [anon_sym_prefix] = ACTIONS(4827), + [anon_sym_infix] = ACTIONS(4827), + [anon_sym_postfix] = ACTIONS(4827), + [anon_sym_precedencegroup] = ACTIONS(4827), + [anon_sym_associatedtype] = ACTIONS(4827), + [anon_sym_AT] = ACTIONS(4825), + [sym_property_behavior_modifier] = ACTIONS(4827), + [anon_sym_override] = ACTIONS(4827), + [anon_sym_convenience] = ACTIONS(4827), + [anon_sym_required] = ACTIONS(4827), + [anon_sym_public] = ACTIONS(4827), + [anon_sym_private] = ACTIONS(4827), + [anon_sym_internal] = ACTIONS(4827), + [anon_sym_fileprivate] = ACTIONS(4827), + [anon_sym_open] = ACTIONS(4827), + [anon_sym_mutating] = ACTIONS(4827), + [anon_sym_nonmutating] = ACTIONS(4827), + [anon_sym_static] = ACTIONS(4827), + [anon_sym_dynamic] = ACTIONS(4827), + [anon_sym_optional] = ACTIONS(4827), + [anon_sym_final] = ACTIONS(4827), + [anon_sym_inout] = ACTIONS(4827), + [anon_sym_ATescaping] = ACTIONS(4827), + [anon_sym_ATautoclosure] = ACTIONS(4827), + [anon_sym_weak] = ACTIONS(4827), + [anon_sym_unowned] = ACTIONS(4825), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4827), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4827), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4827), + [sym__three_dot_operator_custom] = ACTIONS(4827), + [sym__open_ended_range_operator_custom] = ACTIONS(4827), + [sym__conjunction_operator_custom] = ACTIONS(4827), + [sym__disjunction_operator_custom] = ACTIONS(4827), + [sym__nil_coalescing_operator_custom] = ACTIONS(4827), + [sym__eq_eq_custom] = ACTIONS(4827), + [sym__plus_then_ws] = ACTIONS(4827), + [sym__minus_then_ws] = ACTIONS(4827), + [sym_bang] = ACTIONS(4827), + [sym__as_custom] = ACTIONS(4827), + [sym__as_quest_custom] = ACTIONS(4827), + [sym__as_bang_custom] = ACTIONS(4827), + }, + [1266] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4899), + [anon_sym_COMMA] = ACTIONS(4899), + [anon_sym_COLON] = ACTIONS(4899), + [anon_sym_LPAREN] = ACTIONS(4899), + [anon_sym_LBRACK] = ACTIONS(4899), + [anon_sym_RBRACK] = ACTIONS(4899), + [anon_sym_QMARK] = ACTIONS(4897), + [sym__immediate_quest] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), + [anon_sym_async] = ACTIONS(4899), + [aux_sym_custom_operator_token1] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_LBRACE] = ACTIONS(4899), + [anon_sym_RBRACE] = ACTIONS(4899), + [anon_sym_case] = ACTIONS(4899), + [anon_sym_BANG_EQ] = ACTIONS(4897), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4897), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4897), + [anon_sym_LT_EQ] = ACTIONS(4897), + [anon_sym_GT_EQ] = ACTIONS(4897), + [anon_sym_is] = ACTIONS(4899), + [anon_sym_PLUS] = ACTIONS(4897), + [anon_sym_DASH] = ACTIONS(4897), + [anon_sym_STAR] = ACTIONS(4897), + [anon_sym_SLASH] = ACTIONS(4897), + [anon_sym_PERCENT] = ACTIONS(4897), + [anon_sym_PLUS_PLUS] = ACTIONS(4897), + [anon_sym_DASH_DASH] = ACTIONS(4897), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_CARET] = ACTIONS(4897), + [anon_sym_LT_LT] = ACTIONS(4897), + [anon_sym_GT_GT] = ACTIONS(4897), + [anon_sym_import] = ACTIONS(4899), + [anon_sym_typealias] = ACTIONS(4899), + [anon_sym_struct] = ACTIONS(4899), + [anon_sym_class] = ACTIONS(4899), + [anon_sym_enum] = ACTIONS(4899), + [anon_sym_protocol] = ACTIONS(4899), + [anon_sym_let] = ACTIONS(4899), + [anon_sym_var] = ACTIONS(4899), + [anon_sym_func] = ACTIONS(4899), + [anon_sym_extension] = ACTIONS(4899), + [anon_sym_indirect] = ACTIONS(4899), + [anon_sym_init] = ACTIONS(4899), + [anon_sym_SEMI] = ACTIONS(4899), + [anon_sym_deinit] = ACTIONS(4899), + [anon_sym_subscript] = ACTIONS(4899), + [anon_sym_prefix] = ACTIONS(4899), + [anon_sym_infix] = ACTIONS(4899), + [anon_sym_postfix] = ACTIONS(4899), + [anon_sym_precedencegroup] = ACTIONS(4899), + [anon_sym_associatedtype] = ACTIONS(4899), + [anon_sym_AT] = ACTIONS(4897), + [sym_property_behavior_modifier] = ACTIONS(4899), + [anon_sym_override] = ACTIONS(4899), + [anon_sym_convenience] = ACTIONS(4899), + [anon_sym_required] = ACTIONS(4899), + [anon_sym_public] = ACTIONS(4899), + [anon_sym_private] = ACTIONS(4899), + [anon_sym_internal] = ACTIONS(4899), + [anon_sym_fileprivate] = ACTIONS(4899), + [anon_sym_open] = ACTIONS(4899), + [anon_sym_mutating] = ACTIONS(4899), + [anon_sym_nonmutating] = ACTIONS(4899), + [anon_sym_static] = ACTIONS(4899), + [anon_sym_dynamic] = ACTIONS(4899), + [anon_sym_optional] = ACTIONS(4899), + [anon_sym_final] = ACTIONS(4899), + [anon_sym_inout] = ACTIONS(4899), + [anon_sym_ATescaping] = ACTIONS(4899), + [anon_sym_ATautoclosure] = ACTIONS(4899), + [anon_sym_weak] = ACTIONS(4899), + [anon_sym_unowned] = ACTIONS(4897), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4899), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4899), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4899), + [sym__three_dot_operator_custom] = ACTIONS(4899), + [sym__open_ended_range_operator_custom] = ACTIONS(4899), + [sym__conjunction_operator_custom] = ACTIONS(4899), + [sym__disjunction_operator_custom] = ACTIONS(4899), + [sym__nil_coalescing_operator_custom] = ACTIONS(4899), + [sym__eq_eq_custom] = ACTIONS(4899), + [sym__plus_then_ws] = ACTIONS(4899), + [sym__minus_then_ws] = ACTIONS(4899), + [sym_bang] = ACTIONS(4899), + [sym__as_custom] = ACTIONS(4899), + [sym__as_quest_custom] = ACTIONS(4899), + [sym__as_bang_custom] = ACTIONS(4899), + }, + [1267] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4839), + [anon_sym_COMMA] = ACTIONS(4839), + [anon_sym_COLON] = ACTIONS(4839), + [anon_sym_LPAREN] = ACTIONS(4839), + [anon_sym_LBRACK] = ACTIONS(4839), + [anon_sym_RBRACK] = ACTIONS(4839), + [anon_sym_QMARK] = ACTIONS(4837), + [sym__immediate_quest] = ACTIONS(4837), + [anon_sym_AMP] = ACTIONS(4837), + [anon_sym_async] = ACTIONS(4839), + [aux_sym_custom_operator_token1] = ACTIONS(4837), + [anon_sym_LT] = ACTIONS(4837), + [anon_sym_GT] = ACTIONS(4837), + [anon_sym_LBRACE] = ACTIONS(4839), + [anon_sym_RBRACE] = ACTIONS(4839), + [anon_sym_case] = ACTIONS(4839), + [anon_sym_BANG_EQ] = ACTIONS(4837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4837), + [anon_sym_LT_EQ] = ACTIONS(4837), + [anon_sym_GT_EQ] = ACTIONS(4837), + [anon_sym_is] = ACTIONS(4839), + [anon_sym_PLUS] = ACTIONS(4837), + [anon_sym_DASH] = ACTIONS(4837), + [anon_sym_STAR] = ACTIONS(4837), + [anon_sym_SLASH] = ACTIONS(4837), + [anon_sym_PERCENT] = ACTIONS(4837), + [anon_sym_PLUS_PLUS] = ACTIONS(4837), + [anon_sym_DASH_DASH] = ACTIONS(4837), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_CARET] = ACTIONS(4837), + [anon_sym_LT_LT] = ACTIONS(4837), + [anon_sym_GT_GT] = ACTIONS(4837), + [anon_sym_import] = ACTIONS(4839), + [anon_sym_typealias] = ACTIONS(4839), + [anon_sym_struct] = ACTIONS(4839), + [anon_sym_class] = ACTIONS(4839), + [anon_sym_enum] = ACTIONS(4839), + [anon_sym_protocol] = ACTIONS(4839), + [anon_sym_let] = ACTIONS(4839), + [anon_sym_var] = ACTIONS(4839), + [anon_sym_func] = ACTIONS(4839), + [anon_sym_extension] = ACTIONS(4839), + [anon_sym_indirect] = ACTIONS(4839), + [anon_sym_init] = ACTIONS(4839), + [anon_sym_SEMI] = ACTIONS(4839), + [anon_sym_deinit] = ACTIONS(4839), + [anon_sym_subscript] = ACTIONS(4839), + [anon_sym_prefix] = ACTIONS(4839), + [anon_sym_infix] = ACTIONS(4839), + [anon_sym_postfix] = ACTIONS(4839), + [anon_sym_precedencegroup] = ACTIONS(4839), + [anon_sym_associatedtype] = ACTIONS(4839), + [anon_sym_AT] = ACTIONS(4837), + [sym_property_behavior_modifier] = ACTIONS(4839), + [anon_sym_override] = ACTIONS(4839), + [anon_sym_convenience] = ACTIONS(4839), + [anon_sym_required] = ACTIONS(4839), + [anon_sym_public] = ACTIONS(4839), + [anon_sym_private] = ACTIONS(4839), + [anon_sym_internal] = ACTIONS(4839), + [anon_sym_fileprivate] = ACTIONS(4839), + [anon_sym_open] = ACTIONS(4839), + [anon_sym_mutating] = ACTIONS(4839), + [anon_sym_nonmutating] = ACTIONS(4839), + [anon_sym_static] = ACTIONS(4839), + [anon_sym_dynamic] = ACTIONS(4839), + [anon_sym_optional] = ACTIONS(4839), + [anon_sym_final] = ACTIONS(4839), + [anon_sym_inout] = ACTIONS(4839), + [anon_sym_ATescaping] = ACTIONS(4839), + [anon_sym_ATautoclosure] = ACTIONS(4839), + [anon_sym_weak] = ACTIONS(4839), + [anon_sym_unowned] = ACTIONS(4837), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4839), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4839), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4839), + [sym__three_dot_operator_custom] = ACTIONS(4839), + [sym__open_ended_range_operator_custom] = ACTIONS(4839), + [sym__conjunction_operator_custom] = ACTIONS(4839), + [sym__disjunction_operator_custom] = ACTIONS(4839), + [sym__nil_coalescing_operator_custom] = ACTIONS(4839), + [sym__eq_eq_custom] = ACTIONS(4839), + [sym__plus_then_ws] = ACTIONS(4839), + [sym__minus_then_ws] = ACTIONS(4839), + [sym_bang] = ACTIONS(4839), + [sym__as_custom] = ACTIONS(4839), + [sym__as_quest_custom] = ACTIONS(4839), + [sym__as_bang_custom] = ACTIONS(4839), + }, + [1268] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4895), + [anon_sym_COMMA] = ACTIONS(4895), + [anon_sym_COLON] = ACTIONS(4895), + [anon_sym_LPAREN] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4895), + [anon_sym_RBRACK] = ACTIONS(4895), + [anon_sym_QMARK] = ACTIONS(4893), + [sym__immediate_quest] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4893), + [anon_sym_async] = ACTIONS(4895), + [aux_sym_custom_operator_token1] = ACTIONS(4893), + [anon_sym_LT] = ACTIONS(4893), + [anon_sym_GT] = ACTIONS(4893), + [anon_sym_LBRACE] = ACTIONS(4895), + [anon_sym_RBRACE] = ACTIONS(4895), + [anon_sym_case] = ACTIONS(4895), + [anon_sym_BANG_EQ] = ACTIONS(4893), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4893), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4893), + [anon_sym_LT_EQ] = ACTIONS(4893), + [anon_sym_GT_EQ] = ACTIONS(4893), + [anon_sym_is] = ACTIONS(4895), + [anon_sym_PLUS] = ACTIONS(4893), + [anon_sym_DASH] = ACTIONS(4893), + [anon_sym_STAR] = ACTIONS(4893), + [anon_sym_SLASH] = ACTIONS(4893), + [anon_sym_PERCENT] = ACTIONS(4893), + [anon_sym_PLUS_PLUS] = ACTIONS(4893), + [anon_sym_DASH_DASH] = ACTIONS(4893), + [anon_sym_PIPE] = ACTIONS(4893), + [anon_sym_CARET] = ACTIONS(4893), + [anon_sym_LT_LT] = ACTIONS(4893), + [anon_sym_GT_GT] = ACTIONS(4893), + [anon_sym_import] = ACTIONS(4895), + [anon_sym_typealias] = ACTIONS(4895), + [anon_sym_struct] = ACTIONS(4895), + [anon_sym_class] = ACTIONS(4895), + [anon_sym_enum] = ACTIONS(4895), + [anon_sym_protocol] = ACTIONS(4895), + [anon_sym_let] = ACTIONS(4895), + [anon_sym_var] = ACTIONS(4895), + [anon_sym_func] = ACTIONS(4895), + [anon_sym_extension] = ACTIONS(4895), + [anon_sym_indirect] = ACTIONS(4895), + [anon_sym_init] = ACTIONS(4895), + [anon_sym_SEMI] = ACTIONS(4895), + [anon_sym_deinit] = ACTIONS(4895), + [anon_sym_subscript] = ACTIONS(4895), + [anon_sym_prefix] = ACTIONS(4895), + [anon_sym_infix] = ACTIONS(4895), + [anon_sym_postfix] = ACTIONS(4895), + [anon_sym_precedencegroup] = ACTIONS(4895), + [anon_sym_associatedtype] = ACTIONS(4895), + [anon_sym_AT] = ACTIONS(4893), + [sym_property_behavior_modifier] = ACTIONS(4895), + [anon_sym_override] = ACTIONS(4895), + [anon_sym_convenience] = ACTIONS(4895), + [anon_sym_required] = ACTIONS(4895), + [anon_sym_public] = ACTIONS(4895), + [anon_sym_private] = ACTIONS(4895), + [anon_sym_internal] = ACTIONS(4895), + [anon_sym_fileprivate] = ACTIONS(4895), + [anon_sym_open] = ACTIONS(4895), + [anon_sym_mutating] = ACTIONS(4895), + [anon_sym_nonmutating] = ACTIONS(4895), + [anon_sym_static] = ACTIONS(4895), + [anon_sym_dynamic] = ACTIONS(4895), + [anon_sym_optional] = ACTIONS(4895), + [anon_sym_final] = ACTIONS(4895), + [anon_sym_inout] = ACTIONS(4895), + [anon_sym_ATescaping] = ACTIONS(4895), + [anon_sym_ATautoclosure] = ACTIONS(4895), + [anon_sym_weak] = ACTIONS(4895), + [anon_sym_unowned] = ACTIONS(4893), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4895), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4895), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4895), + [sym__three_dot_operator_custom] = ACTIONS(4895), + [sym__open_ended_range_operator_custom] = ACTIONS(4895), + [sym__conjunction_operator_custom] = ACTIONS(4895), + [sym__disjunction_operator_custom] = ACTIONS(4895), + [sym__nil_coalescing_operator_custom] = ACTIONS(4895), + [sym__eq_eq_custom] = ACTIONS(4895), + [sym__plus_then_ws] = ACTIONS(4895), + [sym__minus_then_ws] = ACTIONS(4895), + [sym_bang] = ACTIONS(4895), + [sym__as_custom] = ACTIONS(4895), + [sym__as_quest_custom] = ACTIONS(4895), + [sym__as_bang_custom] = ACTIONS(4895), + }, + [1269] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5202), + [anon_sym_COMMA] = ACTIONS(5202), + [anon_sym_COLON] = ACTIONS(5202), + [anon_sym_LPAREN] = ACTIONS(5202), + [anon_sym_LBRACK] = ACTIONS(5202), + [anon_sym_RBRACK] = ACTIONS(5202), + [anon_sym_QMARK] = ACTIONS(5204), + [sym__immediate_quest] = ACTIONS(5204), + [anon_sym_AMP] = ACTIONS(5204), + [anon_sym_async] = ACTIONS(5202), + [aux_sym_custom_operator_token1] = ACTIONS(5204), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_LBRACE] = ACTIONS(5202), + [anon_sym_RBRACE] = ACTIONS(5202), + [anon_sym_case] = ACTIONS(5202), + [anon_sym_BANG_EQ] = ACTIONS(5204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5204), + [anon_sym_LT_EQ] = ACTIONS(5204), + [anon_sym_GT_EQ] = ACTIONS(5204), + [anon_sym_is] = ACTIONS(5202), + [anon_sym_PLUS] = ACTIONS(5204), + [anon_sym_DASH] = ACTIONS(5204), + [anon_sym_STAR] = ACTIONS(5204), + [anon_sym_SLASH] = ACTIONS(5204), + [anon_sym_PERCENT] = ACTIONS(5204), + [anon_sym_PLUS_PLUS] = ACTIONS(5204), + [anon_sym_DASH_DASH] = ACTIONS(5204), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_CARET] = ACTIONS(5204), + [anon_sym_LT_LT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5204), + [anon_sym_import] = ACTIONS(5202), + [anon_sym_typealias] = ACTIONS(5202), + [anon_sym_struct] = ACTIONS(5202), + [anon_sym_class] = ACTIONS(5202), + [anon_sym_enum] = ACTIONS(5202), + [anon_sym_protocol] = ACTIONS(5202), + [anon_sym_let] = ACTIONS(5202), + [anon_sym_var] = ACTIONS(5202), + [anon_sym_func] = ACTIONS(5202), + [anon_sym_extension] = ACTIONS(5202), + [anon_sym_indirect] = ACTIONS(5202), + [anon_sym_init] = ACTIONS(5202), + [anon_sym_SEMI] = ACTIONS(5202), + [anon_sym_deinit] = ACTIONS(5202), + [anon_sym_subscript] = ACTIONS(5202), + [anon_sym_prefix] = ACTIONS(5202), + [anon_sym_infix] = ACTIONS(5202), + [anon_sym_postfix] = ACTIONS(5202), + [anon_sym_precedencegroup] = ACTIONS(5202), + [anon_sym_associatedtype] = ACTIONS(5202), + [anon_sym_AT] = ACTIONS(5204), + [sym_property_behavior_modifier] = ACTIONS(5202), + [anon_sym_override] = ACTIONS(5202), + [anon_sym_convenience] = ACTIONS(5202), + [anon_sym_required] = ACTIONS(5202), + [anon_sym_public] = ACTIONS(5202), + [anon_sym_private] = ACTIONS(5202), + [anon_sym_internal] = ACTIONS(5202), + [anon_sym_fileprivate] = ACTIONS(5202), + [anon_sym_open] = ACTIONS(5202), + [anon_sym_mutating] = ACTIONS(5202), + [anon_sym_nonmutating] = ACTIONS(5202), + [anon_sym_static] = ACTIONS(5202), + [anon_sym_dynamic] = ACTIONS(5202), + [anon_sym_optional] = ACTIONS(5202), + [anon_sym_final] = ACTIONS(5202), + [anon_sym_inout] = ACTIONS(5202), + [anon_sym_ATescaping] = ACTIONS(5202), + [anon_sym_ATautoclosure] = ACTIONS(5202), + [anon_sym_weak] = ACTIONS(5202), + [anon_sym_unowned] = ACTIONS(5204), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5202), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5202), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5202), + [sym__three_dot_operator_custom] = ACTIONS(5202), + [sym__open_ended_range_operator_custom] = ACTIONS(5202), + [sym__conjunction_operator_custom] = ACTIONS(5202), + [sym__disjunction_operator_custom] = ACTIONS(5202), + [sym__nil_coalescing_operator_custom] = ACTIONS(5202), + [sym__eq_eq_custom] = ACTIONS(5202), + [sym__plus_then_ws] = ACTIONS(5202), + [sym__minus_then_ws] = ACTIONS(5202), + [sym_bang] = ACTIONS(5202), + [sym__as_custom] = ACTIONS(5202), + [sym__as_quest_custom] = ACTIONS(5202), + [sym__as_bang_custom] = ACTIONS(5202), + }, + [1270] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5206), + [anon_sym_COMMA] = ACTIONS(5206), + [anon_sym_COLON] = ACTIONS(5206), + [anon_sym_LPAREN] = ACTIONS(5206), + [anon_sym_LBRACK] = ACTIONS(5206), + [anon_sym_RBRACK] = ACTIONS(5206), + [anon_sym_QMARK] = ACTIONS(5208), + [sym__immediate_quest] = ACTIONS(5208), + [anon_sym_AMP] = ACTIONS(5208), + [anon_sym_async] = ACTIONS(5206), + [aux_sym_custom_operator_token1] = ACTIONS(5208), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_LBRACE] = ACTIONS(5206), + [anon_sym_RBRACE] = ACTIONS(5206), + [anon_sym_case] = ACTIONS(5206), + [anon_sym_BANG_EQ] = ACTIONS(5208), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5208), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5208), + [anon_sym_LT_EQ] = ACTIONS(5208), + [anon_sym_GT_EQ] = ACTIONS(5208), + [anon_sym_is] = ACTIONS(5206), + [anon_sym_PLUS] = ACTIONS(5208), + [anon_sym_DASH] = ACTIONS(5208), + [anon_sym_STAR] = ACTIONS(5208), + [anon_sym_SLASH] = ACTIONS(5208), + [anon_sym_PERCENT] = ACTIONS(5208), + [anon_sym_PLUS_PLUS] = ACTIONS(5208), + [anon_sym_DASH_DASH] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_CARET] = ACTIONS(5208), + [anon_sym_LT_LT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5208), + [anon_sym_import] = ACTIONS(5206), + [anon_sym_typealias] = ACTIONS(5206), + [anon_sym_struct] = ACTIONS(5206), + [anon_sym_class] = ACTIONS(5206), + [anon_sym_enum] = ACTIONS(5206), + [anon_sym_protocol] = ACTIONS(5206), + [anon_sym_let] = ACTIONS(5206), + [anon_sym_var] = ACTIONS(5206), + [anon_sym_func] = ACTIONS(5206), + [anon_sym_extension] = ACTIONS(5206), + [anon_sym_indirect] = ACTIONS(5206), + [anon_sym_init] = ACTIONS(5206), + [anon_sym_SEMI] = ACTIONS(5206), + [anon_sym_deinit] = ACTIONS(5206), + [anon_sym_subscript] = ACTIONS(5206), + [anon_sym_prefix] = ACTIONS(5206), + [anon_sym_infix] = ACTIONS(5206), + [anon_sym_postfix] = ACTIONS(5206), + [anon_sym_precedencegroup] = ACTIONS(5206), + [anon_sym_associatedtype] = ACTIONS(5206), + [anon_sym_AT] = ACTIONS(5208), + [sym_property_behavior_modifier] = ACTIONS(5206), + [anon_sym_override] = ACTIONS(5206), + [anon_sym_convenience] = ACTIONS(5206), + [anon_sym_required] = ACTIONS(5206), + [anon_sym_public] = ACTIONS(5206), + [anon_sym_private] = ACTIONS(5206), + [anon_sym_internal] = ACTIONS(5206), + [anon_sym_fileprivate] = ACTIONS(5206), + [anon_sym_open] = ACTIONS(5206), + [anon_sym_mutating] = ACTIONS(5206), + [anon_sym_nonmutating] = ACTIONS(5206), + [anon_sym_static] = ACTIONS(5206), + [anon_sym_dynamic] = ACTIONS(5206), + [anon_sym_optional] = ACTIONS(5206), + [anon_sym_final] = ACTIONS(5206), + [anon_sym_inout] = ACTIONS(5206), + [anon_sym_ATescaping] = ACTIONS(5206), + [anon_sym_ATautoclosure] = ACTIONS(5206), + [anon_sym_weak] = ACTIONS(5206), + [anon_sym_unowned] = ACTIONS(5208), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5206), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5206), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5206), + [sym__three_dot_operator_custom] = ACTIONS(5206), + [sym__open_ended_range_operator_custom] = ACTIONS(5206), + [sym__conjunction_operator_custom] = ACTIONS(5206), + [sym__disjunction_operator_custom] = ACTIONS(5206), + [sym__nil_coalescing_operator_custom] = ACTIONS(5206), + [sym__eq_eq_custom] = ACTIONS(5206), + [sym__plus_then_ws] = ACTIONS(5206), + [sym__minus_then_ws] = ACTIONS(5206), + [sym_bang] = ACTIONS(5206), + [sym__as_custom] = ACTIONS(5206), + [sym__as_quest_custom] = ACTIONS(5206), + [sym__as_bang_custom] = ACTIONS(5206), + }, + [1271] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5210), + [anon_sym_COMMA] = ACTIONS(5210), + [anon_sym_COLON] = ACTIONS(5210), + [anon_sym_LPAREN] = ACTIONS(5210), + [anon_sym_LBRACK] = ACTIONS(5210), + [anon_sym_RBRACK] = ACTIONS(5210), + [anon_sym_QMARK] = ACTIONS(5212), + [sym__immediate_quest] = ACTIONS(5212), + [anon_sym_AMP] = ACTIONS(5212), + [anon_sym_async] = ACTIONS(5210), + [aux_sym_custom_operator_token1] = ACTIONS(5212), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_LBRACE] = ACTIONS(5210), + [anon_sym_RBRACE] = ACTIONS(5210), + [anon_sym_case] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5212), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5212), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5212), + [anon_sym_LT_EQ] = ACTIONS(5212), + [anon_sym_GT_EQ] = ACTIONS(5212), + [anon_sym_is] = ACTIONS(5210), + [anon_sym_PLUS] = ACTIONS(5212), + [anon_sym_DASH] = ACTIONS(5212), + [anon_sym_STAR] = ACTIONS(5212), + [anon_sym_SLASH] = ACTIONS(5212), + [anon_sym_PERCENT] = ACTIONS(5212), + [anon_sym_PLUS_PLUS] = ACTIONS(5212), + [anon_sym_DASH_DASH] = ACTIONS(5212), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_CARET] = ACTIONS(5212), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5212), + [anon_sym_import] = ACTIONS(5210), + [anon_sym_typealias] = ACTIONS(5210), + [anon_sym_struct] = ACTIONS(5210), + [anon_sym_class] = ACTIONS(5210), + [anon_sym_enum] = ACTIONS(5210), + [anon_sym_protocol] = ACTIONS(5210), + [anon_sym_let] = ACTIONS(5210), + [anon_sym_var] = ACTIONS(5210), + [anon_sym_func] = ACTIONS(5210), + [anon_sym_extension] = ACTIONS(5210), + [anon_sym_indirect] = ACTIONS(5210), + [anon_sym_init] = ACTIONS(5210), + [anon_sym_SEMI] = ACTIONS(5210), + [anon_sym_deinit] = ACTIONS(5210), + [anon_sym_subscript] = ACTIONS(5210), + [anon_sym_prefix] = ACTIONS(5210), + [anon_sym_infix] = ACTIONS(5210), + [anon_sym_postfix] = ACTIONS(5210), + [anon_sym_precedencegroup] = ACTIONS(5210), + [anon_sym_associatedtype] = ACTIONS(5210), + [anon_sym_AT] = ACTIONS(5212), + [sym_property_behavior_modifier] = ACTIONS(5210), + [anon_sym_override] = ACTIONS(5210), + [anon_sym_convenience] = ACTIONS(5210), + [anon_sym_required] = ACTIONS(5210), + [anon_sym_public] = ACTIONS(5210), + [anon_sym_private] = ACTIONS(5210), + [anon_sym_internal] = ACTIONS(5210), + [anon_sym_fileprivate] = ACTIONS(5210), + [anon_sym_open] = ACTIONS(5210), + [anon_sym_mutating] = ACTIONS(5210), + [anon_sym_nonmutating] = ACTIONS(5210), + [anon_sym_static] = ACTIONS(5210), + [anon_sym_dynamic] = ACTIONS(5210), + [anon_sym_optional] = ACTIONS(5210), + [anon_sym_final] = ACTIONS(5210), + [anon_sym_inout] = ACTIONS(5210), + [anon_sym_ATescaping] = ACTIONS(5210), + [anon_sym_ATautoclosure] = ACTIONS(5210), + [anon_sym_weak] = ACTIONS(5210), + [anon_sym_unowned] = ACTIONS(5212), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5210), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5210), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5210), + [sym__three_dot_operator_custom] = ACTIONS(5210), + [sym__open_ended_range_operator_custom] = ACTIONS(5210), + [sym__conjunction_operator_custom] = ACTIONS(5210), + [sym__disjunction_operator_custom] = ACTIONS(5210), + [sym__nil_coalescing_operator_custom] = ACTIONS(5210), + [sym__eq_eq_custom] = ACTIONS(5210), + [sym__plus_then_ws] = ACTIONS(5210), + [sym__minus_then_ws] = ACTIONS(5210), + [sym_bang] = ACTIONS(5210), + [sym__as_custom] = ACTIONS(5210), + [sym__as_quest_custom] = ACTIONS(5210), + [sym__as_bang_custom] = ACTIONS(5210), + }, + [1272] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5214), + [anon_sym_COMMA] = ACTIONS(5214), + [anon_sym_COLON] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(5214), + [anon_sym_LBRACK] = ACTIONS(5214), + [anon_sym_RBRACK] = ACTIONS(5214), + [anon_sym_QMARK] = ACTIONS(5216), + [sym__immediate_quest] = ACTIONS(5216), + [anon_sym_AMP] = ACTIONS(5216), + [anon_sym_async] = ACTIONS(5214), + [aux_sym_custom_operator_token1] = ACTIONS(5216), + [anon_sym_LT] = ACTIONS(5216), + [anon_sym_GT] = ACTIONS(5216), + [anon_sym_LBRACE] = ACTIONS(5214), + [anon_sym_RBRACE] = ACTIONS(5214), + [anon_sym_case] = ACTIONS(5214), + [anon_sym_BANG_EQ] = ACTIONS(5216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5216), + [anon_sym_LT_EQ] = ACTIONS(5216), + [anon_sym_GT_EQ] = ACTIONS(5216), + [anon_sym_is] = ACTIONS(5214), + [anon_sym_PLUS] = ACTIONS(5216), + [anon_sym_DASH] = ACTIONS(5216), + [anon_sym_STAR] = ACTIONS(5216), + [anon_sym_SLASH] = ACTIONS(5216), + [anon_sym_PERCENT] = ACTIONS(5216), + [anon_sym_PLUS_PLUS] = ACTIONS(5216), + [anon_sym_DASH_DASH] = ACTIONS(5216), + [anon_sym_PIPE] = ACTIONS(5216), + [anon_sym_CARET] = ACTIONS(5216), + [anon_sym_LT_LT] = ACTIONS(5216), + [anon_sym_GT_GT] = ACTIONS(5216), + [anon_sym_import] = ACTIONS(5214), + [anon_sym_typealias] = ACTIONS(5214), + [anon_sym_struct] = ACTIONS(5214), + [anon_sym_class] = ACTIONS(5214), + [anon_sym_enum] = ACTIONS(5214), + [anon_sym_protocol] = ACTIONS(5214), + [anon_sym_let] = ACTIONS(5214), + [anon_sym_var] = ACTIONS(5214), + [anon_sym_func] = ACTIONS(5214), + [anon_sym_extension] = ACTIONS(5214), + [anon_sym_indirect] = ACTIONS(5214), + [anon_sym_init] = ACTIONS(5214), + [anon_sym_SEMI] = ACTIONS(5214), + [anon_sym_deinit] = ACTIONS(5214), + [anon_sym_subscript] = ACTIONS(5214), + [anon_sym_prefix] = ACTIONS(5214), + [anon_sym_infix] = ACTIONS(5214), + [anon_sym_postfix] = ACTIONS(5214), + [anon_sym_precedencegroup] = ACTIONS(5214), + [anon_sym_associatedtype] = ACTIONS(5214), + [anon_sym_AT] = ACTIONS(5216), + [sym_property_behavior_modifier] = ACTIONS(5214), + [anon_sym_override] = ACTIONS(5214), + [anon_sym_convenience] = ACTIONS(5214), + [anon_sym_required] = ACTIONS(5214), + [anon_sym_public] = ACTIONS(5214), + [anon_sym_private] = ACTIONS(5214), + [anon_sym_internal] = ACTIONS(5214), + [anon_sym_fileprivate] = ACTIONS(5214), + [anon_sym_open] = ACTIONS(5214), + [anon_sym_mutating] = ACTIONS(5214), + [anon_sym_nonmutating] = ACTIONS(5214), + [anon_sym_static] = ACTIONS(5214), + [anon_sym_dynamic] = ACTIONS(5214), + [anon_sym_optional] = ACTIONS(5214), + [anon_sym_final] = ACTIONS(5214), + [anon_sym_inout] = ACTIONS(5214), + [anon_sym_ATescaping] = ACTIONS(5214), + [anon_sym_ATautoclosure] = ACTIONS(5214), + [anon_sym_weak] = ACTIONS(5214), + [anon_sym_unowned] = ACTIONS(5216), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5214), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5214), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5214), + [sym__three_dot_operator_custom] = ACTIONS(5214), + [sym__open_ended_range_operator_custom] = ACTIONS(5214), + [sym__conjunction_operator_custom] = ACTIONS(5214), + [sym__disjunction_operator_custom] = ACTIONS(5214), + [sym__nil_coalescing_operator_custom] = ACTIONS(5214), + [sym__eq_eq_custom] = ACTIONS(5214), + [sym__plus_then_ws] = ACTIONS(5214), + [sym__minus_then_ws] = ACTIONS(5214), + [sym_bang] = ACTIONS(5214), + [sym__as_custom] = ACTIONS(5214), + [sym__as_quest_custom] = ACTIONS(5214), + [sym__as_bang_custom] = ACTIONS(5214), + }, + [1273] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5218), + [anon_sym_COMMA] = ACTIONS(5218), + [anon_sym_COLON] = ACTIONS(5218), + [anon_sym_LPAREN] = ACTIONS(5218), + [anon_sym_LBRACK] = ACTIONS(5218), + [anon_sym_RBRACK] = ACTIONS(5218), + [anon_sym_QMARK] = ACTIONS(5220), + [sym__immediate_quest] = ACTIONS(5220), + [anon_sym_AMP] = ACTIONS(5220), + [anon_sym_async] = ACTIONS(5218), + [aux_sym_custom_operator_token1] = ACTIONS(5220), + [anon_sym_LT] = ACTIONS(5220), + [anon_sym_GT] = ACTIONS(5220), + [anon_sym_LBRACE] = ACTIONS(5218), + [anon_sym_RBRACE] = ACTIONS(5218), + [anon_sym_case] = ACTIONS(5218), + [anon_sym_BANG_EQ] = ACTIONS(5220), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5220), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5220), + [anon_sym_LT_EQ] = ACTIONS(5220), + [anon_sym_GT_EQ] = ACTIONS(5220), + [anon_sym_is] = ACTIONS(5218), + [anon_sym_PLUS] = ACTIONS(5220), + [anon_sym_DASH] = ACTIONS(5220), + [anon_sym_STAR] = ACTIONS(5220), + [anon_sym_SLASH] = ACTIONS(5220), + [anon_sym_PERCENT] = ACTIONS(5220), + [anon_sym_PLUS_PLUS] = ACTIONS(5220), + [anon_sym_DASH_DASH] = ACTIONS(5220), + [anon_sym_PIPE] = ACTIONS(5220), + [anon_sym_CARET] = ACTIONS(5220), + [anon_sym_LT_LT] = ACTIONS(5220), + [anon_sym_GT_GT] = ACTIONS(5220), + [anon_sym_import] = ACTIONS(5218), + [anon_sym_typealias] = ACTIONS(5218), + [anon_sym_struct] = ACTIONS(5218), + [anon_sym_class] = ACTIONS(5218), + [anon_sym_enum] = ACTIONS(5218), + [anon_sym_protocol] = ACTIONS(5218), + [anon_sym_let] = ACTIONS(5218), + [anon_sym_var] = ACTIONS(5218), + [anon_sym_func] = ACTIONS(5218), + [anon_sym_extension] = ACTIONS(5218), + [anon_sym_indirect] = ACTIONS(5218), + [anon_sym_init] = ACTIONS(5218), + [anon_sym_SEMI] = ACTIONS(5218), + [anon_sym_deinit] = ACTIONS(5218), + [anon_sym_subscript] = ACTIONS(5218), + [anon_sym_prefix] = ACTIONS(5218), + [anon_sym_infix] = ACTIONS(5218), + [anon_sym_postfix] = ACTIONS(5218), + [anon_sym_precedencegroup] = ACTIONS(5218), + [anon_sym_associatedtype] = ACTIONS(5218), + [anon_sym_AT] = ACTIONS(5220), + [sym_property_behavior_modifier] = ACTIONS(5218), + [anon_sym_override] = ACTIONS(5218), + [anon_sym_convenience] = ACTIONS(5218), + [anon_sym_required] = ACTIONS(5218), + [anon_sym_public] = ACTIONS(5218), + [anon_sym_private] = ACTIONS(5218), + [anon_sym_internal] = ACTIONS(5218), + [anon_sym_fileprivate] = ACTIONS(5218), + [anon_sym_open] = ACTIONS(5218), + [anon_sym_mutating] = ACTIONS(5218), + [anon_sym_nonmutating] = ACTIONS(5218), + [anon_sym_static] = ACTIONS(5218), + [anon_sym_dynamic] = ACTIONS(5218), + [anon_sym_optional] = ACTIONS(5218), + [anon_sym_final] = ACTIONS(5218), + [anon_sym_inout] = ACTIONS(5218), + [anon_sym_ATescaping] = ACTIONS(5218), + [anon_sym_ATautoclosure] = ACTIONS(5218), + [anon_sym_weak] = ACTIONS(5218), + [anon_sym_unowned] = ACTIONS(5220), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5218), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5218), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5218), + [sym__three_dot_operator_custom] = ACTIONS(5218), + [sym__open_ended_range_operator_custom] = ACTIONS(5218), + [sym__conjunction_operator_custom] = ACTIONS(5218), + [sym__disjunction_operator_custom] = ACTIONS(5218), + [sym__nil_coalescing_operator_custom] = ACTIONS(5218), + [sym__eq_eq_custom] = ACTIONS(5218), + [sym__plus_then_ws] = ACTIONS(5218), + [sym__minus_then_ws] = ACTIONS(5218), + [sym_bang] = ACTIONS(5218), + [sym__as_custom] = ACTIONS(5218), + [sym__as_quest_custom] = ACTIONS(5218), + [sym__as_bang_custom] = ACTIONS(5218), + }, + [1274] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5222), + [anon_sym_COMMA] = ACTIONS(5222), + [anon_sym_COLON] = ACTIONS(5222), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_RBRACK] = ACTIONS(5222), + [anon_sym_QMARK] = ACTIONS(5224), + [sym__immediate_quest] = ACTIONS(5224), + [anon_sym_AMP] = ACTIONS(5224), + [anon_sym_async] = ACTIONS(5222), + [aux_sym_custom_operator_token1] = ACTIONS(5224), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_LBRACE] = ACTIONS(5222), + [anon_sym_RBRACE] = ACTIONS(5222), + [anon_sym_case] = ACTIONS(5222), + [anon_sym_BANG_EQ] = ACTIONS(5224), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5224), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5224), + [anon_sym_LT_EQ] = ACTIONS(5224), + [anon_sym_GT_EQ] = ACTIONS(5224), + [anon_sym_is] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5224), + [anon_sym_DASH] = ACTIONS(5224), + [anon_sym_STAR] = ACTIONS(5224), + [anon_sym_SLASH] = ACTIONS(5224), + [anon_sym_PERCENT] = ACTIONS(5224), + [anon_sym_PLUS_PLUS] = ACTIONS(5224), + [anon_sym_DASH_DASH] = ACTIONS(5224), + [anon_sym_PIPE] = ACTIONS(5224), + [anon_sym_CARET] = ACTIONS(5224), + [anon_sym_LT_LT] = ACTIONS(5224), + [anon_sym_GT_GT] = ACTIONS(5224), + [anon_sym_import] = ACTIONS(5222), + [anon_sym_typealias] = ACTIONS(5222), + [anon_sym_struct] = ACTIONS(5222), + [anon_sym_class] = ACTIONS(5222), + [anon_sym_enum] = ACTIONS(5222), + [anon_sym_protocol] = ACTIONS(5222), + [anon_sym_let] = ACTIONS(5222), + [anon_sym_var] = ACTIONS(5222), + [anon_sym_func] = ACTIONS(5222), + [anon_sym_extension] = ACTIONS(5222), + [anon_sym_indirect] = ACTIONS(5222), + [anon_sym_init] = ACTIONS(5222), + [anon_sym_SEMI] = ACTIONS(5222), + [anon_sym_deinit] = ACTIONS(5222), + [anon_sym_subscript] = ACTIONS(5222), + [anon_sym_prefix] = ACTIONS(5222), + [anon_sym_infix] = ACTIONS(5222), + [anon_sym_postfix] = ACTIONS(5222), + [anon_sym_precedencegroup] = ACTIONS(5222), + [anon_sym_associatedtype] = ACTIONS(5222), + [anon_sym_AT] = ACTIONS(5224), + [sym_property_behavior_modifier] = ACTIONS(5222), + [anon_sym_override] = ACTIONS(5222), + [anon_sym_convenience] = ACTIONS(5222), + [anon_sym_required] = ACTIONS(5222), + [anon_sym_public] = ACTIONS(5222), + [anon_sym_private] = ACTIONS(5222), + [anon_sym_internal] = ACTIONS(5222), + [anon_sym_fileprivate] = ACTIONS(5222), + [anon_sym_open] = ACTIONS(5222), + [anon_sym_mutating] = ACTIONS(5222), + [anon_sym_nonmutating] = ACTIONS(5222), + [anon_sym_static] = ACTIONS(5222), + [anon_sym_dynamic] = ACTIONS(5222), + [anon_sym_optional] = ACTIONS(5222), + [anon_sym_final] = ACTIONS(5222), + [anon_sym_inout] = ACTIONS(5222), + [anon_sym_ATescaping] = ACTIONS(5222), + [anon_sym_ATautoclosure] = ACTIONS(5222), + [anon_sym_weak] = ACTIONS(5222), + [anon_sym_unowned] = ACTIONS(5224), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5222), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5222), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5222), + [sym__three_dot_operator_custom] = ACTIONS(5222), + [sym__open_ended_range_operator_custom] = ACTIONS(5222), + [sym__conjunction_operator_custom] = ACTIONS(5222), + [sym__disjunction_operator_custom] = ACTIONS(5222), + [sym__nil_coalescing_operator_custom] = ACTIONS(5222), + [sym__eq_eq_custom] = ACTIONS(5222), + [sym__plus_then_ws] = ACTIONS(5222), + [sym__minus_then_ws] = ACTIONS(5222), + [sym_bang] = ACTIONS(5222), + [sym__as_custom] = ACTIONS(5222), + [sym__as_quest_custom] = ACTIONS(5222), + [sym__as_bang_custom] = ACTIONS(5222), + }, + [1275] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5226), + [anon_sym_COMMA] = ACTIONS(5226), + [anon_sym_COLON] = ACTIONS(5226), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_RBRACK] = ACTIONS(5226), + [anon_sym_QMARK] = ACTIONS(5228), + [sym__immediate_quest] = ACTIONS(5228), + [anon_sym_AMP] = ACTIONS(5228), + [anon_sym_async] = ACTIONS(5226), + [aux_sym_custom_operator_token1] = ACTIONS(5228), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_LBRACE] = ACTIONS(5226), + [anon_sym_RBRACE] = ACTIONS(5226), + [anon_sym_case] = ACTIONS(5226), + [anon_sym_BANG_EQ] = ACTIONS(5228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5228), + [anon_sym_LT_EQ] = ACTIONS(5228), + [anon_sym_GT_EQ] = ACTIONS(5228), + [anon_sym_is] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5228), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5228), + [anon_sym_PLUS_PLUS] = ACTIONS(5228), + [anon_sym_DASH_DASH] = ACTIONS(5228), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_CARET] = ACTIONS(5228), + [anon_sym_LT_LT] = ACTIONS(5228), + [anon_sym_GT_GT] = ACTIONS(5228), + [anon_sym_import] = ACTIONS(5226), + [anon_sym_typealias] = ACTIONS(5226), + [anon_sym_struct] = ACTIONS(5226), + [anon_sym_class] = ACTIONS(5226), + [anon_sym_enum] = ACTIONS(5226), + [anon_sym_protocol] = ACTIONS(5226), + [anon_sym_let] = ACTIONS(5226), + [anon_sym_var] = ACTIONS(5226), + [anon_sym_func] = ACTIONS(5226), + [anon_sym_extension] = ACTIONS(5226), + [anon_sym_indirect] = ACTIONS(5226), + [anon_sym_init] = ACTIONS(5226), + [anon_sym_SEMI] = ACTIONS(5226), + [anon_sym_deinit] = ACTIONS(5226), + [anon_sym_subscript] = ACTIONS(5226), + [anon_sym_prefix] = ACTIONS(5226), + [anon_sym_infix] = ACTIONS(5226), + [anon_sym_postfix] = ACTIONS(5226), + [anon_sym_precedencegroup] = ACTIONS(5226), + [anon_sym_associatedtype] = ACTIONS(5226), + [anon_sym_AT] = ACTIONS(5228), + [sym_property_behavior_modifier] = ACTIONS(5226), + [anon_sym_override] = ACTIONS(5226), + [anon_sym_convenience] = ACTIONS(5226), + [anon_sym_required] = ACTIONS(5226), + [anon_sym_public] = ACTIONS(5226), + [anon_sym_private] = ACTIONS(5226), + [anon_sym_internal] = ACTIONS(5226), + [anon_sym_fileprivate] = ACTIONS(5226), + [anon_sym_open] = ACTIONS(5226), + [anon_sym_mutating] = ACTIONS(5226), + [anon_sym_nonmutating] = ACTIONS(5226), + [anon_sym_static] = ACTIONS(5226), + [anon_sym_dynamic] = ACTIONS(5226), + [anon_sym_optional] = ACTIONS(5226), + [anon_sym_final] = ACTIONS(5226), + [anon_sym_inout] = ACTIONS(5226), + [anon_sym_ATescaping] = ACTIONS(5226), + [anon_sym_ATautoclosure] = ACTIONS(5226), + [anon_sym_weak] = ACTIONS(5226), + [anon_sym_unowned] = ACTIONS(5228), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5226), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5226), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5226), + [sym__three_dot_operator_custom] = ACTIONS(5226), + [sym__open_ended_range_operator_custom] = ACTIONS(5226), + [sym__conjunction_operator_custom] = ACTIONS(5226), + [sym__disjunction_operator_custom] = ACTIONS(5226), + [sym__nil_coalescing_operator_custom] = ACTIONS(5226), + [sym__eq_eq_custom] = ACTIONS(5226), + [sym__plus_then_ws] = ACTIONS(5226), + [sym__minus_then_ws] = ACTIONS(5226), + [sym_bang] = ACTIONS(5226), + [sym__as_custom] = ACTIONS(5226), + [sym__as_quest_custom] = ACTIONS(5226), + [sym__as_bang_custom] = ACTIONS(5226), + }, + [1276] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5230), + [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_COLON] = ACTIONS(5230), + [anon_sym_LPAREN] = ACTIONS(5230), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_RBRACK] = ACTIONS(5230), + [anon_sym_QMARK] = ACTIONS(5232), + [sym__immediate_quest] = ACTIONS(5232), + [anon_sym_AMP] = ACTIONS(5232), + [anon_sym_async] = ACTIONS(5230), + [aux_sym_custom_operator_token1] = ACTIONS(5232), + [anon_sym_LT] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5232), + [anon_sym_LBRACE] = ACTIONS(5230), + [anon_sym_RBRACE] = ACTIONS(5230), + [anon_sym_case] = ACTIONS(5230), + [anon_sym_BANG_EQ] = ACTIONS(5232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5232), + [anon_sym_LT_EQ] = ACTIONS(5232), + [anon_sym_GT_EQ] = ACTIONS(5232), + [anon_sym_is] = ACTIONS(5230), + [anon_sym_PLUS] = ACTIONS(5232), + [anon_sym_DASH] = ACTIONS(5232), + [anon_sym_STAR] = ACTIONS(5232), + [anon_sym_SLASH] = ACTIONS(5232), + [anon_sym_PERCENT] = ACTIONS(5232), + [anon_sym_PLUS_PLUS] = ACTIONS(5232), + [anon_sym_DASH_DASH] = ACTIONS(5232), + [anon_sym_PIPE] = ACTIONS(5232), + [anon_sym_CARET] = ACTIONS(5232), + [anon_sym_LT_LT] = ACTIONS(5232), + [anon_sym_GT_GT] = ACTIONS(5232), + [anon_sym_import] = ACTIONS(5230), + [anon_sym_typealias] = ACTIONS(5230), + [anon_sym_struct] = ACTIONS(5230), + [anon_sym_class] = ACTIONS(5230), + [anon_sym_enum] = ACTIONS(5230), + [anon_sym_protocol] = ACTIONS(5230), + [anon_sym_let] = ACTIONS(5230), + [anon_sym_var] = ACTIONS(5230), + [anon_sym_func] = ACTIONS(5230), + [anon_sym_extension] = ACTIONS(5230), + [anon_sym_indirect] = ACTIONS(5230), + [anon_sym_init] = ACTIONS(5230), + [anon_sym_SEMI] = ACTIONS(5230), + [anon_sym_deinit] = ACTIONS(5230), + [anon_sym_subscript] = ACTIONS(5230), + [anon_sym_prefix] = ACTIONS(5230), + [anon_sym_infix] = ACTIONS(5230), + [anon_sym_postfix] = ACTIONS(5230), + [anon_sym_precedencegroup] = ACTIONS(5230), + [anon_sym_associatedtype] = ACTIONS(5230), + [anon_sym_AT] = ACTIONS(5232), + [sym_property_behavior_modifier] = ACTIONS(5230), + [anon_sym_override] = ACTIONS(5230), + [anon_sym_convenience] = ACTIONS(5230), + [anon_sym_required] = ACTIONS(5230), + [anon_sym_public] = ACTIONS(5230), + [anon_sym_private] = ACTIONS(5230), + [anon_sym_internal] = ACTIONS(5230), + [anon_sym_fileprivate] = ACTIONS(5230), + [anon_sym_open] = ACTIONS(5230), + [anon_sym_mutating] = ACTIONS(5230), + [anon_sym_nonmutating] = ACTIONS(5230), + [anon_sym_static] = ACTIONS(5230), + [anon_sym_dynamic] = ACTIONS(5230), + [anon_sym_optional] = ACTIONS(5230), + [anon_sym_final] = ACTIONS(5230), + [anon_sym_inout] = ACTIONS(5230), + [anon_sym_ATescaping] = ACTIONS(5230), + [anon_sym_ATautoclosure] = ACTIONS(5230), + [anon_sym_weak] = ACTIONS(5230), + [anon_sym_unowned] = ACTIONS(5232), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5230), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5230), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5230), + [sym__three_dot_operator_custom] = ACTIONS(5230), + [sym__open_ended_range_operator_custom] = ACTIONS(5230), + [sym__conjunction_operator_custom] = ACTIONS(5230), + [sym__disjunction_operator_custom] = ACTIONS(5230), + [sym__nil_coalescing_operator_custom] = ACTIONS(5230), + [sym__eq_eq_custom] = ACTIONS(5230), + [sym__plus_then_ws] = ACTIONS(5230), + [sym__minus_then_ws] = ACTIONS(5230), + [sym_bang] = ACTIONS(5230), + [sym__as_custom] = ACTIONS(5230), + [sym__as_quest_custom] = ACTIONS(5230), + [sym__as_bang_custom] = ACTIONS(5230), + }, + [1277] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5234), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_COLON] = ACTIONS(5234), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_RBRACK] = ACTIONS(5234), + [anon_sym_QMARK] = ACTIONS(5236), + [sym__immediate_quest] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5236), + [anon_sym_async] = ACTIONS(5234), + [aux_sym_custom_operator_token1] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_LBRACE] = ACTIONS(5234), + [anon_sym_RBRACE] = ACTIONS(5234), + [anon_sym_case] = ACTIONS(5234), + [anon_sym_BANG_EQ] = ACTIONS(5236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_GT_EQ] = ACTIONS(5236), + [anon_sym_is] = ACTIONS(5234), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_PERCENT] = ACTIONS(5236), + [anon_sym_PLUS_PLUS] = ACTIONS(5236), + [anon_sym_DASH_DASH] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5236), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_import] = ACTIONS(5234), + [anon_sym_typealias] = ACTIONS(5234), + [anon_sym_struct] = ACTIONS(5234), + [anon_sym_class] = ACTIONS(5234), + [anon_sym_enum] = ACTIONS(5234), + [anon_sym_protocol] = ACTIONS(5234), + [anon_sym_let] = ACTIONS(5234), + [anon_sym_var] = ACTIONS(5234), + [anon_sym_func] = ACTIONS(5234), + [anon_sym_extension] = ACTIONS(5234), + [anon_sym_indirect] = ACTIONS(5234), + [anon_sym_init] = ACTIONS(5234), + [anon_sym_SEMI] = ACTIONS(5234), + [anon_sym_deinit] = ACTIONS(5234), + [anon_sym_subscript] = ACTIONS(5234), + [anon_sym_prefix] = ACTIONS(5234), + [anon_sym_infix] = ACTIONS(5234), + [anon_sym_postfix] = ACTIONS(5234), + [anon_sym_precedencegroup] = ACTIONS(5234), + [anon_sym_associatedtype] = ACTIONS(5234), + [anon_sym_AT] = ACTIONS(5236), + [sym_property_behavior_modifier] = ACTIONS(5234), + [anon_sym_override] = ACTIONS(5234), + [anon_sym_convenience] = ACTIONS(5234), + [anon_sym_required] = ACTIONS(5234), + [anon_sym_public] = ACTIONS(5234), + [anon_sym_private] = ACTIONS(5234), + [anon_sym_internal] = ACTIONS(5234), + [anon_sym_fileprivate] = ACTIONS(5234), + [anon_sym_open] = ACTIONS(5234), + [anon_sym_mutating] = ACTIONS(5234), + [anon_sym_nonmutating] = ACTIONS(5234), + [anon_sym_static] = ACTIONS(5234), + [anon_sym_dynamic] = ACTIONS(5234), + [anon_sym_optional] = ACTIONS(5234), + [anon_sym_final] = ACTIONS(5234), + [anon_sym_inout] = ACTIONS(5234), + [anon_sym_ATescaping] = ACTIONS(5234), + [anon_sym_ATautoclosure] = ACTIONS(5234), + [anon_sym_weak] = ACTIONS(5234), + [anon_sym_unowned] = ACTIONS(5236), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5234), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5234), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5234), + [sym__three_dot_operator_custom] = ACTIONS(5234), + [sym__open_ended_range_operator_custom] = ACTIONS(5234), + [sym__conjunction_operator_custom] = ACTIONS(5234), + [sym__disjunction_operator_custom] = ACTIONS(5234), + [sym__nil_coalescing_operator_custom] = ACTIONS(5234), + [sym__eq_eq_custom] = ACTIONS(5234), + [sym__plus_then_ws] = ACTIONS(5234), + [sym__minus_then_ws] = ACTIONS(5234), + [sym_bang] = ACTIONS(5234), + [sym__as_custom] = ACTIONS(5234), + [sym__as_quest_custom] = ACTIONS(5234), + [sym__as_bang_custom] = ACTIONS(5234), + }, + [1278] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4694), + [anon_sym_COMMA] = ACTIONS(4694), + [anon_sym_COLON] = ACTIONS(4694), + [anon_sym_LPAREN] = ACTIONS(4694), + [anon_sym_LBRACK] = ACTIONS(4694), + [anon_sym_RBRACK] = ACTIONS(4694), + [anon_sym_QMARK] = ACTIONS(4696), + [sym__immediate_quest] = ACTIONS(4696), + [anon_sym_AMP] = ACTIONS(4696), + [anon_sym_async] = ACTIONS(4694), + [aux_sym_custom_operator_token1] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4696), + [anon_sym_GT] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4694), + [anon_sym_RBRACE] = ACTIONS(4694), + [anon_sym_case] = ACTIONS(4694), + [anon_sym_BANG_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4696), + [anon_sym_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_is] = ACTIONS(4694), + [anon_sym_PLUS] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4696), + [anon_sym_SLASH] = ACTIONS(4696), + [anon_sym_PERCENT] = ACTIONS(4696), + [anon_sym_PLUS_PLUS] = ACTIONS(4696), + [anon_sym_DASH_DASH] = ACTIONS(4696), + [anon_sym_PIPE] = ACTIONS(4696), + [anon_sym_CARET] = ACTIONS(4696), + [anon_sym_LT_LT] = ACTIONS(4696), + [anon_sym_GT_GT] = ACTIONS(4696), + [anon_sym_import] = ACTIONS(4694), + [anon_sym_typealias] = ACTIONS(4694), + [anon_sym_struct] = ACTIONS(4694), + [anon_sym_class] = ACTIONS(4694), + [anon_sym_enum] = ACTIONS(4694), + [anon_sym_protocol] = ACTIONS(4694), + [anon_sym_let] = ACTIONS(4694), + [anon_sym_var] = ACTIONS(4694), + [anon_sym_func] = ACTIONS(4694), + [anon_sym_extension] = ACTIONS(4694), + [anon_sym_indirect] = ACTIONS(4694), + [anon_sym_init] = ACTIONS(4694), + [anon_sym_SEMI] = ACTIONS(4694), + [anon_sym_deinit] = ACTIONS(4694), + [anon_sym_subscript] = ACTIONS(4694), + [anon_sym_prefix] = ACTIONS(4694), + [anon_sym_infix] = ACTIONS(4694), + [anon_sym_postfix] = ACTIONS(4694), + [anon_sym_precedencegroup] = ACTIONS(4694), + [anon_sym_associatedtype] = ACTIONS(4694), + [anon_sym_AT] = ACTIONS(4696), + [sym_property_behavior_modifier] = ACTIONS(4694), + [anon_sym_override] = ACTIONS(4694), + [anon_sym_convenience] = ACTIONS(4694), + [anon_sym_required] = ACTIONS(4694), + [anon_sym_public] = ACTIONS(4694), + [anon_sym_private] = ACTIONS(4694), + [anon_sym_internal] = ACTIONS(4694), + [anon_sym_fileprivate] = ACTIONS(4694), + [anon_sym_open] = ACTIONS(4694), + [anon_sym_mutating] = ACTIONS(4694), + [anon_sym_nonmutating] = ACTIONS(4694), + [anon_sym_static] = ACTIONS(4694), + [anon_sym_dynamic] = ACTIONS(4694), + [anon_sym_optional] = ACTIONS(4694), + [anon_sym_final] = ACTIONS(4694), + [anon_sym_inout] = ACTIONS(4694), + [anon_sym_ATescaping] = ACTIONS(4694), + [anon_sym_ATautoclosure] = ACTIONS(4694), + [anon_sym_weak] = ACTIONS(4694), + [anon_sym_unowned] = ACTIONS(4696), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4694), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4694), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4694), + [sym__three_dot_operator_custom] = ACTIONS(4694), + [sym__open_ended_range_operator_custom] = ACTIONS(4694), + [sym__conjunction_operator_custom] = ACTIONS(4694), + [sym__disjunction_operator_custom] = ACTIONS(4694), + [sym__nil_coalescing_operator_custom] = ACTIONS(4694), + [sym__eq_eq_custom] = ACTIONS(4694), + [sym__plus_then_ws] = ACTIONS(4694), + [sym__minus_then_ws] = ACTIONS(4694), + [sym_bang] = ACTIONS(4694), + [sym__as_custom] = ACTIONS(4694), + [sym__as_quest_custom] = ACTIONS(4694), + [sym__as_bang_custom] = ACTIONS(4694), + }, + [1279] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5238), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_COLON] = ACTIONS(5238), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_RBRACK] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5241), + [sym__immediate_quest] = ACTIONS(5241), + [anon_sym_AMP] = ACTIONS(5241), + [anon_sym_async] = ACTIONS(5238), + [aux_sym_custom_operator_token1] = ACTIONS(5241), + [anon_sym_LT] = ACTIONS(5241), + [anon_sym_GT] = ACTIONS(5241), + [anon_sym_LBRACE] = ACTIONS(5238), + [anon_sym_RBRACE] = ACTIONS(5238), + [anon_sym_case] = ACTIONS(5238), + [anon_sym_BANG_EQ] = ACTIONS(5241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5241), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_is] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5241), + [anon_sym_PERCENT] = ACTIONS(5241), + [anon_sym_PLUS_PLUS] = ACTIONS(5241), + [anon_sym_DASH_DASH] = ACTIONS(5241), + [anon_sym_PIPE] = ACTIONS(5241), + [anon_sym_CARET] = ACTIONS(5241), + [anon_sym_LT_LT] = ACTIONS(5241), + [anon_sym_GT_GT] = ACTIONS(5241), + [anon_sym_import] = ACTIONS(5238), + [anon_sym_typealias] = ACTIONS(5238), + [anon_sym_struct] = ACTIONS(5238), + [anon_sym_class] = ACTIONS(5238), + [anon_sym_enum] = ACTIONS(5238), + [anon_sym_protocol] = ACTIONS(5238), + [anon_sym_let] = ACTIONS(5238), + [anon_sym_var] = ACTIONS(5238), + [anon_sym_func] = ACTIONS(5238), + [anon_sym_extension] = ACTIONS(5238), + [anon_sym_indirect] = ACTIONS(5238), + [anon_sym_init] = ACTIONS(5238), + [anon_sym_SEMI] = ACTIONS(5238), + [anon_sym_deinit] = ACTIONS(5238), + [anon_sym_subscript] = ACTIONS(5238), + [anon_sym_prefix] = ACTIONS(5238), + [anon_sym_infix] = ACTIONS(5238), + [anon_sym_postfix] = ACTIONS(5238), + [anon_sym_precedencegroup] = ACTIONS(5238), + [anon_sym_associatedtype] = ACTIONS(5238), + [anon_sym_AT] = ACTIONS(5241), + [sym_property_behavior_modifier] = ACTIONS(5238), + [anon_sym_override] = ACTIONS(5238), + [anon_sym_convenience] = ACTIONS(5238), + [anon_sym_required] = ACTIONS(5238), + [anon_sym_public] = ACTIONS(5238), + [anon_sym_private] = ACTIONS(5238), + [anon_sym_internal] = ACTIONS(5238), + [anon_sym_fileprivate] = ACTIONS(5238), + [anon_sym_open] = ACTIONS(5238), + [anon_sym_mutating] = ACTIONS(5238), + [anon_sym_nonmutating] = ACTIONS(5238), + [anon_sym_static] = ACTIONS(5238), + [anon_sym_dynamic] = ACTIONS(5238), + [anon_sym_optional] = ACTIONS(5238), + [anon_sym_final] = ACTIONS(5238), + [anon_sym_inout] = ACTIONS(5238), + [anon_sym_ATescaping] = ACTIONS(5238), + [anon_sym_ATautoclosure] = ACTIONS(5238), + [anon_sym_weak] = ACTIONS(5238), + [anon_sym_unowned] = ACTIONS(5241), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5238), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5238), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5238), + [sym__three_dot_operator_custom] = ACTIONS(5238), + [sym__open_ended_range_operator_custom] = ACTIONS(5238), + [sym__conjunction_operator_custom] = ACTIONS(5238), + [sym__disjunction_operator_custom] = ACTIONS(5238), + [sym__nil_coalescing_operator_custom] = ACTIONS(5238), + [sym__eq_eq_custom] = ACTIONS(5238), + [sym__plus_then_ws] = ACTIONS(5238), + [sym__minus_then_ws] = ACTIONS(5238), + [sym_bang] = ACTIONS(5238), + [sym__as_custom] = ACTIONS(5238), + [sym__as_quest_custom] = ACTIONS(5238), + [sym__as_bang_custom] = ACTIONS(5238), + }, + [1280] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5244), + [anon_sym_COMMA] = ACTIONS(5244), + [anon_sym_COLON] = ACTIONS(5244), + [anon_sym_LPAREN] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(5244), + [anon_sym_RBRACK] = ACTIONS(5244), + [anon_sym_QMARK] = ACTIONS(5246), + [sym__immediate_quest] = ACTIONS(5246), + [anon_sym_AMP] = ACTIONS(5246), + [anon_sym_async] = ACTIONS(5244), + [aux_sym_custom_operator_token1] = ACTIONS(5246), + [anon_sym_LT] = ACTIONS(5246), + [anon_sym_GT] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5244), + [anon_sym_RBRACE] = ACTIONS(5244), + [anon_sym_case] = ACTIONS(5244), + [anon_sym_BANG_EQ] = ACTIONS(5246), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5246), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5246), + [anon_sym_LT_EQ] = ACTIONS(5246), + [anon_sym_GT_EQ] = ACTIONS(5246), + [anon_sym_is] = ACTIONS(5244), + [anon_sym_PLUS] = ACTIONS(5246), + [anon_sym_DASH] = ACTIONS(5246), + [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_SLASH] = ACTIONS(5246), + [anon_sym_PERCENT] = ACTIONS(5246), + [anon_sym_PLUS_PLUS] = ACTIONS(5246), + [anon_sym_DASH_DASH] = ACTIONS(5246), + [anon_sym_PIPE] = ACTIONS(5246), + [anon_sym_CARET] = ACTIONS(5246), + [anon_sym_LT_LT] = ACTIONS(5246), + [anon_sym_GT_GT] = ACTIONS(5246), + [anon_sym_import] = ACTIONS(5244), + [anon_sym_typealias] = ACTIONS(5244), + [anon_sym_struct] = ACTIONS(5244), + [anon_sym_class] = ACTIONS(5244), + [anon_sym_enum] = ACTIONS(5244), + [anon_sym_protocol] = ACTIONS(5244), + [anon_sym_let] = ACTIONS(5244), + [anon_sym_var] = ACTIONS(5244), + [anon_sym_func] = ACTIONS(5244), + [anon_sym_extension] = ACTIONS(5244), + [anon_sym_indirect] = ACTIONS(5244), + [anon_sym_init] = ACTIONS(5244), + [anon_sym_SEMI] = ACTIONS(5244), + [anon_sym_deinit] = ACTIONS(5244), + [anon_sym_subscript] = ACTIONS(5244), + [anon_sym_prefix] = ACTIONS(5244), + [anon_sym_infix] = ACTIONS(5244), + [anon_sym_postfix] = ACTIONS(5244), + [anon_sym_precedencegroup] = ACTIONS(5244), + [anon_sym_associatedtype] = ACTIONS(5244), + [anon_sym_AT] = ACTIONS(5246), + [sym_property_behavior_modifier] = ACTIONS(5244), + [anon_sym_override] = ACTIONS(5244), + [anon_sym_convenience] = ACTIONS(5244), + [anon_sym_required] = ACTIONS(5244), + [anon_sym_public] = ACTIONS(5244), + [anon_sym_private] = ACTIONS(5244), + [anon_sym_internal] = ACTIONS(5244), + [anon_sym_fileprivate] = ACTIONS(5244), + [anon_sym_open] = ACTIONS(5244), + [anon_sym_mutating] = ACTIONS(5244), + [anon_sym_nonmutating] = ACTIONS(5244), + [anon_sym_static] = ACTIONS(5244), + [anon_sym_dynamic] = ACTIONS(5244), + [anon_sym_optional] = ACTIONS(5244), + [anon_sym_final] = ACTIONS(5244), + [anon_sym_inout] = ACTIONS(5244), + [anon_sym_ATescaping] = ACTIONS(5244), + [anon_sym_ATautoclosure] = ACTIONS(5244), + [anon_sym_weak] = ACTIONS(5244), + [anon_sym_unowned] = ACTIONS(5246), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5244), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5244), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5244), + [sym__three_dot_operator_custom] = ACTIONS(5244), + [sym__open_ended_range_operator_custom] = ACTIONS(5244), + [sym__conjunction_operator_custom] = ACTIONS(5244), + [sym__disjunction_operator_custom] = ACTIONS(5244), + [sym__nil_coalescing_operator_custom] = ACTIONS(5244), + [sym__eq_eq_custom] = ACTIONS(5244), + [sym__plus_then_ws] = ACTIONS(5244), + [sym__minus_then_ws] = ACTIONS(5244), + [sym_bang] = ACTIONS(5244), + [sym__as_custom] = ACTIONS(5244), + [sym__as_quest_custom] = ACTIONS(5244), + [sym__as_bang_custom] = ACTIONS(5244), + }, + [1281] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4863), + [anon_sym_COMMA] = ACTIONS(4863), + [anon_sym_COLON] = ACTIONS(4863), + [anon_sym_LPAREN] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_RBRACK] = ACTIONS(4863), + [anon_sym_QMARK] = ACTIONS(4861), + [sym__immediate_quest] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), + [anon_sym_async] = ACTIONS(4863), + [aux_sym_custom_operator_token1] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4861), + [anon_sym_GT] = ACTIONS(4861), + [anon_sym_LBRACE] = ACTIONS(4863), + [anon_sym_RBRACE] = ACTIONS(4863), + [anon_sym_case] = ACTIONS(4863), + [anon_sym_BANG_EQ] = ACTIONS(4861), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(4861), + [anon_sym_DASH] = ACTIONS(4861), + [anon_sym_STAR] = ACTIONS(4861), + [anon_sym_SLASH] = ACTIONS(4861), + [anon_sym_PERCENT] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_CARET] = ACTIONS(4861), + [anon_sym_LT_LT] = ACTIONS(4861), + [anon_sym_GT_GT] = ACTIONS(4861), + [anon_sym_import] = ACTIONS(4863), + [anon_sym_typealias] = ACTIONS(4863), + [anon_sym_struct] = ACTIONS(4863), + [anon_sym_class] = ACTIONS(4863), + [anon_sym_enum] = ACTIONS(4863), + [anon_sym_protocol] = ACTIONS(4863), + [anon_sym_let] = ACTIONS(4863), + [anon_sym_var] = ACTIONS(4863), + [anon_sym_func] = ACTIONS(4863), + [anon_sym_extension] = ACTIONS(4863), + [anon_sym_indirect] = ACTIONS(4863), + [anon_sym_init] = ACTIONS(4863), + [anon_sym_SEMI] = ACTIONS(4863), + [anon_sym_deinit] = ACTIONS(4863), + [anon_sym_subscript] = ACTIONS(4863), + [anon_sym_prefix] = ACTIONS(4863), + [anon_sym_infix] = ACTIONS(4863), + [anon_sym_postfix] = ACTIONS(4863), + [anon_sym_precedencegroup] = ACTIONS(4863), + [anon_sym_associatedtype] = ACTIONS(4863), + [anon_sym_AT] = ACTIONS(4861), + [sym_property_behavior_modifier] = ACTIONS(4863), + [anon_sym_override] = ACTIONS(4863), + [anon_sym_convenience] = ACTIONS(4863), + [anon_sym_required] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_internal] = ACTIONS(4863), + [anon_sym_fileprivate] = ACTIONS(4863), + [anon_sym_open] = ACTIONS(4863), + [anon_sym_mutating] = ACTIONS(4863), + [anon_sym_nonmutating] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_dynamic] = ACTIONS(4863), + [anon_sym_optional] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_inout] = ACTIONS(4863), + [anon_sym_ATescaping] = ACTIONS(4863), + [anon_sym_ATautoclosure] = ACTIONS(4863), + [anon_sym_weak] = ACTIONS(4863), + [anon_sym_unowned] = ACTIONS(4861), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4863), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4863), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4863), + [sym__three_dot_operator_custom] = ACTIONS(4863), + [sym__open_ended_range_operator_custom] = ACTIONS(4863), + [sym__conjunction_operator_custom] = ACTIONS(4863), + [sym__disjunction_operator_custom] = ACTIONS(4863), + [sym__nil_coalescing_operator_custom] = ACTIONS(4863), + [sym__eq_eq_custom] = ACTIONS(4863), + [sym__plus_then_ws] = ACTIONS(4863), + [sym__minus_then_ws] = ACTIONS(4863), + [sym_bang] = ACTIONS(4863), + [sym__as_custom] = ACTIONS(4863), + [sym__as_quest_custom] = ACTIONS(4863), + [sym__as_bang_custom] = ACTIONS(4863), + }, + [1282] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5248), + [anon_sym_COMMA] = ACTIONS(5248), + [anon_sym_COLON] = ACTIONS(5248), + [anon_sym_LPAREN] = ACTIONS(5248), + [anon_sym_LBRACK] = ACTIONS(5248), + [anon_sym_RBRACK] = ACTIONS(5248), + [anon_sym_QMARK] = ACTIONS(5250), + [sym__immediate_quest] = ACTIONS(5250), + [anon_sym_AMP] = ACTIONS(5250), + [anon_sym_async] = ACTIONS(5248), + [aux_sym_custom_operator_token1] = ACTIONS(5250), + [anon_sym_LT] = ACTIONS(5250), + [anon_sym_GT] = ACTIONS(5250), + [anon_sym_LBRACE] = ACTIONS(5248), + [anon_sym_RBRACE] = ACTIONS(5248), + [anon_sym_case] = ACTIONS(5248), + [anon_sym_BANG_EQ] = ACTIONS(5250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5250), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5250), + [anon_sym_is] = ACTIONS(5248), + [anon_sym_PLUS] = ACTIONS(5250), + [anon_sym_DASH] = ACTIONS(5250), + [anon_sym_STAR] = ACTIONS(5250), + [anon_sym_SLASH] = ACTIONS(5250), + [anon_sym_PERCENT] = ACTIONS(5250), + [anon_sym_PLUS_PLUS] = ACTIONS(5250), + [anon_sym_DASH_DASH] = ACTIONS(5250), + [anon_sym_PIPE] = ACTIONS(5250), + [anon_sym_CARET] = ACTIONS(5250), + [anon_sym_LT_LT] = ACTIONS(5250), + [anon_sym_GT_GT] = ACTIONS(5250), + [anon_sym_import] = ACTIONS(5248), + [anon_sym_typealias] = ACTIONS(5248), + [anon_sym_struct] = ACTIONS(5248), + [anon_sym_class] = ACTIONS(5248), + [anon_sym_enum] = ACTIONS(5248), + [anon_sym_protocol] = ACTIONS(5248), + [anon_sym_let] = ACTIONS(5248), + [anon_sym_var] = ACTIONS(5248), + [anon_sym_func] = ACTIONS(5248), + [anon_sym_extension] = ACTIONS(5248), + [anon_sym_indirect] = ACTIONS(5248), + [anon_sym_init] = ACTIONS(5248), + [anon_sym_SEMI] = ACTIONS(5248), + [anon_sym_deinit] = ACTIONS(5248), + [anon_sym_subscript] = ACTIONS(5248), + [anon_sym_prefix] = ACTIONS(5248), + [anon_sym_infix] = ACTIONS(5248), + [anon_sym_postfix] = ACTIONS(5248), + [anon_sym_precedencegroup] = ACTIONS(5248), + [anon_sym_associatedtype] = ACTIONS(5248), + [anon_sym_AT] = ACTIONS(5250), + [sym_property_behavior_modifier] = ACTIONS(5248), + [anon_sym_override] = ACTIONS(5248), + [anon_sym_convenience] = ACTIONS(5248), + [anon_sym_required] = ACTIONS(5248), + [anon_sym_public] = ACTIONS(5248), + [anon_sym_private] = ACTIONS(5248), + [anon_sym_internal] = ACTIONS(5248), + [anon_sym_fileprivate] = ACTIONS(5248), + [anon_sym_open] = ACTIONS(5248), + [anon_sym_mutating] = ACTIONS(5248), + [anon_sym_nonmutating] = ACTIONS(5248), + [anon_sym_static] = ACTIONS(5248), + [anon_sym_dynamic] = ACTIONS(5248), + [anon_sym_optional] = ACTIONS(5248), + [anon_sym_final] = ACTIONS(5248), + [anon_sym_inout] = ACTIONS(5248), + [anon_sym_ATescaping] = ACTIONS(5248), + [anon_sym_ATautoclosure] = ACTIONS(5248), + [anon_sym_weak] = ACTIONS(5248), + [anon_sym_unowned] = ACTIONS(5250), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5248), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5248), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5248), + [sym__three_dot_operator_custom] = ACTIONS(5248), + [sym__open_ended_range_operator_custom] = ACTIONS(5248), + [sym__conjunction_operator_custom] = ACTIONS(5248), + [sym__disjunction_operator_custom] = ACTIONS(5248), + [sym__nil_coalescing_operator_custom] = ACTIONS(5248), + [sym__eq_eq_custom] = ACTIONS(5248), + [sym__plus_then_ws] = ACTIONS(5248), + [sym__minus_then_ws] = ACTIONS(5248), + [sym_bang] = ACTIONS(5248), + [sym__as_custom] = ACTIONS(5248), + [sym__as_quest_custom] = ACTIONS(5248), + [sym__as_bang_custom] = ACTIONS(5248), + }, + [1283] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5252), + [anon_sym_COMMA] = ACTIONS(5252), + [anon_sym_COLON] = ACTIONS(5252), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym_LBRACK] = ACTIONS(5252), + [anon_sym_RBRACK] = ACTIONS(5252), + [anon_sym_QMARK] = ACTIONS(5254), + [sym__immediate_quest] = ACTIONS(5254), + [anon_sym_AMP] = ACTIONS(5254), + [anon_sym_async] = ACTIONS(5252), + [aux_sym_custom_operator_token1] = ACTIONS(5254), + [anon_sym_LT] = ACTIONS(5254), + [anon_sym_GT] = ACTIONS(5254), + [anon_sym_LBRACE] = ACTIONS(5252), + [anon_sym_RBRACE] = ACTIONS(5252), + [anon_sym_case] = ACTIONS(5252), + [anon_sym_BANG_EQ] = ACTIONS(5254), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5254), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5254), + [anon_sym_LT_EQ] = ACTIONS(5254), + [anon_sym_GT_EQ] = ACTIONS(5254), + [anon_sym_is] = ACTIONS(5252), + [anon_sym_PLUS] = ACTIONS(5254), + [anon_sym_DASH] = ACTIONS(5254), + [anon_sym_STAR] = ACTIONS(5254), + [anon_sym_SLASH] = ACTIONS(5254), + [anon_sym_PERCENT] = ACTIONS(5254), + [anon_sym_PLUS_PLUS] = ACTIONS(5254), + [anon_sym_DASH_DASH] = ACTIONS(5254), + [anon_sym_PIPE] = ACTIONS(5254), + [anon_sym_CARET] = ACTIONS(5254), + [anon_sym_LT_LT] = ACTIONS(5254), + [anon_sym_GT_GT] = ACTIONS(5254), + [anon_sym_import] = ACTIONS(5252), + [anon_sym_typealias] = ACTIONS(5252), + [anon_sym_struct] = ACTIONS(5252), + [anon_sym_class] = ACTIONS(5252), + [anon_sym_enum] = ACTIONS(5252), + [anon_sym_protocol] = ACTIONS(5252), + [anon_sym_let] = ACTIONS(5252), + [anon_sym_var] = ACTIONS(5252), + [anon_sym_func] = ACTIONS(5252), + [anon_sym_extension] = ACTIONS(5252), + [anon_sym_indirect] = ACTIONS(5252), + [anon_sym_init] = ACTIONS(5252), + [anon_sym_SEMI] = ACTIONS(5252), + [anon_sym_deinit] = ACTIONS(5252), + [anon_sym_subscript] = ACTIONS(5252), + [anon_sym_prefix] = ACTIONS(5252), + [anon_sym_infix] = ACTIONS(5252), + [anon_sym_postfix] = ACTIONS(5252), + [anon_sym_precedencegroup] = ACTIONS(5252), + [anon_sym_associatedtype] = ACTIONS(5252), + [anon_sym_AT] = ACTIONS(5254), + [sym_property_behavior_modifier] = ACTIONS(5252), + [anon_sym_override] = ACTIONS(5252), + [anon_sym_convenience] = ACTIONS(5252), + [anon_sym_required] = ACTIONS(5252), + [anon_sym_public] = ACTIONS(5252), + [anon_sym_private] = ACTIONS(5252), + [anon_sym_internal] = ACTIONS(5252), + [anon_sym_fileprivate] = ACTIONS(5252), + [anon_sym_open] = ACTIONS(5252), + [anon_sym_mutating] = ACTIONS(5252), + [anon_sym_nonmutating] = ACTIONS(5252), + [anon_sym_static] = ACTIONS(5252), + [anon_sym_dynamic] = ACTIONS(5252), + [anon_sym_optional] = ACTIONS(5252), + [anon_sym_final] = ACTIONS(5252), + [anon_sym_inout] = ACTIONS(5252), + [anon_sym_ATescaping] = ACTIONS(5252), + [anon_sym_ATautoclosure] = ACTIONS(5252), + [anon_sym_weak] = ACTIONS(5252), + [anon_sym_unowned] = ACTIONS(5254), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5252), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5252), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5252), + [sym__three_dot_operator_custom] = ACTIONS(5252), + [sym__open_ended_range_operator_custom] = ACTIONS(5252), + [sym__conjunction_operator_custom] = ACTIONS(5252), + [sym__disjunction_operator_custom] = ACTIONS(5252), + [sym__nil_coalescing_operator_custom] = ACTIONS(5252), + [sym__eq_eq_custom] = ACTIONS(5252), + [sym__plus_then_ws] = ACTIONS(5252), + [sym__minus_then_ws] = ACTIONS(5252), + [sym_bang] = ACTIONS(5252), + [sym__as_custom] = ACTIONS(5252), + [sym__as_quest_custom] = ACTIONS(5252), + [sym__as_bang_custom] = ACTIONS(5252), + }, + [1284] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_COMMA] = ACTIONS(4871), + [anon_sym_COLON] = ACTIONS(4871), + [anon_sym_LPAREN] = ACTIONS(4871), + [anon_sym_LBRACK] = ACTIONS(4871), + [anon_sym_RBRACK] = ACTIONS(4871), + [anon_sym_QMARK] = ACTIONS(4869), + [sym__immediate_quest] = ACTIONS(4869), + [anon_sym_AMP] = ACTIONS(4869), + [anon_sym_async] = ACTIONS(4871), + [aux_sym_custom_operator_token1] = ACTIONS(4869), + [anon_sym_LT] = ACTIONS(4869), + [anon_sym_GT] = ACTIONS(4869), + [anon_sym_LBRACE] = ACTIONS(4871), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_case] = ACTIONS(4871), + [anon_sym_BANG_EQ] = ACTIONS(4869), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4869), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4869), + [anon_sym_LT_EQ] = ACTIONS(4869), + [anon_sym_GT_EQ] = ACTIONS(4869), + [anon_sym_is] = ACTIONS(4871), + [anon_sym_PLUS] = ACTIONS(4869), + [anon_sym_DASH] = ACTIONS(4869), + [anon_sym_STAR] = ACTIONS(4869), + [anon_sym_SLASH] = ACTIONS(4869), + [anon_sym_PERCENT] = ACTIONS(4869), + [anon_sym_PLUS_PLUS] = ACTIONS(4869), + [anon_sym_DASH_DASH] = ACTIONS(4869), + [anon_sym_PIPE] = ACTIONS(4869), + [anon_sym_CARET] = ACTIONS(4869), + [anon_sym_LT_LT] = ACTIONS(4869), + [anon_sym_GT_GT] = ACTIONS(4869), + [anon_sym_import] = ACTIONS(4871), + [anon_sym_typealias] = ACTIONS(4871), + [anon_sym_struct] = ACTIONS(4871), + [anon_sym_class] = ACTIONS(4871), + [anon_sym_enum] = ACTIONS(4871), + [anon_sym_protocol] = ACTIONS(4871), + [anon_sym_let] = ACTIONS(4871), + [anon_sym_var] = ACTIONS(4871), + [anon_sym_func] = ACTIONS(4871), + [anon_sym_extension] = ACTIONS(4871), + [anon_sym_indirect] = ACTIONS(4871), + [anon_sym_init] = ACTIONS(4871), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym_deinit] = ACTIONS(4871), + [anon_sym_subscript] = ACTIONS(4871), + [anon_sym_prefix] = ACTIONS(4871), + [anon_sym_infix] = ACTIONS(4871), + [anon_sym_postfix] = ACTIONS(4871), + [anon_sym_precedencegroup] = ACTIONS(4871), + [anon_sym_associatedtype] = ACTIONS(4871), + [anon_sym_AT] = ACTIONS(4869), + [sym_property_behavior_modifier] = ACTIONS(4871), + [anon_sym_override] = ACTIONS(4871), + [anon_sym_convenience] = ACTIONS(4871), + [anon_sym_required] = ACTIONS(4871), + [anon_sym_public] = ACTIONS(4871), + [anon_sym_private] = ACTIONS(4871), + [anon_sym_internal] = ACTIONS(4871), + [anon_sym_fileprivate] = ACTIONS(4871), + [anon_sym_open] = ACTIONS(4871), + [anon_sym_mutating] = ACTIONS(4871), + [anon_sym_nonmutating] = ACTIONS(4871), + [anon_sym_static] = ACTIONS(4871), + [anon_sym_dynamic] = ACTIONS(4871), + [anon_sym_optional] = ACTIONS(4871), + [anon_sym_final] = ACTIONS(4871), + [anon_sym_inout] = ACTIONS(4871), + [anon_sym_ATescaping] = ACTIONS(4871), + [anon_sym_ATautoclosure] = ACTIONS(4871), + [anon_sym_weak] = ACTIONS(4871), + [anon_sym_unowned] = ACTIONS(4869), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4871), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4871), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4871), + [sym__three_dot_operator_custom] = ACTIONS(4871), + [sym__open_ended_range_operator_custom] = ACTIONS(4871), + [sym__conjunction_operator_custom] = ACTIONS(4871), + [sym__disjunction_operator_custom] = ACTIONS(4871), + [sym__nil_coalescing_operator_custom] = ACTIONS(4871), + [sym__eq_eq_custom] = ACTIONS(4871), + [sym__plus_then_ws] = ACTIONS(4871), + [sym__minus_then_ws] = ACTIONS(4871), + [sym_bang] = ACTIONS(4871), + [sym__as_custom] = ACTIONS(4871), + [sym__as_quest_custom] = ACTIONS(4871), + [sym__as_bang_custom] = ACTIONS(4871), + }, + [1285] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4875), + [anon_sym_COMMA] = ACTIONS(4875), + [anon_sym_COLON] = ACTIONS(4875), + [anon_sym_LPAREN] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4875), + [anon_sym_RBRACK] = ACTIONS(4875), + [anon_sym_QMARK] = ACTIONS(4873), + [sym__immediate_quest] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), + [anon_sym_async] = ACTIONS(4875), + [aux_sym_custom_operator_token1] = ACTIONS(4873), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_LBRACE] = ACTIONS(4875), + [anon_sym_RBRACE] = ACTIONS(4875), + [anon_sym_case] = ACTIONS(4875), + [anon_sym_BANG_EQ] = ACTIONS(4873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4873), + [anon_sym_LT_EQ] = ACTIONS(4873), + [anon_sym_GT_EQ] = ACTIONS(4873), + [anon_sym_is] = ACTIONS(4875), + [anon_sym_PLUS] = ACTIONS(4873), + [anon_sym_DASH] = ACTIONS(4873), + [anon_sym_STAR] = ACTIONS(4873), + [anon_sym_SLASH] = ACTIONS(4873), + [anon_sym_PERCENT] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4873), + [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_CARET] = ACTIONS(4873), + [anon_sym_LT_LT] = ACTIONS(4873), + [anon_sym_GT_GT] = ACTIONS(4873), + [anon_sym_import] = ACTIONS(4875), + [anon_sym_typealias] = ACTIONS(4875), + [anon_sym_struct] = ACTIONS(4875), + [anon_sym_class] = ACTIONS(4875), + [anon_sym_enum] = ACTIONS(4875), + [anon_sym_protocol] = ACTIONS(4875), + [anon_sym_let] = ACTIONS(4875), + [anon_sym_var] = ACTIONS(4875), + [anon_sym_func] = ACTIONS(4875), + [anon_sym_extension] = ACTIONS(4875), + [anon_sym_indirect] = ACTIONS(4875), + [anon_sym_init] = ACTIONS(4875), + [anon_sym_SEMI] = ACTIONS(4875), + [anon_sym_deinit] = ACTIONS(4875), + [anon_sym_subscript] = ACTIONS(4875), + [anon_sym_prefix] = ACTIONS(4875), + [anon_sym_infix] = ACTIONS(4875), + [anon_sym_postfix] = ACTIONS(4875), + [anon_sym_precedencegroup] = ACTIONS(4875), + [anon_sym_associatedtype] = ACTIONS(4875), + [anon_sym_AT] = ACTIONS(4873), + [sym_property_behavior_modifier] = ACTIONS(4875), + [anon_sym_override] = ACTIONS(4875), + [anon_sym_convenience] = ACTIONS(4875), + [anon_sym_required] = ACTIONS(4875), + [anon_sym_public] = ACTIONS(4875), + [anon_sym_private] = ACTIONS(4875), + [anon_sym_internal] = ACTIONS(4875), + [anon_sym_fileprivate] = ACTIONS(4875), + [anon_sym_open] = ACTIONS(4875), + [anon_sym_mutating] = ACTIONS(4875), + [anon_sym_nonmutating] = ACTIONS(4875), + [anon_sym_static] = ACTIONS(4875), + [anon_sym_dynamic] = ACTIONS(4875), + [anon_sym_optional] = ACTIONS(4875), + [anon_sym_final] = ACTIONS(4875), + [anon_sym_inout] = ACTIONS(4875), + [anon_sym_ATescaping] = ACTIONS(4875), + [anon_sym_ATautoclosure] = ACTIONS(4875), + [anon_sym_weak] = ACTIONS(4875), + [anon_sym_unowned] = ACTIONS(4873), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4875), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4875), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4875), + [sym__three_dot_operator_custom] = ACTIONS(4875), + [sym__open_ended_range_operator_custom] = ACTIONS(4875), + [sym__conjunction_operator_custom] = ACTIONS(4875), + [sym__disjunction_operator_custom] = ACTIONS(4875), + [sym__nil_coalescing_operator_custom] = ACTIONS(4875), + [sym__eq_eq_custom] = ACTIONS(4875), + [sym__plus_then_ws] = ACTIONS(4875), + [sym__minus_then_ws] = ACTIONS(4875), + [sym_bang] = ACTIONS(4875), + [sym__as_custom] = ACTIONS(4875), + [sym__as_quest_custom] = ACTIONS(4875), + [sym__as_bang_custom] = ACTIONS(4875), + }, + [1286] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5256), + [anon_sym_COMMA] = ACTIONS(5256), + [anon_sym_COLON] = ACTIONS(5256), + [anon_sym_LPAREN] = ACTIONS(5256), + [anon_sym_LBRACK] = ACTIONS(5256), + [anon_sym_RBRACK] = ACTIONS(5256), + [anon_sym_QMARK] = ACTIONS(5258), + [sym__immediate_quest] = ACTIONS(5258), + [anon_sym_AMP] = ACTIONS(5258), + [anon_sym_async] = ACTIONS(5256), + [aux_sym_custom_operator_token1] = ACTIONS(5258), + [anon_sym_LT] = ACTIONS(5258), + [anon_sym_GT] = ACTIONS(5258), + [anon_sym_LBRACE] = ACTIONS(5256), + [anon_sym_RBRACE] = ACTIONS(5256), + [anon_sym_case] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5258), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5258), + [anon_sym_LT_EQ] = ACTIONS(5258), + [anon_sym_GT_EQ] = ACTIONS(5258), + [anon_sym_is] = ACTIONS(5256), + [anon_sym_PLUS] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5258), + [anon_sym_STAR] = ACTIONS(5258), + [anon_sym_SLASH] = ACTIONS(5258), + [anon_sym_PERCENT] = ACTIONS(5258), + [anon_sym_PLUS_PLUS] = ACTIONS(5258), + [anon_sym_DASH_DASH] = ACTIONS(5258), + [anon_sym_PIPE] = ACTIONS(5258), + [anon_sym_CARET] = ACTIONS(5258), + [anon_sym_LT_LT] = ACTIONS(5258), + [anon_sym_GT_GT] = ACTIONS(5258), + [anon_sym_import] = ACTIONS(5256), + [anon_sym_typealias] = ACTIONS(5256), + [anon_sym_struct] = ACTIONS(5256), + [anon_sym_class] = ACTIONS(5256), + [anon_sym_enum] = ACTIONS(5256), + [anon_sym_protocol] = ACTIONS(5256), + [anon_sym_let] = ACTIONS(5256), + [anon_sym_var] = ACTIONS(5256), + [anon_sym_func] = ACTIONS(5256), + [anon_sym_extension] = ACTIONS(5256), + [anon_sym_indirect] = ACTIONS(5256), + [anon_sym_init] = ACTIONS(5256), + [anon_sym_SEMI] = ACTIONS(5256), + [anon_sym_deinit] = ACTIONS(5256), + [anon_sym_subscript] = ACTIONS(5256), + [anon_sym_prefix] = ACTIONS(5256), + [anon_sym_infix] = ACTIONS(5256), + [anon_sym_postfix] = ACTIONS(5256), + [anon_sym_precedencegroup] = ACTIONS(5256), + [anon_sym_associatedtype] = ACTIONS(5256), + [anon_sym_AT] = ACTIONS(5258), + [sym_property_behavior_modifier] = ACTIONS(5256), + [anon_sym_override] = ACTIONS(5256), + [anon_sym_convenience] = ACTIONS(5256), + [anon_sym_required] = ACTIONS(5256), + [anon_sym_public] = ACTIONS(5256), + [anon_sym_private] = ACTIONS(5256), + [anon_sym_internal] = ACTIONS(5256), + [anon_sym_fileprivate] = ACTIONS(5256), + [anon_sym_open] = ACTIONS(5256), + [anon_sym_mutating] = ACTIONS(5256), + [anon_sym_nonmutating] = ACTIONS(5256), + [anon_sym_static] = ACTIONS(5256), + [anon_sym_dynamic] = ACTIONS(5256), + [anon_sym_optional] = ACTIONS(5256), + [anon_sym_final] = ACTIONS(5256), + [anon_sym_inout] = ACTIONS(5256), + [anon_sym_ATescaping] = ACTIONS(5256), + [anon_sym_ATautoclosure] = ACTIONS(5256), + [anon_sym_weak] = ACTIONS(5256), + [anon_sym_unowned] = ACTIONS(5258), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5256), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5256), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5256), + [sym__three_dot_operator_custom] = ACTIONS(5256), + [sym__open_ended_range_operator_custom] = ACTIONS(5256), + [sym__conjunction_operator_custom] = ACTIONS(5256), + [sym__disjunction_operator_custom] = ACTIONS(5256), + [sym__nil_coalescing_operator_custom] = ACTIONS(5256), + [sym__eq_eq_custom] = ACTIONS(5256), + [sym__plus_then_ws] = ACTIONS(5256), + [sym__minus_then_ws] = ACTIONS(5256), + [sym_bang] = ACTIONS(5256), + [sym__as_custom] = ACTIONS(5256), + [sym__as_quest_custom] = ACTIONS(5256), + [sym__as_bang_custom] = ACTIONS(5256), + }, + [1287] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5260), + [anon_sym_COMMA] = ACTIONS(5260), + [anon_sym_COLON] = ACTIONS(5260), + [anon_sym_LPAREN] = ACTIONS(5260), + [anon_sym_LBRACK] = ACTIONS(5260), + [anon_sym_RBRACK] = ACTIONS(5260), + [anon_sym_QMARK] = ACTIONS(5262), + [sym__immediate_quest] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_async] = ACTIONS(5260), + [aux_sym_custom_operator_token1] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(5262), + [anon_sym_GT] = ACTIONS(5262), + [anon_sym_LBRACE] = ACTIONS(5260), + [anon_sym_RBRACE] = ACTIONS(5260), + [anon_sym_case] = ACTIONS(5260), + [anon_sym_BANG_EQ] = ACTIONS(5262), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5262), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5262), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_GT_EQ] = ACTIONS(5262), + [anon_sym_is] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5262), + [anon_sym_DASH] = ACTIONS(5262), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5262), + [anon_sym_PERCENT] = ACTIONS(5262), + [anon_sym_PLUS_PLUS] = ACTIONS(5262), + [anon_sym_DASH_DASH] = ACTIONS(5262), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_LT_LT] = ACTIONS(5262), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym_import] = ACTIONS(5260), + [anon_sym_typealias] = ACTIONS(5260), + [anon_sym_struct] = ACTIONS(5260), + [anon_sym_class] = ACTIONS(5260), + [anon_sym_enum] = ACTIONS(5260), + [anon_sym_protocol] = ACTIONS(5260), + [anon_sym_let] = ACTIONS(5260), + [anon_sym_var] = ACTIONS(5260), + [anon_sym_func] = ACTIONS(5260), + [anon_sym_extension] = ACTIONS(5260), + [anon_sym_indirect] = ACTIONS(5260), + [anon_sym_init] = ACTIONS(5260), + [anon_sym_SEMI] = ACTIONS(5260), + [anon_sym_deinit] = ACTIONS(5260), + [anon_sym_subscript] = ACTIONS(5260), + [anon_sym_prefix] = ACTIONS(5260), + [anon_sym_infix] = ACTIONS(5260), + [anon_sym_postfix] = ACTIONS(5260), + [anon_sym_precedencegroup] = ACTIONS(5260), + [anon_sym_associatedtype] = ACTIONS(5260), + [anon_sym_AT] = ACTIONS(5262), + [sym_property_behavior_modifier] = ACTIONS(5260), + [anon_sym_override] = ACTIONS(5260), + [anon_sym_convenience] = ACTIONS(5260), + [anon_sym_required] = ACTIONS(5260), + [anon_sym_public] = ACTIONS(5260), + [anon_sym_private] = ACTIONS(5260), + [anon_sym_internal] = ACTIONS(5260), + [anon_sym_fileprivate] = ACTIONS(5260), + [anon_sym_open] = ACTIONS(5260), + [anon_sym_mutating] = ACTIONS(5260), + [anon_sym_nonmutating] = ACTIONS(5260), + [anon_sym_static] = ACTIONS(5260), + [anon_sym_dynamic] = ACTIONS(5260), + [anon_sym_optional] = ACTIONS(5260), + [anon_sym_final] = ACTIONS(5260), + [anon_sym_inout] = ACTIONS(5260), + [anon_sym_ATescaping] = ACTIONS(5260), + [anon_sym_ATautoclosure] = ACTIONS(5260), + [anon_sym_weak] = ACTIONS(5260), + [anon_sym_unowned] = ACTIONS(5262), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5260), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5260), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5260), + [sym__three_dot_operator_custom] = ACTIONS(5260), + [sym__open_ended_range_operator_custom] = ACTIONS(5260), + [sym__conjunction_operator_custom] = ACTIONS(5260), + [sym__disjunction_operator_custom] = ACTIONS(5260), + [sym__nil_coalescing_operator_custom] = ACTIONS(5260), + [sym__eq_eq_custom] = ACTIONS(5260), + [sym__plus_then_ws] = ACTIONS(5260), + [sym__minus_then_ws] = ACTIONS(5260), + [sym_bang] = ACTIONS(5260), + [sym__as_custom] = ACTIONS(5260), + [sym__as_quest_custom] = ACTIONS(5260), + [sym__as_bang_custom] = ACTIONS(5260), + }, + [1288] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4879), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_COLON] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_RBRACK] = ACTIONS(4879), + [anon_sym_QMARK] = ACTIONS(4877), + [sym__immediate_quest] = ACTIONS(4877), + [anon_sym_AMP] = ACTIONS(4877), + [anon_sym_async] = ACTIONS(4879), + [aux_sym_custom_operator_token1] = ACTIONS(4877), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_case] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4877), + [anon_sym_LT_EQ] = ACTIONS(4877), + [anon_sym_GT_EQ] = ACTIONS(4877), + [anon_sym_is] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_PLUS_PLUS] = ACTIONS(4877), + [anon_sym_DASH_DASH] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4877), + [anon_sym_CARET] = ACTIONS(4877), + [anon_sym_LT_LT] = ACTIONS(4877), + [anon_sym_GT_GT] = ACTIONS(4877), + [anon_sym_import] = ACTIONS(4879), + [anon_sym_typealias] = ACTIONS(4879), + [anon_sym_struct] = ACTIONS(4879), + [anon_sym_class] = ACTIONS(4879), + [anon_sym_enum] = ACTIONS(4879), + [anon_sym_protocol] = ACTIONS(4879), + [anon_sym_let] = ACTIONS(4879), + [anon_sym_var] = ACTIONS(4879), + [anon_sym_func] = ACTIONS(4879), + [anon_sym_extension] = ACTIONS(4879), + [anon_sym_indirect] = ACTIONS(4879), + [anon_sym_init] = ACTIONS(4879), + [anon_sym_SEMI] = ACTIONS(4879), + [anon_sym_deinit] = ACTIONS(4879), + [anon_sym_subscript] = ACTIONS(4879), + [anon_sym_prefix] = ACTIONS(4879), + [anon_sym_infix] = ACTIONS(4879), + [anon_sym_postfix] = ACTIONS(4879), + [anon_sym_precedencegroup] = ACTIONS(4879), + [anon_sym_associatedtype] = ACTIONS(4879), + [anon_sym_AT] = ACTIONS(4877), + [sym_property_behavior_modifier] = ACTIONS(4879), + [anon_sym_override] = ACTIONS(4879), + [anon_sym_convenience] = ACTIONS(4879), + [anon_sym_required] = ACTIONS(4879), + [anon_sym_public] = ACTIONS(4879), + [anon_sym_private] = ACTIONS(4879), + [anon_sym_internal] = ACTIONS(4879), + [anon_sym_fileprivate] = ACTIONS(4879), + [anon_sym_open] = ACTIONS(4879), + [anon_sym_mutating] = ACTIONS(4879), + [anon_sym_nonmutating] = ACTIONS(4879), + [anon_sym_static] = ACTIONS(4879), + [anon_sym_dynamic] = ACTIONS(4879), + [anon_sym_optional] = ACTIONS(4879), + [anon_sym_final] = ACTIONS(4879), + [anon_sym_inout] = ACTIONS(4879), + [anon_sym_ATescaping] = ACTIONS(4879), + [anon_sym_ATautoclosure] = ACTIONS(4879), + [anon_sym_weak] = ACTIONS(4879), + [anon_sym_unowned] = ACTIONS(4877), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4879), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4879), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4879), + [sym__three_dot_operator_custom] = ACTIONS(4879), + [sym__open_ended_range_operator_custom] = ACTIONS(4879), + [sym__conjunction_operator_custom] = ACTIONS(4879), + [sym__disjunction_operator_custom] = ACTIONS(4879), + [sym__nil_coalescing_operator_custom] = ACTIONS(4879), + [sym__eq_eq_custom] = ACTIONS(4879), + [sym__plus_then_ws] = ACTIONS(4879), + [sym__minus_then_ws] = ACTIONS(4879), + [sym_bang] = ACTIONS(4879), + [sym__as_custom] = ACTIONS(4879), + [sym__as_quest_custom] = ACTIONS(4879), + [sym__as_bang_custom] = ACTIONS(4879), + }, + [1289] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5264), + [anon_sym_COMMA] = ACTIONS(5264), + [anon_sym_COLON] = ACTIONS(5264), + [anon_sym_LPAREN] = ACTIONS(5264), + [anon_sym_LBRACK] = ACTIONS(5264), + [anon_sym_RBRACK] = ACTIONS(5264), + [anon_sym_QMARK] = ACTIONS(5266), + [sym__immediate_quest] = ACTIONS(5266), + [anon_sym_AMP] = ACTIONS(5266), + [anon_sym_async] = ACTIONS(5264), + [aux_sym_custom_operator_token1] = ACTIONS(5266), + [anon_sym_LT] = ACTIONS(5266), + [anon_sym_GT] = ACTIONS(5266), + [anon_sym_LBRACE] = ACTIONS(5264), + [anon_sym_RBRACE] = ACTIONS(5264), + [anon_sym_case] = ACTIONS(5264), + [anon_sym_BANG_EQ] = ACTIONS(5266), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5266), + [anon_sym_LT_EQ] = ACTIONS(5266), + [anon_sym_GT_EQ] = ACTIONS(5266), + [anon_sym_is] = ACTIONS(5264), + [anon_sym_PLUS] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(5266), + [anon_sym_STAR] = ACTIONS(5266), + [anon_sym_SLASH] = ACTIONS(5266), + [anon_sym_PERCENT] = ACTIONS(5266), + [anon_sym_PLUS_PLUS] = ACTIONS(5266), + [anon_sym_DASH_DASH] = ACTIONS(5266), + [anon_sym_PIPE] = ACTIONS(5266), + [anon_sym_CARET] = ACTIONS(5266), + [anon_sym_LT_LT] = ACTIONS(5266), + [anon_sym_GT_GT] = ACTIONS(5266), + [anon_sym_import] = ACTIONS(5264), + [anon_sym_typealias] = ACTIONS(5264), + [anon_sym_struct] = ACTIONS(5264), + [anon_sym_class] = ACTIONS(5264), + [anon_sym_enum] = ACTIONS(5264), + [anon_sym_protocol] = ACTIONS(5264), + [anon_sym_let] = ACTIONS(5264), + [anon_sym_var] = ACTIONS(5264), + [anon_sym_func] = ACTIONS(5264), + [anon_sym_extension] = ACTIONS(5264), + [anon_sym_indirect] = ACTIONS(5264), + [anon_sym_init] = ACTIONS(5264), + [anon_sym_SEMI] = ACTIONS(5264), + [anon_sym_deinit] = ACTIONS(5264), + [anon_sym_subscript] = ACTIONS(5264), + [anon_sym_prefix] = ACTIONS(5264), + [anon_sym_infix] = ACTIONS(5264), + [anon_sym_postfix] = ACTIONS(5264), + [anon_sym_precedencegroup] = ACTIONS(5264), + [anon_sym_associatedtype] = ACTIONS(5264), + [anon_sym_AT] = ACTIONS(5266), + [sym_property_behavior_modifier] = ACTIONS(5264), + [anon_sym_override] = ACTIONS(5264), + [anon_sym_convenience] = ACTIONS(5264), + [anon_sym_required] = ACTIONS(5264), + [anon_sym_public] = ACTIONS(5264), + [anon_sym_private] = ACTIONS(5264), + [anon_sym_internal] = ACTIONS(5264), + [anon_sym_fileprivate] = ACTIONS(5264), + [anon_sym_open] = ACTIONS(5264), + [anon_sym_mutating] = ACTIONS(5264), + [anon_sym_nonmutating] = ACTIONS(5264), + [anon_sym_static] = ACTIONS(5264), + [anon_sym_dynamic] = ACTIONS(5264), + [anon_sym_optional] = ACTIONS(5264), + [anon_sym_final] = ACTIONS(5264), + [anon_sym_inout] = ACTIONS(5264), + [anon_sym_ATescaping] = ACTIONS(5264), + [anon_sym_ATautoclosure] = ACTIONS(5264), + [anon_sym_weak] = ACTIONS(5264), + [anon_sym_unowned] = ACTIONS(5266), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5264), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5264), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5264), + [sym__three_dot_operator_custom] = ACTIONS(5264), + [sym__open_ended_range_operator_custom] = ACTIONS(5264), + [sym__conjunction_operator_custom] = ACTIONS(5264), + [sym__disjunction_operator_custom] = ACTIONS(5264), + [sym__nil_coalescing_operator_custom] = ACTIONS(5264), + [sym__eq_eq_custom] = ACTIONS(5264), + [sym__plus_then_ws] = ACTIONS(5264), + [sym__minus_then_ws] = ACTIONS(5264), + [sym_bang] = ACTIONS(5264), + [sym__as_custom] = ACTIONS(5264), + [sym__as_quest_custom] = ACTIONS(5264), + [sym__as_bang_custom] = ACTIONS(5264), + }, + [1290] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5268), + [anon_sym_COMMA] = ACTIONS(5268), + [anon_sym_COLON] = ACTIONS(5268), + [anon_sym_LPAREN] = ACTIONS(5268), + [anon_sym_LBRACK] = ACTIONS(5268), + [anon_sym_RBRACK] = ACTIONS(5268), + [anon_sym_QMARK] = ACTIONS(5270), + [sym__immediate_quest] = ACTIONS(5270), + [anon_sym_AMP] = ACTIONS(5270), + [anon_sym_async] = ACTIONS(5268), + [aux_sym_custom_operator_token1] = ACTIONS(5270), + [anon_sym_LT] = ACTIONS(5270), + [anon_sym_GT] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5268), + [anon_sym_RBRACE] = ACTIONS(5268), + [anon_sym_case] = ACTIONS(5268), + [anon_sym_BANG_EQ] = ACTIONS(5270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5270), + [anon_sym_LT_EQ] = ACTIONS(5270), + [anon_sym_GT_EQ] = ACTIONS(5270), + [anon_sym_is] = ACTIONS(5268), + [anon_sym_PLUS] = ACTIONS(5270), + [anon_sym_DASH] = ACTIONS(5270), + [anon_sym_STAR] = ACTIONS(5270), + [anon_sym_SLASH] = ACTIONS(5270), + [anon_sym_PERCENT] = ACTIONS(5270), + [anon_sym_PLUS_PLUS] = ACTIONS(5270), + [anon_sym_DASH_DASH] = ACTIONS(5270), + [anon_sym_PIPE] = ACTIONS(5270), + [anon_sym_CARET] = ACTIONS(5270), + [anon_sym_LT_LT] = ACTIONS(5270), + [anon_sym_GT_GT] = ACTIONS(5270), + [anon_sym_import] = ACTIONS(5268), + [anon_sym_typealias] = ACTIONS(5268), + [anon_sym_struct] = ACTIONS(5268), + [anon_sym_class] = ACTIONS(5268), + [anon_sym_enum] = ACTIONS(5268), + [anon_sym_protocol] = ACTIONS(5268), + [anon_sym_let] = ACTIONS(5268), + [anon_sym_var] = ACTIONS(5268), + [anon_sym_func] = ACTIONS(5268), + [anon_sym_extension] = ACTIONS(5268), + [anon_sym_indirect] = ACTIONS(5268), + [anon_sym_init] = ACTIONS(5268), + [anon_sym_SEMI] = ACTIONS(5268), + [anon_sym_deinit] = ACTIONS(5268), + [anon_sym_subscript] = ACTIONS(5268), + [anon_sym_prefix] = ACTIONS(5268), + [anon_sym_infix] = ACTIONS(5268), + [anon_sym_postfix] = ACTIONS(5268), + [anon_sym_precedencegroup] = ACTIONS(5268), + [anon_sym_associatedtype] = ACTIONS(5268), + [anon_sym_AT] = ACTIONS(5270), + [sym_property_behavior_modifier] = ACTIONS(5268), + [anon_sym_override] = ACTIONS(5268), + [anon_sym_convenience] = ACTIONS(5268), + [anon_sym_required] = ACTIONS(5268), + [anon_sym_public] = ACTIONS(5268), + [anon_sym_private] = ACTIONS(5268), + [anon_sym_internal] = ACTIONS(5268), + [anon_sym_fileprivate] = ACTIONS(5268), + [anon_sym_open] = ACTIONS(5268), + [anon_sym_mutating] = ACTIONS(5268), + [anon_sym_nonmutating] = ACTIONS(5268), + [anon_sym_static] = ACTIONS(5268), + [anon_sym_dynamic] = ACTIONS(5268), + [anon_sym_optional] = ACTIONS(5268), + [anon_sym_final] = ACTIONS(5268), + [anon_sym_inout] = ACTIONS(5268), + [anon_sym_ATescaping] = ACTIONS(5268), + [anon_sym_ATautoclosure] = ACTIONS(5268), + [anon_sym_weak] = ACTIONS(5268), + [anon_sym_unowned] = ACTIONS(5270), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5268), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5268), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5268), + [sym__three_dot_operator_custom] = ACTIONS(5268), + [sym__open_ended_range_operator_custom] = ACTIONS(5268), + [sym__conjunction_operator_custom] = ACTIONS(5268), + [sym__disjunction_operator_custom] = ACTIONS(5268), + [sym__nil_coalescing_operator_custom] = ACTIONS(5268), + [sym__eq_eq_custom] = ACTIONS(5268), + [sym__plus_then_ws] = ACTIONS(5268), + [sym__minus_then_ws] = ACTIONS(5268), + [sym_bang] = ACTIONS(5268), + [sym__as_custom] = ACTIONS(5268), + [sym__as_quest_custom] = ACTIONS(5268), + [sym__as_bang_custom] = ACTIONS(5268), + }, + [1291] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5272), + [anon_sym_COMMA] = ACTIONS(5272), + [anon_sym_COLON] = ACTIONS(5272), + [anon_sym_LPAREN] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5272), + [anon_sym_RBRACK] = ACTIONS(5272), + [anon_sym_QMARK] = ACTIONS(5274), + [sym__immediate_quest] = ACTIONS(5274), + [anon_sym_AMP] = ACTIONS(5274), + [anon_sym_async] = ACTIONS(5272), + [aux_sym_custom_operator_token1] = ACTIONS(5274), + [anon_sym_LT] = ACTIONS(5274), + [anon_sym_GT] = ACTIONS(5274), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_RBRACE] = ACTIONS(5272), + [anon_sym_case] = ACTIONS(5272), + [anon_sym_BANG_EQ] = ACTIONS(5274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5274), + [anon_sym_LT_EQ] = ACTIONS(5274), + [anon_sym_GT_EQ] = ACTIONS(5274), + [anon_sym_is] = ACTIONS(5272), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5274), + [anon_sym_STAR] = ACTIONS(5274), + [anon_sym_SLASH] = ACTIONS(5274), + [anon_sym_PERCENT] = ACTIONS(5274), + [anon_sym_PLUS_PLUS] = ACTIONS(5274), + [anon_sym_DASH_DASH] = ACTIONS(5274), + [anon_sym_PIPE] = ACTIONS(5274), + [anon_sym_CARET] = ACTIONS(5274), + [anon_sym_LT_LT] = ACTIONS(5274), + [anon_sym_GT_GT] = ACTIONS(5274), + [anon_sym_import] = ACTIONS(5272), + [anon_sym_typealias] = ACTIONS(5272), + [anon_sym_struct] = ACTIONS(5272), + [anon_sym_class] = ACTIONS(5272), + [anon_sym_enum] = ACTIONS(5272), + [anon_sym_protocol] = ACTIONS(5272), + [anon_sym_let] = ACTIONS(5272), + [anon_sym_var] = ACTIONS(5272), + [anon_sym_func] = ACTIONS(5272), + [anon_sym_extension] = ACTIONS(5272), + [anon_sym_indirect] = ACTIONS(5272), + [anon_sym_init] = ACTIONS(5272), + [anon_sym_SEMI] = ACTIONS(5272), + [anon_sym_deinit] = ACTIONS(5272), + [anon_sym_subscript] = ACTIONS(5272), + [anon_sym_prefix] = ACTIONS(5272), + [anon_sym_infix] = ACTIONS(5272), + [anon_sym_postfix] = ACTIONS(5272), + [anon_sym_precedencegroup] = ACTIONS(5272), + [anon_sym_associatedtype] = ACTIONS(5272), + [anon_sym_AT] = ACTIONS(5274), + [sym_property_behavior_modifier] = ACTIONS(5272), + [anon_sym_override] = ACTIONS(5272), + [anon_sym_convenience] = ACTIONS(5272), + [anon_sym_required] = ACTIONS(5272), + [anon_sym_public] = ACTIONS(5272), + [anon_sym_private] = ACTIONS(5272), + [anon_sym_internal] = ACTIONS(5272), + [anon_sym_fileprivate] = ACTIONS(5272), + [anon_sym_open] = ACTIONS(5272), + [anon_sym_mutating] = ACTIONS(5272), + [anon_sym_nonmutating] = ACTIONS(5272), + [anon_sym_static] = ACTIONS(5272), + [anon_sym_dynamic] = ACTIONS(5272), + [anon_sym_optional] = ACTIONS(5272), + [anon_sym_final] = ACTIONS(5272), + [anon_sym_inout] = ACTIONS(5272), + [anon_sym_ATescaping] = ACTIONS(5272), + [anon_sym_ATautoclosure] = ACTIONS(5272), + [anon_sym_weak] = ACTIONS(5272), + [anon_sym_unowned] = ACTIONS(5274), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5272), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5272), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5272), + [sym__three_dot_operator_custom] = ACTIONS(5272), + [sym__open_ended_range_operator_custom] = ACTIONS(5272), + [sym__conjunction_operator_custom] = ACTIONS(5272), + [sym__disjunction_operator_custom] = ACTIONS(5272), + [sym__nil_coalescing_operator_custom] = ACTIONS(5272), + [sym__eq_eq_custom] = ACTIONS(5272), + [sym__plus_then_ws] = ACTIONS(5272), + [sym__minus_then_ws] = ACTIONS(5272), + [sym_bang] = ACTIONS(5272), + [sym__as_custom] = ACTIONS(5272), + [sym__as_quest_custom] = ACTIONS(5272), + [sym__as_bang_custom] = ACTIONS(5272), + }, + [1292] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5276), + [anon_sym_COMMA] = ACTIONS(5276), + [anon_sym_COLON] = ACTIONS(5276), + [anon_sym_LPAREN] = ACTIONS(5276), + [anon_sym_LBRACK] = ACTIONS(5276), + [anon_sym_RBRACK] = ACTIONS(5276), + [anon_sym_QMARK] = ACTIONS(5278), + [sym__immediate_quest] = ACTIONS(5278), + [anon_sym_AMP] = ACTIONS(5278), + [anon_sym_async] = ACTIONS(5276), + [aux_sym_custom_operator_token1] = ACTIONS(5278), + [anon_sym_LT] = ACTIONS(5278), + [anon_sym_GT] = ACTIONS(5278), + [anon_sym_LBRACE] = ACTIONS(5276), + [anon_sym_RBRACE] = ACTIONS(5276), + [anon_sym_case] = ACTIONS(5276), + [anon_sym_BANG_EQ] = ACTIONS(5278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5278), + [anon_sym_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_EQ] = ACTIONS(5278), + [anon_sym_is] = ACTIONS(5276), + [anon_sym_PLUS] = ACTIONS(5278), + [anon_sym_DASH] = ACTIONS(5278), + [anon_sym_STAR] = ACTIONS(5278), + [anon_sym_SLASH] = ACTIONS(5278), + [anon_sym_PERCENT] = ACTIONS(5278), + [anon_sym_PLUS_PLUS] = ACTIONS(5278), + [anon_sym_DASH_DASH] = ACTIONS(5278), + [anon_sym_PIPE] = ACTIONS(5278), + [anon_sym_CARET] = ACTIONS(5278), + [anon_sym_LT_LT] = ACTIONS(5278), + [anon_sym_GT_GT] = ACTIONS(5278), + [anon_sym_import] = ACTIONS(5276), + [anon_sym_typealias] = ACTIONS(5276), + [anon_sym_struct] = ACTIONS(5276), + [anon_sym_class] = ACTIONS(5276), + [anon_sym_enum] = ACTIONS(5276), + [anon_sym_protocol] = ACTIONS(5276), + [anon_sym_let] = ACTIONS(5276), + [anon_sym_var] = ACTIONS(5276), + [anon_sym_func] = ACTIONS(5276), + [anon_sym_extension] = ACTIONS(5276), + [anon_sym_indirect] = ACTIONS(5276), + [anon_sym_init] = ACTIONS(5276), + [anon_sym_SEMI] = ACTIONS(5276), + [anon_sym_deinit] = ACTIONS(5276), + [anon_sym_subscript] = ACTIONS(5276), + [anon_sym_prefix] = ACTIONS(5276), + [anon_sym_infix] = ACTIONS(5276), + [anon_sym_postfix] = ACTIONS(5276), + [anon_sym_precedencegroup] = ACTIONS(5276), + [anon_sym_associatedtype] = ACTIONS(5276), + [anon_sym_AT] = ACTIONS(5278), + [sym_property_behavior_modifier] = ACTIONS(5276), + [anon_sym_override] = ACTIONS(5276), + [anon_sym_convenience] = ACTIONS(5276), + [anon_sym_required] = ACTIONS(5276), + [anon_sym_public] = ACTIONS(5276), + [anon_sym_private] = ACTIONS(5276), + [anon_sym_internal] = ACTIONS(5276), + [anon_sym_fileprivate] = ACTIONS(5276), + [anon_sym_open] = ACTIONS(5276), + [anon_sym_mutating] = ACTIONS(5276), + [anon_sym_nonmutating] = ACTIONS(5276), + [anon_sym_static] = ACTIONS(5276), + [anon_sym_dynamic] = ACTIONS(5276), + [anon_sym_optional] = ACTIONS(5276), + [anon_sym_final] = ACTIONS(5276), + [anon_sym_inout] = ACTIONS(5276), + [anon_sym_ATescaping] = ACTIONS(5276), + [anon_sym_ATautoclosure] = ACTIONS(5276), + [anon_sym_weak] = ACTIONS(5276), + [anon_sym_unowned] = ACTIONS(5278), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5276), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5276), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5276), + [sym__three_dot_operator_custom] = ACTIONS(5276), + [sym__open_ended_range_operator_custom] = ACTIONS(5276), + [sym__conjunction_operator_custom] = ACTIONS(5276), + [sym__disjunction_operator_custom] = ACTIONS(5276), + [sym__nil_coalescing_operator_custom] = ACTIONS(5276), + [sym__eq_eq_custom] = ACTIONS(5276), + [sym__plus_then_ws] = ACTIONS(5276), + [sym__minus_then_ws] = ACTIONS(5276), + [sym_bang] = ACTIONS(5276), + [sym__as_custom] = ACTIONS(5276), + [sym__as_quest_custom] = ACTIONS(5276), + [sym__as_bang_custom] = ACTIONS(5276), + }, + [1293] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5280), + [anon_sym_COMMA] = ACTIONS(5280), + [anon_sym_COLON] = ACTIONS(5280), + [anon_sym_LPAREN] = ACTIONS(5280), + [anon_sym_LBRACK] = ACTIONS(5280), + [anon_sym_RBRACK] = ACTIONS(5280), + [anon_sym_QMARK] = ACTIONS(5282), + [sym__immediate_quest] = ACTIONS(5282), + [anon_sym_AMP] = ACTIONS(5282), + [anon_sym_async] = ACTIONS(5280), + [aux_sym_custom_operator_token1] = ACTIONS(5282), + [anon_sym_LT] = ACTIONS(5282), + [anon_sym_GT] = ACTIONS(5282), + [anon_sym_LBRACE] = ACTIONS(5280), + [anon_sym_RBRACE] = ACTIONS(5280), + [anon_sym_case] = ACTIONS(5280), + [anon_sym_BANG_EQ] = ACTIONS(5282), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5282), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5282), + [anon_sym_LT_EQ] = ACTIONS(5282), + [anon_sym_GT_EQ] = ACTIONS(5282), + [anon_sym_is] = ACTIONS(5280), + [anon_sym_PLUS] = ACTIONS(5282), + [anon_sym_DASH] = ACTIONS(5282), + [anon_sym_STAR] = ACTIONS(5282), + [anon_sym_SLASH] = ACTIONS(5282), + [anon_sym_PERCENT] = ACTIONS(5282), + [anon_sym_PLUS_PLUS] = ACTIONS(5282), + [anon_sym_DASH_DASH] = ACTIONS(5282), + [anon_sym_PIPE] = ACTIONS(5282), + [anon_sym_CARET] = ACTIONS(5282), + [anon_sym_LT_LT] = ACTIONS(5282), + [anon_sym_GT_GT] = ACTIONS(5282), + [anon_sym_import] = ACTIONS(5280), + [anon_sym_typealias] = ACTIONS(5280), + [anon_sym_struct] = ACTIONS(5280), + [anon_sym_class] = ACTIONS(5280), + [anon_sym_enum] = ACTIONS(5280), + [anon_sym_protocol] = ACTIONS(5280), + [anon_sym_let] = ACTIONS(5280), + [anon_sym_var] = ACTIONS(5280), + [anon_sym_func] = ACTIONS(5280), + [anon_sym_extension] = ACTIONS(5280), + [anon_sym_indirect] = ACTIONS(5280), + [anon_sym_init] = ACTIONS(5280), + [anon_sym_SEMI] = ACTIONS(5280), + [anon_sym_deinit] = ACTIONS(5280), + [anon_sym_subscript] = ACTIONS(5280), + [anon_sym_prefix] = ACTIONS(5280), + [anon_sym_infix] = ACTIONS(5280), + [anon_sym_postfix] = ACTIONS(5280), + [anon_sym_precedencegroup] = ACTIONS(5280), + [anon_sym_associatedtype] = ACTIONS(5280), + [anon_sym_AT] = ACTIONS(5282), + [sym_property_behavior_modifier] = ACTIONS(5280), + [anon_sym_override] = ACTIONS(5280), + [anon_sym_convenience] = ACTIONS(5280), + [anon_sym_required] = ACTIONS(5280), + [anon_sym_public] = ACTIONS(5280), + [anon_sym_private] = ACTIONS(5280), + [anon_sym_internal] = ACTIONS(5280), + [anon_sym_fileprivate] = ACTIONS(5280), + [anon_sym_open] = ACTIONS(5280), + [anon_sym_mutating] = ACTIONS(5280), + [anon_sym_nonmutating] = ACTIONS(5280), + [anon_sym_static] = ACTIONS(5280), + [anon_sym_dynamic] = ACTIONS(5280), + [anon_sym_optional] = ACTIONS(5280), + [anon_sym_final] = ACTIONS(5280), + [anon_sym_inout] = ACTIONS(5280), + [anon_sym_ATescaping] = ACTIONS(5280), + [anon_sym_ATautoclosure] = ACTIONS(5280), + [anon_sym_weak] = ACTIONS(5280), + [anon_sym_unowned] = ACTIONS(5282), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5280), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5280), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5280), + [sym__three_dot_operator_custom] = ACTIONS(5280), + [sym__open_ended_range_operator_custom] = ACTIONS(5280), + [sym__conjunction_operator_custom] = ACTIONS(5280), + [sym__disjunction_operator_custom] = ACTIONS(5280), + [sym__nil_coalescing_operator_custom] = ACTIONS(5280), + [sym__eq_eq_custom] = ACTIONS(5280), + [sym__plus_then_ws] = ACTIONS(5280), + [sym__minus_then_ws] = ACTIONS(5280), + [sym_bang] = ACTIONS(5280), + [sym__as_custom] = ACTIONS(5280), + [sym__as_quest_custom] = ACTIONS(5280), + [sym__as_bang_custom] = ACTIONS(5280), + }, + [1294] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5284), + [anon_sym_COMMA] = ACTIONS(5284), + [anon_sym_COLON] = ACTIONS(5284), + [anon_sym_LPAREN] = ACTIONS(5284), + [anon_sym_LBRACK] = ACTIONS(5284), + [anon_sym_RBRACK] = ACTIONS(5284), + [anon_sym_QMARK] = ACTIONS(5286), + [sym__immediate_quest] = ACTIONS(5286), + [anon_sym_AMP] = ACTIONS(5286), + [anon_sym_async] = ACTIONS(5284), + [aux_sym_custom_operator_token1] = ACTIONS(5286), + [anon_sym_LT] = ACTIONS(5286), + [anon_sym_GT] = ACTIONS(5286), + [anon_sym_LBRACE] = ACTIONS(5284), + [anon_sym_RBRACE] = ACTIONS(5284), + [anon_sym_case] = ACTIONS(5284), + [anon_sym_BANG_EQ] = ACTIONS(5286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5286), + [anon_sym_LT_EQ] = ACTIONS(5286), + [anon_sym_GT_EQ] = ACTIONS(5286), + [anon_sym_is] = ACTIONS(5284), + [anon_sym_PLUS] = ACTIONS(5286), + [anon_sym_DASH] = ACTIONS(5286), + [anon_sym_STAR] = ACTIONS(5286), + [anon_sym_SLASH] = ACTIONS(5286), + [anon_sym_PERCENT] = ACTIONS(5286), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_PIPE] = ACTIONS(5286), + [anon_sym_CARET] = ACTIONS(5286), + [anon_sym_LT_LT] = ACTIONS(5286), + [anon_sym_GT_GT] = ACTIONS(5286), + [anon_sym_import] = ACTIONS(5284), + [anon_sym_typealias] = ACTIONS(5284), + [anon_sym_struct] = ACTIONS(5284), + [anon_sym_class] = ACTIONS(5284), + [anon_sym_enum] = ACTIONS(5284), + [anon_sym_protocol] = ACTIONS(5284), + [anon_sym_let] = ACTIONS(5284), + [anon_sym_var] = ACTIONS(5284), + [anon_sym_func] = ACTIONS(5284), + [anon_sym_extension] = ACTIONS(5284), + [anon_sym_indirect] = ACTIONS(5284), + [anon_sym_init] = ACTIONS(5284), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym_deinit] = ACTIONS(5284), + [anon_sym_subscript] = ACTIONS(5284), + [anon_sym_prefix] = ACTIONS(5284), + [anon_sym_infix] = ACTIONS(5284), + [anon_sym_postfix] = ACTIONS(5284), + [anon_sym_precedencegroup] = ACTIONS(5284), + [anon_sym_associatedtype] = ACTIONS(5284), + [anon_sym_AT] = ACTIONS(5286), + [sym_property_behavior_modifier] = ACTIONS(5284), + [anon_sym_override] = ACTIONS(5284), + [anon_sym_convenience] = ACTIONS(5284), + [anon_sym_required] = ACTIONS(5284), + [anon_sym_public] = ACTIONS(5284), + [anon_sym_private] = ACTIONS(5284), + [anon_sym_internal] = ACTIONS(5284), + [anon_sym_fileprivate] = ACTIONS(5284), + [anon_sym_open] = ACTIONS(5284), + [anon_sym_mutating] = ACTIONS(5284), + [anon_sym_nonmutating] = ACTIONS(5284), + [anon_sym_static] = ACTIONS(5284), + [anon_sym_dynamic] = ACTIONS(5284), + [anon_sym_optional] = ACTIONS(5284), + [anon_sym_final] = ACTIONS(5284), + [anon_sym_inout] = ACTIONS(5284), + [anon_sym_ATescaping] = ACTIONS(5284), + [anon_sym_ATautoclosure] = ACTIONS(5284), + [anon_sym_weak] = ACTIONS(5284), + [anon_sym_unowned] = ACTIONS(5286), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5284), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5284), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5284), + [sym__three_dot_operator_custom] = ACTIONS(5284), + [sym__open_ended_range_operator_custom] = ACTIONS(5284), + [sym__conjunction_operator_custom] = ACTIONS(5284), + [sym__disjunction_operator_custom] = ACTIONS(5284), + [sym__nil_coalescing_operator_custom] = ACTIONS(5284), + [sym__eq_eq_custom] = ACTIONS(5284), + [sym__plus_then_ws] = ACTIONS(5284), + [sym__minus_then_ws] = ACTIONS(5284), + [sym_bang] = ACTIONS(5284), + [sym__as_custom] = ACTIONS(5284), + [sym__as_quest_custom] = ACTIONS(5284), + [sym__as_bang_custom] = ACTIONS(5284), + }, + [1295] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5288), + [anon_sym_COMMA] = ACTIONS(5288), + [anon_sym_COLON] = ACTIONS(5288), + [anon_sym_LPAREN] = ACTIONS(5288), + [anon_sym_LBRACK] = ACTIONS(5288), + [anon_sym_RBRACK] = ACTIONS(5288), + [anon_sym_QMARK] = ACTIONS(5290), + [sym__immediate_quest] = ACTIONS(5290), + [anon_sym_AMP] = ACTIONS(5290), + [anon_sym_async] = ACTIONS(5288), + [aux_sym_custom_operator_token1] = ACTIONS(5290), + [anon_sym_LT] = ACTIONS(5290), + [anon_sym_GT] = ACTIONS(5290), + [anon_sym_LBRACE] = ACTIONS(5288), + [anon_sym_RBRACE] = ACTIONS(5288), + [anon_sym_case] = ACTIONS(5288), + [anon_sym_BANG_EQ] = ACTIONS(5290), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5290), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5290), + [anon_sym_LT_EQ] = ACTIONS(5290), + [anon_sym_GT_EQ] = ACTIONS(5290), + [anon_sym_is] = ACTIONS(5288), + [anon_sym_PLUS] = ACTIONS(5290), + [anon_sym_DASH] = ACTIONS(5290), + [anon_sym_STAR] = ACTIONS(5290), + [anon_sym_SLASH] = ACTIONS(5290), + [anon_sym_PERCENT] = ACTIONS(5290), + [anon_sym_PLUS_PLUS] = ACTIONS(5290), + [anon_sym_DASH_DASH] = ACTIONS(5290), + [anon_sym_PIPE] = ACTIONS(5290), + [anon_sym_CARET] = ACTIONS(5290), + [anon_sym_LT_LT] = ACTIONS(5290), + [anon_sym_GT_GT] = ACTIONS(5290), + [anon_sym_import] = ACTIONS(5288), + [anon_sym_typealias] = ACTIONS(5288), + [anon_sym_struct] = ACTIONS(5288), + [anon_sym_class] = ACTIONS(5288), + [anon_sym_enum] = ACTIONS(5288), + [anon_sym_protocol] = ACTIONS(5288), + [anon_sym_let] = ACTIONS(5288), + [anon_sym_var] = ACTIONS(5288), + [anon_sym_func] = ACTIONS(5288), + [anon_sym_extension] = ACTIONS(5288), + [anon_sym_indirect] = ACTIONS(5288), + [anon_sym_init] = ACTIONS(5288), + [anon_sym_SEMI] = ACTIONS(5288), + [anon_sym_deinit] = ACTIONS(5288), + [anon_sym_subscript] = ACTIONS(5288), + [anon_sym_prefix] = ACTIONS(5288), + [anon_sym_infix] = ACTIONS(5288), + [anon_sym_postfix] = ACTIONS(5288), + [anon_sym_precedencegroup] = ACTIONS(5288), + [anon_sym_associatedtype] = ACTIONS(5288), + [anon_sym_AT] = ACTIONS(5290), + [sym_property_behavior_modifier] = ACTIONS(5288), + [anon_sym_override] = ACTIONS(5288), + [anon_sym_convenience] = ACTIONS(5288), + [anon_sym_required] = ACTIONS(5288), + [anon_sym_public] = ACTIONS(5288), + [anon_sym_private] = ACTIONS(5288), + [anon_sym_internal] = ACTIONS(5288), + [anon_sym_fileprivate] = ACTIONS(5288), + [anon_sym_open] = ACTIONS(5288), + [anon_sym_mutating] = ACTIONS(5288), + [anon_sym_nonmutating] = ACTIONS(5288), + [anon_sym_static] = ACTIONS(5288), + [anon_sym_dynamic] = ACTIONS(5288), + [anon_sym_optional] = ACTIONS(5288), + [anon_sym_final] = ACTIONS(5288), + [anon_sym_inout] = ACTIONS(5288), + [anon_sym_ATescaping] = ACTIONS(5288), + [anon_sym_ATautoclosure] = ACTIONS(5288), + [anon_sym_weak] = ACTIONS(5288), + [anon_sym_unowned] = ACTIONS(5290), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5288), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5288), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5288), + [sym__three_dot_operator_custom] = ACTIONS(5288), + [sym__open_ended_range_operator_custom] = ACTIONS(5288), + [sym__conjunction_operator_custom] = ACTIONS(5288), + [sym__disjunction_operator_custom] = ACTIONS(5288), + [sym__nil_coalescing_operator_custom] = ACTIONS(5288), + [sym__eq_eq_custom] = ACTIONS(5288), + [sym__plus_then_ws] = ACTIONS(5288), + [sym__minus_then_ws] = ACTIONS(5288), + [sym_bang] = ACTIONS(5288), + [sym__as_custom] = ACTIONS(5288), + [sym__as_quest_custom] = ACTIONS(5288), + [sym__as_bang_custom] = ACTIONS(5288), + }, + [1296] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5292), + [anon_sym_COMMA] = ACTIONS(5292), + [anon_sym_COLON] = ACTIONS(5292), + [anon_sym_LPAREN] = ACTIONS(5292), + [anon_sym_LBRACK] = ACTIONS(5292), + [anon_sym_RBRACK] = ACTIONS(5292), + [anon_sym_QMARK] = ACTIONS(5294), + [sym__immediate_quest] = ACTIONS(5294), + [anon_sym_AMP] = ACTIONS(5294), + [anon_sym_async] = ACTIONS(5292), + [aux_sym_custom_operator_token1] = ACTIONS(5294), + [anon_sym_LT] = ACTIONS(5294), + [anon_sym_GT] = ACTIONS(5294), + [anon_sym_LBRACE] = ACTIONS(5292), + [anon_sym_RBRACE] = ACTIONS(5292), + [anon_sym_case] = ACTIONS(5292), + [anon_sym_BANG_EQ] = ACTIONS(5294), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5294), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5294), + [anon_sym_LT_EQ] = ACTIONS(5294), + [anon_sym_GT_EQ] = ACTIONS(5294), + [anon_sym_is] = ACTIONS(5292), + [anon_sym_PLUS] = ACTIONS(5294), + [anon_sym_DASH] = ACTIONS(5294), + [anon_sym_STAR] = ACTIONS(5294), + [anon_sym_SLASH] = ACTIONS(5294), + [anon_sym_PERCENT] = ACTIONS(5294), + [anon_sym_PLUS_PLUS] = ACTIONS(5294), + [anon_sym_DASH_DASH] = ACTIONS(5294), + [anon_sym_PIPE] = ACTIONS(5294), + [anon_sym_CARET] = ACTIONS(5294), + [anon_sym_LT_LT] = ACTIONS(5294), + [anon_sym_GT_GT] = ACTIONS(5294), + [anon_sym_import] = ACTIONS(5292), + [anon_sym_typealias] = ACTIONS(5292), + [anon_sym_struct] = ACTIONS(5292), + [anon_sym_class] = ACTIONS(5292), + [anon_sym_enum] = ACTIONS(5292), + [anon_sym_protocol] = ACTIONS(5292), + [anon_sym_let] = ACTIONS(5292), + [anon_sym_var] = ACTIONS(5292), + [anon_sym_func] = ACTIONS(5292), + [anon_sym_extension] = ACTIONS(5292), + [anon_sym_indirect] = ACTIONS(5292), + [anon_sym_init] = ACTIONS(5292), + [anon_sym_SEMI] = ACTIONS(5292), + [anon_sym_deinit] = ACTIONS(5292), + [anon_sym_subscript] = ACTIONS(5292), + [anon_sym_prefix] = ACTIONS(5292), + [anon_sym_infix] = ACTIONS(5292), + [anon_sym_postfix] = ACTIONS(5292), + [anon_sym_precedencegroup] = ACTIONS(5292), + [anon_sym_associatedtype] = ACTIONS(5292), + [anon_sym_AT] = ACTIONS(5294), + [sym_property_behavior_modifier] = ACTIONS(5292), + [anon_sym_override] = ACTIONS(5292), + [anon_sym_convenience] = ACTIONS(5292), + [anon_sym_required] = ACTIONS(5292), + [anon_sym_public] = ACTIONS(5292), + [anon_sym_private] = ACTIONS(5292), + [anon_sym_internal] = ACTIONS(5292), + [anon_sym_fileprivate] = ACTIONS(5292), + [anon_sym_open] = ACTIONS(5292), + [anon_sym_mutating] = ACTIONS(5292), + [anon_sym_nonmutating] = ACTIONS(5292), + [anon_sym_static] = ACTIONS(5292), + [anon_sym_dynamic] = ACTIONS(5292), + [anon_sym_optional] = ACTIONS(5292), + [anon_sym_final] = ACTIONS(5292), + [anon_sym_inout] = ACTIONS(5292), + [anon_sym_ATescaping] = ACTIONS(5292), + [anon_sym_ATautoclosure] = ACTIONS(5292), + [anon_sym_weak] = ACTIONS(5292), + [anon_sym_unowned] = ACTIONS(5294), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5292), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5292), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5292), + [sym__three_dot_operator_custom] = ACTIONS(5292), + [sym__open_ended_range_operator_custom] = ACTIONS(5292), + [sym__conjunction_operator_custom] = ACTIONS(5292), + [sym__disjunction_operator_custom] = ACTIONS(5292), + [sym__nil_coalescing_operator_custom] = ACTIONS(5292), + [sym__eq_eq_custom] = ACTIONS(5292), + [sym__plus_then_ws] = ACTIONS(5292), + [sym__minus_then_ws] = ACTIONS(5292), + [sym_bang] = ACTIONS(5292), + [sym__as_custom] = ACTIONS(5292), + [sym__as_quest_custom] = ACTIONS(5292), + [sym__as_bang_custom] = ACTIONS(5292), + }, + [1297] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5296), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_COLON] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5296), + [anon_sym_LBRACK] = ACTIONS(5296), + [anon_sym_RBRACK] = ACTIONS(5296), + [anon_sym_QMARK] = ACTIONS(5298), + [sym__immediate_quest] = ACTIONS(5298), + [anon_sym_AMP] = ACTIONS(5298), + [anon_sym_async] = ACTIONS(5296), + [aux_sym_custom_operator_token1] = ACTIONS(5298), + [anon_sym_LT] = ACTIONS(5298), + [anon_sym_GT] = ACTIONS(5298), + [anon_sym_LBRACE] = ACTIONS(5296), + [anon_sym_RBRACE] = ACTIONS(5296), + [anon_sym_case] = ACTIONS(5296), + [anon_sym_BANG_EQ] = ACTIONS(5298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5298), + [anon_sym_LT_EQ] = ACTIONS(5298), + [anon_sym_GT_EQ] = ACTIONS(5298), + [anon_sym_is] = ACTIONS(5296), + [anon_sym_PLUS] = ACTIONS(5298), + [anon_sym_DASH] = ACTIONS(5298), + [anon_sym_STAR] = ACTIONS(5298), + [anon_sym_SLASH] = ACTIONS(5298), + [anon_sym_PERCENT] = ACTIONS(5298), + [anon_sym_PLUS_PLUS] = ACTIONS(5298), + [anon_sym_DASH_DASH] = ACTIONS(5298), + [anon_sym_PIPE] = ACTIONS(5298), + [anon_sym_CARET] = ACTIONS(5298), + [anon_sym_LT_LT] = ACTIONS(5298), + [anon_sym_GT_GT] = ACTIONS(5298), + [anon_sym_import] = ACTIONS(5296), + [anon_sym_typealias] = ACTIONS(5296), + [anon_sym_struct] = ACTIONS(5296), + [anon_sym_class] = ACTIONS(5296), + [anon_sym_enum] = ACTIONS(5296), + [anon_sym_protocol] = ACTIONS(5296), + [anon_sym_let] = ACTIONS(5296), + [anon_sym_var] = ACTIONS(5296), + [anon_sym_func] = ACTIONS(5296), + [anon_sym_extension] = ACTIONS(5296), + [anon_sym_indirect] = ACTIONS(5296), + [anon_sym_init] = ACTIONS(5296), + [anon_sym_SEMI] = ACTIONS(5296), + [anon_sym_deinit] = ACTIONS(5296), + [anon_sym_subscript] = ACTIONS(5296), + [anon_sym_prefix] = ACTIONS(5296), + [anon_sym_infix] = ACTIONS(5296), + [anon_sym_postfix] = ACTIONS(5296), + [anon_sym_precedencegroup] = ACTIONS(5296), + [anon_sym_associatedtype] = ACTIONS(5296), + [anon_sym_AT] = ACTIONS(5298), + [sym_property_behavior_modifier] = ACTIONS(5296), + [anon_sym_override] = ACTIONS(5296), + [anon_sym_convenience] = ACTIONS(5296), + [anon_sym_required] = ACTIONS(5296), + [anon_sym_public] = ACTIONS(5296), + [anon_sym_private] = ACTIONS(5296), + [anon_sym_internal] = ACTIONS(5296), + [anon_sym_fileprivate] = ACTIONS(5296), + [anon_sym_open] = ACTIONS(5296), + [anon_sym_mutating] = ACTIONS(5296), + [anon_sym_nonmutating] = ACTIONS(5296), + [anon_sym_static] = ACTIONS(5296), + [anon_sym_dynamic] = ACTIONS(5296), + [anon_sym_optional] = ACTIONS(5296), + [anon_sym_final] = ACTIONS(5296), + [anon_sym_inout] = ACTIONS(5296), + [anon_sym_ATescaping] = ACTIONS(5296), + [anon_sym_ATautoclosure] = ACTIONS(5296), + [anon_sym_weak] = ACTIONS(5296), + [anon_sym_unowned] = ACTIONS(5298), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5296), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5296), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5296), + [sym__three_dot_operator_custom] = ACTIONS(5296), + [sym__open_ended_range_operator_custom] = ACTIONS(5296), + [sym__conjunction_operator_custom] = ACTIONS(5296), + [sym__disjunction_operator_custom] = ACTIONS(5296), + [sym__nil_coalescing_operator_custom] = ACTIONS(5296), + [sym__eq_eq_custom] = ACTIONS(5296), + [sym__plus_then_ws] = ACTIONS(5296), + [sym__minus_then_ws] = ACTIONS(5296), + [sym_bang] = ACTIONS(5296), + [sym__as_custom] = ACTIONS(5296), + [sym__as_quest_custom] = ACTIONS(5296), + [sym__as_bang_custom] = ACTIONS(5296), + }, + [1298] = { + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5300), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5300), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [sym__immediate_quest] = ACTIONS(5302), + [anon_sym_AMP] = ACTIONS(5302), + [anon_sym_async] = ACTIONS(5300), + [aux_sym_custom_operator_token1] = ACTIONS(5302), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_LBRACE] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_case] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5302), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5302), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5302), + [anon_sym_LT_EQ] = ACTIONS(5302), + [anon_sym_GT_EQ] = ACTIONS(5302), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [anon_sym_STAR] = ACTIONS(5302), + [anon_sym_SLASH] = ACTIONS(5302), + [anon_sym_PERCENT] = ACTIONS(5302), + [anon_sym_PLUS_PLUS] = ACTIONS(5302), + [anon_sym_DASH_DASH] = ACTIONS(5302), + [anon_sym_PIPE] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5302), + [anon_sym_LT_LT] = ACTIONS(5302), + [anon_sym_GT_GT] = ACTIONS(5302), + [anon_sym_import] = ACTIONS(5300), + [anon_sym_typealias] = ACTIONS(5300), + [anon_sym_struct] = ACTIONS(5300), + [anon_sym_class] = ACTIONS(5300), + [anon_sym_enum] = ACTIONS(5300), + [anon_sym_protocol] = ACTIONS(5300), + [anon_sym_let] = ACTIONS(5300), + [anon_sym_var] = ACTIONS(5300), + [anon_sym_func] = ACTIONS(5300), + [anon_sym_extension] = ACTIONS(5300), + [anon_sym_indirect] = ACTIONS(5300), + [anon_sym_init] = ACTIONS(5300), + [anon_sym_SEMI] = ACTIONS(5300), + [anon_sym_deinit] = ACTIONS(5300), + [anon_sym_subscript] = ACTIONS(5300), + [anon_sym_prefix] = ACTIONS(5300), + [anon_sym_infix] = ACTIONS(5300), + [anon_sym_postfix] = ACTIONS(5300), + [anon_sym_precedencegroup] = ACTIONS(5300), + [anon_sym_associatedtype] = ACTIONS(5300), + [anon_sym_AT] = ACTIONS(5302), + [sym_property_behavior_modifier] = ACTIONS(5300), + [anon_sym_override] = ACTIONS(5300), + [anon_sym_convenience] = ACTIONS(5300), + [anon_sym_required] = ACTIONS(5300), + [anon_sym_public] = ACTIONS(5300), + [anon_sym_private] = ACTIONS(5300), + [anon_sym_internal] = ACTIONS(5300), + [anon_sym_fileprivate] = ACTIONS(5300), + [anon_sym_open] = ACTIONS(5300), + [anon_sym_mutating] = ACTIONS(5300), + [anon_sym_nonmutating] = ACTIONS(5300), + [anon_sym_static] = ACTIONS(5300), + [anon_sym_dynamic] = ACTIONS(5300), + [anon_sym_optional] = ACTIONS(5300), + [anon_sym_final] = ACTIONS(5300), + [anon_sym_inout] = ACTIONS(5300), + [anon_sym_ATescaping] = ACTIONS(5300), + [anon_sym_ATautoclosure] = ACTIONS(5300), + [anon_sym_weak] = ACTIONS(5300), + [anon_sym_unowned] = ACTIONS(5302), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5300), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5300), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5300), + [sym__three_dot_operator_custom] = ACTIONS(5300), + [sym__open_ended_range_operator_custom] = ACTIONS(5300), + [sym__conjunction_operator_custom] = ACTIONS(5300), + [sym__disjunction_operator_custom] = ACTIONS(5300), + [sym__nil_coalescing_operator_custom] = ACTIONS(5300), + [sym__eq_eq_custom] = ACTIONS(5300), + [sym__plus_then_ws] = ACTIONS(5300), + [sym__minus_then_ws] = ACTIONS(5300), + [sym_bang] = ACTIONS(5300), + [sym__as_custom] = ACTIONS(5300), + [sym__as_quest_custom] = ACTIONS(5300), + [sym__as_bang_custom] = ACTIONS(5300), + }, + [1299] = { + [sym_simple_identifier] = STATE(9869), + [aux_sym_call_suffix_repeat1] = STATE(1301), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4745), + [aux_sym_simple_identifier_token2] = ACTIONS(4747), + [aux_sym_simple_identifier_token3] = ACTIONS(4747), + [aux_sym_simple_identifier_token4] = ACTIONS(4747), + [anon_sym_COMMA] = ACTIONS(4805), + [anon_sym_LPAREN] = ACTIONS(4805), + [anon_sym_LBRACK] = ACTIONS(4805), + [anon_sym_QMARK] = ACTIONS(4807), + [sym__immediate_quest] = ACTIONS(4807), + [anon_sym_AMP] = ACTIONS(4807), + [aux_sym_custom_operator_token1] = ACTIONS(4807), + [anon_sym_LT] = ACTIONS(4807), + [anon_sym_GT] = ACTIONS(4807), + [anon_sym_LBRACE] = ACTIONS(4805), + [anon_sym_RBRACE] = ACTIONS(4805), + [anon_sym_case] = ACTIONS(4807), + [anon_sym_fallthrough] = ACTIONS(4807), + [anon_sym_PLUS_EQ] = ACTIONS(4807), + [anon_sym_DASH_EQ] = ACTIONS(4807), + [anon_sym_STAR_EQ] = ACTIONS(4807), + [anon_sym_SLASH_EQ] = ACTIONS(4807), + [anon_sym_PERCENT_EQ] = ACTIONS(4807), + [anon_sym_EQ] = ACTIONS(4807), + [anon_sym_BANG_EQ] = ACTIONS(4807), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4807), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4807), + [anon_sym_LT_EQ] = ACTIONS(4807), + [anon_sym_GT_EQ] = ACTIONS(4807), + [anon_sym_is] = ACTIONS(4807), + [anon_sym_PLUS] = ACTIONS(4807), + [anon_sym_DASH] = ACTIONS(4807), + [anon_sym_STAR] = ACTIONS(4807), + [anon_sym_SLASH] = ACTIONS(4807), + [anon_sym_PERCENT] = ACTIONS(4807), + [anon_sym_PLUS_PLUS] = ACTIONS(4807), + [anon_sym_DASH_DASH] = ACTIONS(4807), + [anon_sym_PIPE] = ACTIONS(4807), + [anon_sym_CARET] = ACTIONS(4807), + [anon_sym_LT_LT] = ACTIONS(4807), + [anon_sym_GT_GT] = ACTIONS(4807), + [anon_sym_class] = ACTIONS(4807), + [anon_sym_prefix] = ACTIONS(4807), + [anon_sym_infix] = ACTIONS(4807), + [anon_sym_postfix] = ACTIONS(4807), + [anon_sym_AT] = ACTIONS(4807), + [sym_property_behavior_modifier] = ACTIONS(4807), + [anon_sym_override] = ACTIONS(4807), + [anon_sym_convenience] = ACTIONS(4807), + [anon_sym_required] = ACTIONS(4807), + [anon_sym_public] = ACTIONS(4807), + [anon_sym_private] = ACTIONS(4807), + [anon_sym_internal] = ACTIONS(4807), + [anon_sym_fileprivate] = ACTIONS(4807), + [anon_sym_open] = ACTIONS(4807), + [anon_sym_mutating] = ACTIONS(4807), + [anon_sym_nonmutating] = ACTIONS(4807), + [anon_sym_static] = ACTIONS(4807), + [anon_sym_dynamic] = ACTIONS(4807), + [anon_sym_optional] = ACTIONS(4807), + [anon_sym_final] = ACTIONS(4807), + [anon_sym_inout] = ACTIONS(4807), + [anon_sym_ATescaping] = ACTIONS(4805), + [anon_sym_ATautoclosure] = ACTIONS(4805), + [anon_sym_weak] = ACTIONS(4807), + [anon_sym_unowned] = ACTIONS(4807), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4805), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4805), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4805), + [sym__dot_custom] = ACTIONS(4805), + [sym__three_dot_operator_custom] = ACTIONS(4805), + [sym__open_ended_range_operator_custom] = ACTIONS(4805), + [sym__conjunction_operator_custom] = ACTIONS(4805), + [sym__disjunction_operator_custom] = ACTIONS(4805), + [sym__nil_coalescing_operator_custom] = ACTIONS(4805), + [sym__eq_eq_custom] = ACTIONS(4805), + [sym__plus_then_ws] = ACTIONS(4805), + [sym__minus_then_ws] = ACTIONS(4805), + [sym_bang] = ACTIONS(4805), + [sym_default_keyword] = ACTIONS(4805), + [sym__as_custom] = ACTIONS(4805), + [sym__as_quest_custom] = ACTIONS(4805), + [sym__as_bang_custom] = ACTIONS(4805), + }, + [1300] = { + [sym_simple_identifier] = STATE(9869), + [aux_sym_call_suffix_repeat1] = STATE(1299), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4745), + [aux_sym_simple_identifier_token2] = ACTIONS(4747), + [aux_sym_simple_identifier_token3] = ACTIONS(4747), + [aux_sym_simple_identifier_token4] = ACTIONS(4747), + [anon_sym_COMMA] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4749), + [anon_sym_LBRACK] = ACTIONS(4749), + [anon_sym_QMARK] = ACTIONS(4751), + [sym__immediate_quest] = ACTIONS(4751), + [anon_sym_AMP] = ACTIONS(4751), + [aux_sym_custom_operator_token1] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(4749), + [anon_sym_RBRACE] = ACTIONS(4749), + [anon_sym_case] = ACTIONS(4751), + [anon_sym_fallthrough] = ACTIONS(4751), + [anon_sym_PLUS_EQ] = ACTIONS(4751), + [anon_sym_DASH_EQ] = ACTIONS(4751), + [anon_sym_STAR_EQ] = ACTIONS(4751), + [anon_sym_SLASH_EQ] = ACTIONS(4751), + [anon_sym_PERCENT_EQ] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_BANG_EQ] = ACTIONS(4751), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4751), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4751), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_is] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4751), + [anon_sym_STAR] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_PERCENT] = ACTIONS(4751), + [anon_sym_PLUS_PLUS] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_LT_LT] = ACTIONS(4751), + [anon_sym_GT_GT] = ACTIONS(4751), + [anon_sym_class] = ACTIONS(4751), + [anon_sym_prefix] = ACTIONS(4751), + [anon_sym_infix] = ACTIONS(4751), + [anon_sym_postfix] = ACTIONS(4751), + [anon_sym_AT] = ACTIONS(4751), + [sym_property_behavior_modifier] = ACTIONS(4751), + [anon_sym_override] = ACTIONS(4751), + [anon_sym_convenience] = ACTIONS(4751), + [anon_sym_required] = ACTIONS(4751), + [anon_sym_public] = ACTIONS(4751), + [anon_sym_private] = ACTIONS(4751), + [anon_sym_internal] = ACTIONS(4751), + [anon_sym_fileprivate] = ACTIONS(4751), + [anon_sym_open] = ACTIONS(4751), + [anon_sym_mutating] = ACTIONS(4751), + [anon_sym_nonmutating] = ACTIONS(4751), + [anon_sym_static] = ACTIONS(4751), + [anon_sym_dynamic] = ACTIONS(4751), + [anon_sym_optional] = ACTIONS(4751), + [anon_sym_final] = ACTIONS(4751), + [anon_sym_inout] = ACTIONS(4751), + [anon_sym_ATescaping] = ACTIONS(4749), + [anon_sym_ATautoclosure] = ACTIONS(4749), + [anon_sym_weak] = ACTIONS(4751), + [anon_sym_unowned] = ACTIONS(4751), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4749), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4749), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4749), + [sym__dot_custom] = ACTIONS(4749), + [sym__three_dot_operator_custom] = ACTIONS(4749), + [sym__open_ended_range_operator_custom] = ACTIONS(4749), + [sym__conjunction_operator_custom] = ACTIONS(4749), + [sym__disjunction_operator_custom] = ACTIONS(4749), + [sym__nil_coalescing_operator_custom] = ACTIONS(4749), + [sym__eq_eq_custom] = ACTIONS(4749), + [sym__plus_then_ws] = ACTIONS(4749), + [sym__minus_then_ws] = ACTIONS(4749), + [sym_bang] = ACTIONS(4749), + [sym_default_keyword] = ACTIONS(4749), + [sym__as_custom] = ACTIONS(4749), + [sym__as_quest_custom] = ACTIONS(4749), + [sym__as_bang_custom] = ACTIONS(4749), + }, + [1301] = { + [sym_simple_identifier] = STATE(9869), + [aux_sym_call_suffix_repeat1] = STATE(1301), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4753), + [aux_sym_simple_identifier_token2] = ACTIONS(4756), + [aux_sym_simple_identifier_token3] = ACTIONS(4756), + [aux_sym_simple_identifier_token4] = ACTIONS(4756), + [anon_sym_COMMA] = ACTIONS(4759), + [anon_sym_LPAREN] = ACTIONS(4759), + [anon_sym_LBRACK] = ACTIONS(4759), + [anon_sym_QMARK] = ACTIONS(4761), + [sym__immediate_quest] = ACTIONS(4761), + [anon_sym_AMP] = ACTIONS(4761), + [aux_sym_custom_operator_token1] = ACTIONS(4761), + [anon_sym_LT] = ACTIONS(4761), + [anon_sym_GT] = ACTIONS(4761), + [anon_sym_LBRACE] = ACTIONS(4759), + [anon_sym_RBRACE] = ACTIONS(4759), + [anon_sym_case] = ACTIONS(4761), + [anon_sym_fallthrough] = ACTIONS(4761), + [anon_sym_PLUS_EQ] = ACTIONS(4761), + [anon_sym_DASH_EQ] = ACTIONS(4761), + [anon_sym_STAR_EQ] = ACTIONS(4761), + [anon_sym_SLASH_EQ] = ACTIONS(4761), + [anon_sym_PERCENT_EQ] = ACTIONS(4761), + [anon_sym_EQ] = ACTIONS(4761), + [anon_sym_BANG_EQ] = ACTIONS(4761), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4761), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4761), + [anon_sym_LT_EQ] = ACTIONS(4761), + [anon_sym_GT_EQ] = ACTIONS(4761), + [anon_sym_is] = ACTIONS(4761), + [anon_sym_PLUS] = ACTIONS(4761), + [anon_sym_DASH] = ACTIONS(4761), + [anon_sym_STAR] = ACTIONS(4761), + [anon_sym_SLASH] = ACTIONS(4761), + [anon_sym_PERCENT] = ACTIONS(4761), + [anon_sym_PLUS_PLUS] = ACTIONS(4761), + [anon_sym_DASH_DASH] = ACTIONS(4761), + [anon_sym_PIPE] = ACTIONS(4761), + [anon_sym_CARET] = ACTIONS(4761), + [anon_sym_LT_LT] = ACTIONS(4761), + [anon_sym_GT_GT] = ACTIONS(4761), + [anon_sym_class] = ACTIONS(4761), + [anon_sym_prefix] = ACTIONS(4761), + [anon_sym_infix] = ACTIONS(4761), + [anon_sym_postfix] = ACTIONS(4761), + [anon_sym_AT] = ACTIONS(4761), + [sym_property_behavior_modifier] = ACTIONS(4761), + [anon_sym_override] = ACTIONS(4761), + [anon_sym_convenience] = ACTIONS(4761), + [anon_sym_required] = ACTIONS(4761), + [anon_sym_public] = ACTIONS(4761), + [anon_sym_private] = ACTIONS(4761), + [anon_sym_internal] = ACTIONS(4761), + [anon_sym_fileprivate] = ACTIONS(4761), + [anon_sym_open] = ACTIONS(4761), + [anon_sym_mutating] = ACTIONS(4761), + [anon_sym_nonmutating] = ACTIONS(4761), + [anon_sym_static] = ACTIONS(4761), + [anon_sym_dynamic] = ACTIONS(4761), + [anon_sym_optional] = ACTIONS(4761), + [anon_sym_final] = ACTIONS(4761), + [anon_sym_inout] = ACTIONS(4761), + [anon_sym_ATescaping] = ACTIONS(4759), + [anon_sym_ATautoclosure] = ACTIONS(4759), + [anon_sym_weak] = ACTIONS(4761), + [anon_sym_unowned] = ACTIONS(4761), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4759), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4759), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4759), + [sym__dot_custom] = ACTIONS(4759), + [sym__three_dot_operator_custom] = ACTIONS(4759), + [sym__open_ended_range_operator_custom] = ACTIONS(4759), + [sym__conjunction_operator_custom] = ACTIONS(4759), + [sym__disjunction_operator_custom] = ACTIONS(4759), + [sym__nil_coalescing_operator_custom] = ACTIONS(4759), + [sym__eq_eq_custom] = ACTIONS(4759), + [sym__plus_then_ws] = ACTIONS(4759), + [sym__minus_then_ws] = ACTIONS(4759), + [sym_bang] = ACTIONS(4759), + [sym_default_keyword] = ACTIONS(4759), + [sym__as_custom] = ACTIONS(4759), + [sym__as_quest_custom] = ACTIONS(4759), + [sym__as_bang_custom] = ACTIONS(4759), + }, + [1302] = { + [sym__arrow_operator] = STATE(4625), + [sym__async_keyword] = STATE(6985), + [sym__async_keyword_internal] = STATE(6985), + [sym_throws] = STATE(9615), + [aux_sym_optional_type_repeat1] = STATE(1406), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4733), + [anon_sym_LPAREN] = ACTIONS(4733), + [anon_sym_LBRACK] = ACTIONS(4733), + [anon_sym_DOT] = ACTIONS(4735), + [anon_sym_QMARK] = ACTIONS(4735), + [sym__immediate_quest] = ACTIONS(5304), + [anon_sym_AMP] = ACTIONS(4735), + [aux_sym_custom_operator_token1] = ACTIONS(4735), + [anon_sym_LT] = ACTIONS(4735), + [anon_sym_GT] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4733), + [anon_sym_RBRACE] = ACTIONS(4733), + [anon_sym_case] = ACTIONS(4733), + [anon_sym_fallthrough] = ACTIONS(4733), + [anon_sym_BANG_EQ] = ACTIONS(4735), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4735), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4735), + [anon_sym_LT_EQ] = ACTIONS(4735), + [anon_sym_GT_EQ] = ACTIONS(4735), + [anon_sym_is] = ACTIONS(4733), + [anon_sym_PLUS] = ACTIONS(4735), + [anon_sym_DASH] = ACTIONS(4735), + [anon_sym_STAR] = ACTIONS(4735), + [anon_sym_SLASH] = ACTIONS(4735), + [anon_sym_PERCENT] = ACTIONS(4735), + [anon_sym_PLUS_PLUS] = ACTIONS(4735), + [anon_sym_DASH_DASH] = ACTIONS(4735), + [anon_sym_PIPE] = ACTIONS(4735), + [anon_sym_CARET] = ACTIONS(4735), + [anon_sym_LT_LT] = ACTIONS(4735), + [anon_sym_GT_GT] = ACTIONS(4735), + [anon_sym_class] = ACTIONS(4733), + [anon_sym_prefix] = ACTIONS(4733), + [anon_sym_infix] = ACTIONS(4733), + [anon_sym_postfix] = ACTIONS(4733), + [anon_sym_AT] = ACTIONS(4735), + [sym_property_behavior_modifier] = ACTIONS(4733), + [anon_sym_override] = ACTIONS(4733), + [anon_sym_convenience] = ACTIONS(4733), + [anon_sym_required] = ACTIONS(4733), + [anon_sym_public] = ACTIONS(4733), + [anon_sym_private] = ACTIONS(4733), + [anon_sym_internal] = ACTIONS(4733), + [anon_sym_fileprivate] = ACTIONS(4733), + [anon_sym_open] = ACTIONS(4733), + [anon_sym_mutating] = ACTIONS(4733), + [anon_sym_nonmutating] = ACTIONS(4733), + [anon_sym_static] = ACTIONS(4733), + [anon_sym_dynamic] = ACTIONS(4733), + [anon_sym_optional] = ACTIONS(4733), + [anon_sym_final] = ACTIONS(4733), + [anon_sym_inout] = ACTIONS(4733), + [anon_sym_ATescaping] = ACTIONS(4733), + [anon_sym_ATautoclosure] = ACTIONS(4733), + [anon_sym_weak] = ACTIONS(4733), + [anon_sym_unowned] = ACTIONS(4735), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4733), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4733), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4733), + [sym__arrow_operator_custom] = ACTIONS(5306), + [sym__dot_custom] = ACTIONS(4733), + [sym__three_dot_operator_custom] = ACTIONS(4733), + [sym__open_ended_range_operator_custom] = ACTIONS(4733), + [sym__conjunction_operator_custom] = ACTIONS(4733), + [sym__disjunction_operator_custom] = ACTIONS(4733), + [sym__nil_coalescing_operator_custom] = ACTIONS(4733), + [sym__eq_eq_custom] = ACTIONS(4733), + [sym__plus_then_ws] = ACTIONS(4733), + [sym__minus_then_ws] = ACTIONS(4733), + [sym_bang] = ACTIONS(4733), + [sym__throws_keyword] = ACTIONS(4741), + [sym__rethrows_keyword] = ACTIONS(4741), + [sym_default_keyword] = ACTIONS(4733), + [sym__as_custom] = ACTIONS(4733), + [sym__as_quest_custom] = ACTIONS(4733), + [sym__as_bang_custom] = ACTIONS(4733), + [sym__async_keyword_custom] = ACTIONS(4743), + }, + [1303] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4837), + [aux_sym_simple_identifier_token2] = ACTIONS(4839), + [aux_sym_simple_identifier_token3] = ACTIONS(4839), + [aux_sym_simple_identifier_token4] = ACTIONS(4839), + [anon_sym_COMMA] = ACTIONS(4839), + [anon_sym_LPAREN] = ACTIONS(4839), + [anon_sym_LBRACK] = ACTIONS(4839), + [anon_sym_QMARK] = ACTIONS(4837), + [sym__immediate_quest] = ACTIONS(4837), + [anon_sym_AMP] = ACTIONS(4837), + [aux_sym_custom_operator_token1] = ACTIONS(4837), + [anon_sym_LT] = ACTIONS(4837), + [anon_sym_GT] = ACTIONS(4837), + [anon_sym_LBRACE] = ACTIONS(4839), + [anon_sym_RBRACE] = ACTIONS(4839), + [anon_sym_case] = ACTIONS(4837), + [anon_sym_fallthrough] = ACTIONS(4837), + [anon_sym_PLUS_EQ] = ACTIONS(4837), + [anon_sym_DASH_EQ] = ACTIONS(4837), + [anon_sym_STAR_EQ] = ACTIONS(4837), + [anon_sym_SLASH_EQ] = ACTIONS(4837), + [anon_sym_PERCENT_EQ] = ACTIONS(4837), + [anon_sym_EQ] = ACTIONS(4837), + [anon_sym_BANG_EQ] = ACTIONS(4837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4837), + [anon_sym_LT_EQ] = ACTIONS(4837), + [anon_sym_GT_EQ] = ACTIONS(4837), + [anon_sym_is] = ACTIONS(4837), + [anon_sym_PLUS] = ACTIONS(4837), + [anon_sym_DASH] = ACTIONS(4837), + [anon_sym_STAR] = ACTIONS(4837), + [anon_sym_SLASH] = ACTIONS(4837), + [anon_sym_PERCENT] = ACTIONS(4837), + [anon_sym_PLUS_PLUS] = ACTIONS(4837), + [anon_sym_DASH_DASH] = ACTIONS(4837), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_CARET] = ACTIONS(4837), + [anon_sym_LT_LT] = ACTIONS(4837), + [anon_sym_GT_GT] = ACTIONS(4837), + [anon_sym_class] = ACTIONS(4837), + [anon_sym_prefix] = ACTIONS(4837), + [anon_sym_infix] = ACTIONS(4837), + [anon_sym_postfix] = ACTIONS(4837), + [anon_sym_AT] = ACTIONS(4837), + [sym_property_behavior_modifier] = ACTIONS(4837), + [anon_sym_override] = ACTIONS(4837), + [anon_sym_convenience] = ACTIONS(4837), + [anon_sym_required] = ACTIONS(4837), + [anon_sym_public] = ACTIONS(4837), + [anon_sym_private] = ACTIONS(4837), + [anon_sym_internal] = ACTIONS(4837), + [anon_sym_fileprivate] = ACTIONS(4837), + [anon_sym_open] = ACTIONS(4837), + [anon_sym_mutating] = ACTIONS(4837), + [anon_sym_nonmutating] = ACTIONS(4837), + [anon_sym_static] = ACTIONS(4837), + [anon_sym_dynamic] = ACTIONS(4837), + [anon_sym_optional] = ACTIONS(4837), + [anon_sym_final] = ACTIONS(4837), + [anon_sym_inout] = ACTIONS(4837), + [anon_sym_ATescaping] = ACTIONS(4839), + [anon_sym_ATautoclosure] = ACTIONS(4839), + [anon_sym_weak] = ACTIONS(4837), + [anon_sym_unowned] = ACTIONS(4837), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4839), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4839), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4839), + [sym__dot_custom] = ACTIONS(4839), + [sym__three_dot_operator_custom] = ACTIONS(4839), + [sym__open_ended_range_operator_custom] = ACTIONS(4839), + [sym__conjunction_operator_custom] = ACTIONS(4839), + [sym__disjunction_operator_custom] = ACTIONS(4839), + [sym__nil_coalescing_operator_custom] = ACTIONS(4839), + [sym__eq_eq_custom] = ACTIONS(4839), + [sym__plus_then_ws] = ACTIONS(4839), + [sym__minus_then_ws] = ACTIONS(4839), + [sym_bang] = ACTIONS(4839), + [sym_default_keyword] = ACTIONS(4839), + [sym__as_custom] = ACTIONS(4839), + [sym__as_quest_custom] = ACTIONS(4839), + [sym__as_bang_custom] = ACTIONS(4839), + }, + [1304] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4893), + [aux_sym_simple_identifier_token2] = ACTIONS(4895), + [aux_sym_simple_identifier_token3] = ACTIONS(4895), + [aux_sym_simple_identifier_token4] = ACTIONS(4895), + [anon_sym_COMMA] = ACTIONS(4895), + [anon_sym_LPAREN] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4895), + [anon_sym_QMARK] = ACTIONS(4893), + [sym__immediate_quest] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4893), + [aux_sym_custom_operator_token1] = ACTIONS(4893), + [anon_sym_LT] = ACTIONS(4893), + [anon_sym_GT] = ACTIONS(4893), + [anon_sym_LBRACE] = ACTIONS(4895), + [anon_sym_RBRACE] = ACTIONS(4895), + [anon_sym_case] = ACTIONS(4893), + [anon_sym_fallthrough] = ACTIONS(4893), + [anon_sym_PLUS_EQ] = ACTIONS(4893), + [anon_sym_DASH_EQ] = ACTIONS(4893), + [anon_sym_STAR_EQ] = ACTIONS(4893), + [anon_sym_SLASH_EQ] = ACTIONS(4893), + [anon_sym_PERCENT_EQ] = ACTIONS(4893), + [anon_sym_EQ] = ACTIONS(4893), + [anon_sym_BANG_EQ] = ACTIONS(4893), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4893), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4893), + [anon_sym_LT_EQ] = ACTIONS(4893), + [anon_sym_GT_EQ] = ACTIONS(4893), + [anon_sym_is] = ACTIONS(4893), + [anon_sym_PLUS] = ACTIONS(4893), + [anon_sym_DASH] = ACTIONS(4893), + [anon_sym_STAR] = ACTIONS(4893), + [anon_sym_SLASH] = ACTIONS(4893), + [anon_sym_PERCENT] = ACTIONS(4893), + [anon_sym_PLUS_PLUS] = ACTIONS(4893), + [anon_sym_DASH_DASH] = ACTIONS(4893), + [anon_sym_PIPE] = ACTIONS(4893), + [anon_sym_CARET] = ACTIONS(4893), + [anon_sym_LT_LT] = ACTIONS(4893), + [anon_sym_GT_GT] = ACTIONS(4893), + [anon_sym_class] = ACTIONS(4893), + [anon_sym_prefix] = ACTIONS(4893), + [anon_sym_infix] = ACTIONS(4893), + [anon_sym_postfix] = ACTIONS(4893), + [anon_sym_AT] = ACTIONS(4893), + [sym_property_behavior_modifier] = ACTIONS(4893), + [anon_sym_override] = ACTIONS(4893), + [anon_sym_convenience] = ACTIONS(4893), + [anon_sym_required] = ACTIONS(4893), + [anon_sym_public] = ACTIONS(4893), + [anon_sym_private] = ACTIONS(4893), + [anon_sym_internal] = ACTIONS(4893), + [anon_sym_fileprivate] = ACTIONS(4893), + [anon_sym_open] = ACTIONS(4893), + [anon_sym_mutating] = ACTIONS(4893), + [anon_sym_nonmutating] = ACTIONS(4893), + [anon_sym_static] = ACTIONS(4893), + [anon_sym_dynamic] = ACTIONS(4893), + [anon_sym_optional] = ACTIONS(4893), + [anon_sym_final] = ACTIONS(4893), + [anon_sym_inout] = ACTIONS(4893), + [anon_sym_ATescaping] = ACTIONS(4895), + [anon_sym_ATautoclosure] = ACTIONS(4895), + [anon_sym_weak] = ACTIONS(4893), + [anon_sym_unowned] = ACTIONS(4893), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4895), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4895), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4895), + [sym__dot_custom] = ACTIONS(4895), + [sym__three_dot_operator_custom] = ACTIONS(4895), + [sym__open_ended_range_operator_custom] = ACTIONS(4895), + [sym__conjunction_operator_custom] = ACTIONS(4895), + [sym__disjunction_operator_custom] = ACTIONS(4895), + [sym__nil_coalescing_operator_custom] = ACTIONS(4895), + [sym__eq_eq_custom] = ACTIONS(4895), + [sym__plus_then_ws] = ACTIONS(4895), + [sym__minus_then_ws] = ACTIONS(4895), + [sym_bang] = ACTIONS(4895), + [sym_default_keyword] = ACTIONS(4895), + [sym__as_custom] = ACTIONS(4895), + [sym__as_quest_custom] = ACTIONS(4895), + [sym__as_bang_custom] = ACTIONS(4895), + }, + [1305] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4845), + [aux_sym_simple_identifier_token2] = ACTIONS(4847), + [aux_sym_simple_identifier_token3] = ACTIONS(4847), + [aux_sym_simple_identifier_token4] = ACTIONS(4847), + [anon_sym_LPAREN] = ACTIONS(4847), + [anon_sym_LBRACK] = ACTIONS(4847), + [anon_sym_QMARK] = ACTIONS(4845), + [sym__immediate_quest] = ACTIONS(4845), + [anon_sym_AMP] = ACTIONS(4845), + [aux_sym_custom_operator_token1] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4845), + [anon_sym_GT] = ACTIONS(4845), + [anon_sym_LBRACE] = ACTIONS(4847), + [anon_sym_RBRACE] = ACTIONS(5308), + [anon_sym_case] = ACTIONS(5310), + [anon_sym_fallthrough] = ACTIONS(5310), + [anon_sym_PLUS_EQ] = ACTIONS(4845), + [anon_sym_DASH_EQ] = ACTIONS(4845), + [anon_sym_STAR_EQ] = ACTIONS(4845), + [anon_sym_SLASH_EQ] = ACTIONS(4845), + [anon_sym_PERCENT_EQ] = ACTIONS(4845), + [anon_sym_EQ] = ACTIONS(4845), + [anon_sym_BANG_EQ] = ACTIONS(4845), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4845), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4845), + [anon_sym_LT_EQ] = ACTIONS(4845), + [anon_sym_GT_EQ] = ACTIONS(4845), + [anon_sym_is] = ACTIONS(4845), + [anon_sym_PLUS] = ACTIONS(4845), + [anon_sym_DASH] = ACTIONS(4845), + [anon_sym_STAR] = ACTIONS(4845), + [anon_sym_SLASH] = ACTIONS(4845), + [anon_sym_PERCENT] = ACTIONS(4845), + [anon_sym_PLUS_PLUS] = ACTIONS(4845), + [anon_sym_DASH_DASH] = ACTIONS(4845), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_CARET] = ACTIONS(4845), + [anon_sym_LT_LT] = ACTIONS(4845), + [anon_sym_GT_GT] = ACTIONS(4845), + [anon_sym_class] = ACTIONS(5310), + [anon_sym_prefix] = ACTIONS(5310), + [anon_sym_infix] = ACTIONS(5310), + [anon_sym_postfix] = ACTIONS(5310), + [anon_sym_AT] = ACTIONS(5310), + [sym_property_behavior_modifier] = ACTIONS(5310), + [anon_sym_override] = ACTIONS(5310), + [anon_sym_convenience] = ACTIONS(5310), + [anon_sym_required] = ACTIONS(5310), + [anon_sym_public] = ACTIONS(5310), + [anon_sym_private] = ACTIONS(5310), + [anon_sym_internal] = ACTIONS(5310), + [anon_sym_fileprivate] = ACTIONS(5310), + [anon_sym_open] = ACTIONS(5310), + [anon_sym_mutating] = ACTIONS(5310), + [anon_sym_nonmutating] = ACTIONS(5310), + [anon_sym_static] = ACTIONS(5310), + [anon_sym_dynamic] = ACTIONS(5310), + [anon_sym_optional] = ACTIONS(5310), + [anon_sym_final] = ACTIONS(5310), + [anon_sym_inout] = ACTIONS(5310), + [anon_sym_ATescaping] = ACTIONS(5308), + [anon_sym_ATautoclosure] = ACTIONS(5308), + [anon_sym_weak] = ACTIONS(5310), + [anon_sym_unowned] = ACTIONS(5310), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5308), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5308), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5308), + [sym__dot_custom] = ACTIONS(4847), + [sym__three_dot_operator_custom] = ACTIONS(4847), + [sym__open_ended_range_operator_custom] = ACTIONS(4847), + [sym__conjunction_operator_custom] = ACTIONS(4847), + [sym__disjunction_operator_custom] = ACTIONS(4847), + [sym__nil_coalescing_operator_custom] = ACTIONS(4847), + [sym__eq_eq_custom] = ACTIONS(4847), + [sym__plus_then_ws] = ACTIONS(4847), + [sym__minus_then_ws] = ACTIONS(4847), + [sym_bang] = ACTIONS(4847), + [sym_default_keyword] = ACTIONS(5308), + [sym_where_keyword] = ACTIONS(4847), + [sym__as_custom] = ACTIONS(4847), + [sym__as_quest_custom] = ACTIONS(4847), + [sym__as_bang_custom] = ACTIONS(4847), + }, + [1306] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4825), + [aux_sym_simple_identifier_token2] = ACTIONS(4827), + [aux_sym_simple_identifier_token3] = ACTIONS(4827), + [aux_sym_simple_identifier_token4] = ACTIONS(4827), + [anon_sym_COMMA] = ACTIONS(4827), + [anon_sym_LPAREN] = ACTIONS(4827), + [anon_sym_LBRACK] = ACTIONS(4827), + [anon_sym_QMARK] = ACTIONS(4825), + [sym__immediate_quest] = ACTIONS(4825), + [anon_sym_AMP] = ACTIONS(4825), + [aux_sym_custom_operator_token1] = ACTIONS(4825), + [anon_sym_LT] = ACTIONS(4825), + [anon_sym_GT] = ACTIONS(4825), + [anon_sym_LBRACE] = ACTIONS(4827), + [anon_sym_RBRACE] = ACTIONS(4827), + [anon_sym_case] = ACTIONS(4825), + [anon_sym_fallthrough] = ACTIONS(4825), + [anon_sym_PLUS_EQ] = ACTIONS(4825), + [anon_sym_DASH_EQ] = ACTIONS(4825), + [anon_sym_STAR_EQ] = ACTIONS(4825), + [anon_sym_SLASH_EQ] = ACTIONS(4825), + [anon_sym_PERCENT_EQ] = ACTIONS(4825), + [anon_sym_EQ] = ACTIONS(4825), + [anon_sym_BANG_EQ] = ACTIONS(4825), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4825), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4825), + [anon_sym_LT_EQ] = ACTIONS(4825), + [anon_sym_GT_EQ] = ACTIONS(4825), + [anon_sym_is] = ACTIONS(4825), + [anon_sym_PLUS] = ACTIONS(4825), + [anon_sym_DASH] = ACTIONS(4825), + [anon_sym_STAR] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4825), + [anon_sym_PERCENT] = ACTIONS(4825), + [anon_sym_PLUS_PLUS] = ACTIONS(4825), + [anon_sym_DASH_DASH] = ACTIONS(4825), + [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_LT_LT] = ACTIONS(4825), + [anon_sym_GT_GT] = ACTIONS(4825), + [anon_sym_class] = ACTIONS(4825), + [anon_sym_prefix] = ACTIONS(4825), + [anon_sym_infix] = ACTIONS(4825), + [anon_sym_postfix] = ACTIONS(4825), + [anon_sym_AT] = ACTIONS(4825), + [sym_property_behavior_modifier] = ACTIONS(4825), + [anon_sym_override] = ACTIONS(4825), + [anon_sym_convenience] = ACTIONS(4825), + [anon_sym_required] = ACTIONS(4825), + [anon_sym_public] = ACTIONS(4825), + [anon_sym_private] = ACTIONS(4825), + [anon_sym_internal] = ACTIONS(4825), + [anon_sym_fileprivate] = ACTIONS(4825), + [anon_sym_open] = ACTIONS(4825), + [anon_sym_mutating] = ACTIONS(4825), + [anon_sym_nonmutating] = ACTIONS(4825), + [anon_sym_static] = ACTIONS(4825), + [anon_sym_dynamic] = ACTIONS(4825), + [anon_sym_optional] = ACTIONS(4825), + [anon_sym_final] = ACTIONS(4825), + [anon_sym_inout] = ACTIONS(4825), + [anon_sym_ATescaping] = ACTIONS(4827), + [anon_sym_ATautoclosure] = ACTIONS(4827), + [anon_sym_weak] = ACTIONS(4825), + [anon_sym_unowned] = ACTIONS(4825), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4827), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4827), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4827), + [sym__dot_custom] = ACTIONS(4827), + [sym__three_dot_operator_custom] = ACTIONS(4827), + [sym__open_ended_range_operator_custom] = ACTIONS(4827), + [sym__conjunction_operator_custom] = ACTIONS(4827), + [sym__disjunction_operator_custom] = ACTIONS(4827), + [sym__nil_coalescing_operator_custom] = ACTIONS(4827), + [sym__eq_eq_custom] = ACTIONS(4827), + [sym__plus_then_ws] = ACTIONS(4827), + [sym__minus_then_ws] = ACTIONS(4827), + [sym_bang] = ACTIONS(4827), + [sym_default_keyword] = ACTIONS(4827), + [sym__as_custom] = ACTIONS(4827), + [sym__as_quest_custom] = ACTIONS(4827), + [sym__as_bang_custom] = ACTIONS(4827), + }, + [1307] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4865), + [aux_sym_simple_identifier_token2] = ACTIONS(4867), + [aux_sym_simple_identifier_token3] = ACTIONS(4867), + [aux_sym_simple_identifier_token4] = ACTIONS(4867), + [anon_sym_COMMA] = ACTIONS(4867), + [anon_sym_LPAREN] = ACTIONS(4867), + [anon_sym_LBRACK] = ACTIONS(4867), + [anon_sym_QMARK] = ACTIONS(4865), + [sym__immediate_quest] = ACTIONS(4865), + [anon_sym_AMP] = ACTIONS(4865), + [aux_sym_custom_operator_token1] = ACTIONS(4865), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_LBRACE] = ACTIONS(4867), + [anon_sym_RBRACE] = ACTIONS(4867), + [anon_sym_case] = ACTIONS(4865), + [anon_sym_fallthrough] = ACTIONS(4865), + [anon_sym_PLUS_EQ] = ACTIONS(4865), + [anon_sym_DASH_EQ] = ACTIONS(4865), + [anon_sym_STAR_EQ] = ACTIONS(4865), + [anon_sym_SLASH_EQ] = ACTIONS(4865), + [anon_sym_PERCENT_EQ] = ACTIONS(4865), + [anon_sym_EQ] = ACTIONS(4865), + [anon_sym_BANG_EQ] = ACTIONS(4865), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4865), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4865), + [anon_sym_LT_EQ] = ACTIONS(4865), + [anon_sym_GT_EQ] = ACTIONS(4865), + [anon_sym_is] = ACTIONS(4865), + [anon_sym_PLUS] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4865), + [anon_sym_STAR] = ACTIONS(4865), + [anon_sym_SLASH] = ACTIONS(4865), + [anon_sym_PERCENT] = ACTIONS(4865), + [anon_sym_PLUS_PLUS] = ACTIONS(4865), + [anon_sym_DASH_DASH] = ACTIONS(4865), + [anon_sym_PIPE] = ACTIONS(4865), + [anon_sym_CARET] = ACTIONS(4865), + [anon_sym_LT_LT] = ACTIONS(4865), + [anon_sym_GT_GT] = ACTIONS(4865), + [anon_sym_class] = ACTIONS(4865), + [anon_sym_prefix] = ACTIONS(4865), + [anon_sym_infix] = ACTIONS(4865), + [anon_sym_postfix] = ACTIONS(4865), + [anon_sym_AT] = ACTIONS(4865), + [sym_property_behavior_modifier] = ACTIONS(4865), + [anon_sym_override] = ACTIONS(4865), + [anon_sym_convenience] = ACTIONS(4865), + [anon_sym_required] = ACTIONS(4865), + [anon_sym_public] = ACTIONS(4865), + [anon_sym_private] = ACTIONS(4865), + [anon_sym_internal] = ACTIONS(4865), + [anon_sym_fileprivate] = ACTIONS(4865), + [anon_sym_open] = ACTIONS(4865), + [anon_sym_mutating] = ACTIONS(4865), + [anon_sym_nonmutating] = ACTIONS(4865), + [anon_sym_static] = ACTIONS(4865), + [anon_sym_dynamic] = ACTIONS(4865), + [anon_sym_optional] = ACTIONS(4865), + [anon_sym_final] = ACTIONS(4865), + [anon_sym_inout] = ACTIONS(4865), + [anon_sym_ATescaping] = ACTIONS(4867), + [anon_sym_ATautoclosure] = ACTIONS(4867), + [anon_sym_weak] = ACTIONS(4865), + [anon_sym_unowned] = ACTIONS(4865), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4867), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4867), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4867), + [sym__dot_custom] = ACTIONS(4867), + [sym__three_dot_operator_custom] = ACTIONS(4867), + [sym__open_ended_range_operator_custom] = ACTIONS(4867), + [sym__conjunction_operator_custom] = ACTIONS(4867), + [sym__disjunction_operator_custom] = ACTIONS(4867), + [sym__nil_coalescing_operator_custom] = ACTIONS(4867), + [sym__eq_eq_custom] = ACTIONS(4867), + [sym__plus_then_ws] = ACTIONS(4867), + [sym__minus_then_ws] = ACTIONS(4867), + [sym_bang] = ACTIONS(4867), + [sym_default_keyword] = ACTIONS(4867), + [sym__as_custom] = ACTIONS(4867), + [sym__as_quest_custom] = ACTIONS(4867), + [sym__as_bang_custom] = ACTIONS(4867), + }, + [1308] = { + [sym_simple_identifier] = STATE(1402), + [sym__simple_user_type] = STATE(1398), + [sym_array_type] = STATE(1398), + [sym_dictionary_type] = STATE(1398), + [aux_sym_key_path_expression_repeat1] = STATE(1400), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(5312), + [aux_sym_simple_identifier_token2] = ACTIONS(5314), + [aux_sym_simple_identifier_token3] = ACTIONS(5314), + [aux_sym_simple_identifier_token4] = ACTIONS(5314), + [anon_sym_COMMA] = ACTIONS(4853), + [anon_sym_LPAREN] = ACTIONS(4853), + [anon_sym_LBRACK] = ACTIONS(5316), + [anon_sym_DOT] = ACTIONS(5318), + [anon_sym_QMARK] = ACTIONS(4859), + [sym__immediate_quest] = ACTIONS(4859), + [anon_sym_AMP] = ACTIONS(4859), + [aux_sym_custom_operator_token1] = ACTIONS(4859), + [anon_sym_LT] = ACTIONS(4859), + [anon_sym_GT] = ACTIONS(4859), + [anon_sym_LBRACE] = ACTIONS(4853), + [anon_sym_RBRACE] = ACTIONS(4853), + [anon_sym_case] = ACTIONS(4859), + [anon_sym_fallthrough] = ACTIONS(4859), + [anon_sym_BANG_EQ] = ACTIONS(4859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4859), + [anon_sym_LT_EQ] = ACTIONS(4859), + [anon_sym_GT_EQ] = ACTIONS(4859), + [anon_sym_is] = ACTIONS(4859), + [anon_sym_PLUS] = ACTIONS(4859), + [anon_sym_DASH] = ACTIONS(4859), + [anon_sym_STAR] = ACTIONS(4859), + [anon_sym_SLASH] = ACTIONS(4859), + [anon_sym_PERCENT] = ACTIONS(4859), + [anon_sym_PLUS_PLUS] = ACTIONS(4859), + [anon_sym_DASH_DASH] = ACTIONS(4859), + [anon_sym_PIPE] = ACTIONS(4859), + [anon_sym_CARET] = ACTIONS(4859), + [anon_sym_LT_LT] = ACTIONS(4859), + [anon_sym_GT_GT] = ACTIONS(4859), + [anon_sym_class] = ACTIONS(4859), + [anon_sym_prefix] = ACTIONS(4859), + [anon_sym_infix] = ACTIONS(4859), + [anon_sym_postfix] = ACTIONS(4859), + [anon_sym_AT] = ACTIONS(4859), + [sym_property_behavior_modifier] = ACTIONS(4859), + [anon_sym_override] = ACTIONS(4859), + [anon_sym_convenience] = ACTIONS(4859), + [anon_sym_required] = ACTIONS(4859), + [anon_sym_public] = ACTIONS(4859), + [anon_sym_private] = ACTIONS(4859), + [anon_sym_internal] = ACTIONS(4859), + [anon_sym_fileprivate] = ACTIONS(4859), + [anon_sym_open] = ACTIONS(4859), + [anon_sym_mutating] = ACTIONS(4859), + [anon_sym_nonmutating] = ACTIONS(4859), + [anon_sym_static] = ACTIONS(4859), + [anon_sym_dynamic] = ACTIONS(4859), + [anon_sym_optional] = ACTIONS(4859), + [anon_sym_final] = ACTIONS(4859), + [anon_sym_inout] = ACTIONS(4859), + [anon_sym_ATescaping] = ACTIONS(4853), + [anon_sym_ATautoclosure] = ACTIONS(4853), + [anon_sym_weak] = ACTIONS(4859), + [anon_sym_unowned] = ACTIONS(4859), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4853), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4853), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4853), + [sym__dot_custom] = ACTIONS(4853), + [sym__three_dot_operator_custom] = ACTIONS(4853), + [sym__open_ended_range_operator_custom] = ACTIONS(4853), + [sym__conjunction_operator_custom] = ACTIONS(4853), + [sym__disjunction_operator_custom] = ACTIONS(4853), + [sym__nil_coalescing_operator_custom] = ACTIONS(4853), + [sym__eq_eq_custom] = ACTIONS(4853), + [sym__plus_then_ws] = ACTIONS(4853), + [sym__minus_then_ws] = ACTIONS(4853), + [sym_bang] = ACTIONS(4853), + [sym_default_keyword] = ACTIONS(4853), + [sym__as_custom] = ACTIONS(4853), + [sym__as_quest_custom] = ACTIONS(4853), + [sym__as_bang_custom] = ACTIONS(4853), + }, + [1309] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4845), + [aux_sym_simple_identifier_token2] = ACTIONS(4847), + [aux_sym_simple_identifier_token3] = ACTIONS(4847), + [aux_sym_simple_identifier_token4] = ACTIONS(4847), + [anon_sym_COMMA] = ACTIONS(4847), + [anon_sym_LPAREN] = ACTIONS(4847), + [anon_sym_LBRACK] = ACTIONS(4847), + [anon_sym_QMARK] = ACTIONS(4845), + [sym__immediate_quest] = ACTIONS(4845), + [anon_sym_AMP] = ACTIONS(4845), + [aux_sym_custom_operator_token1] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4845), + [anon_sym_GT] = ACTIONS(4845), + [anon_sym_LBRACE] = ACTIONS(4847), + [anon_sym_RBRACE] = ACTIONS(4847), + [anon_sym_case] = ACTIONS(4845), + [anon_sym_fallthrough] = ACTIONS(4845), + [anon_sym_PLUS_EQ] = ACTIONS(4845), + [anon_sym_DASH_EQ] = ACTIONS(4845), + [anon_sym_STAR_EQ] = ACTIONS(4845), + [anon_sym_SLASH_EQ] = ACTIONS(4845), + [anon_sym_PERCENT_EQ] = ACTIONS(4845), + [anon_sym_EQ] = ACTIONS(4845), + [anon_sym_BANG_EQ] = ACTIONS(4845), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4845), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4845), + [anon_sym_LT_EQ] = ACTIONS(4845), + [anon_sym_GT_EQ] = ACTIONS(4845), + [anon_sym_is] = ACTIONS(4845), + [anon_sym_PLUS] = ACTIONS(4845), + [anon_sym_DASH] = ACTIONS(4845), + [anon_sym_STAR] = ACTIONS(4845), + [anon_sym_SLASH] = ACTIONS(4845), + [anon_sym_PERCENT] = ACTIONS(4845), + [anon_sym_PLUS_PLUS] = ACTIONS(4845), + [anon_sym_DASH_DASH] = ACTIONS(4845), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_CARET] = ACTIONS(4845), + [anon_sym_LT_LT] = ACTIONS(4845), + [anon_sym_GT_GT] = ACTIONS(4845), + [anon_sym_class] = ACTIONS(4845), + [anon_sym_prefix] = ACTIONS(4845), + [anon_sym_infix] = ACTIONS(4845), + [anon_sym_postfix] = ACTIONS(4845), + [anon_sym_AT] = ACTIONS(4845), + [sym_property_behavior_modifier] = ACTIONS(4845), + [anon_sym_override] = ACTIONS(4845), + [anon_sym_convenience] = ACTIONS(4845), + [anon_sym_required] = ACTIONS(4845), + [anon_sym_public] = ACTIONS(4845), + [anon_sym_private] = ACTIONS(4845), + [anon_sym_internal] = ACTIONS(4845), + [anon_sym_fileprivate] = ACTIONS(4845), + [anon_sym_open] = ACTIONS(4845), + [anon_sym_mutating] = ACTIONS(4845), + [anon_sym_nonmutating] = ACTIONS(4845), + [anon_sym_static] = ACTIONS(4845), + [anon_sym_dynamic] = ACTIONS(4845), + [anon_sym_optional] = ACTIONS(4845), + [anon_sym_final] = ACTIONS(4845), + [anon_sym_inout] = ACTIONS(4845), + [anon_sym_ATescaping] = ACTIONS(4847), + [anon_sym_ATautoclosure] = ACTIONS(4847), + [anon_sym_weak] = ACTIONS(4845), + [anon_sym_unowned] = ACTIONS(4845), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4847), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4847), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4847), + [sym__dot_custom] = ACTIONS(4847), + [sym__three_dot_operator_custom] = ACTIONS(4847), + [sym__open_ended_range_operator_custom] = ACTIONS(4847), + [sym__conjunction_operator_custom] = ACTIONS(4847), + [sym__disjunction_operator_custom] = ACTIONS(4847), + [sym__nil_coalescing_operator_custom] = ACTIONS(4847), + [sym__eq_eq_custom] = ACTIONS(4847), + [sym__plus_then_ws] = ACTIONS(4847), + [sym__minus_then_ws] = ACTIONS(4847), + [sym_bang] = ACTIONS(4847), + [sym_default_keyword] = ACTIONS(4847), + [sym__as_custom] = ACTIONS(4847), + [sym__as_quest_custom] = ACTIONS(4847), + [sym__as_bang_custom] = ACTIONS(4847), + }, + [1310] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4877), + [aux_sym_simple_identifier_token2] = ACTIONS(4879), + [aux_sym_simple_identifier_token3] = ACTIONS(4879), + [aux_sym_simple_identifier_token4] = ACTIONS(4879), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_QMARK] = ACTIONS(4877), + [sym__immediate_quest] = ACTIONS(4877), + [anon_sym_AMP] = ACTIONS(4877), + [aux_sym_custom_operator_token1] = ACTIONS(4877), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_case] = ACTIONS(4877), + [anon_sym_fallthrough] = ACTIONS(4877), + [anon_sym_PLUS_EQ] = ACTIONS(4877), + [anon_sym_DASH_EQ] = ACTIONS(4877), + [anon_sym_STAR_EQ] = ACTIONS(4877), + [anon_sym_SLASH_EQ] = ACTIONS(4877), + [anon_sym_PERCENT_EQ] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4877), + [anon_sym_LT_EQ] = ACTIONS(4877), + [anon_sym_GT_EQ] = ACTIONS(4877), + [anon_sym_is] = ACTIONS(4877), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_PLUS_PLUS] = ACTIONS(4877), + [anon_sym_DASH_DASH] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4877), + [anon_sym_CARET] = ACTIONS(4877), + [anon_sym_LT_LT] = ACTIONS(4877), + [anon_sym_GT_GT] = ACTIONS(4877), + [anon_sym_class] = ACTIONS(4877), + [anon_sym_prefix] = ACTIONS(4877), + [anon_sym_infix] = ACTIONS(4877), + [anon_sym_postfix] = ACTIONS(4877), + [anon_sym_AT] = ACTIONS(4877), + [sym_property_behavior_modifier] = ACTIONS(4877), + [anon_sym_override] = ACTIONS(4877), + [anon_sym_convenience] = ACTIONS(4877), + [anon_sym_required] = ACTIONS(4877), + [anon_sym_public] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4877), + [anon_sym_internal] = ACTIONS(4877), + [anon_sym_fileprivate] = ACTIONS(4877), + [anon_sym_open] = ACTIONS(4877), + [anon_sym_mutating] = ACTIONS(4877), + [anon_sym_nonmutating] = ACTIONS(4877), + [anon_sym_static] = ACTIONS(4877), + [anon_sym_dynamic] = ACTIONS(4877), + [anon_sym_optional] = ACTIONS(4877), + [anon_sym_final] = ACTIONS(4877), + [anon_sym_inout] = ACTIONS(4877), + [anon_sym_ATescaping] = ACTIONS(4879), + [anon_sym_ATautoclosure] = ACTIONS(4879), + [anon_sym_weak] = ACTIONS(4877), + [anon_sym_unowned] = ACTIONS(4877), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4879), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4879), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4879), + [sym__dot_custom] = ACTIONS(4879), + [sym__three_dot_operator_custom] = ACTIONS(4879), + [sym__open_ended_range_operator_custom] = ACTIONS(4879), + [sym__conjunction_operator_custom] = ACTIONS(4879), + [sym__disjunction_operator_custom] = ACTIONS(4879), + [sym__nil_coalescing_operator_custom] = ACTIONS(4879), + [sym__eq_eq_custom] = ACTIONS(4879), + [sym__plus_then_ws] = ACTIONS(4879), + [sym__minus_then_ws] = ACTIONS(4879), + [sym_bang] = ACTIONS(4879), + [sym_default_keyword] = ACTIONS(4879), + [sym__as_custom] = ACTIONS(4879), + [sym__as_quest_custom] = ACTIONS(4879), + [sym__as_bang_custom] = ACTIONS(4879), + }, + [1311] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4873), + [aux_sym_simple_identifier_token2] = ACTIONS(4875), + [aux_sym_simple_identifier_token3] = ACTIONS(4875), + [aux_sym_simple_identifier_token4] = ACTIONS(4875), + [anon_sym_COMMA] = ACTIONS(4875), + [anon_sym_LPAREN] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4875), + [anon_sym_QMARK] = ACTIONS(4873), + [sym__immediate_quest] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), + [aux_sym_custom_operator_token1] = ACTIONS(4873), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_LBRACE] = ACTIONS(4875), + [anon_sym_RBRACE] = ACTIONS(4875), + [anon_sym_case] = ACTIONS(4873), + [anon_sym_fallthrough] = ACTIONS(4873), + [anon_sym_PLUS_EQ] = ACTIONS(4873), + [anon_sym_DASH_EQ] = ACTIONS(4873), + [anon_sym_STAR_EQ] = ACTIONS(4873), + [anon_sym_SLASH_EQ] = ACTIONS(4873), + [anon_sym_PERCENT_EQ] = ACTIONS(4873), + [anon_sym_EQ] = ACTIONS(4873), + [anon_sym_BANG_EQ] = ACTIONS(4873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4873), + [anon_sym_LT_EQ] = ACTIONS(4873), + [anon_sym_GT_EQ] = ACTIONS(4873), + [anon_sym_is] = ACTIONS(4873), + [anon_sym_PLUS] = ACTIONS(4873), + [anon_sym_DASH] = ACTIONS(4873), + [anon_sym_STAR] = ACTIONS(4873), + [anon_sym_SLASH] = ACTIONS(4873), + [anon_sym_PERCENT] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4873), + [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_CARET] = ACTIONS(4873), + [anon_sym_LT_LT] = ACTIONS(4873), + [anon_sym_GT_GT] = ACTIONS(4873), + [anon_sym_class] = ACTIONS(4873), + [anon_sym_prefix] = ACTIONS(4873), + [anon_sym_infix] = ACTIONS(4873), + [anon_sym_postfix] = ACTIONS(4873), + [anon_sym_AT] = ACTIONS(4873), + [sym_property_behavior_modifier] = ACTIONS(4873), + [anon_sym_override] = ACTIONS(4873), + [anon_sym_convenience] = ACTIONS(4873), + [anon_sym_required] = ACTIONS(4873), + [anon_sym_public] = ACTIONS(4873), + [anon_sym_private] = ACTIONS(4873), + [anon_sym_internal] = ACTIONS(4873), + [anon_sym_fileprivate] = ACTIONS(4873), + [anon_sym_open] = ACTIONS(4873), + [anon_sym_mutating] = ACTIONS(4873), + [anon_sym_nonmutating] = ACTIONS(4873), + [anon_sym_static] = ACTIONS(4873), + [anon_sym_dynamic] = ACTIONS(4873), + [anon_sym_optional] = ACTIONS(4873), + [anon_sym_final] = ACTIONS(4873), + [anon_sym_inout] = ACTIONS(4873), + [anon_sym_ATescaping] = ACTIONS(4875), + [anon_sym_ATautoclosure] = ACTIONS(4875), + [anon_sym_weak] = ACTIONS(4873), + [anon_sym_unowned] = ACTIONS(4873), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4875), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4875), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4875), + [sym__dot_custom] = ACTIONS(4875), + [sym__three_dot_operator_custom] = ACTIONS(4875), + [sym__open_ended_range_operator_custom] = ACTIONS(4875), + [sym__conjunction_operator_custom] = ACTIONS(4875), + [sym__disjunction_operator_custom] = ACTIONS(4875), + [sym__nil_coalescing_operator_custom] = ACTIONS(4875), + [sym__eq_eq_custom] = ACTIONS(4875), + [sym__plus_then_ws] = ACTIONS(4875), + [sym__minus_then_ws] = ACTIONS(4875), + [sym_bang] = ACTIONS(4875), + [sym_default_keyword] = ACTIONS(4875), + [sym__as_custom] = ACTIONS(4875), + [sym__as_quest_custom] = ACTIONS(4875), + [sym__as_bang_custom] = ACTIONS(4875), + }, + [1312] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4869), + [aux_sym_simple_identifier_token2] = ACTIONS(4871), + [aux_sym_simple_identifier_token3] = ACTIONS(4871), + [aux_sym_simple_identifier_token4] = ACTIONS(4871), + [anon_sym_COMMA] = ACTIONS(4871), + [anon_sym_LPAREN] = ACTIONS(4871), + [anon_sym_LBRACK] = ACTIONS(4871), + [anon_sym_QMARK] = ACTIONS(4869), + [sym__immediate_quest] = ACTIONS(4869), + [anon_sym_AMP] = ACTIONS(4869), + [aux_sym_custom_operator_token1] = ACTIONS(4869), + [anon_sym_LT] = ACTIONS(4869), + [anon_sym_GT] = ACTIONS(4869), + [anon_sym_LBRACE] = ACTIONS(4871), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_case] = ACTIONS(4869), + [anon_sym_fallthrough] = ACTIONS(4869), + [anon_sym_PLUS_EQ] = ACTIONS(4869), + [anon_sym_DASH_EQ] = ACTIONS(4869), + [anon_sym_STAR_EQ] = ACTIONS(4869), + [anon_sym_SLASH_EQ] = ACTIONS(4869), + [anon_sym_PERCENT_EQ] = ACTIONS(4869), + [anon_sym_EQ] = ACTIONS(4869), + [anon_sym_BANG_EQ] = ACTIONS(4869), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4869), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4869), + [anon_sym_LT_EQ] = ACTIONS(4869), + [anon_sym_GT_EQ] = ACTIONS(4869), + [anon_sym_is] = ACTIONS(4869), + [anon_sym_PLUS] = ACTIONS(4869), + [anon_sym_DASH] = ACTIONS(4869), + [anon_sym_STAR] = ACTIONS(4869), + [anon_sym_SLASH] = ACTIONS(4869), + [anon_sym_PERCENT] = ACTIONS(4869), + [anon_sym_PLUS_PLUS] = ACTIONS(4869), + [anon_sym_DASH_DASH] = ACTIONS(4869), + [anon_sym_PIPE] = ACTIONS(4869), + [anon_sym_CARET] = ACTIONS(4869), + [anon_sym_LT_LT] = ACTIONS(4869), + [anon_sym_GT_GT] = ACTIONS(4869), + [anon_sym_class] = ACTIONS(4869), + [anon_sym_prefix] = ACTIONS(4869), + [anon_sym_infix] = ACTIONS(4869), + [anon_sym_postfix] = ACTIONS(4869), + [anon_sym_AT] = ACTIONS(4869), + [sym_property_behavior_modifier] = ACTIONS(4869), + [anon_sym_override] = ACTIONS(4869), + [anon_sym_convenience] = ACTIONS(4869), + [anon_sym_required] = ACTIONS(4869), + [anon_sym_public] = ACTIONS(4869), + [anon_sym_private] = ACTIONS(4869), + [anon_sym_internal] = ACTIONS(4869), + [anon_sym_fileprivate] = ACTIONS(4869), + [anon_sym_open] = ACTIONS(4869), + [anon_sym_mutating] = ACTIONS(4869), + [anon_sym_nonmutating] = ACTIONS(4869), + [anon_sym_static] = ACTIONS(4869), + [anon_sym_dynamic] = ACTIONS(4869), + [anon_sym_optional] = ACTIONS(4869), + [anon_sym_final] = ACTIONS(4869), + [anon_sym_inout] = ACTIONS(4869), + [anon_sym_ATescaping] = ACTIONS(4871), + [anon_sym_ATautoclosure] = ACTIONS(4871), + [anon_sym_weak] = ACTIONS(4869), + [anon_sym_unowned] = ACTIONS(4869), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4871), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4871), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4871), + [sym__dot_custom] = ACTIONS(4871), + [sym__three_dot_operator_custom] = ACTIONS(4871), + [sym__open_ended_range_operator_custom] = ACTIONS(4871), + [sym__conjunction_operator_custom] = ACTIONS(4871), + [sym__disjunction_operator_custom] = ACTIONS(4871), + [sym__nil_coalescing_operator_custom] = ACTIONS(4871), + [sym__eq_eq_custom] = ACTIONS(4871), + [sym__plus_then_ws] = ACTIONS(4871), + [sym__minus_then_ws] = ACTIONS(4871), + [sym_bang] = ACTIONS(4871), + [sym_default_keyword] = ACTIONS(4871), + [sym__as_custom] = ACTIONS(4871), + [sym__as_quest_custom] = ACTIONS(4871), + [sym__as_bang_custom] = ACTIONS(4871), + }, + [1313] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4897), + [aux_sym_simple_identifier_token2] = ACTIONS(4899), + [aux_sym_simple_identifier_token3] = ACTIONS(4899), + [aux_sym_simple_identifier_token4] = ACTIONS(4899), + [anon_sym_COMMA] = ACTIONS(4899), + [anon_sym_LPAREN] = ACTIONS(4899), + [anon_sym_LBRACK] = ACTIONS(4899), + [anon_sym_QMARK] = ACTIONS(4897), + [sym__immediate_quest] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), + [aux_sym_custom_operator_token1] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_LBRACE] = ACTIONS(4899), + [anon_sym_RBRACE] = ACTIONS(4899), + [anon_sym_case] = ACTIONS(4897), + [anon_sym_fallthrough] = ACTIONS(4897), + [anon_sym_PLUS_EQ] = ACTIONS(4897), + [anon_sym_DASH_EQ] = ACTIONS(4897), + [anon_sym_STAR_EQ] = ACTIONS(4897), + [anon_sym_SLASH_EQ] = ACTIONS(4897), + [anon_sym_PERCENT_EQ] = ACTIONS(4897), + [anon_sym_EQ] = ACTIONS(4897), + [anon_sym_BANG_EQ] = ACTIONS(4897), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4897), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4897), + [anon_sym_LT_EQ] = ACTIONS(4897), + [anon_sym_GT_EQ] = ACTIONS(4897), + [anon_sym_is] = ACTIONS(4897), + [anon_sym_PLUS] = ACTIONS(4897), + [anon_sym_DASH] = ACTIONS(4897), + [anon_sym_STAR] = ACTIONS(4897), + [anon_sym_SLASH] = ACTIONS(4897), + [anon_sym_PERCENT] = ACTIONS(4897), + [anon_sym_PLUS_PLUS] = ACTIONS(4897), + [anon_sym_DASH_DASH] = ACTIONS(4897), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_CARET] = ACTIONS(4897), + [anon_sym_LT_LT] = ACTIONS(4897), + [anon_sym_GT_GT] = ACTIONS(4897), + [anon_sym_class] = ACTIONS(4897), + [anon_sym_prefix] = ACTIONS(4897), + [anon_sym_infix] = ACTIONS(4897), + [anon_sym_postfix] = ACTIONS(4897), + [anon_sym_AT] = ACTIONS(4897), + [sym_property_behavior_modifier] = ACTIONS(4897), + [anon_sym_override] = ACTIONS(4897), + [anon_sym_convenience] = ACTIONS(4897), + [anon_sym_required] = ACTIONS(4897), + [anon_sym_public] = ACTIONS(4897), + [anon_sym_private] = ACTIONS(4897), + [anon_sym_internal] = ACTIONS(4897), + [anon_sym_fileprivate] = ACTIONS(4897), + [anon_sym_open] = ACTIONS(4897), + [anon_sym_mutating] = ACTIONS(4897), + [anon_sym_nonmutating] = ACTIONS(4897), + [anon_sym_static] = ACTIONS(4897), + [anon_sym_dynamic] = ACTIONS(4897), + [anon_sym_optional] = ACTIONS(4897), + [anon_sym_final] = ACTIONS(4897), + [anon_sym_inout] = ACTIONS(4897), + [anon_sym_ATescaping] = ACTIONS(4899), + [anon_sym_ATautoclosure] = ACTIONS(4899), + [anon_sym_weak] = ACTIONS(4897), + [anon_sym_unowned] = ACTIONS(4897), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4899), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4899), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4899), + [sym__dot_custom] = ACTIONS(4899), + [sym__three_dot_operator_custom] = ACTIONS(4899), + [sym__open_ended_range_operator_custom] = ACTIONS(4899), + [sym__conjunction_operator_custom] = ACTIONS(4899), + [sym__disjunction_operator_custom] = ACTIONS(4899), + [sym__nil_coalescing_operator_custom] = ACTIONS(4899), + [sym__eq_eq_custom] = ACTIONS(4899), + [sym__plus_then_ws] = ACTIONS(4899), + [sym__minus_then_ws] = ACTIONS(4899), + [sym_bang] = ACTIONS(4899), + [sym_default_keyword] = ACTIONS(4899), + [sym__as_custom] = ACTIONS(4899), + [sym__as_quest_custom] = ACTIONS(4899), + [sym__as_bang_custom] = ACTIONS(4899), + }, + [1314] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4861), + [aux_sym_simple_identifier_token2] = ACTIONS(4863), + [aux_sym_simple_identifier_token3] = ACTIONS(4863), + [aux_sym_simple_identifier_token4] = ACTIONS(4863), + [anon_sym_LPAREN] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_QMARK] = ACTIONS(4861), + [sym__immediate_quest] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), + [aux_sym_custom_operator_token1] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4861), + [anon_sym_GT] = ACTIONS(4861), + [anon_sym_LBRACE] = ACTIONS(4863), + [anon_sym_RBRACE] = ACTIONS(5320), + [anon_sym_case] = ACTIONS(5322), + [anon_sym_fallthrough] = ACTIONS(5322), + [anon_sym_PLUS_EQ] = ACTIONS(4861), + [anon_sym_DASH_EQ] = ACTIONS(4861), + [anon_sym_STAR_EQ] = ACTIONS(4861), + [anon_sym_SLASH_EQ] = ACTIONS(4861), + [anon_sym_PERCENT_EQ] = ACTIONS(4861), + [anon_sym_EQ] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4861), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4861), + [anon_sym_PLUS] = ACTIONS(4861), + [anon_sym_DASH] = ACTIONS(4861), + [anon_sym_STAR] = ACTIONS(4861), + [anon_sym_SLASH] = ACTIONS(4861), + [anon_sym_PERCENT] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_CARET] = ACTIONS(4861), + [anon_sym_LT_LT] = ACTIONS(4861), + [anon_sym_GT_GT] = ACTIONS(4861), + [anon_sym_class] = ACTIONS(5322), + [anon_sym_prefix] = ACTIONS(5322), + [anon_sym_infix] = ACTIONS(5322), + [anon_sym_postfix] = ACTIONS(5322), + [anon_sym_AT] = ACTIONS(5322), + [sym_property_behavior_modifier] = ACTIONS(5322), + [anon_sym_override] = ACTIONS(5322), + [anon_sym_convenience] = ACTIONS(5322), + [anon_sym_required] = ACTIONS(5322), + [anon_sym_public] = ACTIONS(5322), + [anon_sym_private] = ACTIONS(5322), + [anon_sym_internal] = ACTIONS(5322), + [anon_sym_fileprivate] = ACTIONS(5322), + [anon_sym_open] = ACTIONS(5322), + [anon_sym_mutating] = ACTIONS(5322), + [anon_sym_nonmutating] = ACTIONS(5322), + [anon_sym_static] = ACTIONS(5322), + [anon_sym_dynamic] = ACTIONS(5322), + [anon_sym_optional] = ACTIONS(5322), + [anon_sym_final] = ACTIONS(5322), + [anon_sym_inout] = ACTIONS(5322), + [anon_sym_ATescaping] = ACTIONS(5320), + [anon_sym_ATautoclosure] = ACTIONS(5320), + [anon_sym_weak] = ACTIONS(5322), + [anon_sym_unowned] = ACTIONS(5322), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5320), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5320), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5320), + [sym__dot_custom] = ACTIONS(4863), + [sym__three_dot_operator_custom] = ACTIONS(4863), + [sym__open_ended_range_operator_custom] = ACTIONS(4863), + [sym__conjunction_operator_custom] = ACTIONS(4863), + [sym__disjunction_operator_custom] = ACTIONS(4863), + [sym__nil_coalescing_operator_custom] = ACTIONS(4863), + [sym__eq_eq_custom] = ACTIONS(4863), + [sym__plus_then_ws] = ACTIONS(4863), + [sym__minus_then_ws] = ACTIONS(4863), + [sym_bang] = ACTIONS(4863), + [sym_default_keyword] = ACTIONS(5320), + [sym_where_keyword] = ACTIONS(4863), + [sym__as_custom] = ACTIONS(4863), + [sym__as_quest_custom] = ACTIONS(4863), + [sym__as_bang_custom] = ACTIONS(4863), + }, + [1315] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4861), + [aux_sym_simple_identifier_token2] = ACTIONS(4863), + [aux_sym_simple_identifier_token3] = ACTIONS(4863), + [aux_sym_simple_identifier_token4] = ACTIONS(4863), + [anon_sym_COMMA] = ACTIONS(4863), + [anon_sym_LPAREN] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_QMARK] = ACTIONS(4861), + [sym__immediate_quest] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), + [aux_sym_custom_operator_token1] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4861), + [anon_sym_GT] = ACTIONS(4861), + [anon_sym_LBRACE] = ACTIONS(4863), + [anon_sym_RBRACE] = ACTIONS(4863), + [anon_sym_case] = ACTIONS(4861), + [anon_sym_fallthrough] = ACTIONS(4861), + [anon_sym_PLUS_EQ] = ACTIONS(4861), + [anon_sym_DASH_EQ] = ACTIONS(4861), + [anon_sym_STAR_EQ] = ACTIONS(4861), + [anon_sym_SLASH_EQ] = ACTIONS(4861), + [anon_sym_PERCENT_EQ] = ACTIONS(4861), + [anon_sym_EQ] = ACTIONS(4861), + [anon_sym_BANG_EQ] = ACTIONS(4861), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4861), + [anon_sym_PLUS] = ACTIONS(4861), + [anon_sym_DASH] = ACTIONS(4861), + [anon_sym_STAR] = ACTIONS(4861), + [anon_sym_SLASH] = ACTIONS(4861), + [anon_sym_PERCENT] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_CARET] = ACTIONS(4861), + [anon_sym_LT_LT] = ACTIONS(4861), + [anon_sym_GT_GT] = ACTIONS(4861), + [anon_sym_class] = ACTIONS(4861), + [anon_sym_prefix] = ACTIONS(4861), + [anon_sym_infix] = ACTIONS(4861), + [anon_sym_postfix] = ACTIONS(4861), + [anon_sym_AT] = ACTIONS(4861), + [sym_property_behavior_modifier] = ACTIONS(4861), + [anon_sym_override] = ACTIONS(4861), + [anon_sym_convenience] = ACTIONS(4861), + [anon_sym_required] = ACTIONS(4861), + [anon_sym_public] = ACTIONS(4861), + [anon_sym_private] = ACTIONS(4861), + [anon_sym_internal] = ACTIONS(4861), + [anon_sym_fileprivate] = ACTIONS(4861), + [anon_sym_open] = ACTIONS(4861), + [anon_sym_mutating] = ACTIONS(4861), + [anon_sym_nonmutating] = ACTIONS(4861), + [anon_sym_static] = ACTIONS(4861), + [anon_sym_dynamic] = ACTIONS(4861), + [anon_sym_optional] = ACTIONS(4861), + [anon_sym_final] = ACTIONS(4861), + [anon_sym_inout] = ACTIONS(4861), + [anon_sym_ATescaping] = ACTIONS(4863), + [anon_sym_ATautoclosure] = ACTIONS(4863), + [anon_sym_weak] = ACTIONS(4861), + [anon_sym_unowned] = ACTIONS(4861), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4863), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4863), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4863), + [sym__dot_custom] = ACTIONS(4863), + [sym__three_dot_operator_custom] = ACTIONS(4863), + [sym__open_ended_range_operator_custom] = ACTIONS(4863), + [sym__conjunction_operator_custom] = ACTIONS(4863), + [sym__disjunction_operator_custom] = ACTIONS(4863), + [sym__nil_coalescing_operator_custom] = ACTIONS(4863), + [sym__eq_eq_custom] = ACTIONS(4863), + [sym__plus_then_ws] = ACTIONS(4863), + [sym__minus_then_ws] = ACTIONS(4863), + [sym_bang] = ACTIONS(4863), + [sym_default_keyword] = ACTIONS(4863), + [sym__as_custom] = ACTIONS(4863), + [sym__as_quest_custom] = ACTIONS(4863), + [sym__as_bang_custom] = ACTIONS(4863), + }, + [1316] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4829), + [aux_sym_simple_identifier_token2] = ACTIONS(4831), + [aux_sym_simple_identifier_token3] = ACTIONS(4831), + [aux_sym_simple_identifier_token4] = ACTIONS(4831), + [anon_sym_COMMA] = ACTIONS(4831), + [anon_sym_LPAREN] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(4831), + [anon_sym_QMARK] = ACTIONS(4829), + [sym__immediate_quest] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + [aux_sym_custom_operator_token1] = ACTIONS(4829), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_LBRACE] = ACTIONS(4831), + [anon_sym_RBRACE] = ACTIONS(4831), + [anon_sym_case] = ACTIONS(4829), + [anon_sym_fallthrough] = ACTIONS(4829), + [anon_sym_PLUS_EQ] = ACTIONS(4829), + [anon_sym_DASH_EQ] = ACTIONS(4829), + [anon_sym_STAR_EQ] = ACTIONS(4829), + [anon_sym_SLASH_EQ] = ACTIONS(4829), + [anon_sym_PERCENT_EQ] = ACTIONS(4829), + [anon_sym_EQ] = ACTIONS(4829), + [anon_sym_BANG_EQ] = ACTIONS(4829), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4829), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4829), + [anon_sym_LT_EQ] = ACTIONS(4829), + [anon_sym_GT_EQ] = ACTIONS(4829), + [anon_sym_is] = ACTIONS(4829), + [anon_sym_PLUS] = ACTIONS(4829), + [anon_sym_DASH] = ACTIONS(4829), + [anon_sym_STAR] = ACTIONS(4829), + [anon_sym_SLASH] = ACTIONS(4829), + [anon_sym_PERCENT] = ACTIONS(4829), + [anon_sym_PLUS_PLUS] = ACTIONS(4829), + [anon_sym_DASH_DASH] = ACTIONS(4829), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_CARET] = ACTIONS(4829), + [anon_sym_LT_LT] = ACTIONS(4829), + [anon_sym_GT_GT] = ACTIONS(4829), + [anon_sym_class] = ACTIONS(4829), + [anon_sym_prefix] = ACTIONS(4829), + [anon_sym_infix] = ACTIONS(4829), + [anon_sym_postfix] = ACTIONS(4829), + [anon_sym_AT] = ACTIONS(4829), + [sym_property_behavior_modifier] = ACTIONS(4829), + [anon_sym_override] = ACTIONS(4829), + [anon_sym_convenience] = ACTIONS(4829), + [anon_sym_required] = ACTIONS(4829), + [anon_sym_public] = ACTIONS(4829), + [anon_sym_private] = ACTIONS(4829), + [anon_sym_internal] = ACTIONS(4829), + [anon_sym_fileprivate] = ACTIONS(4829), + [anon_sym_open] = ACTIONS(4829), + [anon_sym_mutating] = ACTIONS(4829), + [anon_sym_nonmutating] = ACTIONS(4829), + [anon_sym_static] = ACTIONS(4829), + [anon_sym_dynamic] = ACTIONS(4829), + [anon_sym_optional] = ACTIONS(4829), + [anon_sym_final] = ACTIONS(4829), + [anon_sym_inout] = ACTIONS(4829), + [anon_sym_ATescaping] = ACTIONS(4831), + [anon_sym_ATautoclosure] = ACTIONS(4831), + [anon_sym_weak] = ACTIONS(4829), + [anon_sym_unowned] = ACTIONS(4829), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4831), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4831), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4831), + [sym__dot_custom] = ACTIONS(4831), + [sym__three_dot_operator_custom] = ACTIONS(4831), + [sym__open_ended_range_operator_custom] = ACTIONS(4831), + [sym__conjunction_operator_custom] = ACTIONS(4831), + [sym__disjunction_operator_custom] = ACTIONS(4831), + [sym__nil_coalescing_operator_custom] = ACTIONS(4831), + [sym__eq_eq_custom] = ACTIONS(4831), + [sym__plus_then_ws] = ACTIONS(4831), + [sym__minus_then_ws] = ACTIONS(4831), + [sym_bang] = ACTIONS(4831), + [sym_default_keyword] = ACTIONS(4831), + [sym__as_custom] = ACTIONS(4831), + [sym__as_quest_custom] = ACTIONS(4831), + [sym__as_bang_custom] = ACTIONS(4831), + }, + [1317] = { + [sym__type_level_declaration] = STATE(1325), + [sym_import_declaration] = STATE(1325), + [sym_property_declaration] = STATE(1325), + [sym__modifierless_property_declaration] = STATE(2918), + [sym_typealias_declaration] = STATE(1325), + [sym__modifierless_typealias_declaration] = STATE(2917), + [sym_function_declaration] = STATE(1325), + [sym__bodyless_function_declaration] = STATE(7983), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(1325), + [sym__modifierless_class_declaration] = STATE(2911), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__async_modifier] = STATE(10404), + [sym_enum_entry] = STATE(1325), + [sym_protocol_declaration] = STATE(1325), + [sym_deinit_declaration] = STATE(1325), + [sym_subscript_declaration] = STATE(1325), + [sym_operator_declaration] = STATE(1325), + [sym_precedence_group_declaration] = STATE(1325), + [sym_associatedtype_declaration] = STATE(1325), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4645), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_enum_class_body_repeat1] = STATE(1325), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5324), + [anon_sym_RBRACE] = ACTIONS(5326), + [anon_sym_case] = ACTIONS(5328), + [anon_sym_import] = ACTIONS(5330), + [anon_sym_typealias] = ACTIONS(5332), + [anon_sym_struct] = ACTIONS(5334), + [anon_sym_class] = ACTIONS(5336), + [anon_sym_enum] = ACTIONS(5338), + [anon_sym_protocol] = ACTIONS(5340), + [anon_sym_let] = ACTIONS(5342), + [anon_sym_var] = ACTIONS(5342), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_extension] = ACTIONS(5346), + [anon_sym_indirect] = ACTIONS(5348), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5352), + [anon_sym_subscript] = ACTIONS(5354), + [anon_sym_prefix] = ACTIONS(5356), + [anon_sym_infix] = ACTIONS(5356), + [anon_sym_postfix] = ACTIONS(5356), + [anon_sym_precedencegroup] = ACTIONS(5358), + [anon_sym_associatedtype] = ACTIONS(5360), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [1318] = { + [sym__type_level_declaration] = STATE(1320), + [sym_import_declaration] = STATE(1320), + [sym_property_declaration] = STATE(1320), + [sym__modifierless_property_declaration] = STATE(2918), + [sym_typealias_declaration] = STATE(1320), + [sym__modifierless_typealias_declaration] = STATE(2917), + [sym_function_declaration] = STATE(1320), + [sym__bodyless_function_declaration] = STATE(7983), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(1320), + [sym__modifierless_class_declaration] = STATE(2911), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__async_modifier] = STATE(10404), + [sym_enum_entry] = STATE(1320), + [sym_protocol_declaration] = STATE(1320), + [sym_deinit_declaration] = STATE(1320), + [sym_subscript_declaration] = STATE(1320), + [sym_operator_declaration] = STATE(1320), + [sym_precedence_group_declaration] = STATE(1320), + [sym_associatedtype_declaration] = STATE(1320), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4645), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_enum_class_body_repeat1] = STATE(1320), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5324), + [anon_sym_RBRACE] = ACTIONS(5374), + [anon_sym_case] = ACTIONS(5328), + [anon_sym_import] = ACTIONS(5330), + [anon_sym_typealias] = ACTIONS(5332), + [anon_sym_struct] = ACTIONS(5334), + [anon_sym_class] = ACTIONS(5336), + [anon_sym_enum] = ACTIONS(5338), + [anon_sym_protocol] = ACTIONS(5340), + [anon_sym_let] = ACTIONS(5342), + [anon_sym_var] = ACTIONS(5342), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_extension] = ACTIONS(5346), + [anon_sym_indirect] = ACTIONS(5348), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5352), + [anon_sym_subscript] = ACTIONS(5354), + [anon_sym_prefix] = ACTIONS(5356), + [anon_sym_infix] = ACTIONS(5356), + [anon_sym_postfix] = ACTIONS(5356), + [anon_sym_precedencegroup] = ACTIONS(5358), + [anon_sym_associatedtype] = ACTIONS(5360), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [1319] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4845), + [aux_sym_simple_identifier_token2] = ACTIONS(4847), + [aux_sym_simple_identifier_token3] = ACTIONS(4847), + [aux_sym_simple_identifier_token4] = ACTIONS(4847), + [anon_sym_LPAREN] = ACTIONS(4847), + [anon_sym_LBRACK] = ACTIONS(4847), + [anon_sym_QMARK] = ACTIONS(4845), + [sym__immediate_quest] = ACTIONS(4845), + [anon_sym_AMP] = ACTIONS(4845), + [aux_sym_custom_operator_token1] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4845), + [anon_sym_GT] = ACTIONS(4845), + [anon_sym_LBRACE] = ACTIONS(4847), + [anon_sym_RBRACE] = ACTIONS(5376), + [anon_sym_case] = ACTIONS(5378), + [anon_sym_fallthrough] = ACTIONS(5378), + [anon_sym_PLUS_EQ] = ACTIONS(4845), + [anon_sym_DASH_EQ] = ACTIONS(4845), + [anon_sym_STAR_EQ] = ACTIONS(4845), + [anon_sym_SLASH_EQ] = ACTIONS(4845), + [anon_sym_PERCENT_EQ] = ACTIONS(4845), + [anon_sym_EQ] = ACTIONS(4845), + [anon_sym_BANG_EQ] = ACTIONS(4845), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4845), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4845), + [anon_sym_LT_EQ] = ACTIONS(4845), + [anon_sym_GT_EQ] = ACTIONS(4845), + [anon_sym_is] = ACTIONS(4845), + [anon_sym_PLUS] = ACTIONS(4845), + [anon_sym_DASH] = ACTIONS(4845), + [anon_sym_STAR] = ACTIONS(4845), + [anon_sym_SLASH] = ACTIONS(4845), + [anon_sym_PERCENT] = ACTIONS(4845), + [anon_sym_PLUS_PLUS] = ACTIONS(4845), + [anon_sym_DASH_DASH] = ACTIONS(4845), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_CARET] = ACTIONS(4845), + [anon_sym_LT_LT] = ACTIONS(4845), + [anon_sym_GT_GT] = ACTIONS(4845), + [anon_sym_class] = ACTIONS(5378), + [anon_sym_prefix] = ACTIONS(5378), + [anon_sym_infix] = ACTIONS(5378), + [anon_sym_postfix] = ACTIONS(5378), + [anon_sym_AT] = ACTIONS(5378), + [sym_property_behavior_modifier] = ACTIONS(5378), + [anon_sym_override] = ACTIONS(5378), + [anon_sym_convenience] = ACTIONS(5378), + [anon_sym_required] = ACTIONS(5378), + [anon_sym_public] = ACTIONS(5378), + [anon_sym_private] = ACTIONS(5378), + [anon_sym_internal] = ACTIONS(5378), + [anon_sym_fileprivate] = ACTIONS(5378), + [anon_sym_open] = ACTIONS(5378), + [anon_sym_mutating] = ACTIONS(5378), + [anon_sym_nonmutating] = ACTIONS(5378), + [anon_sym_static] = ACTIONS(5378), + [anon_sym_dynamic] = ACTIONS(5378), + [anon_sym_optional] = ACTIONS(5378), + [anon_sym_final] = ACTIONS(5378), + [anon_sym_inout] = ACTIONS(5378), + [anon_sym_ATescaping] = ACTIONS(5376), + [anon_sym_ATautoclosure] = ACTIONS(5376), + [anon_sym_weak] = ACTIONS(5378), + [anon_sym_unowned] = ACTIONS(5378), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5376), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5376), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5376), + [sym__dot_custom] = ACTIONS(4847), + [sym__three_dot_operator_custom] = ACTIONS(4847), + [sym__open_ended_range_operator_custom] = ACTIONS(4847), + [sym__conjunction_operator_custom] = ACTIONS(4847), + [sym__disjunction_operator_custom] = ACTIONS(4847), + [sym__nil_coalescing_operator_custom] = ACTIONS(4847), + [sym__eq_eq_custom] = ACTIONS(4847), + [sym__plus_then_ws] = ACTIONS(4847), + [sym__minus_then_ws] = ACTIONS(4847), + [sym_bang] = ACTIONS(4847), + [sym_default_keyword] = ACTIONS(5376), + [sym__as_custom] = ACTIONS(4847), + [sym__as_quest_custom] = ACTIONS(4847), + [sym__as_bang_custom] = ACTIONS(4847), + }, + [1320] = { + [sym__type_level_declaration] = STATE(1324), + [sym_import_declaration] = STATE(1324), + [sym_property_declaration] = STATE(1324), + [sym__modifierless_property_declaration] = STATE(2918), + [sym_typealias_declaration] = STATE(1324), + [sym__modifierless_typealias_declaration] = STATE(2917), + [sym_function_declaration] = STATE(1324), + [sym__bodyless_function_declaration] = STATE(7983), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(1324), + [sym__modifierless_class_declaration] = STATE(2911), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__async_modifier] = STATE(10404), + [sym_enum_entry] = STATE(1324), + [sym_protocol_declaration] = STATE(1324), + [sym_deinit_declaration] = STATE(1324), + [sym_subscript_declaration] = STATE(1324), + [sym_operator_declaration] = STATE(1324), + [sym_precedence_group_declaration] = STATE(1324), + [sym_associatedtype_declaration] = STATE(1324), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4645), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_enum_class_body_repeat1] = STATE(1324), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5324), + [anon_sym_RBRACE] = ACTIONS(5380), + [anon_sym_case] = ACTIONS(5328), + [anon_sym_import] = ACTIONS(5330), + [anon_sym_typealias] = ACTIONS(5332), + [anon_sym_struct] = ACTIONS(5334), + [anon_sym_class] = ACTIONS(5336), + [anon_sym_enum] = ACTIONS(5338), + [anon_sym_protocol] = ACTIONS(5340), + [anon_sym_let] = ACTIONS(5342), + [anon_sym_var] = ACTIONS(5342), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_extension] = ACTIONS(5346), + [anon_sym_indirect] = ACTIONS(5348), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5352), + [anon_sym_subscript] = ACTIONS(5354), + [anon_sym_prefix] = ACTIONS(5356), + [anon_sym_infix] = ACTIONS(5356), + [anon_sym_postfix] = ACTIONS(5356), + [anon_sym_precedencegroup] = ACTIONS(5358), + [anon_sym_associatedtype] = ACTIONS(5360), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [1321] = { + [sym__type_level_declaration] = STATE(1324), + [sym_import_declaration] = STATE(1324), + [sym_property_declaration] = STATE(1324), + [sym__modifierless_property_declaration] = STATE(2918), + [sym_typealias_declaration] = STATE(1324), + [sym__modifierless_typealias_declaration] = STATE(2917), + [sym_function_declaration] = STATE(1324), + [sym__bodyless_function_declaration] = STATE(7983), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(1324), + [sym__modifierless_class_declaration] = STATE(2911), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__async_modifier] = STATE(10404), + [sym_enum_entry] = STATE(1324), + [sym_protocol_declaration] = STATE(1324), + [sym_deinit_declaration] = STATE(1324), + [sym_subscript_declaration] = STATE(1324), + [sym_operator_declaration] = STATE(1324), + [sym_precedence_group_declaration] = STATE(1324), + [sym_associatedtype_declaration] = STATE(1324), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4645), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_enum_class_body_repeat1] = STATE(1324), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5324), + [anon_sym_RBRACE] = ACTIONS(5382), + [anon_sym_case] = ACTIONS(5328), + [anon_sym_import] = ACTIONS(5330), + [anon_sym_typealias] = ACTIONS(5332), + [anon_sym_struct] = ACTIONS(5334), + [anon_sym_class] = ACTIONS(5336), + [anon_sym_enum] = ACTIONS(5338), + [anon_sym_protocol] = ACTIONS(5340), + [anon_sym_let] = ACTIONS(5342), + [anon_sym_var] = ACTIONS(5342), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_extension] = ACTIONS(5346), + [anon_sym_indirect] = ACTIONS(5348), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5352), + [anon_sym_subscript] = ACTIONS(5354), + [anon_sym_prefix] = ACTIONS(5356), + [anon_sym_infix] = ACTIONS(5356), + [anon_sym_postfix] = ACTIONS(5356), + [anon_sym_precedencegroup] = ACTIONS(5358), + [anon_sym_associatedtype] = ACTIONS(5360), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [1322] = { + [sym__type_level_declaration] = STATE(1324), + [sym_import_declaration] = STATE(1324), + [sym_property_declaration] = STATE(1324), + [sym__modifierless_property_declaration] = STATE(2918), + [sym_typealias_declaration] = STATE(1324), + [sym__modifierless_typealias_declaration] = STATE(2917), + [sym_function_declaration] = STATE(1324), + [sym__bodyless_function_declaration] = STATE(7983), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(1324), + [sym__modifierless_class_declaration] = STATE(2911), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__async_modifier] = STATE(10404), + [sym_enum_entry] = STATE(1324), + [sym_protocol_declaration] = STATE(1324), + [sym_deinit_declaration] = STATE(1324), + [sym_subscript_declaration] = STATE(1324), + [sym_operator_declaration] = STATE(1324), + [sym_precedence_group_declaration] = STATE(1324), + [sym_associatedtype_declaration] = STATE(1324), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4645), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_enum_class_body_repeat1] = STATE(1324), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5324), + [anon_sym_RBRACE] = ACTIONS(5384), + [anon_sym_case] = ACTIONS(5328), + [anon_sym_import] = ACTIONS(5330), + [anon_sym_typealias] = ACTIONS(5332), + [anon_sym_struct] = ACTIONS(5334), + [anon_sym_class] = ACTIONS(5336), + [anon_sym_enum] = ACTIONS(5338), + [anon_sym_protocol] = ACTIONS(5340), + [anon_sym_let] = ACTIONS(5342), + [anon_sym_var] = ACTIONS(5342), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_extension] = ACTIONS(5346), + [anon_sym_indirect] = ACTIONS(5348), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5352), + [anon_sym_subscript] = ACTIONS(5354), + [anon_sym_prefix] = ACTIONS(5356), + [anon_sym_infix] = ACTIONS(5356), + [anon_sym_postfix] = ACTIONS(5356), + [anon_sym_precedencegroup] = ACTIONS(5358), + [anon_sym_associatedtype] = ACTIONS(5360), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [1323] = { + [sym__type_level_declaration] = STATE(1321), + [sym_import_declaration] = STATE(1321), + [sym_property_declaration] = STATE(1321), + [sym__modifierless_property_declaration] = STATE(2918), + [sym_typealias_declaration] = STATE(1321), + [sym__modifierless_typealias_declaration] = STATE(2917), + [sym_function_declaration] = STATE(1321), + [sym__bodyless_function_declaration] = STATE(7983), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(1321), + [sym__modifierless_class_declaration] = STATE(2911), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__async_modifier] = STATE(10404), + [sym_enum_entry] = STATE(1321), + [sym_protocol_declaration] = STATE(1321), + [sym_deinit_declaration] = STATE(1321), + [sym_subscript_declaration] = STATE(1321), + [sym_operator_declaration] = STATE(1321), + [sym_precedence_group_declaration] = STATE(1321), + [sym_associatedtype_declaration] = STATE(1321), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4645), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_enum_class_body_repeat1] = STATE(1321), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5324), + [anon_sym_RBRACE] = ACTIONS(5386), + [anon_sym_case] = ACTIONS(5328), + [anon_sym_import] = ACTIONS(5330), + [anon_sym_typealias] = ACTIONS(5332), + [anon_sym_struct] = ACTIONS(5334), + [anon_sym_class] = ACTIONS(5336), + [anon_sym_enum] = ACTIONS(5338), + [anon_sym_protocol] = ACTIONS(5340), + [anon_sym_let] = ACTIONS(5342), + [anon_sym_var] = ACTIONS(5342), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_extension] = ACTIONS(5346), + [anon_sym_indirect] = ACTIONS(5348), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5352), + [anon_sym_subscript] = ACTIONS(5354), + [anon_sym_prefix] = ACTIONS(5356), + [anon_sym_infix] = ACTIONS(5356), + [anon_sym_postfix] = ACTIONS(5356), + [anon_sym_precedencegroup] = ACTIONS(5358), + [anon_sym_associatedtype] = ACTIONS(5360), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [1324] = { + [sym__type_level_declaration] = STATE(1324), + [sym_import_declaration] = STATE(1324), + [sym_property_declaration] = STATE(1324), + [sym__modifierless_property_declaration] = STATE(2918), + [sym_typealias_declaration] = STATE(1324), + [sym__modifierless_typealias_declaration] = STATE(2917), + [sym_function_declaration] = STATE(1324), + [sym__bodyless_function_declaration] = STATE(7983), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(1324), + [sym__modifierless_class_declaration] = STATE(2911), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__async_modifier] = STATE(10404), + [sym_enum_entry] = STATE(1324), + [sym_protocol_declaration] = STATE(1324), + [sym_deinit_declaration] = STATE(1324), + [sym_subscript_declaration] = STATE(1324), + [sym_operator_declaration] = STATE(1324), + [sym_precedence_group_declaration] = STATE(1324), + [sym_associatedtype_declaration] = STATE(1324), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4645), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_enum_class_body_repeat1] = STATE(1324), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5388), + [anon_sym_RBRACE] = ACTIONS(5391), + [anon_sym_case] = ACTIONS(5393), + [anon_sym_import] = ACTIONS(5396), + [anon_sym_typealias] = ACTIONS(5399), + [anon_sym_struct] = ACTIONS(5402), + [anon_sym_class] = ACTIONS(5405), + [anon_sym_enum] = ACTIONS(5408), + [anon_sym_protocol] = ACTIONS(5411), + [anon_sym_let] = ACTIONS(5414), + [anon_sym_var] = ACTIONS(5414), + [anon_sym_func] = ACTIONS(5417), + [anon_sym_extension] = ACTIONS(5420), + [anon_sym_indirect] = ACTIONS(5423), + [anon_sym_init] = ACTIONS(5426), + [anon_sym_deinit] = ACTIONS(5429), + [anon_sym_subscript] = ACTIONS(5432), + [anon_sym_prefix] = ACTIONS(5435), + [anon_sym_infix] = ACTIONS(5435), + [anon_sym_postfix] = ACTIONS(5435), + [anon_sym_precedencegroup] = ACTIONS(5438), + [anon_sym_associatedtype] = ACTIONS(5441), + [anon_sym_AT] = ACTIONS(5444), + [sym_property_behavior_modifier] = ACTIONS(5447), + [anon_sym_override] = ACTIONS(5450), + [anon_sym_convenience] = ACTIONS(5450), + [anon_sym_required] = ACTIONS(5450), + [anon_sym_public] = ACTIONS(5453), + [anon_sym_private] = ACTIONS(5453), + [anon_sym_internal] = ACTIONS(5453), + [anon_sym_fileprivate] = ACTIONS(5453), + [anon_sym_open] = ACTIONS(5453), + [anon_sym_mutating] = ACTIONS(5456), + [anon_sym_nonmutating] = ACTIONS(5456), + [anon_sym_static] = ACTIONS(5459), + [anon_sym_dynamic] = ACTIONS(5459), + [anon_sym_optional] = ACTIONS(5459), + [anon_sym_final] = ACTIONS(5462), + [anon_sym_inout] = ACTIONS(5465), + [anon_sym_ATescaping] = ACTIONS(5465), + [anon_sym_ATautoclosure] = ACTIONS(5465), + [anon_sym_weak] = ACTIONS(5468), + [anon_sym_unowned] = ACTIONS(5471), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5468), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5468), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [1325] = { + [sym__type_level_declaration] = STATE(1324), + [sym_import_declaration] = STATE(1324), + [sym_property_declaration] = STATE(1324), + [sym__modifierless_property_declaration] = STATE(2918), + [sym_typealias_declaration] = STATE(1324), + [sym__modifierless_typealias_declaration] = STATE(2917), + [sym_function_declaration] = STATE(1324), + [sym__bodyless_function_declaration] = STATE(7983), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(1324), + [sym__modifierless_class_declaration] = STATE(2911), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__async_modifier] = STATE(10404), + [sym_enum_entry] = STATE(1324), + [sym_protocol_declaration] = STATE(1324), + [sym_deinit_declaration] = STATE(1324), + [sym_subscript_declaration] = STATE(1324), + [sym_operator_declaration] = STATE(1324), + [sym_precedence_group_declaration] = STATE(1324), + [sym_associatedtype_declaration] = STATE(1324), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4645), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_enum_class_body_repeat1] = STATE(1324), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5324), + [anon_sym_RBRACE] = ACTIONS(5474), + [anon_sym_case] = ACTIONS(5328), + [anon_sym_import] = ACTIONS(5330), + [anon_sym_typealias] = ACTIONS(5332), + [anon_sym_struct] = ACTIONS(5334), + [anon_sym_class] = ACTIONS(5336), + [anon_sym_enum] = ACTIONS(5338), + [anon_sym_protocol] = ACTIONS(5340), + [anon_sym_let] = ACTIONS(5342), + [anon_sym_var] = ACTIONS(5342), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_extension] = ACTIONS(5346), + [anon_sym_indirect] = ACTIONS(5348), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5352), + [anon_sym_subscript] = ACTIONS(5354), + [anon_sym_prefix] = ACTIONS(5356), + [anon_sym_infix] = ACTIONS(5356), + [anon_sym_postfix] = ACTIONS(5356), + [anon_sym_precedencegroup] = ACTIONS(5358), + [anon_sym_associatedtype] = ACTIONS(5360), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [1326] = { + [sym__type_level_declaration] = STATE(1322), + [sym_import_declaration] = STATE(1322), + [sym_property_declaration] = STATE(1322), + [sym__modifierless_property_declaration] = STATE(2918), + [sym_typealias_declaration] = STATE(1322), + [sym__modifierless_typealias_declaration] = STATE(2917), + [sym_function_declaration] = STATE(1322), + [sym__bodyless_function_declaration] = STATE(7983), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(1322), + [sym__modifierless_class_declaration] = STATE(2911), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__async_modifier] = STATE(10404), + [sym_enum_entry] = STATE(1322), + [sym_protocol_declaration] = STATE(1322), + [sym_deinit_declaration] = STATE(1322), + [sym_subscript_declaration] = STATE(1322), + [sym_operator_declaration] = STATE(1322), + [sym_precedence_group_declaration] = STATE(1322), + [sym_associatedtype_declaration] = STATE(1322), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4645), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_enum_class_body_repeat1] = STATE(1322), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5324), + [anon_sym_RBRACE] = ACTIONS(5476), + [anon_sym_case] = ACTIONS(5328), + [anon_sym_import] = ACTIONS(5330), + [anon_sym_typealias] = ACTIONS(5332), + [anon_sym_struct] = ACTIONS(5334), + [anon_sym_class] = ACTIONS(5336), + [anon_sym_enum] = ACTIONS(5338), + [anon_sym_protocol] = ACTIONS(5340), + [anon_sym_let] = ACTIONS(5342), + [anon_sym_var] = ACTIONS(5342), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_extension] = ACTIONS(5346), + [anon_sym_indirect] = ACTIONS(5348), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5352), + [anon_sym_subscript] = ACTIONS(5354), + [anon_sym_prefix] = ACTIONS(5356), + [anon_sym_infix] = ACTIONS(5356), + [anon_sym_postfix] = ACTIONS(5356), + [anon_sym_precedencegroup] = ACTIONS(5358), + [anon_sym_associatedtype] = ACTIONS(5360), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [1327] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4527), + [aux_sym_simple_identifier_token2] = ACTIONS(4529), + [aux_sym_simple_identifier_token3] = ACTIONS(4529), + [aux_sym_simple_identifier_token4] = ACTIONS(4529), + [anon_sym_nil] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_oct_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_BSLASH] = ACTIONS(4527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4531), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_RBRACK] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4536), + [sym__immediate_quest] = ACTIONS(4536), + [anon_sym_AMP] = ACTIONS(4538), + [anon_sym_async] = ACTIONS(4527), + [anon_sym_POUNDselector] = ACTIONS(4529), + [aux_sym_custom_operator_token1] = ACTIONS(4538), + [anon_sym_LT] = ACTIONS(4538), + [anon_sym_GT] = ACTIONS(4538), + [sym__await_operator] = ACTIONS(4527), + [anon_sym_POUNDfile] = ACTIONS(4527), + [anon_sym_POUNDfileID] = ACTIONS(4529), + [anon_sym_POUNDfilePath] = ACTIONS(4529), + [anon_sym_POUNDline] = ACTIONS(4529), + [anon_sym_POUNDcolumn] = ACTIONS(4529), + [anon_sym_POUNDfunction] = ACTIONS(4529), + [anon_sym_POUNDdsohandle] = ACTIONS(4529), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4529), + [anon_sym_POUNDfileLiteral] = ACTIONS(4529), + [anon_sym_POUNDimageLiteral] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_self] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_POUNDkeyPath] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_try_BANG] = ACTIONS(4529), + [anon_sym_try_QMARK] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4538), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4538), + [anon_sym_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_EQ] = ACTIONS(4538), + [anon_sym_is] = ACTIONS(4536), + [anon_sym_PLUS] = ACTIONS(4538), + [anon_sym_DASH] = ACTIONS(4538), + [anon_sym_STAR] = ACTIONS(4538), + [anon_sym_SLASH] = ACTIONS(4538), + [anon_sym_PERCENT] = ACTIONS(4538), + [anon_sym_PLUS_PLUS] = ACTIONS(4538), + [anon_sym_DASH_DASH] = ACTIONS(4538), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym_LT_LT] = ACTIONS(4536), + [anon_sym_GT_GT] = ACTIONS(4536), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4529), + [sym_raw_str_end_part] = ACTIONS(4529), + [sym__dot_custom] = ACTIONS(4533), + [sym__three_dot_operator_custom] = ACTIONS(4533), + [sym__open_ended_range_operator_custom] = ACTIONS(4533), + [sym__conjunction_operator_custom] = ACTIONS(4531), + [sym__disjunction_operator_custom] = ACTIONS(4531), + [sym__nil_coalescing_operator_custom] = ACTIONS(4531), + [sym__eq_eq_custom] = ACTIONS(4533), + [sym__plus_then_ws] = ACTIONS(4533), + [sym__minus_then_ws] = ACTIONS(4533), + [sym_bang] = ACTIONS(4533), + [sym__as_custom] = ACTIONS(4531), + [sym__as_quest_custom] = ACTIONS(4531), + [sym__as_bang_custom] = ACTIONS(4531), + }, + [1328] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4570), + [aux_sym_simple_identifier_token2] = ACTIONS(4572), + [aux_sym_simple_identifier_token3] = ACTIONS(4572), + [aux_sym_simple_identifier_token4] = ACTIONS(4572), + [anon_sym_nil] = ACTIONS(4570), + [sym_real_literal] = ACTIONS(4572), + [sym_integer_literal] = ACTIONS(4570), + [sym_hex_literal] = ACTIONS(4572), + [sym_oct_literal] = ACTIONS(4572), + [sym_bin_literal] = ACTIONS(4572), + [anon_sym_true] = ACTIONS(4570), + [anon_sym_false] = ACTIONS(4570), + [anon_sym_DQUOTE] = ACTIONS(4570), + [anon_sym_BSLASH] = ACTIONS(4570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4572), + [anon_sym_RBRACK] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4570), + [sym__immediate_quest] = ACTIONS(4570), + [anon_sym_AMP] = ACTIONS(4570), + [anon_sym_async] = ACTIONS(4570), + [anon_sym_POUNDselector] = ACTIONS(4572), + [aux_sym_custom_operator_token1] = ACTIONS(4570), + [anon_sym_LT] = ACTIONS(4570), + [anon_sym_GT] = ACTIONS(4570), + [sym__await_operator] = ACTIONS(4570), + [anon_sym_POUNDfile] = ACTIONS(4570), + [anon_sym_POUNDfileID] = ACTIONS(4572), + [anon_sym_POUNDfilePath] = ACTIONS(4572), + [anon_sym_POUNDline] = ACTIONS(4572), + [anon_sym_POUNDcolumn] = ACTIONS(4572), + [anon_sym_POUNDfunction] = ACTIONS(4572), + [anon_sym_POUNDdsohandle] = ACTIONS(4572), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4572), + [anon_sym_POUNDfileLiteral] = ACTIONS(4572), + [anon_sym_POUNDimageLiteral] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4572), + [anon_sym_self] = ACTIONS(4570), + [anon_sym_super] = ACTIONS(4570), + [anon_sym_POUNDkeyPath] = ACTIONS(4572), + [anon_sym_try] = ACTIONS(4570), + [anon_sym_try_BANG] = ACTIONS(4572), + [anon_sym_try_QMARK] = ACTIONS(4572), + [anon_sym_BANG_EQ] = ACTIONS(4570), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4570), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4570), + [anon_sym_LT_EQ] = ACTIONS(4570), + [anon_sym_GT_EQ] = ACTIONS(4570), + [anon_sym_is] = ACTIONS(4570), + [anon_sym_PLUS] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4570), + [anon_sym_STAR] = ACTIONS(4570), + [anon_sym_SLASH] = ACTIONS(4570), + [anon_sym_PERCENT] = ACTIONS(4570), + [anon_sym_PLUS_PLUS] = ACTIONS(4570), + [anon_sym_DASH_DASH] = ACTIONS(4570), + [anon_sym_TILDE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4570), + [anon_sym_CARET] = ACTIONS(4570), + [anon_sym_LT_LT] = ACTIONS(4570), + [anon_sym_GT_GT] = ACTIONS(4570), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4572), + [sym_raw_str_end_part] = ACTIONS(4572), + [sym__dot_custom] = ACTIONS(4572), + [sym__three_dot_operator_custom] = ACTIONS(4572), + [sym__open_ended_range_operator_custom] = ACTIONS(4572), + [sym__conjunction_operator_custom] = ACTIONS(4572), + [sym__disjunction_operator_custom] = ACTIONS(4572), + [sym__nil_coalescing_operator_custom] = ACTIONS(4572), + [sym__eq_eq_custom] = ACTIONS(4572), + [sym__plus_then_ws] = ACTIONS(4572), + [sym__minus_then_ws] = ACTIONS(4572), + [sym_bang] = ACTIONS(4572), + [sym__as_custom] = ACTIONS(4572), + [sym__as_quest_custom] = ACTIONS(4572), + [sym__as_bang_custom] = ACTIONS(4572), + }, + [1329] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4563), + [aux_sym_simple_identifier_token2] = ACTIONS(4565), + [aux_sym_simple_identifier_token3] = ACTIONS(4565), + [aux_sym_simple_identifier_token4] = ACTIONS(4565), + [anon_sym_nil] = ACTIONS(4563), + [sym_real_literal] = ACTIONS(4565), + [sym_integer_literal] = ACTIONS(4563), + [sym_hex_literal] = ACTIONS(4565), + [sym_oct_literal] = ACTIONS(4565), + [sym_bin_literal] = ACTIONS(4565), + [anon_sym_true] = ACTIONS(4563), + [anon_sym_false] = ACTIONS(4563), + [anon_sym_DQUOTE] = ACTIONS(4563), + [anon_sym_BSLASH] = ACTIONS(4563), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4565), + [anon_sym_RPAREN] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_RBRACK] = ACTIONS(4565), + [anon_sym_QMARK] = ACTIONS(4563), + [sym__immediate_quest] = ACTIONS(4563), + [anon_sym_AMP] = ACTIONS(4563), + [anon_sym_async] = ACTIONS(4563), + [anon_sym_POUNDselector] = ACTIONS(4565), + [aux_sym_custom_operator_token1] = ACTIONS(4563), + [anon_sym_LT] = ACTIONS(5478), + [anon_sym_GT] = ACTIONS(4563), + [sym__await_operator] = ACTIONS(4563), + [anon_sym_POUNDfile] = ACTIONS(4563), + [anon_sym_POUNDfileID] = ACTIONS(4565), + [anon_sym_POUNDfilePath] = ACTIONS(4565), + [anon_sym_POUNDline] = ACTIONS(4565), + [anon_sym_POUNDcolumn] = ACTIONS(4565), + [anon_sym_POUNDfunction] = ACTIONS(4565), + [anon_sym_POUNDdsohandle] = ACTIONS(4565), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4565), + [anon_sym_POUNDfileLiteral] = ACTIONS(4565), + [anon_sym_POUNDimageLiteral] = ACTIONS(4565), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_self] = ACTIONS(4563), + [anon_sym_super] = ACTIONS(4563), + [anon_sym_POUNDkeyPath] = ACTIONS(4565), + [anon_sym_try] = ACTIONS(4563), + [anon_sym_try_BANG] = ACTIONS(4565), + [anon_sym_try_QMARK] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4563), + [anon_sym_LT_EQ] = ACTIONS(4563), + [anon_sym_GT_EQ] = ACTIONS(4563), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_PLUS_PLUS] = ACTIONS(4563), + [anon_sym_DASH_DASH] = ACTIONS(4563), + [anon_sym_TILDE] = ACTIONS(4563), + [anon_sym_PIPE] = ACTIONS(4563), + [anon_sym_CARET] = ACTIONS(4563), + [anon_sym_LT_LT] = ACTIONS(4563), + [anon_sym_GT_GT] = ACTIONS(4563), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4565), + [sym_raw_str_end_part] = ACTIONS(4565), + [sym__dot_custom] = ACTIONS(4565), + [sym__three_dot_operator_custom] = ACTIONS(4565), + [sym__open_ended_range_operator_custom] = ACTIONS(4565), + [sym__conjunction_operator_custom] = ACTIONS(4565), + [sym__disjunction_operator_custom] = ACTIONS(4565), + [sym__nil_coalescing_operator_custom] = ACTIONS(4565), + [sym__eq_eq_custom] = ACTIONS(4565), + [sym__plus_then_ws] = ACTIONS(4565), + [sym__minus_then_ws] = ACTIONS(4565), + [sym_bang] = ACTIONS(4565), + [sym__as_custom] = ACTIONS(4565), + [sym__as_quest_custom] = ACTIONS(4565), + [sym__as_bang_custom] = ACTIONS(4565), + }, + [1330] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4527), + [aux_sym_simple_identifier_token2] = ACTIONS(4529), + [aux_sym_simple_identifier_token3] = ACTIONS(4529), + [aux_sym_simple_identifier_token4] = ACTIONS(4529), + [anon_sym_nil] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_oct_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_BSLASH] = ACTIONS(4527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4541), + [anon_sym_COMMA] = ACTIONS(4541), + [anon_sym_COLON] = ACTIONS(4541), + [anon_sym_LPAREN] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4543), + [anon_sym_RBRACK] = ACTIONS(4541), + [anon_sym_QMARK] = ACTIONS(4546), + [sym__immediate_quest] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_async] = ACTIONS(4527), + [anon_sym_POUNDselector] = ACTIONS(4529), + [aux_sym_custom_operator_token1] = ACTIONS(4548), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [sym__await_operator] = ACTIONS(4527), + [anon_sym_POUNDfile] = ACTIONS(4527), + [anon_sym_POUNDfileID] = ACTIONS(4529), + [anon_sym_POUNDfilePath] = ACTIONS(4529), + [anon_sym_POUNDline] = ACTIONS(4529), + [anon_sym_POUNDcolumn] = ACTIONS(4529), + [anon_sym_POUNDfunction] = ACTIONS(4529), + [anon_sym_POUNDdsohandle] = ACTIONS(4529), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4529), + [anon_sym_POUNDfileLiteral] = ACTIONS(4529), + [anon_sym_POUNDimageLiteral] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4543), + [anon_sym_self] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_POUNDkeyPath] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_try_BANG] = ACTIONS(4529), + [anon_sym_try_QMARK] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4548), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4548), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4548), + [anon_sym_LT_EQ] = ACTIONS(4548), + [anon_sym_GT_EQ] = ACTIONS(4548), + [anon_sym_is] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_STAR] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4548), + [anon_sym_PERCENT] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4548), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4546), + [anon_sym_LT_LT] = ACTIONS(4546), + [anon_sym_GT_GT] = ACTIONS(4546), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4529), + [sym_raw_str_end_part] = ACTIONS(4529), + [sym__dot_custom] = ACTIONS(4543), + [sym__three_dot_operator_custom] = ACTIONS(4543), + [sym__open_ended_range_operator_custom] = ACTIONS(4543), + [sym__conjunction_operator_custom] = ACTIONS(4541), + [sym__disjunction_operator_custom] = ACTIONS(4541), + [sym__nil_coalescing_operator_custom] = ACTIONS(4541), + [sym__eq_eq_custom] = ACTIONS(4543), + [sym__plus_then_ws] = ACTIONS(4543), + [sym__minus_then_ws] = ACTIONS(4543), + [sym_bang] = ACTIONS(4543), + [sym__as_custom] = ACTIONS(4541), + [sym__as_quest_custom] = ACTIONS(4541), + [sym__as_bang_custom] = ACTIONS(4541), + }, + [1331] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4551), + [aux_sym_simple_identifier_token2] = ACTIONS(4553), + [aux_sym_simple_identifier_token3] = ACTIONS(4553), + [aux_sym_simple_identifier_token4] = ACTIONS(4553), + [anon_sym_nil] = ACTIONS(4551), + [sym_real_literal] = ACTIONS(4553), + [sym_integer_literal] = ACTIONS(4551), + [sym_hex_literal] = ACTIONS(4553), + [sym_oct_literal] = ACTIONS(4553), + [sym_bin_literal] = ACTIONS(4553), + [anon_sym_true] = ACTIONS(4551), + [anon_sym_false] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_BSLASH] = ACTIONS(4551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4553), + [anon_sym_RPAREN] = ACTIONS(4555), + [anon_sym_COMMA] = ACTIONS(4555), + [anon_sym_COLON] = ACTIONS(4555), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_RBRACK] = ACTIONS(4555), + [anon_sym_QMARK] = ACTIONS(4557), + [sym__immediate_quest] = ACTIONS(4557), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_async] = ACTIONS(4551), + [anon_sym_POUNDselector] = ACTIONS(4553), + [aux_sym_custom_operator_token1] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [sym__await_operator] = ACTIONS(4551), + [anon_sym_POUNDfile] = ACTIONS(4551), + [anon_sym_POUNDfileID] = ACTIONS(4553), + [anon_sym_POUNDfilePath] = ACTIONS(4553), + [anon_sym_POUNDline] = ACTIONS(4553), + [anon_sym_POUNDcolumn] = ACTIONS(4553), + [anon_sym_POUNDfunction] = ACTIONS(4553), + [anon_sym_POUNDdsohandle] = ACTIONS(4553), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4553), + [anon_sym_POUNDfileLiteral] = ACTIONS(4553), + [anon_sym_POUNDimageLiteral] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_self] = ACTIONS(4551), + [anon_sym_super] = ACTIONS(4551), + [anon_sym_POUNDkeyPath] = ACTIONS(4553), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_try_BANG] = ACTIONS(4553), + [anon_sym_try_QMARK] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_LT_LT] = ACTIONS(4557), + [anon_sym_GT_GT] = ACTIONS(4557), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4553), + [sym_raw_str_end_part] = ACTIONS(4553), + [sym__dot_custom] = ACTIONS(4553), + [sym__three_dot_operator_custom] = ACTIONS(4553), + [sym__open_ended_range_operator_custom] = ACTIONS(4553), + [sym__conjunction_operator_custom] = ACTIONS(4555), + [sym__disjunction_operator_custom] = ACTIONS(4555), + [sym__nil_coalescing_operator_custom] = ACTIONS(4555), + [sym__eq_eq_custom] = ACTIONS(4553), + [sym__plus_then_ws] = ACTIONS(4553), + [sym__minus_then_ws] = ACTIONS(4553), + [sym_bang] = ACTIONS(4553), + [sym__as_custom] = ACTIONS(4555), + [sym__as_quest_custom] = ACTIONS(4555), + [sym__as_bang_custom] = ACTIONS(4555), + }, + [1332] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4551), + [aux_sym_simple_identifier_token2] = ACTIONS(4553), + [aux_sym_simple_identifier_token3] = ACTIONS(4553), + [aux_sym_simple_identifier_token4] = ACTIONS(4553), + [anon_sym_nil] = ACTIONS(4551), + [sym_real_literal] = ACTIONS(4553), + [sym_integer_literal] = ACTIONS(4551), + [sym_hex_literal] = ACTIONS(4553), + [sym_oct_literal] = ACTIONS(4553), + [sym_bin_literal] = ACTIONS(4553), + [anon_sym_true] = ACTIONS(4551), + [anon_sym_false] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_BSLASH] = ACTIONS(4551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4553), + [anon_sym_RPAREN] = ACTIONS(4559), + [anon_sym_COMMA] = ACTIONS(4559), + [anon_sym_COLON] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_RBRACK] = ACTIONS(4559), + [anon_sym_QMARK] = ACTIONS(4561), + [sym__immediate_quest] = ACTIONS(4561), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_async] = ACTIONS(4551), + [anon_sym_POUNDselector] = ACTIONS(4553), + [aux_sym_custom_operator_token1] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [sym__await_operator] = ACTIONS(4551), + [anon_sym_POUNDfile] = ACTIONS(4551), + [anon_sym_POUNDfileID] = ACTIONS(4553), + [anon_sym_POUNDfilePath] = ACTIONS(4553), + [anon_sym_POUNDline] = ACTIONS(4553), + [anon_sym_POUNDcolumn] = ACTIONS(4553), + [anon_sym_POUNDfunction] = ACTIONS(4553), + [anon_sym_POUNDdsohandle] = ACTIONS(4553), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4553), + [anon_sym_POUNDfileLiteral] = ACTIONS(4553), + [anon_sym_POUNDimageLiteral] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_self] = ACTIONS(4551), + [anon_sym_super] = ACTIONS(4551), + [anon_sym_POUNDkeyPath] = ACTIONS(4553), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_try_BANG] = ACTIONS(4553), + [anon_sym_try_QMARK] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4561), + [anon_sym_CARET] = ACTIONS(4561), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4553), + [sym_raw_str_end_part] = ACTIONS(4553), + [sym__dot_custom] = ACTIONS(4553), + [sym__three_dot_operator_custom] = ACTIONS(4553), + [sym__open_ended_range_operator_custom] = ACTIONS(4553), + [sym__conjunction_operator_custom] = ACTIONS(4559), + [sym__disjunction_operator_custom] = ACTIONS(4559), + [sym__nil_coalescing_operator_custom] = ACTIONS(4559), + [sym__eq_eq_custom] = ACTIONS(4553), + [sym__plus_then_ws] = ACTIONS(4553), + [sym__minus_then_ws] = ACTIONS(4553), + [sym_bang] = ACTIONS(4553), + [sym__as_custom] = ACTIONS(4559), + [sym__as_quest_custom] = ACTIONS(4559), + [sym__as_bang_custom] = ACTIONS(4559), + }, + [1333] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4523), + [aux_sym_simple_identifier_token2] = ACTIONS(4525), + [aux_sym_simple_identifier_token3] = ACTIONS(4525), + [aux_sym_simple_identifier_token4] = ACTIONS(4525), + [anon_sym_nil] = ACTIONS(4523), + [sym_real_literal] = ACTIONS(4525), + [sym_integer_literal] = ACTIONS(4523), + [sym_hex_literal] = ACTIONS(4525), + [sym_oct_literal] = ACTIONS(4525), + [sym_bin_literal] = ACTIONS(4525), + [anon_sym_true] = ACTIONS(4523), + [anon_sym_false] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_BSLASH] = ACTIONS(4523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4525), + [anon_sym_RPAREN] = ACTIONS(4525), + [anon_sym_COMMA] = ACTIONS(4525), + [anon_sym_COLON] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_RBRACK] = ACTIONS(4525), + [anon_sym_QMARK] = ACTIONS(4523), + [sym__immediate_quest] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_async] = ACTIONS(4523), + [anon_sym_POUNDselector] = ACTIONS(4525), + [aux_sym_custom_operator_token1] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4523), + [anon_sym_GT] = ACTIONS(4523), + [sym__await_operator] = ACTIONS(4523), + [anon_sym_POUNDfile] = ACTIONS(4523), + [anon_sym_POUNDfileID] = ACTIONS(4525), + [anon_sym_POUNDfilePath] = ACTIONS(4525), + [anon_sym_POUNDline] = ACTIONS(4525), + [anon_sym_POUNDcolumn] = ACTIONS(4525), + [anon_sym_POUNDfunction] = ACTIONS(4525), + [anon_sym_POUNDdsohandle] = ACTIONS(4525), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4525), + [anon_sym_POUNDfileLiteral] = ACTIONS(4525), + [anon_sym_POUNDimageLiteral] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_self] = ACTIONS(4523), + [anon_sym_super] = ACTIONS(4523), + [anon_sym_POUNDkeyPath] = ACTIONS(4525), + [anon_sym_try] = ACTIONS(4523), + [anon_sym_try_BANG] = ACTIONS(4525), + [anon_sym_try_QMARK] = ACTIONS(4525), + [anon_sym_BANG_EQ] = ACTIONS(4523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4523), + [anon_sym_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_EQ] = ACTIONS(4523), + [anon_sym_is] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_PLUS_PLUS] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_CARET] = ACTIONS(4523), + [anon_sym_LT_LT] = ACTIONS(4523), + [anon_sym_GT_GT] = ACTIONS(4523), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4525), + [sym_raw_str_end_part] = ACTIONS(4525), + [sym__dot_custom] = ACTIONS(4525), + [sym__three_dot_operator_custom] = ACTIONS(4525), + [sym__open_ended_range_operator_custom] = ACTIONS(4525), + [sym__conjunction_operator_custom] = ACTIONS(4525), + [sym__disjunction_operator_custom] = ACTIONS(4525), + [sym__nil_coalescing_operator_custom] = ACTIONS(4525), + [sym__eq_eq_custom] = ACTIONS(4525), + [sym__plus_then_ws] = ACTIONS(4525), + [sym__minus_then_ws] = ACTIONS(4525), + [sym_bang] = ACTIONS(4525), + [sym__as_custom] = ACTIONS(4525), + [sym__as_quest_custom] = ACTIONS(4525), + [sym__as_bang_custom] = ACTIONS(4525), + }, + [1334] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4527), + [aux_sym_simple_identifier_token2] = ACTIONS(4529), + [aux_sym_simple_identifier_token3] = ACTIONS(4529), + [aux_sym_simple_identifier_token4] = ACTIONS(4529), + [anon_sym_nil] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_oct_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_BSLASH] = ACTIONS(4527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_QMARK] = ACTIONS(4536), + [sym__immediate_quest] = ACTIONS(4536), + [anon_sym_AMP] = ACTIONS(4538), + [anon_sym_async] = ACTIONS(4527), + [anon_sym_POUNDselector] = ACTIONS(4529), + [aux_sym_custom_operator_token1] = ACTIONS(4538), + [anon_sym_LT] = ACTIONS(4538), + [anon_sym_GT] = ACTIONS(4538), + [sym__await_operator] = ACTIONS(4527), + [anon_sym_POUNDfile] = ACTIONS(4527), + [anon_sym_POUNDfileID] = ACTIONS(4529), + [anon_sym_POUNDfilePath] = ACTIONS(4529), + [anon_sym_POUNDline] = ACTIONS(4529), + [anon_sym_POUNDcolumn] = ACTIONS(4529), + [anon_sym_POUNDfunction] = ACTIONS(4529), + [anon_sym_POUNDdsohandle] = ACTIONS(4529), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4529), + [anon_sym_POUNDfileLiteral] = ACTIONS(4529), + [anon_sym_POUNDimageLiteral] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_self] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_POUNDkeyPath] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_try_BANG] = ACTIONS(4529), + [anon_sym_try_QMARK] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4538), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4538), + [anon_sym_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_EQ] = ACTIONS(4538), + [anon_sym_is] = ACTIONS(4536), + [anon_sym_PLUS] = ACTIONS(4538), + [anon_sym_DASH] = ACTIONS(4538), + [anon_sym_STAR] = ACTIONS(4538), + [anon_sym_SLASH] = ACTIONS(4538), + [anon_sym_PERCENT] = ACTIONS(4538), + [anon_sym_PLUS_PLUS] = ACTIONS(4538), + [anon_sym_DASH_DASH] = ACTIONS(4538), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym_LT_LT] = ACTIONS(4536), + [anon_sym_GT_GT] = ACTIONS(4536), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4529), + [sym_raw_str_end_part] = ACTIONS(4529), + [sym__semi] = ACTIONS(4531), + [sym__dot_custom] = ACTIONS(4533), + [sym__three_dot_operator_custom] = ACTIONS(4533), + [sym__open_ended_range_operator_custom] = ACTIONS(4533), + [sym__conjunction_operator_custom] = ACTIONS(4531), + [sym__disjunction_operator_custom] = ACTIONS(4531), + [sym__nil_coalescing_operator_custom] = ACTIONS(4531), + [sym__eq_eq_custom] = ACTIONS(4533), + [sym__plus_then_ws] = ACTIONS(4533), + [sym__minus_then_ws] = ACTIONS(4533), + [sym_bang] = ACTIONS(4533), + [sym__as_custom] = ACTIONS(4531), + [sym__as_quest_custom] = ACTIONS(4531), + [sym__as_bang_custom] = ACTIONS(4531), + }, + [1335] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4527), + [aux_sym_simple_identifier_token2] = ACTIONS(4529), + [aux_sym_simple_identifier_token3] = ACTIONS(4529), + [aux_sym_simple_identifier_token4] = ACTIONS(4529), + [anon_sym_nil] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_oct_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_BSLASH] = ACTIONS(4527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_QMARK] = ACTIONS(4536), + [sym__immediate_quest] = ACTIONS(4536), + [anon_sym_AMP] = ACTIONS(4538), + [anon_sym_async] = ACTIONS(4527), + [anon_sym_POUNDselector] = ACTIONS(4529), + [aux_sym_custom_operator_token1] = ACTIONS(4538), + [anon_sym_LT] = ACTIONS(4538), + [anon_sym_GT] = ACTIONS(4538), + [sym__await_operator] = ACTIONS(4527), + [anon_sym_POUNDfile] = ACTIONS(4527), + [anon_sym_POUNDfileID] = ACTIONS(4529), + [anon_sym_POUNDfilePath] = ACTIONS(4529), + [anon_sym_POUNDline] = ACTIONS(4529), + [anon_sym_POUNDcolumn] = ACTIONS(4529), + [anon_sym_POUNDfunction] = ACTIONS(4529), + [anon_sym_POUNDdsohandle] = ACTIONS(4529), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4529), + [anon_sym_POUNDfileLiteral] = ACTIONS(4529), + [anon_sym_POUNDimageLiteral] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_self] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_POUNDkeyPath] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_try_BANG] = ACTIONS(4529), + [anon_sym_try_QMARK] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4538), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4538), + [anon_sym_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_EQ] = ACTIONS(4538), + [anon_sym_is] = ACTIONS(4536), + [anon_sym_PLUS] = ACTIONS(4538), + [anon_sym_DASH] = ACTIONS(4538), + [anon_sym_STAR] = ACTIONS(4538), + [anon_sym_SLASH] = ACTIONS(4538), + [anon_sym_PERCENT] = ACTIONS(4538), + [anon_sym_PLUS_PLUS] = ACTIONS(4538), + [anon_sym_DASH_DASH] = ACTIONS(4538), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym_LT_LT] = ACTIONS(4536), + [anon_sym_GT_GT] = ACTIONS(4536), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4531), + [sym_raw_str_part] = ACTIONS(4529), + [sym_raw_str_end_part] = ACTIONS(4529), + [sym__semi] = ACTIONS(4531), + [sym__dot_custom] = ACTIONS(4533), + [sym__three_dot_operator_custom] = ACTIONS(4533), + [sym__open_ended_range_operator_custom] = ACTIONS(4533), + [sym__conjunction_operator_custom] = ACTIONS(4531), + [sym__disjunction_operator_custom] = ACTIONS(4531), + [sym__nil_coalescing_operator_custom] = ACTIONS(4531), + [sym__eq_eq_custom] = ACTIONS(4533), + [sym__plus_then_ws] = ACTIONS(4533), + [sym__minus_then_ws] = ACTIONS(4533), + [sym_bang] = ACTIONS(4533), + [sym__as_custom] = ACTIONS(4531), + [sym__as_quest_custom] = ACTIONS(4531), + [sym__as_bang_custom] = ACTIONS(4531), + }, + [1336] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4523), + [aux_sym_simple_identifier_token2] = ACTIONS(4525), + [aux_sym_simple_identifier_token3] = ACTIONS(4525), + [aux_sym_simple_identifier_token4] = ACTIONS(4525), + [anon_sym_nil] = ACTIONS(4523), + [sym_real_literal] = ACTIONS(4525), + [sym_integer_literal] = ACTIONS(4523), + [sym_hex_literal] = ACTIONS(4525), + [sym_oct_literal] = ACTIONS(4525), + [sym_bin_literal] = ACTIONS(4525), + [anon_sym_true] = ACTIONS(4523), + [anon_sym_false] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_BSLASH] = ACTIONS(4523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4525), + [anon_sym_COMMA] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_QMARK] = ACTIONS(4523), + [sym__immediate_quest] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_async] = ACTIONS(4523), + [anon_sym_POUNDselector] = ACTIONS(4525), + [aux_sym_custom_operator_token1] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4523), + [anon_sym_GT] = ACTIONS(4523), + [sym__await_operator] = ACTIONS(4523), + [anon_sym_POUNDfile] = ACTIONS(4523), + [anon_sym_POUNDfileID] = ACTIONS(4525), + [anon_sym_POUNDfilePath] = ACTIONS(4525), + [anon_sym_POUNDline] = ACTIONS(4525), + [anon_sym_POUNDcolumn] = ACTIONS(4525), + [anon_sym_POUNDfunction] = ACTIONS(4525), + [anon_sym_POUNDdsohandle] = ACTIONS(4525), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4525), + [anon_sym_POUNDfileLiteral] = ACTIONS(4525), + [anon_sym_POUNDimageLiteral] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_RBRACE] = ACTIONS(4525), + [anon_sym_self] = ACTIONS(4523), + [anon_sym_super] = ACTIONS(4523), + [anon_sym_POUNDkeyPath] = ACTIONS(4525), + [anon_sym_try] = ACTIONS(4523), + [anon_sym_try_BANG] = ACTIONS(4525), + [anon_sym_try_QMARK] = ACTIONS(4525), + [anon_sym_BANG_EQ] = ACTIONS(4523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4523), + [anon_sym_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_EQ] = ACTIONS(4523), + [anon_sym_is] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_PLUS_PLUS] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_CARET] = ACTIONS(4523), + [anon_sym_LT_LT] = ACTIONS(4523), + [anon_sym_GT_GT] = ACTIONS(4523), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4525), + [sym_raw_str_end_part] = ACTIONS(4525), + [sym__semi] = ACTIONS(4525), + [sym__dot_custom] = ACTIONS(4525), + [sym__three_dot_operator_custom] = ACTIONS(4525), + [sym__open_ended_range_operator_custom] = ACTIONS(4525), + [sym__conjunction_operator_custom] = ACTIONS(4525), + [sym__disjunction_operator_custom] = ACTIONS(4525), + [sym__nil_coalescing_operator_custom] = ACTIONS(4525), + [sym__eq_eq_custom] = ACTIONS(4525), + [sym__plus_then_ws] = ACTIONS(4525), + [sym__minus_then_ws] = ACTIONS(4525), + [sym_bang] = ACTIONS(4525), + [sym__as_custom] = ACTIONS(4525), + [sym__as_quest_custom] = ACTIONS(4525), + [sym__as_bang_custom] = ACTIONS(4525), + }, + [1337] = { + [sym__type_level_declaration] = STATE(7236), + [sym_import_declaration] = STATE(7236), + [sym_property_declaration] = STATE(7236), + [sym__modifierless_property_declaration] = STATE(8777), + [sym_typealias_declaration] = STATE(7236), + [sym__modifierless_typealias_declaration] = STATE(8786), + [sym_function_declaration] = STATE(7236), + [sym__bodyless_function_declaration] = STATE(7562), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(7236), + [sym__modifierless_class_declaration] = STATE(8785), + [sym__class_member_declarations] = STATE(10415), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__async_modifier] = STATE(10212), + [sym_protocol_declaration] = STATE(7236), + [sym_deinit_declaration] = STATE(7236), + [sym_subscript_declaration] = STATE(7236), + [sym_operator_declaration] = STATE(7236), + [sym_precedence_group_declaration] = STATE(7236), + [sym_associatedtype_declaration] = STATE(7236), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4662), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5481), + [anon_sym_RBRACE] = ACTIONS(5483), + [anon_sym_import] = ACTIONS(5485), + [anon_sym_typealias] = ACTIONS(5487), + [anon_sym_struct] = ACTIONS(5489), + [anon_sym_class] = ACTIONS(5491), + [anon_sym_enum] = ACTIONS(5493), + [anon_sym_protocol] = ACTIONS(5495), + [anon_sym_let] = ACTIONS(5497), + [anon_sym_var] = ACTIONS(5497), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_extension] = ACTIONS(5499), + [anon_sym_indirect] = ACTIONS(5501), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5503), + [anon_sym_subscript] = ACTIONS(5505), + [anon_sym_prefix] = ACTIONS(5507), + [anon_sym_infix] = ACTIONS(5507), + [anon_sym_postfix] = ACTIONS(5507), + [anon_sym_precedencegroup] = ACTIONS(5509), + [anon_sym_associatedtype] = ACTIONS(5511), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [1338] = { + [sym_type_arguments] = STATE(2302), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4881), + [anon_sym_LPAREN] = ACTIONS(4883), + [anon_sym_LBRACK] = ACTIONS(4881), + [anon_sym_QMARK] = ACTIONS(4886), + [sym__immediate_quest] = ACTIONS(4886), + [anon_sym_AMP] = ACTIONS(4886), + [aux_sym_custom_operator_token1] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4888), + [anon_sym_GT] = ACTIONS(4886), + [anon_sym_LBRACE] = ACTIONS(4883), + [anon_sym_RBRACE] = ACTIONS(4881), + [anon_sym_case] = ACTIONS(4881), + [anon_sym_fallthrough] = ACTIONS(4881), + [anon_sym_PLUS_EQ] = ACTIONS(4891), + [anon_sym_DASH_EQ] = ACTIONS(4891), + [anon_sym_STAR_EQ] = ACTIONS(4891), + [anon_sym_SLASH_EQ] = ACTIONS(4891), + [anon_sym_PERCENT_EQ] = ACTIONS(4891), + [anon_sym_EQ] = ACTIONS(4891), + [anon_sym_BANG_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4886), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(4881), + [anon_sym_PLUS] = ACTIONS(4886), + [anon_sym_DASH] = ACTIONS(4886), + [anon_sym_STAR] = ACTIONS(4886), + [anon_sym_SLASH] = ACTIONS(4886), + [anon_sym_PERCENT] = ACTIONS(4886), + [anon_sym_PLUS_PLUS] = ACTIONS(4886), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_PIPE] = ACTIONS(4886), + [anon_sym_CARET] = ACTIONS(4886), + [anon_sym_LT_LT] = ACTIONS(4886), + [anon_sym_GT_GT] = ACTIONS(4886), + [anon_sym_class] = ACTIONS(4881), + [anon_sym_prefix] = ACTIONS(4881), + [anon_sym_infix] = ACTIONS(4881), + [anon_sym_postfix] = ACTIONS(4881), + [anon_sym_AT] = ACTIONS(4886), + [sym_property_behavior_modifier] = ACTIONS(4881), + [anon_sym_override] = ACTIONS(4881), + [anon_sym_convenience] = ACTIONS(4881), + [anon_sym_required] = ACTIONS(4881), + [anon_sym_public] = ACTIONS(4881), + [anon_sym_private] = ACTIONS(4881), + [anon_sym_internal] = ACTIONS(4881), + [anon_sym_fileprivate] = ACTIONS(4881), + [anon_sym_open] = ACTIONS(4881), + [anon_sym_mutating] = ACTIONS(4881), + [anon_sym_nonmutating] = ACTIONS(4881), + [anon_sym_static] = ACTIONS(4881), + [anon_sym_dynamic] = ACTIONS(4881), + [anon_sym_optional] = ACTIONS(4881), + [anon_sym_final] = ACTIONS(4881), + [anon_sym_inout] = ACTIONS(4881), + [anon_sym_ATescaping] = ACTIONS(4881), + [anon_sym_ATautoclosure] = ACTIONS(4881), + [anon_sym_weak] = ACTIONS(4881), + [anon_sym_unowned] = ACTIONS(4886), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4881), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4881), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4881), + [sym__dot_custom] = ACTIONS(4883), + [sym__three_dot_operator_custom] = ACTIONS(4881), + [sym__open_ended_range_operator_custom] = ACTIONS(4881), + [sym__conjunction_operator_custom] = ACTIONS(4881), + [sym__disjunction_operator_custom] = ACTIONS(4881), + [sym__nil_coalescing_operator_custom] = ACTIONS(4881), + [sym__eq_eq_custom] = ACTIONS(4881), + [sym__plus_then_ws] = ACTIONS(4881), + [sym__minus_then_ws] = ACTIONS(4881), + [sym_bang] = ACTIONS(4881), + [sym_default_keyword] = ACTIONS(4881), + [sym__as_custom] = ACTIONS(4881), + [sym__as_quest_custom] = ACTIONS(4881), + [sym__as_bang_custom] = ACTIONS(4881), + }, + [1339] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4563), + [aux_sym_simple_identifier_token2] = ACTIONS(4565), + [aux_sym_simple_identifier_token3] = ACTIONS(4565), + [aux_sym_simple_identifier_token4] = ACTIONS(4565), + [anon_sym_nil] = ACTIONS(4563), + [sym_real_literal] = ACTIONS(4565), + [sym_integer_literal] = ACTIONS(4563), + [sym_hex_literal] = ACTIONS(4565), + [sym_oct_literal] = ACTIONS(4565), + [sym_bin_literal] = ACTIONS(4565), + [anon_sym_true] = ACTIONS(4563), + [anon_sym_false] = ACTIONS(4563), + [anon_sym_DQUOTE] = ACTIONS(4563), + [anon_sym_BSLASH] = ACTIONS(4563), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_QMARK] = ACTIONS(4563), + [sym__immediate_quest] = ACTIONS(4563), + [anon_sym_AMP] = ACTIONS(4563), + [anon_sym_async] = ACTIONS(4563), + [anon_sym_POUNDselector] = ACTIONS(4565), + [aux_sym_custom_operator_token1] = ACTIONS(4563), + [anon_sym_LT] = ACTIONS(5513), + [anon_sym_GT] = ACTIONS(4563), + [sym__await_operator] = ACTIONS(4563), + [anon_sym_POUNDfile] = ACTIONS(4563), + [anon_sym_POUNDfileID] = ACTIONS(4565), + [anon_sym_POUNDfilePath] = ACTIONS(4565), + [anon_sym_POUNDline] = ACTIONS(4565), + [anon_sym_POUNDcolumn] = ACTIONS(4565), + [anon_sym_POUNDfunction] = ACTIONS(4565), + [anon_sym_POUNDdsohandle] = ACTIONS(4565), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4565), + [anon_sym_POUNDfileLiteral] = ACTIONS(4565), + [anon_sym_POUNDimageLiteral] = ACTIONS(4565), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_self] = ACTIONS(4563), + [anon_sym_super] = ACTIONS(4563), + [anon_sym_POUNDkeyPath] = ACTIONS(4565), + [anon_sym_try] = ACTIONS(4563), + [anon_sym_try_BANG] = ACTIONS(4565), + [anon_sym_try_QMARK] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4563), + [anon_sym_LT_EQ] = ACTIONS(4563), + [anon_sym_GT_EQ] = ACTIONS(4563), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_PLUS_PLUS] = ACTIONS(4563), + [anon_sym_DASH_DASH] = ACTIONS(4563), + [anon_sym_TILDE] = ACTIONS(4563), + [anon_sym_PIPE] = ACTIONS(4563), + [anon_sym_CARET] = ACTIONS(4563), + [anon_sym_LT_LT] = ACTIONS(4563), + [anon_sym_GT_GT] = ACTIONS(4563), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4565), + [sym_raw_str_part] = ACTIONS(4565), + [sym_raw_str_end_part] = ACTIONS(4565), + [sym__semi] = ACTIONS(4565), + [sym__dot_custom] = ACTIONS(4565), + [sym__three_dot_operator_custom] = ACTIONS(4565), + [sym__open_ended_range_operator_custom] = ACTIONS(4565), + [sym__conjunction_operator_custom] = ACTIONS(4565), + [sym__disjunction_operator_custom] = ACTIONS(4565), + [sym__nil_coalescing_operator_custom] = ACTIONS(4565), + [sym__eq_eq_custom] = ACTIONS(4565), + [sym__plus_then_ws] = ACTIONS(4565), + [sym__minus_then_ws] = ACTIONS(4565), + [sym_bang] = ACTIONS(4565), + [sym__as_custom] = ACTIONS(4565), + [sym__as_quest_custom] = ACTIONS(4565), + [sym__as_bang_custom] = ACTIONS(4565), + }, + [1340] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4523), + [aux_sym_simple_identifier_token2] = ACTIONS(4525), + [aux_sym_simple_identifier_token3] = ACTIONS(4525), + [aux_sym_simple_identifier_token4] = ACTIONS(4525), + [anon_sym_nil] = ACTIONS(4523), + [sym_real_literal] = ACTIONS(4525), + [sym_integer_literal] = ACTIONS(4523), + [sym_hex_literal] = ACTIONS(4525), + [sym_oct_literal] = ACTIONS(4525), + [sym_bin_literal] = ACTIONS(4525), + [anon_sym_true] = ACTIONS(4523), + [anon_sym_false] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_BSLASH] = ACTIONS(4523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4525), + [anon_sym_COMMA] = ACTIONS(4525), + [anon_sym_COLON] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_QMARK] = ACTIONS(4523), + [sym__immediate_quest] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_async] = ACTIONS(4523), + [anon_sym_POUNDselector] = ACTIONS(4525), + [aux_sym_custom_operator_token1] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4523), + [anon_sym_GT] = ACTIONS(4523), + [sym__await_operator] = ACTIONS(4523), + [anon_sym_POUNDfile] = ACTIONS(4523), + [anon_sym_POUNDfileID] = ACTIONS(4525), + [anon_sym_POUNDfilePath] = ACTIONS(4525), + [anon_sym_POUNDline] = ACTIONS(4525), + [anon_sym_POUNDcolumn] = ACTIONS(4525), + [anon_sym_POUNDfunction] = ACTIONS(4525), + [anon_sym_POUNDdsohandle] = ACTIONS(4525), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4525), + [anon_sym_POUNDfileLiteral] = ACTIONS(4525), + [anon_sym_POUNDimageLiteral] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_self] = ACTIONS(4523), + [anon_sym_super] = ACTIONS(4523), + [anon_sym_POUNDkeyPath] = ACTIONS(4525), + [anon_sym_try] = ACTIONS(4523), + [anon_sym_try_BANG] = ACTIONS(4525), + [anon_sym_try_QMARK] = ACTIONS(4525), + [anon_sym_BANG_EQ] = ACTIONS(4523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4523), + [anon_sym_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_EQ] = ACTIONS(4523), + [anon_sym_is] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_PLUS_PLUS] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_CARET] = ACTIONS(4523), + [anon_sym_LT_LT] = ACTIONS(4523), + [anon_sym_GT_GT] = ACTIONS(4523), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4525), + [sym_raw_str_end_part] = ACTIONS(4525), + [sym__dot_custom] = ACTIONS(4525), + [sym__three_dot_operator_custom] = ACTIONS(4525), + [sym__open_ended_range_operator_custom] = ACTIONS(4525), + [sym__conjunction_operator_custom] = ACTIONS(4525), + [sym__disjunction_operator_custom] = ACTIONS(4525), + [sym__nil_coalescing_operator_custom] = ACTIONS(4525), + [sym__eq_eq_custom] = ACTIONS(4525), + [sym__plus_then_ws] = ACTIONS(4525), + [sym__minus_then_ws] = ACTIONS(4525), + [sym_bang] = ACTIONS(4525), + [sym_where_keyword] = ACTIONS(4525), + [sym__as_custom] = ACTIONS(4525), + [sym__as_quest_custom] = ACTIONS(4525), + [sym__as_bang_custom] = ACTIONS(4525), + }, + [1341] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4563), + [aux_sym_simple_identifier_token2] = ACTIONS(4565), + [aux_sym_simple_identifier_token3] = ACTIONS(4565), + [aux_sym_simple_identifier_token4] = ACTIONS(4565), + [anon_sym_nil] = ACTIONS(4563), + [sym_real_literal] = ACTIONS(4565), + [sym_integer_literal] = ACTIONS(4563), + [sym_hex_literal] = ACTIONS(4565), + [sym_oct_literal] = ACTIONS(4565), + [sym_bin_literal] = ACTIONS(4565), + [anon_sym_true] = ACTIONS(4563), + [anon_sym_false] = ACTIONS(4563), + [anon_sym_DQUOTE] = ACTIONS(4563), + [anon_sym_BSLASH] = ACTIONS(4563), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_QMARK] = ACTIONS(4563), + [sym__immediate_quest] = ACTIONS(4563), + [anon_sym_AMP] = ACTIONS(4563), + [anon_sym_async] = ACTIONS(4563), + [anon_sym_POUNDselector] = ACTIONS(4565), + [aux_sym_custom_operator_token1] = ACTIONS(4563), + [anon_sym_LT] = ACTIONS(5516), + [anon_sym_GT] = ACTIONS(4563), + [sym__await_operator] = ACTIONS(4563), + [anon_sym_POUNDfile] = ACTIONS(4563), + [anon_sym_POUNDfileID] = ACTIONS(4565), + [anon_sym_POUNDfilePath] = ACTIONS(4565), + [anon_sym_POUNDline] = ACTIONS(4565), + [anon_sym_POUNDcolumn] = ACTIONS(4565), + [anon_sym_POUNDfunction] = ACTIONS(4565), + [anon_sym_POUNDdsohandle] = ACTIONS(4565), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4565), + [anon_sym_POUNDfileLiteral] = ACTIONS(4565), + [anon_sym_POUNDimageLiteral] = ACTIONS(4565), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_self] = ACTIONS(4563), + [anon_sym_super] = ACTIONS(4563), + [anon_sym_POUNDkeyPath] = ACTIONS(4565), + [anon_sym_try] = ACTIONS(4563), + [anon_sym_try_BANG] = ACTIONS(4565), + [anon_sym_try_QMARK] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4563), + [anon_sym_LT_EQ] = ACTIONS(4563), + [anon_sym_GT_EQ] = ACTIONS(4563), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_PLUS_PLUS] = ACTIONS(4563), + [anon_sym_DASH_DASH] = ACTIONS(4563), + [anon_sym_TILDE] = ACTIONS(4563), + [anon_sym_PIPE] = ACTIONS(4563), + [anon_sym_CARET] = ACTIONS(4563), + [anon_sym_LT_LT] = ACTIONS(4563), + [anon_sym_GT_GT] = ACTIONS(4563), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4565), + [sym_raw_str_end_part] = ACTIONS(4565), + [sym__dot_custom] = ACTIONS(4565), + [sym__three_dot_operator_custom] = ACTIONS(4565), + [sym__open_ended_range_operator_custom] = ACTIONS(4565), + [sym__conjunction_operator_custom] = ACTIONS(4565), + [sym__disjunction_operator_custom] = ACTIONS(4565), + [sym__nil_coalescing_operator_custom] = ACTIONS(4565), + [sym__eq_eq_custom] = ACTIONS(4565), + [sym__plus_then_ws] = ACTIONS(4565), + [sym__minus_then_ws] = ACTIONS(4565), + [sym_bang] = ACTIONS(4565), + [sym_where_keyword] = ACTIONS(4565), + [sym__as_custom] = ACTIONS(4565), + [sym__as_quest_custom] = ACTIONS(4565), + [sym__as_bang_custom] = ACTIONS(4565), + }, + [1342] = { + [sym__type_level_declaration] = STATE(7236), + [sym_import_declaration] = STATE(7236), + [sym_property_declaration] = STATE(7236), + [sym__modifierless_property_declaration] = STATE(8777), + [sym_typealias_declaration] = STATE(7236), + [sym__modifierless_typealias_declaration] = STATE(8786), + [sym_function_declaration] = STATE(7236), + [sym__bodyless_function_declaration] = STATE(7562), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(7236), + [sym__modifierless_class_declaration] = STATE(8785), + [sym__class_member_declarations] = STATE(10288), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__async_modifier] = STATE(10212), + [sym_protocol_declaration] = STATE(7236), + [sym_deinit_declaration] = STATE(7236), + [sym_subscript_declaration] = STATE(7236), + [sym_operator_declaration] = STATE(7236), + [sym_precedence_group_declaration] = STATE(7236), + [sym_associatedtype_declaration] = STATE(7236), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4662), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5481), + [anon_sym_RBRACE] = ACTIONS(5519), + [anon_sym_import] = ACTIONS(5485), + [anon_sym_typealias] = ACTIONS(5487), + [anon_sym_struct] = ACTIONS(5489), + [anon_sym_class] = ACTIONS(5491), + [anon_sym_enum] = ACTIONS(5493), + [anon_sym_protocol] = ACTIONS(5495), + [anon_sym_let] = ACTIONS(5497), + [anon_sym_var] = ACTIONS(5497), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_extension] = ACTIONS(5499), + [anon_sym_indirect] = ACTIONS(5501), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5503), + [anon_sym_subscript] = ACTIONS(5505), + [anon_sym_prefix] = ACTIONS(5507), + [anon_sym_infix] = ACTIONS(5507), + [anon_sym_postfix] = ACTIONS(5507), + [anon_sym_precedencegroup] = ACTIONS(5509), + [anon_sym_associatedtype] = ACTIONS(5511), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [1343] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4527), + [aux_sym_simple_identifier_token2] = ACTIONS(4529), + [aux_sym_simple_identifier_token3] = ACTIONS(4529), + [aux_sym_simple_identifier_token4] = ACTIONS(4529), + [anon_sym_nil] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_oct_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_BSLASH] = ACTIONS(4527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4541), + [anon_sym_LPAREN] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4543), + [anon_sym_QMARK] = ACTIONS(4546), + [sym__immediate_quest] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_async] = ACTIONS(4527), + [anon_sym_POUNDselector] = ACTIONS(4529), + [aux_sym_custom_operator_token1] = ACTIONS(4548), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [sym__await_operator] = ACTIONS(4527), + [anon_sym_POUNDfile] = ACTIONS(4527), + [anon_sym_POUNDfileID] = ACTIONS(4529), + [anon_sym_POUNDfilePath] = ACTIONS(4529), + [anon_sym_POUNDline] = ACTIONS(4529), + [anon_sym_POUNDcolumn] = ACTIONS(4529), + [anon_sym_POUNDfunction] = ACTIONS(4529), + [anon_sym_POUNDdsohandle] = ACTIONS(4529), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4529), + [anon_sym_POUNDfileLiteral] = ACTIONS(4529), + [anon_sym_POUNDimageLiteral] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4543), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_self] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_POUNDkeyPath] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_try_BANG] = ACTIONS(4529), + [anon_sym_try_QMARK] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4548), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4548), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4548), + [anon_sym_LT_EQ] = ACTIONS(4548), + [anon_sym_GT_EQ] = ACTIONS(4548), + [anon_sym_is] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_STAR] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4548), + [anon_sym_PERCENT] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4548), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4546), + [anon_sym_LT_LT] = ACTIONS(4546), + [anon_sym_GT_GT] = ACTIONS(4546), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4529), + [sym_raw_str_end_part] = ACTIONS(4529), + [sym__semi] = ACTIONS(4541), + [sym__dot_custom] = ACTIONS(4543), + [sym__three_dot_operator_custom] = ACTIONS(4543), + [sym__open_ended_range_operator_custom] = ACTIONS(4543), + [sym__conjunction_operator_custom] = ACTIONS(4541), + [sym__disjunction_operator_custom] = ACTIONS(4541), + [sym__nil_coalescing_operator_custom] = ACTIONS(4541), + [sym__eq_eq_custom] = ACTIONS(4543), + [sym__plus_then_ws] = ACTIONS(4543), + [sym__minus_then_ws] = ACTIONS(4543), + [sym_bang] = ACTIONS(4543), + [sym__as_custom] = ACTIONS(4541), + [sym__as_quest_custom] = ACTIONS(4541), + [sym__as_bang_custom] = ACTIONS(4541), + }, + [1344] = { + [sym__type_level_declaration] = STATE(7236), + [sym_import_declaration] = STATE(7236), + [sym_property_declaration] = STATE(7236), + [sym__modifierless_property_declaration] = STATE(8777), + [sym_typealias_declaration] = STATE(7236), + [sym__modifierless_typealias_declaration] = STATE(8786), + [sym_function_declaration] = STATE(7236), + [sym__bodyless_function_declaration] = STATE(7562), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(7236), + [sym__modifierless_class_declaration] = STATE(8785), + [sym__class_member_declarations] = STATE(10391), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__async_modifier] = STATE(10212), + [sym_protocol_declaration] = STATE(7236), + [sym_deinit_declaration] = STATE(7236), + [sym_subscript_declaration] = STATE(7236), + [sym_operator_declaration] = STATE(7236), + [sym_precedence_group_declaration] = STATE(7236), + [sym_associatedtype_declaration] = STATE(7236), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4662), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5481), + [anon_sym_RBRACE] = ACTIONS(5521), + [anon_sym_import] = ACTIONS(5485), + [anon_sym_typealias] = ACTIONS(5487), + [anon_sym_struct] = ACTIONS(5489), + [anon_sym_class] = ACTIONS(5491), + [anon_sym_enum] = ACTIONS(5493), + [anon_sym_protocol] = ACTIONS(5495), + [anon_sym_let] = ACTIONS(5497), + [anon_sym_var] = ACTIONS(5497), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_extension] = ACTIONS(5499), + [anon_sym_indirect] = ACTIONS(5501), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5503), + [anon_sym_subscript] = ACTIONS(5505), + [anon_sym_prefix] = ACTIONS(5507), + [anon_sym_infix] = ACTIONS(5507), + [anon_sym_postfix] = ACTIONS(5507), + [anon_sym_precedencegroup] = ACTIONS(5509), + [anon_sym_associatedtype] = ACTIONS(5511), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [1345] = { + [sym__type_level_declaration] = STATE(7236), + [sym_import_declaration] = STATE(7236), + [sym_property_declaration] = STATE(7236), + [sym__modifierless_property_declaration] = STATE(8777), + [sym_typealias_declaration] = STATE(7236), + [sym__modifierless_typealias_declaration] = STATE(8786), + [sym_function_declaration] = STATE(7236), + [sym__bodyless_function_declaration] = STATE(7562), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(7236), + [sym__modifierless_class_declaration] = STATE(8785), + [sym__class_member_declarations] = STATE(10310), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__async_modifier] = STATE(10212), + [sym_protocol_declaration] = STATE(7236), + [sym_deinit_declaration] = STATE(7236), + [sym_subscript_declaration] = STATE(7236), + [sym_operator_declaration] = STATE(7236), + [sym_precedence_group_declaration] = STATE(7236), + [sym_associatedtype_declaration] = STATE(7236), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4662), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5481), + [anon_sym_RBRACE] = ACTIONS(5523), + [anon_sym_import] = ACTIONS(5485), + [anon_sym_typealias] = ACTIONS(5487), + [anon_sym_struct] = ACTIONS(5489), + [anon_sym_class] = ACTIONS(5491), + [anon_sym_enum] = ACTIONS(5493), + [anon_sym_protocol] = ACTIONS(5495), + [anon_sym_let] = ACTIONS(5497), + [anon_sym_var] = ACTIONS(5497), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_extension] = ACTIONS(5499), + [anon_sym_indirect] = ACTIONS(5501), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5503), + [anon_sym_subscript] = ACTIONS(5505), + [anon_sym_prefix] = ACTIONS(5507), + [anon_sym_infix] = ACTIONS(5507), + [anon_sym_postfix] = ACTIONS(5507), + [anon_sym_precedencegroup] = ACTIONS(5509), + [anon_sym_associatedtype] = ACTIONS(5511), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [1346] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4551), + [aux_sym_simple_identifier_token2] = ACTIONS(4553), + [aux_sym_simple_identifier_token3] = ACTIONS(4553), + [aux_sym_simple_identifier_token4] = ACTIONS(4553), + [anon_sym_nil] = ACTIONS(4551), + [sym_real_literal] = ACTIONS(4553), + [sym_integer_literal] = ACTIONS(4551), + [sym_hex_literal] = ACTIONS(4553), + [sym_oct_literal] = ACTIONS(4553), + [sym_bin_literal] = ACTIONS(4553), + [anon_sym_true] = ACTIONS(4551), + [anon_sym_false] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_BSLASH] = ACTIONS(4551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4555), + [anon_sym_COLON] = ACTIONS(4555), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_QMARK] = ACTIONS(4557), + [sym__immediate_quest] = ACTIONS(4557), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_async] = ACTIONS(4551), + [anon_sym_POUNDselector] = ACTIONS(4553), + [aux_sym_custom_operator_token1] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [sym__await_operator] = ACTIONS(4551), + [anon_sym_POUNDfile] = ACTIONS(4551), + [anon_sym_POUNDfileID] = ACTIONS(4553), + [anon_sym_POUNDfilePath] = ACTIONS(4553), + [anon_sym_POUNDline] = ACTIONS(4553), + [anon_sym_POUNDcolumn] = ACTIONS(4553), + [anon_sym_POUNDfunction] = ACTIONS(4553), + [anon_sym_POUNDdsohandle] = ACTIONS(4553), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4553), + [anon_sym_POUNDfileLiteral] = ACTIONS(4553), + [anon_sym_POUNDimageLiteral] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_self] = ACTIONS(4551), + [anon_sym_super] = ACTIONS(4551), + [anon_sym_POUNDkeyPath] = ACTIONS(4553), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_try_BANG] = ACTIONS(4553), + [anon_sym_try_QMARK] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_LT_LT] = ACTIONS(4557), + [anon_sym_GT_GT] = ACTIONS(4557), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4553), + [sym_raw_str_end_part] = ACTIONS(4553), + [sym__dot_custom] = ACTIONS(4553), + [sym__three_dot_operator_custom] = ACTIONS(4553), + [sym__open_ended_range_operator_custom] = ACTIONS(4553), + [sym__conjunction_operator_custom] = ACTIONS(4555), + [sym__disjunction_operator_custom] = ACTIONS(4555), + [sym__nil_coalescing_operator_custom] = ACTIONS(4555), + [sym__eq_eq_custom] = ACTIONS(4553), + [sym__plus_then_ws] = ACTIONS(4553), + [sym__minus_then_ws] = ACTIONS(4553), + [sym_bang] = ACTIONS(4553), + [sym_where_keyword] = ACTIONS(4555), + [sym__as_custom] = ACTIONS(4555), + [sym__as_quest_custom] = ACTIONS(4555), + [sym__as_bang_custom] = ACTIONS(4555), + }, + [1347] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4527), + [aux_sym_simple_identifier_token2] = ACTIONS(4529), + [aux_sym_simple_identifier_token3] = ACTIONS(4529), + [aux_sym_simple_identifier_token4] = ACTIONS(4529), + [anon_sym_nil] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_oct_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_BSLASH] = ACTIONS(4527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4541), + [anon_sym_COLON] = ACTIONS(4541), + [anon_sym_LPAREN] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4543), + [anon_sym_QMARK] = ACTIONS(4546), + [sym__immediate_quest] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_async] = ACTIONS(4527), + [anon_sym_POUNDselector] = ACTIONS(4529), + [aux_sym_custom_operator_token1] = ACTIONS(4548), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [sym__await_operator] = ACTIONS(4527), + [anon_sym_POUNDfile] = ACTIONS(4527), + [anon_sym_POUNDfileID] = ACTIONS(4529), + [anon_sym_POUNDfilePath] = ACTIONS(4529), + [anon_sym_POUNDline] = ACTIONS(4529), + [anon_sym_POUNDcolumn] = ACTIONS(4529), + [anon_sym_POUNDfunction] = ACTIONS(4529), + [anon_sym_POUNDdsohandle] = ACTIONS(4529), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4529), + [anon_sym_POUNDfileLiteral] = ACTIONS(4529), + [anon_sym_POUNDimageLiteral] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4543), + [anon_sym_self] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_POUNDkeyPath] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_try_BANG] = ACTIONS(4529), + [anon_sym_try_QMARK] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4548), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4548), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4548), + [anon_sym_LT_EQ] = ACTIONS(4548), + [anon_sym_GT_EQ] = ACTIONS(4548), + [anon_sym_is] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_STAR] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4548), + [anon_sym_PERCENT] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4548), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4546), + [anon_sym_LT_LT] = ACTIONS(4546), + [anon_sym_GT_GT] = ACTIONS(4546), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4529), + [sym_raw_str_end_part] = ACTIONS(4529), + [sym__dot_custom] = ACTIONS(4543), + [sym__three_dot_operator_custom] = ACTIONS(4543), + [sym__open_ended_range_operator_custom] = ACTIONS(4543), + [sym__conjunction_operator_custom] = ACTIONS(4541), + [sym__disjunction_operator_custom] = ACTIONS(4541), + [sym__nil_coalescing_operator_custom] = ACTIONS(4541), + [sym__eq_eq_custom] = ACTIONS(4543), + [sym__plus_then_ws] = ACTIONS(4543), + [sym__minus_then_ws] = ACTIONS(4543), + [sym_bang] = ACTIONS(4543), + [sym_where_keyword] = ACTIONS(4541), + [sym__as_custom] = ACTIONS(4541), + [sym__as_quest_custom] = ACTIONS(4541), + [sym__as_bang_custom] = ACTIONS(4541), + }, + [1348] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4551), + [aux_sym_simple_identifier_token2] = ACTIONS(4553), + [aux_sym_simple_identifier_token3] = ACTIONS(4553), + [aux_sym_simple_identifier_token4] = ACTIONS(4553), + [anon_sym_nil] = ACTIONS(4551), + [sym_real_literal] = ACTIONS(4553), + [sym_integer_literal] = ACTIONS(4551), + [sym_hex_literal] = ACTIONS(4553), + [sym_oct_literal] = ACTIONS(4553), + [sym_bin_literal] = ACTIONS(4553), + [anon_sym_true] = ACTIONS(4551), + [anon_sym_false] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_BSLASH] = ACTIONS(4551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_QMARK] = ACTIONS(4561), + [sym__immediate_quest] = ACTIONS(4561), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_async] = ACTIONS(4551), + [anon_sym_POUNDselector] = ACTIONS(4553), + [aux_sym_custom_operator_token1] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [sym__await_operator] = ACTIONS(4551), + [anon_sym_POUNDfile] = ACTIONS(4551), + [anon_sym_POUNDfileID] = ACTIONS(4553), + [anon_sym_POUNDfilePath] = ACTIONS(4553), + [anon_sym_POUNDline] = ACTIONS(4553), + [anon_sym_POUNDcolumn] = ACTIONS(4553), + [anon_sym_POUNDfunction] = ACTIONS(4553), + [anon_sym_POUNDdsohandle] = ACTIONS(4553), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4553), + [anon_sym_POUNDfileLiteral] = ACTIONS(4553), + [anon_sym_POUNDimageLiteral] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4559), + [anon_sym_self] = ACTIONS(4551), + [anon_sym_super] = ACTIONS(4551), + [anon_sym_POUNDkeyPath] = ACTIONS(4553), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_try_BANG] = ACTIONS(4553), + [anon_sym_try_QMARK] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4561), + [anon_sym_CARET] = ACTIONS(4561), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4553), + [sym_raw_str_end_part] = ACTIONS(4553), + [sym__semi] = ACTIONS(4559), + [sym__dot_custom] = ACTIONS(4553), + [sym__three_dot_operator_custom] = ACTIONS(4553), + [sym__open_ended_range_operator_custom] = ACTIONS(4553), + [sym__conjunction_operator_custom] = ACTIONS(4559), + [sym__disjunction_operator_custom] = ACTIONS(4559), + [sym__nil_coalescing_operator_custom] = ACTIONS(4559), + [sym__eq_eq_custom] = ACTIONS(4553), + [sym__plus_then_ws] = ACTIONS(4553), + [sym__minus_then_ws] = ACTIONS(4553), + [sym_bang] = ACTIONS(4553), + [sym__as_custom] = ACTIONS(4559), + [sym__as_quest_custom] = ACTIONS(4559), + [sym__as_bang_custom] = ACTIONS(4559), + }, + [1349] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4551), + [aux_sym_simple_identifier_token2] = ACTIONS(4553), + [aux_sym_simple_identifier_token3] = ACTIONS(4553), + [aux_sym_simple_identifier_token4] = ACTIONS(4553), + [anon_sym_nil] = ACTIONS(4551), + [sym_real_literal] = ACTIONS(4553), + [sym_integer_literal] = ACTIONS(4551), + [sym_hex_literal] = ACTIONS(4553), + [sym_oct_literal] = ACTIONS(4553), + [sym_bin_literal] = ACTIONS(4553), + [anon_sym_true] = ACTIONS(4551), + [anon_sym_false] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_BSLASH] = ACTIONS(4551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4559), + [anon_sym_COLON] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_QMARK] = ACTIONS(4561), + [sym__immediate_quest] = ACTIONS(4561), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_async] = ACTIONS(4551), + [anon_sym_POUNDselector] = ACTIONS(4553), + [aux_sym_custom_operator_token1] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [sym__await_operator] = ACTIONS(4551), + [anon_sym_POUNDfile] = ACTIONS(4551), + [anon_sym_POUNDfileID] = ACTIONS(4553), + [anon_sym_POUNDfilePath] = ACTIONS(4553), + [anon_sym_POUNDline] = ACTIONS(4553), + [anon_sym_POUNDcolumn] = ACTIONS(4553), + [anon_sym_POUNDfunction] = ACTIONS(4553), + [anon_sym_POUNDdsohandle] = ACTIONS(4553), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4553), + [anon_sym_POUNDfileLiteral] = ACTIONS(4553), + [anon_sym_POUNDimageLiteral] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_self] = ACTIONS(4551), + [anon_sym_super] = ACTIONS(4551), + [anon_sym_POUNDkeyPath] = ACTIONS(4553), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_try_BANG] = ACTIONS(4553), + [anon_sym_try_QMARK] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4561), + [anon_sym_CARET] = ACTIONS(4561), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4553), + [sym_raw_str_end_part] = ACTIONS(4553), + [sym__dot_custom] = ACTIONS(4553), + [sym__three_dot_operator_custom] = ACTIONS(4553), + [sym__open_ended_range_operator_custom] = ACTIONS(4553), + [sym__conjunction_operator_custom] = ACTIONS(4559), + [sym__disjunction_operator_custom] = ACTIONS(4559), + [sym__nil_coalescing_operator_custom] = ACTIONS(4559), + [sym__eq_eq_custom] = ACTIONS(4553), + [sym__plus_then_ws] = ACTIONS(4553), + [sym__minus_then_ws] = ACTIONS(4553), + [sym_bang] = ACTIONS(4553), + [sym_where_keyword] = ACTIONS(4559), + [sym__as_custom] = ACTIONS(4559), + [sym__as_quest_custom] = ACTIONS(4559), + [sym__as_bang_custom] = ACTIONS(4559), + }, + [1350] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4527), + [aux_sym_simple_identifier_token2] = ACTIONS(4529), + [aux_sym_simple_identifier_token3] = ACTIONS(4529), + [aux_sym_simple_identifier_token4] = ACTIONS(4529), + [anon_sym_nil] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_oct_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_BSLASH] = ACTIONS(4527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_QMARK] = ACTIONS(4536), + [sym__immediate_quest] = ACTIONS(4536), + [anon_sym_AMP] = ACTIONS(4538), + [anon_sym_async] = ACTIONS(4527), + [anon_sym_POUNDselector] = ACTIONS(4529), + [aux_sym_custom_operator_token1] = ACTIONS(4538), + [anon_sym_LT] = ACTIONS(4538), + [anon_sym_GT] = ACTIONS(4538), + [sym__await_operator] = ACTIONS(4527), + [anon_sym_POUNDfile] = ACTIONS(4527), + [anon_sym_POUNDfileID] = ACTIONS(4529), + [anon_sym_POUNDfilePath] = ACTIONS(4529), + [anon_sym_POUNDline] = ACTIONS(4529), + [anon_sym_POUNDcolumn] = ACTIONS(4529), + [anon_sym_POUNDfunction] = ACTIONS(4529), + [anon_sym_POUNDdsohandle] = ACTIONS(4529), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4529), + [anon_sym_POUNDfileLiteral] = ACTIONS(4529), + [anon_sym_POUNDimageLiteral] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_self] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_POUNDkeyPath] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_try_BANG] = ACTIONS(4529), + [anon_sym_try_QMARK] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4538), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4538), + [anon_sym_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_EQ] = ACTIONS(4538), + [anon_sym_is] = ACTIONS(4536), + [anon_sym_PLUS] = ACTIONS(4538), + [anon_sym_DASH] = ACTIONS(4538), + [anon_sym_STAR] = ACTIONS(4538), + [anon_sym_SLASH] = ACTIONS(4538), + [anon_sym_PERCENT] = ACTIONS(4538), + [anon_sym_PLUS_PLUS] = ACTIONS(4538), + [anon_sym_DASH_DASH] = ACTIONS(4538), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym_LT_LT] = ACTIONS(4536), + [anon_sym_GT_GT] = ACTIONS(4536), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4529), + [sym_raw_str_end_part] = ACTIONS(4529), + [sym__dot_custom] = ACTIONS(4533), + [sym__three_dot_operator_custom] = ACTIONS(4533), + [sym__open_ended_range_operator_custom] = ACTIONS(4533), + [sym__conjunction_operator_custom] = ACTIONS(4531), + [sym__disjunction_operator_custom] = ACTIONS(4531), + [sym__nil_coalescing_operator_custom] = ACTIONS(4531), + [sym__eq_eq_custom] = ACTIONS(4533), + [sym__plus_then_ws] = ACTIONS(4533), + [sym__minus_then_ws] = ACTIONS(4533), + [sym_bang] = ACTIONS(4533), + [sym_where_keyword] = ACTIONS(4531), + [sym__as_custom] = ACTIONS(4531), + [sym__as_quest_custom] = ACTIONS(4531), + [sym__as_bang_custom] = ACTIONS(4531), + }, + [1351] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4570), + [aux_sym_simple_identifier_token2] = ACTIONS(4572), + [aux_sym_simple_identifier_token3] = ACTIONS(4572), + [aux_sym_simple_identifier_token4] = ACTIONS(4572), + [anon_sym_nil] = ACTIONS(4570), + [sym_real_literal] = ACTIONS(4572), + [sym_integer_literal] = ACTIONS(4570), + [sym_hex_literal] = ACTIONS(4572), + [sym_oct_literal] = ACTIONS(4572), + [sym_bin_literal] = ACTIONS(4572), + [anon_sym_true] = ACTIONS(4570), + [anon_sym_false] = ACTIONS(4570), + [anon_sym_DQUOTE] = ACTIONS(4570), + [anon_sym_BSLASH] = ACTIONS(4570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4570), + [sym__immediate_quest] = ACTIONS(4570), + [anon_sym_AMP] = ACTIONS(4570), + [anon_sym_async] = ACTIONS(4570), + [anon_sym_POUNDselector] = ACTIONS(4572), + [aux_sym_custom_operator_token1] = ACTIONS(4570), + [anon_sym_LT] = ACTIONS(4570), + [anon_sym_GT] = ACTIONS(4570), + [sym__await_operator] = ACTIONS(4570), + [anon_sym_POUNDfile] = ACTIONS(4570), + [anon_sym_POUNDfileID] = ACTIONS(4572), + [anon_sym_POUNDfilePath] = ACTIONS(4572), + [anon_sym_POUNDline] = ACTIONS(4572), + [anon_sym_POUNDcolumn] = ACTIONS(4572), + [anon_sym_POUNDfunction] = ACTIONS(4572), + [anon_sym_POUNDdsohandle] = ACTIONS(4572), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4572), + [anon_sym_POUNDfileLiteral] = ACTIONS(4572), + [anon_sym_POUNDimageLiteral] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4572), + [anon_sym_RBRACE] = ACTIONS(4572), + [anon_sym_self] = ACTIONS(4570), + [anon_sym_super] = ACTIONS(4570), + [anon_sym_POUNDkeyPath] = ACTIONS(4572), + [anon_sym_try] = ACTIONS(4570), + [anon_sym_try_BANG] = ACTIONS(4572), + [anon_sym_try_QMARK] = ACTIONS(4572), + [anon_sym_BANG_EQ] = ACTIONS(4570), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4570), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4570), + [anon_sym_LT_EQ] = ACTIONS(4570), + [anon_sym_GT_EQ] = ACTIONS(4570), + [anon_sym_is] = ACTIONS(4570), + [anon_sym_PLUS] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4570), + [anon_sym_STAR] = ACTIONS(4570), + [anon_sym_SLASH] = ACTIONS(4570), + [anon_sym_PERCENT] = ACTIONS(4570), + [anon_sym_PLUS_PLUS] = ACTIONS(4570), + [anon_sym_DASH_DASH] = ACTIONS(4570), + [anon_sym_TILDE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4570), + [anon_sym_CARET] = ACTIONS(4570), + [anon_sym_LT_LT] = ACTIONS(4570), + [anon_sym_GT_GT] = ACTIONS(4570), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4572), + [sym_raw_str_part] = ACTIONS(4572), + [sym_raw_str_end_part] = ACTIONS(4572), + [sym__semi] = ACTIONS(4572), + [sym__dot_custom] = ACTIONS(4572), + [sym__three_dot_operator_custom] = ACTIONS(4572), + [sym__open_ended_range_operator_custom] = ACTIONS(4572), + [sym__conjunction_operator_custom] = ACTIONS(4572), + [sym__disjunction_operator_custom] = ACTIONS(4572), + [sym__nil_coalescing_operator_custom] = ACTIONS(4572), + [sym__eq_eq_custom] = ACTIONS(4572), + [sym__plus_then_ws] = ACTIONS(4572), + [sym__minus_then_ws] = ACTIONS(4572), + [sym_bang] = ACTIONS(4572), + [sym__as_custom] = ACTIONS(4572), + [sym__as_quest_custom] = ACTIONS(4572), + [sym__as_bang_custom] = ACTIONS(4572), + }, + [1352] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4570), + [aux_sym_simple_identifier_token2] = ACTIONS(4572), + [aux_sym_simple_identifier_token3] = ACTIONS(4572), + [aux_sym_simple_identifier_token4] = ACTIONS(4572), + [anon_sym_nil] = ACTIONS(4570), + [sym_real_literal] = ACTIONS(4572), + [sym_integer_literal] = ACTIONS(4570), + [sym_hex_literal] = ACTIONS(4572), + [sym_oct_literal] = ACTIONS(4572), + [sym_bin_literal] = ACTIONS(4572), + [anon_sym_true] = ACTIONS(4570), + [anon_sym_false] = ACTIONS(4570), + [anon_sym_DQUOTE] = ACTIONS(4570), + [anon_sym_BSLASH] = ACTIONS(4570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4570), + [sym__immediate_quest] = ACTIONS(4570), + [anon_sym_AMP] = ACTIONS(4570), + [anon_sym_async] = ACTIONS(4570), + [anon_sym_POUNDselector] = ACTIONS(4572), + [aux_sym_custom_operator_token1] = ACTIONS(4570), + [anon_sym_LT] = ACTIONS(4570), + [anon_sym_GT] = ACTIONS(4570), + [sym__await_operator] = ACTIONS(4570), + [anon_sym_POUNDfile] = ACTIONS(4570), + [anon_sym_POUNDfileID] = ACTIONS(4572), + [anon_sym_POUNDfilePath] = ACTIONS(4572), + [anon_sym_POUNDline] = ACTIONS(4572), + [anon_sym_POUNDcolumn] = ACTIONS(4572), + [anon_sym_POUNDfunction] = ACTIONS(4572), + [anon_sym_POUNDdsohandle] = ACTIONS(4572), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4572), + [anon_sym_POUNDfileLiteral] = ACTIONS(4572), + [anon_sym_POUNDimageLiteral] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4572), + [anon_sym_RBRACE] = ACTIONS(4572), + [anon_sym_self] = ACTIONS(4570), + [anon_sym_super] = ACTIONS(4570), + [anon_sym_POUNDkeyPath] = ACTIONS(4572), + [anon_sym_try] = ACTIONS(4570), + [anon_sym_try_BANG] = ACTIONS(4572), + [anon_sym_try_QMARK] = ACTIONS(4572), + [anon_sym_BANG_EQ] = ACTIONS(4570), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4570), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4570), + [anon_sym_LT_EQ] = ACTIONS(4570), + [anon_sym_GT_EQ] = ACTIONS(4570), + [anon_sym_is] = ACTIONS(4570), + [anon_sym_PLUS] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4570), + [anon_sym_STAR] = ACTIONS(4570), + [anon_sym_SLASH] = ACTIONS(4570), + [anon_sym_PERCENT] = ACTIONS(4570), + [anon_sym_PLUS_PLUS] = ACTIONS(4570), + [anon_sym_DASH_DASH] = ACTIONS(4570), + [anon_sym_TILDE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4570), + [anon_sym_CARET] = ACTIONS(4570), + [anon_sym_LT_LT] = ACTIONS(4570), + [anon_sym_GT_GT] = ACTIONS(4570), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4572), + [sym_raw_str_end_part] = ACTIONS(4572), + [sym__semi] = ACTIONS(4572), + [sym__dot_custom] = ACTIONS(4572), + [sym__three_dot_operator_custom] = ACTIONS(4572), + [sym__open_ended_range_operator_custom] = ACTIONS(4572), + [sym__conjunction_operator_custom] = ACTIONS(4572), + [sym__disjunction_operator_custom] = ACTIONS(4572), + [sym__nil_coalescing_operator_custom] = ACTIONS(4572), + [sym__eq_eq_custom] = ACTIONS(4572), + [sym__plus_then_ws] = ACTIONS(4572), + [sym__minus_then_ws] = ACTIONS(4572), + [sym_bang] = ACTIONS(4572), + [sym__as_custom] = ACTIONS(4572), + [sym__as_quest_custom] = ACTIONS(4572), + [sym__as_bang_custom] = ACTIONS(4572), + }, + [1353] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4563), + [aux_sym_simple_identifier_token2] = ACTIONS(4565), + [aux_sym_simple_identifier_token3] = ACTIONS(4565), + [aux_sym_simple_identifier_token4] = ACTIONS(4565), + [anon_sym_nil] = ACTIONS(4563), + [sym_real_literal] = ACTIONS(4565), + [sym_integer_literal] = ACTIONS(4563), + [sym_hex_literal] = ACTIONS(4565), + [sym_oct_literal] = ACTIONS(4565), + [sym_bin_literal] = ACTIONS(4565), + [anon_sym_true] = ACTIONS(4563), + [anon_sym_false] = ACTIONS(4563), + [anon_sym_DQUOTE] = ACTIONS(4563), + [anon_sym_BSLASH] = ACTIONS(4563), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_QMARK] = ACTIONS(4563), + [sym__immediate_quest] = ACTIONS(4563), + [anon_sym_AMP] = ACTIONS(4563), + [anon_sym_async] = ACTIONS(4563), + [anon_sym_POUNDselector] = ACTIONS(4565), + [aux_sym_custom_operator_token1] = ACTIONS(4563), + [anon_sym_LT] = ACTIONS(5525), + [anon_sym_GT] = ACTIONS(4563), + [sym__await_operator] = ACTIONS(4563), + [anon_sym_POUNDfile] = ACTIONS(4563), + [anon_sym_POUNDfileID] = ACTIONS(4565), + [anon_sym_POUNDfilePath] = ACTIONS(4565), + [anon_sym_POUNDline] = ACTIONS(4565), + [anon_sym_POUNDcolumn] = ACTIONS(4565), + [anon_sym_POUNDfunction] = ACTIONS(4565), + [anon_sym_POUNDdsohandle] = ACTIONS(4565), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4565), + [anon_sym_POUNDfileLiteral] = ACTIONS(4565), + [anon_sym_POUNDimageLiteral] = ACTIONS(4565), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_self] = ACTIONS(4563), + [anon_sym_super] = ACTIONS(4563), + [anon_sym_POUNDkeyPath] = ACTIONS(4565), + [anon_sym_try] = ACTIONS(4563), + [anon_sym_try_BANG] = ACTIONS(4565), + [anon_sym_try_QMARK] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4563), + [anon_sym_LT_EQ] = ACTIONS(4563), + [anon_sym_GT_EQ] = ACTIONS(4563), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_PLUS_PLUS] = ACTIONS(4563), + [anon_sym_DASH_DASH] = ACTIONS(4563), + [anon_sym_TILDE] = ACTIONS(4563), + [anon_sym_PIPE] = ACTIONS(4563), + [anon_sym_CARET] = ACTIONS(4563), + [anon_sym_LT_LT] = ACTIONS(4563), + [anon_sym_GT_GT] = ACTIONS(4563), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4565), + [sym_raw_str_end_part] = ACTIONS(4565), + [sym__semi] = ACTIONS(4565), + [sym__dot_custom] = ACTIONS(4565), + [sym__three_dot_operator_custom] = ACTIONS(4565), + [sym__open_ended_range_operator_custom] = ACTIONS(4565), + [sym__conjunction_operator_custom] = ACTIONS(4565), + [sym__disjunction_operator_custom] = ACTIONS(4565), + [sym__nil_coalescing_operator_custom] = ACTIONS(4565), + [sym__eq_eq_custom] = ACTIONS(4565), + [sym__plus_then_ws] = ACTIONS(4565), + [sym__minus_then_ws] = ACTIONS(4565), + [sym_bang] = ACTIONS(4565), + [sym__as_custom] = ACTIONS(4565), + [sym__as_quest_custom] = ACTIONS(4565), + [sym__as_bang_custom] = ACTIONS(4565), + }, + [1354] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4570), + [aux_sym_simple_identifier_token2] = ACTIONS(4572), + [aux_sym_simple_identifier_token3] = ACTIONS(4572), + [aux_sym_simple_identifier_token4] = ACTIONS(4572), + [anon_sym_nil] = ACTIONS(4570), + [sym_real_literal] = ACTIONS(4572), + [sym_integer_literal] = ACTIONS(4570), + [sym_hex_literal] = ACTIONS(4572), + [sym_oct_literal] = ACTIONS(4572), + [sym_bin_literal] = ACTIONS(4572), + [anon_sym_true] = ACTIONS(4570), + [anon_sym_false] = ACTIONS(4570), + [anon_sym_DQUOTE] = ACTIONS(4570), + [anon_sym_BSLASH] = ACTIONS(4570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4570), + [sym__immediate_quest] = ACTIONS(4570), + [anon_sym_AMP] = ACTIONS(4570), + [anon_sym_async] = ACTIONS(4570), + [anon_sym_POUNDselector] = ACTIONS(4572), + [aux_sym_custom_operator_token1] = ACTIONS(4570), + [anon_sym_LT] = ACTIONS(4570), + [anon_sym_GT] = ACTIONS(4570), + [sym__await_operator] = ACTIONS(4570), + [anon_sym_POUNDfile] = ACTIONS(4570), + [anon_sym_POUNDfileID] = ACTIONS(4572), + [anon_sym_POUNDfilePath] = ACTIONS(4572), + [anon_sym_POUNDline] = ACTIONS(4572), + [anon_sym_POUNDcolumn] = ACTIONS(4572), + [anon_sym_POUNDfunction] = ACTIONS(4572), + [anon_sym_POUNDdsohandle] = ACTIONS(4572), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4572), + [anon_sym_POUNDfileLiteral] = ACTIONS(4572), + [anon_sym_POUNDimageLiteral] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4572), + [anon_sym_self] = ACTIONS(4570), + [anon_sym_super] = ACTIONS(4570), + [anon_sym_POUNDkeyPath] = ACTIONS(4572), + [anon_sym_try] = ACTIONS(4570), + [anon_sym_try_BANG] = ACTIONS(4572), + [anon_sym_try_QMARK] = ACTIONS(4572), + [anon_sym_BANG_EQ] = ACTIONS(4570), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4570), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4570), + [anon_sym_LT_EQ] = ACTIONS(4570), + [anon_sym_GT_EQ] = ACTIONS(4570), + [anon_sym_is] = ACTIONS(4570), + [anon_sym_PLUS] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4570), + [anon_sym_STAR] = ACTIONS(4570), + [anon_sym_SLASH] = ACTIONS(4570), + [anon_sym_PERCENT] = ACTIONS(4570), + [anon_sym_PLUS_PLUS] = ACTIONS(4570), + [anon_sym_DASH_DASH] = ACTIONS(4570), + [anon_sym_TILDE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4570), + [anon_sym_CARET] = ACTIONS(4570), + [anon_sym_LT_LT] = ACTIONS(4570), + [anon_sym_GT_GT] = ACTIONS(4570), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4572), + [sym_raw_str_end_part] = ACTIONS(4572), + [sym__dot_custom] = ACTIONS(4572), + [sym__three_dot_operator_custom] = ACTIONS(4572), + [sym__open_ended_range_operator_custom] = ACTIONS(4572), + [sym__conjunction_operator_custom] = ACTIONS(4572), + [sym__disjunction_operator_custom] = ACTIONS(4572), + [sym__nil_coalescing_operator_custom] = ACTIONS(4572), + [sym__eq_eq_custom] = ACTIONS(4572), + [sym__plus_then_ws] = ACTIONS(4572), + [sym__minus_then_ws] = ACTIONS(4572), + [sym_bang] = ACTIONS(4572), + [sym_where_keyword] = ACTIONS(4572), + [sym__as_custom] = ACTIONS(4572), + [sym__as_quest_custom] = ACTIONS(4572), + [sym__as_bang_custom] = ACTIONS(4572), + }, + [1355] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4551), + [aux_sym_simple_identifier_token2] = ACTIONS(4553), + [aux_sym_simple_identifier_token3] = ACTIONS(4553), + [aux_sym_simple_identifier_token4] = ACTIONS(4553), + [anon_sym_nil] = ACTIONS(4551), + [sym_real_literal] = ACTIONS(4553), + [sym_integer_literal] = ACTIONS(4551), + [sym_hex_literal] = ACTIONS(4553), + [sym_oct_literal] = ACTIONS(4553), + [sym_bin_literal] = ACTIONS(4553), + [anon_sym_true] = ACTIONS(4551), + [anon_sym_false] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_BSLASH] = ACTIONS(4551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_QMARK] = ACTIONS(4561), + [sym__immediate_quest] = ACTIONS(4561), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_async] = ACTIONS(4551), + [anon_sym_POUNDselector] = ACTIONS(4553), + [aux_sym_custom_operator_token1] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [sym__await_operator] = ACTIONS(4551), + [anon_sym_POUNDfile] = ACTIONS(4551), + [anon_sym_POUNDfileID] = ACTIONS(4553), + [anon_sym_POUNDfilePath] = ACTIONS(4553), + [anon_sym_POUNDline] = ACTIONS(4553), + [anon_sym_POUNDcolumn] = ACTIONS(4553), + [anon_sym_POUNDfunction] = ACTIONS(4553), + [anon_sym_POUNDdsohandle] = ACTIONS(4553), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4553), + [anon_sym_POUNDfileLiteral] = ACTIONS(4553), + [anon_sym_POUNDimageLiteral] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4559), + [anon_sym_self] = ACTIONS(4551), + [anon_sym_super] = ACTIONS(4551), + [anon_sym_POUNDkeyPath] = ACTIONS(4553), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_try_BANG] = ACTIONS(4553), + [anon_sym_try_QMARK] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4561), + [anon_sym_CARET] = ACTIONS(4561), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4559), + [sym_raw_str_part] = ACTIONS(4553), + [sym_raw_str_end_part] = ACTIONS(4553), + [sym__semi] = ACTIONS(4559), + [sym__dot_custom] = ACTIONS(4553), + [sym__three_dot_operator_custom] = ACTIONS(4553), + [sym__open_ended_range_operator_custom] = ACTIONS(4553), + [sym__conjunction_operator_custom] = ACTIONS(4559), + [sym__disjunction_operator_custom] = ACTIONS(4559), + [sym__nil_coalescing_operator_custom] = ACTIONS(4559), + [sym__eq_eq_custom] = ACTIONS(4553), + [sym__plus_then_ws] = ACTIONS(4553), + [sym__minus_then_ws] = ACTIONS(4553), + [sym_bang] = ACTIONS(4553), + [sym__as_custom] = ACTIONS(4559), + [sym__as_quest_custom] = ACTIONS(4559), + [sym__as_bang_custom] = ACTIONS(4559), + }, + [1356] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4551), + [aux_sym_simple_identifier_token2] = ACTIONS(4553), + [aux_sym_simple_identifier_token3] = ACTIONS(4553), + [aux_sym_simple_identifier_token4] = ACTIONS(4553), + [anon_sym_nil] = ACTIONS(4551), + [sym_real_literal] = ACTIONS(4553), + [sym_integer_literal] = ACTIONS(4551), + [sym_hex_literal] = ACTIONS(4553), + [sym_oct_literal] = ACTIONS(4553), + [sym_bin_literal] = ACTIONS(4553), + [anon_sym_true] = ACTIONS(4551), + [anon_sym_false] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_BSLASH] = ACTIONS(4551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4555), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_QMARK] = ACTIONS(4557), + [sym__immediate_quest] = ACTIONS(4557), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_async] = ACTIONS(4551), + [anon_sym_POUNDselector] = ACTIONS(4553), + [aux_sym_custom_operator_token1] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [sym__await_operator] = ACTIONS(4551), + [anon_sym_POUNDfile] = ACTIONS(4551), + [anon_sym_POUNDfileID] = ACTIONS(4553), + [anon_sym_POUNDfilePath] = ACTIONS(4553), + [anon_sym_POUNDline] = ACTIONS(4553), + [anon_sym_POUNDcolumn] = ACTIONS(4553), + [anon_sym_POUNDfunction] = ACTIONS(4553), + [anon_sym_POUNDdsohandle] = ACTIONS(4553), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4553), + [anon_sym_POUNDfileLiteral] = ACTIONS(4553), + [anon_sym_POUNDimageLiteral] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4555), + [anon_sym_self] = ACTIONS(4551), + [anon_sym_super] = ACTIONS(4551), + [anon_sym_POUNDkeyPath] = ACTIONS(4553), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_try_BANG] = ACTIONS(4553), + [anon_sym_try_QMARK] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_LT_LT] = ACTIONS(4557), + [anon_sym_GT_GT] = ACTIONS(4557), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4555), + [sym_raw_str_part] = ACTIONS(4553), + [sym_raw_str_end_part] = ACTIONS(4553), + [sym__semi] = ACTIONS(4555), + [sym__dot_custom] = ACTIONS(4553), + [sym__three_dot_operator_custom] = ACTIONS(4553), + [sym__open_ended_range_operator_custom] = ACTIONS(4553), + [sym__conjunction_operator_custom] = ACTIONS(4555), + [sym__disjunction_operator_custom] = ACTIONS(4555), + [sym__nil_coalescing_operator_custom] = ACTIONS(4555), + [sym__eq_eq_custom] = ACTIONS(4553), + [sym__plus_then_ws] = ACTIONS(4553), + [sym__minus_then_ws] = ACTIONS(4553), + [sym_bang] = ACTIONS(4553), + [sym__as_custom] = ACTIONS(4555), + [sym__as_quest_custom] = ACTIONS(4555), + [sym__as_bang_custom] = ACTIONS(4555), + }, + [1357] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4527), + [aux_sym_simple_identifier_token2] = ACTIONS(4529), + [aux_sym_simple_identifier_token3] = ACTIONS(4529), + [aux_sym_simple_identifier_token4] = ACTIONS(4529), + [anon_sym_nil] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_oct_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_BSLASH] = ACTIONS(4527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4541), + [anon_sym_LPAREN] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4543), + [anon_sym_QMARK] = ACTIONS(4546), + [sym__immediate_quest] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_async] = ACTIONS(4527), + [anon_sym_POUNDselector] = ACTIONS(4529), + [aux_sym_custom_operator_token1] = ACTIONS(4548), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [sym__await_operator] = ACTIONS(4527), + [anon_sym_POUNDfile] = ACTIONS(4527), + [anon_sym_POUNDfileID] = ACTIONS(4529), + [anon_sym_POUNDfilePath] = ACTIONS(4529), + [anon_sym_POUNDline] = ACTIONS(4529), + [anon_sym_POUNDcolumn] = ACTIONS(4529), + [anon_sym_POUNDfunction] = ACTIONS(4529), + [anon_sym_POUNDdsohandle] = ACTIONS(4529), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4529), + [anon_sym_POUNDfileLiteral] = ACTIONS(4529), + [anon_sym_POUNDimageLiteral] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4543), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_self] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_POUNDkeyPath] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_try_BANG] = ACTIONS(4529), + [anon_sym_try_QMARK] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4548), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4548), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4548), + [anon_sym_LT_EQ] = ACTIONS(4548), + [anon_sym_GT_EQ] = ACTIONS(4548), + [anon_sym_is] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_STAR] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4548), + [anon_sym_PERCENT] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4548), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4546), + [anon_sym_LT_LT] = ACTIONS(4546), + [anon_sym_GT_GT] = ACTIONS(4546), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4541), + [sym_raw_str_part] = ACTIONS(4529), + [sym_raw_str_end_part] = ACTIONS(4529), + [sym__semi] = ACTIONS(4541), + [sym__dot_custom] = ACTIONS(4543), + [sym__three_dot_operator_custom] = ACTIONS(4543), + [sym__open_ended_range_operator_custom] = ACTIONS(4543), + [sym__conjunction_operator_custom] = ACTIONS(4541), + [sym__disjunction_operator_custom] = ACTIONS(4541), + [sym__nil_coalescing_operator_custom] = ACTIONS(4541), + [sym__eq_eq_custom] = ACTIONS(4543), + [sym__plus_then_ws] = ACTIONS(4543), + [sym__minus_then_ws] = ACTIONS(4543), + [sym_bang] = ACTIONS(4543), + [sym__as_custom] = ACTIONS(4541), + [sym__as_quest_custom] = ACTIONS(4541), + [sym__as_bang_custom] = ACTIONS(4541), + }, + [1358] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4523), + [aux_sym_simple_identifier_token2] = ACTIONS(4525), + [aux_sym_simple_identifier_token3] = ACTIONS(4525), + [aux_sym_simple_identifier_token4] = ACTIONS(4525), + [anon_sym_nil] = ACTIONS(4523), + [sym_real_literal] = ACTIONS(4525), + [sym_integer_literal] = ACTIONS(4523), + [sym_hex_literal] = ACTIONS(4525), + [sym_oct_literal] = ACTIONS(4525), + [sym_bin_literal] = ACTIONS(4525), + [anon_sym_true] = ACTIONS(4523), + [anon_sym_false] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_BSLASH] = ACTIONS(4523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4525), + [anon_sym_COMMA] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_QMARK] = ACTIONS(4523), + [sym__immediate_quest] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_async] = ACTIONS(4523), + [anon_sym_POUNDselector] = ACTIONS(4525), + [aux_sym_custom_operator_token1] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4523), + [anon_sym_GT] = ACTIONS(4523), + [sym__await_operator] = ACTIONS(4523), + [anon_sym_POUNDfile] = ACTIONS(4523), + [anon_sym_POUNDfileID] = ACTIONS(4525), + [anon_sym_POUNDfilePath] = ACTIONS(4525), + [anon_sym_POUNDline] = ACTIONS(4525), + [anon_sym_POUNDcolumn] = ACTIONS(4525), + [anon_sym_POUNDfunction] = ACTIONS(4525), + [anon_sym_POUNDdsohandle] = ACTIONS(4525), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4525), + [anon_sym_POUNDfileLiteral] = ACTIONS(4525), + [anon_sym_POUNDimageLiteral] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_RBRACE] = ACTIONS(4525), + [anon_sym_self] = ACTIONS(4523), + [anon_sym_super] = ACTIONS(4523), + [anon_sym_POUNDkeyPath] = ACTIONS(4525), + [anon_sym_try] = ACTIONS(4523), + [anon_sym_try_BANG] = ACTIONS(4525), + [anon_sym_try_QMARK] = ACTIONS(4525), + [anon_sym_BANG_EQ] = ACTIONS(4523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4523), + [anon_sym_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_EQ] = ACTIONS(4523), + [anon_sym_is] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_PLUS_PLUS] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_CARET] = ACTIONS(4523), + [anon_sym_LT_LT] = ACTIONS(4523), + [anon_sym_GT_GT] = ACTIONS(4523), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4525), + [sym_raw_str_part] = ACTIONS(4525), + [sym_raw_str_end_part] = ACTIONS(4525), + [sym__semi] = ACTIONS(4525), + [sym__dot_custom] = ACTIONS(4525), + [sym__three_dot_operator_custom] = ACTIONS(4525), + [sym__open_ended_range_operator_custom] = ACTIONS(4525), + [sym__conjunction_operator_custom] = ACTIONS(4525), + [sym__disjunction_operator_custom] = ACTIONS(4525), + [sym__nil_coalescing_operator_custom] = ACTIONS(4525), + [sym__eq_eq_custom] = ACTIONS(4525), + [sym__plus_then_ws] = ACTIONS(4525), + [sym__minus_then_ws] = ACTIONS(4525), + [sym_bang] = ACTIONS(4525), + [sym__as_custom] = ACTIONS(4525), + [sym__as_quest_custom] = ACTIONS(4525), + [sym__as_bang_custom] = ACTIONS(4525), + }, + [1359] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4551), + [aux_sym_simple_identifier_token2] = ACTIONS(4553), + [aux_sym_simple_identifier_token3] = ACTIONS(4553), + [aux_sym_simple_identifier_token4] = ACTIONS(4553), + [anon_sym_nil] = ACTIONS(4551), + [sym_real_literal] = ACTIONS(4553), + [sym_integer_literal] = ACTIONS(4551), + [sym_hex_literal] = ACTIONS(4553), + [sym_oct_literal] = ACTIONS(4553), + [sym_bin_literal] = ACTIONS(4553), + [anon_sym_true] = ACTIONS(4551), + [anon_sym_false] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_BSLASH] = ACTIONS(4551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4555), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_QMARK] = ACTIONS(4557), + [sym__immediate_quest] = ACTIONS(4557), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_async] = ACTIONS(4551), + [anon_sym_POUNDselector] = ACTIONS(4553), + [aux_sym_custom_operator_token1] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [sym__await_operator] = ACTIONS(4551), + [anon_sym_POUNDfile] = ACTIONS(4551), + [anon_sym_POUNDfileID] = ACTIONS(4553), + [anon_sym_POUNDfilePath] = ACTIONS(4553), + [anon_sym_POUNDline] = ACTIONS(4553), + [anon_sym_POUNDcolumn] = ACTIONS(4553), + [anon_sym_POUNDfunction] = ACTIONS(4553), + [anon_sym_POUNDdsohandle] = ACTIONS(4553), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4553), + [anon_sym_POUNDfileLiteral] = ACTIONS(4553), + [anon_sym_POUNDimageLiteral] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4555), + [anon_sym_self] = ACTIONS(4551), + [anon_sym_super] = ACTIONS(4551), + [anon_sym_POUNDkeyPath] = ACTIONS(4553), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_try_BANG] = ACTIONS(4553), + [anon_sym_try_QMARK] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_LT_LT] = ACTIONS(4557), + [anon_sym_GT_GT] = ACTIONS(4557), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4553), + [sym_raw_str_end_part] = ACTIONS(4553), + [sym__semi] = ACTIONS(4555), + [sym__dot_custom] = ACTIONS(4553), + [sym__three_dot_operator_custom] = ACTIONS(4553), + [sym__open_ended_range_operator_custom] = ACTIONS(4553), + [sym__conjunction_operator_custom] = ACTIONS(4555), + [sym__disjunction_operator_custom] = ACTIONS(4555), + [sym__nil_coalescing_operator_custom] = ACTIONS(4555), + [sym__eq_eq_custom] = ACTIONS(4553), + [sym__plus_then_ws] = ACTIONS(4553), + [sym__minus_then_ws] = ACTIONS(4553), + [sym_bang] = ACTIONS(4553), + [sym__as_custom] = ACTIONS(4555), + [sym__as_quest_custom] = ACTIONS(4555), + [sym__as_bang_custom] = ACTIONS(4555), + }, + [1360] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4563), + [aux_sym_simple_identifier_token2] = ACTIONS(4565), + [aux_sym_simple_identifier_token3] = ACTIONS(4565), + [aux_sym_simple_identifier_token4] = ACTIONS(4565), + [anon_sym_nil] = ACTIONS(4563), + [sym_real_literal] = ACTIONS(4565), + [sym_integer_literal] = ACTIONS(4563), + [sym_hex_literal] = ACTIONS(4565), + [sym_oct_literal] = ACTIONS(4565), + [sym_bin_literal] = ACTIONS(4565), + [anon_sym_true] = ACTIONS(4563), + [anon_sym_false] = ACTIONS(4563), + [anon_sym_DQUOTE] = ACTIONS(4563), + [anon_sym_BSLASH] = ACTIONS(4563), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_QMARK] = ACTIONS(4563), + [sym__immediate_quest] = ACTIONS(4563), + [anon_sym_AMP] = ACTIONS(4563), + [anon_sym_async] = ACTIONS(4563), + [anon_sym_POUNDselector] = ACTIONS(4565), + [aux_sym_custom_operator_token1] = ACTIONS(4563), + [anon_sym_LT] = ACTIONS(5528), + [anon_sym_GT] = ACTIONS(4563), + [sym__await_operator] = ACTIONS(4563), + [anon_sym_POUNDfile] = ACTIONS(4563), + [anon_sym_POUNDfileID] = ACTIONS(4565), + [anon_sym_POUNDfilePath] = ACTIONS(4565), + [anon_sym_POUNDline] = ACTIONS(4565), + [anon_sym_POUNDcolumn] = ACTIONS(4565), + [anon_sym_POUNDfunction] = ACTIONS(4565), + [anon_sym_POUNDdsohandle] = ACTIONS(4565), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4565), + [anon_sym_POUNDfileLiteral] = ACTIONS(4565), + [anon_sym_POUNDimageLiteral] = ACTIONS(4565), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_self] = ACTIONS(4563), + [anon_sym_super] = ACTIONS(4563), + [anon_sym_POUNDkeyPath] = ACTIONS(4565), + [anon_sym_try] = ACTIONS(4563), + [anon_sym_try_BANG] = ACTIONS(4565), + [anon_sym_try_QMARK] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4563), + [anon_sym_LT_EQ] = ACTIONS(4563), + [anon_sym_GT_EQ] = ACTIONS(4563), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_PLUS_PLUS] = ACTIONS(4563), + [anon_sym_DASH_DASH] = ACTIONS(4563), + [anon_sym_TILDE] = ACTIONS(4563), + [anon_sym_PIPE] = ACTIONS(4563), + [anon_sym_CARET] = ACTIONS(4563), + [anon_sym_LT_LT] = ACTIONS(4563), + [anon_sym_GT_GT] = ACTIONS(4563), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4565), + [sym_raw_str_end_part] = ACTIONS(4565), + [sym__dot_custom] = ACTIONS(4565), + [sym__three_dot_operator_custom] = ACTIONS(4565), + [sym__open_ended_range_operator_custom] = ACTIONS(4565), + [sym__conjunction_operator_custom] = ACTIONS(4565), + [sym__disjunction_operator_custom] = ACTIONS(4565), + [sym__nil_coalescing_operator_custom] = ACTIONS(4565), + [sym__eq_eq_custom] = ACTIONS(4565), + [sym__plus_then_ws] = ACTIONS(4565), + [sym__minus_then_ws] = ACTIONS(4565), + [sym_bang] = ACTIONS(4565), + [sym_else] = ACTIONS(4565), + [sym__as_custom] = ACTIONS(4565), + [sym__as_quest_custom] = ACTIONS(4565), + [sym__as_bang_custom] = ACTIONS(4565), + }, + [1361] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4913), + [anon_sym_LPAREN] = ACTIONS(4913), + [anon_sym_LBRACK] = ACTIONS(4913), + [anon_sym_QMARK] = ACTIONS(4915), + [sym__immediate_quest] = ACTIONS(4915), + [anon_sym_AMP] = ACTIONS(4915), + [aux_sym_custom_operator_token1] = ACTIONS(4915), + [anon_sym_LT] = ACTIONS(4915), + [anon_sym_GT] = ACTIONS(4915), + [anon_sym_LBRACE] = ACTIONS(4913), + [anon_sym_RBRACE] = ACTIONS(4913), + [anon_sym_case] = ACTIONS(4913), + [anon_sym_fallthrough] = ACTIONS(4913), + [anon_sym_PLUS_EQ] = ACTIONS(4915), + [anon_sym_DASH_EQ] = ACTIONS(4915), + [anon_sym_STAR_EQ] = ACTIONS(4915), + [anon_sym_SLASH_EQ] = ACTIONS(4915), + [anon_sym_PERCENT_EQ] = ACTIONS(4915), + [anon_sym_EQ] = ACTIONS(4915), + [anon_sym_BANG_EQ] = ACTIONS(4915), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4915), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4915), + [anon_sym_LT_EQ] = ACTIONS(4915), + [anon_sym_GT_EQ] = ACTIONS(4915), + [anon_sym_is] = ACTIONS(4913), + [anon_sym_PLUS] = ACTIONS(4915), + [anon_sym_DASH] = ACTIONS(4915), + [anon_sym_STAR] = ACTIONS(4915), + [anon_sym_SLASH] = ACTIONS(4915), + [anon_sym_PERCENT] = ACTIONS(4915), + [anon_sym_PLUS_PLUS] = ACTIONS(4915), + [anon_sym_DASH_DASH] = ACTIONS(4915), + [anon_sym_PIPE] = ACTIONS(4915), + [anon_sym_CARET] = ACTIONS(4915), + [anon_sym_LT_LT] = ACTIONS(4915), + [anon_sym_GT_GT] = ACTIONS(4915), + [anon_sym_class] = ACTIONS(4913), + [anon_sym_prefix] = ACTIONS(4913), + [anon_sym_infix] = ACTIONS(4913), + [anon_sym_postfix] = ACTIONS(4913), + [anon_sym_AT] = ACTIONS(4915), + [sym_property_behavior_modifier] = ACTIONS(4913), + [anon_sym_override] = ACTIONS(4913), + [anon_sym_convenience] = ACTIONS(4913), + [anon_sym_required] = ACTIONS(4913), + [anon_sym_public] = ACTIONS(4913), + [anon_sym_private] = ACTIONS(4913), + [anon_sym_internal] = ACTIONS(4913), + [anon_sym_fileprivate] = ACTIONS(4913), + [anon_sym_open] = ACTIONS(4913), + [anon_sym_mutating] = ACTIONS(4913), + [anon_sym_nonmutating] = ACTIONS(4913), + [anon_sym_static] = ACTIONS(4913), + [anon_sym_dynamic] = ACTIONS(4913), + [anon_sym_optional] = ACTIONS(4913), + [anon_sym_final] = ACTIONS(4913), + [anon_sym_inout] = ACTIONS(4913), + [anon_sym_ATescaping] = ACTIONS(4913), + [anon_sym_ATautoclosure] = ACTIONS(4913), + [anon_sym_weak] = ACTIONS(4913), + [anon_sym_unowned] = ACTIONS(4915), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4913), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4913), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4913), + [sym__dot_custom] = ACTIONS(4913), + [sym__three_dot_operator_custom] = ACTIONS(4913), + [sym__open_ended_range_operator_custom] = ACTIONS(4913), + [sym__conjunction_operator_custom] = ACTIONS(4913), + [sym__disjunction_operator_custom] = ACTIONS(4913), + [sym__nil_coalescing_operator_custom] = ACTIONS(4913), + [sym__eq_eq_custom] = ACTIONS(4913), + [sym__plus_then_ws] = ACTIONS(4913), + [sym__minus_then_ws] = ACTIONS(4913), + [sym_bang] = ACTIONS(4913), + [sym_default_keyword] = ACTIONS(4913), + [sym__as_custom] = ACTIONS(4913), + [sym__as_quest_custom] = ACTIONS(4913), + [sym__as_bang_custom] = ACTIONS(4913), + }, + [1362] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4523), + [aux_sym_simple_identifier_token2] = ACTIONS(4525), + [aux_sym_simple_identifier_token3] = ACTIONS(4525), + [aux_sym_simple_identifier_token4] = ACTIONS(4525), + [anon_sym_nil] = ACTIONS(4523), + [sym_real_literal] = ACTIONS(4525), + [sym_integer_literal] = ACTIONS(4523), + [sym_hex_literal] = ACTIONS(4525), + [sym_oct_literal] = ACTIONS(4525), + [sym_bin_literal] = ACTIONS(4525), + [anon_sym_true] = ACTIONS(4523), + [anon_sym_false] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_BSLASH] = ACTIONS(4523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4525), + [anon_sym_COMMA] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_QMARK] = ACTIONS(4523), + [sym__immediate_quest] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_async] = ACTIONS(4523), + [anon_sym_POUNDselector] = ACTIONS(4525), + [aux_sym_custom_operator_token1] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4523), + [anon_sym_GT] = ACTIONS(4523), + [sym__await_operator] = ACTIONS(4523), + [anon_sym_POUNDfile] = ACTIONS(4523), + [anon_sym_POUNDfileID] = ACTIONS(4525), + [anon_sym_POUNDfilePath] = ACTIONS(4525), + [anon_sym_POUNDline] = ACTIONS(4525), + [anon_sym_POUNDcolumn] = ACTIONS(4525), + [anon_sym_POUNDfunction] = ACTIONS(4525), + [anon_sym_POUNDdsohandle] = ACTIONS(4525), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4525), + [anon_sym_POUNDfileLiteral] = ACTIONS(4525), + [anon_sym_POUNDimageLiteral] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_self] = ACTIONS(4523), + [anon_sym_super] = ACTIONS(4523), + [anon_sym_POUNDkeyPath] = ACTIONS(4525), + [anon_sym_try] = ACTIONS(4523), + [anon_sym_try_BANG] = ACTIONS(4525), + [anon_sym_try_QMARK] = ACTIONS(4525), + [anon_sym_BANG_EQ] = ACTIONS(4523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4523), + [anon_sym_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_EQ] = ACTIONS(4523), + [anon_sym_is] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_PLUS_PLUS] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_CARET] = ACTIONS(4523), + [anon_sym_LT_LT] = ACTIONS(4523), + [anon_sym_GT_GT] = ACTIONS(4523), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4525), + [sym_raw_str_end_part] = ACTIONS(4525), + [sym__dot_custom] = ACTIONS(4525), + [sym__three_dot_operator_custom] = ACTIONS(4525), + [sym__open_ended_range_operator_custom] = ACTIONS(4525), + [sym__conjunction_operator_custom] = ACTIONS(4525), + [sym__disjunction_operator_custom] = ACTIONS(4525), + [sym__nil_coalescing_operator_custom] = ACTIONS(4525), + [sym__eq_eq_custom] = ACTIONS(4525), + [sym__plus_then_ws] = ACTIONS(4525), + [sym__minus_then_ws] = ACTIONS(4525), + [sym_bang] = ACTIONS(4525), + [sym_else] = ACTIONS(4525), + [sym__as_custom] = ACTIONS(4525), + [sym__as_quest_custom] = ACTIONS(4525), + [sym__as_bang_custom] = ACTIONS(4525), + }, + [1363] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4957), + [anon_sym_LPAREN] = ACTIONS(4957), + [anon_sym_LBRACK] = ACTIONS(4957), + [anon_sym_QMARK] = ACTIONS(4959), + [sym__immediate_quest] = ACTIONS(4959), + [anon_sym_AMP] = ACTIONS(4959), + [aux_sym_custom_operator_token1] = ACTIONS(4959), + [anon_sym_LT] = ACTIONS(4959), + [anon_sym_GT] = ACTIONS(4959), + [anon_sym_LBRACE] = ACTIONS(4957), + [anon_sym_RBRACE] = ACTIONS(4957), + [anon_sym_case] = ACTIONS(4957), + [anon_sym_fallthrough] = ACTIONS(4957), + [anon_sym_PLUS_EQ] = ACTIONS(4959), + [anon_sym_DASH_EQ] = ACTIONS(4959), + [anon_sym_STAR_EQ] = ACTIONS(4959), + [anon_sym_SLASH_EQ] = ACTIONS(4959), + [anon_sym_PERCENT_EQ] = ACTIONS(4959), + [anon_sym_EQ] = ACTIONS(4959), + [anon_sym_BANG_EQ] = ACTIONS(4959), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4959), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4959), + [anon_sym_LT_EQ] = ACTIONS(4959), + [anon_sym_GT_EQ] = ACTIONS(4959), + [anon_sym_is] = ACTIONS(4957), + [anon_sym_PLUS] = ACTIONS(4959), + [anon_sym_DASH] = ACTIONS(4959), + [anon_sym_STAR] = ACTIONS(4959), + [anon_sym_SLASH] = ACTIONS(4959), + [anon_sym_PERCENT] = ACTIONS(4959), + [anon_sym_PLUS_PLUS] = ACTIONS(4959), + [anon_sym_DASH_DASH] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(4959), + [anon_sym_CARET] = ACTIONS(4959), + [anon_sym_LT_LT] = ACTIONS(4959), + [anon_sym_GT_GT] = ACTIONS(4959), + [anon_sym_class] = ACTIONS(4957), + [anon_sym_prefix] = ACTIONS(4957), + [anon_sym_infix] = ACTIONS(4957), + [anon_sym_postfix] = ACTIONS(4957), + [anon_sym_AT] = ACTIONS(4959), + [sym_property_behavior_modifier] = ACTIONS(4957), + [anon_sym_override] = ACTIONS(4957), + [anon_sym_convenience] = ACTIONS(4957), + [anon_sym_required] = ACTIONS(4957), + [anon_sym_public] = ACTIONS(4957), + [anon_sym_private] = ACTIONS(4957), + [anon_sym_internal] = ACTIONS(4957), + [anon_sym_fileprivate] = ACTIONS(4957), + [anon_sym_open] = ACTIONS(4957), + [anon_sym_mutating] = ACTIONS(4957), + [anon_sym_nonmutating] = ACTIONS(4957), + [anon_sym_static] = ACTIONS(4957), + [anon_sym_dynamic] = ACTIONS(4957), + [anon_sym_optional] = ACTIONS(4957), + [anon_sym_final] = ACTIONS(4957), + [anon_sym_inout] = ACTIONS(4957), + [anon_sym_ATescaping] = ACTIONS(4957), + [anon_sym_ATautoclosure] = ACTIONS(4957), + [anon_sym_weak] = ACTIONS(4957), + [anon_sym_unowned] = ACTIONS(4959), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4957), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4957), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4957), + [sym__dot_custom] = ACTIONS(4957), + [sym__three_dot_operator_custom] = ACTIONS(4957), + [sym__open_ended_range_operator_custom] = ACTIONS(4957), + [sym__conjunction_operator_custom] = ACTIONS(4957), + [sym__disjunction_operator_custom] = ACTIONS(4957), + [sym__nil_coalescing_operator_custom] = ACTIONS(4957), + [sym__eq_eq_custom] = ACTIONS(4957), + [sym__plus_then_ws] = ACTIONS(4957), + [sym__minus_then_ws] = ACTIONS(4957), + [sym_bang] = ACTIONS(4957), + [sym_default_keyword] = ACTIONS(4957), + [sym__as_custom] = ACTIONS(4957), + [sym__as_quest_custom] = ACTIONS(4957), + [sym__as_bang_custom] = ACTIONS(4957), + }, + [1364] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4945), + [anon_sym_LPAREN] = ACTIONS(4945), + [anon_sym_LBRACK] = ACTIONS(4945), + [anon_sym_QMARK] = ACTIONS(4947), + [sym__immediate_quest] = ACTIONS(4947), + [anon_sym_AMP] = ACTIONS(4947), + [aux_sym_custom_operator_token1] = ACTIONS(4947), + [anon_sym_LT] = ACTIONS(4947), + [anon_sym_GT] = ACTIONS(4947), + [anon_sym_LBRACE] = ACTIONS(4945), + [anon_sym_RBRACE] = ACTIONS(4945), + [anon_sym_case] = ACTIONS(4945), + [anon_sym_fallthrough] = ACTIONS(4945), + [anon_sym_PLUS_EQ] = ACTIONS(4947), + [anon_sym_DASH_EQ] = ACTIONS(4947), + [anon_sym_STAR_EQ] = ACTIONS(4947), + [anon_sym_SLASH_EQ] = ACTIONS(4947), + [anon_sym_PERCENT_EQ] = ACTIONS(4947), + [anon_sym_EQ] = ACTIONS(4947), + [anon_sym_BANG_EQ] = ACTIONS(4947), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4947), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4947), + [anon_sym_LT_EQ] = ACTIONS(4947), + [anon_sym_GT_EQ] = ACTIONS(4947), + [anon_sym_is] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(4947), + [anon_sym_DASH] = ACTIONS(4947), + [anon_sym_STAR] = ACTIONS(4947), + [anon_sym_SLASH] = ACTIONS(4947), + [anon_sym_PERCENT] = ACTIONS(4947), + [anon_sym_PLUS_PLUS] = ACTIONS(4947), + [anon_sym_DASH_DASH] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4947), + [anon_sym_CARET] = ACTIONS(4947), + [anon_sym_LT_LT] = ACTIONS(4947), + [anon_sym_GT_GT] = ACTIONS(4947), + [anon_sym_class] = ACTIONS(4945), + [anon_sym_prefix] = ACTIONS(4945), + [anon_sym_infix] = ACTIONS(4945), + [anon_sym_postfix] = ACTIONS(4945), + [anon_sym_AT] = ACTIONS(4947), + [sym_property_behavior_modifier] = ACTIONS(4945), + [anon_sym_override] = ACTIONS(4945), + [anon_sym_convenience] = ACTIONS(4945), + [anon_sym_required] = ACTIONS(4945), + [anon_sym_public] = ACTIONS(4945), + [anon_sym_private] = ACTIONS(4945), + [anon_sym_internal] = ACTIONS(4945), + [anon_sym_fileprivate] = ACTIONS(4945), + [anon_sym_open] = ACTIONS(4945), + [anon_sym_mutating] = ACTIONS(4945), + [anon_sym_nonmutating] = ACTIONS(4945), + [anon_sym_static] = ACTIONS(4945), + [anon_sym_dynamic] = ACTIONS(4945), + [anon_sym_optional] = ACTIONS(4945), + [anon_sym_final] = ACTIONS(4945), + [anon_sym_inout] = ACTIONS(4945), + [anon_sym_ATescaping] = ACTIONS(4945), + [anon_sym_ATautoclosure] = ACTIONS(4945), + [anon_sym_weak] = ACTIONS(4945), + [anon_sym_unowned] = ACTIONS(4947), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4945), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4945), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4945), + [sym__dot_custom] = ACTIONS(4945), + [sym__three_dot_operator_custom] = ACTIONS(4945), + [sym__open_ended_range_operator_custom] = ACTIONS(4945), + [sym__conjunction_operator_custom] = ACTIONS(4945), + [sym__disjunction_operator_custom] = ACTIONS(4945), + [sym__nil_coalescing_operator_custom] = ACTIONS(4945), + [sym__eq_eq_custom] = ACTIONS(4945), + [sym__plus_then_ws] = ACTIONS(4945), + [sym__minus_then_ws] = ACTIONS(4945), + [sym_bang] = ACTIONS(4945), + [sym_default_keyword] = ACTIONS(4945), + [sym__as_custom] = ACTIONS(4945), + [sym__as_quest_custom] = ACTIONS(4945), + [sym__as_bang_custom] = ACTIONS(4945), + }, + [1365] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4969), + [anon_sym_LPAREN] = ACTIONS(4969), + [anon_sym_LBRACK] = ACTIONS(4969), + [anon_sym_QMARK] = ACTIONS(4972), + [sym__immediate_quest] = ACTIONS(4972), + [anon_sym_AMP] = ACTIONS(4972), + [aux_sym_custom_operator_token1] = ACTIONS(4972), + [anon_sym_LT] = ACTIONS(4972), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4969), + [anon_sym_RBRACE] = ACTIONS(4969), + [anon_sym_case] = ACTIONS(4969), + [anon_sym_fallthrough] = ACTIONS(4969), + [anon_sym_PLUS_EQ] = ACTIONS(4891), + [anon_sym_DASH_EQ] = ACTIONS(4891), + [anon_sym_STAR_EQ] = ACTIONS(4891), + [anon_sym_SLASH_EQ] = ACTIONS(4891), + [anon_sym_PERCENT_EQ] = ACTIONS(4891), + [anon_sym_EQ] = ACTIONS(4891), + [anon_sym_BANG_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4972), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4972), + [anon_sym_LT_EQ] = ACTIONS(4972), + [anon_sym_GT_EQ] = ACTIONS(4972), + [anon_sym_is] = ACTIONS(4969), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_PLUS_PLUS] = ACTIONS(4972), + [anon_sym_DASH_DASH] = ACTIONS(4972), + [anon_sym_PIPE] = ACTIONS(4972), + [anon_sym_CARET] = ACTIONS(4972), + [anon_sym_LT_LT] = ACTIONS(4972), + [anon_sym_GT_GT] = ACTIONS(4972), + [anon_sym_class] = ACTIONS(4969), + [anon_sym_prefix] = ACTIONS(4969), + [anon_sym_infix] = ACTIONS(4969), + [anon_sym_postfix] = ACTIONS(4969), + [anon_sym_AT] = ACTIONS(4972), + [sym_property_behavior_modifier] = ACTIONS(4969), + [anon_sym_override] = ACTIONS(4969), + [anon_sym_convenience] = ACTIONS(4969), + [anon_sym_required] = ACTIONS(4969), + [anon_sym_public] = ACTIONS(4969), + [anon_sym_private] = ACTIONS(4969), + [anon_sym_internal] = ACTIONS(4969), + [anon_sym_fileprivate] = ACTIONS(4969), + [anon_sym_open] = ACTIONS(4969), + [anon_sym_mutating] = ACTIONS(4969), + [anon_sym_nonmutating] = ACTIONS(4969), + [anon_sym_static] = ACTIONS(4969), + [anon_sym_dynamic] = ACTIONS(4969), + [anon_sym_optional] = ACTIONS(4969), + [anon_sym_final] = ACTIONS(4969), + [anon_sym_inout] = ACTIONS(4969), + [anon_sym_ATescaping] = ACTIONS(4969), + [anon_sym_ATautoclosure] = ACTIONS(4969), + [anon_sym_weak] = ACTIONS(4969), + [anon_sym_unowned] = ACTIONS(4972), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4969), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4969), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4969), + [sym__dot_custom] = ACTIONS(4969), + [sym__three_dot_operator_custom] = ACTIONS(4969), + [sym__open_ended_range_operator_custom] = ACTIONS(4969), + [sym__conjunction_operator_custom] = ACTIONS(4969), + [sym__disjunction_operator_custom] = ACTIONS(4969), + [sym__nil_coalescing_operator_custom] = ACTIONS(4969), + [sym__eq_eq_custom] = ACTIONS(4969), + [sym__plus_then_ws] = ACTIONS(4969), + [sym__minus_then_ws] = ACTIONS(4969), + [sym_bang] = ACTIONS(4969), + [sym_default_keyword] = ACTIONS(4969), + [sym__as_custom] = ACTIONS(4969), + [sym__as_quest_custom] = ACTIONS(4969), + [sym__as_bang_custom] = ACTIONS(4969), + }, + [1366] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4953), + [anon_sym_LPAREN] = ACTIONS(4953), + [anon_sym_LBRACK] = ACTIONS(4953), + [anon_sym_QMARK] = ACTIONS(4955), + [sym__immediate_quest] = ACTIONS(4955), + [anon_sym_AMP] = ACTIONS(4955), + [aux_sym_custom_operator_token1] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_LBRACE] = ACTIONS(4953), + [anon_sym_RBRACE] = ACTIONS(4953), + [anon_sym_case] = ACTIONS(4953), + [anon_sym_fallthrough] = ACTIONS(4953), + [anon_sym_PLUS_EQ] = ACTIONS(4955), + [anon_sym_DASH_EQ] = ACTIONS(4955), + [anon_sym_STAR_EQ] = ACTIONS(4955), + [anon_sym_SLASH_EQ] = ACTIONS(4955), + [anon_sym_PERCENT_EQ] = ACTIONS(4955), + [anon_sym_EQ] = ACTIONS(4955), + [anon_sym_BANG_EQ] = ACTIONS(4955), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4955), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4955), + [anon_sym_LT_EQ] = ACTIONS(4955), + [anon_sym_GT_EQ] = ACTIONS(4955), + [anon_sym_is] = ACTIONS(4953), + [anon_sym_PLUS] = ACTIONS(4955), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_STAR] = ACTIONS(4955), + [anon_sym_SLASH] = ACTIONS(4955), + [anon_sym_PERCENT] = ACTIONS(4955), + [anon_sym_PLUS_PLUS] = ACTIONS(4955), + [anon_sym_DASH_DASH] = ACTIONS(4955), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_CARET] = ACTIONS(4955), + [anon_sym_LT_LT] = ACTIONS(4955), + [anon_sym_GT_GT] = ACTIONS(4955), + [anon_sym_class] = ACTIONS(4953), + [anon_sym_prefix] = ACTIONS(4953), + [anon_sym_infix] = ACTIONS(4953), + [anon_sym_postfix] = ACTIONS(4953), + [anon_sym_AT] = ACTIONS(4955), + [sym_property_behavior_modifier] = ACTIONS(4953), + [anon_sym_override] = ACTIONS(4953), + [anon_sym_convenience] = ACTIONS(4953), + [anon_sym_required] = ACTIONS(4953), + [anon_sym_public] = ACTIONS(4953), + [anon_sym_private] = ACTIONS(4953), + [anon_sym_internal] = ACTIONS(4953), + [anon_sym_fileprivate] = ACTIONS(4953), + [anon_sym_open] = ACTIONS(4953), + [anon_sym_mutating] = ACTIONS(4953), + [anon_sym_nonmutating] = ACTIONS(4953), + [anon_sym_static] = ACTIONS(4953), + [anon_sym_dynamic] = ACTIONS(4953), + [anon_sym_optional] = ACTIONS(4953), + [anon_sym_final] = ACTIONS(4953), + [anon_sym_inout] = ACTIONS(4953), + [anon_sym_ATescaping] = ACTIONS(4953), + [anon_sym_ATautoclosure] = ACTIONS(4953), + [anon_sym_weak] = ACTIONS(4953), + [anon_sym_unowned] = ACTIONS(4955), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4953), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4953), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4953), + [sym__dot_custom] = ACTIONS(4953), + [sym__three_dot_operator_custom] = ACTIONS(4953), + [sym__open_ended_range_operator_custom] = ACTIONS(4953), + [sym__conjunction_operator_custom] = ACTIONS(4953), + [sym__disjunction_operator_custom] = ACTIONS(4953), + [sym__nil_coalescing_operator_custom] = ACTIONS(4953), + [sym__eq_eq_custom] = ACTIONS(4953), + [sym__plus_then_ws] = ACTIONS(4953), + [sym__minus_then_ws] = ACTIONS(4953), + [sym_bang] = ACTIONS(4953), + [sym_default_keyword] = ACTIONS(4953), + [sym__as_custom] = ACTIONS(4953), + [sym__as_quest_custom] = ACTIONS(4953), + [sym__as_bang_custom] = ACTIONS(4953), + }, + [1367] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4909), + [anon_sym_LPAREN] = ACTIONS(4909), + [anon_sym_LBRACK] = ACTIONS(4909), + [anon_sym_QMARK] = ACTIONS(4911), + [sym__immediate_quest] = ACTIONS(4911), + [anon_sym_AMP] = ACTIONS(4911), + [aux_sym_custom_operator_token1] = ACTIONS(4911), + [anon_sym_LT] = ACTIONS(4911), + [anon_sym_GT] = ACTIONS(4911), + [anon_sym_LBRACE] = ACTIONS(4909), + [anon_sym_RBRACE] = ACTIONS(4909), + [anon_sym_case] = ACTIONS(4909), + [anon_sym_fallthrough] = ACTIONS(4909), + [anon_sym_PLUS_EQ] = ACTIONS(4911), + [anon_sym_DASH_EQ] = ACTIONS(4911), + [anon_sym_STAR_EQ] = ACTIONS(4911), + [anon_sym_SLASH_EQ] = ACTIONS(4911), + [anon_sym_PERCENT_EQ] = ACTIONS(4911), + [anon_sym_EQ] = ACTIONS(4911), + [anon_sym_BANG_EQ] = ACTIONS(4911), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4911), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4911), + [anon_sym_LT_EQ] = ACTIONS(4911), + [anon_sym_GT_EQ] = ACTIONS(4911), + [anon_sym_is] = ACTIONS(4909), + [anon_sym_PLUS] = ACTIONS(4911), + [anon_sym_DASH] = ACTIONS(4911), + [anon_sym_STAR] = ACTIONS(4911), + [anon_sym_SLASH] = ACTIONS(4911), + [anon_sym_PERCENT] = ACTIONS(4911), + [anon_sym_PLUS_PLUS] = ACTIONS(4911), + [anon_sym_DASH_DASH] = ACTIONS(4911), + [anon_sym_PIPE] = ACTIONS(4911), + [anon_sym_CARET] = ACTIONS(4911), + [anon_sym_LT_LT] = ACTIONS(4911), + [anon_sym_GT_GT] = ACTIONS(4911), + [anon_sym_class] = ACTIONS(4909), + [anon_sym_prefix] = ACTIONS(4909), + [anon_sym_infix] = ACTIONS(4909), + [anon_sym_postfix] = ACTIONS(4909), + [anon_sym_AT] = ACTIONS(4911), + [sym_property_behavior_modifier] = ACTIONS(4909), + [anon_sym_override] = ACTIONS(4909), + [anon_sym_convenience] = ACTIONS(4909), + [anon_sym_required] = ACTIONS(4909), + [anon_sym_public] = ACTIONS(4909), + [anon_sym_private] = ACTIONS(4909), + [anon_sym_internal] = ACTIONS(4909), + [anon_sym_fileprivate] = ACTIONS(4909), + [anon_sym_open] = ACTIONS(4909), + [anon_sym_mutating] = ACTIONS(4909), + [anon_sym_nonmutating] = ACTIONS(4909), + [anon_sym_static] = ACTIONS(4909), + [anon_sym_dynamic] = ACTIONS(4909), + [anon_sym_optional] = ACTIONS(4909), + [anon_sym_final] = ACTIONS(4909), + [anon_sym_inout] = ACTIONS(4909), + [anon_sym_ATescaping] = ACTIONS(4909), + [anon_sym_ATautoclosure] = ACTIONS(4909), + [anon_sym_weak] = ACTIONS(4909), + [anon_sym_unowned] = ACTIONS(4911), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4909), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4909), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4909), + [sym__dot_custom] = ACTIONS(4909), + [sym__three_dot_operator_custom] = ACTIONS(4909), + [sym__open_ended_range_operator_custom] = ACTIONS(4909), + [sym__conjunction_operator_custom] = ACTIONS(4909), + [sym__disjunction_operator_custom] = ACTIONS(4909), + [sym__nil_coalescing_operator_custom] = ACTIONS(4909), + [sym__eq_eq_custom] = ACTIONS(4909), + [sym__plus_then_ws] = ACTIONS(4909), + [sym__minus_then_ws] = ACTIONS(4909), + [sym_bang] = ACTIONS(4909), + [sym_default_keyword] = ACTIONS(4909), + [sym__as_custom] = ACTIONS(4909), + [sym__as_quest_custom] = ACTIONS(4909), + [sym__as_bang_custom] = ACTIONS(4909), + }, + [1368] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4901), + [anon_sym_LPAREN] = ACTIONS(4901), + [anon_sym_LBRACK] = ACTIONS(4901), + [anon_sym_QMARK] = ACTIONS(4903), + [sym__immediate_quest] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), + [aux_sym_custom_operator_token1] = ACTIONS(4903), + [anon_sym_LT] = ACTIONS(4903), + [anon_sym_GT] = ACTIONS(4903), + [anon_sym_LBRACE] = ACTIONS(4901), + [anon_sym_RBRACE] = ACTIONS(4901), + [anon_sym_case] = ACTIONS(4901), + [anon_sym_fallthrough] = ACTIONS(4901), + [anon_sym_PLUS_EQ] = ACTIONS(4903), + [anon_sym_DASH_EQ] = ACTIONS(4903), + [anon_sym_STAR_EQ] = ACTIONS(4903), + [anon_sym_SLASH_EQ] = ACTIONS(4903), + [anon_sym_PERCENT_EQ] = ACTIONS(4903), + [anon_sym_EQ] = ACTIONS(4903), + [anon_sym_BANG_EQ] = ACTIONS(4903), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4903), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4903), + [anon_sym_LT_EQ] = ACTIONS(4903), + [anon_sym_GT_EQ] = ACTIONS(4903), + [anon_sym_is] = ACTIONS(4901), + [anon_sym_PLUS] = ACTIONS(4903), + [anon_sym_DASH] = ACTIONS(4903), + [anon_sym_STAR] = ACTIONS(4903), + [anon_sym_SLASH] = ACTIONS(4903), + [anon_sym_PERCENT] = ACTIONS(4903), + [anon_sym_PLUS_PLUS] = ACTIONS(4903), + [anon_sym_DASH_DASH] = ACTIONS(4903), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_CARET] = ACTIONS(4903), + [anon_sym_LT_LT] = ACTIONS(4903), + [anon_sym_GT_GT] = ACTIONS(4903), + [anon_sym_class] = ACTIONS(4901), + [anon_sym_prefix] = ACTIONS(4901), + [anon_sym_infix] = ACTIONS(4901), + [anon_sym_postfix] = ACTIONS(4901), + [anon_sym_AT] = ACTIONS(4903), + [sym_property_behavior_modifier] = ACTIONS(4901), + [anon_sym_override] = ACTIONS(4901), + [anon_sym_convenience] = ACTIONS(4901), + [anon_sym_required] = ACTIONS(4901), + [anon_sym_public] = ACTIONS(4901), + [anon_sym_private] = ACTIONS(4901), + [anon_sym_internal] = ACTIONS(4901), + [anon_sym_fileprivate] = ACTIONS(4901), + [anon_sym_open] = ACTIONS(4901), + [anon_sym_mutating] = ACTIONS(4901), + [anon_sym_nonmutating] = ACTIONS(4901), + [anon_sym_static] = ACTIONS(4901), + [anon_sym_dynamic] = ACTIONS(4901), + [anon_sym_optional] = ACTIONS(4901), + [anon_sym_final] = ACTIONS(4901), + [anon_sym_inout] = ACTIONS(4901), + [anon_sym_ATescaping] = ACTIONS(4901), + [anon_sym_ATautoclosure] = ACTIONS(4901), + [anon_sym_weak] = ACTIONS(4901), + [anon_sym_unowned] = ACTIONS(4903), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4901), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4901), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4901), + [sym__dot_custom] = ACTIONS(4901), + [sym__three_dot_operator_custom] = ACTIONS(4901), + [sym__open_ended_range_operator_custom] = ACTIONS(4901), + [sym__conjunction_operator_custom] = ACTIONS(4901), + [sym__disjunction_operator_custom] = ACTIONS(4901), + [sym__nil_coalescing_operator_custom] = ACTIONS(4901), + [sym__eq_eq_custom] = ACTIONS(4901), + [sym__plus_then_ws] = ACTIONS(4901), + [sym__minus_then_ws] = ACTIONS(4901), + [sym_bang] = ACTIONS(4901), + [sym_default_keyword] = ACTIONS(4901), + [sym__as_custom] = ACTIONS(4901), + [sym__as_quest_custom] = ACTIONS(4901), + [sym__as_bang_custom] = ACTIONS(4901), + }, + [1369] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4905), + [anon_sym_LPAREN] = ACTIONS(4905), + [anon_sym_LBRACK] = ACTIONS(4905), + [anon_sym_QMARK] = ACTIONS(4907), + [sym__immediate_quest] = ACTIONS(4907), + [anon_sym_AMP] = ACTIONS(4907), + [aux_sym_custom_operator_token1] = ACTIONS(4907), + [anon_sym_LT] = ACTIONS(4907), + [anon_sym_GT] = ACTIONS(4907), + [anon_sym_LBRACE] = ACTIONS(4905), + [anon_sym_RBRACE] = ACTIONS(4905), + [anon_sym_case] = ACTIONS(4905), + [anon_sym_fallthrough] = ACTIONS(4905), + [anon_sym_PLUS_EQ] = ACTIONS(4907), + [anon_sym_DASH_EQ] = ACTIONS(4907), + [anon_sym_STAR_EQ] = ACTIONS(4907), + [anon_sym_SLASH_EQ] = ACTIONS(4907), + [anon_sym_PERCENT_EQ] = ACTIONS(4907), + [anon_sym_EQ] = ACTIONS(4907), + [anon_sym_BANG_EQ] = ACTIONS(4907), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4907), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4907), + [anon_sym_LT_EQ] = ACTIONS(4907), + [anon_sym_GT_EQ] = ACTIONS(4907), + [anon_sym_is] = ACTIONS(4905), + [anon_sym_PLUS] = ACTIONS(4907), + [anon_sym_DASH] = ACTIONS(4907), + [anon_sym_STAR] = ACTIONS(4907), + [anon_sym_SLASH] = ACTIONS(4907), + [anon_sym_PERCENT] = ACTIONS(4907), + [anon_sym_PLUS_PLUS] = ACTIONS(4907), + [anon_sym_DASH_DASH] = ACTIONS(4907), + [anon_sym_PIPE] = ACTIONS(4907), + [anon_sym_CARET] = ACTIONS(4907), + [anon_sym_LT_LT] = ACTIONS(4907), + [anon_sym_GT_GT] = ACTIONS(4907), + [anon_sym_class] = ACTIONS(4905), + [anon_sym_prefix] = ACTIONS(4905), + [anon_sym_infix] = ACTIONS(4905), + [anon_sym_postfix] = ACTIONS(4905), + [anon_sym_AT] = ACTIONS(4907), + [sym_property_behavior_modifier] = ACTIONS(4905), + [anon_sym_override] = ACTIONS(4905), + [anon_sym_convenience] = ACTIONS(4905), + [anon_sym_required] = ACTIONS(4905), + [anon_sym_public] = ACTIONS(4905), + [anon_sym_private] = ACTIONS(4905), + [anon_sym_internal] = ACTIONS(4905), + [anon_sym_fileprivate] = ACTIONS(4905), + [anon_sym_open] = ACTIONS(4905), + [anon_sym_mutating] = ACTIONS(4905), + [anon_sym_nonmutating] = ACTIONS(4905), + [anon_sym_static] = ACTIONS(4905), + [anon_sym_dynamic] = ACTIONS(4905), + [anon_sym_optional] = ACTIONS(4905), + [anon_sym_final] = ACTIONS(4905), + [anon_sym_inout] = ACTIONS(4905), + [anon_sym_ATescaping] = ACTIONS(4905), + [anon_sym_ATautoclosure] = ACTIONS(4905), + [anon_sym_weak] = ACTIONS(4905), + [anon_sym_unowned] = ACTIONS(4907), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4905), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4905), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4905), + [sym__dot_custom] = ACTIONS(4905), + [sym__three_dot_operator_custom] = ACTIONS(4905), + [sym__open_ended_range_operator_custom] = ACTIONS(4905), + [sym__conjunction_operator_custom] = ACTIONS(4905), + [sym__disjunction_operator_custom] = ACTIONS(4905), + [sym__nil_coalescing_operator_custom] = ACTIONS(4905), + [sym__eq_eq_custom] = ACTIONS(4905), + [sym__plus_then_ws] = ACTIONS(4905), + [sym__minus_then_ws] = ACTIONS(4905), + [sym_bang] = ACTIONS(4905), + [sym_default_keyword] = ACTIONS(4905), + [sym__as_custom] = ACTIONS(4905), + [sym__as_quest_custom] = ACTIONS(4905), + [sym__as_bang_custom] = ACTIONS(4905), + }, + [1370] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4975), + [anon_sym_LPAREN] = ACTIONS(4975), + [anon_sym_LBRACK] = ACTIONS(4975), + [anon_sym_QMARK] = ACTIONS(4977), + [sym__immediate_quest] = ACTIONS(4977), + [anon_sym_AMP] = ACTIONS(4977), + [aux_sym_custom_operator_token1] = ACTIONS(4977), + [anon_sym_LT] = ACTIONS(4977), + [anon_sym_GT] = ACTIONS(4977), + [anon_sym_LBRACE] = ACTIONS(4975), + [anon_sym_RBRACE] = ACTIONS(4975), + [anon_sym_case] = ACTIONS(4975), + [anon_sym_fallthrough] = ACTIONS(4975), + [anon_sym_PLUS_EQ] = ACTIONS(4977), + [anon_sym_DASH_EQ] = ACTIONS(4977), + [anon_sym_STAR_EQ] = ACTIONS(4977), + [anon_sym_SLASH_EQ] = ACTIONS(4977), + [anon_sym_PERCENT_EQ] = ACTIONS(4977), + [anon_sym_EQ] = ACTIONS(4977), + [anon_sym_BANG_EQ] = ACTIONS(4977), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4977), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4977), + [anon_sym_LT_EQ] = ACTIONS(4977), + [anon_sym_GT_EQ] = ACTIONS(4977), + [anon_sym_is] = ACTIONS(4975), + [anon_sym_PLUS] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4977), + [anon_sym_STAR] = ACTIONS(4977), + [anon_sym_SLASH] = ACTIONS(4977), + [anon_sym_PERCENT] = ACTIONS(4977), + [anon_sym_PLUS_PLUS] = ACTIONS(4977), + [anon_sym_DASH_DASH] = ACTIONS(4977), + [anon_sym_PIPE] = ACTIONS(4977), + [anon_sym_CARET] = ACTIONS(4977), + [anon_sym_LT_LT] = ACTIONS(4977), + [anon_sym_GT_GT] = ACTIONS(4977), + [anon_sym_class] = ACTIONS(4975), + [anon_sym_prefix] = ACTIONS(4975), + [anon_sym_infix] = ACTIONS(4975), + [anon_sym_postfix] = ACTIONS(4975), + [anon_sym_AT] = ACTIONS(4977), + [sym_property_behavior_modifier] = ACTIONS(4975), + [anon_sym_override] = ACTIONS(4975), + [anon_sym_convenience] = ACTIONS(4975), + [anon_sym_required] = ACTIONS(4975), + [anon_sym_public] = ACTIONS(4975), + [anon_sym_private] = ACTIONS(4975), + [anon_sym_internal] = ACTIONS(4975), + [anon_sym_fileprivate] = ACTIONS(4975), + [anon_sym_open] = ACTIONS(4975), + [anon_sym_mutating] = ACTIONS(4975), + [anon_sym_nonmutating] = ACTIONS(4975), + [anon_sym_static] = ACTIONS(4975), + [anon_sym_dynamic] = ACTIONS(4975), + [anon_sym_optional] = ACTIONS(4975), + [anon_sym_final] = ACTIONS(4975), + [anon_sym_inout] = ACTIONS(4975), + [anon_sym_ATescaping] = ACTIONS(4975), + [anon_sym_ATautoclosure] = ACTIONS(4975), + [anon_sym_weak] = ACTIONS(4975), + [anon_sym_unowned] = ACTIONS(4977), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4975), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4975), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4975), + [sym__dot_custom] = ACTIONS(4975), + [sym__three_dot_operator_custom] = ACTIONS(4975), + [sym__open_ended_range_operator_custom] = ACTIONS(4975), + [sym__conjunction_operator_custom] = ACTIONS(4975), + [sym__disjunction_operator_custom] = ACTIONS(4975), + [sym__nil_coalescing_operator_custom] = ACTIONS(4975), + [sym__eq_eq_custom] = ACTIONS(4975), + [sym__plus_then_ws] = ACTIONS(4975), + [sym__minus_then_ws] = ACTIONS(4975), + [sym_bang] = ACTIONS(4975), + [sym_default_keyword] = ACTIONS(4975), + [sym__as_custom] = ACTIONS(4975), + [sym__as_quest_custom] = ACTIONS(4975), + [sym__as_bang_custom] = ACTIONS(4975), + }, + [1371] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4817), + [anon_sym_LPAREN] = ACTIONS(4817), + [anon_sym_LBRACK] = ACTIONS(4817), + [anon_sym_QMARK] = ACTIONS(4819), + [sym__immediate_quest] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4819), + [aux_sym_custom_operator_token1] = ACTIONS(4819), + [anon_sym_LT] = ACTIONS(4819), + [anon_sym_GT] = ACTIONS(4819), + [anon_sym_LBRACE] = ACTIONS(4817), + [anon_sym_RBRACE] = ACTIONS(4817), + [anon_sym_case] = ACTIONS(4817), + [anon_sym_fallthrough] = ACTIONS(4817), + [anon_sym_PLUS_EQ] = ACTIONS(4819), + [anon_sym_DASH_EQ] = ACTIONS(4819), + [anon_sym_STAR_EQ] = ACTIONS(4819), + [anon_sym_SLASH_EQ] = ACTIONS(4819), + [anon_sym_PERCENT_EQ] = ACTIONS(4819), + [anon_sym_EQ] = ACTIONS(4819), + [anon_sym_BANG_EQ] = ACTIONS(4819), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4819), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4819), + [anon_sym_LT_EQ] = ACTIONS(4819), + [anon_sym_GT_EQ] = ACTIONS(4819), + [anon_sym_is] = ACTIONS(4817), + [anon_sym_PLUS] = ACTIONS(4819), + [anon_sym_DASH] = ACTIONS(4819), + [anon_sym_STAR] = ACTIONS(4819), + [anon_sym_SLASH] = ACTIONS(4819), + [anon_sym_PERCENT] = ACTIONS(4819), + [anon_sym_PLUS_PLUS] = ACTIONS(4819), + [anon_sym_DASH_DASH] = ACTIONS(4819), + [anon_sym_PIPE] = ACTIONS(4819), + [anon_sym_CARET] = ACTIONS(4819), + [anon_sym_LT_LT] = ACTIONS(4819), + [anon_sym_GT_GT] = ACTIONS(4819), + [anon_sym_class] = ACTIONS(4817), + [anon_sym_prefix] = ACTIONS(4817), + [anon_sym_infix] = ACTIONS(4817), + [anon_sym_postfix] = ACTIONS(4817), + [anon_sym_AT] = ACTIONS(4819), + [sym_property_behavior_modifier] = ACTIONS(4817), + [anon_sym_override] = ACTIONS(4817), + [anon_sym_convenience] = ACTIONS(4817), + [anon_sym_required] = ACTIONS(4817), + [anon_sym_public] = ACTIONS(4817), + [anon_sym_private] = ACTIONS(4817), + [anon_sym_internal] = ACTIONS(4817), + [anon_sym_fileprivate] = ACTIONS(4817), + [anon_sym_open] = ACTIONS(4817), + [anon_sym_mutating] = ACTIONS(4817), + [anon_sym_nonmutating] = ACTIONS(4817), + [anon_sym_static] = ACTIONS(4817), + [anon_sym_dynamic] = ACTIONS(4817), + [anon_sym_optional] = ACTIONS(4817), + [anon_sym_final] = ACTIONS(4817), + [anon_sym_inout] = ACTIONS(4817), + [anon_sym_ATescaping] = ACTIONS(4817), + [anon_sym_ATautoclosure] = ACTIONS(4817), + [anon_sym_weak] = ACTIONS(4817), + [anon_sym_unowned] = ACTIONS(4819), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4817), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4817), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4817), + [sym__dot_custom] = ACTIONS(4817), + [sym__three_dot_operator_custom] = ACTIONS(4817), + [sym__open_ended_range_operator_custom] = ACTIONS(4817), + [sym__conjunction_operator_custom] = ACTIONS(4817), + [sym__disjunction_operator_custom] = ACTIONS(4817), + [sym__nil_coalescing_operator_custom] = ACTIONS(4817), + [sym__eq_eq_custom] = ACTIONS(4817), + [sym__plus_then_ws] = ACTIONS(4817), + [sym__minus_then_ws] = ACTIONS(4817), + [sym_bang] = ACTIONS(4817), + [sym_default_keyword] = ACTIONS(4817), + [sym__as_custom] = ACTIONS(4817), + [sym__as_quest_custom] = ACTIONS(4817), + [sym__as_bang_custom] = ACTIONS(4817), + }, + [1372] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [anon_sym_QMARK] = ACTIONS(4942), + [sym__immediate_quest] = ACTIONS(4942), + [anon_sym_AMP] = ACTIONS(4942), + [aux_sym_custom_operator_token1] = ACTIONS(4942), + [anon_sym_LT] = ACTIONS(4942), + [anon_sym_GT] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4939), + [anon_sym_RBRACE] = ACTIONS(4939), + [anon_sym_case] = ACTIONS(4939), + [anon_sym_fallthrough] = ACTIONS(4939), + [anon_sym_PLUS_EQ] = ACTIONS(4751), + [anon_sym_DASH_EQ] = ACTIONS(4751), + [anon_sym_STAR_EQ] = ACTIONS(4751), + [anon_sym_SLASH_EQ] = ACTIONS(4751), + [anon_sym_PERCENT_EQ] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_BANG_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4942), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4942), + [anon_sym_LT_EQ] = ACTIONS(4942), + [anon_sym_GT_EQ] = ACTIONS(4942), + [anon_sym_is] = ACTIONS(4939), + [anon_sym_PLUS] = ACTIONS(4942), + [anon_sym_DASH] = ACTIONS(4942), + [anon_sym_STAR] = ACTIONS(4942), + [anon_sym_SLASH] = ACTIONS(4942), + [anon_sym_PERCENT] = ACTIONS(4942), + [anon_sym_PLUS_PLUS] = ACTIONS(4942), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_PIPE] = ACTIONS(4942), + [anon_sym_CARET] = ACTIONS(4942), + [anon_sym_LT_LT] = ACTIONS(4942), + [anon_sym_GT_GT] = ACTIONS(4942), + [anon_sym_class] = ACTIONS(4939), + [anon_sym_prefix] = ACTIONS(4939), + [anon_sym_infix] = ACTIONS(4939), + [anon_sym_postfix] = ACTIONS(4939), + [anon_sym_AT] = ACTIONS(4942), + [sym_property_behavior_modifier] = ACTIONS(4939), + [anon_sym_override] = ACTIONS(4939), + [anon_sym_convenience] = ACTIONS(4939), + [anon_sym_required] = ACTIONS(4939), + [anon_sym_public] = ACTIONS(4939), + [anon_sym_private] = ACTIONS(4939), + [anon_sym_internal] = ACTIONS(4939), + [anon_sym_fileprivate] = ACTIONS(4939), + [anon_sym_open] = ACTIONS(4939), + [anon_sym_mutating] = ACTIONS(4939), + [anon_sym_nonmutating] = ACTIONS(4939), + [anon_sym_static] = ACTIONS(4939), + [anon_sym_dynamic] = ACTIONS(4939), + [anon_sym_optional] = ACTIONS(4939), + [anon_sym_final] = ACTIONS(4939), + [anon_sym_inout] = ACTIONS(4939), + [anon_sym_ATescaping] = ACTIONS(4939), + [anon_sym_ATautoclosure] = ACTIONS(4939), + [anon_sym_weak] = ACTIONS(4939), + [anon_sym_unowned] = ACTIONS(4942), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4939), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4939), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4939), + [sym__dot_custom] = ACTIONS(4939), + [sym__three_dot_operator_custom] = ACTIONS(4939), + [sym__open_ended_range_operator_custom] = ACTIONS(4939), + [sym__conjunction_operator_custom] = ACTIONS(4939), + [sym__disjunction_operator_custom] = ACTIONS(4939), + [sym__nil_coalescing_operator_custom] = ACTIONS(4939), + [sym__eq_eq_custom] = ACTIONS(4939), + [sym__plus_then_ws] = ACTIONS(4939), + [sym__minus_then_ws] = ACTIONS(4939), + [sym_bang] = ACTIONS(4939), + [sym_default_keyword] = ACTIONS(4939), + [sym__as_custom] = ACTIONS(4939), + [sym__as_quest_custom] = ACTIONS(4939), + [sym__as_bang_custom] = ACTIONS(4939), + }, + [1373] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4749), + [anon_sym_LPAREN] = ACTIONS(4749), + [anon_sym_LBRACK] = ACTIONS(4749), + [anon_sym_QMARK] = ACTIONS(4751), + [sym__immediate_quest] = ACTIONS(4751), + [anon_sym_AMP] = ACTIONS(4751), + [aux_sym_custom_operator_token1] = ACTIONS(4751), + [anon_sym_LT] = ACTIONS(4751), + [anon_sym_GT] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(4749), + [anon_sym_RBRACE] = ACTIONS(4749), + [anon_sym_case] = ACTIONS(4749), + [anon_sym_fallthrough] = ACTIONS(4749), + [anon_sym_PLUS_EQ] = ACTIONS(4751), + [anon_sym_DASH_EQ] = ACTIONS(4751), + [anon_sym_STAR_EQ] = ACTIONS(4751), + [anon_sym_SLASH_EQ] = ACTIONS(4751), + [anon_sym_PERCENT_EQ] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_BANG_EQ] = ACTIONS(4751), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4751), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4751), + [anon_sym_LT_EQ] = ACTIONS(4751), + [anon_sym_GT_EQ] = ACTIONS(4751), + [anon_sym_is] = ACTIONS(4749), + [anon_sym_PLUS] = ACTIONS(4751), + [anon_sym_DASH] = ACTIONS(4751), + [anon_sym_STAR] = ACTIONS(4751), + [anon_sym_SLASH] = ACTIONS(4751), + [anon_sym_PERCENT] = ACTIONS(4751), + [anon_sym_PLUS_PLUS] = ACTIONS(4751), + [anon_sym_DASH_DASH] = ACTIONS(4751), + [anon_sym_PIPE] = ACTIONS(4751), + [anon_sym_CARET] = ACTIONS(4751), + [anon_sym_LT_LT] = ACTIONS(4751), + [anon_sym_GT_GT] = ACTIONS(4751), + [anon_sym_class] = ACTIONS(4749), + [anon_sym_prefix] = ACTIONS(4749), + [anon_sym_infix] = ACTIONS(4749), + [anon_sym_postfix] = ACTIONS(4749), + [anon_sym_AT] = ACTIONS(4751), + [sym_property_behavior_modifier] = ACTIONS(4749), + [anon_sym_override] = ACTIONS(4749), + [anon_sym_convenience] = ACTIONS(4749), + [anon_sym_required] = ACTIONS(4749), + [anon_sym_public] = ACTIONS(4749), + [anon_sym_private] = ACTIONS(4749), + [anon_sym_internal] = ACTIONS(4749), + [anon_sym_fileprivate] = ACTIONS(4749), + [anon_sym_open] = ACTIONS(4749), + [anon_sym_mutating] = ACTIONS(4749), + [anon_sym_nonmutating] = ACTIONS(4749), + [anon_sym_static] = ACTIONS(4749), + [anon_sym_dynamic] = ACTIONS(4749), + [anon_sym_optional] = ACTIONS(4749), + [anon_sym_final] = ACTIONS(4749), + [anon_sym_inout] = ACTIONS(4749), + [anon_sym_ATescaping] = ACTIONS(4749), + [anon_sym_ATautoclosure] = ACTIONS(4749), + [anon_sym_weak] = ACTIONS(4749), + [anon_sym_unowned] = ACTIONS(4751), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4749), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4749), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4749), + [sym__dot_custom] = ACTIONS(4749), + [sym__three_dot_operator_custom] = ACTIONS(4749), + [sym__open_ended_range_operator_custom] = ACTIONS(4749), + [sym__conjunction_operator_custom] = ACTIONS(4749), + [sym__disjunction_operator_custom] = ACTIONS(4749), + [sym__nil_coalescing_operator_custom] = ACTIONS(4749), + [sym__eq_eq_custom] = ACTIONS(4749), + [sym__plus_then_ws] = ACTIONS(4749), + [sym__minus_then_ws] = ACTIONS(4749), + [sym_bang] = ACTIONS(4749), + [sym_default_keyword] = ACTIONS(4749), + [sym__as_custom] = ACTIONS(4749), + [sym__as_quest_custom] = ACTIONS(4749), + [sym__as_bang_custom] = ACTIONS(4749), + }, + [1374] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4923), + [anon_sym_LPAREN] = ACTIONS(4923), + [anon_sym_LBRACK] = ACTIONS(4923), + [anon_sym_QMARK] = ACTIONS(4925), + [sym__immediate_quest] = ACTIONS(4925), + [anon_sym_AMP] = ACTIONS(4925), + [aux_sym_custom_operator_token1] = ACTIONS(4925), + [anon_sym_LT] = ACTIONS(4925), + [anon_sym_GT] = ACTIONS(4925), + [anon_sym_LBRACE] = ACTIONS(4923), + [anon_sym_RBRACE] = ACTIONS(4923), + [anon_sym_case] = ACTIONS(4923), + [anon_sym_fallthrough] = ACTIONS(4923), + [anon_sym_PLUS_EQ] = ACTIONS(4925), + [anon_sym_DASH_EQ] = ACTIONS(4925), + [anon_sym_STAR_EQ] = ACTIONS(4925), + [anon_sym_SLASH_EQ] = ACTIONS(4925), + [anon_sym_PERCENT_EQ] = ACTIONS(4925), + [anon_sym_EQ] = ACTIONS(4925), + [anon_sym_BANG_EQ] = ACTIONS(4925), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4925), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4925), + [anon_sym_LT_EQ] = ACTIONS(4925), + [anon_sym_GT_EQ] = ACTIONS(4925), + [anon_sym_is] = ACTIONS(4923), + [anon_sym_PLUS] = ACTIONS(4925), + [anon_sym_DASH] = ACTIONS(4925), + [anon_sym_STAR] = ACTIONS(4925), + [anon_sym_SLASH] = ACTIONS(4925), + [anon_sym_PERCENT] = ACTIONS(4925), + [anon_sym_PLUS_PLUS] = ACTIONS(4925), + [anon_sym_DASH_DASH] = ACTIONS(4925), + [anon_sym_PIPE] = ACTIONS(4925), + [anon_sym_CARET] = ACTIONS(4925), + [anon_sym_LT_LT] = ACTIONS(4925), + [anon_sym_GT_GT] = ACTIONS(4925), + [anon_sym_class] = ACTIONS(4923), + [anon_sym_prefix] = ACTIONS(4923), + [anon_sym_infix] = ACTIONS(4923), + [anon_sym_postfix] = ACTIONS(4923), + [anon_sym_AT] = ACTIONS(4925), + [sym_property_behavior_modifier] = ACTIONS(4923), + [anon_sym_override] = ACTIONS(4923), + [anon_sym_convenience] = ACTIONS(4923), + [anon_sym_required] = ACTIONS(4923), + [anon_sym_public] = ACTIONS(4923), + [anon_sym_private] = ACTIONS(4923), + [anon_sym_internal] = ACTIONS(4923), + [anon_sym_fileprivate] = ACTIONS(4923), + [anon_sym_open] = ACTIONS(4923), + [anon_sym_mutating] = ACTIONS(4923), + [anon_sym_nonmutating] = ACTIONS(4923), + [anon_sym_static] = ACTIONS(4923), + [anon_sym_dynamic] = ACTIONS(4923), + [anon_sym_optional] = ACTIONS(4923), + [anon_sym_final] = ACTIONS(4923), + [anon_sym_inout] = ACTIONS(4923), + [anon_sym_ATescaping] = ACTIONS(4923), + [anon_sym_ATautoclosure] = ACTIONS(4923), + [anon_sym_weak] = ACTIONS(4923), + [anon_sym_unowned] = ACTIONS(4925), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4923), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4923), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4923), + [sym__dot_custom] = ACTIONS(4923), + [sym__three_dot_operator_custom] = ACTIONS(4923), + [sym__open_ended_range_operator_custom] = ACTIONS(4923), + [sym__conjunction_operator_custom] = ACTIONS(4923), + [sym__disjunction_operator_custom] = ACTIONS(4923), + [sym__nil_coalescing_operator_custom] = ACTIONS(4923), + [sym__eq_eq_custom] = ACTIONS(4923), + [sym__plus_then_ws] = ACTIONS(4923), + [sym__minus_then_ws] = ACTIONS(4923), + [sym_bang] = ACTIONS(4923), + [sym_default_keyword] = ACTIONS(4923), + [sym__as_custom] = ACTIONS(4923), + [sym__as_quest_custom] = ACTIONS(4923), + [sym__as_bang_custom] = ACTIONS(4923), + }, + [1375] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4551), + [aux_sym_simple_identifier_token2] = ACTIONS(4553), + [aux_sym_simple_identifier_token3] = ACTIONS(4553), + [aux_sym_simple_identifier_token4] = ACTIONS(4553), + [anon_sym_nil] = ACTIONS(4551), + [sym_real_literal] = ACTIONS(4553), + [sym_integer_literal] = ACTIONS(4551), + [sym_hex_literal] = ACTIONS(4553), + [sym_oct_literal] = ACTIONS(4553), + [sym_bin_literal] = ACTIONS(4553), + [anon_sym_true] = ACTIONS(4551), + [anon_sym_false] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_BSLASH] = ACTIONS(4551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4555), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_QMARK] = ACTIONS(4557), + [sym__immediate_quest] = ACTIONS(4557), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_async] = ACTIONS(4551), + [anon_sym_POUNDselector] = ACTIONS(4553), + [aux_sym_custom_operator_token1] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [sym__await_operator] = ACTIONS(4551), + [anon_sym_POUNDfile] = ACTIONS(4551), + [anon_sym_POUNDfileID] = ACTIONS(4553), + [anon_sym_POUNDfilePath] = ACTIONS(4553), + [anon_sym_POUNDline] = ACTIONS(4553), + [anon_sym_POUNDcolumn] = ACTIONS(4553), + [anon_sym_POUNDfunction] = ACTIONS(4553), + [anon_sym_POUNDdsohandle] = ACTIONS(4553), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4553), + [anon_sym_POUNDfileLiteral] = ACTIONS(4553), + [anon_sym_POUNDimageLiteral] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_self] = ACTIONS(4551), + [anon_sym_super] = ACTIONS(4551), + [anon_sym_POUNDkeyPath] = ACTIONS(4553), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_try_BANG] = ACTIONS(4553), + [anon_sym_try_QMARK] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_LT_LT] = ACTIONS(4557), + [anon_sym_GT_GT] = ACTIONS(4557), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4553), + [sym_raw_str_end_part] = ACTIONS(4553), + [sym__dot_custom] = ACTIONS(4553), + [sym__three_dot_operator_custom] = ACTIONS(4553), + [sym__open_ended_range_operator_custom] = ACTIONS(4553), + [sym__conjunction_operator_custom] = ACTIONS(4555), + [sym__disjunction_operator_custom] = ACTIONS(4555), + [sym__nil_coalescing_operator_custom] = ACTIONS(4555), + [sym__eq_eq_custom] = ACTIONS(4553), + [sym__plus_then_ws] = ACTIONS(4553), + [sym__minus_then_ws] = ACTIONS(4553), + [sym_bang] = ACTIONS(4553), + [sym_else] = ACTIONS(4555), + [sym__as_custom] = ACTIONS(4555), + [sym__as_quest_custom] = ACTIONS(4555), + [sym__as_bang_custom] = ACTIONS(4555), + }, + [1376] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4527), + [aux_sym_simple_identifier_token2] = ACTIONS(4529), + [aux_sym_simple_identifier_token3] = ACTIONS(4529), + [aux_sym_simple_identifier_token4] = ACTIONS(4529), + [anon_sym_nil] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_oct_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_BSLASH] = ACTIONS(4527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4541), + [anon_sym_LPAREN] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4543), + [anon_sym_QMARK] = ACTIONS(4546), + [sym__immediate_quest] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4548), + [anon_sym_async] = ACTIONS(4527), + [anon_sym_POUNDselector] = ACTIONS(4529), + [aux_sym_custom_operator_token1] = ACTIONS(4548), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [sym__await_operator] = ACTIONS(4527), + [anon_sym_POUNDfile] = ACTIONS(4527), + [anon_sym_POUNDfileID] = ACTIONS(4529), + [anon_sym_POUNDfilePath] = ACTIONS(4529), + [anon_sym_POUNDline] = ACTIONS(4529), + [anon_sym_POUNDcolumn] = ACTIONS(4529), + [anon_sym_POUNDfunction] = ACTIONS(4529), + [anon_sym_POUNDdsohandle] = ACTIONS(4529), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4529), + [anon_sym_POUNDfileLiteral] = ACTIONS(4529), + [anon_sym_POUNDimageLiteral] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4543), + [anon_sym_self] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_POUNDkeyPath] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_try_BANG] = ACTIONS(4529), + [anon_sym_try_QMARK] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4548), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4548), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4548), + [anon_sym_LT_EQ] = ACTIONS(4548), + [anon_sym_GT_EQ] = ACTIONS(4548), + [anon_sym_is] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_STAR] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4548), + [anon_sym_PERCENT] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4548), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4546), + [anon_sym_LT_LT] = ACTIONS(4546), + [anon_sym_GT_GT] = ACTIONS(4546), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4529), + [sym_raw_str_end_part] = ACTIONS(4529), + [sym__dot_custom] = ACTIONS(4543), + [sym__three_dot_operator_custom] = ACTIONS(4543), + [sym__open_ended_range_operator_custom] = ACTIONS(4543), + [sym__conjunction_operator_custom] = ACTIONS(4541), + [sym__disjunction_operator_custom] = ACTIONS(4541), + [sym__nil_coalescing_operator_custom] = ACTIONS(4541), + [sym__eq_eq_custom] = ACTIONS(4543), + [sym__plus_then_ws] = ACTIONS(4543), + [sym__minus_then_ws] = ACTIONS(4543), + [sym_bang] = ACTIONS(4543), + [sym_else] = ACTIONS(4541), + [sym__as_custom] = ACTIONS(4541), + [sym__as_quest_custom] = ACTIONS(4541), + [sym__as_bang_custom] = ACTIONS(4541), + }, + [1377] = { + [sym__type_level_declaration] = STATE(9164), + [sym_import_declaration] = STATE(9164), + [sym_property_declaration] = STATE(9164), + [sym__modifierless_property_declaration] = STATE(8777), + [sym_typealias_declaration] = STATE(9164), + [sym__modifierless_typealias_declaration] = STATE(8786), + [sym_function_declaration] = STATE(9164), + [sym__bodyless_function_declaration] = STATE(7562), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(9164), + [sym__modifierless_class_declaration] = STATE(8785), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__async_modifier] = STATE(10212), + [sym_protocol_declaration] = STATE(9164), + [sym_deinit_declaration] = STATE(9164), + [sym_subscript_declaration] = STATE(9164), + [sym_operator_declaration] = STATE(9164), + [sym_precedence_group_declaration] = STATE(9164), + [sym_associatedtype_declaration] = STATE(9164), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4662), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5481), + [anon_sym_RBRACE] = ACTIONS(5531), + [anon_sym_import] = ACTIONS(5485), + [anon_sym_typealias] = ACTIONS(5487), + [anon_sym_struct] = ACTIONS(5489), + [anon_sym_class] = ACTIONS(5491), + [anon_sym_enum] = ACTIONS(5493), + [anon_sym_protocol] = ACTIONS(5495), + [anon_sym_let] = ACTIONS(5497), + [anon_sym_var] = ACTIONS(5497), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_extension] = ACTIONS(5499), + [anon_sym_indirect] = ACTIONS(5501), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5503), + [anon_sym_subscript] = ACTIONS(5505), + [anon_sym_prefix] = ACTIONS(5507), + [anon_sym_infix] = ACTIONS(5507), + [anon_sym_postfix] = ACTIONS(5507), + [anon_sym_precedencegroup] = ACTIONS(5509), + [anon_sym_associatedtype] = ACTIONS(5511), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [1378] = { + [sym__type_level_declaration] = STATE(9164), + [sym_import_declaration] = STATE(9164), + [sym_property_declaration] = STATE(9164), + [sym__modifierless_property_declaration] = STATE(8777), + [sym_typealias_declaration] = STATE(9164), + [sym__modifierless_typealias_declaration] = STATE(8786), + [sym_function_declaration] = STATE(9164), + [sym__bodyless_function_declaration] = STATE(7562), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(9164), + [sym__modifierless_class_declaration] = STATE(8785), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__async_modifier] = STATE(10212), + [sym_protocol_declaration] = STATE(9164), + [sym_deinit_declaration] = STATE(9164), + [sym_subscript_declaration] = STATE(9164), + [sym_operator_declaration] = STATE(9164), + [sym_precedence_group_declaration] = STATE(9164), + [sym_associatedtype_declaration] = STATE(9164), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4662), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5481), + [anon_sym_RBRACE] = ACTIONS(5533), + [anon_sym_import] = ACTIONS(5485), + [anon_sym_typealias] = ACTIONS(5487), + [anon_sym_struct] = ACTIONS(5489), + [anon_sym_class] = ACTIONS(5491), + [anon_sym_enum] = ACTIONS(5493), + [anon_sym_protocol] = ACTIONS(5495), + [anon_sym_let] = ACTIONS(5497), + [anon_sym_var] = ACTIONS(5497), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_extension] = ACTIONS(5499), + [anon_sym_indirect] = ACTIONS(5501), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5503), + [anon_sym_subscript] = ACTIONS(5505), + [anon_sym_prefix] = ACTIONS(5507), + [anon_sym_infix] = ACTIONS(5507), + [anon_sym_postfix] = ACTIONS(5507), + [anon_sym_precedencegroup] = ACTIONS(5509), + [anon_sym_associatedtype] = ACTIONS(5511), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [1379] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4917), + [anon_sym_LPAREN] = ACTIONS(4917), + [anon_sym_LBRACK] = ACTIONS(4917), + [anon_sym_QMARK] = ACTIONS(4920), + [sym__immediate_quest] = ACTIONS(4920), + [anon_sym_AMP] = ACTIONS(4920), + [aux_sym_custom_operator_token1] = ACTIONS(4920), + [anon_sym_LT] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4917), + [anon_sym_RBRACE] = ACTIONS(4917), + [anon_sym_case] = ACTIONS(4917), + [anon_sym_fallthrough] = ACTIONS(4917), + [anon_sym_PLUS_EQ] = ACTIONS(4891), + [anon_sym_DASH_EQ] = ACTIONS(4891), + [anon_sym_STAR_EQ] = ACTIONS(4891), + [anon_sym_SLASH_EQ] = ACTIONS(4891), + [anon_sym_PERCENT_EQ] = ACTIONS(4891), + [anon_sym_EQ] = ACTIONS(4891), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4920), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4920), + [anon_sym_LT_EQ] = ACTIONS(4920), + [anon_sym_GT_EQ] = ACTIONS(4920), + [anon_sym_is] = ACTIONS(4917), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_PLUS_PLUS] = ACTIONS(4920), + [anon_sym_DASH_DASH] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_CARET] = ACTIONS(4920), + [anon_sym_LT_LT] = ACTIONS(4920), + [anon_sym_GT_GT] = ACTIONS(4920), + [anon_sym_class] = ACTIONS(4917), + [anon_sym_prefix] = ACTIONS(4917), + [anon_sym_infix] = ACTIONS(4917), + [anon_sym_postfix] = ACTIONS(4917), + [anon_sym_AT] = ACTIONS(4920), + [sym_property_behavior_modifier] = ACTIONS(4917), + [anon_sym_override] = ACTIONS(4917), + [anon_sym_convenience] = ACTIONS(4917), + [anon_sym_required] = ACTIONS(4917), + [anon_sym_public] = ACTIONS(4917), + [anon_sym_private] = ACTIONS(4917), + [anon_sym_internal] = ACTIONS(4917), + [anon_sym_fileprivate] = ACTIONS(4917), + [anon_sym_open] = ACTIONS(4917), + [anon_sym_mutating] = ACTIONS(4917), + [anon_sym_nonmutating] = ACTIONS(4917), + [anon_sym_static] = ACTIONS(4917), + [anon_sym_dynamic] = ACTIONS(4917), + [anon_sym_optional] = ACTIONS(4917), + [anon_sym_final] = ACTIONS(4917), + [anon_sym_inout] = ACTIONS(4917), + [anon_sym_ATescaping] = ACTIONS(4917), + [anon_sym_ATautoclosure] = ACTIONS(4917), + [anon_sym_weak] = ACTIONS(4917), + [anon_sym_unowned] = ACTIONS(4920), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4917), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4917), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4917), + [sym__dot_custom] = ACTIONS(4917), + [sym__three_dot_operator_custom] = ACTIONS(4917), + [sym__open_ended_range_operator_custom] = ACTIONS(4917), + [sym__conjunction_operator_custom] = ACTIONS(4917), + [sym__disjunction_operator_custom] = ACTIONS(4917), + [sym__nil_coalescing_operator_custom] = ACTIONS(4917), + [sym__eq_eq_custom] = ACTIONS(4917), + [sym__plus_then_ws] = ACTIONS(4917), + [sym__minus_then_ws] = ACTIONS(4917), + [sym_bang] = ACTIONS(4917), + [sym_default_keyword] = ACTIONS(4917), + [sym__as_custom] = ACTIONS(4917), + [sym__as_quest_custom] = ACTIONS(4917), + [sym__as_bang_custom] = ACTIONS(4917), + }, + [1380] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4961), + [anon_sym_LPAREN] = ACTIONS(4961), + [anon_sym_LBRACK] = ACTIONS(4961), + [anon_sym_QMARK] = ACTIONS(4963), + [sym__immediate_quest] = ACTIONS(4963), + [anon_sym_AMP] = ACTIONS(4963), + [aux_sym_custom_operator_token1] = ACTIONS(4963), + [anon_sym_LT] = ACTIONS(4963), + [anon_sym_GT] = ACTIONS(4963), + [anon_sym_LBRACE] = ACTIONS(4961), + [anon_sym_RBRACE] = ACTIONS(4961), + [anon_sym_case] = ACTIONS(4961), + [anon_sym_fallthrough] = ACTIONS(4961), + [anon_sym_PLUS_EQ] = ACTIONS(4891), + [anon_sym_DASH_EQ] = ACTIONS(4891), + [anon_sym_STAR_EQ] = ACTIONS(4891), + [anon_sym_SLASH_EQ] = ACTIONS(4891), + [anon_sym_PERCENT_EQ] = ACTIONS(4891), + [anon_sym_EQ] = ACTIONS(4891), + [anon_sym_BANG_EQ] = ACTIONS(4963), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4963), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4963), + [anon_sym_LT_EQ] = ACTIONS(4963), + [anon_sym_GT_EQ] = ACTIONS(4963), + [anon_sym_is] = ACTIONS(4961), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4963), + [anon_sym_SLASH] = ACTIONS(4963), + [anon_sym_PERCENT] = ACTIONS(4963), + [anon_sym_PLUS_PLUS] = ACTIONS(4963), + [anon_sym_DASH_DASH] = ACTIONS(4963), + [anon_sym_PIPE] = ACTIONS(4963), + [anon_sym_CARET] = ACTIONS(4963), + [anon_sym_LT_LT] = ACTIONS(4963), + [anon_sym_GT_GT] = ACTIONS(4963), + [anon_sym_class] = ACTIONS(4961), + [anon_sym_prefix] = ACTIONS(4961), + [anon_sym_infix] = ACTIONS(4961), + [anon_sym_postfix] = ACTIONS(4961), + [anon_sym_AT] = ACTIONS(4963), + [sym_property_behavior_modifier] = ACTIONS(4961), + [anon_sym_override] = ACTIONS(4961), + [anon_sym_convenience] = ACTIONS(4961), + [anon_sym_required] = ACTIONS(4961), + [anon_sym_public] = ACTIONS(4961), + [anon_sym_private] = ACTIONS(4961), + [anon_sym_internal] = ACTIONS(4961), + [anon_sym_fileprivate] = ACTIONS(4961), + [anon_sym_open] = ACTIONS(4961), + [anon_sym_mutating] = ACTIONS(4961), + [anon_sym_nonmutating] = ACTIONS(4961), + [anon_sym_static] = ACTIONS(4961), + [anon_sym_dynamic] = ACTIONS(4961), + [anon_sym_optional] = ACTIONS(4961), + [anon_sym_final] = ACTIONS(4961), + [anon_sym_inout] = ACTIONS(4961), + [anon_sym_ATescaping] = ACTIONS(4961), + [anon_sym_ATautoclosure] = ACTIONS(4961), + [anon_sym_weak] = ACTIONS(4961), + [anon_sym_unowned] = ACTIONS(4963), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4961), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4961), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4961), + [sym__dot_custom] = ACTIONS(4961), + [sym__three_dot_operator_custom] = ACTIONS(4961), + [sym__open_ended_range_operator_custom] = ACTIONS(4961), + [sym__conjunction_operator_custom] = ACTIONS(4961), + [sym__disjunction_operator_custom] = ACTIONS(4961), + [sym__nil_coalescing_operator_custom] = ACTIONS(4961), + [sym__eq_eq_custom] = ACTIONS(4961), + [sym__plus_then_ws] = ACTIONS(4961), + [sym__minus_then_ws] = ACTIONS(4961), + [sym_bang] = ACTIONS(4961), + [sym_default_keyword] = ACTIONS(4961), + [sym__as_custom] = ACTIONS(4961), + [sym__as_quest_custom] = ACTIONS(4961), + [sym__as_bang_custom] = ACTIONS(4961), + }, + [1381] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4927), + [anon_sym_LPAREN] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4927), + [anon_sym_QMARK] = ACTIONS(4929), + [sym__immediate_quest] = ACTIONS(4929), + [anon_sym_AMP] = ACTIONS(4929), + [aux_sym_custom_operator_token1] = ACTIONS(4929), + [anon_sym_LT] = ACTIONS(4929), + [anon_sym_GT] = ACTIONS(4929), + [anon_sym_LBRACE] = ACTIONS(4927), + [anon_sym_RBRACE] = ACTIONS(4927), + [anon_sym_case] = ACTIONS(4927), + [anon_sym_fallthrough] = ACTIONS(4927), + [anon_sym_PLUS_EQ] = ACTIONS(4891), + [anon_sym_DASH_EQ] = ACTIONS(4891), + [anon_sym_STAR_EQ] = ACTIONS(4891), + [anon_sym_SLASH_EQ] = ACTIONS(4891), + [anon_sym_PERCENT_EQ] = ACTIONS(4891), + [anon_sym_EQ] = ACTIONS(4891), + [anon_sym_BANG_EQ] = ACTIONS(4929), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4929), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4929), + [anon_sym_LT_EQ] = ACTIONS(4929), + [anon_sym_GT_EQ] = ACTIONS(4929), + [anon_sym_is] = ACTIONS(4927), + [anon_sym_PLUS] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4929), + [anon_sym_STAR] = ACTIONS(4929), + [anon_sym_SLASH] = ACTIONS(4929), + [anon_sym_PERCENT] = ACTIONS(4929), + [anon_sym_PLUS_PLUS] = ACTIONS(4929), + [anon_sym_DASH_DASH] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4929), + [anon_sym_CARET] = ACTIONS(4929), + [anon_sym_LT_LT] = ACTIONS(4929), + [anon_sym_GT_GT] = ACTIONS(4929), + [anon_sym_class] = ACTIONS(4927), + [anon_sym_prefix] = ACTIONS(4927), + [anon_sym_infix] = ACTIONS(4927), + [anon_sym_postfix] = ACTIONS(4927), + [anon_sym_AT] = ACTIONS(4929), + [sym_property_behavior_modifier] = ACTIONS(4927), + [anon_sym_override] = ACTIONS(4927), + [anon_sym_convenience] = ACTIONS(4927), + [anon_sym_required] = ACTIONS(4927), + [anon_sym_public] = ACTIONS(4927), + [anon_sym_private] = ACTIONS(4927), + [anon_sym_internal] = ACTIONS(4927), + [anon_sym_fileprivate] = ACTIONS(4927), + [anon_sym_open] = ACTIONS(4927), + [anon_sym_mutating] = ACTIONS(4927), + [anon_sym_nonmutating] = ACTIONS(4927), + [anon_sym_static] = ACTIONS(4927), + [anon_sym_dynamic] = ACTIONS(4927), + [anon_sym_optional] = ACTIONS(4927), + [anon_sym_final] = ACTIONS(4927), + [anon_sym_inout] = ACTIONS(4927), + [anon_sym_ATescaping] = ACTIONS(4927), + [anon_sym_ATautoclosure] = ACTIONS(4927), + [anon_sym_weak] = ACTIONS(4927), + [anon_sym_unowned] = ACTIONS(4929), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4927), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4927), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4927), + [sym__dot_custom] = ACTIONS(4927), + [sym__three_dot_operator_custom] = ACTIONS(4927), + [sym__open_ended_range_operator_custom] = ACTIONS(4927), + [sym__conjunction_operator_custom] = ACTIONS(4927), + [sym__disjunction_operator_custom] = ACTIONS(4927), + [sym__nil_coalescing_operator_custom] = ACTIONS(4927), + [sym__eq_eq_custom] = ACTIONS(4927), + [sym__plus_then_ws] = ACTIONS(4927), + [sym__minus_then_ws] = ACTIONS(4927), + [sym_bang] = ACTIONS(4927), + [sym_default_keyword] = ACTIONS(4927), + [sym__as_custom] = ACTIONS(4927), + [sym__as_quest_custom] = ACTIONS(4927), + [sym__as_bang_custom] = ACTIONS(4927), + }, + [1382] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4935), + [anon_sym_LPAREN] = ACTIONS(4935), + [anon_sym_LBRACK] = ACTIONS(4935), + [anon_sym_QMARK] = ACTIONS(4937), + [sym__immediate_quest] = ACTIONS(4937), + [anon_sym_AMP] = ACTIONS(4937), + [aux_sym_custom_operator_token1] = ACTIONS(4937), + [anon_sym_LT] = ACTIONS(4937), + [anon_sym_GT] = ACTIONS(4937), + [anon_sym_LBRACE] = ACTIONS(4935), + [anon_sym_RBRACE] = ACTIONS(4935), + [anon_sym_case] = ACTIONS(4935), + [anon_sym_fallthrough] = ACTIONS(4935), + [anon_sym_PLUS_EQ] = ACTIONS(4937), + [anon_sym_DASH_EQ] = ACTIONS(4937), + [anon_sym_STAR_EQ] = ACTIONS(4937), + [anon_sym_SLASH_EQ] = ACTIONS(4937), + [anon_sym_PERCENT_EQ] = ACTIONS(4937), + [anon_sym_EQ] = ACTIONS(4937), + [anon_sym_BANG_EQ] = ACTIONS(4937), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4937), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4937), + [anon_sym_LT_EQ] = ACTIONS(4937), + [anon_sym_GT_EQ] = ACTIONS(4937), + [anon_sym_is] = ACTIONS(4935), + [anon_sym_PLUS] = ACTIONS(4937), + [anon_sym_DASH] = ACTIONS(4937), + [anon_sym_STAR] = ACTIONS(4937), + [anon_sym_SLASH] = ACTIONS(4937), + [anon_sym_PERCENT] = ACTIONS(4937), + [anon_sym_PLUS_PLUS] = ACTIONS(4937), + [anon_sym_DASH_DASH] = ACTIONS(4937), + [anon_sym_PIPE] = ACTIONS(4937), + [anon_sym_CARET] = ACTIONS(4937), + [anon_sym_LT_LT] = ACTIONS(4937), + [anon_sym_GT_GT] = ACTIONS(4937), + [anon_sym_class] = ACTIONS(4935), + [anon_sym_prefix] = ACTIONS(4935), + [anon_sym_infix] = ACTIONS(4935), + [anon_sym_postfix] = ACTIONS(4935), + [anon_sym_AT] = ACTIONS(4937), + [sym_property_behavior_modifier] = ACTIONS(4935), + [anon_sym_override] = ACTIONS(4935), + [anon_sym_convenience] = ACTIONS(4935), + [anon_sym_required] = ACTIONS(4935), + [anon_sym_public] = ACTIONS(4935), + [anon_sym_private] = ACTIONS(4935), + [anon_sym_internal] = ACTIONS(4935), + [anon_sym_fileprivate] = ACTIONS(4935), + [anon_sym_open] = ACTIONS(4935), + [anon_sym_mutating] = ACTIONS(4935), + [anon_sym_nonmutating] = ACTIONS(4935), + [anon_sym_static] = ACTIONS(4935), + [anon_sym_dynamic] = ACTIONS(4935), + [anon_sym_optional] = ACTIONS(4935), + [anon_sym_final] = ACTIONS(4935), + [anon_sym_inout] = ACTIONS(4935), + [anon_sym_ATescaping] = ACTIONS(4935), + [anon_sym_ATautoclosure] = ACTIONS(4935), + [anon_sym_weak] = ACTIONS(4935), + [anon_sym_unowned] = ACTIONS(4937), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4935), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4935), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4935), + [sym__dot_custom] = ACTIONS(4935), + [sym__three_dot_operator_custom] = ACTIONS(4935), + [sym__open_ended_range_operator_custom] = ACTIONS(4935), + [sym__conjunction_operator_custom] = ACTIONS(4935), + [sym__disjunction_operator_custom] = ACTIONS(4935), + [sym__nil_coalescing_operator_custom] = ACTIONS(4935), + [sym__eq_eq_custom] = ACTIONS(4935), + [sym__plus_then_ws] = ACTIONS(4935), + [sym__minus_then_ws] = ACTIONS(4935), + [sym_bang] = ACTIONS(4935), + [sym_default_keyword] = ACTIONS(4935), + [sym__as_custom] = ACTIONS(4935), + [sym__as_quest_custom] = ACTIONS(4935), + [sym__as_bang_custom] = ACTIONS(4935), + }, + [1383] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4527), + [aux_sym_simple_identifier_token2] = ACTIONS(4529), + [aux_sym_simple_identifier_token3] = ACTIONS(4529), + [aux_sym_simple_identifier_token4] = ACTIONS(4529), + [anon_sym_nil] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_oct_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_BSLASH] = ACTIONS(4527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_QMARK] = ACTIONS(4536), + [sym__immediate_quest] = ACTIONS(4536), + [anon_sym_AMP] = ACTIONS(4538), + [anon_sym_async] = ACTIONS(4527), + [anon_sym_POUNDselector] = ACTIONS(4529), + [aux_sym_custom_operator_token1] = ACTIONS(4538), + [anon_sym_LT] = ACTIONS(4538), + [anon_sym_GT] = ACTIONS(4538), + [sym__await_operator] = ACTIONS(4527), + [anon_sym_POUNDfile] = ACTIONS(4527), + [anon_sym_POUNDfileID] = ACTIONS(4529), + [anon_sym_POUNDfilePath] = ACTIONS(4529), + [anon_sym_POUNDline] = ACTIONS(4529), + [anon_sym_POUNDcolumn] = ACTIONS(4529), + [anon_sym_POUNDfunction] = ACTIONS(4529), + [anon_sym_POUNDdsohandle] = ACTIONS(4529), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4529), + [anon_sym_POUNDfileLiteral] = ACTIONS(4529), + [anon_sym_POUNDimageLiteral] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_self] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_POUNDkeyPath] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_try_BANG] = ACTIONS(4529), + [anon_sym_try_QMARK] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4538), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4538), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4538), + [anon_sym_LT_EQ] = ACTIONS(4538), + [anon_sym_GT_EQ] = ACTIONS(4538), + [anon_sym_is] = ACTIONS(4536), + [anon_sym_PLUS] = ACTIONS(4538), + [anon_sym_DASH] = ACTIONS(4538), + [anon_sym_STAR] = ACTIONS(4538), + [anon_sym_SLASH] = ACTIONS(4538), + [anon_sym_PERCENT] = ACTIONS(4538), + [anon_sym_PLUS_PLUS] = ACTIONS(4538), + [anon_sym_DASH_DASH] = ACTIONS(4538), + [anon_sym_TILDE] = ACTIONS(4527), + [anon_sym_PIPE] = ACTIONS(4536), + [anon_sym_CARET] = ACTIONS(4536), + [anon_sym_LT_LT] = ACTIONS(4536), + [anon_sym_GT_GT] = ACTIONS(4536), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4529), + [sym_raw_str_end_part] = ACTIONS(4529), + [sym__dot_custom] = ACTIONS(4533), + [sym__three_dot_operator_custom] = ACTIONS(4533), + [sym__open_ended_range_operator_custom] = ACTIONS(4533), + [sym__conjunction_operator_custom] = ACTIONS(4531), + [sym__disjunction_operator_custom] = ACTIONS(4531), + [sym__nil_coalescing_operator_custom] = ACTIONS(4531), + [sym__eq_eq_custom] = ACTIONS(4533), + [sym__plus_then_ws] = ACTIONS(4533), + [sym__minus_then_ws] = ACTIONS(4533), + [sym_bang] = ACTIONS(4533), + [sym_else] = ACTIONS(4531), + [sym__as_custom] = ACTIONS(4531), + [sym__as_quest_custom] = ACTIONS(4531), + [sym__as_bang_custom] = ACTIONS(4531), + }, + [1384] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4979), + [anon_sym_LPAREN] = ACTIONS(4979), + [anon_sym_LBRACK] = ACTIONS(4979), + [anon_sym_QMARK] = ACTIONS(4981), + [sym__immediate_quest] = ACTIONS(4981), + [anon_sym_AMP] = ACTIONS(4981), + [aux_sym_custom_operator_token1] = ACTIONS(4981), + [anon_sym_LT] = ACTIONS(4981), + [anon_sym_GT] = ACTIONS(4981), + [anon_sym_LBRACE] = ACTIONS(4979), + [anon_sym_RBRACE] = ACTIONS(4979), + [anon_sym_case] = ACTIONS(4979), + [anon_sym_fallthrough] = ACTIONS(4979), + [anon_sym_PLUS_EQ] = ACTIONS(4981), + [anon_sym_DASH_EQ] = ACTIONS(4981), + [anon_sym_STAR_EQ] = ACTIONS(4981), + [anon_sym_SLASH_EQ] = ACTIONS(4981), + [anon_sym_PERCENT_EQ] = ACTIONS(4981), + [anon_sym_EQ] = ACTIONS(4981), + [anon_sym_BANG_EQ] = ACTIONS(4981), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4981), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4981), + [anon_sym_LT_EQ] = ACTIONS(4981), + [anon_sym_GT_EQ] = ACTIONS(4981), + [anon_sym_is] = ACTIONS(4979), + [anon_sym_PLUS] = ACTIONS(4981), + [anon_sym_DASH] = ACTIONS(4981), + [anon_sym_STAR] = ACTIONS(4981), + [anon_sym_SLASH] = ACTIONS(4981), + [anon_sym_PERCENT] = ACTIONS(4981), + [anon_sym_PLUS_PLUS] = ACTIONS(4981), + [anon_sym_DASH_DASH] = ACTIONS(4981), + [anon_sym_PIPE] = ACTIONS(4981), + [anon_sym_CARET] = ACTIONS(4981), + [anon_sym_LT_LT] = ACTIONS(4981), + [anon_sym_GT_GT] = ACTIONS(4981), + [anon_sym_class] = ACTIONS(4979), + [anon_sym_prefix] = ACTIONS(4979), + [anon_sym_infix] = ACTIONS(4979), + [anon_sym_postfix] = ACTIONS(4979), + [anon_sym_AT] = ACTIONS(4981), + [sym_property_behavior_modifier] = ACTIONS(4979), + [anon_sym_override] = ACTIONS(4979), + [anon_sym_convenience] = ACTIONS(4979), + [anon_sym_required] = ACTIONS(4979), + [anon_sym_public] = ACTIONS(4979), + [anon_sym_private] = ACTIONS(4979), + [anon_sym_internal] = ACTIONS(4979), + [anon_sym_fileprivate] = ACTIONS(4979), + [anon_sym_open] = ACTIONS(4979), + [anon_sym_mutating] = ACTIONS(4979), + [anon_sym_nonmutating] = ACTIONS(4979), + [anon_sym_static] = ACTIONS(4979), + [anon_sym_dynamic] = ACTIONS(4979), + [anon_sym_optional] = ACTIONS(4979), + [anon_sym_final] = ACTIONS(4979), + [anon_sym_inout] = ACTIONS(4979), + [anon_sym_ATescaping] = ACTIONS(4979), + [anon_sym_ATautoclosure] = ACTIONS(4979), + [anon_sym_weak] = ACTIONS(4979), + [anon_sym_unowned] = ACTIONS(4981), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4979), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4979), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4979), + [sym__dot_custom] = ACTIONS(4979), + [sym__three_dot_operator_custom] = ACTIONS(4979), + [sym__open_ended_range_operator_custom] = ACTIONS(4979), + [sym__conjunction_operator_custom] = ACTIONS(4979), + [sym__disjunction_operator_custom] = ACTIONS(4979), + [sym__nil_coalescing_operator_custom] = ACTIONS(4979), + [sym__eq_eq_custom] = ACTIONS(4979), + [sym__plus_then_ws] = ACTIONS(4979), + [sym__minus_then_ws] = ACTIONS(4979), + [sym_bang] = ACTIONS(4979), + [sym_default_keyword] = ACTIONS(4979), + [sym__as_custom] = ACTIONS(4979), + [sym__as_quest_custom] = ACTIONS(4979), + [sym__as_bang_custom] = ACTIONS(4979), + }, + [1385] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4551), + [aux_sym_simple_identifier_token2] = ACTIONS(4553), + [aux_sym_simple_identifier_token3] = ACTIONS(4553), + [aux_sym_simple_identifier_token4] = ACTIONS(4553), + [anon_sym_nil] = ACTIONS(4551), + [sym_real_literal] = ACTIONS(4553), + [sym_integer_literal] = ACTIONS(4551), + [sym_hex_literal] = ACTIONS(4553), + [sym_oct_literal] = ACTIONS(4553), + [sym_bin_literal] = ACTIONS(4553), + [anon_sym_true] = ACTIONS(4551), + [anon_sym_false] = ACTIONS(4551), + [anon_sym_DQUOTE] = ACTIONS(4551), + [anon_sym_BSLASH] = ACTIONS(4551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_QMARK] = ACTIONS(4561), + [sym__immediate_quest] = ACTIONS(4561), + [anon_sym_AMP] = ACTIONS(4551), + [anon_sym_async] = ACTIONS(4551), + [anon_sym_POUNDselector] = ACTIONS(4553), + [aux_sym_custom_operator_token1] = ACTIONS(4551), + [anon_sym_LT] = ACTIONS(4551), + [anon_sym_GT] = ACTIONS(4551), + [sym__await_operator] = ACTIONS(4551), + [anon_sym_POUNDfile] = ACTIONS(4551), + [anon_sym_POUNDfileID] = ACTIONS(4553), + [anon_sym_POUNDfilePath] = ACTIONS(4553), + [anon_sym_POUNDline] = ACTIONS(4553), + [anon_sym_POUNDcolumn] = ACTIONS(4553), + [anon_sym_POUNDfunction] = ACTIONS(4553), + [anon_sym_POUNDdsohandle] = ACTIONS(4553), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4553), + [anon_sym_POUNDfileLiteral] = ACTIONS(4553), + [anon_sym_POUNDimageLiteral] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_self] = ACTIONS(4551), + [anon_sym_super] = ACTIONS(4551), + [anon_sym_POUNDkeyPath] = ACTIONS(4553), + [anon_sym_try] = ACTIONS(4551), + [anon_sym_try_BANG] = ACTIONS(4553), + [anon_sym_try_QMARK] = ACTIONS(4553), + [anon_sym_BANG_EQ] = ACTIONS(4551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4551), + [anon_sym_GT_EQ] = ACTIONS(4551), + [anon_sym_is] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4551), + [anon_sym_DASH] = ACTIONS(4551), + [anon_sym_STAR] = ACTIONS(4551), + [anon_sym_SLASH] = ACTIONS(4551), + [anon_sym_PERCENT] = ACTIONS(4551), + [anon_sym_PLUS_PLUS] = ACTIONS(4551), + [anon_sym_DASH_DASH] = ACTIONS(4551), + [anon_sym_TILDE] = ACTIONS(4551), + [anon_sym_PIPE] = ACTIONS(4561), + [anon_sym_CARET] = ACTIONS(4561), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4553), + [sym_raw_str_end_part] = ACTIONS(4553), + [sym__dot_custom] = ACTIONS(4553), + [sym__three_dot_operator_custom] = ACTIONS(4553), + [sym__open_ended_range_operator_custom] = ACTIONS(4553), + [sym__conjunction_operator_custom] = ACTIONS(4559), + [sym__disjunction_operator_custom] = ACTIONS(4559), + [sym__nil_coalescing_operator_custom] = ACTIONS(4559), + [sym__eq_eq_custom] = ACTIONS(4553), + [sym__plus_then_ws] = ACTIONS(4553), + [sym__minus_then_ws] = ACTIONS(4553), + [sym_bang] = ACTIONS(4553), + [sym_else] = ACTIONS(4559), + [sym__as_custom] = ACTIONS(4559), + [sym__as_quest_custom] = ACTIONS(4559), + [sym__as_bang_custom] = ACTIONS(4559), + }, + [1386] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4570), + [aux_sym_simple_identifier_token2] = ACTIONS(4572), + [aux_sym_simple_identifier_token3] = ACTIONS(4572), + [aux_sym_simple_identifier_token4] = ACTIONS(4572), + [anon_sym_nil] = ACTIONS(4570), + [sym_real_literal] = ACTIONS(4572), + [sym_integer_literal] = ACTIONS(4570), + [sym_hex_literal] = ACTIONS(4572), + [sym_oct_literal] = ACTIONS(4572), + [sym_bin_literal] = ACTIONS(4572), + [anon_sym_true] = ACTIONS(4570), + [anon_sym_false] = ACTIONS(4570), + [anon_sym_DQUOTE] = ACTIONS(4570), + [anon_sym_BSLASH] = ACTIONS(4570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4572), + [anon_sym_COMMA] = ACTIONS(4572), + [anon_sym_LPAREN] = ACTIONS(4572), + [anon_sym_LBRACK] = ACTIONS(4572), + [anon_sym_QMARK] = ACTIONS(4570), + [sym__immediate_quest] = ACTIONS(4570), + [anon_sym_AMP] = ACTIONS(4570), + [anon_sym_async] = ACTIONS(4570), + [anon_sym_POUNDselector] = ACTIONS(4572), + [aux_sym_custom_operator_token1] = ACTIONS(4570), + [anon_sym_LT] = ACTIONS(4570), + [anon_sym_GT] = ACTIONS(4570), + [sym__await_operator] = ACTIONS(4570), + [anon_sym_POUNDfile] = ACTIONS(4570), + [anon_sym_POUNDfileID] = ACTIONS(4572), + [anon_sym_POUNDfilePath] = ACTIONS(4572), + [anon_sym_POUNDline] = ACTIONS(4572), + [anon_sym_POUNDcolumn] = ACTIONS(4572), + [anon_sym_POUNDfunction] = ACTIONS(4572), + [anon_sym_POUNDdsohandle] = ACTIONS(4572), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4572), + [anon_sym_POUNDfileLiteral] = ACTIONS(4572), + [anon_sym_POUNDimageLiteral] = ACTIONS(4572), + [anon_sym_LBRACE] = ACTIONS(4572), + [anon_sym_self] = ACTIONS(4570), + [anon_sym_super] = ACTIONS(4570), + [anon_sym_POUNDkeyPath] = ACTIONS(4572), + [anon_sym_try] = ACTIONS(4570), + [anon_sym_try_BANG] = ACTIONS(4572), + [anon_sym_try_QMARK] = ACTIONS(4572), + [anon_sym_BANG_EQ] = ACTIONS(4570), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4570), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4570), + [anon_sym_LT_EQ] = ACTIONS(4570), + [anon_sym_GT_EQ] = ACTIONS(4570), + [anon_sym_is] = ACTIONS(4570), + [anon_sym_PLUS] = ACTIONS(4570), + [anon_sym_DASH] = ACTIONS(4570), + [anon_sym_STAR] = ACTIONS(4570), + [anon_sym_SLASH] = ACTIONS(4570), + [anon_sym_PERCENT] = ACTIONS(4570), + [anon_sym_PLUS_PLUS] = ACTIONS(4570), + [anon_sym_DASH_DASH] = ACTIONS(4570), + [anon_sym_TILDE] = ACTIONS(4570), + [anon_sym_PIPE] = ACTIONS(4570), + [anon_sym_CARET] = ACTIONS(4570), + [anon_sym_LT_LT] = ACTIONS(4570), + [anon_sym_GT_GT] = ACTIONS(4570), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4572), + [sym_raw_str_end_part] = ACTIONS(4572), + [sym__dot_custom] = ACTIONS(4572), + [sym__three_dot_operator_custom] = ACTIONS(4572), + [sym__open_ended_range_operator_custom] = ACTIONS(4572), + [sym__conjunction_operator_custom] = ACTIONS(4572), + [sym__disjunction_operator_custom] = ACTIONS(4572), + [sym__nil_coalescing_operator_custom] = ACTIONS(4572), + [sym__eq_eq_custom] = ACTIONS(4572), + [sym__plus_then_ws] = ACTIONS(4572), + [sym__minus_then_ws] = ACTIONS(4572), + [sym_bang] = ACTIONS(4572), + [sym_else] = ACTIONS(4572), + [sym__as_custom] = ACTIONS(4572), + [sym__as_quest_custom] = ACTIONS(4572), + [sym__as_bang_custom] = ACTIONS(4572), + }, + [1387] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4983), + [anon_sym_LBRACK] = ACTIONS(4983), + [anon_sym_DOT] = ACTIONS(4985), + [anon_sym_QMARK] = ACTIONS(4985), + [sym__immediate_quest] = ACTIONS(4985), + [anon_sym_AMP] = ACTIONS(4985), + [aux_sym_custom_operator_token1] = ACTIONS(4985), + [anon_sym_LT] = ACTIONS(4985), + [anon_sym_GT] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4983), + [anon_sym_RBRACE] = ACTIONS(4983), + [anon_sym_case] = ACTIONS(4983), + [anon_sym_fallthrough] = ACTIONS(4983), + [anon_sym_BANG_EQ] = ACTIONS(4985), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4985), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4985), + [anon_sym_LT_EQ] = ACTIONS(4985), + [anon_sym_GT_EQ] = ACTIONS(4985), + [anon_sym_is] = ACTIONS(4983), + [anon_sym_PLUS] = ACTIONS(4985), + [anon_sym_DASH] = ACTIONS(4985), + [anon_sym_STAR] = ACTIONS(4985), + [anon_sym_SLASH] = ACTIONS(4985), + [anon_sym_PERCENT] = ACTIONS(4985), + [anon_sym_PLUS_PLUS] = ACTIONS(4985), + [anon_sym_DASH_DASH] = ACTIONS(4985), + [anon_sym_PIPE] = ACTIONS(4985), + [anon_sym_CARET] = ACTIONS(4985), + [anon_sym_LT_LT] = ACTIONS(4985), + [anon_sym_GT_GT] = ACTIONS(4985), + [anon_sym_class] = ACTIONS(4983), + [anon_sym_prefix] = ACTIONS(4983), + [anon_sym_infix] = ACTIONS(4983), + [anon_sym_postfix] = ACTIONS(4983), + [anon_sym_AT] = ACTIONS(4985), + [sym_property_behavior_modifier] = ACTIONS(4983), + [anon_sym_override] = ACTIONS(4983), + [anon_sym_convenience] = ACTIONS(4983), + [anon_sym_required] = ACTIONS(4983), + [anon_sym_public] = ACTIONS(4983), + [anon_sym_private] = ACTIONS(4983), + [anon_sym_internal] = ACTIONS(4983), + [anon_sym_fileprivate] = ACTIONS(4983), + [anon_sym_open] = ACTIONS(4983), + [anon_sym_mutating] = ACTIONS(4983), + [anon_sym_nonmutating] = ACTIONS(4983), + [anon_sym_static] = ACTIONS(4983), + [anon_sym_dynamic] = ACTIONS(4983), + [anon_sym_optional] = ACTIONS(4983), + [anon_sym_final] = ACTIONS(4983), + [anon_sym_inout] = ACTIONS(4983), + [anon_sym_ATescaping] = ACTIONS(4983), + [anon_sym_ATautoclosure] = ACTIONS(4983), + [anon_sym_weak] = ACTIONS(4983), + [anon_sym_unowned] = ACTIONS(4985), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4983), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4983), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4983), + [sym__arrow_operator_custom] = ACTIONS(4983), + [sym__dot_custom] = ACTIONS(4983), + [sym__three_dot_operator_custom] = ACTIONS(4983), + [sym__open_ended_range_operator_custom] = ACTIONS(4983), + [sym__conjunction_operator_custom] = ACTIONS(4983), + [sym__disjunction_operator_custom] = ACTIONS(4983), + [sym__nil_coalescing_operator_custom] = ACTIONS(4983), + [sym__eq_eq_custom] = ACTIONS(4983), + [sym__plus_then_ws] = ACTIONS(4983), + [sym__minus_then_ws] = ACTIONS(4983), + [sym_bang] = ACTIONS(4983), + [sym__throws_keyword] = ACTIONS(4983), + [sym__rethrows_keyword] = ACTIONS(4983), + [sym_default_keyword] = ACTIONS(4983), + [sym__as_custom] = ACTIONS(4983), + [sym__as_quest_custom] = ACTIONS(4983), + [sym__as_bang_custom] = ACTIONS(4983), + [sym__async_keyword_custom] = ACTIONS(4983), + }, + [1388] = { + [sym__type_level_declaration] = STATE(9164), + [sym_import_declaration] = STATE(9164), + [sym_property_declaration] = STATE(9164), + [sym__modifierless_property_declaration] = STATE(8777), + [sym_typealias_declaration] = STATE(9164), + [sym__modifierless_typealias_declaration] = STATE(8786), + [sym_function_declaration] = STATE(9164), + [sym__bodyless_function_declaration] = STATE(7562), + [sym__modifierless_function_declaration_no_body] = STATE(10425), + [sym_class_declaration] = STATE(9164), + [sym__modifierless_class_declaration] = STATE(8785), + [sym__constructor_function_decl] = STATE(7245), + [sym__non_constructor_function_decl] = STATE(7244), + [sym__async_modifier] = STATE(10212), + [sym_protocol_declaration] = STATE(9164), + [sym_deinit_declaration] = STATE(9164), + [sym_subscript_declaration] = STATE(9164), + [sym_operator_declaration] = STATE(9164), + [sym_precedence_group_declaration] = STATE(9164), + [sym_associatedtype_declaration] = STATE(9164), + [sym_attribute] = STATE(2680), + [sym_modifiers] = STATE(4662), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5481), + [anon_sym_import] = ACTIONS(5485), + [anon_sym_typealias] = ACTIONS(5487), + [anon_sym_struct] = ACTIONS(5489), + [anon_sym_class] = ACTIONS(5491), + [anon_sym_enum] = ACTIONS(5493), + [anon_sym_protocol] = ACTIONS(5495), + [anon_sym_let] = ACTIONS(5497), + [anon_sym_var] = ACTIONS(5497), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_extension] = ACTIONS(5499), + [anon_sym_indirect] = ACTIONS(5501), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5503), + [anon_sym_subscript] = ACTIONS(5505), + [anon_sym_prefix] = ACTIONS(5507), + [anon_sym_infix] = ACTIONS(5507), + [anon_sym_postfix] = ACTIONS(5507), + [anon_sym_precedencegroup] = ACTIONS(5509), + [anon_sym_associatedtype] = ACTIONS(5511), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [1389] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4991), + [anon_sym_LPAREN] = ACTIONS(4991), + [anon_sym_LBRACK] = ACTIONS(4991), + [anon_sym_DOT] = ACTIONS(4993), + [anon_sym_QMARK] = ACTIONS(4993), + [sym__immediate_quest] = ACTIONS(4993), + [anon_sym_AMP] = ACTIONS(4993), + [aux_sym_custom_operator_token1] = ACTIONS(4993), + [anon_sym_LT] = ACTIONS(4993), + [anon_sym_GT] = ACTIONS(4993), + [anon_sym_LBRACE] = ACTIONS(4991), + [anon_sym_RBRACE] = ACTIONS(4991), + [anon_sym_case] = ACTIONS(4991), + [anon_sym_fallthrough] = ACTIONS(4991), + [anon_sym_BANG_EQ] = ACTIONS(4993), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4993), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4993), + [anon_sym_LT_EQ] = ACTIONS(4993), + [anon_sym_GT_EQ] = ACTIONS(4993), + [anon_sym_is] = ACTIONS(4991), + [anon_sym_PLUS] = ACTIONS(4993), + [anon_sym_DASH] = ACTIONS(4993), + [anon_sym_STAR] = ACTIONS(4993), + [anon_sym_SLASH] = ACTIONS(4993), + [anon_sym_PERCENT] = ACTIONS(4993), + [anon_sym_PLUS_PLUS] = ACTIONS(4993), + [anon_sym_DASH_DASH] = ACTIONS(4993), + [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_CARET] = ACTIONS(4993), + [anon_sym_LT_LT] = ACTIONS(4993), + [anon_sym_GT_GT] = ACTIONS(4993), + [anon_sym_class] = ACTIONS(4991), + [anon_sym_prefix] = ACTIONS(4991), + [anon_sym_infix] = ACTIONS(4991), + [anon_sym_postfix] = ACTIONS(4991), + [anon_sym_AT] = ACTIONS(4993), + [sym_property_behavior_modifier] = ACTIONS(4991), + [anon_sym_override] = ACTIONS(4991), + [anon_sym_convenience] = ACTIONS(4991), + [anon_sym_required] = ACTIONS(4991), + [anon_sym_public] = ACTIONS(4991), + [anon_sym_private] = ACTIONS(4991), + [anon_sym_internal] = ACTIONS(4991), + [anon_sym_fileprivate] = ACTIONS(4991), + [anon_sym_open] = ACTIONS(4991), + [anon_sym_mutating] = ACTIONS(4991), + [anon_sym_nonmutating] = ACTIONS(4991), + [anon_sym_static] = ACTIONS(4991), + [anon_sym_dynamic] = ACTIONS(4991), + [anon_sym_optional] = ACTIONS(4991), + [anon_sym_final] = ACTIONS(4991), + [anon_sym_inout] = ACTIONS(4991), + [anon_sym_ATescaping] = ACTIONS(4991), + [anon_sym_ATautoclosure] = ACTIONS(4991), + [anon_sym_weak] = ACTIONS(4991), + [anon_sym_unowned] = ACTIONS(4993), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4991), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4991), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4991), + [sym__arrow_operator_custom] = ACTIONS(4991), + [sym__dot_custom] = ACTIONS(4991), + [sym__three_dot_operator_custom] = ACTIONS(4991), + [sym__open_ended_range_operator_custom] = ACTIONS(4991), + [sym__conjunction_operator_custom] = ACTIONS(4991), + [sym__disjunction_operator_custom] = ACTIONS(4991), + [sym__nil_coalescing_operator_custom] = ACTIONS(4991), + [sym__eq_eq_custom] = ACTIONS(4991), + [sym__plus_then_ws] = ACTIONS(4991), + [sym__minus_then_ws] = ACTIONS(4991), + [sym_bang] = ACTIONS(4991), + [sym__throws_keyword] = ACTIONS(4991), + [sym__rethrows_keyword] = ACTIONS(4991), + [sym_default_keyword] = ACTIONS(4991), + [sym__as_custom] = ACTIONS(4991), + [sym__as_quest_custom] = ACTIONS(4991), + [sym__as_bang_custom] = ACTIONS(4991), + [sym__async_keyword_custom] = ACTIONS(4991), + }, + [1390] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4987), + [anon_sym_LPAREN] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(4987), + [anon_sym_DOT] = ACTIONS(4989), + [anon_sym_QMARK] = ACTIONS(4989), + [sym__immediate_quest] = ACTIONS(4989), + [anon_sym_AMP] = ACTIONS(4989), + [aux_sym_custom_operator_token1] = ACTIONS(4989), + [anon_sym_LT] = ACTIONS(4989), + [anon_sym_GT] = ACTIONS(4989), + [anon_sym_LBRACE] = ACTIONS(4987), + [anon_sym_RBRACE] = ACTIONS(4987), + [anon_sym_case] = ACTIONS(4987), + [anon_sym_fallthrough] = ACTIONS(4987), + [anon_sym_BANG_EQ] = ACTIONS(4989), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4989), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4989), + [anon_sym_LT_EQ] = ACTIONS(4989), + [anon_sym_GT_EQ] = ACTIONS(4989), + [anon_sym_is] = ACTIONS(4987), + [anon_sym_PLUS] = ACTIONS(4989), + [anon_sym_DASH] = ACTIONS(4989), + [anon_sym_STAR] = ACTIONS(4989), + [anon_sym_SLASH] = ACTIONS(4989), + [anon_sym_PERCENT] = ACTIONS(4989), + [anon_sym_PLUS_PLUS] = ACTIONS(4989), + [anon_sym_DASH_DASH] = ACTIONS(4989), + [anon_sym_PIPE] = ACTIONS(4989), + [anon_sym_CARET] = ACTIONS(4989), + [anon_sym_LT_LT] = ACTIONS(4989), + [anon_sym_GT_GT] = ACTIONS(4989), + [anon_sym_class] = ACTIONS(4987), + [anon_sym_prefix] = ACTIONS(4987), + [anon_sym_infix] = ACTIONS(4987), + [anon_sym_postfix] = ACTIONS(4987), + [anon_sym_AT] = ACTIONS(4989), + [sym_property_behavior_modifier] = ACTIONS(4987), + [anon_sym_override] = ACTIONS(4987), + [anon_sym_convenience] = ACTIONS(4987), + [anon_sym_required] = ACTIONS(4987), + [anon_sym_public] = ACTIONS(4987), + [anon_sym_private] = ACTIONS(4987), + [anon_sym_internal] = ACTIONS(4987), + [anon_sym_fileprivate] = ACTIONS(4987), + [anon_sym_open] = ACTIONS(4987), + [anon_sym_mutating] = ACTIONS(4987), + [anon_sym_nonmutating] = ACTIONS(4987), + [anon_sym_static] = ACTIONS(4987), + [anon_sym_dynamic] = ACTIONS(4987), + [anon_sym_optional] = ACTIONS(4987), + [anon_sym_final] = ACTIONS(4987), + [anon_sym_inout] = ACTIONS(4987), + [anon_sym_ATescaping] = ACTIONS(4987), + [anon_sym_ATautoclosure] = ACTIONS(4987), + [anon_sym_weak] = ACTIONS(4987), + [anon_sym_unowned] = ACTIONS(4989), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4987), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4987), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4987), + [sym__arrow_operator_custom] = ACTIONS(4987), + [sym__dot_custom] = ACTIONS(4987), + [sym__three_dot_operator_custom] = ACTIONS(4987), + [sym__open_ended_range_operator_custom] = ACTIONS(4987), + [sym__conjunction_operator_custom] = ACTIONS(4987), + [sym__disjunction_operator_custom] = ACTIONS(4987), + [sym__nil_coalescing_operator_custom] = ACTIONS(4987), + [sym__eq_eq_custom] = ACTIONS(4987), + [sym__plus_then_ws] = ACTIONS(4987), + [sym__minus_then_ws] = ACTIONS(4987), + [sym_bang] = ACTIONS(4987), + [sym__throws_keyword] = ACTIONS(4987), + [sym__rethrows_keyword] = ACTIONS(4987), + [sym_default_keyword] = ACTIONS(4987), + [sym__as_custom] = ACTIONS(4987), + [sym__as_quest_custom] = ACTIONS(4987), + [sym__as_bang_custom] = ACTIONS(4987), + [sym__async_keyword_custom] = ACTIONS(4987), + }, + [1391] = { + [sym__key_path_postfixes] = STATE(1394), + [aux_sym__key_path_component_repeat1] = STATE(1394), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5014), + [anon_sym_LPAREN] = ACTIONS(5014), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5016), + [sym__immediate_quest] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5016), + [aux_sym_custom_operator_token1] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5016), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5014), + [anon_sym_RBRACE] = ACTIONS(5014), + [anon_sym_self] = ACTIONS(5535), + [anon_sym_case] = ACTIONS(5014), + [anon_sym_fallthrough] = ACTIONS(5014), + [anon_sym_BANG_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5016), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_is] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_CARET] = ACTIONS(5016), + [anon_sym_LT_LT] = ACTIONS(5016), + [anon_sym_GT_GT] = ACTIONS(5016), + [anon_sym_class] = ACTIONS(5014), + [anon_sym_prefix] = ACTIONS(5014), + [anon_sym_infix] = ACTIONS(5014), + [anon_sym_postfix] = ACTIONS(5014), + [anon_sym_AT] = ACTIONS(5016), + [sym_property_behavior_modifier] = ACTIONS(5014), + [anon_sym_override] = ACTIONS(5014), + [anon_sym_convenience] = ACTIONS(5014), + [anon_sym_required] = ACTIONS(5014), + [anon_sym_public] = ACTIONS(5014), + [anon_sym_private] = ACTIONS(5014), + [anon_sym_internal] = ACTIONS(5014), + [anon_sym_fileprivate] = ACTIONS(5014), + [anon_sym_open] = ACTIONS(5014), + [anon_sym_mutating] = ACTIONS(5014), + [anon_sym_nonmutating] = ACTIONS(5014), + [anon_sym_static] = ACTIONS(5014), + [anon_sym_dynamic] = ACTIONS(5014), + [anon_sym_optional] = ACTIONS(5014), + [anon_sym_final] = ACTIONS(5014), + [anon_sym_inout] = ACTIONS(5014), + [anon_sym_ATescaping] = ACTIONS(5014), + [anon_sym_ATautoclosure] = ACTIONS(5014), + [anon_sym_weak] = ACTIONS(5014), + [anon_sym_unowned] = ACTIONS(5016), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5014), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5014), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5014), + [sym__dot_custom] = ACTIONS(5014), + [sym__three_dot_operator_custom] = ACTIONS(5014), + [sym__open_ended_range_operator_custom] = ACTIONS(5014), + [sym__conjunction_operator_custom] = ACTIONS(5014), + [sym__disjunction_operator_custom] = ACTIONS(5014), + [sym__nil_coalescing_operator_custom] = ACTIONS(5014), + [sym__eq_eq_custom] = ACTIONS(5014), + [sym__plus_then_ws] = ACTIONS(5014), + [sym__minus_then_ws] = ACTIONS(5014), + [sym_bang] = ACTIONS(5014), + [sym_default_keyword] = ACTIONS(5014), + [sym__as_custom] = ACTIONS(5014), + [sym__as_quest_custom] = ACTIONS(5014), + [sym__as_bang_custom] = ACTIONS(5014), + }, + [1392] = { + [sym__key_path_postfixes] = STATE(1392), + [aux_sym__key_path_component_repeat1] = STATE(1392), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5001), + [anon_sym_LPAREN] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(5537), + [anon_sym_DOT] = ACTIONS(5006), + [anon_sym_QMARK] = ACTIONS(5540), + [sym__immediate_quest] = ACTIONS(5006), + [anon_sym_AMP] = ACTIONS(5006), + [aux_sym_custom_operator_token1] = ACTIONS(5006), + [anon_sym_LT] = ACTIONS(5006), + [anon_sym_GT] = ACTIONS(5006), + [anon_sym_LBRACE] = ACTIONS(5001), + [anon_sym_RBRACE] = ACTIONS(5001), + [anon_sym_self] = ACTIONS(5543), + [anon_sym_case] = ACTIONS(5001), + [anon_sym_fallthrough] = ACTIONS(5001), + [anon_sym_BANG_EQ] = ACTIONS(5006), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5006), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5006), + [anon_sym_LT_EQ] = ACTIONS(5006), + [anon_sym_GT_EQ] = ACTIONS(5006), + [anon_sym_is] = ACTIONS(5001), + [anon_sym_PLUS] = ACTIONS(5006), + [anon_sym_DASH] = ACTIONS(5006), + [anon_sym_STAR] = ACTIONS(5006), + [anon_sym_SLASH] = ACTIONS(5006), + [anon_sym_PERCENT] = ACTIONS(5006), + [anon_sym_PLUS_PLUS] = ACTIONS(5006), + [anon_sym_DASH_DASH] = ACTIONS(5006), + [anon_sym_PIPE] = ACTIONS(5006), + [anon_sym_CARET] = ACTIONS(5006), + [anon_sym_LT_LT] = ACTIONS(5006), + [anon_sym_GT_GT] = ACTIONS(5006), + [anon_sym_class] = ACTIONS(5001), + [anon_sym_prefix] = ACTIONS(5001), + [anon_sym_infix] = ACTIONS(5001), + [anon_sym_postfix] = ACTIONS(5001), + [anon_sym_AT] = ACTIONS(5006), + [sym_property_behavior_modifier] = ACTIONS(5001), + [anon_sym_override] = ACTIONS(5001), + [anon_sym_convenience] = ACTIONS(5001), + [anon_sym_required] = ACTIONS(5001), + [anon_sym_public] = ACTIONS(5001), + [anon_sym_private] = ACTIONS(5001), + [anon_sym_internal] = ACTIONS(5001), + [anon_sym_fileprivate] = ACTIONS(5001), + [anon_sym_open] = ACTIONS(5001), + [anon_sym_mutating] = ACTIONS(5001), + [anon_sym_nonmutating] = ACTIONS(5001), + [anon_sym_static] = ACTIONS(5001), + [anon_sym_dynamic] = ACTIONS(5001), + [anon_sym_optional] = ACTIONS(5001), + [anon_sym_final] = ACTIONS(5001), + [anon_sym_inout] = ACTIONS(5001), + [anon_sym_ATescaping] = ACTIONS(5001), + [anon_sym_ATautoclosure] = ACTIONS(5001), + [anon_sym_weak] = ACTIONS(5001), + [anon_sym_unowned] = ACTIONS(5006), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5001), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5001), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5001), + [sym__dot_custom] = ACTIONS(5001), + [sym__three_dot_operator_custom] = ACTIONS(5001), + [sym__open_ended_range_operator_custom] = ACTIONS(5001), + [sym__conjunction_operator_custom] = ACTIONS(5001), + [sym__disjunction_operator_custom] = ACTIONS(5001), + [sym__nil_coalescing_operator_custom] = ACTIONS(5001), + [sym__eq_eq_custom] = ACTIONS(5001), + [sym__plus_then_ws] = ACTIONS(5001), + [sym__minus_then_ws] = ACTIONS(5001), + [sym_bang] = ACTIONS(5543), + [sym_default_keyword] = ACTIONS(5001), + [sym__as_custom] = ACTIONS(5001), + [sym__as_quest_custom] = ACTIONS(5001), + [sym__as_bang_custom] = ACTIONS(5001), + }, + [1393] = { + [sym__key_path_postfixes] = STATE(1392), + [aux_sym__key_path_component_repeat1] = STATE(1392), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5014), + [anon_sym_LPAREN] = ACTIONS(5014), + [anon_sym_LBRACK] = ACTIONS(5014), + [anon_sym_DOT] = ACTIONS(5016), + [anon_sym_QMARK] = ACTIONS(5016), + [sym__immediate_quest] = ACTIONS(5016), + [anon_sym_AMP] = ACTIONS(5016), + [aux_sym_custom_operator_token1] = ACTIONS(5016), + [anon_sym_LT] = ACTIONS(5016), + [anon_sym_GT] = ACTIONS(5016), + [anon_sym_LBRACE] = ACTIONS(5014), + [anon_sym_RBRACE] = ACTIONS(5014), + [anon_sym_self] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(5014), + [anon_sym_fallthrough] = ACTIONS(5014), + [anon_sym_BANG_EQ] = ACTIONS(5016), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5016), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5016), + [anon_sym_LT_EQ] = ACTIONS(5016), + [anon_sym_GT_EQ] = ACTIONS(5016), + [anon_sym_is] = ACTIONS(5014), + [anon_sym_PLUS] = ACTIONS(5016), + [anon_sym_DASH] = ACTIONS(5016), + [anon_sym_STAR] = ACTIONS(5016), + [anon_sym_SLASH] = ACTIONS(5016), + [anon_sym_PERCENT] = ACTIONS(5016), + [anon_sym_PLUS_PLUS] = ACTIONS(5016), + [anon_sym_DASH_DASH] = ACTIONS(5016), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_CARET] = ACTIONS(5016), + [anon_sym_LT_LT] = ACTIONS(5016), + [anon_sym_GT_GT] = ACTIONS(5016), + [anon_sym_class] = ACTIONS(5014), + [anon_sym_prefix] = ACTIONS(5014), + [anon_sym_infix] = ACTIONS(5014), + [anon_sym_postfix] = ACTIONS(5014), + [anon_sym_AT] = ACTIONS(5016), + [sym_property_behavior_modifier] = ACTIONS(5014), + [anon_sym_override] = ACTIONS(5014), + [anon_sym_convenience] = ACTIONS(5014), + [anon_sym_required] = ACTIONS(5014), + [anon_sym_public] = ACTIONS(5014), + [anon_sym_private] = ACTIONS(5014), + [anon_sym_internal] = ACTIONS(5014), + [anon_sym_fileprivate] = ACTIONS(5014), + [anon_sym_open] = ACTIONS(5014), + [anon_sym_mutating] = ACTIONS(5014), + [anon_sym_nonmutating] = ACTIONS(5014), + [anon_sym_static] = ACTIONS(5014), + [anon_sym_dynamic] = ACTIONS(5014), + [anon_sym_optional] = ACTIONS(5014), + [anon_sym_final] = ACTIONS(5014), + [anon_sym_inout] = ACTIONS(5014), + [anon_sym_ATescaping] = ACTIONS(5014), + [anon_sym_ATautoclosure] = ACTIONS(5014), + [anon_sym_weak] = ACTIONS(5014), + [anon_sym_unowned] = ACTIONS(5016), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5014), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5014), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5014), + [sym__dot_custom] = ACTIONS(5014), + [sym__three_dot_operator_custom] = ACTIONS(5014), + [sym__open_ended_range_operator_custom] = ACTIONS(5014), + [sym__conjunction_operator_custom] = ACTIONS(5014), + [sym__disjunction_operator_custom] = ACTIONS(5014), + [sym__nil_coalescing_operator_custom] = ACTIONS(5014), + [sym__eq_eq_custom] = ACTIONS(5014), + [sym__plus_then_ws] = ACTIONS(5014), + [sym__minus_then_ws] = ACTIONS(5014), + [sym_bang] = ACTIONS(5014), + [sym_default_keyword] = ACTIONS(5014), + [sym__as_custom] = ACTIONS(5014), + [sym__as_quest_custom] = ACTIONS(5014), + [sym__as_bang_custom] = ACTIONS(5014), + }, + [1394] = { + [sym__key_path_postfixes] = STATE(1392), + [aux_sym__key_path_component_repeat1] = STATE(1392), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4995), + [anon_sym_LPAREN] = ACTIONS(4995), + [anon_sym_LBRACK] = ACTIONS(4995), + [anon_sym_DOT] = ACTIONS(4997), + [anon_sym_QMARK] = ACTIONS(4997), + [sym__immediate_quest] = ACTIONS(4997), + [anon_sym_AMP] = ACTIONS(4997), + [aux_sym_custom_operator_token1] = ACTIONS(4997), + [anon_sym_LT] = ACTIONS(4997), + [anon_sym_GT] = ACTIONS(4997), + [anon_sym_LBRACE] = ACTIONS(4995), + [anon_sym_RBRACE] = ACTIONS(4995), + [anon_sym_self] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(4995), + [anon_sym_fallthrough] = ACTIONS(4995), + [anon_sym_BANG_EQ] = ACTIONS(4997), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4997), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4997), + [anon_sym_LT_EQ] = ACTIONS(4997), + [anon_sym_GT_EQ] = ACTIONS(4997), + [anon_sym_is] = ACTIONS(4995), + [anon_sym_PLUS] = ACTIONS(4997), + [anon_sym_DASH] = ACTIONS(4997), + [anon_sym_STAR] = ACTIONS(4997), + [anon_sym_SLASH] = ACTIONS(4997), + [anon_sym_PERCENT] = ACTIONS(4997), + [anon_sym_PLUS_PLUS] = ACTIONS(4997), + [anon_sym_DASH_DASH] = ACTIONS(4997), + [anon_sym_PIPE] = ACTIONS(4997), + [anon_sym_CARET] = ACTIONS(4997), + [anon_sym_LT_LT] = ACTIONS(4997), + [anon_sym_GT_GT] = ACTIONS(4997), + [anon_sym_class] = ACTIONS(4995), + [anon_sym_prefix] = ACTIONS(4995), + [anon_sym_infix] = ACTIONS(4995), + [anon_sym_postfix] = ACTIONS(4995), + [anon_sym_AT] = ACTIONS(4997), + [sym_property_behavior_modifier] = ACTIONS(4995), + [anon_sym_override] = ACTIONS(4995), + [anon_sym_convenience] = ACTIONS(4995), + [anon_sym_required] = ACTIONS(4995), + [anon_sym_public] = ACTIONS(4995), + [anon_sym_private] = ACTIONS(4995), + [anon_sym_internal] = ACTIONS(4995), + [anon_sym_fileprivate] = ACTIONS(4995), + [anon_sym_open] = ACTIONS(4995), + [anon_sym_mutating] = ACTIONS(4995), + [anon_sym_nonmutating] = ACTIONS(4995), + [anon_sym_static] = ACTIONS(4995), + [anon_sym_dynamic] = ACTIONS(4995), + [anon_sym_optional] = ACTIONS(4995), + [anon_sym_final] = ACTIONS(4995), + [anon_sym_inout] = ACTIONS(4995), + [anon_sym_ATescaping] = ACTIONS(4995), + [anon_sym_ATautoclosure] = ACTIONS(4995), + [anon_sym_weak] = ACTIONS(4995), + [anon_sym_unowned] = ACTIONS(4997), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4995), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4995), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4995), + [sym__dot_custom] = ACTIONS(4995), + [sym__three_dot_operator_custom] = ACTIONS(4995), + [sym__open_ended_range_operator_custom] = ACTIONS(4995), + [sym__conjunction_operator_custom] = ACTIONS(4995), + [sym__disjunction_operator_custom] = ACTIONS(4995), + [sym__nil_coalescing_operator_custom] = ACTIONS(4995), + [sym__eq_eq_custom] = ACTIONS(4995), + [sym__plus_then_ws] = ACTIONS(4995), + [sym__minus_then_ws] = ACTIONS(4995), + [sym_bang] = ACTIONS(4995), + [sym_default_keyword] = ACTIONS(4995), + [sym__as_custom] = ACTIONS(4995), + [sym__as_quest_custom] = ACTIONS(4995), + [sym__as_bang_custom] = ACTIONS(4995), + }, + [1395] = { + [sym__dot] = STATE(5978), + [aux_sym_user_type_repeat1] = STATE(1397), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5034), + [anon_sym_LPAREN] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_DOT] = ACTIONS(5036), + [anon_sym_QMARK] = ACTIONS(5036), + [sym__immediate_quest] = ACTIONS(5036), + [anon_sym_AMP] = ACTIONS(5036), + [aux_sym_custom_operator_token1] = ACTIONS(5036), + [anon_sym_LT] = ACTIONS(5036), + [anon_sym_GT] = ACTIONS(5036), + [anon_sym_LBRACE] = ACTIONS(5034), + [anon_sym_RBRACE] = ACTIONS(5034), + [anon_sym_case] = ACTIONS(5034), + [anon_sym_fallthrough] = ACTIONS(5034), + [anon_sym_BANG_EQ] = ACTIONS(5036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5036), + [anon_sym_LT_EQ] = ACTIONS(5036), + [anon_sym_GT_EQ] = ACTIONS(5036), + [anon_sym_is] = ACTIONS(5034), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_PLUS_PLUS] = ACTIONS(5036), + [anon_sym_DASH_DASH] = ACTIONS(5036), + [anon_sym_PIPE] = ACTIONS(5036), + [anon_sym_CARET] = ACTIONS(5036), + [anon_sym_LT_LT] = ACTIONS(5036), + [anon_sym_GT_GT] = ACTIONS(5036), + [anon_sym_class] = ACTIONS(5034), + [anon_sym_prefix] = ACTIONS(5034), + [anon_sym_infix] = ACTIONS(5034), + [anon_sym_postfix] = ACTIONS(5034), + [anon_sym_AT] = ACTIONS(5036), + [sym_property_behavior_modifier] = ACTIONS(5034), + [anon_sym_override] = ACTIONS(5034), + [anon_sym_convenience] = ACTIONS(5034), + [anon_sym_required] = ACTIONS(5034), + [anon_sym_public] = ACTIONS(5034), + [anon_sym_private] = ACTIONS(5034), + [anon_sym_internal] = ACTIONS(5034), + [anon_sym_fileprivate] = ACTIONS(5034), + [anon_sym_open] = ACTIONS(5034), + [anon_sym_mutating] = ACTIONS(5034), + [anon_sym_nonmutating] = ACTIONS(5034), + [anon_sym_static] = ACTIONS(5034), + [anon_sym_dynamic] = ACTIONS(5034), + [anon_sym_optional] = ACTIONS(5034), + [anon_sym_final] = ACTIONS(5034), + [anon_sym_inout] = ACTIONS(5034), + [anon_sym_ATescaping] = ACTIONS(5034), + [anon_sym_ATautoclosure] = ACTIONS(5034), + [anon_sym_weak] = ACTIONS(5034), + [anon_sym_unowned] = ACTIONS(5036), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5034), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5034), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5034), + [sym__dot_custom] = ACTIONS(5548), + [sym__three_dot_operator_custom] = ACTIONS(5034), + [sym__open_ended_range_operator_custom] = ACTIONS(5034), + [sym__conjunction_operator_custom] = ACTIONS(5034), + [sym__disjunction_operator_custom] = ACTIONS(5034), + [sym__nil_coalescing_operator_custom] = ACTIONS(5034), + [sym__eq_eq_custom] = ACTIONS(5034), + [sym__plus_then_ws] = ACTIONS(5034), + [sym__minus_then_ws] = ACTIONS(5034), + [sym_bang] = ACTIONS(5034), + [sym_default_keyword] = ACTIONS(5034), + [sym__as_custom] = ACTIONS(5034), + [sym__as_quest_custom] = ACTIONS(5034), + [sym__as_bang_custom] = ACTIONS(5034), + }, + [1396] = { + [sym__dot] = STATE(5978), + [aux_sym_user_type_repeat1] = STATE(1395), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_QMARK] = ACTIONS(5022), + [sym__immediate_quest] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(5022), + [aux_sym_custom_operator_token1] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_case] = ACTIONS(5020), + [anon_sym_fallthrough] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5022), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5022), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5022), + [anon_sym_is] = ACTIONS(5020), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5022), + [anon_sym_PLUS_PLUS] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym_LT_LT] = ACTIONS(5022), + [anon_sym_GT_GT] = ACTIONS(5022), + [anon_sym_class] = ACTIONS(5020), + [anon_sym_prefix] = ACTIONS(5020), + [anon_sym_infix] = ACTIONS(5020), + [anon_sym_postfix] = ACTIONS(5020), + [anon_sym_AT] = ACTIONS(5022), + [sym_property_behavior_modifier] = ACTIONS(5020), + [anon_sym_override] = ACTIONS(5020), + [anon_sym_convenience] = ACTIONS(5020), + [anon_sym_required] = ACTIONS(5020), + [anon_sym_public] = ACTIONS(5020), + [anon_sym_private] = ACTIONS(5020), + [anon_sym_internal] = ACTIONS(5020), + [anon_sym_fileprivate] = ACTIONS(5020), + [anon_sym_open] = ACTIONS(5020), + [anon_sym_mutating] = ACTIONS(5020), + [anon_sym_nonmutating] = ACTIONS(5020), + [anon_sym_static] = ACTIONS(5020), + [anon_sym_dynamic] = ACTIONS(5020), + [anon_sym_optional] = ACTIONS(5020), + [anon_sym_final] = ACTIONS(5020), + [anon_sym_inout] = ACTIONS(5020), + [anon_sym_ATescaping] = ACTIONS(5020), + [anon_sym_ATautoclosure] = ACTIONS(5020), + [anon_sym_weak] = ACTIONS(5020), + [anon_sym_unowned] = ACTIONS(5022), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5020), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5020), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5020), + [sym__dot_custom] = ACTIONS(5551), + [sym__three_dot_operator_custom] = ACTIONS(5020), + [sym__open_ended_range_operator_custom] = ACTIONS(5020), + [sym__conjunction_operator_custom] = ACTIONS(5020), + [sym__disjunction_operator_custom] = ACTIONS(5020), + [sym__nil_coalescing_operator_custom] = ACTIONS(5020), + [sym__eq_eq_custom] = ACTIONS(5020), + [sym__plus_then_ws] = ACTIONS(5020), + [sym__minus_then_ws] = ACTIONS(5020), + [sym_bang] = ACTIONS(5020), + [sym_default_keyword] = ACTIONS(5020), + [sym__as_custom] = ACTIONS(5020), + [sym__as_quest_custom] = ACTIONS(5020), + [sym__as_bang_custom] = ACTIONS(5020), + }, + [1397] = { + [sym__dot] = STATE(5978), + [aux_sym_user_type_repeat1] = STATE(1397), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5027), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_DOT] = ACTIONS(5029), + [anon_sym_QMARK] = ACTIONS(5029), + [sym__immediate_quest] = ACTIONS(5029), + [anon_sym_AMP] = ACTIONS(5029), + [aux_sym_custom_operator_token1] = ACTIONS(5029), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_LBRACE] = ACTIONS(5027), + [anon_sym_RBRACE] = ACTIONS(5027), + [anon_sym_case] = ACTIONS(5027), + [anon_sym_fallthrough] = ACTIONS(5027), + [anon_sym_BANG_EQ] = ACTIONS(5029), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5029), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5029), + [anon_sym_LT_EQ] = ACTIONS(5029), + [anon_sym_GT_EQ] = ACTIONS(5029), + [anon_sym_is] = ACTIONS(5027), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_PERCENT] = ACTIONS(5029), + [anon_sym_PLUS_PLUS] = ACTIONS(5029), + [anon_sym_DASH_DASH] = ACTIONS(5029), + [anon_sym_PIPE] = ACTIONS(5029), + [anon_sym_CARET] = ACTIONS(5029), + [anon_sym_LT_LT] = ACTIONS(5029), + [anon_sym_GT_GT] = ACTIONS(5029), + [anon_sym_class] = ACTIONS(5027), + [anon_sym_prefix] = ACTIONS(5027), + [anon_sym_infix] = ACTIONS(5027), + [anon_sym_postfix] = ACTIONS(5027), + [anon_sym_AT] = ACTIONS(5029), + [sym_property_behavior_modifier] = ACTIONS(5027), + [anon_sym_override] = ACTIONS(5027), + [anon_sym_convenience] = ACTIONS(5027), + [anon_sym_required] = ACTIONS(5027), + [anon_sym_public] = ACTIONS(5027), + [anon_sym_private] = ACTIONS(5027), + [anon_sym_internal] = ACTIONS(5027), + [anon_sym_fileprivate] = ACTIONS(5027), + [anon_sym_open] = ACTIONS(5027), + [anon_sym_mutating] = ACTIONS(5027), + [anon_sym_nonmutating] = ACTIONS(5027), + [anon_sym_static] = ACTIONS(5027), + [anon_sym_dynamic] = ACTIONS(5027), + [anon_sym_optional] = ACTIONS(5027), + [anon_sym_final] = ACTIONS(5027), + [anon_sym_inout] = ACTIONS(5027), + [anon_sym_ATescaping] = ACTIONS(5027), + [anon_sym_ATautoclosure] = ACTIONS(5027), + [anon_sym_weak] = ACTIONS(5027), + [anon_sym_unowned] = ACTIONS(5029), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5027), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5027), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5027), + [sym__dot_custom] = ACTIONS(5554), + [sym__three_dot_operator_custom] = ACTIONS(5027), + [sym__open_ended_range_operator_custom] = ACTIONS(5027), + [sym__conjunction_operator_custom] = ACTIONS(5027), + [sym__disjunction_operator_custom] = ACTIONS(5027), + [sym__nil_coalescing_operator_custom] = ACTIONS(5027), + [sym__eq_eq_custom] = ACTIONS(5027), + [sym__plus_then_ws] = ACTIONS(5027), + [sym__minus_then_ws] = ACTIONS(5027), + [sym_bang] = ACTIONS(5027), + [sym_default_keyword] = ACTIONS(5027), + [sym__as_custom] = ACTIONS(5027), + [sym__as_quest_custom] = ACTIONS(5027), + [sym__as_bang_custom] = ACTIONS(5027), + }, + [1398] = { + [aux_sym_key_path_expression_repeat1] = STATE(1413), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5057), + [anon_sym_LPAREN] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5318), + [anon_sym_QMARK] = ACTIONS(5059), + [sym__immediate_quest] = ACTIONS(5059), + [anon_sym_AMP] = ACTIONS(5059), + [aux_sym_custom_operator_token1] = ACTIONS(5059), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_LBRACE] = ACTIONS(5057), + [anon_sym_RBRACE] = ACTIONS(5057), + [anon_sym_case] = ACTIONS(5057), + [anon_sym_fallthrough] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5059), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5059), + [anon_sym_GT_EQ] = ACTIONS(5059), + [anon_sym_is] = ACTIONS(5057), + [anon_sym_PLUS] = ACTIONS(5059), + [anon_sym_DASH] = ACTIONS(5059), + [anon_sym_STAR] = ACTIONS(5059), + [anon_sym_SLASH] = ACTIONS(5059), + [anon_sym_PERCENT] = ACTIONS(5059), + [anon_sym_PLUS_PLUS] = ACTIONS(5059), + [anon_sym_DASH_DASH] = ACTIONS(5059), + [anon_sym_PIPE] = ACTIONS(5059), + [anon_sym_CARET] = ACTIONS(5059), + [anon_sym_LT_LT] = ACTIONS(5059), + [anon_sym_GT_GT] = ACTIONS(5059), + [anon_sym_class] = ACTIONS(5057), + [anon_sym_prefix] = ACTIONS(5057), + [anon_sym_infix] = ACTIONS(5057), + [anon_sym_postfix] = ACTIONS(5057), + [anon_sym_AT] = ACTIONS(5059), + [sym_property_behavior_modifier] = ACTIONS(5057), + [anon_sym_override] = ACTIONS(5057), + [anon_sym_convenience] = ACTIONS(5057), + [anon_sym_required] = ACTIONS(5057), + [anon_sym_public] = ACTIONS(5057), + [anon_sym_private] = ACTIONS(5057), + [anon_sym_internal] = ACTIONS(5057), + [anon_sym_fileprivate] = ACTIONS(5057), + [anon_sym_open] = ACTIONS(5057), + [anon_sym_mutating] = ACTIONS(5057), + [anon_sym_nonmutating] = ACTIONS(5057), + [anon_sym_static] = ACTIONS(5057), + [anon_sym_dynamic] = ACTIONS(5057), + [anon_sym_optional] = ACTIONS(5057), + [anon_sym_final] = ACTIONS(5057), + [anon_sym_inout] = ACTIONS(5057), + [anon_sym_ATescaping] = ACTIONS(5057), + [anon_sym_ATautoclosure] = ACTIONS(5057), + [anon_sym_weak] = ACTIONS(5057), + [anon_sym_unowned] = ACTIONS(5059), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5057), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5057), + [sym__dot_custom] = ACTIONS(5057), + [sym__three_dot_operator_custom] = ACTIONS(5057), + [sym__open_ended_range_operator_custom] = ACTIONS(5057), + [sym__conjunction_operator_custom] = ACTIONS(5057), + [sym__disjunction_operator_custom] = ACTIONS(5057), + [sym__nil_coalescing_operator_custom] = ACTIONS(5057), + [sym__eq_eq_custom] = ACTIONS(5057), + [sym__plus_then_ws] = ACTIONS(5057), + [sym__minus_then_ws] = ACTIONS(5057), + [sym_bang] = ACTIONS(5057), + [sym_default_keyword] = ACTIONS(5057), + [sym__as_custom] = ACTIONS(5057), + [sym__as_quest_custom] = ACTIONS(5057), + [sym__as_bang_custom] = ACTIONS(5057), + }, + [1399] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4817), + [anon_sym_LPAREN] = ACTIONS(4817), + [anon_sym_LBRACK] = ACTIONS(4817), + [anon_sym_DOT] = ACTIONS(4819), + [anon_sym_QMARK] = ACTIONS(4819), + [sym__immediate_quest] = ACTIONS(4819), + [anon_sym_AMP] = ACTIONS(4819), + [aux_sym_custom_operator_token1] = ACTIONS(4819), + [anon_sym_LT] = ACTIONS(4819), + [anon_sym_GT] = ACTIONS(4819), + [anon_sym_LBRACE] = ACTIONS(4817), + [anon_sym_RBRACE] = ACTIONS(4817), + [anon_sym_self] = ACTIONS(4817), + [anon_sym_case] = ACTIONS(4817), + [anon_sym_fallthrough] = ACTIONS(4817), + [anon_sym_BANG_EQ] = ACTIONS(4819), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4819), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4819), + [anon_sym_LT_EQ] = ACTIONS(4819), + [anon_sym_GT_EQ] = ACTIONS(4819), + [anon_sym_is] = ACTIONS(4817), + [anon_sym_PLUS] = ACTIONS(4819), + [anon_sym_DASH] = ACTIONS(4819), + [anon_sym_STAR] = ACTIONS(4819), + [anon_sym_SLASH] = ACTIONS(4819), + [anon_sym_PERCENT] = ACTIONS(4819), + [anon_sym_PLUS_PLUS] = ACTIONS(4819), + [anon_sym_DASH_DASH] = ACTIONS(4819), + [anon_sym_PIPE] = ACTIONS(4819), + [anon_sym_CARET] = ACTIONS(4819), + [anon_sym_LT_LT] = ACTIONS(4819), + [anon_sym_GT_GT] = ACTIONS(4819), + [anon_sym_class] = ACTIONS(4817), + [anon_sym_prefix] = ACTIONS(4817), + [anon_sym_infix] = ACTIONS(4817), + [anon_sym_postfix] = ACTIONS(4817), + [anon_sym_AT] = ACTIONS(4819), + [sym_property_behavior_modifier] = ACTIONS(4817), + [anon_sym_override] = ACTIONS(4817), + [anon_sym_convenience] = ACTIONS(4817), + [anon_sym_required] = ACTIONS(4817), + [anon_sym_public] = ACTIONS(4817), + [anon_sym_private] = ACTIONS(4817), + [anon_sym_internal] = ACTIONS(4817), + [anon_sym_fileprivate] = ACTIONS(4817), + [anon_sym_open] = ACTIONS(4817), + [anon_sym_mutating] = ACTIONS(4817), + [anon_sym_nonmutating] = ACTIONS(4817), + [anon_sym_static] = ACTIONS(4817), + [anon_sym_dynamic] = ACTIONS(4817), + [anon_sym_optional] = ACTIONS(4817), + [anon_sym_final] = ACTIONS(4817), + [anon_sym_inout] = ACTIONS(4817), + [anon_sym_ATescaping] = ACTIONS(4817), + [anon_sym_ATautoclosure] = ACTIONS(4817), + [anon_sym_weak] = ACTIONS(4817), + [anon_sym_unowned] = ACTIONS(4819), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4817), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4817), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4817), + [sym__dot_custom] = ACTIONS(4817), + [sym__three_dot_operator_custom] = ACTIONS(4817), + [sym__open_ended_range_operator_custom] = ACTIONS(4817), + [sym__conjunction_operator_custom] = ACTIONS(4817), + [sym__disjunction_operator_custom] = ACTIONS(4817), + [sym__nil_coalescing_operator_custom] = ACTIONS(4817), + [sym__eq_eq_custom] = ACTIONS(4817), + [sym__plus_then_ws] = ACTIONS(4817), + [sym__minus_then_ws] = ACTIONS(4817), + [sym_bang] = ACTIONS(4817), + [sym_default_keyword] = ACTIONS(4817), + [sym__as_custom] = ACTIONS(4817), + [sym__as_quest_custom] = ACTIONS(4817), + [sym__as_bang_custom] = ACTIONS(4817), + }, + [1400] = { + [aux_sym_key_path_expression_repeat1] = STATE(1414), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5057), + [anon_sym_LPAREN] = ACTIONS(5057), + [anon_sym_LBRACK] = ACTIONS(5057), + [anon_sym_DOT] = ACTIONS(5318), + [anon_sym_QMARK] = ACTIONS(5059), + [sym__immediate_quest] = ACTIONS(5059), + [anon_sym_AMP] = ACTIONS(5059), + [aux_sym_custom_operator_token1] = ACTIONS(5059), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_LBRACE] = ACTIONS(5057), + [anon_sym_RBRACE] = ACTIONS(5057), + [anon_sym_case] = ACTIONS(5057), + [anon_sym_fallthrough] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5059), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5059), + [anon_sym_GT_EQ] = ACTIONS(5059), + [anon_sym_is] = ACTIONS(5057), + [anon_sym_PLUS] = ACTIONS(5059), + [anon_sym_DASH] = ACTIONS(5059), + [anon_sym_STAR] = ACTIONS(5059), + [anon_sym_SLASH] = ACTIONS(5059), + [anon_sym_PERCENT] = ACTIONS(5059), + [anon_sym_PLUS_PLUS] = ACTIONS(5059), + [anon_sym_DASH_DASH] = ACTIONS(5059), + [anon_sym_PIPE] = ACTIONS(5059), + [anon_sym_CARET] = ACTIONS(5059), + [anon_sym_LT_LT] = ACTIONS(5059), + [anon_sym_GT_GT] = ACTIONS(5059), + [anon_sym_class] = ACTIONS(5057), + [anon_sym_prefix] = ACTIONS(5057), + [anon_sym_infix] = ACTIONS(5057), + [anon_sym_postfix] = ACTIONS(5057), + [anon_sym_AT] = ACTIONS(5059), + [sym_property_behavior_modifier] = ACTIONS(5057), + [anon_sym_override] = ACTIONS(5057), + [anon_sym_convenience] = ACTIONS(5057), + [anon_sym_required] = ACTIONS(5057), + [anon_sym_public] = ACTIONS(5057), + [anon_sym_private] = ACTIONS(5057), + [anon_sym_internal] = ACTIONS(5057), + [anon_sym_fileprivate] = ACTIONS(5057), + [anon_sym_open] = ACTIONS(5057), + [anon_sym_mutating] = ACTIONS(5057), + [anon_sym_nonmutating] = ACTIONS(5057), + [anon_sym_static] = ACTIONS(5057), + [anon_sym_dynamic] = ACTIONS(5057), + [anon_sym_optional] = ACTIONS(5057), + [anon_sym_final] = ACTIONS(5057), + [anon_sym_inout] = ACTIONS(5057), + [anon_sym_ATescaping] = ACTIONS(5057), + [anon_sym_ATautoclosure] = ACTIONS(5057), + [anon_sym_weak] = ACTIONS(5057), + [anon_sym_unowned] = ACTIONS(5059), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5057), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5057), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5057), + [sym__dot_custom] = ACTIONS(5057), + [sym__three_dot_operator_custom] = ACTIONS(5057), + [sym__open_ended_range_operator_custom] = ACTIONS(5057), + [sym__conjunction_operator_custom] = ACTIONS(5057), + [sym__disjunction_operator_custom] = ACTIONS(5057), + [sym__nil_coalescing_operator_custom] = ACTIONS(5057), + [sym__eq_eq_custom] = ACTIONS(5057), + [sym__plus_then_ws] = ACTIONS(5057), + [sym__minus_then_ws] = ACTIONS(5057), + [sym_bang] = ACTIONS(5057), + [sym_default_keyword] = ACTIONS(5057), + [sym__as_custom] = ACTIONS(5057), + [sym__as_quest_custom] = ACTIONS(5057), + [sym__as_bang_custom] = ACTIONS(5057), + }, + [1401] = { + [aux_sym_protocol_composition_type_repeat1] = STATE(1407), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5094), + [anon_sym_LPAREN] = ACTIONS(5094), + [anon_sym_LBRACK] = ACTIONS(5094), + [anon_sym_DOT] = ACTIONS(5557), + [anon_sym_QMARK] = ACTIONS(5096), + [sym__immediate_quest] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5559), + [aux_sym_custom_operator_token1] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5094), + [anon_sym_RBRACE] = ACTIONS(5094), + [anon_sym_case] = ACTIONS(5094), + [anon_sym_fallthrough] = ACTIONS(5094), + [anon_sym_BANG_EQ] = ACTIONS(5096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5096), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5096), + [anon_sym_is] = ACTIONS(5094), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_PERCENT] = ACTIONS(5096), + [anon_sym_PLUS_PLUS] = ACTIONS(5096), + [anon_sym_DASH_DASH] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_LT_LT] = ACTIONS(5096), + [anon_sym_GT_GT] = ACTIONS(5096), + [anon_sym_class] = ACTIONS(5094), + [anon_sym_prefix] = ACTIONS(5094), + [anon_sym_infix] = ACTIONS(5094), + [anon_sym_postfix] = ACTIONS(5094), + [anon_sym_AT] = ACTIONS(5096), + [sym_property_behavior_modifier] = ACTIONS(5094), + [anon_sym_override] = ACTIONS(5094), + [anon_sym_convenience] = ACTIONS(5094), + [anon_sym_required] = ACTIONS(5094), + [anon_sym_public] = ACTIONS(5094), + [anon_sym_private] = ACTIONS(5094), + [anon_sym_internal] = ACTIONS(5094), + [anon_sym_fileprivate] = ACTIONS(5094), + [anon_sym_open] = ACTIONS(5094), + [anon_sym_mutating] = ACTIONS(5094), + [anon_sym_nonmutating] = ACTIONS(5094), + [anon_sym_static] = ACTIONS(5094), + [anon_sym_dynamic] = ACTIONS(5094), + [anon_sym_optional] = ACTIONS(5094), + [anon_sym_final] = ACTIONS(5094), + [anon_sym_inout] = ACTIONS(5094), + [anon_sym_ATescaping] = ACTIONS(5094), + [anon_sym_ATautoclosure] = ACTIONS(5094), + [anon_sym_weak] = ACTIONS(5094), + [anon_sym_unowned] = ACTIONS(5096), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5094), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5094), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5094), + [sym__dot_custom] = ACTIONS(5094), + [sym__three_dot_operator_custom] = ACTIONS(5094), + [sym__open_ended_range_operator_custom] = ACTIONS(5094), + [sym__conjunction_operator_custom] = ACTIONS(5094), + [sym__disjunction_operator_custom] = ACTIONS(5094), + [sym__nil_coalescing_operator_custom] = ACTIONS(5094), + [sym__eq_eq_custom] = ACTIONS(5094), + [sym__plus_then_ws] = ACTIONS(5094), + [sym__minus_then_ws] = ACTIONS(5094), + [sym_bang] = ACTIONS(5094), + [sym_default_keyword] = ACTIONS(5094), + [sym__as_custom] = ACTIONS(5094), + [sym__as_quest_custom] = ACTIONS(5094), + [sym__as_bang_custom] = ACTIONS(5094), + }, + [1402] = { + [sym_type_arguments] = STATE(1421), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_DOT] = ACTIONS(5086), + [anon_sym_QMARK] = ACTIONS(5086), + [sym__immediate_quest] = ACTIONS(5086), + [anon_sym_AMP] = ACTIONS(5086), + [aux_sym_custom_operator_token1] = ACTIONS(5086), + [anon_sym_LT] = ACTIONS(5561), + [anon_sym_GT] = ACTIONS(5086), + [anon_sym_LBRACE] = ACTIONS(5084), + [anon_sym_RBRACE] = ACTIONS(5084), + [anon_sym_case] = ACTIONS(5084), + [anon_sym_fallthrough] = ACTIONS(5084), + [anon_sym_BANG_EQ] = ACTIONS(5086), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5086), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5086), + [anon_sym_LT_EQ] = ACTIONS(5086), + [anon_sym_GT_EQ] = ACTIONS(5086), + [anon_sym_is] = ACTIONS(5084), + [anon_sym_PLUS] = ACTIONS(5086), + [anon_sym_DASH] = ACTIONS(5086), + [anon_sym_STAR] = ACTIONS(5086), + [anon_sym_SLASH] = ACTIONS(5086), + [anon_sym_PERCENT] = ACTIONS(5086), + [anon_sym_PLUS_PLUS] = ACTIONS(5086), + [anon_sym_DASH_DASH] = ACTIONS(5086), + [anon_sym_PIPE] = ACTIONS(5086), + [anon_sym_CARET] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(5086), + [anon_sym_GT_GT] = ACTIONS(5086), + [anon_sym_class] = ACTIONS(5084), + [anon_sym_prefix] = ACTIONS(5084), + [anon_sym_infix] = ACTIONS(5084), + [anon_sym_postfix] = ACTIONS(5084), + [anon_sym_AT] = ACTIONS(5086), + [sym_property_behavior_modifier] = ACTIONS(5084), + [anon_sym_override] = ACTIONS(5084), + [anon_sym_convenience] = ACTIONS(5084), + [anon_sym_required] = ACTIONS(5084), + [anon_sym_public] = ACTIONS(5084), + [anon_sym_private] = ACTIONS(5084), + [anon_sym_internal] = ACTIONS(5084), + [anon_sym_fileprivate] = ACTIONS(5084), + [anon_sym_open] = ACTIONS(5084), + [anon_sym_mutating] = ACTIONS(5084), + [anon_sym_nonmutating] = ACTIONS(5084), + [anon_sym_static] = ACTIONS(5084), + [anon_sym_dynamic] = ACTIONS(5084), + [anon_sym_optional] = ACTIONS(5084), + [anon_sym_final] = ACTIONS(5084), + [anon_sym_inout] = ACTIONS(5084), + [anon_sym_ATescaping] = ACTIONS(5084), + [anon_sym_ATautoclosure] = ACTIONS(5084), + [anon_sym_weak] = ACTIONS(5084), + [anon_sym_unowned] = ACTIONS(5086), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5084), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5084), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5084), + [sym__dot_custom] = ACTIONS(5084), + [sym__three_dot_operator_custom] = ACTIONS(5084), + [sym__open_ended_range_operator_custom] = ACTIONS(5084), + [sym__conjunction_operator_custom] = ACTIONS(5084), + [sym__disjunction_operator_custom] = ACTIONS(5084), + [sym__nil_coalescing_operator_custom] = ACTIONS(5084), + [sym__eq_eq_custom] = ACTIONS(5084), + [sym__plus_then_ws] = ACTIONS(5084), + [sym__minus_then_ws] = ACTIONS(5084), + [sym_bang] = ACTIONS(5084), + [sym_default_keyword] = ACTIONS(5084), + [sym__as_custom] = ACTIONS(5084), + [sym__as_quest_custom] = ACTIONS(5084), + [sym__as_bang_custom] = ACTIONS(5084), + }, + [1403] = { + [aux_sym_protocol_composition_type_repeat1] = STATE(1407), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5041), + [anon_sym_LPAREN] = ACTIONS(5041), + [anon_sym_LBRACK] = ACTIONS(5041), + [anon_sym_DOT] = ACTIONS(5557), + [anon_sym_QMARK] = ACTIONS(5045), + [sym__immediate_quest] = ACTIONS(5045), + [anon_sym_AMP] = ACTIONS(5559), + [aux_sym_custom_operator_token1] = ACTIONS(5045), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_LBRACE] = ACTIONS(5041), + [anon_sym_RBRACE] = ACTIONS(5041), + [anon_sym_case] = ACTIONS(5041), + [anon_sym_fallthrough] = ACTIONS(5041), + [anon_sym_BANG_EQ] = ACTIONS(5045), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5045), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5045), + [anon_sym_LT_EQ] = ACTIONS(5045), + [anon_sym_GT_EQ] = ACTIONS(5045), + [anon_sym_is] = ACTIONS(5041), + [anon_sym_PLUS] = ACTIONS(5045), + [anon_sym_DASH] = ACTIONS(5045), + [anon_sym_STAR] = ACTIONS(5045), + [anon_sym_SLASH] = ACTIONS(5045), + [anon_sym_PERCENT] = ACTIONS(5045), + [anon_sym_PLUS_PLUS] = ACTIONS(5045), + [anon_sym_DASH_DASH] = ACTIONS(5045), + [anon_sym_PIPE] = ACTIONS(5045), + [anon_sym_CARET] = ACTIONS(5045), + [anon_sym_LT_LT] = ACTIONS(5045), + [anon_sym_GT_GT] = ACTIONS(5045), + [anon_sym_class] = ACTIONS(5041), + [anon_sym_prefix] = ACTIONS(5041), + [anon_sym_infix] = ACTIONS(5041), + [anon_sym_postfix] = ACTIONS(5041), + [anon_sym_AT] = ACTIONS(5045), + [sym_property_behavior_modifier] = ACTIONS(5041), + [anon_sym_override] = ACTIONS(5041), + [anon_sym_convenience] = ACTIONS(5041), + [anon_sym_required] = ACTIONS(5041), + [anon_sym_public] = ACTIONS(5041), + [anon_sym_private] = ACTIONS(5041), + [anon_sym_internal] = ACTIONS(5041), + [anon_sym_fileprivate] = ACTIONS(5041), + [anon_sym_open] = ACTIONS(5041), + [anon_sym_mutating] = ACTIONS(5041), + [anon_sym_nonmutating] = ACTIONS(5041), + [anon_sym_static] = ACTIONS(5041), + [anon_sym_dynamic] = ACTIONS(5041), + [anon_sym_optional] = ACTIONS(5041), + [anon_sym_final] = ACTIONS(5041), + [anon_sym_inout] = ACTIONS(5041), + [anon_sym_ATescaping] = ACTIONS(5041), + [anon_sym_ATautoclosure] = ACTIONS(5041), + [anon_sym_weak] = ACTIONS(5041), + [anon_sym_unowned] = ACTIONS(5045), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5041), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5041), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5041), + [sym__dot_custom] = ACTIONS(5041), + [sym__three_dot_operator_custom] = ACTIONS(5041), + [sym__open_ended_range_operator_custom] = ACTIONS(5041), + [sym__conjunction_operator_custom] = ACTIONS(5041), + [sym__disjunction_operator_custom] = ACTIONS(5041), + [sym__nil_coalescing_operator_custom] = ACTIONS(5041), + [sym__eq_eq_custom] = ACTIONS(5041), + [sym__plus_then_ws] = ACTIONS(5041), + [sym__minus_then_ws] = ACTIONS(5041), + [sym_bang] = ACTIONS(5041), + [sym_default_keyword] = ACTIONS(5041), + [sym__as_custom] = ACTIONS(5041), + [sym__as_quest_custom] = ACTIONS(5041), + [sym__as_bang_custom] = ACTIONS(5041), + }, + [1404] = { + [aux_sym_optional_type_repeat1] = STATE(1406), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4733), + [anon_sym_LPAREN] = ACTIONS(4733), + [anon_sym_LBRACK] = ACTIONS(4733), + [anon_sym_DOT] = ACTIONS(4735), + [anon_sym_QMARK] = ACTIONS(4735), + [sym__immediate_quest] = ACTIONS(5304), + [anon_sym_AMP] = ACTIONS(4735), + [aux_sym_custom_operator_token1] = ACTIONS(4735), + [anon_sym_LT] = ACTIONS(4735), + [anon_sym_GT] = ACTIONS(4735), + [anon_sym_LBRACE] = ACTIONS(4733), + [anon_sym_RBRACE] = ACTIONS(4733), + [anon_sym_case] = ACTIONS(4733), + [anon_sym_fallthrough] = ACTIONS(4733), + [anon_sym_BANG_EQ] = ACTIONS(4735), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4735), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4735), + [anon_sym_LT_EQ] = ACTIONS(4735), + [anon_sym_GT_EQ] = ACTIONS(4735), + [anon_sym_is] = ACTIONS(4733), + [anon_sym_PLUS] = ACTIONS(4735), + [anon_sym_DASH] = ACTIONS(4735), + [anon_sym_STAR] = ACTIONS(4735), + [anon_sym_SLASH] = ACTIONS(4735), + [anon_sym_PERCENT] = ACTIONS(4735), + [anon_sym_PLUS_PLUS] = ACTIONS(4735), + [anon_sym_DASH_DASH] = ACTIONS(4735), + [anon_sym_PIPE] = ACTIONS(4735), + [anon_sym_CARET] = ACTIONS(4735), + [anon_sym_LT_LT] = ACTIONS(4735), + [anon_sym_GT_GT] = ACTIONS(4735), + [anon_sym_class] = ACTIONS(4733), + [anon_sym_prefix] = ACTIONS(4733), + [anon_sym_infix] = ACTIONS(4733), + [anon_sym_postfix] = ACTIONS(4733), + [anon_sym_AT] = ACTIONS(4735), + [sym_property_behavior_modifier] = ACTIONS(4733), + [anon_sym_override] = ACTIONS(4733), + [anon_sym_convenience] = ACTIONS(4733), + [anon_sym_required] = ACTIONS(4733), + [anon_sym_public] = ACTIONS(4733), + [anon_sym_private] = ACTIONS(4733), + [anon_sym_internal] = ACTIONS(4733), + [anon_sym_fileprivate] = ACTIONS(4733), + [anon_sym_open] = ACTIONS(4733), + [anon_sym_mutating] = ACTIONS(4733), + [anon_sym_nonmutating] = ACTIONS(4733), + [anon_sym_static] = ACTIONS(4733), + [anon_sym_dynamic] = ACTIONS(4733), + [anon_sym_optional] = ACTIONS(4733), + [anon_sym_final] = ACTIONS(4733), + [anon_sym_inout] = ACTIONS(4733), + [anon_sym_ATescaping] = ACTIONS(4733), + [anon_sym_ATautoclosure] = ACTIONS(4733), + [anon_sym_weak] = ACTIONS(4733), + [anon_sym_unowned] = ACTIONS(4735), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4733), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4733), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4733), + [sym__dot_custom] = ACTIONS(4733), + [sym__three_dot_operator_custom] = ACTIONS(4733), + [sym__open_ended_range_operator_custom] = ACTIONS(4733), + [sym__conjunction_operator_custom] = ACTIONS(4733), + [sym__disjunction_operator_custom] = ACTIONS(4733), + [sym__nil_coalescing_operator_custom] = ACTIONS(4733), + [sym__eq_eq_custom] = ACTIONS(4733), + [sym__plus_then_ws] = ACTIONS(4733), + [sym__minus_then_ws] = ACTIONS(4733), + [sym_bang] = ACTIONS(4733), + [sym_default_keyword] = ACTIONS(4733), + [sym__as_custom] = ACTIONS(4733), + [sym__as_quest_custom] = ACTIONS(4733), + [sym__as_bang_custom] = ACTIONS(4733), + }, + [1405] = { + [aux_sym_optional_type_repeat1] = STATE(1405), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5101), + [anon_sym_LPAREN] = ACTIONS(5101), + [anon_sym_LBRACK] = ACTIONS(5101), + [anon_sym_DOT] = ACTIONS(5103), + [anon_sym_QMARK] = ACTIONS(5103), + [sym__immediate_quest] = ACTIONS(5563), + [anon_sym_AMP] = ACTIONS(5103), + [aux_sym_custom_operator_token1] = ACTIONS(5103), + [anon_sym_LT] = ACTIONS(5103), + [anon_sym_GT] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(5101), + [anon_sym_RBRACE] = ACTIONS(5101), + [anon_sym_case] = ACTIONS(5101), + [anon_sym_fallthrough] = ACTIONS(5101), + [anon_sym_BANG_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5103), + [anon_sym_LT_EQ] = ACTIONS(5103), + [anon_sym_GT_EQ] = ACTIONS(5103), + [anon_sym_is] = ACTIONS(5101), + [anon_sym_PLUS] = ACTIONS(5103), + [anon_sym_DASH] = ACTIONS(5103), + [anon_sym_STAR] = ACTIONS(5103), + [anon_sym_SLASH] = ACTIONS(5103), + [anon_sym_PERCENT] = ACTIONS(5103), + [anon_sym_PLUS_PLUS] = ACTIONS(5103), + [anon_sym_DASH_DASH] = ACTIONS(5103), + [anon_sym_PIPE] = ACTIONS(5103), + [anon_sym_CARET] = ACTIONS(5103), + [anon_sym_LT_LT] = ACTIONS(5103), + [anon_sym_GT_GT] = ACTIONS(5103), + [anon_sym_class] = ACTIONS(5101), + [anon_sym_prefix] = ACTIONS(5101), + [anon_sym_infix] = ACTIONS(5101), + [anon_sym_postfix] = ACTIONS(5101), + [anon_sym_AT] = ACTIONS(5103), + [sym_property_behavior_modifier] = ACTIONS(5101), + [anon_sym_override] = ACTIONS(5101), + [anon_sym_convenience] = ACTIONS(5101), + [anon_sym_required] = ACTIONS(5101), + [anon_sym_public] = ACTIONS(5101), + [anon_sym_private] = ACTIONS(5101), + [anon_sym_internal] = ACTIONS(5101), + [anon_sym_fileprivate] = ACTIONS(5101), + [anon_sym_open] = ACTIONS(5101), + [anon_sym_mutating] = ACTIONS(5101), + [anon_sym_nonmutating] = ACTIONS(5101), + [anon_sym_static] = ACTIONS(5101), + [anon_sym_dynamic] = ACTIONS(5101), + [anon_sym_optional] = ACTIONS(5101), + [anon_sym_final] = ACTIONS(5101), + [anon_sym_inout] = ACTIONS(5101), + [anon_sym_ATescaping] = ACTIONS(5101), + [anon_sym_ATautoclosure] = ACTIONS(5101), + [anon_sym_weak] = ACTIONS(5101), + [anon_sym_unowned] = ACTIONS(5103), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5101), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5101), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5101), + [sym__dot_custom] = ACTIONS(5101), + [sym__three_dot_operator_custom] = ACTIONS(5101), + [sym__open_ended_range_operator_custom] = ACTIONS(5101), + [sym__conjunction_operator_custom] = ACTIONS(5101), + [sym__disjunction_operator_custom] = ACTIONS(5101), + [sym__nil_coalescing_operator_custom] = ACTIONS(5101), + [sym__eq_eq_custom] = ACTIONS(5101), + [sym__plus_then_ws] = ACTIONS(5101), + [sym__minus_then_ws] = ACTIONS(5101), + [sym_bang] = ACTIONS(5101), + [sym_default_keyword] = ACTIONS(5101), + [sym__as_custom] = ACTIONS(5101), + [sym__as_quest_custom] = ACTIONS(5101), + [sym__as_bang_custom] = ACTIONS(5101), + }, + [1406] = { + [aux_sym_optional_type_repeat1] = STATE(1405), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5053), + [anon_sym_LBRACK] = ACTIONS(5053), + [anon_sym_DOT] = ACTIONS(5055), + [anon_sym_QMARK] = ACTIONS(5055), + [sym__immediate_quest] = ACTIONS(5055), + [anon_sym_AMP] = ACTIONS(5055), + [aux_sym_custom_operator_token1] = ACTIONS(5055), + [anon_sym_LT] = ACTIONS(5055), + [anon_sym_GT] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5053), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_case] = ACTIONS(5053), + [anon_sym_fallthrough] = ACTIONS(5053), + [anon_sym_BANG_EQ] = ACTIONS(5055), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5055), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5055), + [anon_sym_LT_EQ] = ACTIONS(5055), + [anon_sym_GT_EQ] = ACTIONS(5055), + [anon_sym_is] = ACTIONS(5053), + [anon_sym_PLUS] = ACTIONS(5055), + [anon_sym_DASH] = ACTIONS(5055), + [anon_sym_STAR] = ACTIONS(5055), + [anon_sym_SLASH] = ACTIONS(5055), + [anon_sym_PERCENT] = ACTIONS(5055), + [anon_sym_PLUS_PLUS] = ACTIONS(5055), + [anon_sym_DASH_DASH] = ACTIONS(5055), + [anon_sym_PIPE] = ACTIONS(5055), + [anon_sym_CARET] = ACTIONS(5055), + [anon_sym_LT_LT] = ACTIONS(5055), + [anon_sym_GT_GT] = ACTIONS(5055), + [anon_sym_class] = ACTIONS(5053), + [anon_sym_prefix] = ACTIONS(5053), + [anon_sym_infix] = ACTIONS(5053), + [anon_sym_postfix] = ACTIONS(5053), + [anon_sym_AT] = ACTIONS(5055), + [sym_property_behavior_modifier] = ACTIONS(5053), + [anon_sym_override] = ACTIONS(5053), + [anon_sym_convenience] = ACTIONS(5053), + [anon_sym_required] = ACTIONS(5053), + [anon_sym_public] = ACTIONS(5053), + [anon_sym_private] = ACTIONS(5053), + [anon_sym_internal] = ACTIONS(5053), + [anon_sym_fileprivate] = ACTIONS(5053), + [anon_sym_open] = ACTIONS(5053), + [anon_sym_mutating] = ACTIONS(5053), + [anon_sym_nonmutating] = ACTIONS(5053), + [anon_sym_static] = ACTIONS(5053), + [anon_sym_dynamic] = ACTIONS(5053), + [anon_sym_optional] = ACTIONS(5053), + [anon_sym_final] = ACTIONS(5053), + [anon_sym_inout] = ACTIONS(5053), + [anon_sym_ATescaping] = ACTIONS(5053), + [anon_sym_ATautoclosure] = ACTIONS(5053), + [anon_sym_weak] = ACTIONS(5053), + [anon_sym_unowned] = ACTIONS(5055), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5053), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5053), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5053), + [sym__dot_custom] = ACTIONS(5053), + [sym__three_dot_operator_custom] = ACTIONS(5053), + [sym__open_ended_range_operator_custom] = ACTIONS(5053), + [sym__conjunction_operator_custom] = ACTIONS(5053), + [sym__disjunction_operator_custom] = ACTIONS(5053), + [sym__nil_coalescing_operator_custom] = ACTIONS(5053), + [sym__eq_eq_custom] = ACTIONS(5053), + [sym__plus_then_ws] = ACTIONS(5053), + [sym__minus_then_ws] = ACTIONS(5053), + [sym_bang] = ACTIONS(5053), + [sym_default_keyword] = ACTIONS(5053), + [sym__as_custom] = ACTIONS(5053), + [sym__as_quest_custom] = ACTIONS(5053), + [sym__as_bang_custom] = ACTIONS(5053), + }, + [1407] = { + [aux_sym_protocol_composition_type_repeat1] = STATE(1411), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5049), + [anon_sym_LBRACK] = ACTIONS(5049), + [anon_sym_DOT] = ACTIONS(5051), + [anon_sym_QMARK] = ACTIONS(5051), + [sym__immediate_quest] = ACTIONS(5051), + [anon_sym_AMP] = ACTIONS(5559), + [aux_sym_custom_operator_token1] = ACTIONS(5051), + [anon_sym_LT] = ACTIONS(5051), + [anon_sym_GT] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5049), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_case] = ACTIONS(5049), + [anon_sym_fallthrough] = ACTIONS(5049), + [anon_sym_BANG_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5051), + [anon_sym_LT_EQ] = ACTIONS(5051), + [anon_sym_GT_EQ] = ACTIONS(5051), + [anon_sym_is] = ACTIONS(5049), + [anon_sym_PLUS] = ACTIONS(5051), + [anon_sym_DASH] = ACTIONS(5051), + [anon_sym_STAR] = ACTIONS(5051), + [anon_sym_SLASH] = ACTIONS(5051), + [anon_sym_PERCENT] = ACTIONS(5051), + [anon_sym_PLUS_PLUS] = ACTIONS(5051), + [anon_sym_DASH_DASH] = ACTIONS(5051), + [anon_sym_PIPE] = ACTIONS(5051), + [anon_sym_CARET] = ACTIONS(5051), + [anon_sym_LT_LT] = ACTIONS(5051), + [anon_sym_GT_GT] = ACTIONS(5051), + [anon_sym_class] = ACTIONS(5049), + [anon_sym_prefix] = ACTIONS(5049), + [anon_sym_infix] = ACTIONS(5049), + [anon_sym_postfix] = ACTIONS(5049), + [anon_sym_AT] = ACTIONS(5051), + [sym_property_behavior_modifier] = ACTIONS(5049), + [anon_sym_override] = ACTIONS(5049), + [anon_sym_convenience] = ACTIONS(5049), + [anon_sym_required] = ACTIONS(5049), + [anon_sym_public] = ACTIONS(5049), + [anon_sym_private] = ACTIONS(5049), + [anon_sym_internal] = ACTIONS(5049), + [anon_sym_fileprivate] = ACTIONS(5049), + [anon_sym_open] = ACTIONS(5049), + [anon_sym_mutating] = ACTIONS(5049), + [anon_sym_nonmutating] = ACTIONS(5049), + [anon_sym_static] = ACTIONS(5049), + [anon_sym_dynamic] = ACTIONS(5049), + [anon_sym_optional] = ACTIONS(5049), + [anon_sym_final] = ACTIONS(5049), + [anon_sym_inout] = ACTIONS(5049), + [anon_sym_ATescaping] = ACTIONS(5049), + [anon_sym_ATautoclosure] = ACTIONS(5049), + [anon_sym_weak] = ACTIONS(5049), + [anon_sym_unowned] = ACTIONS(5051), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5049), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5049), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5049), + [sym__dot_custom] = ACTIONS(5049), + [sym__three_dot_operator_custom] = ACTIONS(5049), + [sym__open_ended_range_operator_custom] = ACTIONS(5049), + [sym__conjunction_operator_custom] = ACTIONS(5049), + [sym__disjunction_operator_custom] = ACTIONS(5049), + [sym__nil_coalescing_operator_custom] = ACTIONS(5049), + [sym__eq_eq_custom] = ACTIONS(5049), + [sym__plus_then_ws] = ACTIONS(5049), + [sym__minus_then_ws] = ACTIONS(5049), + [sym_bang] = ACTIONS(5049), + [sym_default_keyword] = ACTIONS(5049), + [sym__as_custom] = ACTIONS(5049), + [sym__as_quest_custom] = ACTIONS(5049), + [sym__as_bang_custom] = ACTIONS(5049), + }, + [1408] = { + [aux_sym_protocol_composition_type_repeat1] = STATE(1407), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5061), + [anon_sym_LPAREN] = ACTIONS(5061), + [anon_sym_LBRACK] = ACTIONS(5061), + [anon_sym_DOT] = ACTIONS(5557), + [anon_sym_QMARK] = ACTIONS(5063), + [sym__immediate_quest] = ACTIONS(5063), + [anon_sym_AMP] = ACTIONS(5559), + [aux_sym_custom_operator_token1] = ACTIONS(5063), + [anon_sym_LT] = ACTIONS(5063), + [anon_sym_GT] = ACTIONS(5063), + [anon_sym_LBRACE] = ACTIONS(5061), + [anon_sym_RBRACE] = ACTIONS(5061), + [anon_sym_case] = ACTIONS(5061), + [anon_sym_fallthrough] = ACTIONS(5061), + [anon_sym_BANG_EQ] = ACTIONS(5063), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5063), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5063), + [anon_sym_LT_EQ] = ACTIONS(5063), + [anon_sym_GT_EQ] = ACTIONS(5063), + [anon_sym_is] = ACTIONS(5061), + [anon_sym_PLUS] = ACTIONS(5063), + [anon_sym_DASH] = ACTIONS(5063), + [anon_sym_STAR] = ACTIONS(5063), + [anon_sym_SLASH] = ACTIONS(5063), + [anon_sym_PERCENT] = ACTIONS(5063), + [anon_sym_PLUS_PLUS] = ACTIONS(5063), + [anon_sym_DASH_DASH] = ACTIONS(5063), + [anon_sym_PIPE] = ACTIONS(5063), + [anon_sym_CARET] = ACTIONS(5063), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5063), + [anon_sym_class] = ACTIONS(5061), + [anon_sym_prefix] = ACTIONS(5061), + [anon_sym_infix] = ACTIONS(5061), + [anon_sym_postfix] = ACTIONS(5061), + [anon_sym_AT] = ACTIONS(5063), + [sym_property_behavior_modifier] = ACTIONS(5061), + [anon_sym_override] = ACTIONS(5061), + [anon_sym_convenience] = ACTIONS(5061), + [anon_sym_required] = ACTIONS(5061), + [anon_sym_public] = ACTIONS(5061), + [anon_sym_private] = ACTIONS(5061), + [anon_sym_internal] = ACTIONS(5061), + [anon_sym_fileprivate] = ACTIONS(5061), + [anon_sym_open] = ACTIONS(5061), + [anon_sym_mutating] = ACTIONS(5061), + [anon_sym_nonmutating] = ACTIONS(5061), + [anon_sym_static] = ACTIONS(5061), + [anon_sym_dynamic] = ACTIONS(5061), + [anon_sym_optional] = ACTIONS(5061), + [anon_sym_final] = ACTIONS(5061), + [anon_sym_inout] = ACTIONS(5061), + [anon_sym_ATescaping] = ACTIONS(5061), + [anon_sym_ATautoclosure] = ACTIONS(5061), + [anon_sym_weak] = ACTIONS(5061), + [anon_sym_unowned] = ACTIONS(5063), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5061), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5061), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5061), + [sym__dot_custom] = ACTIONS(5061), + [sym__three_dot_operator_custom] = ACTIONS(5061), + [sym__open_ended_range_operator_custom] = ACTIONS(5061), + [sym__conjunction_operator_custom] = ACTIONS(5061), + [sym__disjunction_operator_custom] = ACTIONS(5061), + [sym__nil_coalescing_operator_custom] = ACTIONS(5061), + [sym__eq_eq_custom] = ACTIONS(5061), + [sym__plus_then_ws] = ACTIONS(5061), + [sym__minus_then_ws] = ACTIONS(5061), + [sym_bang] = ACTIONS(5061), + [sym_default_keyword] = ACTIONS(5061), + [sym__as_custom] = ACTIONS(5061), + [sym__as_quest_custom] = ACTIONS(5061), + [sym__as_bang_custom] = ACTIONS(5061), + }, + [1409] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5069), + [anon_sym_LPAREN] = ACTIONS(5069), + [anon_sym_LBRACK] = ACTIONS(5069), + [anon_sym_DOT] = ACTIONS(5071), + [anon_sym_QMARK] = ACTIONS(5071), + [sym__immediate_quest] = ACTIONS(5071), + [anon_sym_AMP] = ACTIONS(5071), + [aux_sym_custom_operator_token1] = ACTIONS(5071), + [anon_sym_LT] = ACTIONS(5071), + [anon_sym_GT] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5069), + [anon_sym_RBRACE] = ACTIONS(5069), + [anon_sym_self] = ACTIONS(5069), + [anon_sym_case] = ACTIONS(5069), + [anon_sym_fallthrough] = ACTIONS(5069), + [anon_sym_BANG_EQ] = ACTIONS(5071), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5071), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5071), + [anon_sym_LT_EQ] = ACTIONS(5071), + [anon_sym_GT_EQ] = ACTIONS(5071), + [anon_sym_is] = ACTIONS(5069), + [anon_sym_PLUS] = ACTIONS(5071), + [anon_sym_DASH] = ACTIONS(5071), + [anon_sym_STAR] = ACTIONS(5071), + [anon_sym_SLASH] = ACTIONS(5071), + [anon_sym_PERCENT] = ACTIONS(5071), + [anon_sym_PLUS_PLUS] = ACTIONS(5071), + [anon_sym_DASH_DASH] = ACTIONS(5071), + [anon_sym_PIPE] = ACTIONS(5071), + [anon_sym_CARET] = ACTIONS(5071), + [anon_sym_LT_LT] = ACTIONS(5071), + [anon_sym_GT_GT] = ACTIONS(5071), + [anon_sym_class] = ACTIONS(5069), + [anon_sym_prefix] = ACTIONS(5069), + [anon_sym_infix] = ACTIONS(5069), + [anon_sym_postfix] = ACTIONS(5069), + [anon_sym_AT] = ACTIONS(5071), + [sym_property_behavior_modifier] = ACTIONS(5069), + [anon_sym_override] = ACTIONS(5069), + [anon_sym_convenience] = ACTIONS(5069), + [anon_sym_required] = ACTIONS(5069), + [anon_sym_public] = ACTIONS(5069), + [anon_sym_private] = ACTIONS(5069), + [anon_sym_internal] = ACTIONS(5069), + [anon_sym_fileprivate] = ACTIONS(5069), + [anon_sym_open] = ACTIONS(5069), + [anon_sym_mutating] = ACTIONS(5069), + [anon_sym_nonmutating] = ACTIONS(5069), + [anon_sym_static] = ACTIONS(5069), + [anon_sym_dynamic] = ACTIONS(5069), + [anon_sym_optional] = ACTIONS(5069), + [anon_sym_final] = ACTIONS(5069), + [anon_sym_inout] = ACTIONS(5069), + [anon_sym_ATescaping] = ACTIONS(5069), + [anon_sym_ATautoclosure] = ACTIONS(5069), + [anon_sym_weak] = ACTIONS(5069), + [anon_sym_unowned] = ACTIONS(5071), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5069), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5069), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5069), + [sym__dot_custom] = ACTIONS(5069), + [sym__three_dot_operator_custom] = ACTIONS(5069), + [sym__open_ended_range_operator_custom] = ACTIONS(5069), + [sym__conjunction_operator_custom] = ACTIONS(5069), + [sym__disjunction_operator_custom] = ACTIONS(5069), + [sym__nil_coalescing_operator_custom] = ACTIONS(5069), + [sym__eq_eq_custom] = ACTIONS(5069), + [sym__plus_then_ws] = ACTIONS(5069), + [sym__minus_then_ws] = ACTIONS(5069), + [sym_bang] = ACTIONS(5069), + [sym_default_keyword] = ACTIONS(5069), + [sym__as_custom] = ACTIONS(5069), + [sym__as_quest_custom] = ACTIONS(5069), + [sym__as_bang_custom] = ACTIONS(5069), + }, + [1410] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5065), + [anon_sym_LPAREN] = ACTIONS(5065), + [anon_sym_LBRACK] = ACTIONS(5065), + [anon_sym_DOT] = ACTIONS(5067), + [anon_sym_QMARK] = ACTIONS(5067), + [sym__immediate_quest] = ACTIONS(5067), + [anon_sym_AMP] = ACTIONS(5067), + [aux_sym_custom_operator_token1] = ACTIONS(5067), + [anon_sym_LT] = ACTIONS(5067), + [anon_sym_GT] = ACTIONS(5067), + [anon_sym_LBRACE] = ACTIONS(5065), + [anon_sym_RBRACE] = ACTIONS(5065), + [anon_sym_self] = ACTIONS(5065), + [anon_sym_case] = ACTIONS(5065), + [anon_sym_fallthrough] = ACTIONS(5065), + [anon_sym_BANG_EQ] = ACTIONS(5067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5067), + [anon_sym_LT_EQ] = ACTIONS(5067), + [anon_sym_GT_EQ] = ACTIONS(5067), + [anon_sym_is] = ACTIONS(5065), + [anon_sym_PLUS] = ACTIONS(5067), + [anon_sym_DASH] = ACTIONS(5067), + [anon_sym_STAR] = ACTIONS(5067), + [anon_sym_SLASH] = ACTIONS(5067), + [anon_sym_PERCENT] = ACTIONS(5067), + [anon_sym_PLUS_PLUS] = ACTIONS(5067), + [anon_sym_DASH_DASH] = ACTIONS(5067), + [anon_sym_PIPE] = ACTIONS(5067), + [anon_sym_CARET] = ACTIONS(5067), + [anon_sym_LT_LT] = ACTIONS(5067), + [anon_sym_GT_GT] = ACTIONS(5067), + [anon_sym_class] = ACTIONS(5065), + [anon_sym_prefix] = ACTIONS(5065), + [anon_sym_infix] = ACTIONS(5065), + [anon_sym_postfix] = ACTIONS(5065), + [anon_sym_AT] = ACTIONS(5067), + [sym_property_behavior_modifier] = ACTIONS(5065), + [anon_sym_override] = ACTIONS(5065), + [anon_sym_convenience] = ACTIONS(5065), + [anon_sym_required] = ACTIONS(5065), + [anon_sym_public] = ACTIONS(5065), + [anon_sym_private] = ACTIONS(5065), + [anon_sym_internal] = ACTIONS(5065), + [anon_sym_fileprivate] = ACTIONS(5065), + [anon_sym_open] = ACTIONS(5065), + [anon_sym_mutating] = ACTIONS(5065), + [anon_sym_nonmutating] = ACTIONS(5065), + [anon_sym_static] = ACTIONS(5065), + [anon_sym_dynamic] = ACTIONS(5065), + [anon_sym_optional] = ACTIONS(5065), + [anon_sym_final] = ACTIONS(5065), + [anon_sym_inout] = ACTIONS(5065), + [anon_sym_ATescaping] = ACTIONS(5065), + [anon_sym_ATautoclosure] = ACTIONS(5065), + [anon_sym_weak] = ACTIONS(5065), + [anon_sym_unowned] = ACTIONS(5067), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5065), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5065), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5065), + [sym__dot_custom] = ACTIONS(5065), + [sym__three_dot_operator_custom] = ACTIONS(5065), + [sym__open_ended_range_operator_custom] = ACTIONS(5065), + [sym__conjunction_operator_custom] = ACTIONS(5065), + [sym__disjunction_operator_custom] = ACTIONS(5065), + [sym__nil_coalescing_operator_custom] = ACTIONS(5065), + [sym__eq_eq_custom] = ACTIONS(5065), + [sym__plus_then_ws] = ACTIONS(5065), + [sym__minus_then_ws] = ACTIONS(5065), + [sym_bang] = ACTIONS(5065), + [sym_default_keyword] = ACTIONS(5065), + [sym__as_custom] = ACTIONS(5065), + [sym__as_quest_custom] = ACTIONS(5065), + [sym__as_bang_custom] = ACTIONS(5065), + }, + [1411] = { + [aux_sym_protocol_composition_type_repeat1] = STATE(1411), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5094), + [anon_sym_LPAREN] = ACTIONS(5094), + [anon_sym_LBRACK] = ACTIONS(5094), + [anon_sym_DOT] = ACTIONS(5096), + [anon_sym_QMARK] = ACTIONS(5096), + [sym__immediate_quest] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5566), + [aux_sym_custom_operator_token1] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5094), + [anon_sym_RBRACE] = ACTIONS(5094), + [anon_sym_case] = ACTIONS(5094), + [anon_sym_fallthrough] = ACTIONS(5094), + [anon_sym_BANG_EQ] = ACTIONS(5096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5096), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5096), + [anon_sym_is] = ACTIONS(5094), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5096), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_PERCENT] = ACTIONS(5096), + [anon_sym_PLUS_PLUS] = ACTIONS(5096), + [anon_sym_DASH_DASH] = ACTIONS(5096), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_LT_LT] = ACTIONS(5096), + [anon_sym_GT_GT] = ACTIONS(5096), + [anon_sym_class] = ACTIONS(5094), + [anon_sym_prefix] = ACTIONS(5094), + [anon_sym_infix] = ACTIONS(5094), + [anon_sym_postfix] = ACTIONS(5094), + [anon_sym_AT] = ACTIONS(5096), + [sym_property_behavior_modifier] = ACTIONS(5094), + [anon_sym_override] = ACTIONS(5094), + [anon_sym_convenience] = ACTIONS(5094), + [anon_sym_required] = ACTIONS(5094), + [anon_sym_public] = ACTIONS(5094), + [anon_sym_private] = ACTIONS(5094), + [anon_sym_internal] = ACTIONS(5094), + [anon_sym_fileprivate] = ACTIONS(5094), + [anon_sym_open] = ACTIONS(5094), + [anon_sym_mutating] = ACTIONS(5094), + [anon_sym_nonmutating] = ACTIONS(5094), + [anon_sym_static] = ACTIONS(5094), + [anon_sym_dynamic] = ACTIONS(5094), + [anon_sym_optional] = ACTIONS(5094), + [anon_sym_final] = ACTIONS(5094), + [anon_sym_inout] = ACTIONS(5094), + [anon_sym_ATescaping] = ACTIONS(5094), + [anon_sym_ATautoclosure] = ACTIONS(5094), + [anon_sym_weak] = ACTIONS(5094), + [anon_sym_unowned] = ACTIONS(5096), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5094), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5094), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5094), + [sym__dot_custom] = ACTIONS(5094), + [sym__three_dot_operator_custom] = ACTIONS(5094), + [sym__open_ended_range_operator_custom] = ACTIONS(5094), + [sym__conjunction_operator_custom] = ACTIONS(5094), + [sym__disjunction_operator_custom] = ACTIONS(5094), + [sym__nil_coalescing_operator_custom] = ACTIONS(5094), + [sym__eq_eq_custom] = ACTIONS(5094), + [sym__plus_then_ws] = ACTIONS(5094), + [sym__minus_then_ws] = ACTIONS(5094), + [sym_bang] = ACTIONS(5094), + [sym_default_keyword] = ACTIONS(5094), + [sym__as_custom] = ACTIONS(5094), + [sym__as_quest_custom] = ACTIONS(5094), + [sym__as_bang_custom] = ACTIONS(5094), + }, + [1412] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5090), + [anon_sym_LPAREN] = ACTIONS(5090), + [anon_sym_LBRACK] = ACTIONS(5090), + [anon_sym_DOT] = ACTIONS(5092), + [anon_sym_QMARK] = ACTIONS(5092), + [sym__immediate_quest] = ACTIONS(5092), + [anon_sym_AMP] = ACTIONS(5092), + [aux_sym_custom_operator_token1] = ACTIONS(5092), + [anon_sym_LT] = ACTIONS(5092), + [anon_sym_GT] = ACTIONS(5092), + [anon_sym_LBRACE] = ACTIONS(5090), + [anon_sym_RBRACE] = ACTIONS(5090), + [anon_sym_self] = ACTIONS(5090), + [anon_sym_case] = ACTIONS(5090), + [anon_sym_fallthrough] = ACTIONS(5090), + [anon_sym_BANG_EQ] = ACTIONS(5092), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5092), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5092), + [anon_sym_LT_EQ] = ACTIONS(5092), + [anon_sym_GT_EQ] = ACTIONS(5092), + [anon_sym_is] = ACTIONS(5090), + [anon_sym_PLUS] = ACTIONS(5092), + [anon_sym_DASH] = ACTIONS(5092), + [anon_sym_STAR] = ACTIONS(5092), + [anon_sym_SLASH] = ACTIONS(5092), + [anon_sym_PERCENT] = ACTIONS(5092), + [anon_sym_PLUS_PLUS] = ACTIONS(5092), + [anon_sym_DASH_DASH] = ACTIONS(5092), + [anon_sym_PIPE] = ACTIONS(5092), + [anon_sym_CARET] = ACTIONS(5092), + [anon_sym_LT_LT] = ACTIONS(5092), + [anon_sym_GT_GT] = ACTIONS(5092), + [anon_sym_class] = ACTIONS(5090), + [anon_sym_prefix] = ACTIONS(5090), + [anon_sym_infix] = ACTIONS(5090), + [anon_sym_postfix] = ACTIONS(5090), + [anon_sym_AT] = ACTIONS(5092), + [sym_property_behavior_modifier] = ACTIONS(5090), + [anon_sym_override] = ACTIONS(5090), + [anon_sym_convenience] = ACTIONS(5090), + [anon_sym_required] = ACTIONS(5090), + [anon_sym_public] = ACTIONS(5090), + [anon_sym_private] = ACTIONS(5090), + [anon_sym_internal] = ACTIONS(5090), + [anon_sym_fileprivate] = ACTIONS(5090), + [anon_sym_open] = ACTIONS(5090), + [anon_sym_mutating] = ACTIONS(5090), + [anon_sym_nonmutating] = ACTIONS(5090), + [anon_sym_static] = ACTIONS(5090), + [anon_sym_dynamic] = ACTIONS(5090), + [anon_sym_optional] = ACTIONS(5090), + [anon_sym_final] = ACTIONS(5090), + [anon_sym_inout] = ACTIONS(5090), + [anon_sym_ATescaping] = ACTIONS(5090), + [anon_sym_ATautoclosure] = ACTIONS(5090), + [anon_sym_weak] = ACTIONS(5090), + [anon_sym_unowned] = ACTIONS(5092), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5090), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5090), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5090), + [sym__dot_custom] = ACTIONS(5090), + [sym__three_dot_operator_custom] = ACTIONS(5090), + [sym__open_ended_range_operator_custom] = ACTIONS(5090), + [sym__conjunction_operator_custom] = ACTIONS(5090), + [sym__disjunction_operator_custom] = ACTIONS(5090), + [sym__nil_coalescing_operator_custom] = ACTIONS(5090), + [sym__eq_eq_custom] = ACTIONS(5090), + [sym__plus_then_ws] = ACTIONS(5090), + [sym__minus_then_ws] = ACTIONS(5090), + [sym_bang] = ACTIONS(5090), + [sym_default_keyword] = ACTIONS(5090), + [sym__as_custom] = ACTIONS(5090), + [sym__as_quest_custom] = ACTIONS(5090), + [sym__as_bang_custom] = ACTIONS(5090), + }, + [1413] = { + [aux_sym_key_path_expression_repeat1] = STATE(1414), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(5073), + [anon_sym_LBRACK] = ACTIONS(5073), + [anon_sym_DOT] = ACTIONS(5318), + [anon_sym_QMARK] = ACTIONS(5075), + [sym__immediate_quest] = ACTIONS(5075), + [anon_sym_AMP] = ACTIONS(5075), + [aux_sym_custom_operator_token1] = ACTIONS(5075), + [anon_sym_LT] = ACTIONS(5075), + [anon_sym_GT] = ACTIONS(5075), + [anon_sym_LBRACE] = ACTIONS(5073), + [anon_sym_RBRACE] = ACTIONS(5073), + [anon_sym_case] = ACTIONS(5073), + [anon_sym_fallthrough] = ACTIONS(5073), + [anon_sym_BANG_EQ] = ACTIONS(5075), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5075), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5075), + [anon_sym_LT_EQ] = ACTIONS(5075), + [anon_sym_GT_EQ] = ACTIONS(5075), + [anon_sym_is] = ACTIONS(5073), + [anon_sym_PLUS] = ACTIONS(5075), + [anon_sym_DASH] = ACTIONS(5075), + [anon_sym_STAR] = ACTIONS(5075), + [anon_sym_SLASH] = ACTIONS(5075), + [anon_sym_PERCENT] = ACTIONS(5075), + [anon_sym_PLUS_PLUS] = ACTIONS(5075), + [anon_sym_DASH_DASH] = ACTIONS(5075), + [anon_sym_PIPE] = ACTIONS(5075), + [anon_sym_CARET] = ACTIONS(5075), + [anon_sym_LT_LT] = ACTIONS(5075), + [anon_sym_GT_GT] = ACTIONS(5075), + [anon_sym_class] = ACTIONS(5073), + [anon_sym_prefix] = ACTIONS(5073), + [anon_sym_infix] = ACTIONS(5073), + [anon_sym_postfix] = ACTIONS(5073), + [anon_sym_AT] = ACTIONS(5075), + [sym_property_behavior_modifier] = ACTIONS(5073), + [anon_sym_override] = ACTIONS(5073), + [anon_sym_convenience] = ACTIONS(5073), + [anon_sym_required] = ACTIONS(5073), + [anon_sym_public] = ACTIONS(5073), + [anon_sym_private] = ACTIONS(5073), + [anon_sym_internal] = ACTIONS(5073), + [anon_sym_fileprivate] = ACTIONS(5073), + [anon_sym_open] = ACTIONS(5073), + [anon_sym_mutating] = ACTIONS(5073), + [anon_sym_nonmutating] = ACTIONS(5073), + [anon_sym_static] = ACTIONS(5073), + [anon_sym_dynamic] = ACTIONS(5073), + [anon_sym_optional] = ACTIONS(5073), + [anon_sym_final] = ACTIONS(5073), + [anon_sym_inout] = ACTIONS(5073), + [anon_sym_ATescaping] = ACTIONS(5073), + [anon_sym_ATautoclosure] = ACTIONS(5073), + [anon_sym_weak] = ACTIONS(5073), + [anon_sym_unowned] = ACTIONS(5075), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5073), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5073), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5073), + [sym__dot_custom] = ACTIONS(5073), + [sym__three_dot_operator_custom] = ACTIONS(5073), + [sym__open_ended_range_operator_custom] = ACTIONS(5073), + [sym__conjunction_operator_custom] = ACTIONS(5073), + [sym__disjunction_operator_custom] = ACTIONS(5073), + [sym__nil_coalescing_operator_custom] = ACTIONS(5073), + [sym__eq_eq_custom] = ACTIONS(5073), + [sym__plus_then_ws] = ACTIONS(5073), + [sym__minus_then_ws] = ACTIONS(5073), + [sym_bang] = ACTIONS(5073), + [sym_default_keyword] = ACTIONS(5073), + [sym__as_custom] = ACTIONS(5073), + [sym__as_quest_custom] = ACTIONS(5073), + [sym__as_bang_custom] = ACTIONS(5073), + }, + [1414] = { + [aux_sym_key_path_expression_repeat1] = STATE(1414), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5077), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_DOT] = ACTIONS(5569), + [anon_sym_QMARK] = ACTIONS(5082), + [sym__immediate_quest] = ACTIONS(5082), + [anon_sym_AMP] = ACTIONS(5082), + [aux_sym_custom_operator_token1] = ACTIONS(5082), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_LBRACE] = ACTIONS(5077), + [anon_sym_RBRACE] = ACTIONS(5077), + [anon_sym_case] = ACTIONS(5077), + [anon_sym_fallthrough] = ACTIONS(5077), + [anon_sym_BANG_EQ] = ACTIONS(5082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5082), + [anon_sym_LT_EQ] = ACTIONS(5082), + [anon_sym_GT_EQ] = ACTIONS(5082), + [anon_sym_is] = ACTIONS(5077), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_STAR] = ACTIONS(5082), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_PERCENT] = ACTIONS(5082), + [anon_sym_PLUS_PLUS] = ACTIONS(5082), + [anon_sym_DASH_DASH] = ACTIONS(5082), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_CARET] = ACTIONS(5082), + [anon_sym_LT_LT] = ACTIONS(5082), + [anon_sym_GT_GT] = ACTIONS(5082), + [anon_sym_class] = ACTIONS(5077), + [anon_sym_prefix] = ACTIONS(5077), + [anon_sym_infix] = ACTIONS(5077), + [anon_sym_postfix] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5082), + [sym_property_behavior_modifier] = ACTIONS(5077), + [anon_sym_override] = ACTIONS(5077), + [anon_sym_convenience] = ACTIONS(5077), + [anon_sym_required] = ACTIONS(5077), + [anon_sym_public] = ACTIONS(5077), + [anon_sym_private] = ACTIONS(5077), + [anon_sym_internal] = ACTIONS(5077), + [anon_sym_fileprivate] = ACTIONS(5077), + [anon_sym_open] = ACTIONS(5077), + [anon_sym_mutating] = ACTIONS(5077), + [anon_sym_nonmutating] = ACTIONS(5077), + [anon_sym_static] = ACTIONS(5077), + [anon_sym_dynamic] = ACTIONS(5077), + [anon_sym_optional] = ACTIONS(5077), + [anon_sym_final] = ACTIONS(5077), + [anon_sym_inout] = ACTIONS(5077), + [anon_sym_ATescaping] = ACTIONS(5077), + [anon_sym_ATautoclosure] = ACTIONS(5077), + [anon_sym_weak] = ACTIONS(5077), + [anon_sym_unowned] = ACTIONS(5082), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5077), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5077), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5077), + [sym__dot_custom] = ACTIONS(5077), + [sym__three_dot_operator_custom] = ACTIONS(5077), + [sym__open_ended_range_operator_custom] = ACTIONS(5077), + [sym__conjunction_operator_custom] = ACTIONS(5077), + [sym__disjunction_operator_custom] = ACTIONS(5077), + [sym__nil_coalescing_operator_custom] = ACTIONS(5077), + [sym__eq_eq_custom] = ACTIONS(5077), + [sym__plus_then_ws] = ACTIONS(5077), + [sym__minus_then_ws] = ACTIONS(5077), + [sym_bang] = ACTIONS(5077), + [sym_default_keyword] = ACTIONS(5077), + [sym__as_custom] = ACTIONS(5077), + [sym__as_quest_custom] = ACTIONS(5077), + [sym__as_bang_custom] = ACTIONS(5077), + }, + [1415] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5112), + [anon_sym_LPAREN] = ACTIONS(5112), + [anon_sym_LBRACK] = ACTIONS(5112), + [anon_sym_DOT] = ACTIONS(5114), + [anon_sym_QMARK] = ACTIONS(5114), + [sym__immediate_quest] = ACTIONS(5114), + [anon_sym_AMP] = ACTIONS(5114), + [aux_sym_custom_operator_token1] = ACTIONS(5114), + [anon_sym_LT] = ACTIONS(5114), + [anon_sym_GT] = ACTIONS(5114), + [anon_sym_LBRACE] = ACTIONS(5112), + [anon_sym_RBRACE] = ACTIONS(5112), + [anon_sym_case] = ACTIONS(5112), + [anon_sym_fallthrough] = ACTIONS(5112), + [anon_sym_BANG_EQ] = ACTIONS(5114), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5114), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5114), + [anon_sym_LT_EQ] = ACTIONS(5114), + [anon_sym_GT_EQ] = ACTIONS(5114), + [anon_sym_is] = ACTIONS(5112), + [anon_sym_PLUS] = ACTIONS(5114), + [anon_sym_DASH] = ACTIONS(5114), + [anon_sym_STAR] = ACTIONS(5114), + [anon_sym_SLASH] = ACTIONS(5114), + [anon_sym_PERCENT] = ACTIONS(5114), + [anon_sym_PLUS_PLUS] = ACTIONS(5114), + [anon_sym_DASH_DASH] = ACTIONS(5114), + [anon_sym_PIPE] = ACTIONS(5114), + [anon_sym_CARET] = ACTIONS(5114), + [anon_sym_LT_LT] = ACTIONS(5114), + [anon_sym_GT_GT] = ACTIONS(5114), + [anon_sym_class] = ACTIONS(5112), + [anon_sym_prefix] = ACTIONS(5112), + [anon_sym_infix] = ACTIONS(5112), + [anon_sym_postfix] = ACTIONS(5112), + [anon_sym_AT] = ACTIONS(5114), + [sym_property_behavior_modifier] = ACTIONS(5112), + [anon_sym_override] = ACTIONS(5112), + [anon_sym_convenience] = ACTIONS(5112), + [anon_sym_required] = ACTIONS(5112), + [anon_sym_public] = ACTIONS(5112), + [anon_sym_private] = ACTIONS(5112), + [anon_sym_internal] = ACTIONS(5112), + [anon_sym_fileprivate] = ACTIONS(5112), + [anon_sym_open] = ACTIONS(5112), + [anon_sym_mutating] = ACTIONS(5112), + [anon_sym_nonmutating] = ACTIONS(5112), + [anon_sym_static] = ACTIONS(5112), + [anon_sym_dynamic] = ACTIONS(5112), + [anon_sym_optional] = ACTIONS(5112), + [anon_sym_final] = ACTIONS(5112), + [anon_sym_inout] = ACTIONS(5112), + [anon_sym_ATescaping] = ACTIONS(5112), + [anon_sym_ATautoclosure] = ACTIONS(5112), + [anon_sym_weak] = ACTIONS(5112), + [anon_sym_unowned] = ACTIONS(5114), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5112), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5112), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5112), + [sym__dot_custom] = ACTIONS(5112), + [sym__three_dot_operator_custom] = ACTIONS(5112), + [sym__open_ended_range_operator_custom] = ACTIONS(5112), + [sym__conjunction_operator_custom] = ACTIONS(5112), + [sym__disjunction_operator_custom] = ACTIONS(5112), + [sym__nil_coalescing_operator_custom] = ACTIONS(5112), + [sym__eq_eq_custom] = ACTIONS(5112), + [sym__plus_then_ws] = ACTIONS(5112), + [sym__minus_then_ws] = ACTIONS(5112), + [sym_bang] = ACTIONS(5112), + [sym_default_keyword] = ACTIONS(5112), + [sym__as_custom] = ACTIONS(5112), + [sym__as_quest_custom] = ACTIONS(5112), + [sym__as_bang_custom] = ACTIONS(5112), + }, + [1416] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5124), + [anon_sym_LPAREN] = ACTIONS(5124), + [anon_sym_LBRACK] = ACTIONS(5124), + [anon_sym_DOT] = ACTIONS(5126), + [anon_sym_QMARK] = ACTIONS(5126), + [sym__immediate_quest] = ACTIONS(5126), + [anon_sym_AMP] = ACTIONS(5126), + [aux_sym_custom_operator_token1] = ACTIONS(5126), + [anon_sym_LT] = ACTIONS(5126), + [anon_sym_GT] = ACTIONS(5126), + [anon_sym_LBRACE] = ACTIONS(5124), + [anon_sym_RBRACE] = ACTIONS(5124), + [anon_sym_case] = ACTIONS(5124), + [anon_sym_fallthrough] = ACTIONS(5124), + [anon_sym_BANG_EQ] = ACTIONS(5126), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5126), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5126), + [anon_sym_LT_EQ] = ACTIONS(5126), + [anon_sym_GT_EQ] = ACTIONS(5126), + [anon_sym_is] = ACTIONS(5124), + [anon_sym_PLUS] = ACTIONS(5126), + [anon_sym_DASH] = ACTIONS(5126), + [anon_sym_STAR] = ACTIONS(5126), + [anon_sym_SLASH] = ACTIONS(5126), + [anon_sym_PERCENT] = ACTIONS(5126), + [anon_sym_PLUS_PLUS] = ACTIONS(5126), + [anon_sym_DASH_DASH] = ACTIONS(5126), + [anon_sym_PIPE] = ACTIONS(5126), + [anon_sym_CARET] = ACTIONS(5126), + [anon_sym_LT_LT] = ACTIONS(5126), + [anon_sym_GT_GT] = ACTIONS(5126), + [anon_sym_class] = ACTIONS(5124), + [anon_sym_prefix] = ACTIONS(5124), + [anon_sym_infix] = ACTIONS(5124), + [anon_sym_postfix] = ACTIONS(5124), + [anon_sym_AT] = ACTIONS(5126), + [sym_property_behavior_modifier] = ACTIONS(5124), + [anon_sym_override] = ACTIONS(5124), + [anon_sym_convenience] = ACTIONS(5124), + [anon_sym_required] = ACTIONS(5124), + [anon_sym_public] = ACTIONS(5124), + [anon_sym_private] = ACTIONS(5124), + [anon_sym_internal] = ACTIONS(5124), + [anon_sym_fileprivate] = ACTIONS(5124), + [anon_sym_open] = ACTIONS(5124), + [anon_sym_mutating] = ACTIONS(5124), + [anon_sym_nonmutating] = ACTIONS(5124), + [anon_sym_static] = ACTIONS(5124), + [anon_sym_dynamic] = ACTIONS(5124), + [anon_sym_optional] = ACTIONS(5124), + [anon_sym_final] = ACTIONS(5124), + [anon_sym_inout] = ACTIONS(5124), + [anon_sym_ATescaping] = ACTIONS(5124), + [anon_sym_ATautoclosure] = ACTIONS(5124), + [anon_sym_weak] = ACTIONS(5124), + [anon_sym_unowned] = ACTIONS(5126), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5124), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5124), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5124), + [sym__dot_custom] = ACTIONS(5124), + [sym__three_dot_operator_custom] = ACTIONS(5124), + [sym__open_ended_range_operator_custom] = ACTIONS(5124), + [sym__conjunction_operator_custom] = ACTIONS(5124), + [sym__disjunction_operator_custom] = ACTIONS(5124), + [sym__nil_coalescing_operator_custom] = ACTIONS(5124), + [sym__eq_eq_custom] = ACTIONS(5124), + [sym__plus_then_ws] = ACTIONS(5124), + [sym__minus_then_ws] = ACTIONS(5124), + [sym_bang] = ACTIONS(5124), + [sym_default_keyword] = ACTIONS(5124), + [sym__as_custom] = ACTIONS(5124), + [sym__as_quest_custom] = ACTIONS(5124), + [sym__as_bang_custom] = ACTIONS(5124), + }, + [1417] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5198), + [anon_sym_LPAREN] = ACTIONS(5198), + [anon_sym_LBRACK] = ACTIONS(5198), + [anon_sym_QMARK] = ACTIONS(5200), + [sym__immediate_quest] = ACTIONS(5200), + [anon_sym_AMP] = ACTIONS(5200), + [aux_sym_custom_operator_token1] = ACTIONS(5200), + [anon_sym_LT] = ACTIONS(5200), + [anon_sym_GT] = ACTIONS(5200), + [anon_sym_LBRACE] = ACTIONS(5198), + [anon_sym_RBRACE] = ACTIONS(5198), + [anon_sym_case] = ACTIONS(5198), + [anon_sym_fallthrough] = ACTIONS(5198), + [anon_sym_BANG_EQ] = ACTIONS(5200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5200), + [anon_sym_LT_EQ] = ACTIONS(5200), + [anon_sym_GT_EQ] = ACTIONS(5200), + [anon_sym_is] = ACTIONS(5198), + [anon_sym_PLUS] = ACTIONS(5200), + [anon_sym_DASH] = ACTIONS(5200), + [anon_sym_STAR] = ACTIONS(5200), + [anon_sym_SLASH] = ACTIONS(5200), + [anon_sym_PERCENT] = ACTIONS(5200), + [anon_sym_PLUS_PLUS] = ACTIONS(5200), + [anon_sym_DASH_DASH] = ACTIONS(5200), + [anon_sym_PIPE] = ACTIONS(5200), + [anon_sym_CARET] = ACTIONS(5200), + [anon_sym_LT_LT] = ACTIONS(5200), + [anon_sym_GT_GT] = ACTIONS(5200), + [anon_sym_class] = ACTIONS(5198), + [anon_sym_let] = ACTIONS(5572), + [anon_sym_prefix] = ACTIONS(5198), + [anon_sym_infix] = ACTIONS(5198), + [anon_sym_postfix] = ACTIONS(5198), + [anon_sym_AT] = ACTIONS(5200), + [sym_property_behavior_modifier] = ACTIONS(5198), + [anon_sym_override] = ACTIONS(5198), + [anon_sym_convenience] = ACTIONS(5198), + [anon_sym_required] = ACTIONS(5198), + [anon_sym_public] = ACTIONS(5198), + [anon_sym_private] = ACTIONS(5198), + [anon_sym_internal] = ACTIONS(5198), + [anon_sym_fileprivate] = ACTIONS(5198), + [anon_sym_open] = ACTIONS(5198), + [anon_sym_mutating] = ACTIONS(5198), + [anon_sym_nonmutating] = ACTIONS(5198), + [anon_sym_static] = ACTIONS(5198), + [anon_sym_dynamic] = ACTIONS(5198), + [anon_sym_optional] = ACTIONS(5198), + [anon_sym_final] = ACTIONS(5198), + [anon_sym_inout] = ACTIONS(5198), + [anon_sym_ATescaping] = ACTIONS(5198), + [anon_sym_ATautoclosure] = ACTIONS(5198), + [anon_sym_weak] = ACTIONS(5198), + [anon_sym_unowned] = ACTIONS(5200), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5198), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5198), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5198), + [sym__dot_custom] = ACTIONS(5198), + [sym__three_dot_operator_custom] = ACTIONS(5198), + [sym__open_ended_range_operator_custom] = ACTIONS(5198), + [sym__conjunction_operator_custom] = ACTIONS(5198), + [sym__disjunction_operator_custom] = ACTIONS(5198), + [sym__nil_coalescing_operator_custom] = ACTIONS(5198), + [sym__eq_eq_custom] = ACTIONS(5198), + [sym__plus_then_ws] = ACTIONS(5198), + [sym__minus_then_ws] = ACTIONS(5198), + [sym_bang] = ACTIONS(5198), + [sym_default_keyword] = ACTIONS(5198), + [sym__as_custom] = ACTIONS(5198), + [sym__as_quest_custom] = ACTIONS(5198), + [sym__as_bang_custom] = ACTIONS(5198), + }, + [1418] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5136), + [anon_sym_LPAREN] = ACTIONS(5136), + [anon_sym_LBRACK] = ACTIONS(5136), + [anon_sym_DOT] = ACTIONS(5138), + [anon_sym_QMARK] = ACTIONS(5138), + [sym__immediate_quest] = ACTIONS(5138), + [anon_sym_AMP] = ACTIONS(5138), + [aux_sym_custom_operator_token1] = ACTIONS(5138), + [anon_sym_LT] = ACTIONS(5138), + [anon_sym_GT] = ACTIONS(5138), + [anon_sym_LBRACE] = ACTIONS(5136), + [anon_sym_RBRACE] = ACTIONS(5136), + [anon_sym_case] = ACTIONS(5136), + [anon_sym_fallthrough] = ACTIONS(5136), + [anon_sym_BANG_EQ] = ACTIONS(5138), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5138), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5138), + [anon_sym_LT_EQ] = ACTIONS(5138), + [anon_sym_GT_EQ] = ACTIONS(5138), + [anon_sym_is] = ACTIONS(5136), + [anon_sym_PLUS] = ACTIONS(5138), + [anon_sym_DASH] = ACTIONS(5138), + [anon_sym_STAR] = ACTIONS(5138), + [anon_sym_SLASH] = ACTIONS(5138), + [anon_sym_PERCENT] = ACTIONS(5138), + [anon_sym_PLUS_PLUS] = ACTIONS(5138), + [anon_sym_DASH_DASH] = ACTIONS(5138), + [anon_sym_PIPE] = ACTIONS(5138), + [anon_sym_CARET] = ACTIONS(5138), + [anon_sym_LT_LT] = ACTIONS(5138), + [anon_sym_GT_GT] = ACTIONS(5138), + [anon_sym_class] = ACTIONS(5136), + [anon_sym_prefix] = ACTIONS(5136), + [anon_sym_infix] = ACTIONS(5136), + [anon_sym_postfix] = ACTIONS(5136), + [anon_sym_AT] = ACTIONS(5138), + [sym_property_behavior_modifier] = ACTIONS(5136), + [anon_sym_override] = ACTIONS(5136), + [anon_sym_convenience] = ACTIONS(5136), + [anon_sym_required] = ACTIONS(5136), + [anon_sym_public] = ACTIONS(5136), + [anon_sym_private] = ACTIONS(5136), + [anon_sym_internal] = ACTIONS(5136), + [anon_sym_fileprivate] = ACTIONS(5136), + [anon_sym_open] = ACTIONS(5136), + [anon_sym_mutating] = ACTIONS(5136), + [anon_sym_nonmutating] = ACTIONS(5136), + [anon_sym_static] = ACTIONS(5136), + [anon_sym_dynamic] = ACTIONS(5136), + [anon_sym_optional] = ACTIONS(5136), + [anon_sym_final] = ACTIONS(5136), + [anon_sym_inout] = ACTIONS(5136), + [anon_sym_ATescaping] = ACTIONS(5136), + [anon_sym_ATautoclosure] = ACTIONS(5136), + [anon_sym_weak] = ACTIONS(5136), + [anon_sym_unowned] = ACTIONS(5138), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5136), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5136), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5136), + [sym__dot_custom] = ACTIONS(5136), + [sym__three_dot_operator_custom] = ACTIONS(5136), + [sym__open_ended_range_operator_custom] = ACTIONS(5136), + [sym__conjunction_operator_custom] = ACTIONS(5136), + [sym__disjunction_operator_custom] = ACTIONS(5136), + [sym__nil_coalescing_operator_custom] = ACTIONS(5136), + [sym__eq_eq_custom] = ACTIONS(5136), + [sym__plus_then_ws] = ACTIONS(5136), + [sym__minus_then_ws] = ACTIONS(5136), + [sym_bang] = ACTIONS(5136), + [sym_default_keyword] = ACTIONS(5136), + [sym__as_custom] = ACTIONS(5136), + [sym__as_quest_custom] = ACTIONS(5136), + [sym__as_bang_custom] = ACTIONS(5136), + }, + [1419] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5108), + [anon_sym_LPAREN] = ACTIONS(5108), + [anon_sym_LBRACK] = ACTIONS(5108), + [anon_sym_DOT] = ACTIONS(5110), + [anon_sym_QMARK] = ACTIONS(5110), + [sym__immediate_quest] = ACTIONS(5110), + [anon_sym_AMP] = ACTIONS(5110), + [aux_sym_custom_operator_token1] = ACTIONS(5110), + [anon_sym_LT] = ACTIONS(5110), + [anon_sym_GT] = ACTIONS(5110), + [anon_sym_LBRACE] = ACTIONS(5108), + [anon_sym_RBRACE] = ACTIONS(5108), + [anon_sym_case] = ACTIONS(5108), + [anon_sym_fallthrough] = ACTIONS(5108), + [anon_sym_BANG_EQ] = ACTIONS(5110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5110), + [anon_sym_LT_EQ] = ACTIONS(5110), + [anon_sym_GT_EQ] = ACTIONS(5110), + [anon_sym_is] = ACTIONS(5108), + [anon_sym_PLUS] = ACTIONS(5110), + [anon_sym_DASH] = ACTIONS(5110), + [anon_sym_STAR] = ACTIONS(5110), + [anon_sym_SLASH] = ACTIONS(5110), + [anon_sym_PERCENT] = ACTIONS(5110), + [anon_sym_PLUS_PLUS] = ACTIONS(5110), + [anon_sym_DASH_DASH] = ACTIONS(5110), + [anon_sym_PIPE] = ACTIONS(5110), + [anon_sym_CARET] = ACTIONS(5110), + [anon_sym_LT_LT] = ACTIONS(5110), + [anon_sym_GT_GT] = ACTIONS(5110), + [anon_sym_class] = ACTIONS(5108), + [anon_sym_prefix] = ACTIONS(5108), + [anon_sym_infix] = ACTIONS(5108), + [anon_sym_postfix] = ACTIONS(5108), + [anon_sym_AT] = ACTIONS(5110), + [sym_property_behavior_modifier] = ACTIONS(5108), + [anon_sym_override] = ACTIONS(5108), + [anon_sym_convenience] = ACTIONS(5108), + [anon_sym_required] = ACTIONS(5108), + [anon_sym_public] = ACTIONS(5108), + [anon_sym_private] = ACTIONS(5108), + [anon_sym_internal] = ACTIONS(5108), + [anon_sym_fileprivate] = ACTIONS(5108), + [anon_sym_open] = ACTIONS(5108), + [anon_sym_mutating] = ACTIONS(5108), + [anon_sym_nonmutating] = ACTIONS(5108), + [anon_sym_static] = ACTIONS(5108), + [anon_sym_dynamic] = ACTIONS(5108), + [anon_sym_optional] = ACTIONS(5108), + [anon_sym_final] = ACTIONS(5108), + [anon_sym_inout] = ACTIONS(5108), + [anon_sym_ATescaping] = ACTIONS(5108), + [anon_sym_ATautoclosure] = ACTIONS(5108), + [anon_sym_weak] = ACTIONS(5108), + [anon_sym_unowned] = ACTIONS(5110), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5108), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5108), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5108), + [sym__dot_custom] = ACTIONS(5108), + [sym__three_dot_operator_custom] = ACTIONS(5108), + [sym__open_ended_range_operator_custom] = ACTIONS(5108), + [sym__conjunction_operator_custom] = ACTIONS(5108), + [sym__disjunction_operator_custom] = ACTIONS(5108), + [sym__nil_coalescing_operator_custom] = ACTIONS(5108), + [sym__eq_eq_custom] = ACTIONS(5108), + [sym__plus_then_ws] = ACTIONS(5108), + [sym__minus_then_ws] = ACTIONS(5108), + [sym_bang] = ACTIONS(5108), + [sym_default_keyword] = ACTIONS(5108), + [sym__as_custom] = ACTIONS(5108), + [sym__as_quest_custom] = ACTIONS(5108), + [sym__as_bang_custom] = ACTIONS(5108), + }, + [1420] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5116), + [anon_sym_LPAREN] = ACTIONS(5116), + [anon_sym_LBRACK] = ACTIONS(5116), + [anon_sym_DOT] = ACTIONS(5118), + [anon_sym_QMARK] = ACTIONS(5118), + [sym__immediate_quest] = ACTIONS(5118), + [anon_sym_AMP] = ACTIONS(5118), + [aux_sym_custom_operator_token1] = ACTIONS(5118), + [anon_sym_LT] = ACTIONS(5118), + [anon_sym_GT] = ACTIONS(5118), + [anon_sym_LBRACE] = ACTIONS(5116), + [anon_sym_RBRACE] = ACTIONS(5116), + [anon_sym_case] = ACTIONS(5116), + [anon_sym_fallthrough] = ACTIONS(5116), + [anon_sym_BANG_EQ] = ACTIONS(5118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5118), + [anon_sym_LT_EQ] = ACTIONS(5118), + [anon_sym_GT_EQ] = ACTIONS(5118), + [anon_sym_is] = ACTIONS(5116), + [anon_sym_PLUS] = ACTIONS(5118), + [anon_sym_DASH] = ACTIONS(5118), + [anon_sym_STAR] = ACTIONS(5118), + [anon_sym_SLASH] = ACTIONS(5118), + [anon_sym_PERCENT] = ACTIONS(5118), + [anon_sym_PLUS_PLUS] = ACTIONS(5118), + [anon_sym_DASH_DASH] = ACTIONS(5118), + [anon_sym_PIPE] = ACTIONS(5118), + [anon_sym_CARET] = ACTIONS(5118), + [anon_sym_LT_LT] = ACTIONS(5118), + [anon_sym_GT_GT] = ACTIONS(5118), + [anon_sym_class] = ACTIONS(5116), + [anon_sym_prefix] = ACTIONS(5116), + [anon_sym_infix] = ACTIONS(5116), + [anon_sym_postfix] = ACTIONS(5116), + [anon_sym_AT] = ACTIONS(5118), + [sym_property_behavior_modifier] = ACTIONS(5116), + [anon_sym_override] = ACTIONS(5116), + [anon_sym_convenience] = ACTIONS(5116), + [anon_sym_required] = ACTIONS(5116), + [anon_sym_public] = ACTIONS(5116), + [anon_sym_private] = ACTIONS(5116), + [anon_sym_internal] = ACTIONS(5116), + [anon_sym_fileprivate] = ACTIONS(5116), + [anon_sym_open] = ACTIONS(5116), + [anon_sym_mutating] = ACTIONS(5116), + [anon_sym_nonmutating] = ACTIONS(5116), + [anon_sym_static] = ACTIONS(5116), + [anon_sym_dynamic] = ACTIONS(5116), + [anon_sym_optional] = ACTIONS(5116), + [anon_sym_final] = ACTIONS(5116), + [anon_sym_inout] = ACTIONS(5116), + [anon_sym_ATescaping] = ACTIONS(5116), + [anon_sym_ATautoclosure] = ACTIONS(5116), + [anon_sym_weak] = ACTIONS(5116), + [anon_sym_unowned] = ACTIONS(5118), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5116), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5116), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5116), + [sym__dot_custom] = ACTIONS(5116), + [sym__three_dot_operator_custom] = ACTIONS(5116), + [sym__open_ended_range_operator_custom] = ACTIONS(5116), + [sym__conjunction_operator_custom] = ACTIONS(5116), + [sym__disjunction_operator_custom] = ACTIONS(5116), + [sym__nil_coalescing_operator_custom] = ACTIONS(5116), + [sym__eq_eq_custom] = ACTIONS(5116), + [sym__plus_then_ws] = ACTIONS(5116), + [sym__minus_then_ws] = ACTIONS(5116), + [sym_bang] = ACTIONS(5116), + [sym_default_keyword] = ACTIONS(5116), + [sym__as_custom] = ACTIONS(5116), + [sym__as_quest_custom] = ACTIONS(5116), + [sym__as_bang_custom] = ACTIONS(5116), + }, + [1421] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5128), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_LBRACK] = ACTIONS(5128), + [anon_sym_DOT] = ACTIONS(5130), + [anon_sym_QMARK] = ACTIONS(5130), + [sym__immediate_quest] = ACTIONS(5130), + [anon_sym_AMP] = ACTIONS(5130), + [aux_sym_custom_operator_token1] = ACTIONS(5130), + [anon_sym_LT] = ACTIONS(5130), + [anon_sym_GT] = ACTIONS(5130), + [anon_sym_LBRACE] = ACTIONS(5128), + [anon_sym_RBRACE] = ACTIONS(5128), + [anon_sym_case] = ACTIONS(5128), + [anon_sym_fallthrough] = ACTIONS(5128), + [anon_sym_BANG_EQ] = ACTIONS(5130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5130), + [anon_sym_LT_EQ] = ACTIONS(5130), + [anon_sym_GT_EQ] = ACTIONS(5130), + [anon_sym_is] = ACTIONS(5128), + [anon_sym_PLUS] = ACTIONS(5130), + [anon_sym_DASH] = ACTIONS(5130), + [anon_sym_STAR] = ACTIONS(5130), + [anon_sym_SLASH] = ACTIONS(5130), + [anon_sym_PERCENT] = ACTIONS(5130), + [anon_sym_PLUS_PLUS] = ACTIONS(5130), + [anon_sym_DASH_DASH] = ACTIONS(5130), + [anon_sym_PIPE] = ACTIONS(5130), + [anon_sym_CARET] = ACTIONS(5130), + [anon_sym_LT_LT] = ACTIONS(5130), + [anon_sym_GT_GT] = ACTIONS(5130), + [anon_sym_class] = ACTIONS(5128), + [anon_sym_prefix] = ACTIONS(5128), + [anon_sym_infix] = ACTIONS(5128), + [anon_sym_postfix] = ACTIONS(5128), + [anon_sym_AT] = ACTIONS(5130), + [sym_property_behavior_modifier] = ACTIONS(5128), + [anon_sym_override] = ACTIONS(5128), + [anon_sym_convenience] = ACTIONS(5128), + [anon_sym_required] = ACTIONS(5128), + [anon_sym_public] = ACTIONS(5128), + [anon_sym_private] = ACTIONS(5128), + [anon_sym_internal] = ACTIONS(5128), + [anon_sym_fileprivate] = ACTIONS(5128), + [anon_sym_open] = ACTIONS(5128), + [anon_sym_mutating] = ACTIONS(5128), + [anon_sym_nonmutating] = ACTIONS(5128), + [anon_sym_static] = ACTIONS(5128), + [anon_sym_dynamic] = ACTIONS(5128), + [anon_sym_optional] = ACTIONS(5128), + [anon_sym_final] = ACTIONS(5128), + [anon_sym_inout] = ACTIONS(5128), + [anon_sym_ATescaping] = ACTIONS(5128), + [anon_sym_ATautoclosure] = ACTIONS(5128), + [anon_sym_weak] = ACTIONS(5128), + [anon_sym_unowned] = ACTIONS(5130), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5128), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5128), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5128), + [sym__dot_custom] = ACTIONS(5128), + [sym__three_dot_operator_custom] = ACTIONS(5128), + [sym__open_ended_range_operator_custom] = ACTIONS(5128), + [sym__conjunction_operator_custom] = ACTIONS(5128), + [sym__disjunction_operator_custom] = ACTIONS(5128), + [sym__nil_coalescing_operator_custom] = ACTIONS(5128), + [sym__eq_eq_custom] = ACTIONS(5128), + [sym__plus_then_ws] = ACTIONS(5128), + [sym__minus_then_ws] = ACTIONS(5128), + [sym_bang] = ACTIONS(5128), + [sym_default_keyword] = ACTIONS(5128), + [sym__as_custom] = ACTIONS(5128), + [sym__as_quest_custom] = ACTIONS(5128), + [sym__as_bang_custom] = ACTIONS(5128), + }, + [1422] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5144), + [anon_sym_LPAREN] = ACTIONS(5144), + [anon_sym_LBRACK] = ACTIONS(5144), + [anon_sym_DOT] = ACTIONS(5146), + [anon_sym_QMARK] = ACTIONS(5146), + [sym__immediate_quest] = ACTIONS(5146), + [anon_sym_AMP] = ACTIONS(5146), + [aux_sym_custom_operator_token1] = ACTIONS(5146), + [anon_sym_LT] = ACTIONS(5146), + [anon_sym_GT] = ACTIONS(5146), + [anon_sym_LBRACE] = ACTIONS(5144), + [anon_sym_RBRACE] = ACTIONS(5144), + [anon_sym_case] = ACTIONS(5144), + [anon_sym_fallthrough] = ACTIONS(5144), + [anon_sym_BANG_EQ] = ACTIONS(5146), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5146), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5146), + [anon_sym_LT_EQ] = ACTIONS(5146), + [anon_sym_GT_EQ] = ACTIONS(5146), + [anon_sym_is] = ACTIONS(5144), + [anon_sym_PLUS] = ACTIONS(5146), + [anon_sym_DASH] = ACTIONS(5146), + [anon_sym_STAR] = ACTIONS(5146), + [anon_sym_SLASH] = ACTIONS(5146), + [anon_sym_PERCENT] = ACTIONS(5146), + [anon_sym_PLUS_PLUS] = ACTIONS(5146), + [anon_sym_DASH_DASH] = ACTIONS(5146), + [anon_sym_PIPE] = ACTIONS(5146), + [anon_sym_CARET] = ACTIONS(5146), + [anon_sym_LT_LT] = ACTIONS(5146), + [anon_sym_GT_GT] = ACTIONS(5146), + [anon_sym_class] = ACTIONS(5144), + [anon_sym_prefix] = ACTIONS(5144), + [anon_sym_infix] = ACTIONS(5144), + [anon_sym_postfix] = ACTIONS(5144), + [anon_sym_AT] = ACTIONS(5146), + [sym_property_behavior_modifier] = ACTIONS(5144), + [anon_sym_override] = ACTIONS(5144), + [anon_sym_convenience] = ACTIONS(5144), + [anon_sym_required] = ACTIONS(5144), + [anon_sym_public] = ACTIONS(5144), + [anon_sym_private] = ACTIONS(5144), + [anon_sym_internal] = ACTIONS(5144), + [anon_sym_fileprivate] = ACTIONS(5144), + [anon_sym_open] = ACTIONS(5144), + [anon_sym_mutating] = ACTIONS(5144), + [anon_sym_nonmutating] = ACTIONS(5144), + [anon_sym_static] = ACTIONS(5144), + [anon_sym_dynamic] = ACTIONS(5144), + [anon_sym_optional] = ACTIONS(5144), + [anon_sym_final] = ACTIONS(5144), + [anon_sym_inout] = ACTIONS(5144), + [anon_sym_ATescaping] = ACTIONS(5144), + [anon_sym_ATautoclosure] = ACTIONS(5144), + [anon_sym_weak] = ACTIONS(5144), + [anon_sym_unowned] = ACTIONS(5146), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5144), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5144), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5144), + [sym__dot_custom] = ACTIONS(5144), + [sym__three_dot_operator_custom] = ACTIONS(5144), + [sym__open_ended_range_operator_custom] = ACTIONS(5144), + [sym__conjunction_operator_custom] = ACTIONS(5144), + [sym__disjunction_operator_custom] = ACTIONS(5144), + [sym__nil_coalescing_operator_custom] = ACTIONS(5144), + [sym__eq_eq_custom] = ACTIONS(5144), + [sym__plus_then_ws] = ACTIONS(5144), + [sym__minus_then_ws] = ACTIONS(5144), + [sym_bang] = ACTIONS(5144), + [sym_default_keyword] = ACTIONS(5144), + [sym__as_custom] = ACTIONS(5144), + [sym__as_quest_custom] = ACTIONS(5144), + [sym__as_bang_custom] = ACTIONS(5144), + }, + [1423] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5140), + [anon_sym_LPAREN] = ACTIONS(5140), + [anon_sym_LBRACK] = ACTIONS(5140), + [anon_sym_DOT] = ACTIONS(5142), + [anon_sym_QMARK] = ACTIONS(5142), + [sym__immediate_quest] = ACTIONS(5142), + [anon_sym_AMP] = ACTIONS(5142), + [aux_sym_custom_operator_token1] = ACTIONS(5142), + [anon_sym_LT] = ACTIONS(5142), + [anon_sym_GT] = ACTIONS(5142), + [anon_sym_LBRACE] = ACTIONS(5140), + [anon_sym_RBRACE] = ACTIONS(5140), + [anon_sym_case] = ACTIONS(5140), + [anon_sym_fallthrough] = ACTIONS(5140), + [anon_sym_BANG_EQ] = ACTIONS(5142), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5142), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5142), + [anon_sym_LT_EQ] = ACTIONS(5142), + [anon_sym_GT_EQ] = ACTIONS(5142), + [anon_sym_is] = ACTIONS(5140), + [anon_sym_PLUS] = ACTIONS(5142), + [anon_sym_DASH] = ACTIONS(5142), + [anon_sym_STAR] = ACTIONS(5142), + [anon_sym_SLASH] = ACTIONS(5142), + [anon_sym_PERCENT] = ACTIONS(5142), + [anon_sym_PLUS_PLUS] = ACTIONS(5142), + [anon_sym_DASH_DASH] = ACTIONS(5142), + [anon_sym_PIPE] = ACTIONS(5142), + [anon_sym_CARET] = ACTIONS(5142), + [anon_sym_LT_LT] = ACTIONS(5142), + [anon_sym_GT_GT] = ACTIONS(5142), + [anon_sym_class] = ACTIONS(5140), + [anon_sym_prefix] = ACTIONS(5140), + [anon_sym_infix] = ACTIONS(5140), + [anon_sym_postfix] = ACTIONS(5140), + [anon_sym_AT] = ACTIONS(5142), + [sym_property_behavior_modifier] = ACTIONS(5140), + [anon_sym_override] = ACTIONS(5140), + [anon_sym_convenience] = ACTIONS(5140), + [anon_sym_required] = ACTIONS(5140), + [anon_sym_public] = ACTIONS(5140), + [anon_sym_private] = ACTIONS(5140), + [anon_sym_internal] = ACTIONS(5140), + [anon_sym_fileprivate] = ACTIONS(5140), + [anon_sym_open] = ACTIONS(5140), + [anon_sym_mutating] = ACTIONS(5140), + [anon_sym_nonmutating] = ACTIONS(5140), + [anon_sym_static] = ACTIONS(5140), + [anon_sym_dynamic] = ACTIONS(5140), + [anon_sym_optional] = ACTIONS(5140), + [anon_sym_final] = ACTIONS(5140), + [anon_sym_inout] = ACTIONS(5140), + [anon_sym_ATescaping] = ACTIONS(5140), + [anon_sym_ATautoclosure] = ACTIONS(5140), + [anon_sym_weak] = ACTIONS(5140), + [anon_sym_unowned] = ACTIONS(5142), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5140), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5140), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5140), + [sym__dot_custom] = ACTIONS(5140), + [sym__three_dot_operator_custom] = ACTIONS(5140), + [sym__open_ended_range_operator_custom] = ACTIONS(5140), + [sym__conjunction_operator_custom] = ACTIONS(5140), + [sym__disjunction_operator_custom] = ACTIONS(5140), + [sym__nil_coalescing_operator_custom] = ACTIONS(5140), + [sym__eq_eq_custom] = ACTIONS(5140), + [sym__plus_then_ws] = ACTIONS(5140), + [sym__minus_then_ws] = ACTIONS(5140), + [sym_bang] = ACTIONS(5140), + [sym_default_keyword] = ACTIONS(5140), + [sym__as_custom] = ACTIONS(5140), + [sym__as_quest_custom] = ACTIONS(5140), + [sym__as_bang_custom] = ACTIONS(5140), + }, + [1424] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5120), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_DOT] = ACTIONS(5122), + [anon_sym_QMARK] = ACTIONS(5122), + [sym__immediate_quest] = ACTIONS(5122), + [anon_sym_AMP] = ACTIONS(5122), + [aux_sym_custom_operator_token1] = ACTIONS(5122), + [anon_sym_LT] = ACTIONS(5122), + [anon_sym_GT] = ACTIONS(5122), + [anon_sym_LBRACE] = ACTIONS(5120), + [anon_sym_RBRACE] = ACTIONS(5120), + [anon_sym_case] = ACTIONS(5120), + [anon_sym_fallthrough] = ACTIONS(5120), + [anon_sym_BANG_EQ] = ACTIONS(5122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5122), + [anon_sym_LT_EQ] = ACTIONS(5122), + [anon_sym_GT_EQ] = ACTIONS(5122), + [anon_sym_is] = ACTIONS(5120), + [anon_sym_PLUS] = ACTIONS(5122), + [anon_sym_DASH] = ACTIONS(5122), + [anon_sym_STAR] = ACTIONS(5122), + [anon_sym_SLASH] = ACTIONS(5122), + [anon_sym_PERCENT] = ACTIONS(5122), + [anon_sym_PLUS_PLUS] = ACTIONS(5122), + [anon_sym_DASH_DASH] = ACTIONS(5122), + [anon_sym_PIPE] = ACTIONS(5122), + [anon_sym_CARET] = ACTIONS(5122), + [anon_sym_LT_LT] = ACTIONS(5122), + [anon_sym_GT_GT] = ACTIONS(5122), + [anon_sym_class] = ACTIONS(5120), + [anon_sym_prefix] = ACTIONS(5120), + [anon_sym_infix] = ACTIONS(5120), + [anon_sym_postfix] = ACTIONS(5120), + [anon_sym_AT] = ACTIONS(5122), + [sym_property_behavior_modifier] = ACTIONS(5120), + [anon_sym_override] = ACTIONS(5120), + [anon_sym_convenience] = ACTIONS(5120), + [anon_sym_required] = ACTIONS(5120), + [anon_sym_public] = ACTIONS(5120), + [anon_sym_private] = ACTIONS(5120), + [anon_sym_internal] = ACTIONS(5120), + [anon_sym_fileprivate] = ACTIONS(5120), + [anon_sym_open] = ACTIONS(5120), + [anon_sym_mutating] = ACTIONS(5120), + [anon_sym_nonmutating] = ACTIONS(5120), + [anon_sym_static] = ACTIONS(5120), + [anon_sym_dynamic] = ACTIONS(5120), + [anon_sym_optional] = ACTIONS(5120), + [anon_sym_final] = ACTIONS(5120), + [anon_sym_inout] = ACTIONS(5120), + [anon_sym_ATescaping] = ACTIONS(5120), + [anon_sym_ATautoclosure] = ACTIONS(5120), + [anon_sym_weak] = ACTIONS(5120), + [anon_sym_unowned] = ACTIONS(5122), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5120), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5120), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5120), + [sym__dot_custom] = ACTIONS(5120), + [sym__three_dot_operator_custom] = ACTIONS(5120), + [sym__open_ended_range_operator_custom] = ACTIONS(5120), + [sym__conjunction_operator_custom] = ACTIONS(5120), + [sym__disjunction_operator_custom] = ACTIONS(5120), + [sym__nil_coalescing_operator_custom] = ACTIONS(5120), + [sym__eq_eq_custom] = ACTIONS(5120), + [sym__plus_then_ws] = ACTIONS(5120), + [sym__minus_then_ws] = ACTIONS(5120), + [sym_bang] = ACTIONS(5120), + [sym_default_keyword] = ACTIONS(5120), + [sym__as_custom] = ACTIONS(5120), + [sym__as_quest_custom] = ACTIONS(5120), + [sym__as_bang_custom] = ACTIONS(5120), + }, + [1425] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(5132), + [anon_sym_LBRACK] = ACTIONS(5132), + [anon_sym_DOT] = ACTIONS(5134), + [anon_sym_QMARK] = ACTIONS(5134), + [sym__immediate_quest] = ACTIONS(5134), + [anon_sym_AMP] = ACTIONS(5134), + [aux_sym_custom_operator_token1] = ACTIONS(5134), + [anon_sym_LT] = ACTIONS(5134), + [anon_sym_GT] = ACTIONS(5134), + [anon_sym_LBRACE] = ACTIONS(5132), + [anon_sym_RBRACE] = ACTIONS(5132), + [anon_sym_case] = ACTIONS(5132), + [anon_sym_fallthrough] = ACTIONS(5132), + [anon_sym_BANG_EQ] = ACTIONS(5134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5134), + [anon_sym_LT_EQ] = ACTIONS(5134), + [anon_sym_GT_EQ] = ACTIONS(5134), + [anon_sym_is] = ACTIONS(5132), + [anon_sym_PLUS] = ACTIONS(5134), + [anon_sym_DASH] = ACTIONS(5134), + [anon_sym_STAR] = ACTIONS(5134), + [anon_sym_SLASH] = ACTIONS(5134), + [anon_sym_PERCENT] = ACTIONS(5134), + [anon_sym_PLUS_PLUS] = ACTIONS(5134), + [anon_sym_DASH_DASH] = ACTIONS(5134), + [anon_sym_PIPE] = ACTIONS(5134), + [anon_sym_CARET] = ACTIONS(5134), + [anon_sym_LT_LT] = ACTIONS(5134), + [anon_sym_GT_GT] = ACTIONS(5134), + [anon_sym_class] = ACTIONS(5132), + [anon_sym_prefix] = ACTIONS(5132), + [anon_sym_infix] = ACTIONS(5132), + [anon_sym_postfix] = ACTIONS(5132), + [anon_sym_AT] = ACTIONS(5134), + [sym_property_behavior_modifier] = ACTIONS(5132), + [anon_sym_override] = ACTIONS(5132), + [anon_sym_convenience] = ACTIONS(5132), + [anon_sym_required] = ACTIONS(5132), + [anon_sym_public] = ACTIONS(5132), + [anon_sym_private] = ACTIONS(5132), + [anon_sym_internal] = ACTIONS(5132), + [anon_sym_fileprivate] = ACTIONS(5132), + [anon_sym_open] = ACTIONS(5132), + [anon_sym_mutating] = ACTIONS(5132), + [anon_sym_nonmutating] = ACTIONS(5132), + [anon_sym_static] = ACTIONS(5132), + [anon_sym_dynamic] = ACTIONS(5132), + [anon_sym_optional] = ACTIONS(5132), + [anon_sym_final] = ACTIONS(5132), + [anon_sym_inout] = ACTIONS(5132), + [anon_sym_ATescaping] = ACTIONS(5132), + [anon_sym_ATautoclosure] = ACTIONS(5132), + [anon_sym_weak] = ACTIONS(5132), + [anon_sym_unowned] = ACTIONS(5134), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5132), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5132), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5132), + [sym__dot_custom] = ACTIONS(5132), + [sym__three_dot_operator_custom] = ACTIONS(5132), + [sym__open_ended_range_operator_custom] = ACTIONS(5132), + [sym__conjunction_operator_custom] = ACTIONS(5132), + [sym__disjunction_operator_custom] = ACTIONS(5132), + [sym__nil_coalescing_operator_custom] = ACTIONS(5132), + [sym__eq_eq_custom] = ACTIONS(5132), + [sym__plus_then_ws] = ACTIONS(5132), + [sym__minus_then_ws] = ACTIONS(5132), + [sym_bang] = ACTIONS(5132), + [sym_default_keyword] = ACTIONS(5132), + [sym__as_custom] = ACTIONS(5132), + [sym__as_quest_custom] = ACTIONS(5132), + [sym__as_bang_custom] = ACTIONS(5132), + }, + [1426] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5027), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_DOT] = ACTIONS(5029), + [anon_sym_QMARK] = ACTIONS(5029), + [sym__immediate_quest] = ACTIONS(5029), + [anon_sym_AMP] = ACTIONS(5029), + [aux_sym_custom_operator_token1] = ACTIONS(5029), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_LBRACE] = ACTIONS(5027), + [anon_sym_RBRACE] = ACTIONS(5027), + [anon_sym_case] = ACTIONS(5027), + [anon_sym_fallthrough] = ACTIONS(5027), + [anon_sym_BANG_EQ] = ACTIONS(5029), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5029), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5029), + [anon_sym_LT_EQ] = ACTIONS(5029), + [anon_sym_GT_EQ] = ACTIONS(5029), + [anon_sym_is] = ACTIONS(5027), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_PERCENT] = ACTIONS(5029), + [anon_sym_PLUS_PLUS] = ACTIONS(5029), + [anon_sym_DASH_DASH] = ACTIONS(5029), + [anon_sym_PIPE] = ACTIONS(5029), + [anon_sym_CARET] = ACTIONS(5029), + [anon_sym_LT_LT] = ACTIONS(5029), + [anon_sym_GT_GT] = ACTIONS(5029), + [anon_sym_class] = ACTIONS(5027), + [anon_sym_prefix] = ACTIONS(5027), + [anon_sym_infix] = ACTIONS(5027), + [anon_sym_postfix] = ACTIONS(5027), + [anon_sym_AT] = ACTIONS(5029), + [sym_property_behavior_modifier] = ACTIONS(5027), + [anon_sym_override] = ACTIONS(5027), + [anon_sym_convenience] = ACTIONS(5027), + [anon_sym_required] = ACTIONS(5027), + [anon_sym_public] = ACTIONS(5027), + [anon_sym_private] = ACTIONS(5027), + [anon_sym_internal] = ACTIONS(5027), + [anon_sym_fileprivate] = ACTIONS(5027), + [anon_sym_open] = ACTIONS(5027), + [anon_sym_mutating] = ACTIONS(5027), + [anon_sym_nonmutating] = ACTIONS(5027), + [anon_sym_static] = ACTIONS(5027), + [anon_sym_dynamic] = ACTIONS(5027), + [anon_sym_optional] = ACTIONS(5027), + [anon_sym_final] = ACTIONS(5027), + [anon_sym_inout] = ACTIONS(5027), + [anon_sym_ATescaping] = ACTIONS(5027), + [anon_sym_ATautoclosure] = ACTIONS(5027), + [anon_sym_weak] = ACTIONS(5027), + [anon_sym_unowned] = ACTIONS(5029), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5027), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5027), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5027), + [sym__dot_custom] = ACTIONS(5027), + [sym__three_dot_operator_custom] = ACTIONS(5027), + [sym__open_ended_range_operator_custom] = ACTIONS(5027), + [sym__conjunction_operator_custom] = ACTIONS(5027), + [sym__disjunction_operator_custom] = ACTIONS(5027), + [sym__nil_coalescing_operator_custom] = ACTIONS(5027), + [sym__eq_eq_custom] = ACTIONS(5027), + [sym__plus_then_ws] = ACTIONS(5027), + [sym__minus_then_ws] = ACTIONS(5027), + [sym_bang] = ACTIONS(5027), + [sym_default_keyword] = ACTIONS(5027), + [sym__as_custom] = ACTIONS(5027), + [sym__as_quest_custom] = ACTIONS(5027), + [sym__as_bang_custom] = ACTIONS(5027), + }, + [1427] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5077), + [anon_sym_LBRACK] = ACTIONS(5077), + [anon_sym_DOT] = ACTIONS(5082), + [anon_sym_QMARK] = ACTIONS(5082), + [sym__immediate_quest] = ACTIONS(5082), + [anon_sym_AMP] = ACTIONS(5082), + [aux_sym_custom_operator_token1] = ACTIONS(5082), + [anon_sym_LT] = ACTIONS(5082), + [anon_sym_GT] = ACTIONS(5082), + [anon_sym_LBRACE] = ACTIONS(5077), + [anon_sym_RBRACE] = ACTIONS(5077), + [anon_sym_case] = ACTIONS(5077), + [anon_sym_fallthrough] = ACTIONS(5077), + [anon_sym_BANG_EQ] = ACTIONS(5082), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5082), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5082), + [anon_sym_LT_EQ] = ACTIONS(5082), + [anon_sym_GT_EQ] = ACTIONS(5082), + [anon_sym_is] = ACTIONS(5077), + [anon_sym_PLUS] = ACTIONS(5082), + [anon_sym_DASH] = ACTIONS(5082), + [anon_sym_STAR] = ACTIONS(5082), + [anon_sym_SLASH] = ACTIONS(5082), + [anon_sym_PERCENT] = ACTIONS(5082), + [anon_sym_PLUS_PLUS] = ACTIONS(5082), + [anon_sym_DASH_DASH] = ACTIONS(5082), + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_CARET] = ACTIONS(5082), + [anon_sym_LT_LT] = ACTIONS(5082), + [anon_sym_GT_GT] = ACTIONS(5082), + [anon_sym_class] = ACTIONS(5077), + [anon_sym_prefix] = ACTIONS(5077), + [anon_sym_infix] = ACTIONS(5077), + [anon_sym_postfix] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5082), + [sym_property_behavior_modifier] = ACTIONS(5077), + [anon_sym_override] = ACTIONS(5077), + [anon_sym_convenience] = ACTIONS(5077), + [anon_sym_required] = ACTIONS(5077), + [anon_sym_public] = ACTIONS(5077), + [anon_sym_private] = ACTIONS(5077), + [anon_sym_internal] = ACTIONS(5077), + [anon_sym_fileprivate] = ACTIONS(5077), + [anon_sym_open] = ACTIONS(5077), + [anon_sym_mutating] = ACTIONS(5077), + [anon_sym_nonmutating] = ACTIONS(5077), + [anon_sym_static] = ACTIONS(5077), + [anon_sym_dynamic] = ACTIONS(5077), + [anon_sym_optional] = ACTIONS(5077), + [anon_sym_final] = ACTIONS(5077), + [anon_sym_inout] = ACTIONS(5077), + [anon_sym_ATescaping] = ACTIONS(5077), + [anon_sym_ATautoclosure] = ACTIONS(5077), + [anon_sym_weak] = ACTIONS(5077), + [anon_sym_unowned] = ACTIONS(5082), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5077), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5077), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5077), + [sym__dot_custom] = ACTIONS(5077), + [sym__three_dot_operator_custom] = ACTIONS(5077), + [sym__open_ended_range_operator_custom] = ACTIONS(5077), + [sym__conjunction_operator_custom] = ACTIONS(5077), + [sym__disjunction_operator_custom] = ACTIONS(5077), + [sym__nil_coalescing_operator_custom] = ACTIONS(5077), + [sym__eq_eq_custom] = ACTIONS(5077), + [sym__plus_then_ws] = ACTIONS(5077), + [sym__minus_then_ws] = ACTIONS(5077), + [sym_bang] = ACTIONS(5077), + [sym_default_keyword] = ACTIONS(5077), + [sym__as_custom] = ACTIONS(5077), + [sym__as_quest_custom] = ACTIONS(5077), + [sym__as_bang_custom] = ACTIONS(5077), + }, + [1428] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5272), + [anon_sym_LPAREN] = ACTIONS(5272), + [anon_sym_LBRACK] = ACTIONS(5272), + [anon_sym_QMARK] = ACTIONS(5274), + [sym__immediate_quest] = ACTIONS(5274), + [anon_sym_AMP] = ACTIONS(5274), + [aux_sym_custom_operator_token1] = ACTIONS(5274), + [anon_sym_LT] = ACTIONS(5274), + [anon_sym_GT] = ACTIONS(5274), + [anon_sym_LBRACE] = ACTIONS(5272), + [anon_sym_RBRACE] = ACTIONS(5272), + [anon_sym_case] = ACTIONS(5272), + [anon_sym_fallthrough] = ACTIONS(5272), + [anon_sym_BANG_EQ] = ACTIONS(5274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5274), + [anon_sym_LT_EQ] = ACTIONS(5274), + [anon_sym_GT_EQ] = ACTIONS(5274), + [anon_sym_is] = ACTIONS(5272), + [anon_sym_PLUS] = ACTIONS(5274), + [anon_sym_DASH] = ACTIONS(5274), + [anon_sym_STAR] = ACTIONS(5274), + [anon_sym_SLASH] = ACTIONS(5274), + [anon_sym_PERCENT] = ACTIONS(5274), + [anon_sym_PLUS_PLUS] = ACTIONS(5274), + [anon_sym_DASH_DASH] = ACTIONS(5274), + [anon_sym_PIPE] = ACTIONS(5274), + [anon_sym_CARET] = ACTIONS(5274), + [anon_sym_LT_LT] = ACTIONS(5274), + [anon_sym_GT_GT] = ACTIONS(5274), + [anon_sym_class] = ACTIONS(5272), + [anon_sym_prefix] = ACTIONS(5272), + [anon_sym_infix] = ACTIONS(5272), + [anon_sym_postfix] = ACTIONS(5272), + [anon_sym_AT] = ACTIONS(5274), + [sym_property_behavior_modifier] = ACTIONS(5272), + [anon_sym_override] = ACTIONS(5272), + [anon_sym_convenience] = ACTIONS(5272), + [anon_sym_required] = ACTIONS(5272), + [anon_sym_public] = ACTIONS(5272), + [anon_sym_private] = ACTIONS(5272), + [anon_sym_internal] = ACTIONS(5272), + [anon_sym_fileprivate] = ACTIONS(5272), + [anon_sym_open] = ACTIONS(5272), + [anon_sym_mutating] = ACTIONS(5272), + [anon_sym_nonmutating] = ACTIONS(5272), + [anon_sym_static] = ACTIONS(5272), + [anon_sym_dynamic] = ACTIONS(5272), + [anon_sym_optional] = ACTIONS(5272), + [anon_sym_final] = ACTIONS(5272), + [anon_sym_inout] = ACTIONS(5272), + [anon_sym_ATescaping] = ACTIONS(5272), + [anon_sym_ATautoclosure] = ACTIONS(5272), + [anon_sym_weak] = ACTIONS(5272), + [anon_sym_unowned] = ACTIONS(5274), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5272), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5272), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5272), + [sym__dot_custom] = ACTIONS(5272), + [sym__three_dot_operator_custom] = ACTIONS(5272), + [sym__open_ended_range_operator_custom] = ACTIONS(5272), + [sym__conjunction_operator_custom] = ACTIONS(5272), + [sym__disjunction_operator_custom] = ACTIONS(5272), + [sym__nil_coalescing_operator_custom] = ACTIONS(5272), + [sym__eq_eq_custom] = ACTIONS(5272), + [sym__plus_then_ws] = ACTIONS(5272), + [sym__minus_then_ws] = ACTIONS(5272), + [sym_bang] = ACTIONS(5272), + [sym_default_keyword] = ACTIONS(5272), + [sym__as_custom] = ACTIONS(5272), + [sym__as_quest_custom] = ACTIONS(5272), + [sym__as_bang_custom] = ACTIONS(5272), + }, + [1429] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5292), + [anon_sym_LPAREN] = ACTIONS(5292), + [anon_sym_LBRACK] = ACTIONS(5292), + [anon_sym_QMARK] = ACTIONS(5294), + [sym__immediate_quest] = ACTIONS(5294), + [anon_sym_AMP] = ACTIONS(5294), + [aux_sym_custom_operator_token1] = ACTIONS(5294), + [anon_sym_LT] = ACTIONS(5294), + [anon_sym_GT] = ACTIONS(5294), + [anon_sym_LBRACE] = ACTIONS(5292), + [anon_sym_RBRACE] = ACTIONS(5292), + [anon_sym_case] = ACTIONS(5292), + [anon_sym_fallthrough] = ACTIONS(5292), + [anon_sym_BANG_EQ] = ACTIONS(5294), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5294), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5294), + [anon_sym_LT_EQ] = ACTIONS(5294), + [anon_sym_GT_EQ] = ACTIONS(5294), + [anon_sym_is] = ACTIONS(5292), + [anon_sym_PLUS] = ACTIONS(5294), + [anon_sym_DASH] = ACTIONS(5294), + [anon_sym_STAR] = ACTIONS(5294), + [anon_sym_SLASH] = ACTIONS(5294), + [anon_sym_PERCENT] = ACTIONS(5294), + [anon_sym_PLUS_PLUS] = ACTIONS(5294), + [anon_sym_DASH_DASH] = ACTIONS(5294), + [anon_sym_PIPE] = ACTIONS(5294), + [anon_sym_CARET] = ACTIONS(5294), + [anon_sym_LT_LT] = ACTIONS(5294), + [anon_sym_GT_GT] = ACTIONS(5294), + [anon_sym_class] = ACTIONS(5292), + [anon_sym_prefix] = ACTIONS(5292), + [anon_sym_infix] = ACTIONS(5292), + [anon_sym_postfix] = ACTIONS(5292), + [anon_sym_AT] = ACTIONS(5294), + [sym_property_behavior_modifier] = ACTIONS(5292), + [anon_sym_override] = ACTIONS(5292), + [anon_sym_convenience] = ACTIONS(5292), + [anon_sym_required] = ACTIONS(5292), + [anon_sym_public] = ACTIONS(5292), + [anon_sym_private] = ACTIONS(5292), + [anon_sym_internal] = ACTIONS(5292), + [anon_sym_fileprivate] = ACTIONS(5292), + [anon_sym_open] = ACTIONS(5292), + [anon_sym_mutating] = ACTIONS(5292), + [anon_sym_nonmutating] = ACTIONS(5292), + [anon_sym_static] = ACTIONS(5292), + [anon_sym_dynamic] = ACTIONS(5292), + [anon_sym_optional] = ACTIONS(5292), + [anon_sym_final] = ACTIONS(5292), + [anon_sym_inout] = ACTIONS(5292), + [anon_sym_ATescaping] = ACTIONS(5292), + [anon_sym_ATautoclosure] = ACTIONS(5292), + [anon_sym_weak] = ACTIONS(5292), + [anon_sym_unowned] = ACTIONS(5294), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5292), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5292), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5292), + [sym__dot_custom] = ACTIONS(5292), + [sym__three_dot_operator_custom] = ACTIONS(5292), + [sym__open_ended_range_operator_custom] = ACTIONS(5292), + [sym__conjunction_operator_custom] = ACTIONS(5292), + [sym__disjunction_operator_custom] = ACTIONS(5292), + [sym__nil_coalescing_operator_custom] = ACTIONS(5292), + [sym__eq_eq_custom] = ACTIONS(5292), + [sym__plus_then_ws] = ACTIONS(5292), + [sym__minus_then_ws] = ACTIONS(5292), + [sym_bang] = ACTIONS(5292), + [sym_default_keyword] = ACTIONS(5292), + [sym__as_custom] = ACTIONS(5292), + [sym__as_quest_custom] = ACTIONS(5292), + [sym__as_bang_custom] = ACTIONS(5292), + }, + [1430] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5260), + [anon_sym_LPAREN] = ACTIONS(5260), + [anon_sym_LBRACK] = ACTIONS(5260), + [anon_sym_QMARK] = ACTIONS(5262), + [sym__immediate_quest] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(5262), + [aux_sym_custom_operator_token1] = ACTIONS(5262), + [anon_sym_LT] = ACTIONS(5262), + [anon_sym_GT] = ACTIONS(5262), + [anon_sym_LBRACE] = ACTIONS(5260), + [anon_sym_RBRACE] = ACTIONS(5260), + [anon_sym_case] = ACTIONS(5260), + [anon_sym_fallthrough] = ACTIONS(5260), + [anon_sym_BANG_EQ] = ACTIONS(5262), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5262), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5262), + [anon_sym_LT_EQ] = ACTIONS(5262), + [anon_sym_GT_EQ] = ACTIONS(5262), + [anon_sym_is] = ACTIONS(5260), + [anon_sym_PLUS] = ACTIONS(5262), + [anon_sym_DASH] = ACTIONS(5262), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_SLASH] = ACTIONS(5262), + [anon_sym_PERCENT] = ACTIONS(5262), + [anon_sym_PLUS_PLUS] = ACTIONS(5262), + [anon_sym_DASH_DASH] = ACTIONS(5262), + [anon_sym_PIPE] = ACTIONS(5262), + [anon_sym_CARET] = ACTIONS(5262), + [anon_sym_LT_LT] = ACTIONS(5262), + [anon_sym_GT_GT] = ACTIONS(5262), + [anon_sym_class] = ACTIONS(5260), + [anon_sym_prefix] = ACTIONS(5260), + [anon_sym_infix] = ACTIONS(5260), + [anon_sym_postfix] = ACTIONS(5260), + [anon_sym_AT] = ACTIONS(5262), + [sym_property_behavior_modifier] = ACTIONS(5260), + [anon_sym_override] = ACTIONS(5260), + [anon_sym_convenience] = ACTIONS(5260), + [anon_sym_required] = ACTIONS(5260), + [anon_sym_public] = ACTIONS(5260), + [anon_sym_private] = ACTIONS(5260), + [anon_sym_internal] = ACTIONS(5260), + [anon_sym_fileprivate] = ACTIONS(5260), + [anon_sym_open] = ACTIONS(5260), + [anon_sym_mutating] = ACTIONS(5260), + [anon_sym_nonmutating] = ACTIONS(5260), + [anon_sym_static] = ACTIONS(5260), + [anon_sym_dynamic] = ACTIONS(5260), + [anon_sym_optional] = ACTIONS(5260), + [anon_sym_final] = ACTIONS(5260), + [anon_sym_inout] = ACTIONS(5260), + [anon_sym_ATescaping] = ACTIONS(5260), + [anon_sym_ATautoclosure] = ACTIONS(5260), + [anon_sym_weak] = ACTIONS(5260), + [anon_sym_unowned] = ACTIONS(5262), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5260), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5260), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5260), + [sym__dot_custom] = ACTIONS(5260), + [sym__three_dot_operator_custom] = ACTIONS(5260), + [sym__open_ended_range_operator_custom] = ACTIONS(5260), + [sym__conjunction_operator_custom] = ACTIONS(5260), + [sym__disjunction_operator_custom] = ACTIONS(5260), + [sym__nil_coalescing_operator_custom] = ACTIONS(5260), + [sym__eq_eq_custom] = ACTIONS(5260), + [sym__plus_then_ws] = ACTIONS(5260), + [sym__minus_then_ws] = ACTIONS(5260), + [sym_bang] = ACTIONS(5260), + [sym_default_keyword] = ACTIONS(5260), + [sym__as_custom] = ACTIONS(5260), + [sym__as_quest_custom] = ACTIONS(5260), + [sym__as_bang_custom] = ACTIONS(5260), + }, + [1431] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5268), + [anon_sym_LPAREN] = ACTIONS(5268), + [anon_sym_LBRACK] = ACTIONS(5268), + [anon_sym_QMARK] = ACTIONS(5270), + [sym__immediate_quest] = ACTIONS(5270), + [anon_sym_AMP] = ACTIONS(5270), + [aux_sym_custom_operator_token1] = ACTIONS(5270), + [anon_sym_LT] = ACTIONS(5270), + [anon_sym_GT] = ACTIONS(5270), + [anon_sym_LBRACE] = ACTIONS(5268), + [anon_sym_RBRACE] = ACTIONS(5268), + [anon_sym_case] = ACTIONS(5268), + [anon_sym_fallthrough] = ACTIONS(5268), + [anon_sym_BANG_EQ] = ACTIONS(5270), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5270), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5270), + [anon_sym_LT_EQ] = ACTIONS(5270), + [anon_sym_GT_EQ] = ACTIONS(5270), + [anon_sym_is] = ACTIONS(5268), + [anon_sym_PLUS] = ACTIONS(5270), + [anon_sym_DASH] = ACTIONS(5270), + [anon_sym_STAR] = ACTIONS(5270), + [anon_sym_SLASH] = ACTIONS(5270), + [anon_sym_PERCENT] = ACTIONS(5270), + [anon_sym_PLUS_PLUS] = ACTIONS(5270), + [anon_sym_DASH_DASH] = ACTIONS(5270), + [anon_sym_PIPE] = ACTIONS(5270), + [anon_sym_CARET] = ACTIONS(5270), + [anon_sym_LT_LT] = ACTIONS(5270), + [anon_sym_GT_GT] = ACTIONS(5270), + [anon_sym_class] = ACTIONS(5268), + [anon_sym_prefix] = ACTIONS(5268), + [anon_sym_infix] = ACTIONS(5268), + [anon_sym_postfix] = ACTIONS(5268), + [anon_sym_AT] = ACTIONS(5270), + [sym_property_behavior_modifier] = ACTIONS(5268), + [anon_sym_override] = ACTIONS(5268), + [anon_sym_convenience] = ACTIONS(5268), + [anon_sym_required] = ACTIONS(5268), + [anon_sym_public] = ACTIONS(5268), + [anon_sym_private] = ACTIONS(5268), + [anon_sym_internal] = ACTIONS(5268), + [anon_sym_fileprivate] = ACTIONS(5268), + [anon_sym_open] = ACTIONS(5268), + [anon_sym_mutating] = ACTIONS(5268), + [anon_sym_nonmutating] = ACTIONS(5268), + [anon_sym_static] = ACTIONS(5268), + [anon_sym_dynamic] = ACTIONS(5268), + [anon_sym_optional] = ACTIONS(5268), + [anon_sym_final] = ACTIONS(5268), + [anon_sym_inout] = ACTIONS(5268), + [anon_sym_ATescaping] = ACTIONS(5268), + [anon_sym_ATautoclosure] = ACTIONS(5268), + [anon_sym_weak] = ACTIONS(5268), + [anon_sym_unowned] = ACTIONS(5270), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5268), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5268), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5268), + [sym__dot_custom] = ACTIONS(5268), + [sym__three_dot_operator_custom] = ACTIONS(5268), + [sym__open_ended_range_operator_custom] = ACTIONS(5268), + [sym__conjunction_operator_custom] = ACTIONS(5268), + [sym__disjunction_operator_custom] = ACTIONS(5268), + [sym__nil_coalescing_operator_custom] = ACTIONS(5268), + [sym__eq_eq_custom] = ACTIONS(5268), + [sym__plus_then_ws] = ACTIONS(5268), + [sym__minus_then_ws] = ACTIONS(5268), + [sym_bang] = ACTIONS(5268), + [sym_default_keyword] = ACTIONS(5268), + [sym__as_custom] = ACTIONS(5268), + [sym__as_quest_custom] = ACTIONS(5268), + [sym__as_bang_custom] = ACTIONS(5268), + }, + [1432] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4899), + [anon_sym_LPAREN] = ACTIONS(4899), + [anon_sym_LBRACK] = ACTIONS(4899), + [anon_sym_QMARK] = ACTIONS(4897), + [sym__immediate_quest] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), + [aux_sym_custom_operator_token1] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_LBRACE] = ACTIONS(4899), + [anon_sym_RBRACE] = ACTIONS(4899), + [anon_sym_case] = ACTIONS(4899), + [anon_sym_fallthrough] = ACTIONS(4899), + [anon_sym_BANG_EQ] = ACTIONS(4897), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4897), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4897), + [anon_sym_LT_EQ] = ACTIONS(4897), + [anon_sym_GT_EQ] = ACTIONS(4897), + [anon_sym_is] = ACTIONS(4899), + [anon_sym_PLUS] = ACTIONS(4897), + [anon_sym_DASH] = ACTIONS(4897), + [anon_sym_STAR] = ACTIONS(4897), + [anon_sym_SLASH] = ACTIONS(4897), + [anon_sym_PERCENT] = ACTIONS(4897), + [anon_sym_PLUS_PLUS] = ACTIONS(4897), + [anon_sym_DASH_DASH] = ACTIONS(4897), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_CARET] = ACTIONS(4897), + [anon_sym_LT_LT] = ACTIONS(4897), + [anon_sym_GT_GT] = ACTIONS(4897), + [anon_sym_class] = ACTIONS(4899), + [anon_sym_prefix] = ACTIONS(4899), + [anon_sym_infix] = ACTIONS(4899), + [anon_sym_postfix] = ACTIONS(4899), + [anon_sym_AT] = ACTIONS(4897), + [sym_property_behavior_modifier] = ACTIONS(4899), + [anon_sym_override] = ACTIONS(4899), + [anon_sym_convenience] = ACTIONS(4899), + [anon_sym_required] = ACTIONS(4899), + [anon_sym_public] = ACTIONS(4899), + [anon_sym_private] = ACTIONS(4899), + [anon_sym_internal] = ACTIONS(4899), + [anon_sym_fileprivate] = ACTIONS(4899), + [anon_sym_open] = ACTIONS(4899), + [anon_sym_mutating] = ACTIONS(4899), + [anon_sym_nonmutating] = ACTIONS(4899), + [anon_sym_static] = ACTIONS(4899), + [anon_sym_dynamic] = ACTIONS(4899), + [anon_sym_optional] = ACTIONS(4899), + [anon_sym_final] = ACTIONS(4899), + [anon_sym_inout] = ACTIONS(4899), + [anon_sym_ATescaping] = ACTIONS(4899), + [anon_sym_ATautoclosure] = ACTIONS(4899), + [anon_sym_weak] = ACTIONS(4899), + [anon_sym_unowned] = ACTIONS(4897), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4899), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4899), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4899), + [sym__dot_custom] = ACTIONS(4899), + [sym__three_dot_operator_custom] = ACTIONS(4899), + [sym__open_ended_range_operator_custom] = ACTIONS(4899), + [sym__conjunction_operator_custom] = ACTIONS(4899), + [sym__disjunction_operator_custom] = ACTIONS(4899), + [sym__nil_coalescing_operator_custom] = ACTIONS(4899), + [sym__eq_eq_custom] = ACTIONS(4899), + [sym__plus_then_ws] = ACTIONS(4899), + [sym__minus_then_ws] = ACTIONS(4899), + [sym_bang] = ACTIONS(4899), + [sym_default_keyword] = ACTIONS(4899), + [sym__as_custom] = ACTIONS(4899), + [sym__as_quest_custom] = ACTIONS(4899), + [sym__as_bang_custom] = ACTIONS(4899), + }, + [1433] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5164), + [anon_sym_LPAREN] = ACTIONS(5164), + [anon_sym_LBRACK] = ACTIONS(5164), + [anon_sym_QMARK] = ACTIONS(5166), + [sym__immediate_quest] = ACTIONS(5166), + [anon_sym_AMP] = ACTIONS(5166), + [aux_sym_custom_operator_token1] = ACTIONS(5166), + [anon_sym_LT] = ACTIONS(5166), + [anon_sym_GT] = ACTIONS(5166), + [anon_sym_LBRACE] = ACTIONS(5164), + [anon_sym_RBRACE] = ACTIONS(5164), + [anon_sym_case] = ACTIONS(5164), + [anon_sym_fallthrough] = ACTIONS(5164), + [anon_sym_BANG_EQ] = ACTIONS(5166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5166), + [anon_sym_LT_EQ] = ACTIONS(5166), + [anon_sym_GT_EQ] = ACTIONS(5166), + [anon_sym_is] = ACTIONS(5164), + [anon_sym_PLUS] = ACTIONS(5166), + [anon_sym_DASH] = ACTIONS(5166), + [anon_sym_STAR] = ACTIONS(5166), + [anon_sym_SLASH] = ACTIONS(5166), + [anon_sym_PERCENT] = ACTIONS(5166), + [anon_sym_PLUS_PLUS] = ACTIONS(5166), + [anon_sym_DASH_DASH] = ACTIONS(5166), + [anon_sym_PIPE] = ACTIONS(5166), + [anon_sym_CARET] = ACTIONS(5166), + [anon_sym_LT_LT] = ACTIONS(5166), + [anon_sym_GT_GT] = ACTIONS(5166), + [anon_sym_class] = ACTIONS(5164), + [anon_sym_prefix] = ACTIONS(5164), + [anon_sym_infix] = ACTIONS(5164), + [anon_sym_postfix] = ACTIONS(5164), + [anon_sym_AT] = ACTIONS(5166), + [sym_property_behavior_modifier] = ACTIONS(5164), + [anon_sym_override] = ACTIONS(5164), + [anon_sym_convenience] = ACTIONS(5164), + [anon_sym_required] = ACTIONS(5164), + [anon_sym_public] = ACTIONS(5164), + [anon_sym_private] = ACTIONS(5164), + [anon_sym_internal] = ACTIONS(5164), + [anon_sym_fileprivate] = ACTIONS(5164), + [anon_sym_open] = ACTIONS(5164), + [anon_sym_mutating] = ACTIONS(5164), + [anon_sym_nonmutating] = ACTIONS(5164), + [anon_sym_static] = ACTIONS(5164), + [anon_sym_dynamic] = ACTIONS(5164), + [anon_sym_optional] = ACTIONS(5164), + [anon_sym_final] = ACTIONS(5164), + [anon_sym_inout] = ACTIONS(5164), + [anon_sym_ATescaping] = ACTIONS(5164), + [anon_sym_ATautoclosure] = ACTIONS(5164), + [anon_sym_weak] = ACTIONS(5164), + [anon_sym_unowned] = ACTIONS(5166), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5164), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5164), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5164), + [sym__dot_custom] = ACTIONS(5164), + [sym__three_dot_operator_custom] = ACTIONS(5164), + [sym__open_ended_range_operator_custom] = ACTIONS(5164), + [sym__conjunction_operator_custom] = ACTIONS(5164), + [sym__disjunction_operator_custom] = ACTIONS(5164), + [sym__nil_coalescing_operator_custom] = ACTIONS(5164), + [sym__eq_eq_custom] = ACTIONS(5164), + [sym__plus_then_ws] = ACTIONS(5164), + [sym__minus_then_ws] = ACTIONS(5164), + [sym_bang] = ACTIONS(5164), + [sym_default_keyword] = ACTIONS(5164), + [sym__as_custom] = ACTIONS(5164), + [sym__as_quest_custom] = ACTIONS(5164), + [sym__as_bang_custom] = ACTIONS(5164), + }, + [1434] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5296), + [anon_sym_LPAREN] = ACTIONS(5296), + [anon_sym_LBRACK] = ACTIONS(5296), + [anon_sym_QMARK] = ACTIONS(5298), + [sym__immediate_quest] = ACTIONS(5298), + [anon_sym_AMP] = ACTIONS(5298), + [aux_sym_custom_operator_token1] = ACTIONS(5298), + [anon_sym_LT] = ACTIONS(5298), + [anon_sym_GT] = ACTIONS(5298), + [anon_sym_LBRACE] = ACTIONS(5296), + [anon_sym_RBRACE] = ACTIONS(5296), + [anon_sym_case] = ACTIONS(5296), + [anon_sym_fallthrough] = ACTIONS(5296), + [anon_sym_BANG_EQ] = ACTIONS(5298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5298), + [anon_sym_LT_EQ] = ACTIONS(5298), + [anon_sym_GT_EQ] = ACTIONS(5298), + [anon_sym_is] = ACTIONS(5296), + [anon_sym_PLUS] = ACTIONS(5298), + [anon_sym_DASH] = ACTIONS(5298), + [anon_sym_STAR] = ACTIONS(5298), + [anon_sym_SLASH] = ACTIONS(5298), + [anon_sym_PERCENT] = ACTIONS(5298), + [anon_sym_PLUS_PLUS] = ACTIONS(5298), + [anon_sym_DASH_DASH] = ACTIONS(5298), + [anon_sym_PIPE] = ACTIONS(5298), + [anon_sym_CARET] = ACTIONS(5298), + [anon_sym_LT_LT] = ACTIONS(5298), + [anon_sym_GT_GT] = ACTIONS(5298), + [anon_sym_class] = ACTIONS(5296), + [anon_sym_prefix] = ACTIONS(5296), + [anon_sym_infix] = ACTIONS(5296), + [anon_sym_postfix] = ACTIONS(5296), + [anon_sym_AT] = ACTIONS(5298), + [sym_property_behavior_modifier] = ACTIONS(5296), + [anon_sym_override] = ACTIONS(5296), + [anon_sym_convenience] = ACTIONS(5296), + [anon_sym_required] = ACTIONS(5296), + [anon_sym_public] = ACTIONS(5296), + [anon_sym_private] = ACTIONS(5296), + [anon_sym_internal] = ACTIONS(5296), + [anon_sym_fileprivate] = ACTIONS(5296), + [anon_sym_open] = ACTIONS(5296), + [anon_sym_mutating] = ACTIONS(5296), + [anon_sym_nonmutating] = ACTIONS(5296), + [anon_sym_static] = ACTIONS(5296), + [anon_sym_dynamic] = ACTIONS(5296), + [anon_sym_optional] = ACTIONS(5296), + [anon_sym_final] = ACTIONS(5296), + [anon_sym_inout] = ACTIONS(5296), + [anon_sym_ATescaping] = ACTIONS(5296), + [anon_sym_ATautoclosure] = ACTIONS(5296), + [anon_sym_weak] = ACTIONS(5296), + [anon_sym_unowned] = ACTIONS(5298), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5296), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5296), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5296), + [sym__dot_custom] = ACTIONS(5296), + [sym__three_dot_operator_custom] = ACTIONS(5296), + [sym__open_ended_range_operator_custom] = ACTIONS(5296), + [sym__conjunction_operator_custom] = ACTIONS(5296), + [sym__disjunction_operator_custom] = ACTIONS(5296), + [sym__nil_coalescing_operator_custom] = ACTIONS(5296), + [sym__eq_eq_custom] = ACTIONS(5296), + [sym__plus_then_ws] = ACTIONS(5296), + [sym__minus_then_ws] = ACTIONS(5296), + [sym_bang] = ACTIONS(5296), + [sym_default_keyword] = ACTIONS(5296), + [sym__as_custom] = ACTIONS(5296), + [sym__as_quest_custom] = ACTIONS(5296), + [sym__as_bang_custom] = ACTIONS(5296), + }, + [1435] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5234), + [anon_sym_LPAREN] = ACTIONS(5234), + [anon_sym_LBRACK] = ACTIONS(5234), + [anon_sym_QMARK] = ACTIONS(5236), + [sym__immediate_quest] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5236), + [aux_sym_custom_operator_token1] = ACTIONS(5236), + [anon_sym_LT] = ACTIONS(5236), + [anon_sym_GT] = ACTIONS(5236), + [anon_sym_LBRACE] = ACTIONS(5234), + [anon_sym_RBRACE] = ACTIONS(5234), + [anon_sym_case] = ACTIONS(5234), + [anon_sym_fallthrough] = ACTIONS(5234), + [anon_sym_BANG_EQ] = ACTIONS(5236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5236), + [anon_sym_LT_EQ] = ACTIONS(5236), + [anon_sym_GT_EQ] = ACTIONS(5236), + [anon_sym_is] = ACTIONS(5234), + [anon_sym_PLUS] = ACTIONS(5236), + [anon_sym_DASH] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_SLASH] = ACTIONS(5236), + [anon_sym_PERCENT] = ACTIONS(5236), + [anon_sym_PLUS_PLUS] = ACTIONS(5236), + [anon_sym_DASH_DASH] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(5236), + [anon_sym_CARET] = ACTIONS(5236), + [anon_sym_LT_LT] = ACTIONS(5236), + [anon_sym_GT_GT] = ACTIONS(5236), + [anon_sym_class] = ACTIONS(5234), + [anon_sym_prefix] = ACTIONS(5234), + [anon_sym_infix] = ACTIONS(5234), + [anon_sym_postfix] = ACTIONS(5234), + [anon_sym_AT] = ACTIONS(5236), + [sym_property_behavior_modifier] = ACTIONS(5234), + [anon_sym_override] = ACTIONS(5234), + [anon_sym_convenience] = ACTIONS(5234), + [anon_sym_required] = ACTIONS(5234), + [anon_sym_public] = ACTIONS(5234), + [anon_sym_private] = ACTIONS(5234), + [anon_sym_internal] = ACTIONS(5234), + [anon_sym_fileprivate] = ACTIONS(5234), + [anon_sym_open] = ACTIONS(5234), + [anon_sym_mutating] = ACTIONS(5234), + [anon_sym_nonmutating] = ACTIONS(5234), + [anon_sym_static] = ACTIONS(5234), + [anon_sym_dynamic] = ACTIONS(5234), + [anon_sym_optional] = ACTIONS(5234), + [anon_sym_final] = ACTIONS(5234), + [anon_sym_inout] = ACTIONS(5234), + [anon_sym_ATescaping] = ACTIONS(5234), + [anon_sym_ATautoclosure] = ACTIONS(5234), + [anon_sym_weak] = ACTIONS(5234), + [anon_sym_unowned] = ACTIONS(5236), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5234), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5234), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5234), + [sym__dot_custom] = ACTIONS(5234), + [sym__three_dot_operator_custom] = ACTIONS(5234), + [sym__open_ended_range_operator_custom] = ACTIONS(5234), + [sym__conjunction_operator_custom] = ACTIONS(5234), + [sym__disjunction_operator_custom] = ACTIONS(5234), + [sym__nil_coalescing_operator_custom] = ACTIONS(5234), + [sym__eq_eq_custom] = ACTIONS(5234), + [sym__plus_then_ws] = ACTIONS(5234), + [sym__minus_then_ws] = ACTIONS(5234), + [sym_bang] = ACTIONS(5234), + [sym_default_keyword] = ACTIONS(5234), + [sym__as_custom] = ACTIONS(5234), + [sym__as_quest_custom] = ACTIONS(5234), + [sym__as_bang_custom] = ACTIONS(5234), + }, + [1436] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5230), + [anon_sym_LPAREN] = ACTIONS(5230), + [anon_sym_LBRACK] = ACTIONS(5230), + [anon_sym_QMARK] = ACTIONS(5232), + [sym__immediate_quest] = ACTIONS(5232), + [anon_sym_AMP] = ACTIONS(5232), + [aux_sym_custom_operator_token1] = ACTIONS(5232), + [anon_sym_LT] = ACTIONS(5232), + [anon_sym_GT] = ACTIONS(5232), + [anon_sym_LBRACE] = ACTIONS(5230), + [anon_sym_RBRACE] = ACTIONS(5230), + [anon_sym_case] = ACTIONS(5230), + [anon_sym_fallthrough] = ACTIONS(5230), + [anon_sym_BANG_EQ] = ACTIONS(5232), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5232), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5232), + [anon_sym_LT_EQ] = ACTIONS(5232), + [anon_sym_GT_EQ] = ACTIONS(5232), + [anon_sym_is] = ACTIONS(5230), + [anon_sym_PLUS] = ACTIONS(5232), + [anon_sym_DASH] = ACTIONS(5232), + [anon_sym_STAR] = ACTIONS(5232), + [anon_sym_SLASH] = ACTIONS(5232), + [anon_sym_PERCENT] = ACTIONS(5232), + [anon_sym_PLUS_PLUS] = ACTIONS(5232), + [anon_sym_DASH_DASH] = ACTIONS(5232), + [anon_sym_PIPE] = ACTIONS(5232), + [anon_sym_CARET] = ACTIONS(5232), + [anon_sym_LT_LT] = ACTIONS(5232), + [anon_sym_GT_GT] = ACTIONS(5232), + [anon_sym_class] = ACTIONS(5230), + [anon_sym_prefix] = ACTIONS(5230), + [anon_sym_infix] = ACTIONS(5230), + [anon_sym_postfix] = ACTIONS(5230), + [anon_sym_AT] = ACTIONS(5232), + [sym_property_behavior_modifier] = ACTIONS(5230), + [anon_sym_override] = ACTIONS(5230), + [anon_sym_convenience] = ACTIONS(5230), + [anon_sym_required] = ACTIONS(5230), + [anon_sym_public] = ACTIONS(5230), + [anon_sym_private] = ACTIONS(5230), + [anon_sym_internal] = ACTIONS(5230), + [anon_sym_fileprivate] = ACTIONS(5230), + [anon_sym_open] = ACTIONS(5230), + [anon_sym_mutating] = ACTIONS(5230), + [anon_sym_nonmutating] = ACTIONS(5230), + [anon_sym_static] = ACTIONS(5230), + [anon_sym_dynamic] = ACTIONS(5230), + [anon_sym_optional] = ACTIONS(5230), + [anon_sym_final] = ACTIONS(5230), + [anon_sym_inout] = ACTIONS(5230), + [anon_sym_ATescaping] = ACTIONS(5230), + [anon_sym_ATautoclosure] = ACTIONS(5230), + [anon_sym_weak] = ACTIONS(5230), + [anon_sym_unowned] = ACTIONS(5232), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5230), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5230), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5230), + [sym__dot_custom] = ACTIONS(5230), + [sym__three_dot_operator_custom] = ACTIONS(5230), + [sym__open_ended_range_operator_custom] = ACTIONS(5230), + [sym__conjunction_operator_custom] = ACTIONS(5230), + [sym__disjunction_operator_custom] = ACTIONS(5230), + [sym__nil_coalescing_operator_custom] = ACTIONS(5230), + [sym__eq_eq_custom] = ACTIONS(5230), + [sym__plus_then_ws] = ACTIONS(5230), + [sym__minus_then_ws] = ACTIONS(5230), + [sym_bang] = ACTIONS(5230), + [sym_default_keyword] = ACTIONS(5230), + [sym__as_custom] = ACTIONS(5230), + [sym__as_quest_custom] = ACTIONS(5230), + [sym__as_bang_custom] = ACTIONS(5230), + }, + [1437] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(4624), + [anon_sym_LBRACK] = ACTIONS(4624), + [anon_sym_QMARK] = ACTIONS(4626), + [sym__immediate_quest] = ACTIONS(4626), + [anon_sym_AMP] = ACTIONS(4626), + [aux_sym_custom_operator_token1] = ACTIONS(4626), + [anon_sym_LT] = ACTIONS(4626), + [anon_sym_GT] = ACTIONS(4626), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_RBRACE] = ACTIONS(4624), + [anon_sym_case] = ACTIONS(4624), + [anon_sym_fallthrough] = ACTIONS(4624), + [anon_sym_BANG_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4626), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4626), + [anon_sym_LT_EQ] = ACTIONS(4626), + [anon_sym_GT_EQ] = ACTIONS(4626), + [anon_sym_is] = ACTIONS(4624), + [anon_sym_PLUS] = ACTIONS(4626), + [anon_sym_DASH] = ACTIONS(4626), + [anon_sym_STAR] = ACTIONS(4626), + [anon_sym_SLASH] = ACTIONS(4626), + [anon_sym_PERCENT] = ACTIONS(4626), + [anon_sym_PLUS_PLUS] = ACTIONS(4626), + [anon_sym_DASH_DASH] = ACTIONS(4626), + [anon_sym_PIPE] = ACTIONS(4626), + [anon_sym_CARET] = ACTIONS(4626), + [anon_sym_LT_LT] = ACTIONS(4626), + [anon_sym_GT_GT] = ACTIONS(4626), + [anon_sym_class] = ACTIONS(4624), + [anon_sym_prefix] = ACTIONS(4624), + [anon_sym_infix] = ACTIONS(4624), + [anon_sym_postfix] = ACTIONS(4624), + [anon_sym_AT] = ACTIONS(4626), + [sym_property_behavior_modifier] = ACTIONS(4624), + [anon_sym_override] = ACTIONS(4624), + [anon_sym_convenience] = ACTIONS(4624), + [anon_sym_required] = ACTIONS(4624), + [anon_sym_public] = ACTIONS(4624), + [anon_sym_private] = ACTIONS(4624), + [anon_sym_internal] = ACTIONS(4624), + [anon_sym_fileprivate] = ACTIONS(4624), + [anon_sym_open] = ACTIONS(4624), + [anon_sym_mutating] = ACTIONS(4624), + [anon_sym_nonmutating] = ACTIONS(4624), + [anon_sym_static] = ACTIONS(4624), + [anon_sym_dynamic] = ACTIONS(4624), + [anon_sym_optional] = ACTIONS(4624), + [anon_sym_final] = ACTIONS(4624), + [anon_sym_inout] = ACTIONS(4624), + [anon_sym_ATescaping] = ACTIONS(4624), + [anon_sym_ATautoclosure] = ACTIONS(4624), + [anon_sym_weak] = ACTIONS(4624), + [anon_sym_unowned] = ACTIONS(4626), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4624), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4624), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4624), + [sym__dot_custom] = ACTIONS(4624), + [sym__three_dot_operator_custom] = ACTIONS(4624), + [sym__open_ended_range_operator_custom] = ACTIONS(4624), + [sym__conjunction_operator_custom] = ACTIONS(4624), + [sym__disjunction_operator_custom] = ACTIONS(4624), + [sym__nil_coalescing_operator_custom] = ACTIONS(4624), + [sym__eq_eq_custom] = ACTIONS(4624), + [sym__plus_then_ws] = ACTIONS(4624), + [sym__minus_then_ws] = ACTIONS(4624), + [sym_bang] = ACTIONS(4624), + [sym_default_keyword] = ACTIONS(4624), + [sym__as_custom] = ACTIONS(4624), + [sym__as_quest_custom] = ACTIONS(4624), + [sym__as_bang_custom] = ACTIONS(4624), + }, + [1438] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5214), + [anon_sym_LPAREN] = ACTIONS(5214), + [anon_sym_LBRACK] = ACTIONS(5214), + [anon_sym_QMARK] = ACTIONS(5216), + [sym__immediate_quest] = ACTIONS(5216), + [anon_sym_AMP] = ACTIONS(5216), + [aux_sym_custom_operator_token1] = ACTIONS(5216), + [anon_sym_LT] = ACTIONS(5216), + [anon_sym_GT] = ACTIONS(5216), + [anon_sym_LBRACE] = ACTIONS(5214), + [anon_sym_RBRACE] = ACTIONS(5214), + [anon_sym_case] = ACTIONS(5214), + [anon_sym_fallthrough] = ACTIONS(5214), + [anon_sym_BANG_EQ] = ACTIONS(5216), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5216), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5216), + [anon_sym_LT_EQ] = ACTIONS(5216), + [anon_sym_GT_EQ] = ACTIONS(5216), + [anon_sym_is] = ACTIONS(5214), + [anon_sym_PLUS] = ACTIONS(5216), + [anon_sym_DASH] = ACTIONS(5216), + [anon_sym_STAR] = ACTIONS(5216), + [anon_sym_SLASH] = ACTIONS(5216), + [anon_sym_PERCENT] = ACTIONS(5216), + [anon_sym_PLUS_PLUS] = ACTIONS(5216), + [anon_sym_DASH_DASH] = ACTIONS(5216), + [anon_sym_PIPE] = ACTIONS(5216), + [anon_sym_CARET] = ACTIONS(5216), + [anon_sym_LT_LT] = ACTIONS(5216), + [anon_sym_GT_GT] = ACTIONS(5216), + [anon_sym_class] = ACTIONS(5214), + [anon_sym_prefix] = ACTIONS(5214), + [anon_sym_infix] = ACTIONS(5214), + [anon_sym_postfix] = ACTIONS(5214), + [anon_sym_AT] = ACTIONS(5216), + [sym_property_behavior_modifier] = ACTIONS(5214), + [anon_sym_override] = ACTIONS(5214), + [anon_sym_convenience] = ACTIONS(5214), + [anon_sym_required] = ACTIONS(5214), + [anon_sym_public] = ACTIONS(5214), + [anon_sym_private] = ACTIONS(5214), + [anon_sym_internal] = ACTIONS(5214), + [anon_sym_fileprivate] = ACTIONS(5214), + [anon_sym_open] = ACTIONS(5214), + [anon_sym_mutating] = ACTIONS(5214), + [anon_sym_nonmutating] = ACTIONS(5214), + [anon_sym_static] = ACTIONS(5214), + [anon_sym_dynamic] = ACTIONS(5214), + [anon_sym_optional] = ACTIONS(5214), + [anon_sym_final] = ACTIONS(5214), + [anon_sym_inout] = ACTIONS(5214), + [anon_sym_ATescaping] = ACTIONS(5214), + [anon_sym_ATautoclosure] = ACTIONS(5214), + [anon_sym_weak] = ACTIONS(5214), + [anon_sym_unowned] = ACTIONS(5216), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5214), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5214), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5214), + [sym__dot_custom] = ACTIONS(5214), + [sym__three_dot_operator_custom] = ACTIONS(5214), + [sym__open_ended_range_operator_custom] = ACTIONS(5214), + [sym__conjunction_operator_custom] = ACTIONS(5214), + [sym__disjunction_operator_custom] = ACTIONS(5214), + [sym__nil_coalescing_operator_custom] = ACTIONS(5214), + [sym__eq_eq_custom] = ACTIONS(5214), + [sym__plus_then_ws] = ACTIONS(5214), + [sym__minus_then_ws] = ACTIONS(5214), + [sym_bang] = ACTIONS(5214), + [sym_default_keyword] = ACTIONS(5214), + [sym__as_custom] = ACTIONS(5214), + [sym__as_quest_custom] = ACTIONS(5214), + [sym__as_bang_custom] = ACTIONS(5214), + }, + [1439] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5248), + [anon_sym_LPAREN] = ACTIONS(5248), + [anon_sym_LBRACK] = ACTIONS(5248), + [anon_sym_QMARK] = ACTIONS(5250), + [sym__immediate_quest] = ACTIONS(5250), + [anon_sym_AMP] = ACTIONS(5250), + [aux_sym_custom_operator_token1] = ACTIONS(5250), + [anon_sym_LT] = ACTIONS(5250), + [anon_sym_GT] = ACTIONS(5250), + [anon_sym_LBRACE] = ACTIONS(5248), + [anon_sym_RBRACE] = ACTIONS(5248), + [anon_sym_case] = ACTIONS(5248), + [anon_sym_fallthrough] = ACTIONS(5248), + [anon_sym_BANG_EQ] = ACTIONS(5250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5250), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5250), + [anon_sym_is] = ACTIONS(5248), + [anon_sym_PLUS] = ACTIONS(5250), + [anon_sym_DASH] = ACTIONS(5250), + [anon_sym_STAR] = ACTIONS(5250), + [anon_sym_SLASH] = ACTIONS(5250), + [anon_sym_PERCENT] = ACTIONS(5250), + [anon_sym_PLUS_PLUS] = ACTIONS(5250), + [anon_sym_DASH_DASH] = ACTIONS(5250), + [anon_sym_PIPE] = ACTIONS(5250), + [anon_sym_CARET] = ACTIONS(5250), + [anon_sym_LT_LT] = ACTIONS(5250), + [anon_sym_GT_GT] = ACTIONS(5250), + [anon_sym_class] = ACTIONS(5248), + [anon_sym_prefix] = ACTIONS(5248), + [anon_sym_infix] = ACTIONS(5248), + [anon_sym_postfix] = ACTIONS(5248), + [anon_sym_AT] = ACTIONS(5250), + [sym_property_behavior_modifier] = ACTIONS(5248), + [anon_sym_override] = ACTIONS(5248), + [anon_sym_convenience] = ACTIONS(5248), + [anon_sym_required] = ACTIONS(5248), + [anon_sym_public] = ACTIONS(5248), + [anon_sym_private] = ACTIONS(5248), + [anon_sym_internal] = ACTIONS(5248), + [anon_sym_fileprivate] = ACTIONS(5248), + [anon_sym_open] = ACTIONS(5248), + [anon_sym_mutating] = ACTIONS(5248), + [anon_sym_nonmutating] = ACTIONS(5248), + [anon_sym_static] = ACTIONS(5248), + [anon_sym_dynamic] = ACTIONS(5248), + [anon_sym_optional] = ACTIONS(5248), + [anon_sym_final] = ACTIONS(5248), + [anon_sym_inout] = ACTIONS(5248), + [anon_sym_ATescaping] = ACTIONS(5248), + [anon_sym_ATautoclosure] = ACTIONS(5248), + [anon_sym_weak] = ACTIONS(5248), + [anon_sym_unowned] = ACTIONS(5250), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5248), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5248), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5248), + [sym__dot_custom] = ACTIONS(5248), + [sym__three_dot_operator_custom] = ACTIONS(5248), + [sym__open_ended_range_operator_custom] = ACTIONS(5248), + [sym__conjunction_operator_custom] = ACTIONS(5248), + [sym__disjunction_operator_custom] = ACTIONS(5248), + [sym__nil_coalescing_operator_custom] = ACTIONS(5248), + [sym__eq_eq_custom] = ACTIONS(5248), + [sym__plus_then_ws] = ACTIONS(5248), + [sym__minus_then_ws] = ACTIONS(5248), + [sym_bang] = ACTIONS(5248), + [sym_default_keyword] = ACTIONS(5248), + [sym__as_custom] = ACTIONS(5248), + [sym__as_quest_custom] = ACTIONS(5248), + [sym__as_bang_custom] = ACTIONS(5248), + }, + [1440] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5174), + [anon_sym_LPAREN] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(5174), + [anon_sym_QMARK] = ACTIONS(5176), + [sym__immediate_quest] = ACTIONS(5176), + [anon_sym_AMP] = ACTIONS(5176), + [aux_sym_custom_operator_token1] = ACTIONS(5176), + [anon_sym_LT] = ACTIONS(5176), + [anon_sym_GT] = ACTIONS(5176), + [anon_sym_LBRACE] = ACTIONS(5174), + [anon_sym_RBRACE] = ACTIONS(5174), + [anon_sym_case] = ACTIONS(5174), + [anon_sym_fallthrough] = ACTIONS(5174), + [anon_sym_BANG_EQ] = ACTIONS(5176), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5176), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5176), + [anon_sym_LT_EQ] = ACTIONS(5176), + [anon_sym_GT_EQ] = ACTIONS(5176), + [anon_sym_is] = ACTIONS(5174), + [anon_sym_PLUS] = ACTIONS(5176), + [anon_sym_DASH] = ACTIONS(5176), + [anon_sym_STAR] = ACTIONS(5176), + [anon_sym_SLASH] = ACTIONS(5176), + [anon_sym_PERCENT] = ACTIONS(5176), + [anon_sym_PLUS_PLUS] = ACTIONS(5176), + [anon_sym_DASH_DASH] = ACTIONS(5176), + [anon_sym_PIPE] = ACTIONS(5176), + [anon_sym_CARET] = ACTIONS(5176), + [anon_sym_LT_LT] = ACTIONS(5176), + [anon_sym_GT_GT] = ACTIONS(5176), + [anon_sym_class] = ACTIONS(5174), + [anon_sym_prefix] = ACTIONS(5174), + [anon_sym_infix] = ACTIONS(5174), + [anon_sym_postfix] = ACTIONS(5174), + [anon_sym_AT] = ACTIONS(5176), + [sym_property_behavior_modifier] = ACTIONS(5174), + [anon_sym_override] = ACTIONS(5174), + [anon_sym_convenience] = ACTIONS(5174), + [anon_sym_required] = ACTIONS(5174), + [anon_sym_public] = ACTIONS(5174), + [anon_sym_private] = ACTIONS(5174), + [anon_sym_internal] = ACTIONS(5174), + [anon_sym_fileprivate] = ACTIONS(5174), + [anon_sym_open] = ACTIONS(5174), + [anon_sym_mutating] = ACTIONS(5174), + [anon_sym_nonmutating] = ACTIONS(5174), + [anon_sym_static] = ACTIONS(5174), + [anon_sym_dynamic] = ACTIONS(5174), + [anon_sym_optional] = ACTIONS(5174), + [anon_sym_final] = ACTIONS(5174), + [anon_sym_inout] = ACTIONS(5174), + [anon_sym_ATescaping] = ACTIONS(5174), + [anon_sym_ATautoclosure] = ACTIONS(5174), + [anon_sym_weak] = ACTIONS(5174), + [anon_sym_unowned] = ACTIONS(5176), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5174), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5174), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5174), + [sym__dot_custom] = ACTIONS(5174), + [sym__three_dot_operator_custom] = ACTIONS(5174), + [sym__open_ended_range_operator_custom] = ACTIONS(5174), + [sym__conjunction_operator_custom] = ACTIONS(5174), + [sym__disjunction_operator_custom] = ACTIONS(5174), + [sym__nil_coalescing_operator_custom] = ACTIONS(5174), + [sym__eq_eq_custom] = ACTIONS(5174), + [sym__plus_then_ws] = ACTIONS(5174), + [sym__minus_then_ws] = ACTIONS(5174), + [sym_bang] = ACTIONS(5174), + [sym_default_keyword] = ACTIONS(5174), + [sym__as_custom] = ACTIONS(5174), + [sym__as_quest_custom] = ACTIONS(5174), + [sym__as_bang_custom] = ACTIONS(5174), + }, + [1441] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5238), + [anon_sym_LPAREN] = ACTIONS(5238), + [anon_sym_LBRACK] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5241), + [sym__immediate_quest] = ACTIONS(5241), + [anon_sym_AMP] = ACTIONS(5241), + [aux_sym_custom_operator_token1] = ACTIONS(5241), + [anon_sym_LT] = ACTIONS(5241), + [anon_sym_GT] = ACTIONS(5241), + [anon_sym_LBRACE] = ACTIONS(5238), + [anon_sym_RBRACE] = ACTIONS(5238), + [anon_sym_case] = ACTIONS(5238), + [anon_sym_fallthrough] = ACTIONS(5238), + [anon_sym_BANG_EQ] = ACTIONS(5241), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5241), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5241), + [anon_sym_LT_EQ] = ACTIONS(5241), + [anon_sym_GT_EQ] = ACTIONS(5241), + [anon_sym_is] = ACTIONS(5238), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5241), + [anon_sym_PERCENT] = ACTIONS(5241), + [anon_sym_PLUS_PLUS] = ACTIONS(5241), + [anon_sym_DASH_DASH] = ACTIONS(5241), + [anon_sym_PIPE] = ACTIONS(5241), + [anon_sym_CARET] = ACTIONS(5241), + [anon_sym_LT_LT] = ACTIONS(5241), + [anon_sym_GT_GT] = ACTIONS(5241), + [anon_sym_class] = ACTIONS(5238), + [anon_sym_prefix] = ACTIONS(5238), + [anon_sym_infix] = ACTIONS(5238), + [anon_sym_postfix] = ACTIONS(5238), + [anon_sym_AT] = ACTIONS(5241), + [sym_property_behavior_modifier] = ACTIONS(5238), + [anon_sym_override] = ACTIONS(5238), + [anon_sym_convenience] = ACTIONS(5238), + [anon_sym_required] = ACTIONS(5238), + [anon_sym_public] = ACTIONS(5238), + [anon_sym_private] = ACTIONS(5238), + [anon_sym_internal] = ACTIONS(5238), + [anon_sym_fileprivate] = ACTIONS(5238), + [anon_sym_open] = ACTIONS(5238), + [anon_sym_mutating] = ACTIONS(5238), + [anon_sym_nonmutating] = ACTIONS(5238), + [anon_sym_static] = ACTIONS(5238), + [anon_sym_dynamic] = ACTIONS(5238), + [anon_sym_optional] = ACTIONS(5238), + [anon_sym_final] = ACTIONS(5238), + [anon_sym_inout] = ACTIONS(5238), + [anon_sym_ATescaping] = ACTIONS(5238), + [anon_sym_ATautoclosure] = ACTIONS(5238), + [anon_sym_weak] = ACTIONS(5238), + [anon_sym_unowned] = ACTIONS(5241), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5238), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5238), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5238), + [sym__dot_custom] = ACTIONS(5238), + [sym__three_dot_operator_custom] = ACTIONS(5238), + [sym__open_ended_range_operator_custom] = ACTIONS(5238), + [sym__conjunction_operator_custom] = ACTIONS(5238), + [sym__disjunction_operator_custom] = ACTIONS(5238), + [sym__nil_coalescing_operator_custom] = ACTIONS(5238), + [sym__eq_eq_custom] = ACTIONS(5238), + [sym__plus_then_ws] = ACTIONS(5238), + [sym__minus_then_ws] = ACTIONS(5238), + [sym_bang] = ACTIONS(5238), + [sym_default_keyword] = ACTIONS(5238), + [sym__as_custom] = ACTIONS(5238), + [sym__as_quest_custom] = ACTIONS(5238), + [sym__as_bang_custom] = ACTIONS(5238), + }, + [1442] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5148), + [anon_sym_LPAREN] = ACTIONS(5148), + [anon_sym_LBRACK] = ACTIONS(5148), + [anon_sym_QMARK] = ACTIONS(5150), + [sym__immediate_quest] = ACTIONS(5150), + [anon_sym_AMP] = ACTIONS(5150), + [aux_sym_custom_operator_token1] = ACTIONS(5150), + [anon_sym_LT] = ACTIONS(5150), + [anon_sym_GT] = ACTIONS(5150), + [anon_sym_LBRACE] = ACTIONS(5148), + [anon_sym_RBRACE] = ACTIONS(5148), + [anon_sym_case] = ACTIONS(5148), + [anon_sym_fallthrough] = ACTIONS(5148), + [anon_sym_BANG_EQ] = ACTIONS(5150), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5150), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5150), + [anon_sym_LT_EQ] = ACTIONS(5150), + [anon_sym_GT_EQ] = ACTIONS(5150), + [anon_sym_is] = ACTIONS(5148), + [anon_sym_PLUS] = ACTIONS(5150), + [anon_sym_DASH] = ACTIONS(5150), + [anon_sym_STAR] = ACTIONS(5150), + [anon_sym_SLASH] = ACTIONS(5150), + [anon_sym_PERCENT] = ACTIONS(5150), + [anon_sym_PLUS_PLUS] = ACTIONS(5150), + [anon_sym_DASH_DASH] = ACTIONS(5150), + [anon_sym_PIPE] = ACTIONS(5150), + [anon_sym_CARET] = ACTIONS(5150), + [anon_sym_LT_LT] = ACTIONS(5150), + [anon_sym_GT_GT] = ACTIONS(5150), + [anon_sym_class] = ACTIONS(5148), + [anon_sym_prefix] = ACTIONS(5148), + [anon_sym_infix] = ACTIONS(5148), + [anon_sym_postfix] = ACTIONS(5148), + [anon_sym_AT] = ACTIONS(5150), + [sym_property_behavior_modifier] = ACTIONS(5148), + [anon_sym_override] = ACTIONS(5148), + [anon_sym_convenience] = ACTIONS(5148), + [anon_sym_required] = ACTIONS(5148), + [anon_sym_public] = ACTIONS(5148), + [anon_sym_private] = ACTIONS(5148), + [anon_sym_internal] = ACTIONS(5148), + [anon_sym_fileprivate] = ACTIONS(5148), + [anon_sym_open] = ACTIONS(5148), + [anon_sym_mutating] = ACTIONS(5148), + [anon_sym_nonmutating] = ACTIONS(5148), + [anon_sym_static] = ACTIONS(5148), + [anon_sym_dynamic] = ACTIONS(5148), + [anon_sym_optional] = ACTIONS(5148), + [anon_sym_final] = ACTIONS(5148), + [anon_sym_inout] = ACTIONS(5148), + [anon_sym_ATescaping] = ACTIONS(5148), + [anon_sym_ATautoclosure] = ACTIONS(5148), + [anon_sym_weak] = ACTIONS(5148), + [anon_sym_unowned] = ACTIONS(5150), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5148), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5148), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5148), + [sym__dot_custom] = ACTIONS(5148), + [sym__three_dot_operator_custom] = ACTIONS(5148), + [sym__open_ended_range_operator_custom] = ACTIONS(5148), + [sym__conjunction_operator_custom] = ACTIONS(5148), + [sym__disjunction_operator_custom] = ACTIONS(5148), + [sym__nil_coalescing_operator_custom] = ACTIONS(5148), + [sym__eq_eq_custom] = ACTIONS(5148), + [sym__plus_then_ws] = ACTIONS(5148), + [sym__minus_then_ws] = ACTIONS(5148), + [sym_bang] = ACTIONS(5148), + [sym_default_keyword] = ACTIONS(5148), + [sym__as_custom] = ACTIONS(5148), + [sym__as_quest_custom] = ACTIONS(5148), + [sym__as_bang_custom] = ACTIONS(5148), + }, + [1443] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5244), + [anon_sym_LPAREN] = ACTIONS(5244), + [anon_sym_LBRACK] = ACTIONS(5244), + [anon_sym_QMARK] = ACTIONS(5246), + [sym__immediate_quest] = ACTIONS(5246), + [anon_sym_AMP] = ACTIONS(5246), + [aux_sym_custom_operator_token1] = ACTIONS(5246), + [anon_sym_LT] = ACTIONS(5246), + [anon_sym_GT] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(5244), + [anon_sym_RBRACE] = ACTIONS(5244), + [anon_sym_case] = ACTIONS(5244), + [anon_sym_fallthrough] = ACTIONS(5244), + [anon_sym_BANG_EQ] = ACTIONS(5246), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5246), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5246), + [anon_sym_LT_EQ] = ACTIONS(5246), + [anon_sym_GT_EQ] = ACTIONS(5246), + [anon_sym_is] = ACTIONS(5244), + [anon_sym_PLUS] = ACTIONS(5246), + [anon_sym_DASH] = ACTIONS(5246), + [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_SLASH] = ACTIONS(5246), + [anon_sym_PERCENT] = ACTIONS(5246), + [anon_sym_PLUS_PLUS] = ACTIONS(5246), + [anon_sym_DASH_DASH] = ACTIONS(5246), + [anon_sym_PIPE] = ACTIONS(5246), + [anon_sym_CARET] = ACTIONS(5246), + [anon_sym_LT_LT] = ACTIONS(5246), + [anon_sym_GT_GT] = ACTIONS(5246), + [anon_sym_class] = ACTIONS(5244), + [anon_sym_prefix] = ACTIONS(5244), + [anon_sym_infix] = ACTIONS(5244), + [anon_sym_postfix] = ACTIONS(5244), + [anon_sym_AT] = ACTIONS(5246), + [sym_property_behavior_modifier] = ACTIONS(5244), + [anon_sym_override] = ACTIONS(5244), + [anon_sym_convenience] = ACTIONS(5244), + [anon_sym_required] = ACTIONS(5244), + [anon_sym_public] = ACTIONS(5244), + [anon_sym_private] = ACTIONS(5244), + [anon_sym_internal] = ACTIONS(5244), + [anon_sym_fileprivate] = ACTIONS(5244), + [anon_sym_open] = ACTIONS(5244), + [anon_sym_mutating] = ACTIONS(5244), + [anon_sym_nonmutating] = ACTIONS(5244), + [anon_sym_static] = ACTIONS(5244), + [anon_sym_dynamic] = ACTIONS(5244), + [anon_sym_optional] = ACTIONS(5244), + [anon_sym_final] = ACTIONS(5244), + [anon_sym_inout] = ACTIONS(5244), + [anon_sym_ATescaping] = ACTIONS(5244), + [anon_sym_ATautoclosure] = ACTIONS(5244), + [anon_sym_weak] = ACTIONS(5244), + [anon_sym_unowned] = ACTIONS(5246), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5244), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5244), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5244), + [sym__dot_custom] = ACTIONS(5244), + [sym__three_dot_operator_custom] = ACTIONS(5244), + [sym__open_ended_range_operator_custom] = ACTIONS(5244), + [sym__conjunction_operator_custom] = ACTIONS(5244), + [sym__disjunction_operator_custom] = ACTIONS(5244), + [sym__nil_coalescing_operator_custom] = ACTIONS(5244), + [sym__eq_eq_custom] = ACTIONS(5244), + [sym__plus_then_ws] = ACTIONS(5244), + [sym__minus_then_ws] = ACTIONS(5244), + [sym_bang] = ACTIONS(5244), + [sym_default_keyword] = ACTIONS(5244), + [sym__as_custom] = ACTIONS(5244), + [sym__as_quest_custom] = ACTIONS(5244), + [sym__as_bang_custom] = ACTIONS(5244), + }, + [1444] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5252), + [anon_sym_LPAREN] = ACTIONS(5252), + [anon_sym_LBRACK] = ACTIONS(5252), + [anon_sym_QMARK] = ACTIONS(5254), + [sym__immediate_quest] = ACTIONS(5254), + [anon_sym_AMP] = ACTIONS(5254), + [aux_sym_custom_operator_token1] = ACTIONS(5254), + [anon_sym_LT] = ACTIONS(5254), + [anon_sym_GT] = ACTIONS(5254), + [anon_sym_LBRACE] = ACTIONS(5252), + [anon_sym_RBRACE] = ACTIONS(5252), + [anon_sym_case] = ACTIONS(5252), + [anon_sym_fallthrough] = ACTIONS(5252), + [anon_sym_BANG_EQ] = ACTIONS(5254), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5254), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5254), + [anon_sym_LT_EQ] = ACTIONS(5254), + [anon_sym_GT_EQ] = ACTIONS(5254), + [anon_sym_is] = ACTIONS(5252), + [anon_sym_PLUS] = ACTIONS(5254), + [anon_sym_DASH] = ACTIONS(5254), + [anon_sym_STAR] = ACTIONS(5254), + [anon_sym_SLASH] = ACTIONS(5254), + [anon_sym_PERCENT] = ACTIONS(5254), + [anon_sym_PLUS_PLUS] = ACTIONS(5254), + [anon_sym_DASH_DASH] = ACTIONS(5254), + [anon_sym_PIPE] = ACTIONS(5254), + [anon_sym_CARET] = ACTIONS(5254), + [anon_sym_LT_LT] = ACTIONS(5254), + [anon_sym_GT_GT] = ACTIONS(5254), + [anon_sym_class] = ACTIONS(5252), + [anon_sym_prefix] = ACTIONS(5252), + [anon_sym_infix] = ACTIONS(5252), + [anon_sym_postfix] = ACTIONS(5252), + [anon_sym_AT] = ACTIONS(5254), + [sym_property_behavior_modifier] = ACTIONS(5252), + [anon_sym_override] = ACTIONS(5252), + [anon_sym_convenience] = ACTIONS(5252), + [anon_sym_required] = ACTIONS(5252), + [anon_sym_public] = ACTIONS(5252), + [anon_sym_private] = ACTIONS(5252), + [anon_sym_internal] = ACTIONS(5252), + [anon_sym_fileprivate] = ACTIONS(5252), + [anon_sym_open] = ACTIONS(5252), + [anon_sym_mutating] = ACTIONS(5252), + [anon_sym_nonmutating] = ACTIONS(5252), + [anon_sym_static] = ACTIONS(5252), + [anon_sym_dynamic] = ACTIONS(5252), + [anon_sym_optional] = ACTIONS(5252), + [anon_sym_final] = ACTIONS(5252), + [anon_sym_inout] = ACTIONS(5252), + [anon_sym_ATescaping] = ACTIONS(5252), + [anon_sym_ATautoclosure] = ACTIONS(5252), + [anon_sym_weak] = ACTIONS(5252), + [anon_sym_unowned] = ACTIONS(5254), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5252), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5252), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5252), + [sym__dot_custom] = ACTIONS(5252), + [sym__three_dot_operator_custom] = ACTIONS(5252), + [sym__open_ended_range_operator_custom] = ACTIONS(5252), + [sym__conjunction_operator_custom] = ACTIONS(5252), + [sym__disjunction_operator_custom] = ACTIONS(5252), + [sym__nil_coalescing_operator_custom] = ACTIONS(5252), + [sym__eq_eq_custom] = ACTIONS(5252), + [sym__plus_then_ws] = ACTIONS(5252), + [sym__minus_then_ws] = ACTIONS(5252), + [sym_bang] = ACTIONS(5252), + [sym_default_keyword] = ACTIONS(5252), + [sym__as_custom] = ACTIONS(5252), + [sym__as_quest_custom] = ACTIONS(5252), + [sym__as_bang_custom] = ACTIONS(5252), + }, + [1445] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5160), + [anon_sym_LPAREN] = ACTIONS(5160), + [anon_sym_LBRACK] = ACTIONS(5160), + [anon_sym_QMARK] = ACTIONS(5162), + [sym__immediate_quest] = ACTIONS(5162), + [anon_sym_AMP] = ACTIONS(5162), + [aux_sym_custom_operator_token1] = ACTIONS(5162), + [anon_sym_LT] = ACTIONS(5162), + [anon_sym_GT] = ACTIONS(5162), + [anon_sym_LBRACE] = ACTIONS(5160), + [anon_sym_RBRACE] = ACTIONS(5160), + [anon_sym_case] = ACTIONS(5160), + [anon_sym_fallthrough] = ACTIONS(5160), + [anon_sym_BANG_EQ] = ACTIONS(5162), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5162), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5162), + [anon_sym_LT_EQ] = ACTIONS(5162), + [anon_sym_GT_EQ] = ACTIONS(5162), + [anon_sym_is] = ACTIONS(5160), + [anon_sym_PLUS] = ACTIONS(5162), + [anon_sym_DASH] = ACTIONS(5162), + [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_SLASH] = ACTIONS(5162), + [anon_sym_PERCENT] = ACTIONS(5162), + [anon_sym_PLUS_PLUS] = ACTIONS(5162), + [anon_sym_DASH_DASH] = ACTIONS(5162), + [anon_sym_PIPE] = ACTIONS(5162), + [anon_sym_CARET] = ACTIONS(5162), + [anon_sym_LT_LT] = ACTIONS(5162), + [anon_sym_GT_GT] = ACTIONS(5162), + [anon_sym_class] = ACTIONS(5160), + [anon_sym_prefix] = ACTIONS(5160), + [anon_sym_infix] = ACTIONS(5160), + [anon_sym_postfix] = ACTIONS(5160), + [anon_sym_AT] = ACTIONS(5162), + [sym_property_behavior_modifier] = ACTIONS(5160), + [anon_sym_override] = ACTIONS(5160), + [anon_sym_convenience] = ACTIONS(5160), + [anon_sym_required] = ACTIONS(5160), + [anon_sym_public] = ACTIONS(5160), + [anon_sym_private] = ACTIONS(5160), + [anon_sym_internal] = ACTIONS(5160), + [anon_sym_fileprivate] = ACTIONS(5160), + [anon_sym_open] = ACTIONS(5160), + [anon_sym_mutating] = ACTIONS(5160), + [anon_sym_nonmutating] = ACTIONS(5160), + [anon_sym_static] = ACTIONS(5160), + [anon_sym_dynamic] = ACTIONS(5160), + [anon_sym_optional] = ACTIONS(5160), + [anon_sym_final] = ACTIONS(5160), + [anon_sym_inout] = ACTIONS(5160), + [anon_sym_ATescaping] = ACTIONS(5160), + [anon_sym_ATautoclosure] = ACTIONS(5160), + [anon_sym_weak] = ACTIONS(5160), + [anon_sym_unowned] = ACTIONS(5162), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5160), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5160), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5160), + [sym__dot_custom] = ACTIONS(5160), + [sym__three_dot_operator_custom] = ACTIONS(5160), + [sym__open_ended_range_operator_custom] = ACTIONS(5160), + [sym__conjunction_operator_custom] = ACTIONS(5160), + [sym__disjunction_operator_custom] = ACTIONS(5160), + [sym__nil_coalescing_operator_custom] = ACTIONS(5160), + [sym__eq_eq_custom] = ACTIONS(5160), + [sym__plus_then_ws] = ACTIONS(5160), + [sym__minus_then_ws] = ACTIONS(5160), + [sym_bang] = ACTIONS(5160), + [sym_default_keyword] = ACTIONS(5160), + [sym__as_custom] = ACTIONS(5160), + [sym__as_quest_custom] = ACTIONS(5160), + [sym__as_bang_custom] = ACTIONS(5160), + }, + [1446] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5202), + [anon_sym_LPAREN] = ACTIONS(5202), + [anon_sym_LBRACK] = ACTIONS(5202), + [anon_sym_QMARK] = ACTIONS(5204), + [sym__immediate_quest] = ACTIONS(5204), + [anon_sym_AMP] = ACTIONS(5204), + [aux_sym_custom_operator_token1] = ACTIONS(5204), + [anon_sym_LT] = ACTIONS(5204), + [anon_sym_GT] = ACTIONS(5204), + [anon_sym_LBRACE] = ACTIONS(5202), + [anon_sym_RBRACE] = ACTIONS(5202), + [anon_sym_case] = ACTIONS(5202), + [anon_sym_fallthrough] = ACTIONS(5202), + [anon_sym_BANG_EQ] = ACTIONS(5204), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5204), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5204), + [anon_sym_LT_EQ] = ACTIONS(5204), + [anon_sym_GT_EQ] = ACTIONS(5204), + [anon_sym_is] = ACTIONS(5202), + [anon_sym_PLUS] = ACTIONS(5204), + [anon_sym_DASH] = ACTIONS(5204), + [anon_sym_STAR] = ACTIONS(5204), + [anon_sym_SLASH] = ACTIONS(5204), + [anon_sym_PERCENT] = ACTIONS(5204), + [anon_sym_PLUS_PLUS] = ACTIONS(5204), + [anon_sym_DASH_DASH] = ACTIONS(5204), + [anon_sym_PIPE] = ACTIONS(5204), + [anon_sym_CARET] = ACTIONS(5204), + [anon_sym_LT_LT] = ACTIONS(5204), + [anon_sym_GT_GT] = ACTIONS(5204), + [anon_sym_class] = ACTIONS(5202), + [anon_sym_prefix] = ACTIONS(5202), + [anon_sym_infix] = ACTIONS(5202), + [anon_sym_postfix] = ACTIONS(5202), + [anon_sym_AT] = ACTIONS(5204), + [sym_property_behavior_modifier] = ACTIONS(5202), + [anon_sym_override] = ACTIONS(5202), + [anon_sym_convenience] = ACTIONS(5202), + [anon_sym_required] = ACTIONS(5202), + [anon_sym_public] = ACTIONS(5202), + [anon_sym_private] = ACTIONS(5202), + [anon_sym_internal] = ACTIONS(5202), + [anon_sym_fileprivate] = ACTIONS(5202), + [anon_sym_open] = ACTIONS(5202), + [anon_sym_mutating] = ACTIONS(5202), + [anon_sym_nonmutating] = ACTIONS(5202), + [anon_sym_static] = ACTIONS(5202), + [anon_sym_dynamic] = ACTIONS(5202), + [anon_sym_optional] = ACTIONS(5202), + [anon_sym_final] = ACTIONS(5202), + [anon_sym_inout] = ACTIONS(5202), + [anon_sym_ATescaping] = ACTIONS(5202), + [anon_sym_ATautoclosure] = ACTIONS(5202), + [anon_sym_weak] = ACTIONS(5202), + [anon_sym_unowned] = ACTIONS(5204), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5202), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5202), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5202), + [sym__dot_custom] = ACTIONS(5202), + [sym__three_dot_operator_custom] = ACTIONS(5202), + [sym__open_ended_range_operator_custom] = ACTIONS(5202), + [sym__conjunction_operator_custom] = ACTIONS(5202), + [sym__disjunction_operator_custom] = ACTIONS(5202), + [sym__nil_coalescing_operator_custom] = ACTIONS(5202), + [sym__eq_eq_custom] = ACTIONS(5202), + [sym__plus_then_ws] = ACTIONS(5202), + [sym__minus_then_ws] = ACTIONS(5202), + [sym_bang] = ACTIONS(5202), + [sym_default_keyword] = ACTIONS(5202), + [sym__as_custom] = ACTIONS(5202), + [sym__as_quest_custom] = ACTIONS(5202), + [sym__as_bang_custom] = ACTIONS(5202), + }, + [1447] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5288), + [anon_sym_LPAREN] = ACTIONS(5288), + [anon_sym_LBRACK] = ACTIONS(5288), + [anon_sym_QMARK] = ACTIONS(5290), + [sym__immediate_quest] = ACTIONS(5290), + [anon_sym_AMP] = ACTIONS(5290), + [aux_sym_custom_operator_token1] = ACTIONS(5290), + [anon_sym_LT] = ACTIONS(5290), + [anon_sym_GT] = ACTIONS(5290), + [anon_sym_LBRACE] = ACTIONS(5288), + [anon_sym_RBRACE] = ACTIONS(5288), + [anon_sym_case] = ACTIONS(5288), + [anon_sym_fallthrough] = ACTIONS(5288), + [anon_sym_BANG_EQ] = ACTIONS(5290), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5290), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5290), + [anon_sym_LT_EQ] = ACTIONS(5290), + [anon_sym_GT_EQ] = ACTIONS(5290), + [anon_sym_is] = ACTIONS(5288), + [anon_sym_PLUS] = ACTIONS(5290), + [anon_sym_DASH] = ACTIONS(5290), + [anon_sym_STAR] = ACTIONS(5290), + [anon_sym_SLASH] = ACTIONS(5290), + [anon_sym_PERCENT] = ACTIONS(5290), + [anon_sym_PLUS_PLUS] = ACTIONS(5290), + [anon_sym_DASH_DASH] = ACTIONS(5290), + [anon_sym_PIPE] = ACTIONS(5290), + [anon_sym_CARET] = ACTIONS(5290), + [anon_sym_LT_LT] = ACTIONS(5290), + [anon_sym_GT_GT] = ACTIONS(5290), + [anon_sym_class] = ACTIONS(5288), + [anon_sym_prefix] = ACTIONS(5288), + [anon_sym_infix] = ACTIONS(5288), + [anon_sym_postfix] = ACTIONS(5288), + [anon_sym_AT] = ACTIONS(5290), + [sym_property_behavior_modifier] = ACTIONS(5288), + [anon_sym_override] = ACTIONS(5288), + [anon_sym_convenience] = ACTIONS(5288), + [anon_sym_required] = ACTIONS(5288), + [anon_sym_public] = ACTIONS(5288), + [anon_sym_private] = ACTIONS(5288), + [anon_sym_internal] = ACTIONS(5288), + [anon_sym_fileprivate] = ACTIONS(5288), + [anon_sym_open] = ACTIONS(5288), + [anon_sym_mutating] = ACTIONS(5288), + [anon_sym_nonmutating] = ACTIONS(5288), + [anon_sym_static] = ACTIONS(5288), + [anon_sym_dynamic] = ACTIONS(5288), + [anon_sym_optional] = ACTIONS(5288), + [anon_sym_final] = ACTIONS(5288), + [anon_sym_inout] = ACTIONS(5288), + [anon_sym_ATescaping] = ACTIONS(5288), + [anon_sym_ATautoclosure] = ACTIONS(5288), + [anon_sym_weak] = ACTIONS(5288), + [anon_sym_unowned] = ACTIONS(5290), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5288), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5288), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5288), + [sym__dot_custom] = ACTIONS(5288), + [sym__three_dot_operator_custom] = ACTIONS(5288), + [sym__open_ended_range_operator_custom] = ACTIONS(5288), + [sym__conjunction_operator_custom] = ACTIONS(5288), + [sym__disjunction_operator_custom] = ACTIONS(5288), + [sym__nil_coalescing_operator_custom] = ACTIONS(5288), + [sym__eq_eq_custom] = ACTIONS(5288), + [sym__plus_then_ws] = ACTIONS(5288), + [sym__minus_then_ws] = ACTIONS(5288), + [sym_bang] = ACTIONS(5288), + [sym_default_keyword] = ACTIONS(5288), + [sym__as_custom] = ACTIONS(5288), + [sym__as_quest_custom] = ACTIONS(5288), + [sym__as_bang_custom] = ACTIONS(5288), + }, + [1448] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(5168), + [anon_sym_LBRACK] = ACTIONS(5168), + [anon_sym_QMARK] = ACTIONS(5171), + [sym__immediate_quest] = ACTIONS(5171), + [anon_sym_AMP] = ACTIONS(5171), + [aux_sym_custom_operator_token1] = ACTIONS(5171), + [anon_sym_LT] = ACTIONS(5171), + [anon_sym_GT] = ACTIONS(5171), + [anon_sym_LBRACE] = ACTIONS(5168), + [anon_sym_RBRACE] = ACTIONS(5168), + [anon_sym_case] = ACTIONS(5168), + [anon_sym_fallthrough] = ACTIONS(5168), + [anon_sym_BANG_EQ] = ACTIONS(5171), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5171), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5171), + [anon_sym_LT_EQ] = ACTIONS(5171), + [anon_sym_GT_EQ] = ACTIONS(5171), + [anon_sym_is] = ACTIONS(5168), + [anon_sym_PLUS] = ACTIONS(5171), + [anon_sym_DASH] = ACTIONS(5171), + [anon_sym_STAR] = ACTIONS(5171), + [anon_sym_SLASH] = ACTIONS(5171), + [anon_sym_PERCENT] = ACTIONS(5171), + [anon_sym_PLUS_PLUS] = ACTIONS(5171), + [anon_sym_DASH_DASH] = ACTIONS(5171), + [anon_sym_PIPE] = ACTIONS(5171), + [anon_sym_CARET] = ACTIONS(5171), + [anon_sym_LT_LT] = ACTIONS(5171), + [anon_sym_GT_GT] = ACTIONS(5171), + [anon_sym_class] = ACTIONS(5168), + [anon_sym_prefix] = ACTIONS(5168), + [anon_sym_infix] = ACTIONS(5168), + [anon_sym_postfix] = ACTIONS(5168), + [anon_sym_AT] = ACTIONS(5171), + [sym_property_behavior_modifier] = ACTIONS(5168), + [anon_sym_override] = ACTIONS(5168), + [anon_sym_convenience] = ACTIONS(5168), + [anon_sym_required] = ACTIONS(5168), + [anon_sym_public] = ACTIONS(5168), + [anon_sym_private] = ACTIONS(5168), + [anon_sym_internal] = ACTIONS(5168), + [anon_sym_fileprivate] = ACTIONS(5168), + [anon_sym_open] = ACTIONS(5168), + [anon_sym_mutating] = ACTIONS(5168), + [anon_sym_nonmutating] = ACTIONS(5168), + [anon_sym_static] = ACTIONS(5168), + [anon_sym_dynamic] = ACTIONS(5168), + [anon_sym_optional] = ACTIONS(5168), + [anon_sym_final] = ACTIONS(5168), + [anon_sym_inout] = ACTIONS(5168), + [anon_sym_ATescaping] = ACTIONS(5168), + [anon_sym_ATautoclosure] = ACTIONS(5168), + [anon_sym_weak] = ACTIONS(5168), + [anon_sym_unowned] = ACTIONS(5171), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5168), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5168), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5168), + [sym__dot_custom] = ACTIONS(5168), + [sym__three_dot_operator_custom] = ACTIONS(5168), + [sym__open_ended_range_operator_custom] = ACTIONS(5168), + [sym__conjunction_operator_custom] = ACTIONS(5168), + [sym__disjunction_operator_custom] = ACTIONS(5168), + [sym__nil_coalescing_operator_custom] = ACTIONS(5168), + [sym__eq_eq_custom] = ACTIONS(5168), + [sym__plus_then_ws] = ACTIONS(5168), + [sym__minus_then_ws] = ACTIONS(5168), + [sym_bang] = ACTIONS(5168), + [sym_default_keyword] = ACTIONS(5168), + [sym__as_custom] = ACTIONS(5168), + [sym__as_quest_custom] = ACTIONS(5168), + [sym__as_bang_custom] = ACTIONS(5168), + }, + [1449] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4694), + [anon_sym_LPAREN] = ACTIONS(4694), + [anon_sym_LBRACK] = ACTIONS(4694), + [anon_sym_QMARK] = ACTIONS(4696), + [sym__immediate_quest] = ACTIONS(4696), + [anon_sym_AMP] = ACTIONS(4696), + [aux_sym_custom_operator_token1] = ACTIONS(4696), + [anon_sym_LT] = ACTIONS(4696), + [anon_sym_GT] = ACTIONS(4696), + [anon_sym_LBRACE] = ACTIONS(4694), + [anon_sym_RBRACE] = ACTIONS(4694), + [anon_sym_case] = ACTIONS(4694), + [anon_sym_fallthrough] = ACTIONS(4694), + [anon_sym_BANG_EQ] = ACTIONS(4696), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4696), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4696), + [anon_sym_LT_EQ] = ACTIONS(4696), + [anon_sym_GT_EQ] = ACTIONS(4696), + [anon_sym_is] = ACTIONS(4694), + [anon_sym_PLUS] = ACTIONS(4696), + [anon_sym_DASH] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4696), + [anon_sym_SLASH] = ACTIONS(4696), + [anon_sym_PERCENT] = ACTIONS(4696), + [anon_sym_PLUS_PLUS] = ACTIONS(4696), + [anon_sym_DASH_DASH] = ACTIONS(4696), + [anon_sym_PIPE] = ACTIONS(4696), + [anon_sym_CARET] = ACTIONS(4696), + [anon_sym_LT_LT] = ACTIONS(4696), + [anon_sym_GT_GT] = ACTIONS(4696), + [anon_sym_class] = ACTIONS(4694), + [anon_sym_prefix] = ACTIONS(4694), + [anon_sym_infix] = ACTIONS(4694), + [anon_sym_postfix] = ACTIONS(4694), + [anon_sym_AT] = ACTIONS(4696), + [sym_property_behavior_modifier] = ACTIONS(4694), + [anon_sym_override] = ACTIONS(4694), + [anon_sym_convenience] = ACTIONS(4694), + [anon_sym_required] = ACTIONS(4694), + [anon_sym_public] = ACTIONS(4694), + [anon_sym_private] = ACTIONS(4694), + [anon_sym_internal] = ACTIONS(4694), + [anon_sym_fileprivate] = ACTIONS(4694), + [anon_sym_open] = ACTIONS(4694), + [anon_sym_mutating] = ACTIONS(4694), + [anon_sym_nonmutating] = ACTIONS(4694), + [anon_sym_static] = ACTIONS(4694), + [anon_sym_dynamic] = ACTIONS(4694), + [anon_sym_optional] = ACTIONS(4694), + [anon_sym_final] = ACTIONS(4694), + [anon_sym_inout] = ACTIONS(4694), + [anon_sym_ATescaping] = ACTIONS(4694), + [anon_sym_ATautoclosure] = ACTIONS(4694), + [anon_sym_weak] = ACTIONS(4694), + [anon_sym_unowned] = ACTIONS(4696), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4694), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4694), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4694), + [sym__dot_custom] = ACTIONS(4694), + [sym__three_dot_operator_custom] = ACTIONS(4694), + [sym__open_ended_range_operator_custom] = ACTIONS(4694), + [sym__conjunction_operator_custom] = ACTIONS(4694), + [sym__disjunction_operator_custom] = ACTIONS(4694), + [sym__nil_coalescing_operator_custom] = ACTIONS(4694), + [sym__eq_eq_custom] = ACTIONS(4694), + [sym__plus_then_ws] = ACTIONS(4694), + [sym__minus_then_ws] = ACTIONS(4694), + [sym_bang] = ACTIONS(4694), + [sym_default_keyword] = ACTIONS(4694), + [sym__as_custom] = ACTIONS(4694), + [sym__as_quest_custom] = ACTIONS(4694), + [sym__as_bang_custom] = ACTIONS(4694), + }, + [1450] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5186), + [anon_sym_LPAREN] = ACTIONS(5186), + [anon_sym_LBRACK] = ACTIONS(5186), + [anon_sym_QMARK] = ACTIONS(5188), + [sym__immediate_quest] = ACTIONS(5188), + [anon_sym_AMP] = ACTIONS(5188), + [aux_sym_custom_operator_token1] = ACTIONS(5188), + [anon_sym_LT] = ACTIONS(5188), + [anon_sym_GT] = ACTIONS(5188), + [anon_sym_LBRACE] = ACTIONS(5186), + [anon_sym_RBRACE] = ACTIONS(5186), + [anon_sym_case] = ACTIONS(5186), + [anon_sym_fallthrough] = ACTIONS(5186), + [anon_sym_BANG_EQ] = ACTIONS(5188), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5188), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5188), + [anon_sym_LT_EQ] = ACTIONS(5188), + [anon_sym_GT_EQ] = ACTIONS(5188), + [anon_sym_is] = ACTIONS(5186), + [anon_sym_PLUS] = ACTIONS(5188), + [anon_sym_DASH] = ACTIONS(5188), + [anon_sym_STAR] = ACTIONS(5188), + [anon_sym_SLASH] = ACTIONS(5188), + [anon_sym_PERCENT] = ACTIONS(5188), + [anon_sym_PLUS_PLUS] = ACTIONS(5188), + [anon_sym_DASH_DASH] = ACTIONS(5188), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_CARET] = ACTIONS(5188), + [anon_sym_LT_LT] = ACTIONS(5188), + [anon_sym_GT_GT] = ACTIONS(5188), + [anon_sym_class] = ACTIONS(5186), + [anon_sym_prefix] = ACTIONS(5186), + [anon_sym_infix] = ACTIONS(5186), + [anon_sym_postfix] = ACTIONS(5186), + [anon_sym_AT] = ACTIONS(5188), + [sym_property_behavior_modifier] = ACTIONS(5186), + [anon_sym_override] = ACTIONS(5186), + [anon_sym_convenience] = ACTIONS(5186), + [anon_sym_required] = ACTIONS(5186), + [anon_sym_public] = ACTIONS(5186), + [anon_sym_private] = ACTIONS(5186), + [anon_sym_internal] = ACTIONS(5186), + [anon_sym_fileprivate] = ACTIONS(5186), + [anon_sym_open] = ACTIONS(5186), + [anon_sym_mutating] = ACTIONS(5186), + [anon_sym_nonmutating] = ACTIONS(5186), + [anon_sym_static] = ACTIONS(5186), + [anon_sym_dynamic] = ACTIONS(5186), + [anon_sym_optional] = ACTIONS(5186), + [anon_sym_final] = ACTIONS(5186), + [anon_sym_inout] = ACTIONS(5186), + [anon_sym_ATescaping] = ACTIONS(5186), + [anon_sym_ATautoclosure] = ACTIONS(5186), + [anon_sym_weak] = ACTIONS(5186), + [anon_sym_unowned] = ACTIONS(5188), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5186), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5186), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5186), + [sym__dot_custom] = ACTIONS(5186), + [sym__three_dot_operator_custom] = ACTIONS(5186), + [sym__open_ended_range_operator_custom] = ACTIONS(5186), + [sym__conjunction_operator_custom] = ACTIONS(5186), + [sym__disjunction_operator_custom] = ACTIONS(5186), + [sym__nil_coalescing_operator_custom] = ACTIONS(5186), + [sym__eq_eq_custom] = ACTIONS(5186), + [sym__plus_then_ws] = ACTIONS(5186), + [sym__minus_then_ws] = ACTIONS(5186), + [sym_bang] = ACTIONS(5186), + [sym_default_keyword] = ACTIONS(5186), + [sym__as_custom] = ACTIONS(5186), + [sym__as_quest_custom] = ACTIONS(5186), + [sym__as_bang_custom] = ACTIONS(5186), + }, + [1451] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5198), + [anon_sym_LPAREN] = ACTIONS(5198), + [anon_sym_LBRACK] = ACTIONS(5198), + [anon_sym_QMARK] = ACTIONS(5200), + [sym__immediate_quest] = ACTIONS(5200), + [anon_sym_AMP] = ACTIONS(5200), + [aux_sym_custom_operator_token1] = ACTIONS(5200), + [anon_sym_LT] = ACTIONS(5200), + [anon_sym_GT] = ACTIONS(5200), + [anon_sym_LBRACE] = ACTIONS(5198), + [anon_sym_RBRACE] = ACTIONS(5198), + [anon_sym_case] = ACTIONS(5198), + [anon_sym_fallthrough] = ACTIONS(5198), + [anon_sym_BANG_EQ] = ACTIONS(5200), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5200), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5200), + [anon_sym_LT_EQ] = ACTIONS(5200), + [anon_sym_GT_EQ] = ACTIONS(5200), + [anon_sym_is] = ACTIONS(5198), + [anon_sym_PLUS] = ACTIONS(5200), + [anon_sym_DASH] = ACTIONS(5200), + [anon_sym_STAR] = ACTIONS(5200), + [anon_sym_SLASH] = ACTIONS(5200), + [anon_sym_PERCENT] = ACTIONS(5200), + [anon_sym_PLUS_PLUS] = ACTIONS(5200), + [anon_sym_DASH_DASH] = ACTIONS(5200), + [anon_sym_PIPE] = ACTIONS(5200), + [anon_sym_CARET] = ACTIONS(5200), + [anon_sym_LT_LT] = ACTIONS(5200), + [anon_sym_GT_GT] = ACTIONS(5200), + [anon_sym_class] = ACTIONS(5198), + [anon_sym_prefix] = ACTIONS(5198), + [anon_sym_infix] = ACTIONS(5198), + [anon_sym_postfix] = ACTIONS(5198), + [anon_sym_AT] = ACTIONS(5200), + [sym_property_behavior_modifier] = ACTIONS(5198), + [anon_sym_override] = ACTIONS(5198), + [anon_sym_convenience] = ACTIONS(5198), + [anon_sym_required] = ACTIONS(5198), + [anon_sym_public] = ACTIONS(5198), + [anon_sym_private] = ACTIONS(5198), + [anon_sym_internal] = ACTIONS(5198), + [anon_sym_fileprivate] = ACTIONS(5198), + [anon_sym_open] = ACTIONS(5198), + [anon_sym_mutating] = ACTIONS(5198), + [anon_sym_nonmutating] = ACTIONS(5198), + [anon_sym_static] = ACTIONS(5198), + [anon_sym_dynamic] = ACTIONS(5198), + [anon_sym_optional] = ACTIONS(5198), + [anon_sym_final] = ACTIONS(5198), + [anon_sym_inout] = ACTIONS(5198), + [anon_sym_ATescaping] = ACTIONS(5198), + [anon_sym_ATautoclosure] = ACTIONS(5198), + [anon_sym_weak] = ACTIONS(5198), + [anon_sym_unowned] = ACTIONS(5200), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5198), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5198), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5198), + [sym__dot_custom] = ACTIONS(5198), + [sym__three_dot_operator_custom] = ACTIONS(5198), + [sym__open_ended_range_operator_custom] = ACTIONS(5198), + [sym__conjunction_operator_custom] = ACTIONS(5198), + [sym__disjunction_operator_custom] = ACTIONS(5198), + [sym__nil_coalescing_operator_custom] = ACTIONS(5198), + [sym__eq_eq_custom] = ACTIONS(5198), + [sym__plus_then_ws] = ACTIONS(5198), + [sym__minus_then_ws] = ACTIONS(5198), + [sym_bang] = ACTIONS(5198), + [sym_default_keyword] = ACTIONS(5198), + [sym__as_custom] = ACTIONS(5198), + [sym__as_quest_custom] = ACTIONS(5198), + [sym__as_bang_custom] = ACTIONS(5198), + }, + [1452] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5210), + [anon_sym_LPAREN] = ACTIONS(5210), + [anon_sym_LBRACK] = ACTIONS(5210), + [anon_sym_QMARK] = ACTIONS(5212), + [sym__immediate_quest] = ACTIONS(5212), + [anon_sym_AMP] = ACTIONS(5212), + [aux_sym_custom_operator_token1] = ACTIONS(5212), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_LBRACE] = ACTIONS(5210), + [anon_sym_RBRACE] = ACTIONS(5210), + [anon_sym_case] = ACTIONS(5210), + [anon_sym_fallthrough] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5212), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5212), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5212), + [anon_sym_LT_EQ] = ACTIONS(5212), + [anon_sym_GT_EQ] = ACTIONS(5212), + [anon_sym_is] = ACTIONS(5210), + [anon_sym_PLUS] = ACTIONS(5212), + [anon_sym_DASH] = ACTIONS(5212), + [anon_sym_STAR] = ACTIONS(5212), + [anon_sym_SLASH] = ACTIONS(5212), + [anon_sym_PERCENT] = ACTIONS(5212), + [anon_sym_PLUS_PLUS] = ACTIONS(5212), + [anon_sym_DASH_DASH] = ACTIONS(5212), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_CARET] = ACTIONS(5212), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5212), + [anon_sym_class] = ACTIONS(5210), + [anon_sym_prefix] = ACTIONS(5210), + [anon_sym_infix] = ACTIONS(5210), + [anon_sym_postfix] = ACTIONS(5210), + [anon_sym_AT] = ACTIONS(5212), + [sym_property_behavior_modifier] = ACTIONS(5210), + [anon_sym_override] = ACTIONS(5210), + [anon_sym_convenience] = ACTIONS(5210), + [anon_sym_required] = ACTIONS(5210), + [anon_sym_public] = ACTIONS(5210), + [anon_sym_private] = ACTIONS(5210), + [anon_sym_internal] = ACTIONS(5210), + [anon_sym_fileprivate] = ACTIONS(5210), + [anon_sym_open] = ACTIONS(5210), + [anon_sym_mutating] = ACTIONS(5210), + [anon_sym_nonmutating] = ACTIONS(5210), + [anon_sym_static] = ACTIONS(5210), + [anon_sym_dynamic] = ACTIONS(5210), + [anon_sym_optional] = ACTIONS(5210), + [anon_sym_final] = ACTIONS(5210), + [anon_sym_inout] = ACTIONS(5210), + [anon_sym_ATescaping] = ACTIONS(5210), + [anon_sym_ATautoclosure] = ACTIONS(5210), + [anon_sym_weak] = ACTIONS(5210), + [anon_sym_unowned] = ACTIONS(5212), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5210), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5210), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5210), + [sym__dot_custom] = ACTIONS(5210), + [sym__three_dot_operator_custom] = ACTIONS(5210), + [sym__open_ended_range_operator_custom] = ACTIONS(5210), + [sym__conjunction_operator_custom] = ACTIONS(5210), + [sym__disjunction_operator_custom] = ACTIONS(5210), + [sym__nil_coalescing_operator_custom] = ACTIONS(5210), + [sym__eq_eq_custom] = ACTIONS(5210), + [sym__plus_then_ws] = ACTIONS(5210), + [sym__minus_then_ws] = ACTIONS(5210), + [sym_bang] = ACTIONS(5210), + [sym_default_keyword] = ACTIONS(5210), + [sym__as_custom] = ACTIONS(5210), + [sym__as_quest_custom] = ACTIONS(5210), + [sym__as_bang_custom] = ACTIONS(5210), + }, + [1453] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5222), + [anon_sym_LPAREN] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5222), + [anon_sym_QMARK] = ACTIONS(5224), + [sym__immediate_quest] = ACTIONS(5224), + [anon_sym_AMP] = ACTIONS(5224), + [aux_sym_custom_operator_token1] = ACTIONS(5224), + [anon_sym_LT] = ACTIONS(5224), + [anon_sym_GT] = ACTIONS(5224), + [anon_sym_LBRACE] = ACTIONS(5222), + [anon_sym_RBRACE] = ACTIONS(5222), + [anon_sym_case] = ACTIONS(5222), + [anon_sym_fallthrough] = ACTIONS(5222), + [anon_sym_BANG_EQ] = ACTIONS(5224), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5224), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5224), + [anon_sym_LT_EQ] = ACTIONS(5224), + [anon_sym_GT_EQ] = ACTIONS(5224), + [anon_sym_is] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5224), + [anon_sym_DASH] = ACTIONS(5224), + [anon_sym_STAR] = ACTIONS(5224), + [anon_sym_SLASH] = ACTIONS(5224), + [anon_sym_PERCENT] = ACTIONS(5224), + [anon_sym_PLUS_PLUS] = ACTIONS(5224), + [anon_sym_DASH_DASH] = ACTIONS(5224), + [anon_sym_PIPE] = ACTIONS(5224), + [anon_sym_CARET] = ACTIONS(5224), + [anon_sym_LT_LT] = ACTIONS(5224), + [anon_sym_GT_GT] = ACTIONS(5224), + [anon_sym_class] = ACTIONS(5222), + [anon_sym_prefix] = ACTIONS(5222), + [anon_sym_infix] = ACTIONS(5222), + [anon_sym_postfix] = ACTIONS(5222), + [anon_sym_AT] = ACTIONS(5224), + [sym_property_behavior_modifier] = ACTIONS(5222), + [anon_sym_override] = ACTIONS(5222), + [anon_sym_convenience] = ACTIONS(5222), + [anon_sym_required] = ACTIONS(5222), + [anon_sym_public] = ACTIONS(5222), + [anon_sym_private] = ACTIONS(5222), + [anon_sym_internal] = ACTIONS(5222), + [anon_sym_fileprivate] = ACTIONS(5222), + [anon_sym_open] = ACTIONS(5222), + [anon_sym_mutating] = ACTIONS(5222), + [anon_sym_nonmutating] = ACTIONS(5222), + [anon_sym_static] = ACTIONS(5222), + [anon_sym_dynamic] = ACTIONS(5222), + [anon_sym_optional] = ACTIONS(5222), + [anon_sym_final] = ACTIONS(5222), + [anon_sym_inout] = ACTIONS(5222), + [anon_sym_ATescaping] = ACTIONS(5222), + [anon_sym_ATautoclosure] = ACTIONS(5222), + [anon_sym_weak] = ACTIONS(5222), + [anon_sym_unowned] = ACTIONS(5224), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5222), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5222), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5222), + [sym__dot_custom] = ACTIONS(5222), + [sym__three_dot_operator_custom] = ACTIONS(5222), + [sym__open_ended_range_operator_custom] = ACTIONS(5222), + [sym__conjunction_operator_custom] = ACTIONS(5222), + [sym__disjunction_operator_custom] = ACTIONS(5222), + [sym__nil_coalescing_operator_custom] = ACTIONS(5222), + [sym__eq_eq_custom] = ACTIONS(5222), + [sym__plus_then_ws] = ACTIONS(5222), + [sym__minus_then_ws] = ACTIONS(5222), + [sym_bang] = ACTIONS(5222), + [sym_default_keyword] = ACTIONS(5222), + [sym__as_custom] = ACTIONS(5222), + [sym__as_quest_custom] = ACTIONS(5222), + [sym__as_bang_custom] = ACTIONS(5222), + }, + [1454] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5226), + [anon_sym_LPAREN] = ACTIONS(5226), + [anon_sym_LBRACK] = ACTIONS(5226), + [anon_sym_QMARK] = ACTIONS(5228), + [sym__immediate_quest] = ACTIONS(5228), + [anon_sym_AMP] = ACTIONS(5228), + [aux_sym_custom_operator_token1] = ACTIONS(5228), + [anon_sym_LT] = ACTIONS(5228), + [anon_sym_GT] = ACTIONS(5228), + [anon_sym_LBRACE] = ACTIONS(5226), + [anon_sym_RBRACE] = ACTIONS(5226), + [anon_sym_case] = ACTIONS(5226), + [anon_sym_fallthrough] = ACTIONS(5226), + [anon_sym_BANG_EQ] = ACTIONS(5228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5228), + [anon_sym_LT_EQ] = ACTIONS(5228), + [anon_sym_GT_EQ] = ACTIONS(5228), + [anon_sym_is] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5228), + [anon_sym_DASH] = ACTIONS(5228), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5228), + [anon_sym_PLUS_PLUS] = ACTIONS(5228), + [anon_sym_DASH_DASH] = ACTIONS(5228), + [anon_sym_PIPE] = ACTIONS(5228), + [anon_sym_CARET] = ACTIONS(5228), + [anon_sym_LT_LT] = ACTIONS(5228), + [anon_sym_GT_GT] = ACTIONS(5228), + [anon_sym_class] = ACTIONS(5226), + [anon_sym_prefix] = ACTIONS(5226), + [anon_sym_infix] = ACTIONS(5226), + [anon_sym_postfix] = ACTIONS(5226), + [anon_sym_AT] = ACTIONS(5228), + [sym_property_behavior_modifier] = ACTIONS(5226), + [anon_sym_override] = ACTIONS(5226), + [anon_sym_convenience] = ACTIONS(5226), + [anon_sym_required] = ACTIONS(5226), + [anon_sym_public] = ACTIONS(5226), + [anon_sym_private] = ACTIONS(5226), + [anon_sym_internal] = ACTIONS(5226), + [anon_sym_fileprivate] = ACTIONS(5226), + [anon_sym_open] = ACTIONS(5226), + [anon_sym_mutating] = ACTIONS(5226), + [anon_sym_nonmutating] = ACTIONS(5226), + [anon_sym_static] = ACTIONS(5226), + [anon_sym_dynamic] = ACTIONS(5226), + [anon_sym_optional] = ACTIONS(5226), + [anon_sym_final] = ACTIONS(5226), + [anon_sym_inout] = ACTIONS(5226), + [anon_sym_ATescaping] = ACTIONS(5226), + [anon_sym_ATautoclosure] = ACTIONS(5226), + [anon_sym_weak] = ACTIONS(5226), + [anon_sym_unowned] = ACTIONS(5228), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5226), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5226), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5226), + [sym__dot_custom] = ACTIONS(5226), + [sym__three_dot_operator_custom] = ACTIONS(5226), + [sym__open_ended_range_operator_custom] = ACTIONS(5226), + [sym__conjunction_operator_custom] = ACTIONS(5226), + [sym__disjunction_operator_custom] = ACTIONS(5226), + [sym__nil_coalescing_operator_custom] = ACTIONS(5226), + [sym__eq_eq_custom] = ACTIONS(5226), + [sym__plus_then_ws] = ACTIONS(5226), + [sym__minus_then_ws] = ACTIONS(5226), + [sym_bang] = ACTIONS(5226), + [sym_default_keyword] = ACTIONS(5226), + [sym__as_custom] = ACTIONS(5226), + [sym__as_quest_custom] = ACTIONS(5226), + [sym__as_bang_custom] = ACTIONS(5226), + }, + [1455] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(4879), + [anon_sym_QMARK] = ACTIONS(4877), + [sym__immediate_quest] = ACTIONS(4877), + [anon_sym_AMP] = ACTIONS(4877), + [aux_sym_custom_operator_token1] = ACTIONS(4877), + [anon_sym_LT] = ACTIONS(4877), + [anon_sym_GT] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_case] = ACTIONS(4879), + [anon_sym_fallthrough] = ACTIONS(4879), + [anon_sym_BANG_EQ] = ACTIONS(4877), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4877), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4877), + [anon_sym_LT_EQ] = ACTIONS(4877), + [anon_sym_GT_EQ] = ACTIONS(4877), + [anon_sym_is] = ACTIONS(4879), + [anon_sym_PLUS] = ACTIONS(4877), + [anon_sym_DASH] = ACTIONS(4877), + [anon_sym_STAR] = ACTIONS(4877), + [anon_sym_SLASH] = ACTIONS(4877), + [anon_sym_PERCENT] = ACTIONS(4877), + [anon_sym_PLUS_PLUS] = ACTIONS(4877), + [anon_sym_DASH_DASH] = ACTIONS(4877), + [anon_sym_PIPE] = ACTIONS(4877), + [anon_sym_CARET] = ACTIONS(4877), + [anon_sym_LT_LT] = ACTIONS(4877), + [anon_sym_GT_GT] = ACTIONS(4877), + [anon_sym_class] = ACTIONS(4879), + [anon_sym_prefix] = ACTIONS(4879), + [anon_sym_infix] = ACTIONS(4879), + [anon_sym_postfix] = ACTIONS(4879), + [anon_sym_AT] = ACTIONS(4877), + [sym_property_behavior_modifier] = ACTIONS(4879), + [anon_sym_override] = ACTIONS(4879), + [anon_sym_convenience] = ACTIONS(4879), + [anon_sym_required] = ACTIONS(4879), + [anon_sym_public] = ACTIONS(4879), + [anon_sym_private] = ACTIONS(4879), + [anon_sym_internal] = ACTIONS(4879), + [anon_sym_fileprivate] = ACTIONS(4879), + [anon_sym_open] = ACTIONS(4879), + [anon_sym_mutating] = ACTIONS(4879), + [anon_sym_nonmutating] = ACTIONS(4879), + [anon_sym_static] = ACTIONS(4879), + [anon_sym_dynamic] = ACTIONS(4879), + [anon_sym_optional] = ACTIONS(4879), + [anon_sym_final] = ACTIONS(4879), + [anon_sym_inout] = ACTIONS(4879), + [anon_sym_ATescaping] = ACTIONS(4879), + [anon_sym_ATautoclosure] = ACTIONS(4879), + [anon_sym_weak] = ACTIONS(4879), + [anon_sym_unowned] = ACTIONS(4877), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4879), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4879), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4879), + [sym__dot_custom] = ACTIONS(4879), + [sym__three_dot_operator_custom] = ACTIONS(4879), + [sym__open_ended_range_operator_custom] = ACTIONS(4879), + [sym__conjunction_operator_custom] = ACTIONS(4879), + [sym__disjunction_operator_custom] = ACTIONS(4879), + [sym__nil_coalescing_operator_custom] = ACTIONS(4879), + [sym__eq_eq_custom] = ACTIONS(4879), + [sym__plus_then_ws] = ACTIONS(4879), + [sym__minus_then_ws] = ACTIONS(4879), + [sym_bang] = ACTIONS(4879), + [sym_default_keyword] = ACTIONS(4879), + [sym__as_custom] = ACTIONS(4879), + [sym__as_quest_custom] = ACTIONS(4879), + [sym__as_bang_custom] = ACTIONS(4879), + }, + [1456] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4875), + [anon_sym_LPAREN] = ACTIONS(4875), + [anon_sym_LBRACK] = ACTIONS(4875), + [anon_sym_QMARK] = ACTIONS(4873), + [sym__immediate_quest] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), + [aux_sym_custom_operator_token1] = ACTIONS(4873), + [anon_sym_LT] = ACTIONS(4873), + [anon_sym_GT] = ACTIONS(4873), + [anon_sym_LBRACE] = ACTIONS(4875), + [anon_sym_RBRACE] = ACTIONS(4875), + [anon_sym_case] = ACTIONS(4875), + [anon_sym_fallthrough] = ACTIONS(4875), + [anon_sym_BANG_EQ] = ACTIONS(4873), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4873), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4873), + [anon_sym_LT_EQ] = ACTIONS(4873), + [anon_sym_GT_EQ] = ACTIONS(4873), + [anon_sym_is] = ACTIONS(4875), + [anon_sym_PLUS] = ACTIONS(4873), + [anon_sym_DASH] = ACTIONS(4873), + [anon_sym_STAR] = ACTIONS(4873), + [anon_sym_SLASH] = ACTIONS(4873), + [anon_sym_PERCENT] = ACTIONS(4873), + [anon_sym_PLUS_PLUS] = ACTIONS(4873), + [anon_sym_DASH_DASH] = ACTIONS(4873), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_CARET] = ACTIONS(4873), + [anon_sym_LT_LT] = ACTIONS(4873), + [anon_sym_GT_GT] = ACTIONS(4873), + [anon_sym_class] = ACTIONS(4875), + [anon_sym_prefix] = ACTIONS(4875), + [anon_sym_infix] = ACTIONS(4875), + [anon_sym_postfix] = ACTIONS(4875), + [anon_sym_AT] = ACTIONS(4873), + [sym_property_behavior_modifier] = ACTIONS(4875), + [anon_sym_override] = ACTIONS(4875), + [anon_sym_convenience] = ACTIONS(4875), + [anon_sym_required] = ACTIONS(4875), + [anon_sym_public] = ACTIONS(4875), + [anon_sym_private] = ACTIONS(4875), + [anon_sym_internal] = ACTIONS(4875), + [anon_sym_fileprivate] = ACTIONS(4875), + [anon_sym_open] = ACTIONS(4875), + [anon_sym_mutating] = ACTIONS(4875), + [anon_sym_nonmutating] = ACTIONS(4875), + [anon_sym_static] = ACTIONS(4875), + [anon_sym_dynamic] = ACTIONS(4875), + [anon_sym_optional] = ACTIONS(4875), + [anon_sym_final] = ACTIONS(4875), + [anon_sym_inout] = ACTIONS(4875), + [anon_sym_ATescaping] = ACTIONS(4875), + [anon_sym_ATautoclosure] = ACTIONS(4875), + [anon_sym_weak] = ACTIONS(4875), + [anon_sym_unowned] = ACTIONS(4873), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4875), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4875), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4875), + [sym__dot_custom] = ACTIONS(4875), + [sym__three_dot_operator_custom] = ACTIONS(4875), + [sym__open_ended_range_operator_custom] = ACTIONS(4875), + [sym__conjunction_operator_custom] = ACTIONS(4875), + [sym__disjunction_operator_custom] = ACTIONS(4875), + [sym__nil_coalescing_operator_custom] = ACTIONS(4875), + [sym__eq_eq_custom] = ACTIONS(4875), + [sym__plus_then_ws] = ACTIONS(4875), + [sym__minus_then_ws] = ACTIONS(4875), + [sym_bang] = ACTIONS(4875), + [sym_default_keyword] = ACTIONS(4875), + [sym__as_custom] = ACTIONS(4875), + [sym__as_quest_custom] = ACTIONS(4875), + [sym__as_bang_custom] = ACTIONS(4875), + }, + [1457] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5178), + [anon_sym_LPAREN] = ACTIONS(5178), + [anon_sym_LBRACK] = ACTIONS(5178), + [anon_sym_QMARK] = ACTIONS(5180), + [sym__immediate_quest] = ACTIONS(5180), + [anon_sym_AMP] = ACTIONS(5180), + [aux_sym_custom_operator_token1] = ACTIONS(5180), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_LBRACE] = ACTIONS(5178), + [anon_sym_RBRACE] = ACTIONS(5178), + [anon_sym_case] = ACTIONS(5178), + [anon_sym_fallthrough] = ACTIONS(5178), + [anon_sym_BANG_EQ] = ACTIONS(5180), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5180), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5180), + [anon_sym_LT_EQ] = ACTIONS(5180), + [anon_sym_GT_EQ] = ACTIONS(5180), + [anon_sym_is] = ACTIONS(5178), + [anon_sym_PLUS] = ACTIONS(5180), + [anon_sym_DASH] = ACTIONS(5180), + [anon_sym_STAR] = ACTIONS(5180), + [anon_sym_SLASH] = ACTIONS(5180), + [anon_sym_PERCENT] = ACTIONS(5180), + [anon_sym_PLUS_PLUS] = ACTIONS(5180), + [anon_sym_DASH_DASH] = ACTIONS(5180), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_CARET] = ACTIONS(5180), + [anon_sym_LT_LT] = ACTIONS(5180), + [anon_sym_GT_GT] = ACTIONS(5180), + [anon_sym_class] = ACTIONS(5178), + [anon_sym_prefix] = ACTIONS(5178), + [anon_sym_infix] = ACTIONS(5178), + [anon_sym_postfix] = ACTIONS(5178), + [anon_sym_AT] = ACTIONS(5180), + [sym_property_behavior_modifier] = ACTIONS(5178), + [anon_sym_override] = ACTIONS(5178), + [anon_sym_convenience] = ACTIONS(5178), + [anon_sym_required] = ACTIONS(5178), + [anon_sym_public] = ACTIONS(5178), + [anon_sym_private] = ACTIONS(5178), + [anon_sym_internal] = ACTIONS(5178), + [anon_sym_fileprivate] = ACTIONS(5178), + [anon_sym_open] = ACTIONS(5178), + [anon_sym_mutating] = ACTIONS(5178), + [anon_sym_nonmutating] = ACTIONS(5178), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_dynamic] = ACTIONS(5178), + [anon_sym_optional] = ACTIONS(5178), + [anon_sym_final] = ACTIONS(5178), + [anon_sym_inout] = ACTIONS(5178), + [anon_sym_ATescaping] = ACTIONS(5178), + [anon_sym_ATautoclosure] = ACTIONS(5178), + [anon_sym_weak] = ACTIONS(5178), + [anon_sym_unowned] = ACTIONS(5180), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5178), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5178), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5178), + [sym__dot_custom] = ACTIONS(5178), + [sym__three_dot_operator_custom] = ACTIONS(5178), + [sym__open_ended_range_operator_custom] = ACTIONS(5178), + [sym__conjunction_operator_custom] = ACTIONS(5178), + [sym__disjunction_operator_custom] = ACTIONS(5178), + [sym__nil_coalescing_operator_custom] = ACTIONS(5178), + [sym__eq_eq_custom] = ACTIONS(5178), + [sym__plus_then_ws] = ACTIONS(5178), + [sym__minus_then_ws] = ACTIONS(5178), + [sym_bang] = ACTIONS(5178), + [sym_default_keyword] = ACTIONS(5178), + [sym__as_custom] = ACTIONS(5178), + [sym__as_quest_custom] = ACTIONS(5178), + [sym__as_bang_custom] = ACTIONS(5178), + }, + [1458] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5256), + [anon_sym_LPAREN] = ACTIONS(5256), + [anon_sym_LBRACK] = ACTIONS(5256), + [anon_sym_QMARK] = ACTIONS(5258), + [sym__immediate_quest] = ACTIONS(5258), + [anon_sym_AMP] = ACTIONS(5258), + [aux_sym_custom_operator_token1] = ACTIONS(5258), + [anon_sym_LT] = ACTIONS(5258), + [anon_sym_GT] = ACTIONS(5258), + [anon_sym_LBRACE] = ACTIONS(5256), + [anon_sym_RBRACE] = ACTIONS(5256), + [anon_sym_case] = ACTIONS(5256), + [anon_sym_fallthrough] = ACTIONS(5256), + [anon_sym_BANG_EQ] = ACTIONS(5258), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5258), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5258), + [anon_sym_LT_EQ] = ACTIONS(5258), + [anon_sym_GT_EQ] = ACTIONS(5258), + [anon_sym_is] = ACTIONS(5256), + [anon_sym_PLUS] = ACTIONS(5258), + [anon_sym_DASH] = ACTIONS(5258), + [anon_sym_STAR] = ACTIONS(5258), + [anon_sym_SLASH] = ACTIONS(5258), + [anon_sym_PERCENT] = ACTIONS(5258), + [anon_sym_PLUS_PLUS] = ACTIONS(5258), + [anon_sym_DASH_DASH] = ACTIONS(5258), + [anon_sym_PIPE] = ACTIONS(5258), + [anon_sym_CARET] = ACTIONS(5258), + [anon_sym_LT_LT] = ACTIONS(5258), + [anon_sym_GT_GT] = ACTIONS(5258), + [anon_sym_class] = ACTIONS(5256), + [anon_sym_prefix] = ACTIONS(5256), + [anon_sym_infix] = ACTIONS(5256), + [anon_sym_postfix] = ACTIONS(5256), + [anon_sym_AT] = ACTIONS(5258), + [sym_property_behavior_modifier] = ACTIONS(5256), + [anon_sym_override] = ACTIONS(5256), + [anon_sym_convenience] = ACTIONS(5256), + [anon_sym_required] = ACTIONS(5256), + [anon_sym_public] = ACTIONS(5256), + [anon_sym_private] = ACTIONS(5256), + [anon_sym_internal] = ACTIONS(5256), + [anon_sym_fileprivate] = ACTIONS(5256), + [anon_sym_open] = ACTIONS(5256), + [anon_sym_mutating] = ACTIONS(5256), + [anon_sym_nonmutating] = ACTIONS(5256), + [anon_sym_static] = ACTIONS(5256), + [anon_sym_dynamic] = ACTIONS(5256), + [anon_sym_optional] = ACTIONS(5256), + [anon_sym_final] = ACTIONS(5256), + [anon_sym_inout] = ACTIONS(5256), + [anon_sym_ATescaping] = ACTIONS(5256), + [anon_sym_ATautoclosure] = ACTIONS(5256), + [anon_sym_weak] = ACTIONS(5256), + [anon_sym_unowned] = ACTIONS(5258), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5256), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5256), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5256), + [sym__dot_custom] = ACTIONS(5256), + [sym__three_dot_operator_custom] = ACTIONS(5256), + [sym__open_ended_range_operator_custom] = ACTIONS(5256), + [sym__conjunction_operator_custom] = ACTIONS(5256), + [sym__disjunction_operator_custom] = ACTIONS(5256), + [sym__nil_coalescing_operator_custom] = ACTIONS(5256), + [sym__eq_eq_custom] = ACTIONS(5256), + [sym__plus_then_ws] = ACTIONS(5256), + [sym__minus_then_ws] = ACTIONS(5256), + [sym_bang] = ACTIONS(5256), + [sym_default_keyword] = ACTIONS(5256), + [sym__as_custom] = ACTIONS(5256), + [sym__as_quest_custom] = ACTIONS(5256), + [sym__as_bang_custom] = ACTIONS(5256), + }, + [1459] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5206), + [anon_sym_LPAREN] = ACTIONS(5206), + [anon_sym_LBRACK] = ACTIONS(5206), + [anon_sym_QMARK] = ACTIONS(5208), + [sym__immediate_quest] = ACTIONS(5208), + [anon_sym_AMP] = ACTIONS(5208), + [aux_sym_custom_operator_token1] = ACTIONS(5208), + [anon_sym_LT] = ACTIONS(5208), + [anon_sym_GT] = ACTIONS(5208), + [anon_sym_LBRACE] = ACTIONS(5206), + [anon_sym_RBRACE] = ACTIONS(5206), + [anon_sym_case] = ACTIONS(5206), + [anon_sym_fallthrough] = ACTIONS(5206), + [anon_sym_BANG_EQ] = ACTIONS(5208), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5208), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5208), + [anon_sym_LT_EQ] = ACTIONS(5208), + [anon_sym_GT_EQ] = ACTIONS(5208), + [anon_sym_is] = ACTIONS(5206), + [anon_sym_PLUS] = ACTIONS(5208), + [anon_sym_DASH] = ACTIONS(5208), + [anon_sym_STAR] = ACTIONS(5208), + [anon_sym_SLASH] = ACTIONS(5208), + [anon_sym_PERCENT] = ACTIONS(5208), + [anon_sym_PLUS_PLUS] = ACTIONS(5208), + [anon_sym_DASH_DASH] = ACTIONS(5208), + [anon_sym_PIPE] = ACTIONS(5208), + [anon_sym_CARET] = ACTIONS(5208), + [anon_sym_LT_LT] = ACTIONS(5208), + [anon_sym_GT_GT] = ACTIONS(5208), + [anon_sym_class] = ACTIONS(5206), + [anon_sym_prefix] = ACTIONS(5206), + [anon_sym_infix] = ACTIONS(5206), + [anon_sym_postfix] = ACTIONS(5206), + [anon_sym_AT] = ACTIONS(5208), + [sym_property_behavior_modifier] = ACTIONS(5206), + [anon_sym_override] = ACTIONS(5206), + [anon_sym_convenience] = ACTIONS(5206), + [anon_sym_required] = ACTIONS(5206), + [anon_sym_public] = ACTIONS(5206), + [anon_sym_private] = ACTIONS(5206), + [anon_sym_internal] = ACTIONS(5206), + [anon_sym_fileprivate] = ACTIONS(5206), + [anon_sym_open] = ACTIONS(5206), + [anon_sym_mutating] = ACTIONS(5206), + [anon_sym_nonmutating] = ACTIONS(5206), + [anon_sym_static] = ACTIONS(5206), + [anon_sym_dynamic] = ACTIONS(5206), + [anon_sym_optional] = ACTIONS(5206), + [anon_sym_final] = ACTIONS(5206), + [anon_sym_inout] = ACTIONS(5206), + [anon_sym_ATescaping] = ACTIONS(5206), + [anon_sym_ATautoclosure] = ACTIONS(5206), + [anon_sym_weak] = ACTIONS(5206), + [anon_sym_unowned] = ACTIONS(5208), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5206), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5206), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5206), + [sym__dot_custom] = ACTIONS(5206), + [sym__three_dot_operator_custom] = ACTIONS(5206), + [sym__open_ended_range_operator_custom] = ACTIONS(5206), + [sym__conjunction_operator_custom] = ACTIONS(5206), + [sym__disjunction_operator_custom] = ACTIONS(5206), + [sym__nil_coalescing_operator_custom] = ACTIONS(5206), + [sym__eq_eq_custom] = ACTIONS(5206), + [sym__plus_then_ws] = ACTIONS(5206), + [sym__minus_then_ws] = ACTIONS(5206), + [sym_bang] = ACTIONS(5206), + [sym_default_keyword] = ACTIONS(5206), + [sym__as_custom] = ACTIONS(5206), + [sym__as_quest_custom] = ACTIONS(5206), + [sym__as_bang_custom] = ACTIONS(5206), + }, + [1460] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4895), + [anon_sym_LPAREN] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4895), + [anon_sym_QMARK] = ACTIONS(4893), + [sym__immediate_quest] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4893), + [aux_sym_custom_operator_token1] = ACTIONS(4893), + [anon_sym_LT] = ACTIONS(4893), + [anon_sym_GT] = ACTIONS(4893), + [anon_sym_LBRACE] = ACTIONS(4895), + [anon_sym_RBRACE] = ACTIONS(4895), + [anon_sym_case] = ACTIONS(4895), + [anon_sym_fallthrough] = ACTIONS(4895), + [anon_sym_BANG_EQ] = ACTIONS(4893), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4893), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4893), + [anon_sym_LT_EQ] = ACTIONS(4893), + [anon_sym_GT_EQ] = ACTIONS(4893), + [anon_sym_is] = ACTIONS(4895), + [anon_sym_PLUS] = ACTIONS(4893), + [anon_sym_DASH] = ACTIONS(4893), + [anon_sym_STAR] = ACTIONS(4893), + [anon_sym_SLASH] = ACTIONS(4893), + [anon_sym_PERCENT] = ACTIONS(4893), + [anon_sym_PLUS_PLUS] = ACTIONS(4893), + [anon_sym_DASH_DASH] = ACTIONS(4893), + [anon_sym_PIPE] = ACTIONS(4893), + [anon_sym_CARET] = ACTIONS(4893), + [anon_sym_LT_LT] = ACTIONS(4893), + [anon_sym_GT_GT] = ACTIONS(4893), + [anon_sym_class] = ACTIONS(4895), + [anon_sym_prefix] = ACTIONS(4895), + [anon_sym_infix] = ACTIONS(4895), + [anon_sym_postfix] = ACTIONS(4895), + [anon_sym_AT] = ACTIONS(4893), + [sym_property_behavior_modifier] = ACTIONS(4895), + [anon_sym_override] = ACTIONS(4895), + [anon_sym_convenience] = ACTIONS(4895), + [anon_sym_required] = ACTIONS(4895), + [anon_sym_public] = ACTIONS(4895), + [anon_sym_private] = ACTIONS(4895), + [anon_sym_internal] = ACTIONS(4895), + [anon_sym_fileprivate] = ACTIONS(4895), + [anon_sym_open] = ACTIONS(4895), + [anon_sym_mutating] = ACTIONS(4895), + [anon_sym_nonmutating] = ACTIONS(4895), + [anon_sym_static] = ACTIONS(4895), + [anon_sym_dynamic] = ACTIONS(4895), + [anon_sym_optional] = ACTIONS(4895), + [anon_sym_final] = ACTIONS(4895), + [anon_sym_inout] = ACTIONS(4895), + [anon_sym_ATescaping] = ACTIONS(4895), + [anon_sym_ATautoclosure] = ACTIONS(4895), + [anon_sym_weak] = ACTIONS(4895), + [anon_sym_unowned] = ACTIONS(4893), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4895), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4895), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4895), + [sym__dot_custom] = ACTIONS(4895), + [sym__three_dot_operator_custom] = ACTIONS(4895), + [sym__open_ended_range_operator_custom] = ACTIONS(4895), + [sym__conjunction_operator_custom] = ACTIONS(4895), + [sym__disjunction_operator_custom] = ACTIONS(4895), + [sym__nil_coalescing_operator_custom] = ACTIONS(4895), + [sym__eq_eq_custom] = ACTIONS(4895), + [sym__plus_then_ws] = ACTIONS(4895), + [sym__minus_then_ws] = ACTIONS(4895), + [sym_bang] = ACTIONS(4895), + [sym_default_keyword] = ACTIONS(4895), + [sym__as_custom] = ACTIONS(4895), + [sym__as_quest_custom] = ACTIONS(4895), + [sym__as_bang_custom] = ACTIONS(4895), + }, + [1461] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5194), + [anon_sym_LPAREN] = ACTIONS(5194), + [anon_sym_LBRACK] = ACTIONS(5194), + [anon_sym_QMARK] = ACTIONS(5196), + [sym__immediate_quest] = ACTIONS(5196), + [anon_sym_AMP] = ACTIONS(5196), + [aux_sym_custom_operator_token1] = ACTIONS(5196), + [anon_sym_LT] = ACTIONS(5196), + [anon_sym_GT] = ACTIONS(5196), + [anon_sym_LBRACE] = ACTIONS(5194), + [anon_sym_RBRACE] = ACTIONS(5194), + [anon_sym_case] = ACTIONS(5194), + [anon_sym_fallthrough] = ACTIONS(5194), + [anon_sym_BANG_EQ] = ACTIONS(5196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5196), + [anon_sym_LT_EQ] = ACTIONS(5196), + [anon_sym_GT_EQ] = ACTIONS(5196), + [anon_sym_is] = ACTIONS(5194), + [anon_sym_PLUS] = ACTIONS(5196), + [anon_sym_DASH] = ACTIONS(5196), + [anon_sym_STAR] = ACTIONS(5196), + [anon_sym_SLASH] = ACTIONS(5196), + [anon_sym_PERCENT] = ACTIONS(5196), + [anon_sym_PLUS_PLUS] = ACTIONS(5196), + [anon_sym_DASH_DASH] = ACTIONS(5196), + [anon_sym_PIPE] = ACTIONS(5196), + [anon_sym_CARET] = ACTIONS(5196), + [anon_sym_LT_LT] = ACTIONS(5196), + [anon_sym_GT_GT] = ACTIONS(5196), + [anon_sym_class] = ACTIONS(5194), + [anon_sym_prefix] = ACTIONS(5194), + [anon_sym_infix] = ACTIONS(5194), + [anon_sym_postfix] = ACTIONS(5194), + [anon_sym_AT] = ACTIONS(5196), + [sym_property_behavior_modifier] = ACTIONS(5194), + [anon_sym_override] = ACTIONS(5194), + [anon_sym_convenience] = ACTIONS(5194), + [anon_sym_required] = ACTIONS(5194), + [anon_sym_public] = ACTIONS(5194), + [anon_sym_private] = ACTIONS(5194), + [anon_sym_internal] = ACTIONS(5194), + [anon_sym_fileprivate] = ACTIONS(5194), + [anon_sym_open] = ACTIONS(5194), + [anon_sym_mutating] = ACTIONS(5194), + [anon_sym_nonmutating] = ACTIONS(5194), + [anon_sym_static] = ACTIONS(5194), + [anon_sym_dynamic] = ACTIONS(5194), + [anon_sym_optional] = ACTIONS(5194), + [anon_sym_final] = ACTIONS(5194), + [anon_sym_inout] = ACTIONS(5194), + [anon_sym_ATescaping] = ACTIONS(5194), + [anon_sym_ATautoclosure] = ACTIONS(5194), + [anon_sym_weak] = ACTIONS(5194), + [anon_sym_unowned] = ACTIONS(5196), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5194), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5194), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5194), + [sym__dot_custom] = ACTIONS(5194), + [sym__three_dot_operator_custom] = ACTIONS(5194), + [sym__open_ended_range_operator_custom] = ACTIONS(5194), + [sym__conjunction_operator_custom] = ACTIONS(5194), + [sym__disjunction_operator_custom] = ACTIONS(5194), + [sym__nil_coalescing_operator_custom] = ACTIONS(5194), + [sym__eq_eq_custom] = ACTIONS(5194), + [sym__plus_then_ws] = ACTIONS(5194), + [sym__minus_then_ws] = ACTIONS(5194), + [sym_bang] = ACTIONS(5194), + [sym_default_keyword] = ACTIONS(5194), + [sym__as_custom] = ACTIONS(5194), + [sym__as_quest_custom] = ACTIONS(5194), + [sym__as_bang_custom] = ACTIONS(5194), + }, + [1462] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5264), + [anon_sym_LPAREN] = ACTIONS(5264), + [anon_sym_LBRACK] = ACTIONS(5264), + [anon_sym_QMARK] = ACTIONS(5266), + [sym__immediate_quest] = ACTIONS(5266), + [anon_sym_AMP] = ACTIONS(5266), + [aux_sym_custom_operator_token1] = ACTIONS(5266), + [anon_sym_LT] = ACTIONS(5266), + [anon_sym_GT] = ACTIONS(5266), + [anon_sym_LBRACE] = ACTIONS(5264), + [anon_sym_RBRACE] = ACTIONS(5264), + [anon_sym_case] = ACTIONS(5264), + [anon_sym_fallthrough] = ACTIONS(5264), + [anon_sym_BANG_EQ] = ACTIONS(5266), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5266), + [anon_sym_LT_EQ] = ACTIONS(5266), + [anon_sym_GT_EQ] = ACTIONS(5266), + [anon_sym_is] = ACTIONS(5264), + [anon_sym_PLUS] = ACTIONS(5266), + [anon_sym_DASH] = ACTIONS(5266), + [anon_sym_STAR] = ACTIONS(5266), + [anon_sym_SLASH] = ACTIONS(5266), + [anon_sym_PERCENT] = ACTIONS(5266), + [anon_sym_PLUS_PLUS] = ACTIONS(5266), + [anon_sym_DASH_DASH] = ACTIONS(5266), + [anon_sym_PIPE] = ACTIONS(5266), + [anon_sym_CARET] = ACTIONS(5266), + [anon_sym_LT_LT] = ACTIONS(5266), + [anon_sym_GT_GT] = ACTIONS(5266), + [anon_sym_class] = ACTIONS(5264), + [anon_sym_prefix] = ACTIONS(5264), + [anon_sym_infix] = ACTIONS(5264), + [anon_sym_postfix] = ACTIONS(5264), + [anon_sym_AT] = ACTIONS(5266), + [sym_property_behavior_modifier] = ACTIONS(5264), + [anon_sym_override] = ACTIONS(5264), + [anon_sym_convenience] = ACTIONS(5264), + [anon_sym_required] = ACTIONS(5264), + [anon_sym_public] = ACTIONS(5264), + [anon_sym_private] = ACTIONS(5264), + [anon_sym_internal] = ACTIONS(5264), + [anon_sym_fileprivate] = ACTIONS(5264), + [anon_sym_open] = ACTIONS(5264), + [anon_sym_mutating] = ACTIONS(5264), + [anon_sym_nonmutating] = ACTIONS(5264), + [anon_sym_static] = ACTIONS(5264), + [anon_sym_dynamic] = ACTIONS(5264), + [anon_sym_optional] = ACTIONS(5264), + [anon_sym_final] = ACTIONS(5264), + [anon_sym_inout] = ACTIONS(5264), + [anon_sym_ATescaping] = ACTIONS(5264), + [anon_sym_ATautoclosure] = ACTIONS(5264), + [anon_sym_weak] = ACTIONS(5264), + [anon_sym_unowned] = ACTIONS(5266), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5264), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5264), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5264), + [sym__dot_custom] = ACTIONS(5264), + [sym__three_dot_operator_custom] = ACTIONS(5264), + [sym__open_ended_range_operator_custom] = ACTIONS(5264), + [sym__conjunction_operator_custom] = ACTIONS(5264), + [sym__disjunction_operator_custom] = ACTIONS(5264), + [sym__nil_coalescing_operator_custom] = ACTIONS(5264), + [sym__eq_eq_custom] = ACTIONS(5264), + [sym__plus_then_ws] = ACTIONS(5264), + [sym__minus_then_ws] = ACTIONS(5264), + [sym_bang] = ACTIONS(5264), + [sym_default_keyword] = ACTIONS(5264), + [sym__as_custom] = ACTIONS(5264), + [sym__as_quest_custom] = ACTIONS(5264), + [sym__as_bang_custom] = ACTIONS(5264), + }, + [1463] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5156), + [anon_sym_LPAREN] = ACTIONS(5156), + [anon_sym_LBRACK] = ACTIONS(5156), + [anon_sym_QMARK] = ACTIONS(5158), + [sym__immediate_quest] = ACTIONS(5158), + [anon_sym_AMP] = ACTIONS(5158), + [aux_sym_custom_operator_token1] = ACTIONS(5158), + [anon_sym_LT] = ACTIONS(5158), + [anon_sym_GT] = ACTIONS(5158), + [anon_sym_LBRACE] = ACTIONS(5156), + [anon_sym_RBRACE] = ACTIONS(5156), + [anon_sym_case] = ACTIONS(5156), + [anon_sym_fallthrough] = ACTIONS(5156), + [anon_sym_BANG_EQ] = ACTIONS(5158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5158), + [anon_sym_LT_EQ] = ACTIONS(5158), + [anon_sym_GT_EQ] = ACTIONS(5158), + [anon_sym_is] = ACTIONS(5156), + [anon_sym_PLUS] = ACTIONS(5158), + [anon_sym_DASH] = ACTIONS(5158), + [anon_sym_STAR] = ACTIONS(5158), + [anon_sym_SLASH] = ACTIONS(5158), + [anon_sym_PERCENT] = ACTIONS(5158), + [anon_sym_PLUS_PLUS] = ACTIONS(5158), + [anon_sym_DASH_DASH] = ACTIONS(5158), + [anon_sym_PIPE] = ACTIONS(5158), + [anon_sym_CARET] = ACTIONS(5158), + [anon_sym_LT_LT] = ACTIONS(5158), + [anon_sym_GT_GT] = ACTIONS(5158), + [anon_sym_class] = ACTIONS(5156), + [anon_sym_prefix] = ACTIONS(5156), + [anon_sym_infix] = ACTIONS(5156), + [anon_sym_postfix] = ACTIONS(5156), + [anon_sym_AT] = ACTIONS(5158), + [sym_property_behavior_modifier] = ACTIONS(5156), + [anon_sym_override] = ACTIONS(5156), + [anon_sym_convenience] = ACTIONS(5156), + [anon_sym_required] = ACTIONS(5156), + [anon_sym_public] = ACTIONS(5156), + [anon_sym_private] = ACTIONS(5156), + [anon_sym_internal] = ACTIONS(5156), + [anon_sym_fileprivate] = ACTIONS(5156), + [anon_sym_open] = ACTIONS(5156), + [anon_sym_mutating] = ACTIONS(5156), + [anon_sym_nonmutating] = ACTIONS(5156), + [anon_sym_static] = ACTIONS(5156), + [anon_sym_dynamic] = ACTIONS(5156), + [anon_sym_optional] = ACTIONS(5156), + [anon_sym_final] = ACTIONS(5156), + [anon_sym_inout] = ACTIONS(5156), + [anon_sym_ATescaping] = ACTIONS(5156), + [anon_sym_ATautoclosure] = ACTIONS(5156), + [anon_sym_weak] = ACTIONS(5156), + [anon_sym_unowned] = ACTIONS(5158), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5156), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5156), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5156), + [sym__dot_custom] = ACTIONS(5156), + [sym__three_dot_operator_custom] = ACTIONS(5156), + [sym__open_ended_range_operator_custom] = ACTIONS(5156), + [sym__conjunction_operator_custom] = ACTIONS(5156), + [sym__disjunction_operator_custom] = ACTIONS(5156), + [sym__nil_coalescing_operator_custom] = ACTIONS(5156), + [sym__eq_eq_custom] = ACTIONS(5156), + [sym__plus_then_ws] = ACTIONS(5156), + [sym__minus_then_ws] = ACTIONS(5156), + [sym_bang] = ACTIONS(5156), + [sym_default_keyword] = ACTIONS(5156), + [sym__as_custom] = ACTIONS(5156), + [sym__as_quest_custom] = ACTIONS(5156), + [sym__as_bang_custom] = ACTIONS(5156), + }, + [1464] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4871), + [anon_sym_LPAREN] = ACTIONS(4871), + [anon_sym_LBRACK] = ACTIONS(4871), + [anon_sym_QMARK] = ACTIONS(4869), + [sym__immediate_quest] = ACTIONS(4869), + [anon_sym_AMP] = ACTIONS(4869), + [aux_sym_custom_operator_token1] = ACTIONS(4869), + [anon_sym_LT] = ACTIONS(4869), + [anon_sym_GT] = ACTIONS(4869), + [anon_sym_LBRACE] = ACTIONS(4871), + [anon_sym_RBRACE] = ACTIONS(4871), + [anon_sym_case] = ACTIONS(4871), + [anon_sym_fallthrough] = ACTIONS(4871), + [anon_sym_BANG_EQ] = ACTIONS(4869), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4869), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4869), + [anon_sym_LT_EQ] = ACTIONS(4869), + [anon_sym_GT_EQ] = ACTIONS(4869), + [anon_sym_is] = ACTIONS(4871), + [anon_sym_PLUS] = ACTIONS(4869), + [anon_sym_DASH] = ACTIONS(4869), + [anon_sym_STAR] = ACTIONS(4869), + [anon_sym_SLASH] = ACTIONS(4869), + [anon_sym_PERCENT] = ACTIONS(4869), + [anon_sym_PLUS_PLUS] = ACTIONS(4869), + [anon_sym_DASH_DASH] = ACTIONS(4869), + [anon_sym_PIPE] = ACTIONS(4869), + [anon_sym_CARET] = ACTIONS(4869), + [anon_sym_LT_LT] = ACTIONS(4869), + [anon_sym_GT_GT] = ACTIONS(4869), + [anon_sym_class] = ACTIONS(4871), + [anon_sym_prefix] = ACTIONS(4871), + [anon_sym_infix] = ACTIONS(4871), + [anon_sym_postfix] = ACTIONS(4871), + [anon_sym_AT] = ACTIONS(4869), + [sym_property_behavior_modifier] = ACTIONS(4871), + [anon_sym_override] = ACTIONS(4871), + [anon_sym_convenience] = ACTIONS(4871), + [anon_sym_required] = ACTIONS(4871), + [anon_sym_public] = ACTIONS(4871), + [anon_sym_private] = ACTIONS(4871), + [anon_sym_internal] = ACTIONS(4871), + [anon_sym_fileprivate] = ACTIONS(4871), + [anon_sym_open] = ACTIONS(4871), + [anon_sym_mutating] = ACTIONS(4871), + [anon_sym_nonmutating] = ACTIONS(4871), + [anon_sym_static] = ACTIONS(4871), + [anon_sym_dynamic] = ACTIONS(4871), + [anon_sym_optional] = ACTIONS(4871), + [anon_sym_final] = ACTIONS(4871), + [anon_sym_inout] = ACTIONS(4871), + [anon_sym_ATescaping] = ACTIONS(4871), + [anon_sym_ATautoclosure] = ACTIONS(4871), + [anon_sym_weak] = ACTIONS(4871), + [anon_sym_unowned] = ACTIONS(4869), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4871), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4871), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4871), + [sym__dot_custom] = ACTIONS(4871), + [sym__three_dot_operator_custom] = ACTIONS(4871), + [sym__open_ended_range_operator_custom] = ACTIONS(4871), + [sym__conjunction_operator_custom] = ACTIONS(4871), + [sym__disjunction_operator_custom] = ACTIONS(4871), + [sym__nil_coalescing_operator_custom] = ACTIONS(4871), + [sym__eq_eq_custom] = ACTIONS(4871), + [sym__plus_then_ws] = ACTIONS(4871), + [sym__minus_then_ws] = ACTIONS(4871), + [sym_bang] = ACTIONS(4871), + [sym_default_keyword] = ACTIONS(4871), + [sym__as_custom] = ACTIONS(4871), + [sym__as_quest_custom] = ACTIONS(4871), + [sym__as_bang_custom] = ACTIONS(4871), + }, + [1465] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5152), + [anon_sym_LPAREN] = ACTIONS(5152), + [anon_sym_LBRACK] = ACTIONS(5152), + [anon_sym_QMARK] = ACTIONS(5154), + [sym__immediate_quest] = ACTIONS(5154), + [anon_sym_AMP] = ACTIONS(5154), + [aux_sym_custom_operator_token1] = ACTIONS(5154), + [anon_sym_LT] = ACTIONS(5154), + [anon_sym_GT] = ACTIONS(5154), + [anon_sym_LBRACE] = ACTIONS(5152), + [anon_sym_RBRACE] = ACTIONS(5152), + [anon_sym_case] = ACTIONS(5152), + [anon_sym_fallthrough] = ACTIONS(5152), + [anon_sym_BANG_EQ] = ACTIONS(5154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5154), + [anon_sym_LT_EQ] = ACTIONS(5154), + [anon_sym_GT_EQ] = ACTIONS(5154), + [anon_sym_is] = ACTIONS(5152), + [anon_sym_PLUS] = ACTIONS(5154), + [anon_sym_DASH] = ACTIONS(5154), + [anon_sym_STAR] = ACTIONS(5154), + [anon_sym_SLASH] = ACTIONS(5154), + [anon_sym_PERCENT] = ACTIONS(5154), + [anon_sym_PLUS_PLUS] = ACTIONS(5154), + [anon_sym_DASH_DASH] = ACTIONS(5154), + [anon_sym_PIPE] = ACTIONS(5154), + [anon_sym_CARET] = ACTIONS(5154), + [anon_sym_LT_LT] = ACTIONS(5154), + [anon_sym_GT_GT] = ACTIONS(5154), + [anon_sym_class] = ACTIONS(5152), + [anon_sym_prefix] = ACTIONS(5152), + [anon_sym_infix] = ACTIONS(5152), + [anon_sym_postfix] = ACTIONS(5152), + [anon_sym_AT] = ACTIONS(5154), + [sym_property_behavior_modifier] = ACTIONS(5152), + [anon_sym_override] = ACTIONS(5152), + [anon_sym_convenience] = ACTIONS(5152), + [anon_sym_required] = ACTIONS(5152), + [anon_sym_public] = ACTIONS(5152), + [anon_sym_private] = ACTIONS(5152), + [anon_sym_internal] = ACTIONS(5152), + [anon_sym_fileprivate] = ACTIONS(5152), + [anon_sym_open] = ACTIONS(5152), + [anon_sym_mutating] = ACTIONS(5152), + [anon_sym_nonmutating] = ACTIONS(5152), + [anon_sym_static] = ACTIONS(5152), + [anon_sym_dynamic] = ACTIONS(5152), + [anon_sym_optional] = ACTIONS(5152), + [anon_sym_final] = ACTIONS(5152), + [anon_sym_inout] = ACTIONS(5152), + [anon_sym_ATescaping] = ACTIONS(5152), + [anon_sym_ATautoclosure] = ACTIONS(5152), + [anon_sym_weak] = ACTIONS(5152), + [anon_sym_unowned] = ACTIONS(5154), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5152), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5152), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5152), + [sym__dot_custom] = ACTIONS(5152), + [sym__three_dot_operator_custom] = ACTIONS(5152), + [sym__open_ended_range_operator_custom] = ACTIONS(5152), + [sym__conjunction_operator_custom] = ACTIONS(5152), + [sym__disjunction_operator_custom] = ACTIONS(5152), + [sym__nil_coalescing_operator_custom] = ACTIONS(5152), + [sym__eq_eq_custom] = ACTIONS(5152), + [sym__plus_then_ws] = ACTIONS(5152), + [sym__minus_then_ws] = ACTIONS(5152), + [sym_bang] = ACTIONS(5152), + [sym_default_keyword] = ACTIONS(5152), + [sym__as_custom] = ACTIONS(5152), + [sym__as_quest_custom] = ACTIONS(5152), + [sym__as_bang_custom] = ACTIONS(5152), + }, + [1466] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4839), + [anon_sym_LPAREN] = ACTIONS(4839), + [anon_sym_LBRACK] = ACTIONS(4839), + [anon_sym_QMARK] = ACTIONS(4837), + [sym__immediate_quest] = ACTIONS(4837), + [anon_sym_AMP] = ACTIONS(4837), + [aux_sym_custom_operator_token1] = ACTIONS(4837), + [anon_sym_LT] = ACTIONS(4837), + [anon_sym_GT] = ACTIONS(4837), + [anon_sym_LBRACE] = ACTIONS(4839), + [anon_sym_RBRACE] = ACTIONS(4839), + [anon_sym_case] = ACTIONS(4839), + [anon_sym_fallthrough] = ACTIONS(4839), + [anon_sym_BANG_EQ] = ACTIONS(4837), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4837), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4837), + [anon_sym_LT_EQ] = ACTIONS(4837), + [anon_sym_GT_EQ] = ACTIONS(4837), + [anon_sym_is] = ACTIONS(4839), + [anon_sym_PLUS] = ACTIONS(4837), + [anon_sym_DASH] = ACTIONS(4837), + [anon_sym_STAR] = ACTIONS(4837), + [anon_sym_SLASH] = ACTIONS(4837), + [anon_sym_PERCENT] = ACTIONS(4837), + [anon_sym_PLUS_PLUS] = ACTIONS(4837), + [anon_sym_DASH_DASH] = ACTIONS(4837), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_CARET] = ACTIONS(4837), + [anon_sym_LT_LT] = ACTIONS(4837), + [anon_sym_GT_GT] = ACTIONS(4837), + [anon_sym_class] = ACTIONS(4839), + [anon_sym_prefix] = ACTIONS(4839), + [anon_sym_infix] = ACTIONS(4839), + [anon_sym_postfix] = ACTIONS(4839), + [anon_sym_AT] = ACTIONS(4837), + [sym_property_behavior_modifier] = ACTIONS(4839), + [anon_sym_override] = ACTIONS(4839), + [anon_sym_convenience] = ACTIONS(4839), + [anon_sym_required] = ACTIONS(4839), + [anon_sym_public] = ACTIONS(4839), + [anon_sym_private] = ACTIONS(4839), + [anon_sym_internal] = ACTIONS(4839), + [anon_sym_fileprivate] = ACTIONS(4839), + [anon_sym_open] = ACTIONS(4839), + [anon_sym_mutating] = ACTIONS(4839), + [anon_sym_nonmutating] = ACTIONS(4839), + [anon_sym_static] = ACTIONS(4839), + [anon_sym_dynamic] = ACTIONS(4839), + [anon_sym_optional] = ACTIONS(4839), + [anon_sym_final] = ACTIONS(4839), + [anon_sym_inout] = ACTIONS(4839), + [anon_sym_ATescaping] = ACTIONS(4839), + [anon_sym_ATautoclosure] = ACTIONS(4839), + [anon_sym_weak] = ACTIONS(4839), + [anon_sym_unowned] = ACTIONS(4837), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4839), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4839), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4839), + [sym__dot_custom] = ACTIONS(4839), + [sym__three_dot_operator_custom] = ACTIONS(4839), + [sym__open_ended_range_operator_custom] = ACTIONS(4839), + [sym__conjunction_operator_custom] = ACTIONS(4839), + [sym__disjunction_operator_custom] = ACTIONS(4839), + [sym__nil_coalescing_operator_custom] = ACTIONS(4839), + [sym__eq_eq_custom] = ACTIONS(4839), + [sym__plus_then_ws] = ACTIONS(4839), + [sym__minus_then_ws] = ACTIONS(4839), + [sym_bang] = ACTIONS(4839), + [sym_default_keyword] = ACTIONS(4839), + [sym__as_custom] = ACTIONS(4839), + [sym__as_quest_custom] = ACTIONS(4839), + [sym__as_bang_custom] = ACTIONS(4839), + }, + [1467] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4863), + [anon_sym_LPAREN] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_QMARK] = ACTIONS(4861), + [sym__immediate_quest] = ACTIONS(4861), + [anon_sym_AMP] = ACTIONS(4861), + [aux_sym_custom_operator_token1] = ACTIONS(4861), + [anon_sym_LT] = ACTIONS(4861), + [anon_sym_GT] = ACTIONS(4861), + [anon_sym_LBRACE] = ACTIONS(4863), + [anon_sym_RBRACE] = ACTIONS(4863), + [anon_sym_case] = ACTIONS(4863), + [anon_sym_fallthrough] = ACTIONS(4863), + [anon_sym_BANG_EQ] = ACTIONS(4861), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4861), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4861), + [anon_sym_LT_EQ] = ACTIONS(4861), + [anon_sym_GT_EQ] = ACTIONS(4861), + [anon_sym_is] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(4861), + [anon_sym_DASH] = ACTIONS(4861), + [anon_sym_STAR] = ACTIONS(4861), + [anon_sym_SLASH] = ACTIONS(4861), + [anon_sym_PERCENT] = ACTIONS(4861), + [anon_sym_PLUS_PLUS] = ACTIONS(4861), + [anon_sym_DASH_DASH] = ACTIONS(4861), + [anon_sym_PIPE] = ACTIONS(4861), + [anon_sym_CARET] = ACTIONS(4861), + [anon_sym_LT_LT] = ACTIONS(4861), + [anon_sym_GT_GT] = ACTIONS(4861), + [anon_sym_class] = ACTIONS(4863), + [anon_sym_prefix] = ACTIONS(4863), + [anon_sym_infix] = ACTIONS(4863), + [anon_sym_postfix] = ACTIONS(4863), + [anon_sym_AT] = ACTIONS(4861), + [sym_property_behavior_modifier] = ACTIONS(4863), + [anon_sym_override] = ACTIONS(4863), + [anon_sym_convenience] = ACTIONS(4863), + [anon_sym_required] = ACTIONS(4863), + [anon_sym_public] = ACTIONS(4863), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_internal] = ACTIONS(4863), + [anon_sym_fileprivate] = ACTIONS(4863), + [anon_sym_open] = ACTIONS(4863), + [anon_sym_mutating] = ACTIONS(4863), + [anon_sym_nonmutating] = ACTIONS(4863), + [anon_sym_static] = ACTIONS(4863), + [anon_sym_dynamic] = ACTIONS(4863), + [anon_sym_optional] = ACTIONS(4863), + [anon_sym_final] = ACTIONS(4863), + [anon_sym_inout] = ACTIONS(4863), + [anon_sym_ATescaping] = ACTIONS(4863), + [anon_sym_ATautoclosure] = ACTIONS(4863), + [anon_sym_weak] = ACTIONS(4863), + [anon_sym_unowned] = ACTIONS(4861), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4863), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4863), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4863), + [sym__dot_custom] = ACTIONS(4863), + [sym__three_dot_operator_custom] = ACTIONS(4863), + [sym__open_ended_range_operator_custom] = ACTIONS(4863), + [sym__conjunction_operator_custom] = ACTIONS(4863), + [sym__disjunction_operator_custom] = ACTIONS(4863), + [sym__nil_coalescing_operator_custom] = ACTIONS(4863), + [sym__eq_eq_custom] = ACTIONS(4863), + [sym__plus_then_ws] = ACTIONS(4863), + [sym__minus_then_ws] = ACTIONS(4863), + [sym_bang] = ACTIONS(4863), + [sym_default_keyword] = ACTIONS(4863), + [sym__as_custom] = ACTIONS(4863), + [sym__as_quest_custom] = ACTIONS(4863), + [sym__as_bang_custom] = ACTIONS(4863), + }, + [1468] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5182), + [anon_sym_LPAREN] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(5182), + [anon_sym_QMARK] = ACTIONS(5184), + [sym__immediate_quest] = ACTIONS(5184), + [anon_sym_AMP] = ACTIONS(5184), + [aux_sym_custom_operator_token1] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5184), + [anon_sym_GT] = ACTIONS(5184), + [anon_sym_LBRACE] = ACTIONS(5182), + [anon_sym_RBRACE] = ACTIONS(5182), + [anon_sym_case] = ACTIONS(5182), + [anon_sym_fallthrough] = ACTIONS(5182), + [anon_sym_BANG_EQ] = ACTIONS(5184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5184), + [anon_sym_LT_EQ] = ACTIONS(5184), + [anon_sym_GT_EQ] = ACTIONS(5184), + [anon_sym_is] = ACTIONS(5182), + [anon_sym_PLUS] = ACTIONS(5184), + [anon_sym_DASH] = ACTIONS(5184), + [anon_sym_STAR] = ACTIONS(5184), + [anon_sym_SLASH] = ACTIONS(5184), + [anon_sym_PERCENT] = ACTIONS(5184), + [anon_sym_PLUS_PLUS] = ACTIONS(5184), + [anon_sym_DASH_DASH] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5184), + [anon_sym_CARET] = ACTIONS(5184), + [anon_sym_LT_LT] = ACTIONS(5184), + [anon_sym_GT_GT] = ACTIONS(5184), + [anon_sym_class] = ACTIONS(5182), + [anon_sym_prefix] = ACTIONS(5182), + [anon_sym_infix] = ACTIONS(5182), + [anon_sym_postfix] = ACTIONS(5182), + [anon_sym_AT] = ACTIONS(5184), + [sym_property_behavior_modifier] = ACTIONS(5182), + [anon_sym_override] = ACTIONS(5182), + [anon_sym_convenience] = ACTIONS(5182), + [anon_sym_required] = ACTIONS(5182), + [anon_sym_public] = ACTIONS(5182), + [anon_sym_private] = ACTIONS(5182), + [anon_sym_internal] = ACTIONS(5182), + [anon_sym_fileprivate] = ACTIONS(5182), + [anon_sym_open] = ACTIONS(5182), + [anon_sym_mutating] = ACTIONS(5182), + [anon_sym_nonmutating] = ACTIONS(5182), + [anon_sym_static] = ACTIONS(5182), + [anon_sym_dynamic] = ACTIONS(5182), + [anon_sym_optional] = ACTIONS(5182), + [anon_sym_final] = ACTIONS(5182), + [anon_sym_inout] = ACTIONS(5182), + [anon_sym_ATescaping] = ACTIONS(5182), + [anon_sym_ATautoclosure] = ACTIONS(5182), + [anon_sym_weak] = ACTIONS(5182), + [anon_sym_unowned] = ACTIONS(5184), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5182), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5182), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5182), + [sym__dot_custom] = ACTIONS(5182), + [sym__three_dot_operator_custom] = ACTIONS(5182), + [sym__open_ended_range_operator_custom] = ACTIONS(5182), + [sym__conjunction_operator_custom] = ACTIONS(5182), + [sym__disjunction_operator_custom] = ACTIONS(5182), + [sym__nil_coalescing_operator_custom] = ACTIONS(5182), + [sym__eq_eq_custom] = ACTIONS(5182), + [sym__plus_then_ws] = ACTIONS(5182), + [sym__minus_then_ws] = ACTIONS(5182), + [sym_bang] = ACTIONS(5182), + [sym_default_keyword] = ACTIONS(5182), + [sym__as_custom] = ACTIONS(5182), + [sym__as_quest_custom] = ACTIONS(5182), + [sym__as_bang_custom] = ACTIONS(5182), + }, + [1469] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5218), + [anon_sym_LPAREN] = ACTIONS(5218), + [anon_sym_LBRACK] = ACTIONS(5218), + [anon_sym_QMARK] = ACTIONS(5220), + [sym__immediate_quest] = ACTIONS(5220), + [anon_sym_AMP] = ACTIONS(5220), + [aux_sym_custom_operator_token1] = ACTIONS(5220), + [anon_sym_LT] = ACTIONS(5220), + [anon_sym_GT] = ACTIONS(5220), + [anon_sym_LBRACE] = ACTIONS(5218), + [anon_sym_RBRACE] = ACTIONS(5218), + [anon_sym_case] = ACTIONS(5218), + [anon_sym_fallthrough] = ACTIONS(5218), + [anon_sym_BANG_EQ] = ACTIONS(5220), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5220), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5220), + [anon_sym_LT_EQ] = ACTIONS(5220), + [anon_sym_GT_EQ] = ACTIONS(5220), + [anon_sym_is] = ACTIONS(5218), + [anon_sym_PLUS] = ACTIONS(5220), + [anon_sym_DASH] = ACTIONS(5220), + [anon_sym_STAR] = ACTIONS(5220), + [anon_sym_SLASH] = ACTIONS(5220), + [anon_sym_PERCENT] = ACTIONS(5220), + [anon_sym_PLUS_PLUS] = ACTIONS(5220), + [anon_sym_DASH_DASH] = ACTIONS(5220), + [anon_sym_PIPE] = ACTIONS(5220), + [anon_sym_CARET] = ACTIONS(5220), + [anon_sym_LT_LT] = ACTIONS(5220), + [anon_sym_GT_GT] = ACTIONS(5220), + [anon_sym_class] = ACTIONS(5218), + [anon_sym_prefix] = ACTIONS(5218), + [anon_sym_infix] = ACTIONS(5218), + [anon_sym_postfix] = ACTIONS(5218), + [anon_sym_AT] = ACTIONS(5220), + [sym_property_behavior_modifier] = ACTIONS(5218), + [anon_sym_override] = ACTIONS(5218), + [anon_sym_convenience] = ACTIONS(5218), + [anon_sym_required] = ACTIONS(5218), + [anon_sym_public] = ACTIONS(5218), + [anon_sym_private] = ACTIONS(5218), + [anon_sym_internal] = ACTIONS(5218), + [anon_sym_fileprivate] = ACTIONS(5218), + [anon_sym_open] = ACTIONS(5218), + [anon_sym_mutating] = ACTIONS(5218), + [anon_sym_nonmutating] = ACTIONS(5218), + [anon_sym_static] = ACTIONS(5218), + [anon_sym_dynamic] = ACTIONS(5218), + [anon_sym_optional] = ACTIONS(5218), + [anon_sym_final] = ACTIONS(5218), + [anon_sym_inout] = ACTIONS(5218), + [anon_sym_ATescaping] = ACTIONS(5218), + [anon_sym_ATautoclosure] = ACTIONS(5218), + [anon_sym_weak] = ACTIONS(5218), + [anon_sym_unowned] = ACTIONS(5220), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5218), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5218), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5218), + [sym__dot_custom] = ACTIONS(5218), + [sym__three_dot_operator_custom] = ACTIONS(5218), + [sym__open_ended_range_operator_custom] = ACTIONS(5218), + [sym__conjunction_operator_custom] = ACTIONS(5218), + [sym__disjunction_operator_custom] = ACTIONS(5218), + [sym__nil_coalescing_operator_custom] = ACTIONS(5218), + [sym__eq_eq_custom] = ACTIONS(5218), + [sym__plus_then_ws] = ACTIONS(5218), + [sym__minus_then_ws] = ACTIONS(5218), + [sym_bang] = ACTIONS(5218), + [sym_default_keyword] = ACTIONS(5218), + [sym__as_custom] = ACTIONS(5218), + [sym__as_quest_custom] = ACTIONS(5218), + [sym__as_bang_custom] = ACTIONS(5218), + }, + [1470] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5284), + [anon_sym_LPAREN] = ACTIONS(5284), + [anon_sym_LBRACK] = ACTIONS(5284), + [anon_sym_QMARK] = ACTIONS(5286), + [sym__immediate_quest] = ACTIONS(5286), + [anon_sym_AMP] = ACTIONS(5286), + [aux_sym_custom_operator_token1] = ACTIONS(5286), + [anon_sym_LT] = ACTIONS(5286), + [anon_sym_GT] = ACTIONS(5286), + [anon_sym_LBRACE] = ACTIONS(5284), + [anon_sym_RBRACE] = ACTIONS(5284), + [anon_sym_case] = ACTIONS(5284), + [anon_sym_fallthrough] = ACTIONS(5284), + [anon_sym_BANG_EQ] = ACTIONS(5286), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5286), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5286), + [anon_sym_LT_EQ] = ACTIONS(5286), + [anon_sym_GT_EQ] = ACTIONS(5286), + [anon_sym_is] = ACTIONS(5284), + [anon_sym_PLUS] = ACTIONS(5286), + [anon_sym_DASH] = ACTIONS(5286), + [anon_sym_STAR] = ACTIONS(5286), + [anon_sym_SLASH] = ACTIONS(5286), + [anon_sym_PERCENT] = ACTIONS(5286), + [anon_sym_PLUS_PLUS] = ACTIONS(5286), + [anon_sym_DASH_DASH] = ACTIONS(5286), + [anon_sym_PIPE] = ACTIONS(5286), + [anon_sym_CARET] = ACTIONS(5286), + [anon_sym_LT_LT] = ACTIONS(5286), + [anon_sym_GT_GT] = ACTIONS(5286), + [anon_sym_class] = ACTIONS(5284), + [anon_sym_prefix] = ACTIONS(5284), + [anon_sym_infix] = ACTIONS(5284), + [anon_sym_postfix] = ACTIONS(5284), + [anon_sym_AT] = ACTIONS(5286), + [sym_property_behavior_modifier] = ACTIONS(5284), + [anon_sym_override] = ACTIONS(5284), + [anon_sym_convenience] = ACTIONS(5284), + [anon_sym_required] = ACTIONS(5284), + [anon_sym_public] = ACTIONS(5284), + [anon_sym_private] = ACTIONS(5284), + [anon_sym_internal] = ACTIONS(5284), + [anon_sym_fileprivate] = ACTIONS(5284), + [anon_sym_open] = ACTIONS(5284), + [anon_sym_mutating] = ACTIONS(5284), + [anon_sym_nonmutating] = ACTIONS(5284), + [anon_sym_static] = ACTIONS(5284), + [anon_sym_dynamic] = ACTIONS(5284), + [anon_sym_optional] = ACTIONS(5284), + [anon_sym_final] = ACTIONS(5284), + [anon_sym_inout] = ACTIONS(5284), + [anon_sym_ATescaping] = ACTIONS(5284), + [anon_sym_ATautoclosure] = ACTIONS(5284), + [anon_sym_weak] = ACTIONS(5284), + [anon_sym_unowned] = ACTIONS(5286), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5284), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5284), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5284), + [sym__dot_custom] = ACTIONS(5284), + [sym__three_dot_operator_custom] = ACTIONS(5284), + [sym__open_ended_range_operator_custom] = ACTIONS(5284), + [sym__conjunction_operator_custom] = ACTIONS(5284), + [sym__disjunction_operator_custom] = ACTIONS(5284), + [sym__nil_coalescing_operator_custom] = ACTIONS(5284), + [sym__eq_eq_custom] = ACTIONS(5284), + [sym__plus_then_ws] = ACTIONS(5284), + [sym__minus_then_ws] = ACTIONS(5284), + [sym_bang] = ACTIONS(5284), + [sym_default_keyword] = ACTIONS(5284), + [sym__as_custom] = ACTIONS(5284), + [sym__as_quest_custom] = ACTIONS(5284), + [sym__as_bang_custom] = ACTIONS(5284), + }, + [1471] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5190), + [anon_sym_LPAREN] = ACTIONS(5190), + [anon_sym_LBRACK] = ACTIONS(5190), + [anon_sym_QMARK] = ACTIONS(5192), + [sym__immediate_quest] = ACTIONS(5192), + [anon_sym_AMP] = ACTIONS(5192), + [aux_sym_custom_operator_token1] = ACTIONS(5192), + [anon_sym_LT] = ACTIONS(5192), + [anon_sym_GT] = ACTIONS(5192), + [anon_sym_LBRACE] = ACTIONS(5190), + [anon_sym_RBRACE] = ACTIONS(5190), + [anon_sym_case] = ACTIONS(5190), + [anon_sym_fallthrough] = ACTIONS(5190), + [anon_sym_BANG_EQ] = ACTIONS(5192), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5192), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5192), + [anon_sym_LT_EQ] = ACTIONS(5192), + [anon_sym_GT_EQ] = ACTIONS(5192), + [anon_sym_is] = ACTIONS(5190), + [anon_sym_PLUS] = ACTIONS(5192), + [anon_sym_DASH] = ACTIONS(5192), + [anon_sym_STAR] = ACTIONS(5192), + [anon_sym_SLASH] = ACTIONS(5192), + [anon_sym_PERCENT] = ACTIONS(5192), + [anon_sym_PLUS_PLUS] = ACTIONS(5192), + [anon_sym_DASH_DASH] = ACTIONS(5192), + [anon_sym_PIPE] = ACTIONS(5192), + [anon_sym_CARET] = ACTIONS(5192), + [anon_sym_LT_LT] = ACTIONS(5192), + [anon_sym_GT_GT] = ACTIONS(5192), + [anon_sym_class] = ACTIONS(5190), + [anon_sym_prefix] = ACTIONS(5190), + [anon_sym_infix] = ACTIONS(5190), + [anon_sym_postfix] = ACTIONS(5190), + [anon_sym_AT] = ACTIONS(5192), + [sym_property_behavior_modifier] = ACTIONS(5190), + [anon_sym_override] = ACTIONS(5190), + [anon_sym_convenience] = ACTIONS(5190), + [anon_sym_required] = ACTIONS(5190), + [anon_sym_public] = ACTIONS(5190), + [anon_sym_private] = ACTIONS(5190), + [anon_sym_internal] = ACTIONS(5190), + [anon_sym_fileprivate] = ACTIONS(5190), + [anon_sym_open] = ACTIONS(5190), + [anon_sym_mutating] = ACTIONS(5190), + [anon_sym_nonmutating] = ACTIONS(5190), + [anon_sym_static] = ACTIONS(5190), + [anon_sym_dynamic] = ACTIONS(5190), + [anon_sym_optional] = ACTIONS(5190), + [anon_sym_final] = ACTIONS(5190), + [anon_sym_inout] = ACTIONS(5190), + [anon_sym_ATescaping] = ACTIONS(5190), + [anon_sym_ATautoclosure] = ACTIONS(5190), + [anon_sym_weak] = ACTIONS(5190), + [anon_sym_unowned] = ACTIONS(5192), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5190), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5190), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5190), + [sym__dot_custom] = ACTIONS(5190), + [sym__three_dot_operator_custom] = ACTIONS(5190), + [sym__open_ended_range_operator_custom] = ACTIONS(5190), + [sym__conjunction_operator_custom] = ACTIONS(5190), + [sym__disjunction_operator_custom] = ACTIONS(5190), + [sym__nil_coalescing_operator_custom] = ACTIONS(5190), + [sym__eq_eq_custom] = ACTIONS(5190), + [sym__plus_then_ws] = ACTIONS(5190), + [sym__minus_then_ws] = ACTIONS(5190), + [sym_bang] = ACTIONS(5190), + [sym_default_keyword] = ACTIONS(5190), + [sym__as_custom] = ACTIONS(5190), + [sym__as_quest_custom] = ACTIONS(5190), + [sym__as_bang_custom] = ACTIONS(5190), + }, + [1472] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5300), + [anon_sym_LPAREN] = ACTIONS(5300), + [anon_sym_LBRACK] = ACTIONS(5300), + [anon_sym_QMARK] = ACTIONS(5302), + [sym__immediate_quest] = ACTIONS(5302), + [anon_sym_AMP] = ACTIONS(5302), + [aux_sym_custom_operator_token1] = ACTIONS(5302), + [anon_sym_LT] = ACTIONS(5302), + [anon_sym_GT] = ACTIONS(5302), + [anon_sym_LBRACE] = ACTIONS(5300), + [anon_sym_RBRACE] = ACTIONS(5300), + [anon_sym_case] = ACTIONS(5300), + [anon_sym_fallthrough] = ACTIONS(5300), + [anon_sym_BANG_EQ] = ACTIONS(5302), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5302), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5302), + [anon_sym_LT_EQ] = ACTIONS(5302), + [anon_sym_GT_EQ] = ACTIONS(5302), + [anon_sym_is] = ACTIONS(5300), + [anon_sym_PLUS] = ACTIONS(5302), + [anon_sym_DASH] = ACTIONS(5302), + [anon_sym_STAR] = ACTIONS(5302), + [anon_sym_SLASH] = ACTIONS(5302), + [anon_sym_PERCENT] = ACTIONS(5302), + [anon_sym_PLUS_PLUS] = ACTIONS(5302), + [anon_sym_DASH_DASH] = ACTIONS(5302), + [anon_sym_PIPE] = ACTIONS(5302), + [anon_sym_CARET] = ACTIONS(5302), + [anon_sym_LT_LT] = ACTIONS(5302), + [anon_sym_GT_GT] = ACTIONS(5302), + [anon_sym_class] = ACTIONS(5300), + [anon_sym_prefix] = ACTIONS(5300), + [anon_sym_infix] = ACTIONS(5300), + [anon_sym_postfix] = ACTIONS(5300), + [anon_sym_AT] = ACTIONS(5302), + [sym_property_behavior_modifier] = ACTIONS(5300), + [anon_sym_override] = ACTIONS(5300), + [anon_sym_convenience] = ACTIONS(5300), + [anon_sym_required] = ACTIONS(5300), + [anon_sym_public] = ACTIONS(5300), + [anon_sym_private] = ACTIONS(5300), + [anon_sym_internal] = ACTIONS(5300), + [anon_sym_fileprivate] = ACTIONS(5300), + [anon_sym_open] = ACTIONS(5300), + [anon_sym_mutating] = ACTIONS(5300), + [anon_sym_nonmutating] = ACTIONS(5300), + [anon_sym_static] = ACTIONS(5300), + [anon_sym_dynamic] = ACTIONS(5300), + [anon_sym_optional] = ACTIONS(5300), + [anon_sym_final] = ACTIONS(5300), + [anon_sym_inout] = ACTIONS(5300), + [anon_sym_ATescaping] = ACTIONS(5300), + [anon_sym_ATautoclosure] = ACTIONS(5300), + [anon_sym_weak] = ACTIONS(5300), + [anon_sym_unowned] = ACTIONS(5302), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5300), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5300), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5300), + [sym__dot_custom] = ACTIONS(5300), + [sym__three_dot_operator_custom] = ACTIONS(5300), + [sym__open_ended_range_operator_custom] = ACTIONS(5300), + [sym__conjunction_operator_custom] = ACTIONS(5300), + [sym__disjunction_operator_custom] = ACTIONS(5300), + [sym__nil_coalescing_operator_custom] = ACTIONS(5300), + [sym__eq_eq_custom] = ACTIONS(5300), + [sym__plus_then_ws] = ACTIONS(5300), + [sym__minus_then_ws] = ACTIONS(5300), + [sym_bang] = ACTIONS(5300), + [sym_default_keyword] = ACTIONS(5300), + [sym__as_custom] = ACTIONS(5300), + [sym__as_quest_custom] = ACTIONS(5300), + [sym__as_bang_custom] = ACTIONS(5300), + }, + [1473] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4580), + [anon_sym_LPAREN] = ACTIONS(4580), + [anon_sym_LBRACK] = ACTIONS(4580), + [anon_sym_QMARK] = ACTIONS(4586), + [sym__immediate_quest] = ACTIONS(4586), + [anon_sym_AMP] = ACTIONS(4586), + [aux_sym_custom_operator_token1] = ACTIONS(4586), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_GT] = ACTIONS(4586), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_RBRACE] = ACTIONS(4580), + [anon_sym_case] = ACTIONS(4580), + [anon_sym_fallthrough] = ACTIONS(4580), + [anon_sym_BANG_EQ] = ACTIONS(4586), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4586), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4586), + [anon_sym_LT_EQ] = ACTIONS(4586), + [anon_sym_GT_EQ] = ACTIONS(4586), + [anon_sym_is] = ACTIONS(4580), + [anon_sym_PLUS] = ACTIONS(4586), + [anon_sym_DASH] = ACTIONS(4586), + [anon_sym_STAR] = ACTIONS(4586), + [anon_sym_SLASH] = ACTIONS(4586), + [anon_sym_PERCENT] = ACTIONS(4586), + [anon_sym_PLUS_PLUS] = ACTIONS(4586), + [anon_sym_DASH_DASH] = ACTIONS(4586), + [anon_sym_PIPE] = ACTIONS(4586), + [anon_sym_CARET] = ACTIONS(4586), + [anon_sym_LT_LT] = ACTIONS(4586), + [anon_sym_GT_GT] = ACTIONS(4586), + [anon_sym_class] = ACTIONS(4580), + [anon_sym_prefix] = ACTIONS(4580), + [anon_sym_infix] = ACTIONS(4580), + [anon_sym_postfix] = ACTIONS(4580), + [anon_sym_AT] = ACTIONS(4586), + [sym_property_behavior_modifier] = ACTIONS(4580), + [anon_sym_override] = ACTIONS(4580), + [anon_sym_convenience] = ACTIONS(4580), + [anon_sym_required] = ACTIONS(4580), + [anon_sym_public] = ACTIONS(4580), + [anon_sym_private] = ACTIONS(4580), + [anon_sym_internal] = ACTIONS(4580), + [anon_sym_fileprivate] = ACTIONS(4580), + [anon_sym_open] = ACTIONS(4580), + [anon_sym_mutating] = ACTIONS(4580), + [anon_sym_nonmutating] = ACTIONS(4580), + [anon_sym_static] = ACTIONS(4580), + [anon_sym_dynamic] = ACTIONS(4580), + [anon_sym_optional] = ACTIONS(4580), + [anon_sym_final] = ACTIONS(4580), + [anon_sym_inout] = ACTIONS(4580), + [anon_sym_ATescaping] = ACTIONS(4580), + [anon_sym_ATautoclosure] = ACTIONS(4580), + [anon_sym_weak] = ACTIONS(4580), + [anon_sym_unowned] = ACTIONS(4586), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4580), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4580), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4580), + [sym__dot_custom] = ACTIONS(4580), + [sym__three_dot_operator_custom] = ACTIONS(4580), + [sym__open_ended_range_operator_custom] = ACTIONS(4580), + [sym__conjunction_operator_custom] = ACTIONS(4580), + [sym__disjunction_operator_custom] = ACTIONS(4580), + [sym__nil_coalescing_operator_custom] = ACTIONS(4580), + [sym__eq_eq_custom] = ACTIONS(4580), + [sym__plus_then_ws] = ACTIONS(4580), + [sym__minus_then_ws] = ACTIONS(4580), + [sym_bang] = ACTIONS(4580), + [sym_default_keyword] = ACTIONS(4580), + [sym__as_custom] = ACTIONS(4580), + [sym__as_quest_custom] = ACTIONS(4580), + [sym__as_bang_custom] = ACTIONS(4580), + }, + [1474] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4847), + [anon_sym_LPAREN] = ACTIONS(4847), + [anon_sym_LBRACK] = ACTIONS(4847), + [anon_sym_QMARK] = ACTIONS(4845), + [sym__immediate_quest] = ACTIONS(4845), + [anon_sym_AMP] = ACTIONS(4845), + [aux_sym_custom_operator_token1] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4845), + [anon_sym_GT] = ACTIONS(4845), + [anon_sym_LBRACE] = ACTIONS(4847), + [anon_sym_RBRACE] = ACTIONS(4847), + [anon_sym_case] = ACTIONS(4847), + [anon_sym_fallthrough] = ACTIONS(4847), + [anon_sym_BANG_EQ] = ACTIONS(4845), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4845), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4845), + [anon_sym_LT_EQ] = ACTIONS(4845), + [anon_sym_GT_EQ] = ACTIONS(4845), + [anon_sym_is] = ACTIONS(4847), + [anon_sym_PLUS] = ACTIONS(4845), + [anon_sym_DASH] = ACTIONS(4845), + [anon_sym_STAR] = ACTIONS(4845), + [anon_sym_SLASH] = ACTIONS(4845), + [anon_sym_PERCENT] = ACTIONS(4845), + [anon_sym_PLUS_PLUS] = ACTIONS(4845), + [anon_sym_DASH_DASH] = ACTIONS(4845), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_CARET] = ACTIONS(4845), + [anon_sym_LT_LT] = ACTIONS(4845), + [anon_sym_GT_GT] = ACTIONS(4845), + [anon_sym_class] = ACTIONS(4847), + [anon_sym_prefix] = ACTIONS(4847), + [anon_sym_infix] = ACTIONS(4847), + [anon_sym_postfix] = ACTIONS(4847), + [anon_sym_AT] = ACTIONS(4845), + [sym_property_behavior_modifier] = ACTIONS(4847), + [anon_sym_override] = ACTIONS(4847), + [anon_sym_convenience] = ACTIONS(4847), + [anon_sym_required] = ACTIONS(4847), + [anon_sym_public] = ACTIONS(4847), + [anon_sym_private] = ACTIONS(4847), + [anon_sym_internal] = ACTIONS(4847), + [anon_sym_fileprivate] = ACTIONS(4847), + [anon_sym_open] = ACTIONS(4847), + [anon_sym_mutating] = ACTIONS(4847), + [anon_sym_nonmutating] = ACTIONS(4847), + [anon_sym_static] = ACTIONS(4847), + [anon_sym_dynamic] = ACTIONS(4847), + [anon_sym_optional] = ACTIONS(4847), + [anon_sym_final] = ACTIONS(4847), + [anon_sym_inout] = ACTIONS(4847), + [anon_sym_ATescaping] = ACTIONS(4847), + [anon_sym_ATautoclosure] = ACTIONS(4847), + [anon_sym_weak] = ACTIONS(4847), + [anon_sym_unowned] = ACTIONS(4845), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4847), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4847), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4847), + [sym__dot_custom] = ACTIONS(4847), + [sym__three_dot_operator_custom] = ACTIONS(4847), + [sym__open_ended_range_operator_custom] = ACTIONS(4847), + [sym__conjunction_operator_custom] = ACTIONS(4847), + [sym__disjunction_operator_custom] = ACTIONS(4847), + [sym__nil_coalescing_operator_custom] = ACTIONS(4847), + [sym__eq_eq_custom] = ACTIONS(4847), + [sym__plus_then_ws] = ACTIONS(4847), + [sym__minus_then_ws] = ACTIONS(4847), + [sym_bang] = ACTIONS(4847), + [sym_default_keyword] = ACTIONS(4847), + [sym__as_custom] = ACTIONS(4847), + [sym__as_quest_custom] = ACTIONS(4847), + [sym__as_bang_custom] = ACTIONS(4847), + }, + [1475] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4827), + [anon_sym_LPAREN] = ACTIONS(4827), + [anon_sym_LBRACK] = ACTIONS(4827), + [anon_sym_QMARK] = ACTIONS(4825), + [sym__immediate_quest] = ACTIONS(4825), + [anon_sym_AMP] = ACTIONS(4825), + [aux_sym_custom_operator_token1] = ACTIONS(4825), + [anon_sym_LT] = ACTIONS(4825), + [anon_sym_GT] = ACTIONS(4825), + [anon_sym_LBRACE] = ACTIONS(4827), + [anon_sym_RBRACE] = ACTIONS(4827), + [anon_sym_case] = ACTIONS(4827), + [anon_sym_fallthrough] = ACTIONS(4827), + [anon_sym_BANG_EQ] = ACTIONS(4825), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4825), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4825), + [anon_sym_LT_EQ] = ACTIONS(4825), + [anon_sym_GT_EQ] = ACTIONS(4825), + [anon_sym_is] = ACTIONS(4827), + [anon_sym_PLUS] = ACTIONS(4825), + [anon_sym_DASH] = ACTIONS(4825), + [anon_sym_STAR] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4825), + [anon_sym_PERCENT] = ACTIONS(4825), + [anon_sym_PLUS_PLUS] = ACTIONS(4825), + [anon_sym_DASH_DASH] = ACTIONS(4825), + [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym_LT_LT] = ACTIONS(4825), + [anon_sym_GT_GT] = ACTIONS(4825), + [anon_sym_class] = ACTIONS(4827), + [anon_sym_prefix] = ACTIONS(4827), + [anon_sym_infix] = ACTIONS(4827), + [anon_sym_postfix] = ACTIONS(4827), + [anon_sym_AT] = ACTIONS(4825), + [sym_property_behavior_modifier] = ACTIONS(4827), + [anon_sym_override] = ACTIONS(4827), + [anon_sym_convenience] = ACTIONS(4827), + [anon_sym_required] = ACTIONS(4827), + [anon_sym_public] = ACTIONS(4827), + [anon_sym_private] = ACTIONS(4827), + [anon_sym_internal] = ACTIONS(4827), + [anon_sym_fileprivate] = ACTIONS(4827), + [anon_sym_open] = ACTIONS(4827), + [anon_sym_mutating] = ACTIONS(4827), + [anon_sym_nonmutating] = ACTIONS(4827), + [anon_sym_static] = ACTIONS(4827), + [anon_sym_dynamic] = ACTIONS(4827), + [anon_sym_optional] = ACTIONS(4827), + [anon_sym_final] = ACTIONS(4827), + [anon_sym_inout] = ACTIONS(4827), + [anon_sym_ATescaping] = ACTIONS(4827), + [anon_sym_ATautoclosure] = ACTIONS(4827), + [anon_sym_weak] = ACTIONS(4827), + [anon_sym_unowned] = ACTIONS(4825), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4827), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4827), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4827), + [sym__dot_custom] = ACTIONS(4827), + [sym__three_dot_operator_custom] = ACTIONS(4827), + [sym__open_ended_range_operator_custom] = ACTIONS(4827), + [sym__conjunction_operator_custom] = ACTIONS(4827), + [sym__disjunction_operator_custom] = ACTIONS(4827), + [sym__nil_coalescing_operator_custom] = ACTIONS(4827), + [sym__eq_eq_custom] = ACTIONS(4827), + [sym__plus_then_ws] = ACTIONS(4827), + [sym__minus_then_ws] = ACTIONS(4827), + [sym_bang] = ACTIONS(4827), + [sym_default_keyword] = ACTIONS(4827), + [sym__as_custom] = ACTIONS(4827), + [sym__as_quest_custom] = ACTIONS(4827), + [sym__as_bang_custom] = ACTIONS(4827), + }, + [1476] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4831), + [anon_sym_LPAREN] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(4831), + [anon_sym_QMARK] = ACTIONS(4829), + [sym__immediate_quest] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + [aux_sym_custom_operator_token1] = ACTIONS(4829), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_LBRACE] = ACTIONS(4831), + [anon_sym_RBRACE] = ACTIONS(4831), + [anon_sym_case] = ACTIONS(4831), + [anon_sym_fallthrough] = ACTIONS(4831), + [anon_sym_BANG_EQ] = ACTIONS(4829), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4829), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4829), + [anon_sym_LT_EQ] = ACTIONS(4829), + [anon_sym_GT_EQ] = ACTIONS(4829), + [anon_sym_is] = ACTIONS(4831), + [anon_sym_PLUS] = ACTIONS(4829), + [anon_sym_DASH] = ACTIONS(4829), + [anon_sym_STAR] = ACTIONS(4829), + [anon_sym_SLASH] = ACTIONS(4829), + [anon_sym_PERCENT] = ACTIONS(4829), + [anon_sym_PLUS_PLUS] = ACTIONS(4829), + [anon_sym_DASH_DASH] = ACTIONS(4829), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_CARET] = ACTIONS(4829), + [anon_sym_LT_LT] = ACTIONS(4829), + [anon_sym_GT_GT] = ACTIONS(4829), + [anon_sym_class] = ACTIONS(4831), + [anon_sym_prefix] = ACTIONS(4831), + [anon_sym_infix] = ACTIONS(4831), + [anon_sym_postfix] = ACTIONS(4831), + [anon_sym_AT] = ACTIONS(4829), + [sym_property_behavior_modifier] = ACTIONS(4831), + [anon_sym_override] = ACTIONS(4831), + [anon_sym_convenience] = ACTIONS(4831), + [anon_sym_required] = ACTIONS(4831), + [anon_sym_public] = ACTIONS(4831), + [anon_sym_private] = ACTIONS(4831), + [anon_sym_internal] = ACTIONS(4831), + [anon_sym_fileprivate] = ACTIONS(4831), + [anon_sym_open] = ACTIONS(4831), + [anon_sym_mutating] = ACTIONS(4831), + [anon_sym_nonmutating] = ACTIONS(4831), + [anon_sym_static] = ACTIONS(4831), + [anon_sym_dynamic] = ACTIONS(4831), + [anon_sym_optional] = ACTIONS(4831), + [anon_sym_final] = ACTIONS(4831), + [anon_sym_inout] = ACTIONS(4831), + [anon_sym_ATescaping] = ACTIONS(4831), + [anon_sym_ATautoclosure] = ACTIONS(4831), + [anon_sym_weak] = ACTIONS(4831), + [anon_sym_unowned] = ACTIONS(4829), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4831), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4831), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4831), + [sym__dot_custom] = ACTIONS(4831), + [sym__three_dot_operator_custom] = ACTIONS(4831), + [sym__open_ended_range_operator_custom] = ACTIONS(4831), + [sym__conjunction_operator_custom] = ACTIONS(4831), + [sym__disjunction_operator_custom] = ACTIONS(4831), + [sym__nil_coalescing_operator_custom] = ACTIONS(4831), + [sym__eq_eq_custom] = ACTIONS(4831), + [sym__plus_then_ws] = ACTIONS(4831), + [sym__minus_then_ws] = ACTIONS(4831), + [sym_bang] = ACTIONS(4831), + [sym_default_keyword] = ACTIONS(4831), + [sym__as_custom] = ACTIONS(4831), + [sym__as_quest_custom] = ACTIONS(4831), + [sym__as_bang_custom] = ACTIONS(4831), + }, + [1477] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5276), + [anon_sym_LPAREN] = ACTIONS(5276), + [anon_sym_LBRACK] = ACTIONS(5276), + [anon_sym_QMARK] = ACTIONS(5278), + [sym__immediate_quest] = ACTIONS(5278), + [anon_sym_AMP] = ACTIONS(5278), + [aux_sym_custom_operator_token1] = ACTIONS(5278), + [anon_sym_LT] = ACTIONS(5278), + [anon_sym_GT] = ACTIONS(5278), + [anon_sym_LBRACE] = ACTIONS(5276), + [anon_sym_RBRACE] = ACTIONS(5276), + [anon_sym_case] = ACTIONS(5276), + [anon_sym_fallthrough] = ACTIONS(5276), + [anon_sym_BANG_EQ] = ACTIONS(5278), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5278), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5278), + [anon_sym_LT_EQ] = ACTIONS(5278), + [anon_sym_GT_EQ] = ACTIONS(5278), + [anon_sym_is] = ACTIONS(5276), + [anon_sym_PLUS] = ACTIONS(5278), + [anon_sym_DASH] = ACTIONS(5278), + [anon_sym_STAR] = ACTIONS(5278), + [anon_sym_SLASH] = ACTIONS(5278), + [anon_sym_PERCENT] = ACTIONS(5278), + [anon_sym_PLUS_PLUS] = ACTIONS(5278), + [anon_sym_DASH_DASH] = ACTIONS(5278), + [anon_sym_PIPE] = ACTIONS(5278), + [anon_sym_CARET] = ACTIONS(5278), + [anon_sym_LT_LT] = ACTIONS(5278), + [anon_sym_GT_GT] = ACTIONS(5278), + [anon_sym_class] = ACTIONS(5276), + [anon_sym_prefix] = ACTIONS(5276), + [anon_sym_infix] = ACTIONS(5276), + [anon_sym_postfix] = ACTIONS(5276), + [anon_sym_AT] = ACTIONS(5278), + [sym_property_behavior_modifier] = ACTIONS(5276), + [anon_sym_override] = ACTIONS(5276), + [anon_sym_convenience] = ACTIONS(5276), + [anon_sym_required] = ACTIONS(5276), + [anon_sym_public] = ACTIONS(5276), + [anon_sym_private] = ACTIONS(5276), + [anon_sym_internal] = ACTIONS(5276), + [anon_sym_fileprivate] = ACTIONS(5276), + [anon_sym_open] = ACTIONS(5276), + [anon_sym_mutating] = ACTIONS(5276), + [anon_sym_nonmutating] = ACTIONS(5276), + [anon_sym_static] = ACTIONS(5276), + [anon_sym_dynamic] = ACTIONS(5276), + [anon_sym_optional] = ACTIONS(5276), + [anon_sym_final] = ACTIONS(5276), + [anon_sym_inout] = ACTIONS(5276), + [anon_sym_ATescaping] = ACTIONS(5276), + [anon_sym_ATautoclosure] = ACTIONS(5276), + [anon_sym_weak] = ACTIONS(5276), + [anon_sym_unowned] = ACTIONS(5278), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5276), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5276), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5276), + [sym__dot_custom] = ACTIONS(5276), + [sym__three_dot_operator_custom] = ACTIONS(5276), + [sym__open_ended_range_operator_custom] = ACTIONS(5276), + [sym__conjunction_operator_custom] = ACTIONS(5276), + [sym__disjunction_operator_custom] = ACTIONS(5276), + [sym__nil_coalescing_operator_custom] = ACTIONS(5276), + [sym__eq_eq_custom] = ACTIONS(5276), + [sym__plus_then_ws] = ACTIONS(5276), + [sym__minus_then_ws] = ACTIONS(5276), + [sym_bang] = ACTIONS(5276), + [sym_default_keyword] = ACTIONS(5276), + [sym__as_custom] = ACTIONS(5276), + [sym__as_quest_custom] = ACTIONS(5276), + [sym__as_bang_custom] = ACTIONS(5276), + }, + [1478] = { + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5280), + [anon_sym_LPAREN] = ACTIONS(5280), + [anon_sym_LBRACK] = ACTIONS(5280), + [anon_sym_QMARK] = ACTIONS(5282), + [sym__immediate_quest] = ACTIONS(5282), + [anon_sym_AMP] = ACTIONS(5282), + [aux_sym_custom_operator_token1] = ACTIONS(5282), + [anon_sym_LT] = ACTIONS(5282), + [anon_sym_GT] = ACTIONS(5282), + [anon_sym_LBRACE] = ACTIONS(5280), + [anon_sym_RBRACE] = ACTIONS(5280), + [anon_sym_case] = ACTIONS(5280), + [anon_sym_fallthrough] = ACTIONS(5280), + [anon_sym_BANG_EQ] = ACTIONS(5282), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5282), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5282), + [anon_sym_LT_EQ] = ACTIONS(5282), + [anon_sym_GT_EQ] = ACTIONS(5282), + [anon_sym_is] = ACTIONS(5280), + [anon_sym_PLUS] = ACTIONS(5282), + [anon_sym_DASH] = ACTIONS(5282), + [anon_sym_STAR] = ACTIONS(5282), + [anon_sym_SLASH] = ACTIONS(5282), + [anon_sym_PERCENT] = ACTIONS(5282), + [anon_sym_PLUS_PLUS] = ACTIONS(5282), + [anon_sym_DASH_DASH] = ACTIONS(5282), + [anon_sym_PIPE] = ACTIONS(5282), + [anon_sym_CARET] = ACTIONS(5282), + [anon_sym_LT_LT] = ACTIONS(5282), + [anon_sym_GT_GT] = ACTIONS(5282), + [anon_sym_class] = ACTIONS(5280), + [anon_sym_prefix] = ACTIONS(5280), + [anon_sym_infix] = ACTIONS(5280), + [anon_sym_postfix] = ACTIONS(5280), + [anon_sym_AT] = ACTIONS(5282), + [sym_property_behavior_modifier] = ACTIONS(5280), + [anon_sym_override] = ACTIONS(5280), + [anon_sym_convenience] = ACTIONS(5280), + [anon_sym_required] = ACTIONS(5280), + [anon_sym_public] = ACTIONS(5280), + [anon_sym_private] = ACTIONS(5280), + [anon_sym_internal] = ACTIONS(5280), + [anon_sym_fileprivate] = ACTIONS(5280), + [anon_sym_open] = ACTIONS(5280), + [anon_sym_mutating] = ACTIONS(5280), + [anon_sym_nonmutating] = ACTIONS(5280), + [anon_sym_static] = ACTIONS(5280), + [anon_sym_dynamic] = ACTIONS(5280), + [anon_sym_optional] = ACTIONS(5280), + [anon_sym_final] = ACTIONS(5280), + [anon_sym_inout] = ACTIONS(5280), + [anon_sym_ATescaping] = ACTIONS(5280), + [anon_sym_ATautoclosure] = ACTIONS(5280), + [anon_sym_weak] = ACTIONS(5280), + [anon_sym_unowned] = ACTIONS(5282), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(5280), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(5280), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5280), + [sym__dot_custom] = ACTIONS(5280), + [sym__three_dot_operator_custom] = ACTIONS(5280), + [sym__open_ended_range_operator_custom] = ACTIONS(5280), + [sym__conjunction_operator_custom] = ACTIONS(5280), + [sym__disjunction_operator_custom] = ACTIONS(5280), + [sym__nil_coalescing_operator_custom] = ACTIONS(5280), + [sym__eq_eq_custom] = ACTIONS(5280), + [sym__plus_then_ws] = ACTIONS(5280), + [sym__minus_then_ws] = ACTIONS(5280), + [sym_bang] = ACTIONS(5280), + [sym_default_keyword] = ACTIONS(5280), + [sym__as_custom] = ACTIONS(5280), + [sym__as_quest_custom] = ACTIONS(5280), + [sym__as_bang_custom] = ACTIONS(5280), + }, + [1479] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1198), + [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(1287), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4624), + [anon_sym_COMMA] = ACTIONS(4624), + [anon_sym_COLON] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(4624), + [anon_sym_QMARK] = ACTIONS(4626), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1480] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1198), + [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(1287), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4580), + [anon_sym_COMMA] = ACTIONS(4580), + [anon_sym_COLON] = ACTIONS(4580), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(4580), + [anon_sym_QMARK] = ACTIONS(4586), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1481] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(7160), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5596), + [anon_sym_LPAREN] = ACTIONS(5598), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_QMARK] = ACTIONS(5602), + [sym__immediate_quest] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5606), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_RBRACE] = ACTIONS(4658), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5612), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5606), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4658), + [sym__semi] = ACTIONS(4658), + [sym__dot_custom] = ACTIONS(5622), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(5624), + [sym__conjunction_operator_custom] = ACTIONS(5626), + [sym__disjunction_operator_custom] = ACTIONS(5628), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(5632), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1482] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_COLON] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_RBRACK] = ACTIONS(4654), + [anon_sym_QMARK] = ACTIONS(4656), + [sym__immediate_quest] = ACTIONS(4656), + [anon_sym_AMP] = ACTIONS(4656), + [aux_sym_custom_operator_token1] = ACTIONS(4656), + [anon_sym_LT] = ACTIONS(4656), + [anon_sym_GT] = ACTIONS(4656), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4656), + [anon_sym_GT_EQ] = ACTIONS(4656), + [anon_sym_is] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4656), + [anon_sym_DASH_DASH] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4656), + [anon_sym_CARET] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4654), + [sym__three_dot_operator_custom] = ACTIONS(4654), + [sym__open_ended_range_operator_custom] = ACTIONS(4654), + [sym__conjunction_operator_custom] = ACTIONS(4654), + [sym__disjunction_operator_custom] = ACTIONS(4654), + [sym__nil_coalescing_operator_custom] = ACTIONS(4654), + [sym__eq_eq_custom] = ACTIONS(4654), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4654), + [sym__as_custom] = ACTIONS(4654), + [sym__as_quest_custom] = ACTIONS(4654), + [sym__as_bang_custom] = ACTIONS(4654), + }, + [1483] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2697), + [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(3222), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4580), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(4586), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_RBRACE] = ACTIONS(4580), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4580), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1484] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4646), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_COLON] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_RBRACK] = ACTIONS(4646), + [anon_sym_QMARK] = ACTIONS(4648), + [sym__immediate_quest] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4648), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4648), + [anon_sym_is] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4648), + [anon_sym_LT_LT] = ACTIONS(4648), + [anon_sym_GT_GT] = ACTIONS(4648), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4646), + [sym__three_dot_operator_custom] = ACTIONS(4646), + [sym__open_ended_range_operator_custom] = ACTIONS(4646), + [sym__conjunction_operator_custom] = ACTIONS(4646), + [sym__disjunction_operator_custom] = ACTIONS(4646), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(4646), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4646), + [sym__as_custom] = ACTIONS(4646), + [sym__as_quest_custom] = ACTIONS(4646), + [sym__as_bang_custom] = ACTIONS(4646), + }, + [1485] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_array_literal_repeat1] = STATE(7732), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5674), + [anon_sym_COLON] = ACTIONS(5676), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(5678), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1486] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(7124), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5684), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5686), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(4658), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4658), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1487] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_COLON] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(4698), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1488] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(7300), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5596), + [anon_sym_LPAREN] = ACTIONS(5598), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_QMARK] = ACTIONS(5602), + [sym__immediate_quest] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5606), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_RBRACE] = ACTIONS(4714), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5612), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5606), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4714), + [sym__semi] = ACTIONS(4714), + [sym__dot_custom] = ACTIONS(5622), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(5624), + [sym__conjunction_operator_custom] = ACTIONS(5626), + [sym__disjunction_operator_custom] = ACTIONS(5628), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(5632), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1489] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(7066), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5684), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5686), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(4710), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4710), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1490] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(7328), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5596), + [anon_sym_LPAREN] = ACTIONS(5598), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_QMARK] = ACTIONS(5602), + [sym__immediate_quest] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5606), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_RBRACE] = ACTIONS(4710), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5612), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5606), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4710), + [sym__semi] = ACTIONS(4710), + [sym__dot_custom] = ACTIONS(5622), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(5624), + [sym__conjunction_operator_custom] = ACTIONS(5626), + [sym__disjunction_operator_custom] = ACTIONS(5628), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(5632), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1491] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4690), + [anon_sym_RBRACK] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4692), + [sym__immediate_quest] = ACTIONS(4692), + [anon_sym_AMP] = ACTIONS(4692), + [aux_sym_custom_operator_token1] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4692), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_BANG_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4692), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_STAR] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4692), + [anon_sym_PERCENT] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_PIPE] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym_LT_LT] = ACTIONS(4692), + [anon_sym_GT_GT] = ACTIONS(4692), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4690), + [sym__three_dot_operator_custom] = ACTIONS(4690), + [sym__open_ended_range_operator_custom] = ACTIONS(4690), + [sym__conjunction_operator_custom] = ACTIONS(4690), + [sym__disjunction_operator_custom] = ACTIONS(4690), + [sym__nil_coalescing_operator_custom] = ACTIONS(4690), + [sym__eq_eq_custom] = ACTIONS(4690), + [sym__plus_then_ws] = ACTIONS(4690), + [sym__minus_then_ws] = ACTIONS(4690), + [sym_bang] = ACTIONS(4690), + [sym__as_custom] = ACTIONS(4690), + [sym__as_quest_custom] = ACTIONS(4690), + [sym__as_bang_custom] = ACTIONS(4690), + }, + [1492] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2681), + [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(3125), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4580), + [anon_sym_LPAREN] = ACTIONS(5598), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_QMARK] = ACTIONS(4586), + [sym__immediate_quest] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5606), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_RBRACE] = ACTIONS(4580), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5612), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5606), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4580), + [sym__semi] = ACTIONS(4580), + [sym__dot_custom] = ACTIONS(5622), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(5624), + [sym__conjunction_operator_custom] = ACTIONS(5626), + [sym__disjunction_operator_custom] = ACTIONS(5628), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(5632), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1493] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4650), + [anon_sym_COMMA] = ACTIONS(4650), + [anon_sym_COLON] = ACTIONS(4650), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(4650), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1494] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(7298), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5684), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5686), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(4636), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4636), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1495] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_array_literal_repeat1] = STATE(7938), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5690), + [anon_sym_COLON] = ACTIONS(5676), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(5692), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1496] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_COLON] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_RBRACK] = ACTIONS(4674), + [anon_sym_QMARK] = ACTIONS(4676), + [sym__immediate_quest] = ACTIONS(4676), + [anon_sym_AMP] = ACTIONS(4676), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4676), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_is] = ACTIONS(4674), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4676), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4676), + [anon_sym_LT_LT] = ACTIONS(4676), + [anon_sym_GT_GT] = ACTIONS(4676), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4674), + [sym__three_dot_operator_custom] = ACTIONS(4674), + [sym__open_ended_range_operator_custom] = ACTIONS(4674), + [sym__conjunction_operator_custom] = ACTIONS(4674), + [sym__disjunction_operator_custom] = ACTIONS(4674), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(4674), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4674), + [sym__as_custom] = ACTIONS(4674), + [sym__as_quest_custom] = ACTIONS(4674), + [sym__as_bang_custom] = ACTIONS(4674), + }, + [1497] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4670), + [anon_sym_COMMA] = ACTIONS(4670), + [anon_sym_COLON] = ACTIONS(4670), + [anon_sym_LPAREN] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_RBRACK] = ACTIONS(4670), + [anon_sym_QMARK] = ACTIONS(4672), + [sym__immediate_quest] = ACTIONS(4672), + [anon_sym_AMP] = ACTIONS(4672), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4670), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4672), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4672), + [anon_sym_CARET] = ACTIONS(4672), + [anon_sym_LT_LT] = ACTIONS(4672), + [anon_sym_GT_GT] = ACTIONS(4672), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4670), + [sym__three_dot_operator_custom] = ACTIONS(4670), + [sym__open_ended_range_operator_custom] = ACTIONS(4670), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(4670), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4670), + [sym__as_quest_custom] = ACTIONS(4670), + [sym__as_bang_custom] = ACTIONS(4670), + }, + [1498] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_array_literal_repeat1] = STATE(7532), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5694), + [anon_sym_COLON] = ACTIONS(5676), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(5696), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1499] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_COLON] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(4678), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1500] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4694), + [anon_sym_COMMA] = ACTIONS(4694), + [anon_sym_COLON] = ACTIONS(4694), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(4694), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1501] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2681), + [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(3125), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(5598), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_QMARK] = ACTIONS(4626), + [sym__immediate_quest] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5606), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_RBRACE] = ACTIONS(4624), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5612), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5606), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4624), + [sym__semi] = ACTIONS(4624), + [sym__dot_custom] = ACTIONS(5622), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(5624), + [sym__conjunction_operator_custom] = ACTIONS(5626), + [sym__disjunction_operator_custom] = ACTIONS(5628), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(5632), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1502] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(4686), + [anon_sym_COLON] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_RBRACK] = ACTIONS(4686), + [anon_sym_QMARK] = ACTIONS(4688), + [sym__immediate_quest] = ACTIONS(4688), + [anon_sym_AMP] = ACTIONS(4688), + [aux_sym_custom_operator_token1] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4688), + [anon_sym_GT] = ACTIONS(4688), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4688), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_GT_EQ] = ACTIONS(4688), + [anon_sym_is] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4688), + [anon_sym_DASH] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4688), + [anon_sym_DASH_DASH] = ACTIONS(4688), + [anon_sym_PIPE] = ACTIONS(4688), + [anon_sym_CARET] = ACTIONS(4688), + [anon_sym_LT_LT] = ACTIONS(4688), + [anon_sym_GT_GT] = ACTIONS(4688), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4686), + [sym__three_dot_operator_custom] = ACTIONS(4686), + [sym__open_ended_range_operator_custom] = ACTIONS(4686), + [sym__conjunction_operator_custom] = ACTIONS(4686), + [sym__disjunction_operator_custom] = ACTIONS(4686), + [sym__nil_coalescing_operator_custom] = ACTIONS(4686), + [sym__eq_eq_custom] = ACTIONS(4686), + [sym__plus_then_ws] = ACTIONS(4686), + [sym__minus_then_ws] = ACTIONS(4686), + [sym_bang] = ACTIONS(4686), + [sym__as_custom] = ACTIONS(4686), + [sym__as_quest_custom] = ACTIONS(4686), + [sym__as_bang_custom] = ACTIONS(4686), + }, + [1503] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(7275), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5684), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5686), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(4666), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4666), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1504] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(7170), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5684), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5686), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(4702), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4702), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1505] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4628), + [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_COLON] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(4628), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_RBRACK] = ACTIONS(4628), + [anon_sym_QMARK] = ACTIONS(4630), + [sym__immediate_quest] = ACTIONS(4630), + [anon_sym_AMP] = ACTIONS(4630), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(4630), + [anon_sym_GT_EQ] = ACTIONS(4630), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_CARET] = ACTIONS(4630), + [anon_sym_LT_LT] = ACTIONS(4630), + [anon_sym_GT_GT] = ACTIONS(4630), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4628), + [sym__three_dot_operator_custom] = ACTIONS(4628), + [sym__open_ended_range_operator_custom] = ACTIONS(4628), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4628), + [sym__as_quest_custom] = ACTIONS(4628), + [sym__as_bang_custom] = ACTIONS(4628), + }, + [1506] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4662), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_COLON] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_RBRACK] = ACTIONS(4662), + [anon_sym_QMARK] = ACTIONS(4664), + [sym__immediate_quest] = ACTIONS(4664), + [anon_sym_AMP] = ACTIONS(4664), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4664), + [anon_sym_GT] = ACTIONS(4664), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_BANG_EQ] = ACTIONS(4664), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), + [anon_sym_LT_EQ] = ACTIONS(4664), + [anon_sym_GT_EQ] = ACTIONS(4664), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4664), + [anon_sym_CARET] = ACTIONS(4664), + [anon_sym_LT_LT] = ACTIONS(4664), + [anon_sym_GT_GT] = ACTIONS(4664), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4662), + [sym__three_dot_operator_custom] = ACTIONS(4662), + [sym__open_ended_range_operator_custom] = ACTIONS(4662), + [sym__conjunction_operator_custom] = ACTIONS(4662), + [sym__disjunction_operator_custom] = ACTIONS(4662), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(4662), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4662), + [sym__as_quest_custom] = ACTIONS(4662), + [sym__as_bang_custom] = ACTIONS(4662), + }, + [1507] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2727), + [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(3256), + [sym_lambda_literal] = STATE(2350), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4580), + [anon_sym_COLON] = ACTIONS(4580), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(4586), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(4580), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1508] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4706), + [anon_sym_COMMA] = ACTIONS(4706), + [anon_sym_COLON] = ACTIONS(4706), + [anon_sym_LPAREN] = ACTIONS(4706), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_RBRACK] = ACTIONS(4706), + [anon_sym_QMARK] = ACTIONS(4708), + [sym__immediate_quest] = ACTIONS(4708), + [anon_sym_AMP] = ACTIONS(4708), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4708), + [anon_sym_GT] = ACTIONS(4708), + [anon_sym_LBRACE] = ACTIONS(4706), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(4708), + [anon_sym_CARET] = ACTIONS(4708), + [anon_sym_LT_LT] = ACTIONS(4708), + [anon_sym_GT_GT] = ACTIONS(4708), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4706), + [sym__three_dot_operator_custom] = ACTIONS(4706), + [sym__open_ended_range_operator_custom] = ACTIONS(4706), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4706), + [sym__as_quest_custom] = ACTIONS(4706), + [sym__as_bang_custom] = ACTIONS(4706), + }, + [1509] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(4642), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4642), + [anon_sym_RBRACK] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4644), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1510] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2727), + [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(3256), + [sym_lambda_literal] = STATE(2350), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4624), + [anon_sym_COLON] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(4626), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(4624), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1511] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2697), + [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(3222), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(4626), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_RBRACE] = ACTIONS(4624), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4624), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1512] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(7210), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5596), + [anon_sym_LPAREN] = ACTIONS(5598), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_QMARK] = ACTIONS(5602), + [sym__immediate_quest] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5606), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_RBRACE] = ACTIONS(4702), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5612), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5606), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4702), + [sym__semi] = ACTIONS(4702), + [sym__dot_custom] = ACTIONS(5622), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(5624), + [sym__conjunction_operator_custom] = ACTIONS(5626), + [sym__disjunction_operator_custom] = ACTIONS(5628), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(5632), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1513] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_array_literal_repeat1] = STATE(7664), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5734), + [anon_sym_COLON] = ACTIONS(5676), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(5736), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1514] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_array_literal_repeat1] = STATE(8030), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5738), + [anon_sym_COLON] = ACTIONS(5676), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(5740), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1515] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(7084), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5684), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5686), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(4714), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4714), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1516] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(7127), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5596), + [anon_sym_LPAREN] = ACTIONS(5598), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_QMARK] = ACTIONS(5602), + [sym__immediate_quest] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5606), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_RBRACE] = ACTIONS(4666), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5612), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5606), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4666), + [sym__semi] = ACTIONS(4666), + [sym__dot_custom] = ACTIONS(5622), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(5624), + [sym__conjunction_operator_custom] = ACTIONS(5626), + [sym__disjunction_operator_custom] = ACTIONS(5628), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(5632), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1517] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__modifierless_property_declaration_repeat1] = STATE(7211), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5596), + [anon_sym_LPAREN] = ACTIONS(5598), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_QMARK] = ACTIONS(5602), + [sym__immediate_quest] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5606), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_RBRACE] = ACTIONS(4636), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5612), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5606), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4636), + [sym__semi] = ACTIONS(4636), + [sym__dot_custom] = ACTIONS(5622), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(5624), + [sym__conjunction_operator_custom] = ACTIONS(5626), + [sym__disjunction_operator_custom] = ACTIONS(5628), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(5632), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1518] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_array_literal_repeat1] = STATE(7518), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5742), + [anon_sym_COLON] = ACTIONS(5676), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(5744), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1519] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9233), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9231), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1520] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8432), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4005), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1521] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8960), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8959), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1522] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8962), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8961), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1523] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8917), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8916), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1524] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8967), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8966), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1525] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8920), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8919), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1526] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9785), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9786), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1527] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9753), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9759), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1528] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8899), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8897), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1529] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8974), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8972), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1530] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8976), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8975), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1531] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8981), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8980), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1532] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9795), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9796), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1533] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9798), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9801), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1534] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8925), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8924), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1535] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8986), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8985), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1536] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8927), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8926), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1537] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9822), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9827), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1538] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9826), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9823), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1539] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8932), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8931), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1540] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8904), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8902), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1541] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9701), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9714), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1542] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8939), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8937), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1543] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8941), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8940), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1544] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8992), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8991), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1545] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8995), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8994), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1546] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9722), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9741), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1547] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8891), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8890), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1548] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9000), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8999), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1549] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9002), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9001), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1550] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8910), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8909), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1551] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9820), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9817), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1552] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9816), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9815), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1553] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8945), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8944), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1554] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9007), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9006), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1555] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9010), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9009), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1556] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9015), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9014), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1557] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8947), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8946), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1558] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8912), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8911), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1559] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9021), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9020), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1560] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9024), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9022), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1561] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8952), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8951), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1562] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_tuple_expression_repeat1] = STATE(7858), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5754), + [anon_sym_COMMA] = ACTIONS(5756), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1563] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8884), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8882), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1564] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9027), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9026), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1565] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9030), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9029), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1566] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8877), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8876), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1567] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8870), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8869), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1568] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9035), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8936), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1569] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9037), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9036), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1570] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8867), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8865), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1571] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9042), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9041), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1572] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9045), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9044), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1573] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9685), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9686), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1574] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8861), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8859), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1575] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9460), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9459), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1576] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9051), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9050), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1577] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8857), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8856), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1578] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9671), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9673), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1579] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9055), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9054), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1580] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9057), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9056), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1581] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9660), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9670), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1582] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9449), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9448), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1583] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8850), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8849), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1584] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8845), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8843), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1585] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8838), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8836), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1586] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9064), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9062), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1587] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9066), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9065), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1588] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8835), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8834), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1589] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8268), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3671), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1590] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8826), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8825), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1591] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8818), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8816), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1592] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9071), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9070), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1593] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9640), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9642), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1594] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8811), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8809), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1595] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9076), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9075), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1596] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8808), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8807), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1597] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9619), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9620), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1598] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5686), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(4722), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4722), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1599] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9612), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9618), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1600] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_tuple_expression_repeat1] = STATE(7944), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(5756), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1601] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_tuple_expression_repeat1] = STATE(8125), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5760), + [anon_sym_COMMA] = ACTIONS(5756), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1602] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8269), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3672), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1603] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8799), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8798), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1604] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8270), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3675), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1605] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9082), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9081), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1606] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9085), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9084), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1607] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9463), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9462), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1608] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9090), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9089), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1609] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_switch_entry_repeat1] = STATE(7619), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5762), + [anon_sym_COLON] = ACTIONS(5764), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1610] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9092), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9091), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1611] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9465), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9464), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1612] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8791), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8790), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1613] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_attribute_repeat3] = STATE(7911), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5766), + [anon_sym_COMMA] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1614] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8271), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3678), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1615] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8272), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3683), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1616] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8274), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3684), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1617] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9097), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9096), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1618] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8275), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3687), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1619] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9468), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9467), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1620] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9470), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9469), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1621] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8277), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3688), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1622] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_attribute_repeat3] = STATE(7641), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5770), + [anon_sym_COMMA] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1623] = { + [sym__quest] = STATE(305), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_tuple_expression_repeat1] = STATE(7540), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(5772), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5774), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1624] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8278), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3691), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1625] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4726), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5686), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(4726), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4726), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1626] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9104), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9102), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1627] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9106), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9105), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1628] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8279), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3693), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1629] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9111), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9110), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1630] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9114), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9112), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1631] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8280), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3696), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1632] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_tuple_expression_repeat1] = STATE(8023), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5776), + [anon_sym_COMMA] = ACTIONS(5756), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1633] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_attribute_repeat3] = STATE(7838), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5778), + [anon_sym_COMMA] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1634] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8281), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3699), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1635] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8283), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3700), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1636] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9608), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9504), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1637] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9486), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9487), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1638] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9477), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9480), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1639] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9119), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9118), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1640] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9122), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9121), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1641] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8452), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4066), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1642] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9473), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9474), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1643] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9457), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9458), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1644] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_attribute_repeat3] = STATE(7856), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5780), + [anon_sym_COMMA] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1645] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9418), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9437), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1646] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9414), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9415), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1647] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4726), + [anon_sym_LPAREN] = ACTIONS(5598), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_QMARK] = ACTIONS(5602), + [sym__immediate_quest] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5606), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_RBRACE] = ACTIONS(4726), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5612), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5606), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4726), + [sym__semi] = ACTIONS(4726), + [sym__dot_custom] = ACTIONS(5622), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(5624), + [sym__conjunction_operator_custom] = ACTIONS(5626), + [sym__disjunction_operator_custom] = ACTIONS(5628), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(5632), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1648] = { + [sym__quest] = STATE(275), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_tuple_expression_repeat1] = STATE(7858), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5782), + [anon_sym_COMMA] = ACTIONS(5782), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5784), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1649] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9127), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9126), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1650] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9406), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9412), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1651] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9394), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9395), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1652] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9373), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9376), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1653] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9352), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9355), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1654] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(5598), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_QMARK] = ACTIONS(5602), + [sym__immediate_quest] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5606), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_RBRACE] = ACTIONS(4722), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5612), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5606), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4722), + [sym__semi] = ACTIONS(4722), + [sym__dot_custom] = ACTIONS(5622), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(5624), + [sym__conjunction_operator_custom] = ACTIONS(5626), + [sym__disjunction_operator_custom] = ACTIONS(5628), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(5632), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1655] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_attribute_repeat3] = STATE(8146), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5786), + [anon_sym_COMMA] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1656] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9311), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9328), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1657] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(5598), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_QMARK] = ACTIONS(5602), + [sym__immediate_quest] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5606), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_RBRACE] = ACTIONS(4718), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5612), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5606), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4718), + [sym__semi] = ACTIONS(4718), + [sym__dot_custom] = ACTIONS(5622), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(5624), + [sym__conjunction_operator_custom] = ACTIONS(5626), + [sym__disjunction_operator_custom] = ACTIONS(5628), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(5632), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1658] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9133), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9132), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1659] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9135), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9134), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1660] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9304), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9310), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1661] = { + [sym__quest] = STATE(275), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_tuple_expression_repeat1] = STATE(7540), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5782), + [anon_sym_COMMA] = ACTIONS(5782), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5784), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1662] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8284), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3702), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1663] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_switch_entry_repeat1] = STATE(7477), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5762), + [anon_sym_COLON] = ACTIONS(5788), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1664] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9788), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9787), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1665] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9452), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9451), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1666] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8285), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3703), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1667] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4809), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5686), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(4809), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4809), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1668] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9138), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9137), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1669] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9140), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9139), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1670] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9476), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9475), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1671] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9454), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9453), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1672] = { + [sym__quest] = STATE(275), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_tuple_expression_repeat1] = STATE(7944), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5782), + [anon_sym_COMMA] = ACTIONS(5782), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5784), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1673] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8286), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3707), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1674] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8287), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3712), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1675] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9782), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9781), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1676] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8288), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3714), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1677] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9479), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9478), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1678] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__playground_literal_repeat1] = STATE(7834), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5790), + [anon_sym_COMMA] = ACTIONS(5792), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1679] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8289), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3717), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1680] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8290), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3721), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1681] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8291), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3722), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1682] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9775), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9774), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1683] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9773), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9771), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1684] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9482), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9481), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1685] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9144), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9143), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1686] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9146), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9145), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1687] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9484), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9483), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1688] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8293), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3725), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1689] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8294), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3609), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1690] = { + [sym__quest] = STATE(937), + [sym__range_operator] = STATE(980), + [sym_custom_operator] = STATE(981), + [sym_navigation_suffix] = STATE(2776), + [sym_call_suffix] = STATE(2777), + [sym_value_arguments] = STATE(2741), + [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(3309), + [sym_lambda_literal] = STATE(2435), + [sym__equality_operator] = STATE(984), + [sym__comparison_operator] = STATE(985), + [sym__is_operator] = STATE(4426), + [sym__additive_operator] = STATE(986), + [sym__multiplicative_operator] = STATE(987), + [sym_as_operator] = STATE(4425), + [sym__bitwise_binary_operator] = STATE(988), + [sym__postfix_unary_operator] = STATE(3331), + [sym__eq_eq] = STATE(984), + [sym__dot] = STATE(6294), + [sym__three_dot_operator] = STATE(1385), + [sym__open_ended_range_operator] = STATE(980), + [sym__conjunction_operator] = STATE(320), + [sym__disjunction_operator] = STATE(992), + [sym__nil_coalescing_operator] = STATE(347), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4624), + [anon_sym_LPAREN] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(5796), + [anon_sym_QMARK] = ACTIONS(4626), + [sym__immediate_quest] = ACTIONS(5798), + [anon_sym_AMP] = ACTIONS(5800), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5802), + [anon_sym_GT] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(4624), + [anon_sym_BANG_EQ] = ACTIONS(5804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5804), + [anon_sym_LT_EQ] = ACTIONS(5802), + [anon_sym_GT_EQ] = ACTIONS(5802), + [anon_sym_is] = ACTIONS(5806), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5810), + [anon_sym_PERCENT] = ACTIONS(5810), + [anon_sym_PLUS_PLUS] = ACTIONS(5812), + [anon_sym_DASH_DASH] = ACTIONS(5812), + [anon_sym_PIPE] = ACTIONS(5800), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_LT_LT] = ACTIONS(5800), + [anon_sym_GT_GT] = ACTIONS(5800), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5814), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(5816), + [sym__conjunction_operator_custom] = ACTIONS(5818), + [sym__disjunction_operator_custom] = ACTIONS(5820), + [sym__nil_coalescing_operator_custom] = ACTIONS(5822), + [sym__eq_eq_custom] = ACTIONS(5824), + [sym__plus_then_ws] = ACTIONS(5826), + [sym__minus_then_ws] = ACTIONS(5826), + [sym_bang] = ACTIONS(5828), + [sym_else] = ACTIONS(4624), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1691] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8295), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3731), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1692] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8296), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3732), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1693] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8298), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3735), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1694] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9150), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9149), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1695] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9152), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9151), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1696] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5830), + [anon_sym_COMMA] = ACTIONS(5830), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(5830), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1697] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9766), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9765), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1698] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5832), + [anon_sym_COMMA] = ACTIONS(5832), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(5832), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1699] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8300), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3736), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1700] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8301), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3739), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1701] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4813), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5686), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(4813), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4813), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1702] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9489), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9488), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1703] = { + [sym__quest] = STATE(937), + [sym__range_operator] = STATE(980), + [sym_custom_operator] = STATE(981), + [sym_navigation_suffix] = STATE(2776), + [sym_call_suffix] = STATE(2777), + [sym_value_arguments] = STATE(2741), + [sym_expr_hack_at_ternary_binary_call_suffix] = STATE(3309), + [sym_lambda_literal] = STATE(2435), + [sym__equality_operator] = STATE(984), + [sym__comparison_operator] = STATE(985), + [sym__is_operator] = STATE(4426), + [sym__additive_operator] = STATE(986), + [sym__multiplicative_operator] = STATE(987), + [sym_as_operator] = STATE(4425), + [sym__bitwise_binary_operator] = STATE(988), + [sym__postfix_unary_operator] = STATE(3331), + [sym__eq_eq] = STATE(984), + [sym__dot] = STATE(6294), + [sym__three_dot_operator] = STATE(1385), + [sym__open_ended_range_operator] = STATE(980), + [sym__conjunction_operator] = STATE(320), + [sym__disjunction_operator] = STATE(992), + [sym__nil_coalescing_operator] = STATE(347), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4580), + [anon_sym_LPAREN] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(5796), + [anon_sym_QMARK] = ACTIONS(4586), + [sym__immediate_quest] = ACTIONS(5798), + [anon_sym_AMP] = ACTIONS(5800), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5802), + [anon_sym_GT] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(4580), + [anon_sym_BANG_EQ] = ACTIONS(5804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5804), + [anon_sym_LT_EQ] = ACTIONS(5802), + [anon_sym_GT_EQ] = ACTIONS(5802), + [anon_sym_is] = ACTIONS(5806), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5810), + [anon_sym_PERCENT] = ACTIONS(5810), + [anon_sym_PLUS_PLUS] = ACTIONS(5812), + [anon_sym_DASH_DASH] = ACTIONS(5812), + [anon_sym_PIPE] = ACTIONS(5800), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_LT_LT] = ACTIONS(5800), + [anon_sym_GT_GT] = ACTIONS(5800), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5814), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(5816), + [sym__conjunction_operator_custom] = ACTIONS(5818), + [sym__disjunction_operator_custom] = ACTIONS(5820), + [sym__nil_coalescing_operator_custom] = ACTIONS(5822), + [sym__eq_eq_custom] = ACTIONS(5824), + [sym__plus_then_ws] = ACTIONS(5826), + [sym__minus_then_ws] = ACTIONS(5826), + [sym_bang] = ACTIONS(5828), + [sym_else] = ACTIONS(4580), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1704] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_attribute_repeat3] = STATE(7967), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5834), + [anon_sym_COMMA] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1705] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9157), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9156), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1706] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9491), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9490), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1707] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_COLON] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(4698), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1708] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9760), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9757), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1709] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9756), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9755), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1710] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8302), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3740), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1711] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9447), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9446), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1712] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8305), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3743), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1713] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9160), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9159), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1714] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9162), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9052), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1715] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8306), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3746), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1716] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_COLON] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(4678), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1717] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4694), + [anon_sym_COLON] = ACTIONS(4694), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(4694), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1718] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_COLON] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_QMARK] = ACTIONS(4648), + [sym__immediate_quest] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4648), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4648), + [anon_sym_is] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4648), + [anon_sym_LT_LT] = ACTIONS(4648), + [anon_sym_GT_GT] = ACTIONS(4648), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4646), + [sym__three_dot_operator_custom] = ACTIONS(4646), + [sym__open_ended_range_operator_custom] = ACTIONS(4646), + [sym__conjunction_operator_custom] = ACTIONS(4646), + [sym__disjunction_operator_custom] = ACTIONS(4646), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(4646), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(4646), + [sym_where_keyword] = ACTIONS(4646), + [sym__as_custom] = ACTIONS(4646), + [sym__as_quest_custom] = ACTIONS(4646), + [sym__as_bang_custom] = ACTIONS(4646), + }, + [1719] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_COLON] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4644), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(4642), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1720] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_COLON] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_QMARK] = ACTIONS(4656), + [sym__immediate_quest] = ACTIONS(4656), + [anon_sym_AMP] = ACTIONS(4656), + [aux_sym_custom_operator_token1] = ACTIONS(4656), + [anon_sym_LT] = ACTIONS(4656), + [anon_sym_GT] = ACTIONS(4656), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4656), + [anon_sym_GT_EQ] = ACTIONS(4656), + [anon_sym_is] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(4656), + [anon_sym_DASH_DASH] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4656), + [anon_sym_CARET] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4654), + [sym__three_dot_operator_custom] = ACTIONS(4654), + [sym__open_ended_range_operator_custom] = ACTIONS(4654), + [sym__conjunction_operator_custom] = ACTIONS(4654), + [sym__disjunction_operator_custom] = ACTIONS(4654), + [sym__nil_coalescing_operator_custom] = ACTIONS(4654), + [sym__eq_eq_custom] = ACTIONS(4654), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(4654), + [sym_where_keyword] = ACTIONS(4654), + [sym__as_custom] = ACTIONS(4654), + [sym__as_quest_custom] = ACTIONS(4654), + [sym__as_bang_custom] = ACTIONS(4654), + }, + [1721] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9166), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9165), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1722] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9168), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9167), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1723] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8308), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3747), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1724] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_COLON] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_QMARK] = ACTIONS(4664), + [sym__immediate_quest] = ACTIONS(4664), + [anon_sym_AMP] = ACTIONS(4664), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4664), + [anon_sym_GT] = ACTIONS(4664), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_BANG_EQ] = ACTIONS(4664), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), + [anon_sym_LT_EQ] = ACTIONS(4664), + [anon_sym_GT_EQ] = ACTIONS(4664), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(4664), + [anon_sym_CARET] = ACTIONS(4664), + [anon_sym_LT_LT] = ACTIONS(4664), + [anon_sym_GT_GT] = ACTIONS(4664), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4662), + [sym__three_dot_operator_custom] = ACTIONS(4662), + [sym__open_ended_range_operator_custom] = ACTIONS(4662), + [sym__conjunction_operator_custom] = ACTIONS(4662), + [sym__disjunction_operator_custom] = ACTIONS(4662), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(4662), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(4662), + [sym__as_custom] = ACTIONS(4662), + [sym__as_quest_custom] = ACTIONS(4662), + [sym__as_bang_custom] = ACTIONS(4662), + }, + [1725] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_COLON] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(4628), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_QMARK] = ACTIONS(4630), + [sym__immediate_quest] = ACTIONS(4630), + [anon_sym_AMP] = ACTIONS(4630), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(4630), + [anon_sym_GT_EQ] = ACTIONS(4630), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_CARET] = ACTIONS(4630), + [anon_sym_LT_LT] = ACTIONS(4630), + [anon_sym_GT_GT] = ACTIONS(4630), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4628), + [sym__three_dot_operator_custom] = ACTIONS(4628), + [sym__open_ended_range_operator_custom] = ACTIONS(4628), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(4628), + [sym__as_custom] = ACTIONS(4628), + [sym__as_quest_custom] = ACTIONS(4628), + [sym__as_bang_custom] = ACTIONS(4628), + }, + [1726] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4686), + [anon_sym_COLON] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_QMARK] = ACTIONS(4688), + [sym__immediate_quest] = ACTIONS(4688), + [anon_sym_AMP] = ACTIONS(4688), + [aux_sym_custom_operator_token1] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4688), + [anon_sym_GT] = ACTIONS(4688), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4688), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_GT_EQ] = ACTIONS(4688), + [anon_sym_is] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4688), + [anon_sym_DASH] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(4688), + [anon_sym_DASH_DASH] = ACTIONS(4688), + [anon_sym_PIPE] = ACTIONS(4688), + [anon_sym_CARET] = ACTIONS(4688), + [anon_sym_LT_LT] = ACTIONS(4688), + [anon_sym_GT_GT] = ACTIONS(4688), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4686), + [sym__three_dot_operator_custom] = ACTIONS(4686), + [sym__open_ended_range_operator_custom] = ACTIONS(4686), + [sym__conjunction_operator_custom] = ACTIONS(4686), + [sym__disjunction_operator_custom] = ACTIONS(4686), + [sym__nil_coalescing_operator_custom] = ACTIONS(4686), + [sym__eq_eq_custom] = ACTIONS(4686), + [sym__plus_then_ws] = ACTIONS(4686), + [sym__minus_then_ws] = ACTIONS(4686), + [sym_bang] = ACTIONS(4686), + [sym_where_keyword] = ACTIONS(4686), + [sym__as_custom] = ACTIONS(4686), + [sym__as_quest_custom] = ACTIONS(4686), + [sym__as_bang_custom] = ACTIONS(4686), + }, + [1727] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_COLON] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4692), + [sym__immediate_quest] = ACTIONS(4692), + [anon_sym_AMP] = ACTIONS(4692), + [aux_sym_custom_operator_token1] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4692), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_BANG_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4692), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_STAR] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4692), + [anon_sym_PERCENT] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_PIPE] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym_LT_LT] = ACTIONS(4692), + [anon_sym_GT_GT] = ACTIONS(4692), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4690), + [sym__three_dot_operator_custom] = ACTIONS(4690), + [sym__open_ended_range_operator_custom] = ACTIONS(4690), + [sym__conjunction_operator_custom] = ACTIONS(4690), + [sym__disjunction_operator_custom] = ACTIONS(4690), + [sym__nil_coalescing_operator_custom] = ACTIONS(4690), + [sym__eq_eq_custom] = ACTIONS(4690), + [sym__plus_then_ws] = ACTIONS(4690), + [sym__minus_then_ws] = ACTIONS(4690), + [sym_bang] = ACTIONS(4690), + [sym_where_keyword] = ACTIONS(4690), + [sym__as_custom] = ACTIONS(4690), + [sym__as_quest_custom] = ACTIONS(4690), + [sym__as_bang_custom] = ACTIONS(4690), + }, + [1728] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9171), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9170), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1729] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9173), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9172), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1730] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9747), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9746), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1731] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4706), + [anon_sym_COLON] = ACTIONS(4706), + [anon_sym_LPAREN] = ACTIONS(4706), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_QMARK] = ACTIONS(4708), + [sym__immediate_quest] = ACTIONS(4708), + [anon_sym_AMP] = ACTIONS(4708), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4708), + [anon_sym_GT] = ACTIONS(4708), + [anon_sym_LBRACE] = ACTIONS(4706), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(4708), + [anon_sym_CARET] = ACTIONS(4708), + [anon_sym_LT_LT] = ACTIONS(4708), + [anon_sym_GT_GT] = ACTIONS(4708), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4706), + [sym__three_dot_operator_custom] = ACTIONS(4706), + [sym__open_ended_range_operator_custom] = ACTIONS(4706), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(4706), + [sym__as_custom] = ACTIONS(4706), + [sym__as_quest_custom] = ACTIONS(4706), + [sym__as_bang_custom] = ACTIONS(4706), + }, + [1732] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4670), + [anon_sym_COLON] = ACTIONS(4670), + [anon_sym_LPAREN] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_QMARK] = ACTIONS(4672), + [sym__immediate_quest] = ACTIONS(4672), + [anon_sym_AMP] = ACTIONS(4672), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4670), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4672), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(4672), + [anon_sym_CARET] = ACTIONS(4672), + [anon_sym_LT_LT] = ACTIONS(4672), + [anon_sym_GT_GT] = ACTIONS(4672), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4670), + [sym__three_dot_operator_custom] = ACTIONS(4670), + [sym__open_ended_range_operator_custom] = ACTIONS(4670), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(4670), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(4670), + [sym__as_custom] = ACTIONS(4670), + [sym__as_quest_custom] = ACTIONS(4670), + [sym__as_bang_custom] = ACTIONS(4670), + }, + [1733] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_COLON] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_QMARK] = ACTIONS(4676), + [sym__immediate_quest] = ACTIONS(4676), + [anon_sym_AMP] = ACTIONS(4676), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4676), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_is] = ACTIONS(4674), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4676), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4676), + [anon_sym_LT_LT] = ACTIONS(4676), + [anon_sym_GT_GT] = ACTIONS(4676), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4674), + [sym__three_dot_operator_custom] = ACTIONS(4674), + [sym__open_ended_range_operator_custom] = ACTIONS(4674), + [sym__conjunction_operator_custom] = ACTIONS(4674), + [sym__disjunction_operator_custom] = ACTIONS(4674), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(4674), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(4674), + [sym_where_keyword] = ACTIONS(4674), + [sym__as_custom] = ACTIONS(4674), + [sym__as_quest_custom] = ACTIONS(4674), + [sym__as_bang_custom] = ACTIONS(4674), + }, + [1734] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4650), + [anon_sym_COLON] = ACTIONS(4650), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(4650), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1735] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_attribute_repeat3] = STATE(7792), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5838), + [anon_sym_COMMA] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1736] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9495), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9494), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1737] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_attribute_repeat3] = STATE(7809), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5840), + [anon_sym_COMMA] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1738] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8310), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3749), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1739] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8311), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3750), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1740] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8313), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3753), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1741] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8315), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3754), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1742] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9443), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9442), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1743] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9744), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9742), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1744] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9739), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9738), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1745] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8186), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9441), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1746] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8316), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3757), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1747] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9179), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9178), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1748] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9181), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9180), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1749] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8317), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3758), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1750] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9049), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9063), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1751] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9733), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9732), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1752] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9034), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9048), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1753] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9078), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9019), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1754] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9186), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9185), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1755] = { + [sym__quest] = STATE(275), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_tuple_expression_repeat1] = STATE(7414), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5782), + [anon_sym_COMMA] = ACTIONS(5782), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5784), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1756] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9003), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9018), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1757] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9729), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9728), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1758] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9727), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9726), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1759] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8958), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8973), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1760] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8928), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8943), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1761] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8905), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8913), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1762] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8318), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3761), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1763] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9439), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9438), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1764] = { + [sym__quest] = STATE(276), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5782), + [anon_sym_COLON] = ACTIONS(5782), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5842), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5836), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5782), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1765] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(5598), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_QMARK] = ACTIONS(5602), + [sym__immediate_quest] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5606), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_RBRACE] = ACTIONS(4698), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5612), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5606), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4698), + [sym__semi] = ACTIONS(4698), + [sym__dot_custom] = ACTIONS(5622), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(5624), + [sym__conjunction_operator_custom] = ACTIONS(5626), + [sym__disjunction_operator_custom] = ACTIONS(5628), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(5632), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1766] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8319), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3762), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1767] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8320), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3763), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1768] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__playground_literal_repeat1] = STATE(8083), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5844), + [anon_sym_COMMA] = ACTIONS(5792), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1769] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(5598), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_QMARK] = ACTIONS(5602), + [sym__immediate_quest] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5606), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_RBRACE] = ACTIONS(4678), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5612), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5606), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4678), + [sym__semi] = ACTIONS(4678), + [sym__dot_custom] = ACTIONS(5622), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(5624), + [sym__conjunction_operator_custom] = ACTIONS(5626), + [sym__disjunction_operator_custom] = ACTIONS(5628), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(5632), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1770] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4694), + [anon_sym_LPAREN] = ACTIONS(5598), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_QMARK] = ACTIONS(5602), + [sym__immediate_quest] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5606), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_RBRACE] = ACTIONS(4694), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5612), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5606), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4694), + [sym__semi] = ACTIONS(4694), + [sym__dot_custom] = ACTIONS(5622), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(5624), + [sym__conjunction_operator_custom] = ACTIONS(5626), + [sym__disjunction_operator_custom] = ACTIONS(5628), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(5632), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1771] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_QMARK] = ACTIONS(4648), + [sym__immediate_quest] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4648), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4648), + [anon_sym_is] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4648), + [anon_sym_LT_LT] = ACTIONS(4648), + [anon_sym_GT_GT] = ACTIONS(4648), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4646), + [sym__semi] = ACTIONS(4646), + [sym__dot_custom] = ACTIONS(4646), + [sym__three_dot_operator_custom] = ACTIONS(4646), + [sym__open_ended_range_operator_custom] = ACTIONS(4646), + [sym__conjunction_operator_custom] = ACTIONS(4646), + [sym__disjunction_operator_custom] = ACTIONS(4646), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(4646), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(4646), + [sym__as_custom] = ACTIONS(4646), + [sym__as_quest_custom] = ACTIONS(4646), + [sym__as_bang_custom] = ACTIONS(4646), + }, + [1772] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9718), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9717), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1773] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8322), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3767), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1774] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9193), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9192), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1775] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9196), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9194), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1776] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8323), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3768), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1777] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4644), + [sym__immediate_quest] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5606), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_RBRACE] = ACTIONS(4642), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5612), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5606), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4642), + [sym__semi] = ACTIONS(4642), + [sym__dot_custom] = ACTIONS(5622), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(5624), + [sym__conjunction_operator_custom] = ACTIONS(5626), + [sym__disjunction_operator_custom] = ACTIONS(5628), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(5632), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1778] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_QMARK] = ACTIONS(4656), + [sym__immediate_quest] = ACTIONS(4656), + [anon_sym_AMP] = ACTIONS(4656), + [aux_sym_custom_operator_token1] = ACTIONS(4656), + [anon_sym_LT] = ACTIONS(4656), + [anon_sym_GT] = ACTIONS(4656), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4656), + [anon_sym_GT_EQ] = ACTIONS(4656), + [anon_sym_is] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(4656), + [anon_sym_DASH_DASH] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4656), + [anon_sym_CARET] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4654), + [sym__semi] = ACTIONS(4654), + [sym__dot_custom] = ACTIONS(4654), + [sym__three_dot_operator_custom] = ACTIONS(4654), + [sym__open_ended_range_operator_custom] = ACTIONS(4654), + [sym__conjunction_operator_custom] = ACTIONS(4654), + [sym__disjunction_operator_custom] = ACTIONS(4654), + [sym__nil_coalescing_operator_custom] = ACTIONS(4654), + [sym__eq_eq_custom] = ACTIONS(4654), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(4654), + [sym__as_custom] = ACTIONS(4654), + [sym__as_quest_custom] = ACTIONS(4654), + [sym__as_bang_custom] = ACTIONS(4654), + }, + [1779] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8324), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3771), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1780] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_QMARK] = ACTIONS(4664), + [sym__immediate_quest] = ACTIONS(4664), + [anon_sym_AMP] = ACTIONS(4664), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4664), + [anon_sym_GT] = ACTIONS(4664), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_BANG_EQ] = ACTIONS(4664), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), + [anon_sym_LT_EQ] = ACTIONS(4664), + [anon_sym_GT_EQ] = ACTIONS(4664), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(4664), + [anon_sym_CARET] = ACTIONS(4664), + [anon_sym_LT_LT] = ACTIONS(4664), + [anon_sym_GT_GT] = ACTIONS(4664), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4662), + [sym__semi] = ACTIONS(4662), + [sym__dot_custom] = ACTIONS(4662), + [sym__three_dot_operator_custom] = ACTIONS(4662), + [sym__open_ended_range_operator_custom] = ACTIONS(4662), + [sym__conjunction_operator_custom] = ACTIONS(4662), + [sym__disjunction_operator_custom] = ACTIONS(4662), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(4662), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4662), + [sym__as_quest_custom] = ACTIONS(4662), + [sym__as_bang_custom] = ACTIONS(4662), + }, + [1781] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9201), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9199), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1782] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9205), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9204), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1783] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(4628), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_QMARK] = ACTIONS(4630), + [sym__immediate_quest] = ACTIONS(4630), + [anon_sym_AMP] = ACTIONS(4630), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_RBRACE] = ACTIONS(4628), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5612), + [anon_sym_LT_EQ] = ACTIONS(4630), + [anon_sym_GT_EQ] = ACTIONS(4630), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_CARET] = ACTIONS(4630), + [anon_sym_LT_LT] = ACTIONS(4630), + [anon_sym_GT_GT] = ACTIONS(4630), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4628), + [sym__semi] = ACTIONS(4628), + [sym__dot_custom] = ACTIONS(4628), + [sym__three_dot_operator_custom] = ACTIONS(4628), + [sym__open_ended_range_operator_custom] = ACTIONS(4628), + [sym__conjunction_operator_custom] = ACTIONS(5626), + [sym__disjunction_operator_custom] = ACTIONS(5628), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(5632), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4628), + [sym__as_quest_custom] = ACTIONS(4628), + [sym__as_bang_custom] = ACTIONS(4628), + }, + [1784] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_QMARK] = ACTIONS(4688), + [sym__immediate_quest] = ACTIONS(4688), + [anon_sym_AMP] = ACTIONS(4688), + [aux_sym_custom_operator_token1] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4688), + [anon_sym_GT] = ACTIONS(4688), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4688), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_GT_EQ] = ACTIONS(4688), + [anon_sym_is] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4688), + [anon_sym_DASH] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(4688), + [anon_sym_DASH_DASH] = ACTIONS(4688), + [anon_sym_PIPE] = ACTIONS(4688), + [anon_sym_CARET] = ACTIONS(4688), + [anon_sym_LT_LT] = ACTIONS(4688), + [anon_sym_GT_GT] = ACTIONS(4688), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4686), + [sym__semi] = ACTIONS(4686), + [sym__dot_custom] = ACTIONS(4686), + [sym__three_dot_operator_custom] = ACTIONS(4686), + [sym__open_ended_range_operator_custom] = ACTIONS(4686), + [sym__conjunction_operator_custom] = ACTIONS(4686), + [sym__disjunction_operator_custom] = ACTIONS(4686), + [sym__nil_coalescing_operator_custom] = ACTIONS(4686), + [sym__eq_eq_custom] = ACTIONS(4686), + [sym__plus_then_ws] = ACTIONS(4686), + [sym__minus_then_ws] = ACTIONS(4686), + [sym_bang] = ACTIONS(4686), + [sym__as_custom] = ACTIONS(4686), + [sym__as_quest_custom] = ACTIONS(4686), + [sym__as_bang_custom] = ACTIONS(4686), + }, + [1785] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4692), + [sym__immediate_quest] = ACTIONS(4692), + [anon_sym_AMP] = ACTIONS(4692), + [aux_sym_custom_operator_token1] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4692), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_RBRACE] = ACTIONS(4690), + [anon_sym_BANG_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4692), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_STAR] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4692), + [anon_sym_PERCENT] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_PIPE] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym_LT_LT] = ACTIONS(4692), + [anon_sym_GT_GT] = ACTIONS(4692), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4690), + [sym__semi] = ACTIONS(4690), + [sym__dot_custom] = ACTIONS(4690), + [sym__three_dot_operator_custom] = ACTIONS(4690), + [sym__open_ended_range_operator_custom] = ACTIONS(4690), + [sym__conjunction_operator_custom] = ACTIONS(4690), + [sym__disjunction_operator_custom] = ACTIONS(4690), + [sym__nil_coalescing_operator_custom] = ACTIONS(4690), + [sym__eq_eq_custom] = ACTIONS(4690), + [sym__plus_then_ws] = ACTIONS(4690), + [sym__minus_then_ws] = ACTIONS(4690), + [sym_bang] = ACTIONS(4690), + [sym__as_custom] = ACTIONS(4690), + [sym__as_quest_custom] = ACTIONS(4690), + [sym__as_bang_custom] = ACTIONS(4690), + }, + [1786] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4706), + [anon_sym_LPAREN] = ACTIONS(4706), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_QMARK] = ACTIONS(4708), + [sym__immediate_quest] = ACTIONS(4708), + [anon_sym_AMP] = ACTIONS(4708), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4708), + [anon_sym_GT] = ACTIONS(4708), + [anon_sym_LBRACE] = ACTIONS(4706), + [anon_sym_RBRACE] = ACTIONS(4706), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5612), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(4708), + [anon_sym_CARET] = ACTIONS(4708), + [anon_sym_LT_LT] = ACTIONS(4708), + [anon_sym_GT_GT] = ACTIONS(4708), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4706), + [sym__semi] = ACTIONS(4706), + [sym__dot_custom] = ACTIONS(4706), + [sym__three_dot_operator_custom] = ACTIONS(4706), + [sym__open_ended_range_operator_custom] = ACTIONS(4706), + [sym__conjunction_operator_custom] = ACTIONS(5626), + [sym__disjunction_operator_custom] = ACTIONS(5628), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(5632), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4706), + [sym__as_quest_custom] = ACTIONS(4706), + [sym__as_bang_custom] = ACTIONS(4706), + }, + [1787] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4670), + [anon_sym_LPAREN] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_QMARK] = ACTIONS(4672), + [sym__immediate_quest] = ACTIONS(4672), + [anon_sym_AMP] = ACTIONS(4672), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4670), + [anon_sym_RBRACE] = ACTIONS(4670), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5612), + [anon_sym_LT_EQ] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4672), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(4672), + [anon_sym_CARET] = ACTIONS(4672), + [anon_sym_LT_LT] = ACTIONS(4672), + [anon_sym_GT_GT] = ACTIONS(4672), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4670), + [sym__semi] = ACTIONS(4670), + [sym__dot_custom] = ACTIONS(4670), + [sym__three_dot_operator_custom] = ACTIONS(4670), + [sym__open_ended_range_operator_custom] = ACTIONS(4670), + [sym__conjunction_operator_custom] = ACTIONS(5626), + [sym__disjunction_operator_custom] = ACTIONS(4670), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(5632), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4670), + [sym__as_quest_custom] = ACTIONS(4670), + [sym__as_bang_custom] = ACTIONS(4670), + }, + [1788] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5846), + [anon_sym_COMMA] = ACTIONS(5846), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(5846), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1789] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5848), + [anon_sym_COMMA] = ACTIONS(5848), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(5848), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1790] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_QMARK] = ACTIONS(4676), + [sym__immediate_quest] = ACTIONS(4676), + [anon_sym_AMP] = ACTIONS(4676), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4676), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_is] = ACTIONS(4674), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4676), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4676), + [anon_sym_LT_LT] = ACTIONS(4676), + [anon_sym_GT_GT] = ACTIONS(4676), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4674), + [sym__semi] = ACTIONS(4674), + [sym__dot_custom] = ACTIONS(4674), + [sym__three_dot_operator_custom] = ACTIONS(4674), + [sym__open_ended_range_operator_custom] = ACTIONS(4674), + [sym__conjunction_operator_custom] = ACTIONS(4674), + [sym__disjunction_operator_custom] = ACTIONS(4674), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(4674), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(4674), + [sym__as_custom] = ACTIONS(4674), + [sym__as_quest_custom] = ACTIONS(4674), + [sym__as_bang_custom] = ACTIONS(4674), + }, + [1791] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9209), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9208), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1792] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9212), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9210), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1793] = { + [sym__quest] = STATE(487), + [sym__range_operator] = STATE(873), + [sym_custom_operator] = STATE(872), + [sym_navigation_suffix] = STATE(2687), + [sym_call_suffix] = STATE(2694), + [sym_value_arguments] = STATE(2701), + [sym_lambda_literal] = STATE(2361), + [sym__equality_operator] = STATE(869), + [sym__comparison_operator] = STATE(867), + [sym__is_operator] = STATE(4454), + [sym__additive_operator] = STATE(865), + [sym__multiplicative_operator] = STATE(864), + [sym_as_operator] = STATE(4545), + [sym__bitwise_binary_operator] = STATE(863), + [sym__postfix_unary_operator] = STATE(3189), + [sym__eq_eq] = STATE(869), + [sym__dot] = STATE(5982), + [sym__three_dot_operator] = STATE(1355), + [sym__open_ended_range_operator] = STATE(873), + [sym__conjunction_operator] = STATE(328), + [sym__disjunction_operator] = STATE(858), + [sym__nil_coalescing_operator] = STATE(856), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4650), + [anon_sym_LPAREN] = ACTIONS(5598), + [anon_sym_LBRACK] = ACTIONS(5600), + [anon_sym_QMARK] = ACTIONS(5602), + [sym__immediate_quest] = ACTIONS(5604), + [anon_sym_AMP] = ACTIONS(5606), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5608), + [anon_sym_GT] = ACTIONS(5608), + [anon_sym_LBRACE] = ACTIONS(5610), + [anon_sym_RBRACE] = ACTIONS(4650), + [anon_sym_BANG_EQ] = ACTIONS(5612), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5612), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5612), + [anon_sym_LT_EQ] = ACTIONS(5608), + [anon_sym_GT_EQ] = ACTIONS(5608), + [anon_sym_is] = ACTIONS(5614), + [anon_sym_PLUS] = ACTIONS(5616), + [anon_sym_DASH] = ACTIONS(5616), + [anon_sym_STAR] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_PLUS_PLUS] = ACTIONS(5620), + [anon_sym_DASH_DASH] = ACTIONS(5620), + [anon_sym_PIPE] = ACTIONS(5606), + [anon_sym_CARET] = ACTIONS(5606), + [anon_sym_LT_LT] = ACTIONS(5606), + [anon_sym_GT_GT] = ACTIONS(5606), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(4650), + [sym__semi] = ACTIONS(4650), + [sym__dot_custom] = ACTIONS(5622), + [sym__three_dot_operator_custom] = ACTIONS(1463), + [sym__open_ended_range_operator_custom] = ACTIONS(5624), + [sym__conjunction_operator_custom] = ACTIONS(5626), + [sym__disjunction_operator_custom] = ACTIONS(5628), + [sym__nil_coalescing_operator_custom] = ACTIONS(5630), + [sym__eq_eq_custom] = ACTIONS(5632), + [sym__plus_then_ws] = ACTIONS(5634), + [sym__minus_then_ws] = ACTIONS(5634), + [sym_bang] = ACTIONS(5636), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1794] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8325), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3774), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1795] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8327), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3778), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1796] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8328), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3779), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1797] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8329), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3782), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1798] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9434), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9433), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1799] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9218), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9217), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1800] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9432), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9431), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1801] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8330), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3783), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1802] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5686), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(4718), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4718), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1803] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8332), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3786), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1804] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_tuple_expression_repeat1] = STATE(7742), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5850), + [anon_sym_COMMA] = ACTIONS(5756), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1805] = { + [sym__quest] = STATE(305), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_tuple_expression_repeat1] = STATE(7414), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(5772), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5774), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1806] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8334), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3790), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1807] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8335), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3791), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1808] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_attribute_repeat3] = STATE(7527), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5852), + [anon_sym_COMMA] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1809] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9428), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9427), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1810] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9426), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9425), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1811] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9225), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9224), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1812] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8336), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3794), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1813] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9227), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9226), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1814] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8338), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3795), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1815] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8339), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3800), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1816] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8341), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3801), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1817] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_enum_type_parameters_repeat1] = STATE(7945), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5854), + [anon_sym_COMMA] = ACTIONS(5856), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1818] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8342), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3805), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1819] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8343), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3810), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1820] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8344), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3813), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1821] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9235), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9234), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1822] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5686), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(4678), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4678), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1823] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9422), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9421), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1824] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9420), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9419), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1825] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4694), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5686), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(4694), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4694), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1826] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8345), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3815), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1827] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8348), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3816), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1828] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_QMARK] = ACTIONS(4648), + [sym__immediate_quest] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4648), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_RBRACE] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4648), + [anon_sym_is] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4648), + [anon_sym_LT_LT] = ACTIONS(4648), + [anon_sym_GT_GT] = ACTIONS(4648), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4646), + [sym__dot_custom] = ACTIONS(4646), + [sym__three_dot_operator_custom] = ACTIONS(4646), + [sym__open_ended_range_operator_custom] = ACTIONS(4646), + [sym__conjunction_operator_custom] = ACTIONS(4646), + [sym__disjunction_operator_custom] = ACTIONS(4646), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(4646), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(4646), + [sym__as_custom] = ACTIONS(4646), + [sym__as_quest_custom] = ACTIONS(4646), + [sym__as_bang_custom] = ACTIONS(4646), + }, + [1829] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9239), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9238), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1830] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9241), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9240), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1831] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8349), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3819), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1832] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8350), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3820), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1833] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8353), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3823), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1834] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8354), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3824), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1835] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9403), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9416), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1836] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8355), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3827), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1837] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8356), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3828), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1838] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9245), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9244), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1839] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9503), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9502), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1840] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8357), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3829), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1841] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8358), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3831), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1842] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8265), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3832), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1843] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8361), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3834), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1844] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8362), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3835), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1845] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8363), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3838), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1846] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8364), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3839), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1847] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8365), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3842), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1848] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8366), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3846), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1849] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8367), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3847), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1850] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9705), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9704), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1851] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9703), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9700), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1852] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9410), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9409), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1853] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9408), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9407), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1854] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9250), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9249), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1855] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9252), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9251), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1856] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8258), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3662), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1857] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9510), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9509), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1858] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9512), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9511), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1859] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8267), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3666), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1860] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9695), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9694), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1861] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8368), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3850), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1862] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8369), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3851), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1863] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9405), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9404), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1864] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8370), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3854), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1865] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8371), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3855), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1866] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8372), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3858), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1867] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9516), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9515), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1868] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9256), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9255), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1869] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9258), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9257), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1870] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9518), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9517), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1871] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9689), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9687), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1872] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8373), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3861), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1873] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_enum_type_parameters_repeat1] = STATE(7357), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5858), + [anon_sym_COMMA] = ACTIONS(5856), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1874] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8727), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8729), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1875] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8374), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3862), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1876] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8721), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8723), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1877] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8573), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3975), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1878] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8375), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3864), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1879] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8376), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3865), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1880] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9521), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9520), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1881] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9523), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9522), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1882] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8377), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3868), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1883] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8380), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3869), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1884] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8382), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3872), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1885] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8383), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3875), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1886] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8384), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3876), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1887] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9262), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9261), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1888] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9264), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9263), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1889] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_tuple_expression_repeat1] = STATE(7662), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5860), + [anon_sym_COMMA] = ACTIONS(5756), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1890] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8385), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3878), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1891] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9675), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9679), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1892] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8386), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3879), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1893] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8388), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3882), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1894] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8389), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3883), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1895] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8390), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3886), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1896] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9529), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9528), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1897] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9268), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9163), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1898] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9271), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9269), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1899] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9623), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9672), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1900] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8391), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3887), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1901] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8392), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3892), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1902] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9532), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9531), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1903] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8360), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3893), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1904] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8394), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3896), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1905] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_attribute_repeat3] = STATE(7647), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5862), + [anon_sym_COMMA] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1906] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8395), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3908), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1907] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9535), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9534), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1908] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9537), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9536), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1909] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8396), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3911), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1910] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8397), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3914), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1911] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8398), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3915), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1912] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8399), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3918), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1913] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_tuple_expression_repeat1] = STATE(7540), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5864), + [anon_sym_COMMA] = ACTIONS(5756), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1914] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9399), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9398), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1915] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8401), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3927), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1916] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8403), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3931), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1917] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8247), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3612), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1918] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9665), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9664), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1919] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9662), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9661), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1920] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9397), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9396), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1921] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9276), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9275), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1922] = { + [sym__quest] = STATE(275), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5782), + [anon_sym_COMMA] = ACTIONS(5782), + [anon_sym_COLON] = ACTIONS(5782), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5784), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1923] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8248), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3617), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1924] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8404), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3932), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1925] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8249), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3622), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1926] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9279), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9278), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1927] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9281), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9280), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1928] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8405), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3934), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1929] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_tuple_expression_repeat1] = STATE(7414), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5866), + [anon_sym_COMMA] = ACTIONS(5756), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1930] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8250), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3623), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1931] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8406), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3935), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1932] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9543), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9542), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1933] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9656), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9655), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1934] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_attribute_repeat3] = STATE(7504), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5868), + [anon_sym_COMMA] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1935] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8564), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3807), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1936] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8407), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3938), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1937] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8408), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3939), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1938] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8607), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3808), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1939] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8252), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3626), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1940] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8409), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3943), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1941] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__playground_literal_repeat1] = STATE(7643), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5870), + [anon_sym_COMMA] = ACTIONS(5792), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1942] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9546), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9514), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1943] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_attribute_repeat3] = STATE(7442), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5872), + [anon_sym_COMMA] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1944] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9651), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9650), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1945] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9649), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9648), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1946] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_attribute_repeat3] = STATE(7374), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5874), + [anon_sym_COMMA] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1947] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9548), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9547), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1948] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__playground_literal_repeat1] = STATE(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5876), + [anon_sym_COMMA] = ACTIONS(5792), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1949] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8411), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3947), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1950] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8413), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3949), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1951] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9286), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9285), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1952] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9288), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9287), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1953] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8596), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3897), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1954] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8594), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3898), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1955] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8593), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3899), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1956] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8591), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3902), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1957] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8590), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3903), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1958] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8414), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3951), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1959] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8589), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3905), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1960] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8587), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3906), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1961] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_tuple_expression_repeat1] = STATE(7698), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5878), + [anon_sym_COMMA] = ACTIONS(5756), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1962] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8578), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3968), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1963] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9291), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9290), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1964] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9293), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9292), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1965] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8577), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3969), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1966] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8576), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3971), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1967] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8416), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3954), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1968] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_enum_type_parameters_repeat1] = STATE(7711), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5880), + [anon_sym_COMMA] = ACTIONS(5856), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1969] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8575), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3972), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1970] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_tuple_expression_repeat1] = STATE(7920), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5882), + [anon_sym_COMMA] = ACTIONS(5756), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1971] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8574), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3974), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1972] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_attribute_repeat3] = STATE(7397), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5884), + [anon_sym_COMMA] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1973] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8572), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3977), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1974] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8571), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3978), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1975] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8570), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3982), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1976] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9300), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9299), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1977] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8254), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3632), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1978] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8417), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3957), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1979] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8569), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3985), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1980] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9303), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9302), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1981] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8568), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3987), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1982] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5886), + [anon_sym_COMMA] = ACTIONS(5886), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(5886), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1983] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8567), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3988), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1984] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9306), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9305), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1985] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9308), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9307), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1986] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8566), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3991), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1987] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8255), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3637), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1988] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_attribute_repeat3] = STATE(7431), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5888), + [anon_sym_COMMA] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1989] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8561), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4037), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1990] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8560), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4038), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1991] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8559), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4039), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1992] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8187), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9312), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1993] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9315), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9314), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1994] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8558), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4041), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1995] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8556), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4042), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1996] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8555), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4045), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1997] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8554), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4048), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1998] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8553), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4049), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [1999] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8475), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4139), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2000] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8551), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4052), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2001] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8550), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4057), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2002] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8549), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4059), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2003] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9319), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9318), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2004] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9321), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9320), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2005] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8548), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4060), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2006] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8547), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4062), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2007] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8546), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4063), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2008] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_attribute_repeat3] = STATE(8175), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5890), + [anon_sym_COMMA] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2009] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8545), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4068), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2010] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8543), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4069), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2011] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8539), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4096), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2012] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8538), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4099), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2013] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8536), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4101), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2014] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9636), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9634), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2015] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9632), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9630), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2016] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8535), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4102), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2017] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__playground_literal_repeat1] = STATE(7421), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5892), + [anon_sym_COMMA] = ACTIONS(5792), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2018] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8534), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4105), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2019] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9325), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9324), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2020] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8533), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4109), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2021] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4650), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5686), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(4650), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4650), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2022] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9628), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9627), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2023] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9626), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9625), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2024] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_QMARK] = ACTIONS(4676), + [sym__immediate_quest] = ACTIONS(4676), + [anon_sym_AMP] = ACTIONS(4676), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4676), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_is] = ACTIONS(4674), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4676), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4676), + [anon_sym_LT_LT] = ACTIONS(4676), + [anon_sym_GT_GT] = ACTIONS(4676), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4674), + [sym__dot_custom] = ACTIONS(4674), + [sym__three_dot_operator_custom] = ACTIONS(4674), + [sym__open_ended_range_operator_custom] = ACTIONS(4674), + [sym__conjunction_operator_custom] = ACTIONS(4674), + [sym__disjunction_operator_custom] = ACTIONS(4674), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(4674), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(4674), + [sym__as_custom] = ACTIONS(4674), + [sym__as_quest_custom] = ACTIONS(4674), + [sym__as_bang_custom] = ACTIONS(4674), + }, + [2025] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4670), + [anon_sym_LPAREN] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_QMARK] = ACTIONS(4672), + [sym__immediate_quest] = ACTIONS(4672), + [anon_sym_AMP] = ACTIONS(4672), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4670), + [anon_sym_RBRACE] = ACTIONS(4670), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4672), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(4672), + [anon_sym_CARET] = ACTIONS(4672), + [anon_sym_LT_LT] = ACTIONS(4672), + [anon_sym_GT_GT] = ACTIONS(4672), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4670), + [sym__dot_custom] = ACTIONS(4670), + [sym__three_dot_operator_custom] = ACTIONS(4670), + [sym__open_ended_range_operator_custom] = ACTIONS(4670), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(4670), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4670), + [sym__as_quest_custom] = ACTIONS(4670), + [sym__as_bang_custom] = ACTIONS(4670), + }, + [2026] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8532), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4110), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2027] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8531), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4115), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2028] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4706), + [anon_sym_LPAREN] = ACTIONS(4706), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_QMARK] = ACTIONS(4708), + [sym__immediate_quest] = ACTIONS(4708), + [anon_sym_AMP] = ACTIONS(4708), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4708), + [anon_sym_GT] = ACTIONS(4708), + [anon_sym_LBRACE] = ACTIONS(4706), + [anon_sym_RBRACE] = ACTIONS(4706), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(4708), + [anon_sym_CARET] = ACTIONS(4708), + [anon_sym_LT_LT] = ACTIONS(4708), + [anon_sym_GT_GT] = ACTIONS(4708), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4706), + [sym__dot_custom] = ACTIONS(4706), + [sym__three_dot_operator_custom] = ACTIONS(4706), + [sym__open_ended_range_operator_custom] = ACTIONS(4706), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4706), + [sym__as_quest_custom] = ACTIONS(4706), + [sym__as_bang_custom] = ACTIONS(4706), + }, + [2029] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8530), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4117), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2030] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4692), + [sym__immediate_quest] = ACTIONS(4692), + [anon_sym_AMP] = ACTIONS(4692), + [aux_sym_custom_operator_token1] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4692), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_RBRACE] = ACTIONS(4690), + [anon_sym_BANG_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4692), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_STAR] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4692), + [anon_sym_PERCENT] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_PIPE] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym_LT_LT] = ACTIONS(4692), + [anon_sym_GT_GT] = ACTIONS(4692), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4690), + [sym__dot_custom] = ACTIONS(4690), + [sym__three_dot_operator_custom] = ACTIONS(4690), + [sym__open_ended_range_operator_custom] = ACTIONS(4690), + [sym__conjunction_operator_custom] = ACTIONS(4690), + [sym__disjunction_operator_custom] = ACTIONS(4690), + [sym__nil_coalescing_operator_custom] = ACTIONS(4690), + [sym__eq_eq_custom] = ACTIONS(4690), + [sym__plus_then_ws] = ACTIONS(4690), + [sym__minus_then_ws] = ACTIONS(4690), + [sym_bang] = ACTIONS(4690), + [sym__as_custom] = ACTIONS(4690), + [sym__as_quest_custom] = ACTIONS(4690), + [sym__as_bang_custom] = ACTIONS(4690), + }, + [2031] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_QMARK] = ACTIONS(4688), + [sym__immediate_quest] = ACTIONS(4688), + [anon_sym_AMP] = ACTIONS(4688), + [aux_sym_custom_operator_token1] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4688), + [anon_sym_GT] = ACTIONS(4688), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4688), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_GT_EQ] = ACTIONS(4688), + [anon_sym_is] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4688), + [anon_sym_DASH] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(4688), + [anon_sym_DASH_DASH] = ACTIONS(4688), + [anon_sym_PIPE] = ACTIONS(4688), + [anon_sym_CARET] = ACTIONS(4688), + [anon_sym_LT_LT] = ACTIONS(4688), + [anon_sym_GT_GT] = ACTIONS(4688), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4686), + [sym__dot_custom] = ACTIONS(4686), + [sym__three_dot_operator_custom] = ACTIONS(4686), + [sym__open_ended_range_operator_custom] = ACTIONS(4686), + [sym__conjunction_operator_custom] = ACTIONS(4686), + [sym__disjunction_operator_custom] = ACTIONS(4686), + [sym__nil_coalescing_operator_custom] = ACTIONS(4686), + [sym__eq_eq_custom] = ACTIONS(4686), + [sym__plus_then_ws] = ACTIONS(4686), + [sym__minus_then_ws] = ACTIONS(4686), + [sym_bang] = ACTIONS(4686), + [sym__as_custom] = ACTIONS(4686), + [sym__as_quest_custom] = ACTIONS(4686), + [sym__as_bang_custom] = ACTIONS(4686), + }, + [2032] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8529), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4118), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2033] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(4628), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_QMARK] = ACTIONS(4630), + [sym__immediate_quest] = ACTIONS(4630), + [anon_sym_AMP] = ACTIONS(4630), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_RBRACE] = ACTIONS(4628), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(4630), + [anon_sym_GT_EQ] = ACTIONS(4630), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_CARET] = ACTIONS(4630), + [anon_sym_LT_LT] = ACTIONS(4630), + [anon_sym_GT_GT] = ACTIONS(4630), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4628), + [sym__dot_custom] = ACTIONS(4628), + [sym__three_dot_operator_custom] = ACTIONS(4628), + [sym__open_ended_range_operator_custom] = ACTIONS(4628), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4628), + [sym__as_quest_custom] = ACTIONS(4628), + [sym__as_bang_custom] = ACTIONS(4628), + }, + [2034] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_QMARK] = ACTIONS(4664), + [sym__immediate_quest] = ACTIONS(4664), + [anon_sym_AMP] = ACTIONS(4664), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4664), + [anon_sym_GT] = ACTIONS(4664), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_BANG_EQ] = ACTIONS(4664), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), + [anon_sym_LT_EQ] = ACTIONS(4664), + [anon_sym_GT_EQ] = ACTIONS(4664), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(4664), + [anon_sym_CARET] = ACTIONS(4664), + [anon_sym_LT_LT] = ACTIONS(4664), + [anon_sym_GT_GT] = ACTIONS(4664), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4662), + [sym__dot_custom] = ACTIONS(4662), + [sym__three_dot_operator_custom] = ACTIONS(4662), + [sym__open_ended_range_operator_custom] = ACTIONS(4662), + [sym__conjunction_operator_custom] = ACTIONS(4662), + [sym__disjunction_operator_custom] = ACTIONS(4662), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(4662), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4662), + [sym__as_quest_custom] = ACTIONS(4662), + [sym__as_bang_custom] = ACTIONS(4662), + }, + [2035] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8418), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3958), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2036] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8528), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4121), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2037] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_QMARK] = ACTIONS(4656), + [sym__immediate_quest] = ACTIONS(4656), + [anon_sym_AMP] = ACTIONS(4656), + [aux_sym_custom_operator_token1] = ACTIONS(4656), + [anon_sym_LT] = ACTIONS(4656), + [anon_sym_GT] = ACTIONS(4656), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4656), + [anon_sym_GT_EQ] = ACTIONS(4656), + [anon_sym_is] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(4656), + [anon_sym_DASH_DASH] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4656), + [anon_sym_CARET] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4654), + [sym__dot_custom] = ACTIONS(4654), + [sym__three_dot_operator_custom] = ACTIONS(4654), + [sym__open_ended_range_operator_custom] = ACTIONS(4654), + [sym__conjunction_operator_custom] = ACTIONS(4654), + [sym__disjunction_operator_custom] = ACTIONS(4654), + [sym__nil_coalescing_operator_custom] = ACTIONS(4654), + [sym__eq_eq_custom] = ACTIONS(4654), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(4654), + [sym__as_custom] = ACTIONS(4654), + [sym__as_quest_custom] = ACTIONS(4654), + [sym__as_bang_custom] = ACTIONS(4654), + }, + [2038] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4644), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_RBRACE] = ACTIONS(4642), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4642), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2039] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9617), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9616), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2040] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8419), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3961), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2041] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_attribute_repeat3] = STATE(7427), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5894), + [anon_sym_COMMA] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2042] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8527), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4124), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2043] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9330), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9329), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2044] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8526), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4125), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2045] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8420), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3962), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2046] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9332), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9331), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2047] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8421), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3986), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2048] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8256), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3638), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2049] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8422), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3989), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2050] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8525), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4132), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2051] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8498), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4153), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2052] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8519), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4154), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2053] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8517), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4156), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2054] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9611), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9610), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2055] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_tuple_expression_repeat1] = STATE(7446), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5896), + [anon_sym_COMMA] = ACTIONS(5756), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2056] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8516), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4159), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2057] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8423), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3990), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2058] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9335), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9334), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2059] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8515), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4163), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2060] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9337), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9336), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2061] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8514), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4164), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2062] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8513), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4170), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2063] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8512), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4171), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2064] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym__playground_literal_repeat1] = STATE(8150), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5898), + [anon_sym_COMMA] = ACTIONS(5792), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2065] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8511), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4174), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2066] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8509), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4178), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2067] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8507), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4179), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2068] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9603), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9602), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2069] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9601), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9600), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2070] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9556), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9554), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2071] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8257), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3642), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2072] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9391), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9390), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2073] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8505), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4203), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2074] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9597), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9596), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2075] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8504), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4204), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2076] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8503), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4206), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2077] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8502), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4207), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2078] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8501), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4200), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2079] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8500), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4198), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2080] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9341), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9340), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2081] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9343), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9342), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2082] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9389), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9388), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2083] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9594), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9593), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2084] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8499), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4196), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2085] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8438), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4195), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2086] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8497), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4194), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2087] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8496), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4193), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2088] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8494), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4190), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2089] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8493), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4185), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2090] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8492), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4181), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2091] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8491), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4180), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2092] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8490), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4167), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2093] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8488), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3946), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2094] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9589), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9588), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2095] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8485), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4047), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2096] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8484), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4165), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2097] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9347), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9346), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2098] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9349), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9348), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2099] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8483), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4151), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2100] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8482), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4150), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2101] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8481), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4148), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2102] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8480), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4147), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2103] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8479), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4146), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2104] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8478), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4145), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2105] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8477), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4142), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2106] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8476), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4141), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2107] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5686), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(4698), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4698), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2108] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8474), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4137), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2109] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8473), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4135), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2110] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8472), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4134), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2111] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8471), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4129), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2112] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8470), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4113), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2113] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_tuple_expression_repeat1] = STATE(7529), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5900), + [anon_sym_COMMA] = ACTIONS(5756), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2114] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9579), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9578), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2115] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8469), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4094), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2116] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9354), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9353), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2117] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8468), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4093), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2118] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8467), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4091), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2119] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8466), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4090), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2120] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9357), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9356), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2121] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9359), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9358), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2122] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8424), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3993), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2123] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8465), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4089), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2124] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8464), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4088), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2125] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8463), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4085), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2126] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8462), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4084), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2127] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5902), + [anon_sym_COMMA] = ACTIONS(5902), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(5902), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2128] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8461), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4082), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2129] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8460), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4081), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2130] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8459), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4080), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2131] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9362), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9361), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2132] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9364), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9363), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2133] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8458), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4077), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2134] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8457), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4076), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2135] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8456), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4074), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2136] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8455), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4073), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2137] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8259), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3651), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2138] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8454), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4071), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2139] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9368), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9367), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2140] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9370), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9369), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2141] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8453), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4070), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2142] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8260), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3653), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2143] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8262), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3657), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2144] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8451), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4056), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2145] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8450), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4055), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2146] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8448), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4033), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2147] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8447), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4032), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2148] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8446), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4025), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2149] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8445), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4024), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2150] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8443), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4023), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2151] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9375), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9374), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2152] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8442), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4021), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2153] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8441), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4020), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2154] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8440), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4019), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2155] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9378), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9377), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2156] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9380), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9379), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2157] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8439), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4013), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2158] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8425), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3994), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2159] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8393), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4012), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2160] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8437), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4009), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2161] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8435), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4008), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2162] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9384), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9383), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2163] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8433), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4006), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2164] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9386), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9385), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2165] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8894), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(8892), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2166] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9571), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9569), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2167] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9568), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9567), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2168] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [aux_sym_attribute_repeat3] = STATE(7616), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5904), + [anon_sym_COMMA] = ACTIONS(5768), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2169] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8264), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3658), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2170] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8431), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4003), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2171] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8430), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4002), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2172] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8428), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(4001), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2173] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8427), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3998), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2174] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9564), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9563), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2175] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(9561), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(9559), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5748), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2176] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8227), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3645), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2177] = { + [sym__quest] = STATE(352), + [sym__range_operator] = STATE(1067), + [sym_custom_operator] = STATE(1068), + [sym_navigation_suffix] = STATE(2713), + [sym_call_suffix] = STATE(2714), + [sym_value_arguments] = STATE(2715), + [sym_lambda_literal] = STATE(2350), + [sym_where_clause] = STATE(8426), + [sym__equality_operator] = STATE(1072), + [sym__comparison_operator] = STATE(1074), + [sym__is_operator] = STATE(4444), + [sym__additive_operator] = STATE(1078), + [sym__multiplicative_operator] = STATE(1089), + [sym_as_operator] = STATE(4453), + [sym__bitwise_binary_operator] = STATE(1098), + [sym__postfix_unary_operator] = STATE(3291), + [sym__block] = STATE(3997), + [sym__eq_eq] = STATE(1072), + [sym__dot] = STATE(6138), + [sym__three_dot_operator] = STATE(1349), + [sym__open_ended_range_operator] = STATE(1067), + [sym__conjunction_operator] = STATE(322), + [sym__disjunction_operator] = STATE(1096), + [sym__nil_coalescing_operator] = STATE(1095), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5700), + [anon_sym_QMARK] = ACTIONS(5746), + [sym__immediate_quest] = ACTIONS(5702), + [anon_sym_AMP] = ACTIONS(5704), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5706), + [anon_sym_GT] = ACTIONS(5706), + [anon_sym_LBRACE] = ACTIONS(5752), + [anon_sym_BANG_EQ] = ACTIONS(5708), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5708), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5708), + [anon_sym_LT_EQ] = ACTIONS(5706), + [anon_sym_GT_EQ] = ACTIONS(5706), + [anon_sym_is] = ACTIONS(5710), + [anon_sym_PLUS] = ACTIONS(5712), + [anon_sym_DASH] = ACTIONS(5712), + [anon_sym_STAR] = ACTIONS(5714), + [anon_sym_SLASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), + [anon_sym_PLUS_PLUS] = ACTIONS(5716), + [anon_sym_DASH_DASH] = ACTIONS(5716), + [anon_sym_PIPE] = ACTIONS(5704), + [anon_sym_CARET] = ACTIONS(5704), + [anon_sym_LT_LT] = ACTIONS(5704), + [anon_sym_GT_GT] = ACTIONS(5704), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5718), + [sym__three_dot_operator_custom] = ACTIONS(1065), + [sym__open_ended_range_operator_custom] = ACTIONS(5720), + [sym__conjunction_operator_custom] = ACTIONS(5722), + [sym__disjunction_operator_custom] = ACTIONS(5724), + [sym__nil_coalescing_operator_custom] = ACTIONS(5726), + [sym__eq_eq_custom] = ACTIONS(5728), + [sym__plus_then_ws] = ACTIONS(5730), + [sym__minus_then_ws] = ACTIONS(5730), + [sym_bang] = ACTIONS(5732), + [sym_where_keyword] = ACTIONS(5750), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2178] = { + [sym_attribute] = STATE(2178), + [aux_sym_capture_list_repeat1] = STATE(2178), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(5906), + [aux_sym_simple_identifier_token2] = ACTIONS(5908), + [aux_sym_simple_identifier_token3] = ACTIONS(5908), + [aux_sym_simple_identifier_token4] = ACTIONS(5908), + [anon_sym_nil] = ACTIONS(5906), + [sym_real_literal] = ACTIONS(5908), + [sym_integer_literal] = ACTIONS(5906), + [sym_hex_literal] = ACTIONS(5908), + [sym_oct_literal] = ACTIONS(5908), + [sym_bin_literal] = ACTIONS(5908), + [anon_sym_true] = ACTIONS(5906), + [anon_sym_false] = ACTIONS(5906), + [anon_sym_DQUOTE] = ACTIONS(5906), + [anon_sym_BSLASH] = ACTIONS(5906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5908), + [anon_sym_LPAREN] = ACTIONS(5908), + [anon_sym_LBRACK] = ACTIONS(5908), + [anon_sym_AMP] = ACTIONS(5906), + [anon_sym_async] = ACTIONS(5906), + [anon_sym_POUNDselector] = ACTIONS(5908), + [aux_sym_custom_operator_token1] = ACTIONS(5906), + [anon_sym_LT] = ACTIONS(5906), + [anon_sym_GT] = ACTIONS(5906), + [sym__await_operator] = ACTIONS(5906), + [anon_sym_POUNDfile] = ACTIONS(5906), + [anon_sym_POUNDfileID] = ACTIONS(5908), + [anon_sym_POUNDfilePath] = ACTIONS(5908), + [anon_sym_POUNDline] = ACTIONS(5908), + [anon_sym_POUNDcolumn] = ACTIONS(5908), + [anon_sym_POUNDfunction] = ACTIONS(5908), + [anon_sym_POUNDdsohandle] = ACTIONS(5908), + [anon_sym_POUNDcolorLiteral] = ACTIONS(5908), + [anon_sym_POUNDfileLiteral] = ACTIONS(5908), + [anon_sym_POUNDimageLiteral] = ACTIONS(5908), + [anon_sym_LBRACE] = ACTIONS(5908), + [anon_sym_self] = ACTIONS(5906), + [anon_sym_super] = ACTIONS(5906), + [anon_sym_POUNDkeyPath] = ACTIONS(5908), + [anon_sym_try] = ACTIONS(5906), + [anon_sym_try_BANG] = ACTIONS(5908), + [anon_sym_try_QMARK] = ACTIONS(5908), + [anon_sym_BANG_EQ] = ACTIONS(5906), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5906), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5906), + [anon_sym_LT_EQ] = ACTIONS(5906), + [anon_sym_GT_EQ] = ACTIONS(5906), + [anon_sym_PLUS] = ACTIONS(5906), + [anon_sym_DASH] = ACTIONS(5906), + [anon_sym_STAR] = ACTIONS(5906), + [anon_sym_SLASH] = ACTIONS(5906), + [anon_sym_PERCENT] = ACTIONS(5906), + [anon_sym_PLUS_PLUS] = ACTIONS(5906), + [anon_sym_DASH_DASH] = ACTIONS(5906), + [anon_sym_TILDE] = ACTIONS(5906), + [anon_sym_AT] = ACTIONS(5910), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(5908), + [sym_raw_str_end_part] = ACTIONS(5908), + [sym__dot_custom] = ACTIONS(5908), + [sym__three_dot_operator_custom] = ACTIONS(5908), + [sym__open_ended_range_operator_custom] = ACTIONS(5908), + [sym__eq_eq_custom] = ACTIONS(5908), + [sym__plus_then_ws] = ACTIONS(5908), + [sym__minus_then_ws] = ACTIONS(5908), + [sym_bang] = ACTIONS(5908), + }, + [2179] = { + [sym__dot] = STATE(6164), + [aux_sym_user_type_repeat1] = STATE(2183), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(5036), + [aux_sym_simple_identifier_token2] = ACTIONS(5034), + [aux_sym_simple_identifier_token3] = ACTIONS(5034), + [aux_sym_simple_identifier_token4] = ACTIONS(5034), + [anon_sym_nil] = ACTIONS(5036), + [sym_real_literal] = ACTIONS(5034), + [sym_integer_literal] = ACTIONS(5036), + [sym_hex_literal] = ACTIONS(5034), + [sym_oct_literal] = ACTIONS(5034), + [sym_bin_literal] = ACTIONS(5034), + [anon_sym_true] = ACTIONS(5036), + [anon_sym_false] = ACTIONS(5036), + [anon_sym_DQUOTE] = ACTIONS(5036), + [anon_sym_BSLASH] = ACTIONS(5036), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5034), + [anon_sym_LPAREN] = ACTIONS(5034), + [anon_sym_LBRACK] = ACTIONS(5034), + [anon_sym_AMP] = ACTIONS(5036), + [anon_sym_async] = ACTIONS(5036), + [anon_sym_POUNDselector] = ACTIONS(5034), + [aux_sym_custom_operator_token1] = ACTIONS(5036), + [anon_sym_LT] = ACTIONS(5036), + [anon_sym_GT] = ACTIONS(5036), + [sym__await_operator] = ACTIONS(5036), + [anon_sym_POUNDfile] = ACTIONS(5036), + [anon_sym_POUNDfileID] = ACTIONS(5034), + [anon_sym_POUNDfilePath] = ACTIONS(5034), + [anon_sym_POUNDline] = ACTIONS(5034), + [anon_sym_POUNDcolumn] = ACTIONS(5034), + [anon_sym_POUNDfunction] = ACTIONS(5034), + [anon_sym_POUNDdsohandle] = ACTIONS(5034), + [anon_sym_POUNDcolorLiteral] = ACTIONS(5034), + [anon_sym_POUNDfileLiteral] = ACTIONS(5034), + [anon_sym_POUNDimageLiteral] = ACTIONS(5034), + [anon_sym_LBRACE] = ACTIONS(5034), + [anon_sym_self] = ACTIONS(5036), + [anon_sym_super] = ACTIONS(5036), + [anon_sym_POUNDkeyPath] = ACTIONS(5034), + [anon_sym_try] = ACTIONS(5036), + [anon_sym_try_BANG] = ACTIONS(5034), + [anon_sym_try_QMARK] = ACTIONS(5034), + [anon_sym_BANG_EQ] = ACTIONS(5036), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5036), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5036), + [anon_sym_LT_EQ] = ACTIONS(5036), + [anon_sym_GT_EQ] = ACTIONS(5036), + [anon_sym_PLUS] = ACTIONS(5036), + [anon_sym_DASH] = ACTIONS(5036), + [anon_sym_STAR] = ACTIONS(5036), + [anon_sym_SLASH] = ACTIONS(5036), + [anon_sym_PERCENT] = ACTIONS(5036), + [anon_sym_PLUS_PLUS] = ACTIONS(5036), + [anon_sym_DASH_DASH] = ACTIONS(5036), + [anon_sym_TILDE] = ACTIONS(5036), + [anon_sym_AT] = ACTIONS(5034), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(5034), + [sym_raw_str_end_part] = ACTIONS(5034), + [sym__dot_custom] = ACTIONS(5913), + [sym__three_dot_operator_custom] = ACTIONS(5034), + [sym__open_ended_range_operator_custom] = ACTIONS(5034), + [sym__eq_eq_custom] = ACTIONS(5034), + [sym__plus_then_ws] = ACTIONS(5034), + [sym__minus_then_ws] = ACTIONS(5034), + [sym_bang] = ACTIONS(5034), + }, + [2180] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5916), + [anon_sym_COMMA] = ACTIONS(5916), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2181] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5918), + [anon_sym_COMMA] = ACTIONS(5918), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2182] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5920), + [anon_sym_COMMA] = ACTIONS(5920), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2183] = { + [sym__dot] = STATE(6164), + [aux_sym_user_type_repeat1] = STATE(2183), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(5029), + [aux_sym_simple_identifier_token2] = ACTIONS(5027), + [aux_sym_simple_identifier_token3] = ACTIONS(5027), + [aux_sym_simple_identifier_token4] = ACTIONS(5027), + [anon_sym_nil] = ACTIONS(5029), + [sym_real_literal] = ACTIONS(5027), + [sym_integer_literal] = ACTIONS(5029), + [sym_hex_literal] = ACTIONS(5027), + [sym_oct_literal] = ACTIONS(5027), + [sym_bin_literal] = ACTIONS(5027), + [anon_sym_true] = ACTIONS(5029), + [anon_sym_false] = ACTIONS(5029), + [anon_sym_DQUOTE] = ACTIONS(5029), + [anon_sym_BSLASH] = ACTIONS(5029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5027), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_AMP] = ACTIONS(5029), + [anon_sym_async] = ACTIONS(5029), + [anon_sym_POUNDselector] = ACTIONS(5027), + [aux_sym_custom_operator_token1] = ACTIONS(5029), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [sym__await_operator] = ACTIONS(5029), + [anon_sym_POUNDfile] = ACTIONS(5029), + [anon_sym_POUNDfileID] = ACTIONS(5027), + [anon_sym_POUNDfilePath] = ACTIONS(5027), + [anon_sym_POUNDline] = ACTIONS(5027), + [anon_sym_POUNDcolumn] = ACTIONS(5027), + [anon_sym_POUNDfunction] = ACTIONS(5027), + [anon_sym_POUNDdsohandle] = ACTIONS(5027), + [anon_sym_POUNDcolorLiteral] = ACTIONS(5027), + [anon_sym_POUNDfileLiteral] = ACTIONS(5027), + [anon_sym_POUNDimageLiteral] = ACTIONS(5027), + [anon_sym_LBRACE] = ACTIONS(5027), + [anon_sym_self] = ACTIONS(5029), + [anon_sym_super] = ACTIONS(5029), + [anon_sym_POUNDkeyPath] = ACTIONS(5027), + [anon_sym_try] = ACTIONS(5029), + [anon_sym_try_BANG] = ACTIONS(5027), + [anon_sym_try_QMARK] = ACTIONS(5027), + [anon_sym_BANG_EQ] = ACTIONS(5029), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5029), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5029), + [anon_sym_LT_EQ] = ACTIONS(5029), + [anon_sym_GT_EQ] = ACTIONS(5029), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_PERCENT] = ACTIONS(5029), + [anon_sym_PLUS_PLUS] = ACTIONS(5029), + [anon_sym_DASH_DASH] = ACTIONS(5029), + [anon_sym_TILDE] = ACTIONS(5029), + [anon_sym_AT] = ACTIONS(5027), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(5027), + [sym_raw_str_end_part] = ACTIONS(5027), + [sym__dot_custom] = ACTIONS(5922), + [sym__three_dot_operator_custom] = ACTIONS(5027), + [sym__open_ended_range_operator_custom] = ACTIONS(5027), + [sym__eq_eq_custom] = ACTIONS(5027), + [sym__plus_then_ws] = ACTIONS(5027), + [sym__minus_then_ws] = ACTIONS(5027), + [sym_bang] = ACTIONS(5027), + }, + [2184] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5925), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(5925), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2185] = { + [sym__quest] = STATE(305), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5772), + [anon_sym_COMMA] = ACTIONS(5772), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5774), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2186] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5686), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(4833), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4833), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2187] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5927), + [anon_sym_COMMA] = ACTIONS(5927), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2188] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5686), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(4821), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4821), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2189] = { + [sym__quest] = STATE(937), + [sym__range_operator] = STATE(980), + [sym_custom_operator] = STATE(981), + [sym_navigation_suffix] = STATE(2776), + [sym_call_suffix] = STATE(2777), + [sym_value_arguments] = STATE(2751), + [sym_lambda_literal] = STATE(2435), + [sym__equality_operator] = STATE(984), + [sym__comparison_operator] = STATE(985), + [sym__is_operator] = STATE(4426), + [sym__additive_operator] = STATE(986), + [sym__multiplicative_operator] = STATE(987), + [sym_as_operator] = STATE(4425), + [sym__bitwise_binary_operator] = STATE(988), + [sym__postfix_unary_operator] = STATE(3331), + [sym__eq_eq] = STATE(984), + [sym__dot] = STATE(6294), + [sym__three_dot_operator] = STATE(1385), + [sym__open_ended_range_operator] = STATE(980), + [sym__conjunction_operator] = STATE(320), + [sym__disjunction_operator] = STATE(992), + [sym__nil_coalescing_operator] = STATE(347), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4650), + [anon_sym_LPAREN] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(5796), + [anon_sym_QMARK] = ACTIONS(5929), + [sym__immediate_quest] = ACTIONS(5798), + [anon_sym_AMP] = ACTIONS(5800), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5802), + [anon_sym_GT] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5931), + [anon_sym_BANG_EQ] = ACTIONS(5804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5804), + [anon_sym_LT_EQ] = ACTIONS(5802), + [anon_sym_GT_EQ] = ACTIONS(5802), + [anon_sym_is] = ACTIONS(5806), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5810), + [anon_sym_PERCENT] = ACTIONS(5810), + [anon_sym_PLUS_PLUS] = ACTIONS(5812), + [anon_sym_DASH_DASH] = ACTIONS(5812), + [anon_sym_PIPE] = ACTIONS(5800), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_LT_LT] = ACTIONS(5800), + [anon_sym_GT_GT] = ACTIONS(5800), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5814), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(5816), + [sym__conjunction_operator_custom] = ACTIONS(5818), + [sym__disjunction_operator_custom] = ACTIONS(5820), + [sym__nil_coalescing_operator_custom] = ACTIONS(5822), + [sym__eq_eq_custom] = ACTIONS(5824), + [sym__plus_then_ws] = ACTIONS(5826), + [sym__minus_then_ws] = ACTIONS(5826), + [sym_bang] = ACTIONS(5828), + [sym_else] = ACTIONS(4650), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2190] = { + [sym__quest] = STATE(937), + [sym__range_operator] = STATE(980), + [sym_custom_operator] = STATE(981), + [sym_navigation_suffix] = STATE(2776), + [sym_call_suffix] = STATE(2777), + [sym_value_arguments] = STATE(2751), + [sym_lambda_literal] = STATE(2435), + [sym__equality_operator] = STATE(984), + [sym__comparison_operator] = STATE(985), + [sym__is_operator] = STATE(4426), + [sym__additive_operator] = STATE(986), + [sym__multiplicative_operator] = STATE(987), + [sym_as_operator] = STATE(4425), + [sym__bitwise_binary_operator] = STATE(988), + [sym__postfix_unary_operator] = STATE(3331), + [sym__eq_eq] = STATE(984), + [sym__dot] = STATE(6294), + [sym__three_dot_operator] = STATE(1385), + [sym__open_ended_range_operator] = STATE(980), + [sym__conjunction_operator] = STATE(320), + [sym__disjunction_operator] = STATE(992), + [sym__nil_coalescing_operator] = STATE(347), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_QMARK] = ACTIONS(4676), + [sym__immediate_quest] = ACTIONS(4676), + [anon_sym_AMP] = ACTIONS(4676), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4676), + [anon_sym_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_is] = ACTIONS(4674), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5810), + [anon_sym_PERCENT] = ACTIONS(5810), + [anon_sym_PLUS_PLUS] = ACTIONS(4676), + [anon_sym_DASH_DASH] = ACTIONS(4676), + [anon_sym_PIPE] = ACTIONS(4676), + [anon_sym_CARET] = ACTIONS(4676), + [anon_sym_LT_LT] = ACTIONS(4676), + [anon_sym_GT_GT] = ACTIONS(4676), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4674), + [sym__three_dot_operator_custom] = ACTIONS(4674), + [sym__open_ended_range_operator_custom] = ACTIONS(4674), + [sym__conjunction_operator_custom] = ACTIONS(4674), + [sym__disjunction_operator_custom] = ACTIONS(4674), + [sym__nil_coalescing_operator_custom] = ACTIONS(5822), + [sym__eq_eq_custom] = ACTIONS(4674), + [sym__plus_then_ws] = ACTIONS(5826), + [sym__minus_then_ws] = ACTIONS(5826), + [sym_bang] = ACTIONS(4674), + [sym_else] = ACTIONS(4674), + [sym__as_custom] = ACTIONS(4674), + [sym__as_quest_custom] = ACTIONS(4674), + [sym__as_bang_custom] = ACTIONS(4674), + }, + [2191] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5933), + [anon_sym_COMMA] = ACTIONS(5933), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2192] = { + [sym__quest] = STATE(937), + [sym__range_operator] = STATE(980), + [sym_custom_operator] = STATE(981), + [sym_navigation_suffix] = STATE(2776), + [sym_call_suffix] = STATE(2777), + [sym_value_arguments] = STATE(2751), + [sym_lambda_literal] = STATE(2435), + [sym__equality_operator] = STATE(984), + [sym__comparison_operator] = STATE(985), + [sym__is_operator] = STATE(4426), + [sym__additive_operator] = STATE(986), + [sym__multiplicative_operator] = STATE(987), + [sym_as_operator] = STATE(4425), + [sym__bitwise_binary_operator] = STATE(988), + [sym__postfix_unary_operator] = STATE(3331), + [sym__eq_eq] = STATE(984), + [sym__dot] = STATE(6294), + [sym__three_dot_operator] = STATE(1385), + [sym__open_ended_range_operator] = STATE(980), + [sym__conjunction_operator] = STATE(320), + [sym__disjunction_operator] = STATE(992), + [sym__nil_coalescing_operator] = STATE(347), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4670), + [anon_sym_LPAREN] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_QMARK] = ACTIONS(4672), + [sym__immediate_quest] = ACTIONS(4672), + [anon_sym_AMP] = ACTIONS(4672), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4670), + [anon_sym_BANG_EQ] = ACTIONS(5804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5804), + [anon_sym_LT_EQ] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4672), + [anon_sym_is] = ACTIONS(5806), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5810), + [anon_sym_PERCENT] = ACTIONS(5810), + [anon_sym_PLUS_PLUS] = ACTIONS(5812), + [anon_sym_DASH_DASH] = ACTIONS(5812), + [anon_sym_PIPE] = ACTIONS(4672), + [anon_sym_CARET] = ACTIONS(4672), + [anon_sym_LT_LT] = ACTIONS(4672), + [anon_sym_GT_GT] = ACTIONS(4672), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4670), + [sym__three_dot_operator_custom] = ACTIONS(4670), + [sym__open_ended_range_operator_custom] = ACTIONS(4670), + [sym__conjunction_operator_custom] = ACTIONS(5818), + [sym__disjunction_operator_custom] = ACTIONS(4670), + [sym__nil_coalescing_operator_custom] = ACTIONS(5822), + [sym__eq_eq_custom] = ACTIONS(5824), + [sym__plus_then_ws] = ACTIONS(5826), + [sym__minus_then_ws] = ACTIONS(5826), + [sym_bang] = ACTIONS(5828), + [sym_else] = ACTIONS(4670), + [sym__as_custom] = ACTIONS(4670), + [sym__as_quest_custom] = ACTIONS(4670), + [sym__as_bang_custom] = ACTIONS(4670), + }, + [2193] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5935), + [anon_sym_COMMA] = ACTIONS(5935), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2194] = { + [sym__quest] = STATE(937), + [sym__range_operator] = STATE(980), + [sym_custom_operator] = STATE(981), + [sym_navigation_suffix] = STATE(2776), + [sym_call_suffix] = STATE(2777), + [sym_value_arguments] = STATE(2751), + [sym_lambda_literal] = STATE(2435), + [sym__equality_operator] = STATE(984), + [sym__comparison_operator] = STATE(985), + [sym__is_operator] = STATE(4426), + [sym__additive_operator] = STATE(986), + [sym__multiplicative_operator] = STATE(987), + [sym_as_operator] = STATE(4425), + [sym__bitwise_binary_operator] = STATE(988), + [sym__postfix_unary_operator] = STATE(3331), + [sym__eq_eq] = STATE(984), + [sym__dot] = STATE(6294), + [sym__three_dot_operator] = STATE(1385), + [sym__open_ended_range_operator] = STATE(980), + [sym__conjunction_operator] = STATE(320), + [sym__disjunction_operator] = STATE(992), + [sym__nil_coalescing_operator] = STATE(347), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4706), + [anon_sym_LPAREN] = ACTIONS(4706), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_QMARK] = ACTIONS(4708), + [sym__immediate_quest] = ACTIONS(4708), + [anon_sym_AMP] = ACTIONS(4708), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4708), + [anon_sym_GT] = ACTIONS(4708), + [anon_sym_LBRACE] = ACTIONS(4706), + [anon_sym_BANG_EQ] = ACTIONS(5804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5804), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(5806), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5810), + [anon_sym_PERCENT] = ACTIONS(5810), + [anon_sym_PLUS_PLUS] = ACTIONS(5812), + [anon_sym_DASH_DASH] = ACTIONS(5812), + [anon_sym_PIPE] = ACTIONS(4708), + [anon_sym_CARET] = ACTIONS(4708), + [anon_sym_LT_LT] = ACTIONS(4708), + [anon_sym_GT_GT] = ACTIONS(4708), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4706), + [sym__three_dot_operator_custom] = ACTIONS(4706), + [sym__open_ended_range_operator_custom] = ACTIONS(4706), + [sym__conjunction_operator_custom] = ACTIONS(5818), + [sym__disjunction_operator_custom] = ACTIONS(5820), + [sym__nil_coalescing_operator_custom] = ACTIONS(5822), + [sym__eq_eq_custom] = ACTIONS(5824), + [sym__plus_then_ws] = ACTIONS(5826), + [sym__minus_then_ws] = ACTIONS(5826), + [sym_bang] = ACTIONS(5828), + [sym_else] = ACTIONS(4706), + [sym__as_custom] = ACTIONS(4706), + [sym__as_quest_custom] = ACTIONS(4706), + [sym__as_bang_custom] = ACTIONS(4706), + }, + [2195] = { + [sym__quest] = STATE(937), + [sym__range_operator] = STATE(980), + [sym_custom_operator] = STATE(981), + [sym_navigation_suffix] = STATE(2776), + [sym_call_suffix] = STATE(2777), + [sym_value_arguments] = STATE(2751), + [sym_lambda_literal] = STATE(2435), + [sym__equality_operator] = STATE(984), + [sym__comparison_operator] = STATE(985), + [sym__is_operator] = STATE(4426), + [sym__additive_operator] = STATE(986), + [sym__multiplicative_operator] = STATE(987), + [sym_as_operator] = STATE(4425), + [sym__bitwise_binary_operator] = STATE(988), + [sym__postfix_unary_operator] = STATE(3331), + [sym__eq_eq] = STATE(984), + [sym__dot] = STATE(6294), + [sym__three_dot_operator] = STATE(1385), + [sym__open_ended_range_operator] = STATE(980), + [sym__conjunction_operator] = STATE(320), + [sym__disjunction_operator] = STATE(992), + [sym__nil_coalescing_operator] = STATE(347), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4690), + [anon_sym_QMARK] = ACTIONS(4692), + [sym__immediate_quest] = ACTIONS(4692), + [anon_sym_AMP] = ACTIONS(4692), + [aux_sym_custom_operator_token1] = ACTIONS(4692), + [anon_sym_LT] = ACTIONS(4692), + [anon_sym_GT] = ACTIONS(4692), + [anon_sym_LBRACE] = ACTIONS(4690), + [anon_sym_BANG_EQ] = ACTIONS(4692), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4692), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4692), + [anon_sym_LT_EQ] = ACTIONS(4692), + [anon_sym_GT_EQ] = ACTIONS(4692), + [anon_sym_is] = ACTIONS(4690), + [anon_sym_PLUS] = ACTIONS(4692), + [anon_sym_DASH] = ACTIONS(4692), + [anon_sym_STAR] = ACTIONS(4692), + [anon_sym_SLASH] = ACTIONS(4692), + [anon_sym_PERCENT] = ACTIONS(4692), + [anon_sym_PLUS_PLUS] = ACTIONS(4692), + [anon_sym_DASH_DASH] = ACTIONS(4692), + [anon_sym_PIPE] = ACTIONS(4692), + [anon_sym_CARET] = ACTIONS(4692), + [anon_sym_LT_LT] = ACTIONS(4692), + [anon_sym_GT_GT] = ACTIONS(4692), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4690), + [sym__three_dot_operator_custom] = ACTIONS(4690), + [sym__open_ended_range_operator_custom] = ACTIONS(4690), + [sym__conjunction_operator_custom] = ACTIONS(4690), + [sym__disjunction_operator_custom] = ACTIONS(4690), + [sym__nil_coalescing_operator_custom] = ACTIONS(4690), + [sym__eq_eq_custom] = ACTIONS(4690), + [sym__plus_then_ws] = ACTIONS(4690), + [sym__minus_then_ws] = ACTIONS(4690), + [sym_bang] = ACTIONS(4690), + [sym_else] = ACTIONS(4690), + [sym__as_custom] = ACTIONS(4690), + [sym__as_quest_custom] = ACTIONS(4690), + [sym__as_bang_custom] = ACTIONS(4690), + }, + [2196] = { + [sym__quest] = STATE(937), + [sym__range_operator] = STATE(980), + [sym_custom_operator] = STATE(981), + [sym_navigation_suffix] = STATE(2776), + [sym_call_suffix] = STATE(2777), + [sym_value_arguments] = STATE(2751), + [sym_lambda_literal] = STATE(2435), + [sym__equality_operator] = STATE(984), + [sym__comparison_operator] = STATE(985), + [sym__is_operator] = STATE(4426), + [sym__additive_operator] = STATE(986), + [sym__multiplicative_operator] = STATE(987), + [sym_as_operator] = STATE(4425), + [sym__bitwise_binary_operator] = STATE(988), + [sym__postfix_unary_operator] = STATE(3331), + [sym__eq_eq] = STATE(984), + [sym__dot] = STATE(6294), + [sym__three_dot_operator] = STATE(1385), + [sym__open_ended_range_operator] = STATE(980), + [sym__conjunction_operator] = STATE(320), + [sym__disjunction_operator] = STATE(992), + [sym__nil_coalescing_operator] = STATE(347), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_QMARK] = ACTIONS(4688), + [sym__immediate_quest] = ACTIONS(4688), + [anon_sym_AMP] = ACTIONS(4688), + [aux_sym_custom_operator_token1] = ACTIONS(4688), + [anon_sym_LT] = ACTIONS(4688), + [anon_sym_GT] = ACTIONS(4688), + [anon_sym_LBRACE] = ACTIONS(4686), + [anon_sym_BANG_EQ] = ACTIONS(4688), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4688), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4688), + [anon_sym_LT_EQ] = ACTIONS(4688), + [anon_sym_GT_EQ] = ACTIONS(4688), + [anon_sym_is] = ACTIONS(4686), + [anon_sym_PLUS] = ACTIONS(4688), + [anon_sym_DASH] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5810), + [anon_sym_PERCENT] = ACTIONS(5810), + [anon_sym_PLUS_PLUS] = ACTIONS(4688), + [anon_sym_DASH_DASH] = ACTIONS(4688), + [anon_sym_PIPE] = ACTIONS(4688), + [anon_sym_CARET] = ACTIONS(4688), + [anon_sym_LT_LT] = ACTIONS(4688), + [anon_sym_GT_GT] = ACTIONS(4688), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4686), + [sym__three_dot_operator_custom] = ACTIONS(4686), + [sym__open_ended_range_operator_custom] = ACTIONS(4686), + [sym__conjunction_operator_custom] = ACTIONS(4686), + [sym__disjunction_operator_custom] = ACTIONS(4686), + [sym__nil_coalescing_operator_custom] = ACTIONS(4686), + [sym__eq_eq_custom] = ACTIONS(4686), + [sym__plus_then_ws] = ACTIONS(4686), + [sym__minus_then_ws] = ACTIONS(4686), + [sym_bang] = ACTIONS(4686), + [sym_else] = ACTIONS(4686), + [sym__as_custom] = ACTIONS(4686), + [sym__as_quest_custom] = ACTIONS(4686), + [sym__as_bang_custom] = ACTIONS(4686), + }, + [2197] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5937), + [anon_sym_COMMA] = ACTIONS(5937), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2198] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5939), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(5939), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2199] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5941), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(5941), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2200] = { + [sym__quest] = STATE(937), + [sym__range_operator] = STATE(980), + [sym_custom_operator] = STATE(981), + [sym_navigation_suffix] = STATE(2776), + [sym_call_suffix] = STATE(2777), + [sym_value_arguments] = STATE(2751), + [sym_lambda_literal] = STATE(2435), + [sym__equality_operator] = STATE(984), + [sym__comparison_operator] = STATE(985), + [sym__is_operator] = STATE(4426), + [sym__additive_operator] = STATE(986), + [sym__multiplicative_operator] = STATE(987), + [sym_as_operator] = STATE(4425), + [sym__bitwise_binary_operator] = STATE(988), + [sym__postfix_unary_operator] = STATE(3331), + [sym__eq_eq] = STATE(984), + [sym__dot] = STATE(6294), + [sym__three_dot_operator] = STATE(1385), + [sym__open_ended_range_operator] = STATE(980), + [sym__conjunction_operator] = STATE(320), + [sym__disjunction_operator] = STATE(992), + [sym__nil_coalescing_operator] = STATE(347), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4628), + [anon_sym_LPAREN] = ACTIONS(4628), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_QMARK] = ACTIONS(4630), + [sym__immediate_quest] = ACTIONS(4630), + [anon_sym_AMP] = ACTIONS(4630), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(4628), + [anon_sym_BANG_EQ] = ACTIONS(5804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5804), + [anon_sym_LT_EQ] = ACTIONS(4630), + [anon_sym_GT_EQ] = ACTIONS(4630), + [anon_sym_is] = ACTIONS(5806), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5810), + [anon_sym_PERCENT] = ACTIONS(5810), + [anon_sym_PLUS_PLUS] = ACTIONS(5812), + [anon_sym_DASH_DASH] = ACTIONS(5812), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_CARET] = ACTIONS(4630), + [anon_sym_LT_LT] = ACTIONS(4630), + [anon_sym_GT_GT] = ACTIONS(4630), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4628), + [sym__three_dot_operator_custom] = ACTIONS(4628), + [sym__open_ended_range_operator_custom] = ACTIONS(4628), + [sym__conjunction_operator_custom] = ACTIONS(5818), + [sym__disjunction_operator_custom] = ACTIONS(5820), + [sym__nil_coalescing_operator_custom] = ACTIONS(5822), + [sym__eq_eq_custom] = ACTIONS(5824), + [sym__plus_then_ws] = ACTIONS(5826), + [sym__minus_then_ws] = ACTIONS(5826), + [sym_bang] = ACTIONS(5828), + [sym_else] = ACTIONS(4628), + [sym__as_custom] = ACTIONS(4628), + [sym__as_quest_custom] = ACTIONS(4628), + [sym__as_bang_custom] = ACTIONS(4628), + }, + [2201] = { + [sym__quest] = STATE(937), + [sym__range_operator] = STATE(980), + [sym_custom_operator] = STATE(981), + [sym_navigation_suffix] = STATE(2776), + [sym_call_suffix] = STATE(2777), + [sym_value_arguments] = STATE(2751), + [sym_lambda_literal] = STATE(2435), + [sym__equality_operator] = STATE(984), + [sym__comparison_operator] = STATE(985), + [sym__is_operator] = STATE(4426), + [sym__additive_operator] = STATE(986), + [sym__multiplicative_operator] = STATE(987), + [sym_as_operator] = STATE(4425), + [sym__bitwise_binary_operator] = STATE(988), + [sym__postfix_unary_operator] = STATE(3331), + [sym__eq_eq] = STATE(984), + [sym__dot] = STATE(6294), + [sym__three_dot_operator] = STATE(1385), + [sym__open_ended_range_operator] = STATE(980), + [sym__conjunction_operator] = STATE(320), + [sym__disjunction_operator] = STATE(992), + [sym__nil_coalescing_operator] = STATE(347), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_QMARK] = ACTIONS(4664), + [sym__immediate_quest] = ACTIONS(4664), + [anon_sym_AMP] = ACTIONS(4664), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4664), + [anon_sym_GT] = ACTIONS(4664), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_BANG_EQ] = ACTIONS(4664), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4664), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4664), + [anon_sym_LT_EQ] = ACTIONS(4664), + [anon_sym_GT_EQ] = ACTIONS(4664), + [anon_sym_is] = ACTIONS(5806), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5810), + [anon_sym_PERCENT] = ACTIONS(5810), + [anon_sym_PLUS_PLUS] = ACTIONS(5812), + [anon_sym_DASH_DASH] = ACTIONS(5812), + [anon_sym_PIPE] = ACTIONS(4664), + [anon_sym_CARET] = ACTIONS(4664), + [anon_sym_LT_LT] = ACTIONS(4664), + [anon_sym_GT_GT] = ACTIONS(4664), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4662), + [sym__three_dot_operator_custom] = ACTIONS(4662), + [sym__open_ended_range_operator_custom] = ACTIONS(4662), + [sym__conjunction_operator_custom] = ACTIONS(4662), + [sym__disjunction_operator_custom] = ACTIONS(4662), + [sym__nil_coalescing_operator_custom] = ACTIONS(5822), + [sym__eq_eq_custom] = ACTIONS(4662), + [sym__plus_then_ws] = ACTIONS(5826), + [sym__minus_then_ws] = ACTIONS(5826), + [sym_bang] = ACTIONS(5828), + [sym_else] = ACTIONS(4662), + [sym__as_custom] = ACTIONS(4662), + [sym__as_quest_custom] = ACTIONS(4662), + [sym__as_bang_custom] = ACTIONS(4662), + }, + [2202] = { + [sym__quest] = STATE(937), + [sym__range_operator] = STATE(980), + [sym_custom_operator] = STATE(981), + [sym_navigation_suffix] = STATE(2776), + [sym_call_suffix] = STATE(2777), + [sym_value_arguments] = STATE(2751), + [sym_lambda_literal] = STATE(2435), + [sym__equality_operator] = STATE(984), + [sym__comparison_operator] = STATE(985), + [sym__is_operator] = STATE(4426), + [sym__additive_operator] = STATE(986), + [sym__multiplicative_operator] = STATE(987), + [sym_as_operator] = STATE(4425), + [sym__bitwise_binary_operator] = STATE(988), + [sym__postfix_unary_operator] = STATE(3331), + [sym__eq_eq] = STATE(984), + [sym__dot] = STATE(6294), + [sym__three_dot_operator] = STATE(1385), + [sym__open_ended_range_operator] = STATE(980), + [sym__conjunction_operator] = STATE(320), + [sym__disjunction_operator] = STATE(992), + [sym__nil_coalescing_operator] = STATE(347), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_QMARK] = ACTIONS(4656), + [sym__immediate_quest] = ACTIONS(4656), + [anon_sym_AMP] = ACTIONS(4656), + [aux_sym_custom_operator_token1] = ACTIONS(4656), + [anon_sym_LT] = ACTIONS(4656), + [anon_sym_GT] = ACTIONS(4656), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4656), + [anon_sym_LT_EQ] = ACTIONS(4656), + [anon_sym_GT_EQ] = ACTIONS(4656), + [anon_sym_is] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5810), + [anon_sym_PERCENT] = ACTIONS(5810), + [anon_sym_PLUS_PLUS] = ACTIONS(4656), + [anon_sym_DASH_DASH] = ACTIONS(4656), + [anon_sym_PIPE] = ACTIONS(4656), + [anon_sym_CARET] = ACTIONS(4656), + [anon_sym_LT_LT] = ACTIONS(4656), + [anon_sym_GT_GT] = ACTIONS(4656), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4654), + [sym__three_dot_operator_custom] = ACTIONS(4654), + [sym__open_ended_range_operator_custom] = ACTIONS(4654), + [sym__conjunction_operator_custom] = ACTIONS(4654), + [sym__disjunction_operator_custom] = ACTIONS(4654), + [sym__nil_coalescing_operator_custom] = ACTIONS(4654), + [sym__eq_eq_custom] = ACTIONS(4654), + [sym__plus_then_ws] = ACTIONS(5826), + [sym__minus_then_ws] = ACTIONS(5826), + [sym_bang] = ACTIONS(4654), + [sym_else] = ACTIONS(4654), + [sym__as_custom] = ACTIONS(4654), + [sym__as_quest_custom] = ACTIONS(4654), + [sym__as_bang_custom] = ACTIONS(4654), + }, + [2203] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(5943), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_RBRACK] = ACTIONS(5943), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2204] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5945), + [anon_sym_COMMA] = ACTIONS(5945), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2205] = { + [sym__dot] = STATE(6164), + [aux_sym_user_type_repeat1] = STATE(2179), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(5022), + [aux_sym_simple_identifier_token2] = ACTIONS(5020), + [aux_sym_simple_identifier_token3] = ACTIONS(5020), + [aux_sym_simple_identifier_token4] = ACTIONS(5020), + [anon_sym_nil] = ACTIONS(5022), + [sym_real_literal] = ACTIONS(5020), + [sym_integer_literal] = ACTIONS(5022), + [sym_hex_literal] = ACTIONS(5020), + [sym_oct_literal] = ACTIONS(5020), + [sym_bin_literal] = ACTIONS(5020), + [anon_sym_true] = ACTIONS(5022), + [anon_sym_false] = ACTIONS(5022), + [anon_sym_DQUOTE] = ACTIONS(5022), + [anon_sym_BSLASH] = ACTIONS(5022), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5020), + [anon_sym_LPAREN] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_async] = ACTIONS(5022), + [anon_sym_POUNDselector] = ACTIONS(5020), + [aux_sym_custom_operator_token1] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_GT] = ACTIONS(5022), + [sym__await_operator] = ACTIONS(5022), + [anon_sym_POUNDfile] = ACTIONS(5022), + [anon_sym_POUNDfileID] = ACTIONS(5020), + [anon_sym_POUNDfilePath] = ACTIONS(5020), + [anon_sym_POUNDline] = ACTIONS(5020), + [anon_sym_POUNDcolumn] = ACTIONS(5020), + [anon_sym_POUNDfunction] = ACTIONS(5020), + [anon_sym_POUNDdsohandle] = ACTIONS(5020), + [anon_sym_POUNDcolorLiteral] = ACTIONS(5020), + [anon_sym_POUNDfileLiteral] = ACTIONS(5020), + [anon_sym_POUNDimageLiteral] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_self] = ACTIONS(5022), + [anon_sym_super] = ACTIONS(5022), + [anon_sym_POUNDkeyPath] = ACTIONS(5020), + [anon_sym_try] = ACTIONS(5022), + [anon_sym_try_BANG] = ACTIONS(5020), + [anon_sym_try_QMARK] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5022), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5022), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5022), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5022), + [anon_sym_PLUS_PLUS] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5022), + [anon_sym_TILDE] = ACTIONS(5022), + [anon_sym_AT] = ACTIONS(5020), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(5020), + [sym_raw_str_end_part] = ACTIONS(5020), + [sym__dot_custom] = ACTIONS(5947), + [sym__three_dot_operator_custom] = ACTIONS(5020), + [sym__open_ended_range_operator_custom] = ACTIONS(5020), + [sym__eq_eq_custom] = ACTIONS(5020), + [sym__plus_then_ws] = ACTIONS(5020), + [sym__minus_then_ws] = ACTIONS(5020), + [sym_bang] = ACTIONS(5020), + }, + [2206] = { + [sym__quest] = STATE(937), + [sym__range_operator] = STATE(980), + [sym_custom_operator] = STATE(981), + [sym_navigation_suffix] = STATE(2776), + [sym_call_suffix] = STATE(2777), + [sym_value_arguments] = STATE(2751), + [sym_lambda_literal] = STATE(2435), + [sym__equality_operator] = STATE(984), + [sym__comparison_operator] = STATE(985), + [sym__is_operator] = STATE(4426), + [sym__additive_operator] = STATE(986), + [sym__multiplicative_operator] = STATE(987), + [sym_as_operator] = STATE(4425), + [sym__bitwise_binary_operator] = STATE(988), + [sym__postfix_unary_operator] = STATE(3331), + [sym__eq_eq] = STATE(984), + [sym__dot] = STATE(6294), + [sym__three_dot_operator] = STATE(1385), + [sym__open_ended_range_operator] = STATE(980), + [sym__conjunction_operator] = STATE(320), + [sym__disjunction_operator] = STATE(992), + [sym__nil_coalescing_operator] = STATE(347), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4642), + [anon_sym_LPAREN] = ACTIONS(4642), + [anon_sym_LBRACK] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4644), + [sym__immediate_quest] = ACTIONS(5798), + [anon_sym_AMP] = ACTIONS(5800), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5802), + [anon_sym_GT] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_BANG_EQ] = ACTIONS(5804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5804), + [anon_sym_LT_EQ] = ACTIONS(5802), + [anon_sym_GT_EQ] = ACTIONS(5802), + [anon_sym_is] = ACTIONS(5806), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5810), + [anon_sym_PERCENT] = ACTIONS(5810), + [anon_sym_PLUS_PLUS] = ACTIONS(5812), + [anon_sym_DASH_DASH] = ACTIONS(5812), + [anon_sym_PIPE] = ACTIONS(5800), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_LT_LT] = ACTIONS(5800), + [anon_sym_GT_GT] = ACTIONS(5800), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5814), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(5816), + [sym__conjunction_operator_custom] = ACTIONS(5818), + [sym__disjunction_operator_custom] = ACTIONS(5820), + [sym__nil_coalescing_operator_custom] = ACTIONS(5822), + [sym__eq_eq_custom] = ACTIONS(5824), + [sym__plus_then_ws] = ACTIONS(5826), + [sym__minus_then_ws] = ACTIONS(5826), + [sym_bang] = ACTIONS(5828), + [sym_else] = ACTIONS(4642), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2207] = { + [sym__quest] = STATE(937), + [sym__range_operator] = STATE(980), + [sym_custom_operator] = STATE(981), + [sym_navigation_suffix] = STATE(2776), + [sym_call_suffix] = STATE(2777), + [sym_value_arguments] = STATE(2751), + [sym_lambda_literal] = STATE(2435), + [sym__equality_operator] = STATE(984), + [sym__comparison_operator] = STATE(985), + [sym__is_operator] = STATE(4426), + [sym__additive_operator] = STATE(986), + [sym__multiplicative_operator] = STATE(987), + [sym_as_operator] = STATE(4425), + [sym__bitwise_binary_operator] = STATE(988), + [sym__postfix_unary_operator] = STATE(3331), + [sym__eq_eq] = STATE(984), + [sym__dot] = STATE(6294), + [sym__three_dot_operator] = STATE(1385), + [sym__open_ended_range_operator] = STATE(980), + [sym__conjunction_operator] = STATE(320), + [sym__disjunction_operator] = STATE(992), + [sym__nil_coalescing_operator] = STATE(347), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(5796), + [anon_sym_QMARK] = ACTIONS(5929), + [sym__immediate_quest] = ACTIONS(5798), + [anon_sym_AMP] = ACTIONS(5800), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5802), + [anon_sym_GT] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5931), + [anon_sym_BANG_EQ] = ACTIONS(5804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5804), + [anon_sym_LT_EQ] = ACTIONS(5802), + [anon_sym_GT_EQ] = ACTIONS(5802), + [anon_sym_is] = ACTIONS(5806), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5810), + [anon_sym_PERCENT] = ACTIONS(5810), + [anon_sym_PLUS_PLUS] = ACTIONS(5812), + [anon_sym_DASH_DASH] = ACTIONS(5812), + [anon_sym_PIPE] = ACTIONS(5800), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_LT_LT] = ACTIONS(5800), + [anon_sym_GT_GT] = ACTIONS(5800), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5814), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(5816), + [sym__conjunction_operator_custom] = ACTIONS(5818), + [sym__disjunction_operator_custom] = ACTIONS(5820), + [sym__nil_coalescing_operator_custom] = ACTIONS(5822), + [sym__eq_eq_custom] = ACTIONS(5824), + [sym__plus_then_ws] = ACTIONS(5826), + [sym__minus_then_ws] = ACTIONS(5826), + [sym_bang] = ACTIONS(5828), + [sym_else] = ACTIONS(4678), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2208] = { + [sym__quest] = STATE(937), + [sym__range_operator] = STATE(980), + [sym_custom_operator] = STATE(981), + [sym_navigation_suffix] = STATE(2776), + [sym_call_suffix] = STATE(2777), + [sym_value_arguments] = STATE(2751), + [sym_lambda_literal] = STATE(2435), + [sym__equality_operator] = STATE(984), + [sym__comparison_operator] = STATE(985), + [sym__is_operator] = STATE(4426), + [sym__additive_operator] = STATE(986), + [sym__multiplicative_operator] = STATE(987), + [sym_as_operator] = STATE(4425), + [sym__bitwise_binary_operator] = STATE(988), + [sym__postfix_unary_operator] = STATE(3331), + [sym__eq_eq] = STATE(984), + [sym__dot] = STATE(6294), + [sym__three_dot_operator] = STATE(1385), + [sym__open_ended_range_operator] = STATE(980), + [sym__conjunction_operator] = STATE(320), + [sym__disjunction_operator] = STATE(992), + [sym__nil_coalescing_operator] = STATE(347), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4694), + [anon_sym_LPAREN] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(5796), + [anon_sym_QMARK] = ACTIONS(5929), + [sym__immediate_quest] = ACTIONS(5798), + [anon_sym_AMP] = ACTIONS(5800), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5802), + [anon_sym_GT] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5931), + [anon_sym_BANG_EQ] = ACTIONS(5804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5804), + [anon_sym_LT_EQ] = ACTIONS(5802), + [anon_sym_GT_EQ] = ACTIONS(5802), + [anon_sym_is] = ACTIONS(5806), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5810), + [anon_sym_PERCENT] = ACTIONS(5810), + [anon_sym_PLUS_PLUS] = ACTIONS(5812), + [anon_sym_DASH_DASH] = ACTIONS(5812), + [anon_sym_PIPE] = ACTIONS(5800), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_LT_LT] = ACTIONS(5800), + [anon_sym_GT_GT] = ACTIONS(5800), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5814), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(5816), + [sym__conjunction_operator_custom] = ACTIONS(5818), + [sym__disjunction_operator_custom] = ACTIONS(5820), + [sym__nil_coalescing_operator_custom] = ACTIONS(5822), + [sym__eq_eq_custom] = ACTIONS(5824), + [sym__plus_then_ws] = ACTIONS(5826), + [sym__minus_then_ws] = ACTIONS(5826), + [sym_bang] = ACTIONS(5828), + [sym_else] = ACTIONS(4694), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2209] = { + [sym__quest] = STATE(937), + [sym__range_operator] = STATE(980), + [sym_custom_operator] = STATE(981), + [sym_navigation_suffix] = STATE(2776), + [sym_call_suffix] = STATE(2777), + [sym_value_arguments] = STATE(2751), + [sym_lambda_literal] = STATE(2435), + [sym__equality_operator] = STATE(984), + [sym__comparison_operator] = STATE(985), + [sym__is_operator] = STATE(4426), + [sym__additive_operator] = STATE(986), + [sym__multiplicative_operator] = STATE(987), + [sym_as_operator] = STATE(4425), + [sym__bitwise_binary_operator] = STATE(988), + [sym__postfix_unary_operator] = STATE(3331), + [sym__eq_eq] = STATE(984), + [sym__dot] = STATE(6294), + [sym__three_dot_operator] = STATE(1385), + [sym__open_ended_range_operator] = STATE(980), + [sym__conjunction_operator] = STATE(320), + [sym__disjunction_operator] = STATE(992), + [sym__nil_coalescing_operator] = STATE(347), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4646), + [anon_sym_LPAREN] = ACTIONS(4646), + [anon_sym_LBRACK] = ACTIONS(4646), + [anon_sym_QMARK] = ACTIONS(4648), + [sym__immediate_quest] = ACTIONS(4648), + [anon_sym_AMP] = ACTIONS(4648), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(4648), + [anon_sym_GT] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_BANG_EQ] = ACTIONS(4648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4648), + [anon_sym_LT_EQ] = ACTIONS(4648), + [anon_sym_GT_EQ] = ACTIONS(4648), + [anon_sym_is] = ACTIONS(4646), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5810), + [anon_sym_PERCENT] = ACTIONS(5810), + [anon_sym_PLUS_PLUS] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4648), + [anon_sym_PIPE] = ACTIONS(4648), + [anon_sym_CARET] = ACTIONS(4648), + [anon_sym_LT_LT] = ACTIONS(4648), + [anon_sym_GT_GT] = ACTIONS(4648), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4646), + [sym__three_dot_operator_custom] = ACTIONS(4646), + [sym__open_ended_range_operator_custom] = ACTIONS(4646), + [sym__conjunction_operator_custom] = ACTIONS(4646), + [sym__disjunction_operator_custom] = ACTIONS(4646), + [sym__nil_coalescing_operator_custom] = ACTIONS(5822), + [sym__eq_eq_custom] = ACTIONS(4646), + [sym__plus_then_ws] = ACTIONS(5826), + [sym__minus_then_ws] = ACTIONS(5826), + [sym_bang] = ACTIONS(4646), + [sym_else] = ACTIONS(4646), + [sym__as_custom] = ACTIONS(4646), + [sym__as_quest_custom] = ACTIONS(4646), + [sym__as_bang_custom] = ACTIONS(4646), + }, + [2210] = { + [sym__quest] = STATE(937), + [sym__range_operator] = STATE(980), + [sym_custom_operator] = STATE(981), + [sym_navigation_suffix] = STATE(2776), + [sym_call_suffix] = STATE(2777), + [sym_value_arguments] = STATE(2751), + [sym_lambda_literal] = STATE(2435), + [sym__equality_operator] = STATE(984), + [sym__comparison_operator] = STATE(985), + [sym__is_operator] = STATE(4426), + [sym__additive_operator] = STATE(986), + [sym__multiplicative_operator] = STATE(987), + [sym_as_operator] = STATE(4425), + [sym__bitwise_binary_operator] = STATE(988), + [sym__postfix_unary_operator] = STATE(3331), + [sym__eq_eq] = STATE(984), + [sym__dot] = STATE(6294), + [sym__three_dot_operator] = STATE(1385), + [sym__open_ended_range_operator] = STATE(980), + [sym__conjunction_operator] = STATE(320), + [sym__disjunction_operator] = STATE(992), + [sym__nil_coalescing_operator] = STATE(347), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(5796), + [anon_sym_QMARK] = ACTIONS(5929), + [sym__immediate_quest] = ACTIONS(5798), + [anon_sym_AMP] = ACTIONS(5800), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5802), + [anon_sym_GT] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5931), + [anon_sym_BANG_EQ] = ACTIONS(5804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5804), + [anon_sym_LT_EQ] = ACTIONS(5802), + [anon_sym_GT_EQ] = ACTIONS(5802), + [anon_sym_is] = ACTIONS(5806), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5810), + [anon_sym_PERCENT] = ACTIONS(5810), + [anon_sym_PLUS_PLUS] = ACTIONS(5812), + [anon_sym_DASH_DASH] = ACTIONS(5812), + [anon_sym_PIPE] = ACTIONS(5800), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_LT_LT] = ACTIONS(5800), + [anon_sym_GT_GT] = ACTIONS(5800), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5814), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(5816), + [sym__conjunction_operator_custom] = ACTIONS(5818), + [sym__disjunction_operator_custom] = ACTIONS(5820), + [sym__nil_coalescing_operator_custom] = ACTIONS(5822), + [sym__eq_eq_custom] = ACTIONS(5824), + [sym__plus_then_ws] = ACTIONS(5826), + [sym__minus_then_ws] = ACTIONS(5826), + [sym_bang] = ACTIONS(5828), + [sym_else] = ACTIONS(4698), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2211] = { + [sym_attribute] = STATE(2178), + [aux_sym_capture_list_repeat1] = STATE(2178), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(5950), + [aux_sym_simple_identifier_token2] = ACTIONS(5952), + [aux_sym_simple_identifier_token3] = ACTIONS(5952), + [aux_sym_simple_identifier_token4] = ACTIONS(5952), + [anon_sym_nil] = ACTIONS(5950), + [sym_real_literal] = ACTIONS(5952), + [sym_integer_literal] = ACTIONS(5950), + [sym_hex_literal] = ACTIONS(5952), + [sym_oct_literal] = ACTIONS(5952), + [sym_bin_literal] = ACTIONS(5952), + [anon_sym_true] = ACTIONS(5950), + [anon_sym_false] = ACTIONS(5950), + [anon_sym_DQUOTE] = ACTIONS(5950), + [anon_sym_BSLASH] = ACTIONS(5950), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5952), + [anon_sym_LPAREN] = ACTIONS(5952), + [anon_sym_LBRACK] = ACTIONS(5952), + [anon_sym_AMP] = ACTIONS(5950), + [anon_sym_async] = ACTIONS(5950), + [anon_sym_POUNDselector] = ACTIONS(5952), + [aux_sym_custom_operator_token1] = ACTIONS(5950), + [anon_sym_LT] = ACTIONS(5950), + [anon_sym_GT] = ACTIONS(5950), + [sym__await_operator] = ACTIONS(5950), + [anon_sym_POUNDfile] = ACTIONS(5950), + [anon_sym_POUNDfileID] = ACTIONS(5952), + [anon_sym_POUNDfilePath] = ACTIONS(5952), + [anon_sym_POUNDline] = ACTIONS(5952), + [anon_sym_POUNDcolumn] = ACTIONS(5952), + [anon_sym_POUNDfunction] = ACTIONS(5952), + [anon_sym_POUNDdsohandle] = ACTIONS(5952), + [anon_sym_POUNDcolorLiteral] = ACTIONS(5952), + [anon_sym_POUNDfileLiteral] = ACTIONS(5952), + [anon_sym_POUNDimageLiteral] = ACTIONS(5952), + [anon_sym_LBRACE] = ACTIONS(5952), + [anon_sym_self] = ACTIONS(5950), + [anon_sym_super] = ACTIONS(5950), + [anon_sym_POUNDkeyPath] = ACTIONS(5952), + [anon_sym_try] = ACTIONS(5950), + [anon_sym_try_BANG] = ACTIONS(5952), + [anon_sym_try_QMARK] = ACTIONS(5952), + [anon_sym_BANG_EQ] = ACTIONS(5950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5950), + [anon_sym_LT_EQ] = ACTIONS(5950), + [anon_sym_GT_EQ] = ACTIONS(5950), + [anon_sym_PLUS] = ACTIONS(5950), + [anon_sym_DASH] = ACTIONS(5950), + [anon_sym_STAR] = ACTIONS(5950), + [anon_sym_SLASH] = ACTIONS(5950), + [anon_sym_PERCENT] = ACTIONS(5950), + [anon_sym_PLUS_PLUS] = ACTIONS(5950), + [anon_sym_DASH_DASH] = ACTIONS(5950), + [anon_sym_TILDE] = ACTIONS(5950), + [anon_sym_AT] = ACTIONS(1079), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(5952), + [sym_raw_str_end_part] = ACTIONS(5952), + [sym__dot_custom] = ACTIONS(5952), + [sym__three_dot_operator_custom] = ACTIONS(5952), + [sym__open_ended_range_operator_custom] = ACTIONS(5952), + [sym__eq_eq_custom] = ACTIONS(5952), + [sym__plus_then_ws] = ACTIONS(5952), + [sym__minus_then_ws] = ACTIONS(5952), + [sym_bang] = ACTIONS(5952), + }, + [2212] = { + [sym__quest] = STATE(937), + [sym__range_operator] = STATE(980), + [sym_custom_operator] = STATE(981), + [sym_navigation_suffix] = STATE(2776), + [sym_call_suffix] = STATE(2777), + [sym_value_arguments] = STATE(2751), + [sym_lambda_literal] = STATE(2435), + [sym__equality_operator] = STATE(984), + [sym__comparison_operator] = STATE(985), + [sym__is_operator] = STATE(4426), + [sym__additive_operator] = STATE(986), + [sym__multiplicative_operator] = STATE(987), + [sym_as_operator] = STATE(4425), + [sym__bitwise_binary_operator] = STATE(988), + [sym__postfix_unary_operator] = STATE(3331), + [sym__eq_eq] = STATE(984), + [sym__dot] = STATE(6294), + [sym__three_dot_operator] = STATE(1385), + [sym__open_ended_range_operator] = STATE(980), + [sym__conjunction_operator] = STATE(320), + [sym__disjunction_operator] = STATE(992), + [sym__nil_coalescing_operator] = STATE(347), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4813), + [anon_sym_LPAREN] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(5796), + [anon_sym_QMARK] = ACTIONS(5929), + [sym__immediate_quest] = ACTIONS(5798), + [anon_sym_AMP] = ACTIONS(5800), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5802), + [anon_sym_GT] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5931), + [anon_sym_BANG_EQ] = ACTIONS(5804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5804), + [anon_sym_LT_EQ] = ACTIONS(5802), + [anon_sym_GT_EQ] = ACTIONS(5802), + [anon_sym_is] = ACTIONS(5806), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5810), + [anon_sym_PERCENT] = ACTIONS(5810), + [anon_sym_PLUS_PLUS] = ACTIONS(5812), + [anon_sym_DASH_DASH] = ACTIONS(5812), + [anon_sym_PIPE] = ACTIONS(5800), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_LT_LT] = ACTIONS(5800), + [anon_sym_GT_GT] = ACTIONS(5800), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5814), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(5816), + [sym__conjunction_operator_custom] = ACTIONS(5818), + [sym__disjunction_operator_custom] = ACTIONS(5820), + [sym__nil_coalescing_operator_custom] = ACTIONS(5822), + [sym__eq_eq_custom] = ACTIONS(5824), + [sym__plus_then_ws] = ACTIONS(5826), + [sym__minus_then_ws] = ACTIONS(5826), + [sym_bang] = ACTIONS(5828), + [sym_else] = ACTIONS(4813), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2213] = { + [sym__quest] = STATE(937), + [sym__range_operator] = STATE(980), + [sym_custom_operator] = STATE(981), + [sym_navigation_suffix] = STATE(2776), + [sym_call_suffix] = STATE(2777), + [sym_value_arguments] = STATE(2751), + [sym_lambda_literal] = STATE(2435), + [sym__equality_operator] = STATE(984), + [sym__comparison_operator] = STATE(985), + [sym__is_operator] = STATE(4426), + [sym__additive_operator] = STATE(986), + [sym__multiplicative_operator] = STATE(987), + [sym_as_operator] = STATE(4425), + [sym__bitwise_binary_operator] = STATE(988), + [sym__postfix_unary_operator] = STATE(3331), + [sym__eq_eq] = STATE(984), + [sym__dot] = STATE(6294), + [sym__three_dot_operator] = STATE(1385), + [sym__open_ended_range_operator] = STATE(980), + [sym__conjunction_operator] = STATE(320), + [sym__disjunction_operator] = STATE(992), + [sym__nil_coalescing_operator] = STATE(347), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4809), + [anon_sym_LPAREN] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(5796), + [anon_sym_QMARK] = ACTIONS(5929), + [sym__immediate_quest] = ACTIONS(5798), + [anon_sym_AMP] = ACTIONS(5800), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5802), + [anon_sym_GT] = ACTIONS(5802), + [anon_sym_LBRACE] = ACTIONS(5931), + [anon_sym_BANG_EQ] = ACTIONS(5804), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5804), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5804), + [anon_sym_LT_EQ] = ACTIONS(5802), + [anon_sym_GT_EQ] = ACTIONS(5802), + [anon_sym_is] = ACTIONS(5806), + [anon_sym_PLUS] = ACTIONS(5808), + [anon_sym_DASH] = ACTIONS(5808), + [anon_sym_STAR] = ACTIONS(5810), + [anon_sym_SLASH] = ACTIONS(5810), + [anon_sym_PERCENT] = ACTIONS(5810), + [anon_sym_PLUS_PLUS] = ACTIONS(5812), + [anon_sym_DASH_DASH] = ACTIONS(5812), + [anon_sym_PIPE] = ACTIONS(5800), + [anon_sym_CARET] = ACTIONS(5800), + [anon_sym_LT_LT] = ACTIONS(5800), + [anon_sym_GT_GT] = ACTIONS(5800), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(5814), + [sym__three_dot_operator_custom] = ACTIONS(967), + [sym__open_ended_range_operator_custom] = ACTIONS(5816), + [sym__conjunction_operator_custom] = ACTIONS(5818), + [sym__disjunction_operator_custom] = ACTIONS(5820), + [sym__nil_coalescing_operator_custom] = ACTIONS(5822), + [sym__eq_eq_custom] = ACTIONS(5824), + [sym__plus_then_ws] = ACTIONS(5826), + [sym__minus_then_ws] = ACTIONS(5826), + [sym_bang] = ACTIONS(5828), + [sym_else] = ACTIONS(4809), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2214] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5686), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(4841), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(4841), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2215] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(5954), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2216] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5956), + [anon_sym_COMMA] = ACTIONS(5956), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2217] = { + [sym_protocol_property_declaration] = STATE(8022), + [sym_typealias_declaration] = STATE(8022), + [sym__modifierless_typealias_declaration] = STATE(8214), + [sym__bodyless_function_declaration] = STATE(6405), + [sym__modifierless_function_declaration_no_body] = STATE(8117), + [sym__constructor_function_decl] = STATE(7095), + [sym__non_constructor_function_decl] = STATE(7096), + [sym__async_modifier] = STATE(10025), + [sym__protocol_member_declarations] = STATE(10311), + [sym__protocol_member_declaration] = STATE(8022), + [sym_deinit_declaration] = STATE(8022), + [sym_subscript_declaration] = STATE(8022), + [sym_associatedtype_declaration] = STATE(8022), + [sym_attribute] = STATE(2680), + [sym_value_binding_pattern] = STATE(6096), + [sym_modifiers] = STATE(4771), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5958), + [anon_sym_RBRACE] = ACTIONS(5960), + [anon_sym_typealias] = ACTIONS(5962), + [anon_sym_class] = ACTIONS(5964), + [anon_sym_let] = ACTIONS(5966), + [anon_sym_var] = ACTIONS(5966), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5968), + [anon_sym_subscript] = ACTIONS(5970), + [anon_sym_prefix] = ACTIONS(5972), + [anon_sym_infix] = ACTIONS(5972), + [anon_sym_postfix] = ACTIONS(5972), + [anon_sym_associatedtype] = ACTIONS(5974), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [2218] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(5976), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2219] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5978), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2220] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5980), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2221] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5982), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2222] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4813), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(4813), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2223] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COMMA] = ACTIONS(4809), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(4809), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2224] = { + [sym_protocol_property_declaration] = STATE(8022), + [sym_typealias_declaration] = STATE(8022), + [sym__modifierless_typealias_declaration] = STATE(8214), + [sym__bodyless_function_declaration] = STATE(6405), + [sym__modifierless_function_declaration_no_body] = STATE(8117), + [sym__constructor_function_decl] = STATE(7095), + [sym__non_constructor_function_decl] = STATE(7096), + [sym__async_modifier] = STATE(10025), + [sym__protocol_member_declarations] = STATE(10276), + [sym__protocol_member_declaration] = STATE(8022), + [sym_deinit_declaration] = STATE(8022), + [sym_subscript_declaration] = STATE(8022), + [sym_associatedtype_declaration] = STATE(8022), + [sym_attribute] = STATE(2680), + [sym_value_binding_pattern] = STATE(6096), + [sym_modifiers] = STATE(4771), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5958), + [anon_sym_RBRACE] = ACTIONS(5984), + [anon_sym_typealias] = ACTIONS(5962), + [anon_sym_class] = ACTIONS(5964), + [anon_sym_let] = ACTIONS(5966), + [anon_sym_var] = ACTIONS(5966), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5968), + [anon_sym_subscript] = ACTIONS(5970), + [anon_sym_prefix] = ACTIONS(5972), + [anon_sym_infix] = ACTIONS(5972), + [anon_sym_postfix] = ACTIONS(5972), + [anon_sym_associatedtype] = ACTIONS(5974), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [2225] = { + [sym__quest] = STATE(945), + [sym__range_operator] = STATE(910), + [sym_custom_operator] = STATE(908), + [sym_navigation_suffix] = STATE(2717), + [sym_call_suffix] = STATE(2712), + [sym_value_arguments] = STATE(2706), + [sym_lambda_literal] = STATE(2376), + [sym__equality_operator] = STATE(860), + [sym__comparison_operator] = STATE(859), + [sym__is_operator] = STATE(4506), + [sym__additive_operator] = STATE(846), + [sym__multiplicative_operator] = STATE(840), + [sym_as_operator] = STATE(4507), + [sym__bitwise_binary_operator] = STATE(832), + [sym__postfix_unary_operator] = STATE(3180), + [sym__eq_eq] = STATE(860), + [sym__dot] = STATE(6050), + [sym__three_dot_operator] = STATE(1348), + [sym__open_ended_range_operator] = STATE(910), + [sym__conjunction_operator] = STATE(336), + [sym__disjunction_operator] = STATE(785), + [sym__nil_coalescing_operator] = STATE(780), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(5638), + [anon_sym_LBRACK] = ACTIONS(5640), + [anon_sym_QMARK] = ACTIONS(5686), + [sym__immediate_quest] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5644), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5646), + [anon_sym_GT] = ACTIONS(5646), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_BANG_EQ] = ACTIONS(5648), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5648), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5648), + [anon_sym_LT_EQ] = ACTIONS(5646), + [anon_sym_GT_EQ] = ACTIONS(5646), + [anon_sym_is] = ACTIONS(5650), + [anon_sym_PLUS] = ACTIONS(5652), + [anon_sym_DASH] = ACTIONS(5652), + [anon_sym_STAR] = ACTIONS(5654), + [anon_sym_SLASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_PLUS_PLUS] = ACTIONS(5656), + [anon_sym_DASH_DASH] = ACTIONS(5656), + [anon_sym_PIPE] = ACTIONS(5644), + [anon_sym_CARET] = ACTIONS(5644), + [anon_sym_LT_LT] = ACTIONS(5644), + [anon_sym_GT_GT] = ACTIONS(5644), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__semi] = ACTIONS(5986), + [sym__dot_custom] = ACTIONS(5658), + [sym__three_dot_operator_custom] = ACTIONS(133), + [sym__open_ended_range_operator_custom] = ACTIONS(5660), + [sym__conjunction_operator_custom] = ACTIONS(5662), + [sym__disjunction_operator_custom] = ACTIONS(5664), + [sym__nil_coalescing_operator_custom] = ACTIONS(5666), + [sym__eq_eq_custom] = ACTIONS(5668), + [sym__plus_then_ws] = ACTIONS(5670), + [sym__minus_then_ws] = ACTIONS(5670), + [sym_bang] = ACTIONS(5672), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2226] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5988), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2227] = { + [sym_type_arguments] = STATE(2257), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(5086), + [aux_sym_simple_identifier_token2] = ACTIONS(5084), + [aux_sym_simple_identifier_token3] = ACTIONS(5084), + [aux_sym_simple_identifier_token4] = ACTIONS(5084), + [anon_sym_nil] = ACTIONS(5086), + [sym_real_literal] = ACTIONS(5084), + [sym_integer_literal] = ACTIONS(5086), + [sym_hex_literal] = ACTIONS(5084), + [sym_oct_literal] = ACTIONS(5084), + [sym_bin_literal] = ACTIONS(5084), + [anon_sym_true] = ACTIONS(5086), + [anon_sym_false] = ACTIONS(5086), + [anon_sym_DQUOTE] = ACTIONS(5086), + [anon_sym_BSLASH] = ACTIONS(5086), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5084), + [anon_sym_LPAREN] = ACTIONS(5084), + [anon_sym_LBRACK] = ACTIONS(5084), + [anon_sym_AMP] = ACTIONS(5086), + [anon_sym_async] = ACTIONS(5086), + [anon_sym_POUNDselector] = ACTIONS(5084), + [aux_sym_custom_operator_token1] = ACTIONS(5086), + [anon_sym_LT] = ACTIONS(5990), + [anon_sym_GT] = ACTIONS(5086), + [sym__await_operator] = ACTIONS(5086), + [anon_sym_POUNDfile] = ACTIONS(5086), + [anon_sym_POUNDfileID] = ACTIONS(5084), + [anon_sym_POUNDfilePath] = ACTIONS(5084), + [anon_sym_POUNDline] = ACTIONS(5084), + [anon_sym_POUNDcolumn] = ACTIONS(5084), + [anon_sym_POUNDfunction] = ACTIONS(5084), + [anon_sym_POUNDdsohandle] = ACTIONS(5084), + [anon_sym_POUNDcolorLiteral] = ACTIONS(5084), + [anon_sym_POUNDfileLiteral] = ACTIONS(5084), + [anon_sym_POUNDimageLiteral] = ACTIONS(5084), + [anon_sym_LBRACE] = ACTIONS(5084), + [anon_sym_self] = ACTIONS(5086), + [anon_sym_super] = ACTIONS(5086), + [anon_sym_POUNDkeyPath] = ACTIONS(5084), + [anon_sym_try] = ACTIONS(5086), + [anon_sym_try_BANG] = ACTIONS(5084), + [anon_sym_try_QMARK] = ACTIONS(5084), + [anon_sym_BANG_EQ] = ACTIONS(5086), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5086), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5086), + [anon_sym_LT_EQ] = ACTIONS(5086), + [anon_sym_GT_EQ] = ACTIONS(5086), + [anon_sym_PLUS] = ACTIONS(5086), + [anon_sym_DASH] = ACTIONS(5086), + [anon_sym_STAR] = ACTIONS(5086), + [anon_sym_SLASH] = ACTIONS(5086), + [anon_sym_PERCENT] = ACTIONS(5086), + [anon_sym_PLUS_PLUS] = ACTIONS(5086), + [anon_sym_DASH_DASH] = ACTIONS(5086), + [anon_sym_TILDE] = ACTIONS(5086), + [anon_sym_AT] = ACTIONS(5084), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(5084), + [sym_raw_str_end_part] = ACTIONS(5084), + [sym__dot_custom] = ACTIONS(5084), + [sym__three_dot_operator_custom] = ACTIONS(5084), + [sym__open_ended_range_operator_custom] = ACTIONS(5084), + [sym__eq_eq_custom] = ACTIONS(5084), + [sym__plus_then_ws] = ACTIONS(5084), + [sym__minus_then_ws] = ACTIONS(5084), + [sym_bang] = ACTIONS(5084), + }, + [2228] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(5992), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2229] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5994), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2230] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(5996), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2231] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(5998), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2232] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(6000), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2233] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(6002), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2234] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(6004), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2235] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(6006), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2236] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(6008), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2237] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(6010), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2238] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(6012), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2239] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(6014), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2240] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(6016), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2241] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(6018), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2242] = { + [sym_protocol_property_declaration] = STATE(8022), + [sym_typealias_declaration] = STATE(8022), + [sym__modifierless_typealias_declaration] = STATE(8214), + [sym__bodyless_function_declaration] = STATE(6405), + [sym__modifierless_function_declaration_no_body] = STATE(8117), + [sym__constructor_function_decl] = STATE(7095), + [sym__non_constructor_function_decl] = STATE(7096), + [sym__async_modifier] = STATE(10025), + [sym__protocol_member_declarations] = STATE(10418), + [sym__protocol_member_declaration] = STATE(8022), + [sym_deinit_declaration] = STATE(8022), + [sym_subscript_declaration] = STATE(8022), + [sym_associatedtype_declaration] = STATE(8022), + [sym_attribute] = STATE(2680), + [sym_value_binding_pattern] = STATE(6096), + [sym_modifiers] = STATE(4771), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5958), + [anon_sym_RBRACE] = ACTIONS(6020), + [anon_sym_typealias] = ACTIONS(5962), + [anon_sym_class] = ACTIONS(5964), + [anon_sym_let] = ACTIONS(5966), + [anon_sym_var] = ACTIONS(5966), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5968), + [anon_sym_subscript] = ACTIONS(5970), + [anon_sym_prefix] = ACTIONS(5972), + [anon_sym_infix] = ACTIONS(5972), + [anon_sym_postfix] = ACTIONS(5972), + [anon_sym_associatedtype] = ACTIONS(5974), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [2243] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(6022), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2244] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(5676), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2245] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(6024), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2246] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(6026), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2247] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON] = ACTIONS(6028), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2248] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(6030), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2249] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_RPAREN] = ACTIONS(6032), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(5682), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2250] = { + [sym_protocol_property_declaration] = STATE(9191), + [sym_typealias_declaration] = STATE(9191), + [sym__modifierless_typealias_declaration] = STATE(8214), + [sym__bodyless_function_declaration] = STATE(6405), + [sym__modifierless_function_declaration_no_body] = STATE(8117), + [sym__constructor_function_decl] = STATE(7095), + [sym__non_constructor_function_decl] = STATE(7096), + [sym__async_modifier] = STATE(10025), + [sym__protocol_member_declaration] = STATE(9191), + [sym_deinit_declaration] = STATE(9191), + [sym_subscript_declaration] = STATE(9191), + [sym_associatedtype_declaration] = STATE(9191), + [sym_attribute] = STATE(2680), + [sym_value_binding_pattern] = STATE(6096), + [sym_modifiers] = STATE(4771), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5958), + [anon_sym_RBRACE] = ACTIONS(6034), + [anon_sym_typealias] = ACTIONS(5962), + [anon_sym_class] = ACTIONS(5964), + [anon_sym_let] = ACTIONS(5966), + [anon_sym_var] = ACTIONS(5966), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5968), + [anon_sym_subscript] = ACTIONS(5970), + [anon_sym_prefix] = ACTIONS(5972), + [anon_sym_infix] = ACTIONS(5972), + [anon_sym_postfix] = ACTIONS(5972), + [anon_sym_associatedtype] = ACTIONS(5974), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [2251] = { + [sym_simple_identifier] = STATE(5826), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(6036), + [aux_sym_simple_identifier_token2] = ACTIONS(6038), + [aux_sym_simple_identifier_token3] = ACTIONS(6038), + [aux_sym_simple_identifier_token4] = ACTIONS(6038), + [anon_sym_nil] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_oct_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_BSLASH] = ACTIONS(4527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_AMP] = ACTIONS(4527), + [anon_sym_async] = ACTIONS(4527), + [anon_sym_POUNDselector] = ACTIONS(4529), + [aux_sym_custom_operator_token1] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_GT] = ACTIONS(4527), + [sym__await_operator] = ACTIONS(4527), + [anon_sym_POUNDfile] = ACTIONS(4527), + [anon_sym_POUNDfileID] = ACTIONS(4529), + [anon_sym_POUNDfilePath] = ACTIONS(4529), + [anon_sym_POUNDline] = ACTIONS(4529), + [anon_sym_POUNDcolumn] = ACTIONS(4529), + [anon_sym_POUNDfunction] = ACTIONS(4529), + [anon_sym_POUNDdsohandle] = ACTIONS(4529), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4529), + [anon_sym_POUNDfileLiteral] = ACTIONS(4529), + [anon_sym_POUNDimageLiteral] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_self] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_POUNDkeyPath] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_try_BANG] = ACTIONS(4529), + [anon_sym_try_QMARK] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), + [anon_sym_TILDE] = ACTIONS(4527), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4529), + [sym_raw_str_end_part] = ACTIONS(4529), + [sym__dot_custom] = ACTIONS(4529), + [sym__three_dot_operator_custom] = ACTIONS(4529), + [sym__open_ended_range_operator_custom] = ACTIONS(4529), + [sym__eq_eq_custom] = ACTIONS(4529), + [sym__plus_then_ws] = ACTIONS(4529), + [sym__minus_then_ws] = ACTIONS(4529), + [sym_bang] = ACTIONS(4529), + }, + [2252] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(6040), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2253] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(6042), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2254] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(5134), + [aux_sym_simple_identifier_token2] = ACTIONS(5132), + [aux_sym_simple_identifier_token3] = ACTIONS(5132), + [aux_sym_simple_identifier_token4] = ACTIONS(5132), + [anon_sym_nil] = ACTIONS(5134), + [sym_real_literal] = ACTIONS(5132), + [sym_integer_literal] = ACTIONS(5134), + [sym_hex_literal] = ACTIONS(5132), + [sym_oct_literal] = ACTIONS(5132), + [sym_bin_literal] = ACTIONS(5132), + [anon_sym_true] = ACTIONS(5134), + [anon_sym_false] = ACTIONS(5134), + [anon_sym_DQUOTE] = ACTIONS(5134), + [anon_sym_BSLASH] = ACTIONS(5134), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5132), + [anon_sym_LPAREN] = ACTIONS(5132), + [anon_sym_LBRACK] = ACTIONS(5132), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_async] = ACTIONS(5134), + [anon_sym_POUNDselector] = ACTIONS(5132), + [aux_sym_custom_operator_token1] = ACTIONS(5134), + [anon_sym_LT] = ACTIONS(5134), + [anon_sym_GT] = ACTIONS(5134), + [sym__await_operator] = ACTIONS(5134), + [anon_sym_POUNDfile] = ACTIONS(5134), + [anon_sym_POUNDfileID] = ACTIONS(5132), + [anon_sym_POUNDfilePath] = ACTIONS(5132), + [anon_sym_POUNDline] = ACTIONS(5132), + [anon_sym_POUNDcolumn] = ACTIONS(5132), + [anon_sym_POUNDfunction] = ACTIONS(5132), + [anon_sym_POUNDdsohandle] = ACTIONS(5132), + [anon_sym_POUNDcolorLiteral] = ACTIONS(5132), + [anon_sym_POUNDfileLiteral] = ACTIONS(5132), + [anon_sym_POUNDimageLiteral] = ACTIONS(5132), + [anon_sym_LBRACE] = ACTIONS(5132), + [anon_sym_self] = ACTIONS(5134), + [anon_sym_super] = ACTIONS(5134), + [anon_sym_POUNDkeyPath] = ACTIONS(5132), + [anon_sym_try] = ACTIONS(5134), + [anon_sym_try_BANG] = ACTIONS(5132), + [anon_sym_try_QMARK] = ACTIONS(5132), + [anon_sym_BANG_EQ] = ACTIONS(5134), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5134), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5134), + [anon_sym_LT_EQ] = ACTIONS(5134), + [anon_sym_GT_EQ] = ACTIONS(5134), + [anon_sym_PLUS] = ACTIONS(5134), + [anon_sym_DASH] = ACTIONS(5134), + [anon_sym_STAR] = ACTIONS(5134), + [anon_sym_SLASH] = ACTIONS(5134), + [anon_sym_PERCENT] = ACTIONS(5134), + [anon_sym_PLUS_PLUS] = ACTIONS(5134), + [anon_sym_DASH_DASH] = ACTIONS(5134), + [anon_sym_TILDE] = ACTIONS(5134), + [anon_sym_AT] = ACTIONS(5132), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(5132), + [sym_raw_str_end_part] = ACTIONS(5132), + [sym__dot_custom] = ACTIONS(5132), + [sym__three_dot_operator_custom] = ACTIONS(5132), + [sym__open_ended_range_operator_custom] = ACTIONS(5132), + [sym__eq_eq_custom] = ACTIONS(5132), + [sym__plus_then_ws] = ACTIONS(5132), + [sym__minus_then_ws] = ACTIONS(5132), + [sym_bang] = ACTIONS(5132), + }, + [2255] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(5122), + [aux_sym_simple_identifier_token2] = ACTIONS(5120), + [aux_sym_simple_identifier_token3] = ACTIONS(5120), + [aux_sym_simple_identifier_token4] = ACTIONS(5120), + [anon_sym_nil] = ACTIONS(5122), + [sym_real_literal] = ACTIONS(5120), + [sym_integer_literal] = ACTIONS(5122), + [sym_hex_literal] = ACTIONS(5120), + [sym_oct_literal] = ACTIONS(5120), + [sym_bin_literal] = ACTIONS(5120), + [anon_sym_true] = ACTIONS(5122), + [anon_sym_false] = ACTIONS(5122), + [anon_sym_DQUOTE] = ACTIONS(5122), + [anon_sym_BSLASH] = ACTIONS(5122), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5120), + [anon_sym_LPAREN] = ACTIONS(5120), + [anon_sym_LBRACK] = ACTIONS(5120), + [anon_sym_AMP] = ACTIONS(5122), + [anon_sym_async] = ACTIONS(5122), + [anon_sym_POUNDselector] = ACTIONS(5120), + [aux_sym_custom_operator_token1] = ACTIONS(5122), + [anon_sym_LT] = ACTIONS(5122), + [anon_sym_GT] = ACTIONS(5122), + [sym__await_operator] = ACTIONS(5122), + [anon_sym_POUNDfile] = ACTIONS(5122), + [anon_sym_POUNDfileID] = ACTIONS(5120), + [anon_sym_POUNDfilePath] = ACTIONS(5120), + [anon_sym_POUNDline] = ACTIONS(5120), + [anon_sym_POUNDcolumn] = ACTIONS(5120), + [anon_sym_POUNDfunction] = ACTIONS(5120), + [anon_sym_POUNDdsohandle] = ACTIONS(5120), + [anon_sym_POUNDcolorLiteral] = ACTIONS(5120), + [anon_sym_POUNDfileLiteral] = ACTIONS(5120), + [anon_sym_POUNDimageLiteral] = ACTIONS(5120), + [anon_sym_LBRACE] = ACTIONS(5120), + [anon_sym_self] = ACTIONS(5122), + [anon_sym_super] = ACTIONS(5122), + [anon_sym_POUNDkeyPath] = ACTIONS(5120), + [anon_sym_try] = ACTIONS(5122), + [anon_sym_try_BANG] = ACTIONS(5120), + [anon_sym_try_QMARK] = ACTIONS(5120), + [anon_sym_BANG_EQ] = ACTIONS(5122), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5122), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5122), + [anon_sym_LT_EQ] = ACTIONS(5122), + [anon_sym_GT_EQ] = ACTIONS(5122), + [anon_sym_PLUS] = ACTIONS(5122), + [anon_sym_DASH] = ACTIONS(5122), + [anon_sym_STAR] = ACTIONS(5122), + [anon_sym_SLASH] = ACTIONS(5122), + [anon_sym_PERCENT] = ACTIONS(5122), + [anon_sym_PLUS_PLUS] = ACTIONS(5122), + [anon_sym_DASH_DASH] = ACTIONS(5122), + [anon_sym_TILDE] = ACTIONS(5122), + [anon_sym_AT] = ACTIONS(5120), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(5120), + [sym_raw_str_end_part] = ACTIONS(5120), + [sym__dot_custom] = ACTIONS(5120), + [sym__three_dot_operator_custom] = ACTIONS(5120), + [sym__open_ended_range_operator_custom] = ACTIONS(5120), + [sym__eq_eq_custom] = ACTIONS(5120), + [sym__plus_then_ws] = ACTIONS(5120), + [sym__minus_then_ws] = ACTIONS(5120), + [sym_bang] = ACTIONS(5120), + }, + [2256] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(6044), + [aux_sym_simple_identifier_token2] = ACTIONS(6046), + [aux_sym_simple_identifier_token3] = ACTIONS(6046), + [aux_sym_simple_identifier_token4] = ACTIONS(6046), + [anon_sym_nil] = ACTIONS(6044), + [sym_real_literal] = ACTIONS(6046), + [sym_integer_literal] = ACTIONS(6044), + [sym_hex_literal] = ACTIONS(6046), + [sym_oct_literal] = ACTIONS(6046), + [sym_bin_literal] = ACTIONS(6046), + [anon_sym_true] = ACTIONS(6044), + [anon_sym_false] = ACTIONS(6044), + [anon_sym_DQUOTE] = ACTIONS(6044), + [anon_sym_BSLASH] = ACTIONS(6044), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(6046), + [anon_sym_LPAREN] = ACTIONS(6048), + [anon_sym_LBRACK] = ACTIONS(6046), + [anon_sym_AMP] = ACTIONS(6044), + [anon_sym_async] = ACTIONS(6044), + [anon_sym_POUNDselector] = ACTIONS(6046), + [aux_sym_custom_operator_token1] = ACTIONS(6044), + [anon_sym_LT] = ACTIONS(6044), + [anon_sym_GT] = ACTIONS(6044), + [sym__await_operator] = ACTIONS(6044), + [anon_sym_POUNDfile] = ACTIONS(6044), + [anon_sym_POUNDfileID] = ACTIONS(6046), + [anon_sym_POUNDfilePath] = ACTIONS(6046), + [anon_sym_POUNDline] = ACTIONS(6046), + [anon_sym_POUNDcolumn] = ACTIONS(6046), + [anon_sym_POUNDfunction] = ACTIONS(6046), + [anon_sym_POUNDdsohandle] = ACTIONS(6046), + [anon_sym_POUNDcolorLiteral] = ACTIONS(6046), + [anon_sym_POUNDfileLiteral] = ACTIONS(6046), + [anon_sym_POUNDimageLiteral] = ACTIONS(6046), + [anon_sym_LBRACE] = ACTIONS(6046), + [anon_sym_self] = ACTIONS(6044), + [anon_sym_super] = ACTIONS(6044), + [anon_sym_POUNDkeyPath] = ACTIONS(6046), + [anon_sym_try] = ACTIONS(6044), + [anon_sym_try_BANG] = ACTIONS(6046), + [anon_sym_try_QMARK] = ACTIONS(6046), + [anon_sym_BANG_EQ] = ACTIONS(6044), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6044), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6044), + [anon_sym_LT_EQ] = ACTIONS(6044), + [anon_sym_GT_EQ] = ACTIONS(6044), + [anon_sym_PLUS] = ACTIONS(6044), + [anon_sym_DASH] = ACTIONS(6044), + [anon_sym_STAR] = ACTIONS(6044), + [anon_sym_SLASH] = ACTIONS(6044), + [anon_sym_PERCENT] = ACTIONS(6044), + [anon_sym_PLUS_PLUS] = ACTIONS(6044), + [anon_sym_DASH_DASH] = ACTIONS(6044), + [anon_sym_TILDE] = ACTIONS(6044), + [anon_sym_AT] = ACTIONS(6046), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(6046), + [sym_raw_str_end_part] = ACTIONS(6046), + [sym__dot_custom] = ACTIONS(6046), + [sym__three_dot_operator_custom] = ACTIONS(6046), + [sym__open_ended_range_operator_custom] = ACTIONS(6046), + [sym__eq_eq_custom] = ACTIONS(6046), + [sym__plus_then_ws] = ACTIONS(6046), + [sym__minus_then_ws] = ACTIONS(6046), + [sym_bang] = ACTIONS(6046), + }, + [2257] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(5130), + [aux_sym_simple_identifier_token2] = ACTIONS(5128), + [aux_sym_simple_identifier_token3] = ACTIONS(5128), + [aux_sym_simple_identifier_token4] = ACTIONS(5128), + [anon_sym_nil] = ACTIONS(5130), + [sym_real_literal] = ACTIONS(5128), + [sym_integer_literal] = ACTIONS(5130), + [sym_hex_literal] = ACTIONS(5128), + [sym_oct_literal] = ACTIONS(5128), + [sym_bin_literal] = ACTIONS(5128), + [anon_sym_true] = ACTIONS(5130), + [anon_sym_false] = ACTIONS(5130), + [anon_sym_DQUOTE] = ACTIONS(5130), + [anon_sym_BSLASH] = ACTIONS(5130), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5128), + [anon_sym_LPAREN] = ACTIONS(5128), + [anon_sym_LBRACK] = ACTIONS(5128), + [anon_sym_AMP] = ACTIONS(5130), + [anon_sym_async] = ACTIONS(5130), + [anon_sym_POUNDselector] = ACTIONS(5128), + [aux_sym_custom_operator_token1] = ACTIONS(5130), + [anon_sym_LT] = ACTIONS(5130), + [anon_sym_GT] = ACTIONS(5130), + [sym__await_operator] = ACTIONS(5130), + [anon_sym_POUNDfile] = ACTIONS(5130), + [anon_sym_POUNDfileID] = ACTIONS(5128), + [anon_sym_POUNDfilePath] = ACTIONS(5128), + [anon_sym_POUNDline] = ACTIONS(5128), + [anon_sym_POUNDcolumn] = ACTIONS(5128), + [anon_sym_POUNDfunction] = ACTIONS(5128), + [anon_sym_POUNDdsohandle] = ACTIONS(5128), + [anon_sym_POUNDcolorLiteral] = ACTIONS(5128), + [anon_sym_POUNDfileLiteral] = ACTIONS(5128), + [anon_sym_POUNDimageLiteral] = ACTIONS(5128), + [anon_sym_LBRACE] = ACTIONS(5128), + [anon_sym_self] = ACTIONS(5130), + [anon_sym_super] = ACTIONS(5130), + [anon_sym_POUNDkeyPath] = ACTIONS(5128), + [anon_sym_try] = ACTIONS(5130), + [anon_sym_try_BANG] = ACTIONS(5128), + [anon_sym_try_QMARK] = ACTIONS(5128), + [anon_sym_BANG_EQ] = ACTIONS(5130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5130), + [anon_sym_LT_EQ] = ACTIONS(5130), + [anon_sym_GT_EQ] = ACTIONS(5130), + [anon_sym_PLUS] = ACTIONS(5130), + [anon_sym_DASH] = ACTIONS(5130), + [anon_sym_STAR] = ACTIONS(5130), + [anon_sym_SLASH] = ACTIONS(5130), + [anon_sym_PERCENT] = ACTIONS(5130), + [anon_sym_PLUS_PLUS] = ACTIONS(5130), + [anon_sym_DASH_DASH] = ACTIONS(5130), + [anon_sym_TILDE] = ACTIONS(5130), + [anon_sym_AT] = ACTIONS(5128), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(5128), + [sym_raw_str_end_part] = ACTIONS(5128), + [sym__dot_custom] = ACTIONS(5128), + [sym__three_dot_operator_custom] = ACTIONS(5128), + [sym__open_ended_range_operator_custom] = ACTIONS(5128), + [sym__eq_eq_custom] = ACTIONS(5128), + [sym__plus_then_ws] = ACTIONS(5128), + [sym__minus_then_ws] = ACTIONS(5128), + [sym_bang] = ACTIONS(5128), + }, + [2258] = { + [sym_protocol_property_declaration] = STATE(9191), + [sym_typealias_declaration] = STATE(9191), + [sym__modifierless_typealias_declaration] = STATE(8214), + [sym__bodyless_function_declaration] = STATE(6405), + [sym__modifierless_function_declaration_no_body] = STATE(8117), + [sym__constructor_function_decl] = STATE(7095), + [sym__non_constructor_function_decl] = STATE(7096), + [sym__async_modifier] = STATE(10025), + [sym__protocol_member_declaration] = STATE(9191), + [sym_deinit_declaration] = STATE(9191), + [sym_subscript_declaration] = STATE(9191), + [sym_associatedtype_declaration] = STATE(9191), + [sym_attribute] = STATE(2680), + [sym_value_binding_pattern] = STATE(6096), + [sym_modifiers] = STATE(4771), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5958), + [anon_sym_RBRACE] = ACTIONS(6051), + [anon_sym_typealias] = ACTIONS(5962), + [anon_sym_class] = ACTIONS(5964), + [anon_sym_let] = ACTIONS(5966), + [anon_sym_var] = ACTIONS(5966), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5968), + [anon_sym_subscript] = ACTIONS(5970), + [anon_sym_prefix] = ACTIONS(5972), + [anon_sym_infix] = ACTIONS(5972), + [anon_sym_postfix] = ACTIONS(5972), + [anon_sym_associatedtype] = ACTIONS(5974), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [2259] = { + [sym__arrow_operator] = STATE(4482), + [sym__async_keyword] = STATE(6953), + [sym__async_keyword_internal] = STATE(6953), + [sym_throws] = STATE(9794), + [aux_sym_optional_type_repeat1] = STATE(2320), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4733), + [anon_sym_COLON] = ACTIONS(4733), + [anon_sym_DOT] = ACTIONS(4733), + [anon_sym_QMARK] = ACTIONS(4735), + [sym__immediate_quest] = ACTIONS(6053), + [anon_sym_AMP] = ACTIONS(4733), + [anon_sym_async] = ACTIONS(4733), + [anon_sym_LBRACE] = ACTIONS(4733), + [anon_sym_RBRACE] = ACTIONS(4733), + [anon_sym_case] = ACTIONS(4733), + [anon_sym_import] = ACTIONS(4733), + [anon_sym_typealias] = ACTIONS(4733), + [anon_sym_struct] = ACTIONS(4733), + [anon_sym_class] = ACTIONS(4733), + [anon_sym_enum] = ACTIONS(4733), + [anon_sym_protocol] = ACTIONS(4733), + [anon_sym_let] = ACTIONS(4733), + [anon_sym_var] = ACTIONS(4733), + [anon_sym_func] = ACTIONS(4733), + [anon_sym_extension] = ACTIONS(4733), + [anon_sym_indirect] = ACTIONS(4733), + [anon_sym_init] = ACTIONS(4733), + [anon_sym_deinit] = ACTIONS(4733), + [anon_sym_subscript] = ACTIONS(4733), + [anon_sym_prefix] = ACTIONS(4733), + [anon_sym_infix] = ACTIONS(4733), + [anon_sym_postfix] = ACTIONS(4733), + [anon_sym_precedencegroup] = ACTIONS(4733), + [anon_sym_associatedtype] = ACTIONS(4733), + [anon_sym_AT] = ACTIONS(4735), + [sym_property_behavior_modifier] = ACTIONS(4733), + [anon_sym_override] = ACTIONS(4733), + [anon_sym_convenience] = ACTIONS(4733), + [anon_sym_required] = ACTIONS(4733), + [anon_sym_public] = ACTIONS(4733), + [anon_sym_private] = ACTIONS(4733), + [anon_sym_internal] = ACTIONS(4733), + [anon_sym_fileprivate] = ACTIONS(4733), + [anon_sym_open] = ACTIONS(4733), + [anon_sym_mutating] = ACTIONS(4733), + [anon_sym_nonmutating] = ACTIONS(4733), + [anon_sym_static] = ACTIONS(4733), + [anon_sym_dynamic] = ACTIONS(4733), + [anon_sym_optional] = ACTIONS(4733), + [anon_sym_final] = ACTIONS(4733), + [anon_sym_inout] = ACTIONS(4733), + [anon_sym_ATescaping] = ACTIONS(4733), + [anon_sym_ATautoclosure] = ACTIONS(4733), + [anon_sym_weak] = ACTIONS(4733), + [anon_sym_unowned] = ACTIONS(4735), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4733), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4733), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__arrow_operator_custom] = ACTIONS(6055), + [sym__eq_custom] = ACTIONS(4733), + [sym__throws_keyword] = ACTIONS(4741), + [sym__rethrows_keyword] = ACTIONS(4741), + [sym_where_keyword] = ACTIONS(4733), + [sym__as_custom] = ACTIONS(4733), + [sym__async_keyword_custom] = ACTIONS(4743), + }, + [2260] = { + [sym_simple_identifier] = STATE(6105), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(6057), + [aux_sym_simple_identifier_token2] = ACTIONS(6059), + [aux_sym_simple_identifier_token3] = ACTIONS(6059), + [aux_sym_simple_identifier_token4] = ACTIONS(6059), + [anon_sym_nil] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_oct_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_BSLASH] = ACTIONS(4527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_AMP] = ACTIONS(4527), + [anon_sym_async] = ACTIONS(4527), + [anon_sym_POUNDselector] = ACTIONS(4529), + [aux_sym_custom_operator_token1] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_GT] = ACTIONS(4527), + [sym__await_operator] = ACTIONS(4527), + [anon_sym_POUNDfile] = ACTIONS(4527), + [anon_sym_POUNDfileID] = ACTIONS(4529), + [anon_sym_POUNDfilePath] = ACTIONS(4529), + [anon_sym_POUNDline] = ACTIONS(4529), + [anon_sym_POUNDcolumn] = ACTIONS(4529), + [anon_sym_POUNDfunction] = ACTIONS(4529), + [anon_sym_POUNDdsohandle] = ACTIONS(4529), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4529), + [anon_sym_POUNDfileLiteral] = ACTIONS(4529), + [anon_sym_POUNDimageLiteral] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_self] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_POUNDkeyPath] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_try_BANG] = ACTIONS(4529), + [anon_sym_try_QMARK] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), + [anon_sym_TILDE] = ACTIONS(4527), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4529), + [sym_raw_str_end_part] = ACTIONS(4529), + [sym__dot_custom] = ACTIONS(4529), + [sym__three_dot_operator_custom] = ACTIONS(4529), + [sym__open_ended_range_operator_custom] = ACTIONS(4529), + [sym__eq_eq_custom] = ACTIONS(4529), + [sym__plus_then_ws] = ACTIONS(4529), + [sym__minus_then_ws] = ACTIONS(4529), + [sym_bang] = ACTIONS(4529), + }, + [2261] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(5029), + [aux_sym_simple_identifier_token2] = ACTIONS(5027), + [aux_sym_simple_identifier_token3] = ACTIONS(5027), + [aux_sym_simple_identifier_token4] = ACTIONS(5027), + [anon_sym_nil] = ACTIONS(5029), + [sym_real_literal] = ACTIONS(5027), + [sym_integer_literal] = ACTIONS(5029), + [sym_hex_literal] = ACTIONS(5027), + [sym_oct_literal] = ACTIONS(5027), + [sym_bin_literal] = ACTIONS(5027), + [anon_sym_true] = ACTIONS(5029), + [anon_sym_false] = ACTIONS(5029), + [anon_sym_DQUOTE] = ACTIONS(5029), + [anon_sym_BSLASH] = ACTIONS(5029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(5027), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_AMP] = ACTIONS(5029), + [anon_sym_async] = ACTIONS(5029), + [anon_sym_POUNDselector] = ACTIONS(5027), + [aux_sym_custom_operator_token1] = ACTIONS(5029), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [sym__await_operator] = ACTIONS(5029), + [anon_sym_POUNDfile] = ACTIONS(5029), + [anon_sym_POUNDfileID] = ACTIONS(5027), + [anon_sym_POUNDfilePath] = ACTIONS(5027), + [anon_sym_POUNDline] = ACTIONS(5027), + [anon_sym_POUNDcolumn] = ACTIONS(5027), + [anon_sym_POUNDfunction] = ACTIONS(5027), + [anon_sym_POUNDdsohandle] = ACTIONS(5027), + [anon_sym_POUNDcolorLiteral] = ACTIONS(5027), + [anon_sym_POUNDfileLiteral] = ACTIONS(5027), + [anon_sym_POUNDimageLiteral] = ACTIONS(5027), + [anon_sym_LBRACE] = ACTIONS(5027), + [anon_sym_self] = ACTIONS(5029), + [anon_sym_super] = ACTIONS(5029), + [anon_sym_POUNDkeyPath] = ACTIONS(5027), + [anon_sym_try] = ACTIONS(5029), + [anon_sym_try_BANG] = ACTIONS(5027), + [anon_sym_try_QMARK] = ACTIONS(5027), + [anon_sym_BANG_EQ] = ACTIONS(5029), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5029), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5029), + [anon_sym_LT_EQ] = ACTIONS(5029), + [anon_sym_GT_EQ] = ACTIONS(5029), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_PERCENT] = ACTIONS(5029), + [anon_sym_PLUS_PLUS] = ACTIONS(5029), + [anon_sym_DASH_DASH] = ACTIONS(5029), + [anon_sym_TILDE] = ACTIONS(5029), + [anon_sym_AT] = ACTIONS(5027), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(5027), + [sym_raw_str_end_part] = ACTIONS(5027), + [sym__dot_custom] = ACTIONS(5027), + [sym__three_dot_operator_custom] = ACTIONS(5027), + [sym__open_ended_range_operator_custom] = ACTIONS(5027), + [sym__eq_eq_custom] = ACTIONS(5027), + [sym__plus_then_ws] = ACTIONS(5027), + [sym__minus_then_ws] = ACTIONS(5027), + [sym_bang] = ACTIONS(5027), + }, + [2262] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(6061), + [aux_sym_simple_identifier_token2] = ACTIONS(6063), + [aux_sym_simple_identifier_token3] = ACTIONS(6063), + [aux_sym_simple_identifier_token4] = ACTIONS(6063), + [anon_sym_nil] = ACTIONS(6061), + [sym_real_literal] = ACTIONS(6063), + [sym_integer_literal] = ACTIONS(6061), + [sym_hex_literal] = ACTIONS(6063), + [sym_oct_literal] = ACTIONS(6063), + [sym_bin_literal] = ACTIONS(6063), + [anon_sym_true] = ACTIONS(6061), + [anon_sym_false] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_BSLASH] = ACTIONS(6061), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(6063), + [anon_sym_LPAREN] = ACTIONS(6063), + [anon_sym_LBRACK] = ACTIONS(6063), + [anon_sym_AMP] = ACTIONS(6061), + [anon_sym_async] = ACTIONS(6061), + [anon_sym_POUNDselector] = ACTIONS(6063), + [aux_sym_custom_operator_token1] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [sym__await_operator] = ACTIONS(6061), + [anon_sym_POUNDfile] = ACTIONS(6061), + [anon_sym_POUNDfileID] = ACTIONS(6063), + [anon_sym_POUNDfilePath] = ACTIONS(6063), + [anon_sym_POUNDline] = ACTIONS(6063), + [anon_sym_POUNDcolumn] = ACTIONS(6063), + [anon_sym_POUNDfunction] = ACTIONS(6063), + [anon_sym_POUNDdsohandle] = ACTIONS(6063), + [anon_sym_POUNDcolorLiteral] = ACTIONS(6063), + [anon_sym_POUNDfileLiteral] = ACTIONS(6063), + [anon_sym_POUNDimageLiteral] = ACTIONS(6063), + [anon_sym_LBRACE] = ACTIONS(6063), + [anon_sym_self] = ACTIONS(6061), + [anon_sym_super] = ACTIONS(6061), + [anon_sym_POUNDkeyPath] = ACTIONS(6063), + [anon_sym_try] = ACTIONS(6061), + [anon_sym_try_BANG] = ACTIONS(6063), + [anon_sym_try_QMARK] = ACTIONS(6063), + [anon_sym_BANG_EQ] = ACTIONS(6061), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6061), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6061), + [anon_sym_LT_EQ] = ACTIONS(6061), + [anon_sym_GT_EQ] = ACTIONS(6061), + [anon_sym_PLUS] = ACTIONS(6061), + [anon_sym_DASH] = ACTIONS(6061), + [anon_sym_STAR] = ACTIONS(6061), + [anon_sym_SLASH] = ACTIONS(6061), + [anon_sym_PERCENT] = ACTIONS(6061), + [anon_sym_PLUS_PLUS] = ACTIONS(6061), + [anon_sym_DASH_DASH] = ACTIONS(6061), + [anon_sym_TILDE] = ACTIONS(6061), + [anon_sym_AT] = ACTIONS(6063), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(6063), + [sym_raw_str_end_part] = ACTIONS(6063), + [sym__dot_custom] = ACTIONS(6063), + [sym__three_dot_operator_custom] = ACTIONS(6063), + [sym__open_ended_range_operator_custom] = ACTIONS(6063), + [sym__eq_eq_custom] = ACTIONS(6063), + [sym__plus_then_ws] = ACTIONS(6063), + [sym__minus_then_ws] = ACTIONS(6063), + [sym_bang] = ACTIONS(6063), + }, + [2263] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(6065), + [aux_sym_simple_identifier_token2] = ACTIONS(6067), + [aux_sym_simple_identifier_token3] = ACTIONS(6067), + [aux_sym_simple_identifier_token4] = ACTIONS(6067), + [anon_sym_nil] = ACTIONS(6065), + [sym_real_literal] = ACTIONS(6067), + [sym_integer_literal] = ACTIONS(6065), + [sym_hex_literal] = ACTIONS(6067), + [sym_oct_literal] = ACTIONS(6067), + [sym_bin_literal] = ACTIONS(6067), + [anon_sym_true] = ACTIONS(6065), + [anon_sym_false] = ACTIONS(6065), + [anon_sym_DQUOTE] = ACTIONS(6065), + [anon_sym_BSLASH] = ACTIONS(6065), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(6067), + [anon_sym_LPAREN] = ACTIONS(6067), + [anon_sym_LBRACK] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6065), + [anon_sym_async] = ACTIONS(6065), + [anon_sym_POUNDselector] = ACTIONS(6067), + [aux_sym_custom_operator_token1] = ACTIONS(6065), + [anon_sym_LT] = ACTIONS(6065), + [anon_sym_GT] = ACTIONS(6065), + [sym__await_operator] = ACTIONS(6065), + [anon_sym_POUNDfile] = ACTIONS(6065), + [anon_sym_POUNDfileID] = ACTIONS(6067), + [anon_sym_POUNDfilePath] = ACTIONS(6067), + [anon_sym_POUNDline] = ACTIONS(6067), + [anon_sym_POUNDcolumn] = ACTIONS(6067), + [anon_sym_POUNDfunction] = ACTIONS(6067), + [anon_sym_POUNDdsohandle] = ACTIONS(6067), + [anon_sym_POUNDcolorLiteral] = ACTIONS(6067), + [anon_sym_POUNDfileLiteral] = ACTIONS(6067), + [anon_sym_POUNDimageLiteral] = ACTIONS(6067), + [anon_sym_LBRACE] = ACTIONS(6067), + [anon_sym_self] = ACTIONS(6065), + [anon_sym_super] = ACTIONS(6065), + [anon_sym_POUNDkeyPath] = ACTIONS(6067), + [anon_sym_try] = ACTIONS(6065), + [anon_sym_try_BANG] = ACTIONS(6067), + [anon_sym_try_QMARK] = ACTIONS(6067), + [anon_sym_BANG_EQ] = ACTIONS(6065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6065), + [anon_sym_LT_EQ] = ACTIONS(6065), + [anon_sym_GT_EQ] = ACTIONS(6065), + [anon_sym_PLUS] = ACTIONS(6065), + [anon_sym_DASH] = ACTIONS(6065), + [anon_sym_STAR] = ACTIONS(6065), + [anon_sym_SLASH] = ACTIONS(6065), + [anon_sym_PERCENT] = ACTIONS(6065), + [anon_sym_PLUS_PLUS] = ACTIONS(6065), + [anon_sym_DASH_DASH] = ACTIONS(6065), + [anon_sym_TILDE] = ACTIONS(6065), + [anon_sym_AT] = ACTIONS(6067), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(6067), + [sym_raw_str_end_part] = ACTIONS(6067), + [sym__dot_custom] = ACTIONS(6067), + [sym__three_dot_operator_custom] = ACTIONS(6067), + [sym__open_ended_range_operator_custom] = ACTIONS(6067), + [sym__eq_eq_custom] = ACTIONS(6067), + [sym__plus_then_ws] = ACTIONS(6067), + [sym__minus_then_ws] = ACTIONS(6067), + [sym_bang] = ACTIONS(6067), + }, + [2264] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(6069), + [aux_sym_simple_identifier_token2] = ACTIONS(6071), + [aux_sym_simple_identifier_token3] = ACTIONS(6071), + [aux_sym_simple_identifier_token4] = ACTIONS(6071), + [anon_sym_nil] = ACTIONS(6069), + [sym_real_literal] = ACTIONS(6071), + [sym_integer_literal] = ACTIONS(6069), + [sym_hex_literal] = ACTIONS(6071), + [sym_oct_literal] = ACTIONS(6071), + [sym_bin_literal] = ACTIONS(6071), + [anon_sym_true] = ACTIONS(6069), + [anon_sym_false] = ACTIONS(6069), + [anon_sym_DQUOTE] = ACTIONS(6069), + [anon_sym_BSLASH] = ACTIONS(6069), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(6071), + [anon_sym_LPAREN] = ACTIONS(6071), + [anon_sym_LBRACK] = ACTIONS(6071), + [anon_sym_AMP] = ACTIONS(6069), + [anon_sym_async] = ACTIONS(6069), + [anon_sym_POUNDselector] = ACTIONS(6071), + [aux_sym_custom_operator_token1] = ACTIONS(6069), + [anon_sym_LT] = ACTIONS(6069), + [anon_sym_GT] = ACTIONS(6069), + [sym__await_operator] = ACTIONS(6069), + [anon_sym_POUNDfile] = ACTIONS(6069), + [anon_sym_POUNDfileID] = ACTIONS(6071), + [anon_sym_POUNDfilePath] = ACTIONS(6071), + [anon_sym_POUNDline] = ACTIONS(6071), + [anon_sym_POUNDcolumn] = ACTIONS(6071), + [anon_sym_POUNDfunction] = ACTIONS(6071), + [anon_sym_POUNDdsohandle] = ACTIONS(6071), + [anon_sym_POUNDcolorLiteral] = ACTIONS(6071), + [anon_sym_POUNDfileLiteral] = ACTIONS(6071), + [anon_sym_POUNDimageLiteral] = ACTIONS(6071), + [anon_sym_LBRACE] = ACTIONS(6071), + [anon_sym_self] = ACTIONS(6069), + [anon_sym_super] = ACTIONS(6069), + [anon_sym_POUNDkeyPath] = ACTIONS(6071), + [anon_sym_try] = ACTIONS(6069), + [anon_sym_try_BANG] = ACTIONS(6071), + [anon_sym_try_QMARK] = ACTIONS(6071), + [anon_sym_BANG_EQ] = ACTIONS(6069), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6069), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6069), + [anon_sym_LT_EQ] = ACTIONS(6069), + [anon_sym_GT_EQ] = ACTIONS(6069), + [anon_sym_PLUS] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_STAR] = ACTIONS(6069), + [anon_sym_SLASH] = ACTIONS(6069), + [anon_sym_PERCENT] = ACTIONS(6069), + [anon_sym_PLUS_PLUS] = ACTIONS(6069), + [anon_sym_DASH_DASH] = ACTIONS(6069), + [anon_sym_TILDE] = ACTIONS(6069), + [anon_sym_AT] = ACTIONS(6071), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(6071), + [sym_raw_str_end_part] = ACTIONS(6071), + [sym__dot_custom] = ACTIONS(6071), + [sym__three_dot_operator_custom] = ACTIONS(6071), + [sym__open_ended_range_operator_custom] = ACTIONS(6071), + [sym__eq_eq_custom] = ACTIONS(6071), + [sym__plus_then_ws] = ACTIONS(6071), + [sym__minus_then_ws] = ACTIONS(6071), + [sym_bang] = ACTIONS(6071), + }, + [2265] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(6073), + [aux_sym_simple_identifier_token2] = ACTIONS(6075), + [aux_sym_simple_identifier_token3] = ACTIONS(6075), + [aux_sym_simple_identifier_token4] = ACTIONS(6075), + [anon_sym_nil] = ACTIONS(6073), + [sym_real_literal] = ACTIONS(6075), + [sym_integer_literal] = ACTIONS(6073), + [sym_hex_literal] = ACTIONS(6075), + [sym_oct_literal] = ACTIONS(6075), + [sym_bin_literal] = ACTIONS(6075), + [anon_sym_true] = ACTIONS(6073), + [anon_sym_false] = ACTIONS(6073), + [anon_sym_DQUOTE] = ACTIONS(6073), + [anon_sym_BSLASH] = ACTIONS(6073), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(6075), + [anon_sym_LPAREN] = ACTIONS(6075), + [anon_sym_LBRACK] = ACTIONS(6075), + [anon_sym_AMP] = ACTIONS(6073), + [anon_sym_async] = ACTIONS(6073), + [anon_sym_POUNDselector] = ACTIONS(6075), + [aux_sym_custom_operator_token1] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6073), + [sym__await_operator] = ACTIONS(6073), + [anon_sym_POUNDfile] = ACTIONS(6073), + [anon_sym_POUNDfileID] = ACTIONS(6075), + [anon_sym_POUNDfilePath] = ACTIONS(6075), + [anon_sym_POUNDline] = ACTIONS(6075), + [anon_sym_POUNDcolumn] = ACTIONS(6075), + [anon_sym_POUNDfunction] = ACTIONS(6075), + [anon_sym_POUNDdsohandle] = ACTIONS(6075), + [anon_sym_POUNDcolorLiteral] = ACTIONS(6075), + [anon_sym_POUNDfileLiteral] = ACTIONS(6075), + [anon_sym_POUNDimageLiteral] = ACTIONS(6075), + [anon_sym_LBRACE] = ACTIONS(6075), + [anon_sym_self] = ACTIONS(6073), + [anon_sym_super] = ACTIONS(6073), + [anon_sym_POUNDkeyPath] = ACTIONS(6075), + [anon_sym_try] = ACTIONS(6073), + [anon_sym_try_BANG] = ACTIONS(6075), + [anon_sym_try_QMARK] = ACTIONS(6075), + [anon_sym_BANG_EQ] = ACTIONS(6073), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6073), + [anon_sym_LT_EQ] = ACTIONS(6073), + [anon_sym_GT_EQ] = ACTIONS(6073), + [anon_sym_PLUS] = ACTIONS(6073), + [anon_sym_DASH] = ACTIONS(6073), + [anon_sym_STAR] = ACTIONS(6073), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_PERCENT] = ACTIONS(6073), + [anon_sym_PLUS_PLUS] = ACTIONS(6073), + [anon_sym_DASH_DASH] = ACTIONS(6073), + [anon_sym_TILDE] = ACTIONS(6073), + [anon_sym_AT] = ACTIONS(6075), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(6075), + [sym_raw_str_end_part] = ACTIONS(6075), + [sym__dot_custom] = ACTIONS(6075), + [sym__three_dot_operator_custom] = ACTIONS(6075), + [sym__open_ended_range_operator_custom] = ACTIONS(6075), + [sym__eq_eq_custom] = ACTIONS(6075), + [sym__plus_then_ws] = ACTIONS(6075), + [sym__minus_then_ws] = ACTIONS(6075), + [sym_bang] = ACTIONS(6075), + }, + [2266] = { + [sym__quest] = STATE(711), + [sym__range_operator] = STATE(760), + [sym_custom_operator] = STATE(761), + [sym_navigation_suffix] = STATE(1201), + [sym_call_suffix] = STATE(1189), + [sym_value_arguments] = STATE(1208), + [sym_lambda_literal] = STATE(2340), + [sym__equality_operator] = STATE(776), + [sym__comparison_operator] = STATE(778), + [sym__is_operator] = STATE(4455), + [sym__additive_operator] = STATE(779), + [sym__multiplicative_operator] = STATE(781), + [sym_as_operator] = STATE(4456), + [sym__bitwise_binary_operator] = STATE(782), + [sym__postfix_unary_operator] = STATE(1262), + [sym__eq_eq] = STATE(776), + [sym__dot] = STATE(6126), + [sym__three_dot_operator] = STATE(1332), + [sym__open_ended_range_operator] = STATE(760), + [sym__conjunction_operator] = STATE(335), + [sym__disjunction_operator] = STATE(791), + [sym__nil_coalescing_operator] = STATE(792), + [sym__as] = STATE(5586), + [sym__as_quest] = STATE(5586), + [sym__as_bang] = STATE(5586), + [sym_comment] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(4582), + [anon_sym_LBRACK] = ACTIONS(4584), + [anon_sym_QMARK] = ACTIONS(5680), + [sym__immediate_quest] = ACTIONS(4588), + [anon_sym_AMP] = ACTIONS(5574), + [aux_sym_custom_operator_token1] = ACTIONS(4592), + [anon_sym_LT] = ACTIONS(5576), + [anon_sym_GT] = ACTIONS(5576), + [anon_sym_LBRACE] = ACTIONS(6077), + [anon_sym_BANG_EQ] = ACTIONS(5578), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5578), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5578), + [anon_sym_LT_EQ] = ACTIONS(5576), + [anon_sym_GT_EQ] = ACTIONS(5576), + [anon_sym_is] = ACTIONS(4598), + [anon_sym_PLUS] = ACTIONS(5580), + [anon_sym_DASH] = ACTIONS(5580), + [anon_sym_STAR] = ACTIONS(5582), + [anon_sym_SLASH] = ACTIONS(5582), + [anon_sym_PERCENT] = ACTIONS(5582), + [anon_sym_PLUS_PLUS] = ACTIONS(4604), + [anon_sym_DASH_DASH] = ACTIONS(4604), + [anon_sym_PIPE] = ACTIONS(5574), + [anon_sym_CARET] = ACTIONS(5574), + [anon_sym_LT_LT] = ACTIONS(5574), + [anon_sym_GT_GT] = ACTIONS(5574), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__dot_custom] = ACTIONS(4606), + [sym__three_dot_operator_custom] = ACTIONS(829), + [sym__open_ended_range_operator_custom] = ACTIONS(5584), + [sym__conjunction_operator_custom] = ACTIONS(5586), + [sym__disjunction_operator_custom] = ACTIONS(5588), + [sym__nil_coalescing_operator_custom] = ACTIONS(5590), + [sym__eq_eq_custom] = ACTIONS(5592), + [sym__plus_then_ws] = ACTIONS(5594), + [sym__minus_then_ws] = ACTIONS(5594), + [sym_bang] = ACTIONS(4620), + [sym__as_custom] = ACTIONS(4622), + [sym__as_quest_custom] = ACTIONS(4622), + [sym__as_bang_custom] = ACTIONS(4622), + }, + [2267] = { + [sym_simple_identifier] = STATE(5863), + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(6057), + [aux_sym_simple_identifier_token2] = ACTIONS(6059), + [aux_sym_simple_identifier_token3] = ACTIONS(6059), + [aux_sym_simple_identifier_token4] = ACTIONS(6059), + [anon_sym_nil] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4529), + [sym_integer_literal] = ACTIONS(4527), + [sym_hex_literal] = ACTIONS(4529), + [sym_oct_literal] = ACTIONS(4529), + [sym_bin_literal] = ACTIONS(4529), + [anon_sym_true] = ACTIONS(4527), + [anon_sym_false] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(4527), + [anon_sym_BSLASH] = ACTIONS(4527), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_AMP] = ACTIONS(4527), + [anon_sym_async] = ACTIONS(4527), + [anon_sym_POUNDselector] = ACTIONS(4529), + [aux_sym_custom_operator_token1] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_GT] = ACTIONS(4527), + [sym__await_operator] = ACTIONS(4527), + [anon_sym_POUNDfile] = ACTIONS(4527), + [anon_sym_POUNDfileID] = ACTIONS(4529), + [anon_sym_POUNDfilePath] = ACTIONS(4529), + [anon_sym_POUNDline] = ACTIONS(4529), + [anon_sym_POUNDcolumn] = ACTIONS(4529), + [anon_sym_POUNDfunction] = ACTIONS(4529), + [anon_sym_POUNDdsohandle] = ACTIONS(4529), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4529), + [anon_sym_POUNDfileLiteral] = ACTIONS(4529), + [anon_sym_POUNDimageLiteral] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_self] = ACTIONS(4527), + [anon_sym_super] = ACTIONS(4527), + [anon_sym_POUNDkeyPath] = ACTIONS(4529), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_try_BANG] = ACTIONS(4529), + [anon_sym_try_QMARK] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), + [anon_sym_TILDE] = ACTIONS(4527), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4529), + [sym_raw_str_end_part] = ACTIONS(4529), + [sym__dot_custom] = ACTIONS(4529), + [sym__three_dot_operator_custom] = ACTIONS(4529), + [sym__open_ended_range_operator_custom] = ACTIONS(4529), + [sym__eq_eq_custom] = ACTIONS(4529), + [sym__plus_then_ws] = ACTIONS(4529), + [sym__minus_then_ws] = ACTIONS(4529), + [sym_bang] = ACTIONS(4529), + }, + [2268] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4819), + [aux_sym_simple_identifier_token2] = ACTIONS(4817), + [aux_sym_simple_identifier_token3] = ACTIONS(4817), + [aux_sym_simple_identifier_token4] = ACTIONS(4817), + [anon_sym_nil] = ACTIONS(4819), + [sym_real_literal] = ACTIONS(4817), + [sym_integer_literal] = ACTIONS(4819), + [sym_hex_literal] = ACTIONS(4817), + [sym_oct_literal] = ACTIONS(4817), + [sym_bin_literal] = ACTIONS(4817), + [anon_sym_true] = ACTIONS(4819), + [anon_sym_false] = ACTIONS(4819), + [anon_sym_DQUOTE] = ACTIONS(4819), + [anon_sym_BSLASH] = ACTIONS(4819), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4817), + [anon_sym_LPAREN] = ACTIONS(4817), + [anon_sym_LBRACK] = ACTIONS(4817), + [anon_sym_AMP] = ACTIONS(4819), + [anon_sym_async] = ACTIONS(4819), + [anon_sym_POUNDselector] = ACTIONS(4817), + [aux_sym_custom_operator_token1] = ACTIONS(4819), + [anon_sym_LT] = ACTIONS(4819), + [anon_sym_GT] = ACTIONS(4819), + [sym__await_operator] = ACTIONS(4819), + [anon_sym_POUNDfile] = ACTIONS(4819), + [anon_sym_POUNDfileID] = ACTIONS(4817), + [anon_sym_POUNDfilePath] = ACTIONS(4817), + [anon_sym_POUNDline] = ACTIONS(4817), + [anon_sym_POUNDcolumn] = ACTIONS(4817), + [anon_sym_POUNDfunction] = ACTIONS(4817), + [anon_sym_POUNDdsohandle] = ACTIONS(4817), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4817), + [anon_sym_POUNDfileLiteral] = ACTIONS(4817), + [anon_sym_POUNDimageLiteral] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(4817), + [anon_sym_self] = ACTIONS(4819), + [anon_sym_super] = ACTIONS(4819), + [anon_sym_POUNDkeyPath] = ACTIONS(4817), + [anon_sym_try] = ACTIONS(4819), + [anon_sym_try_BANG] = ACTIONS(4817), + [anon_sym_try_QMARK] = ACTIONS(4817), + [anon_sym_BANG_EQ] = ACTIONS(4819), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4819), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4819), + [anon_sym_LT_EQ] = ACTIONS(4819), + [anon_sym_GT_EQ] = ACTIONS(4819), + [anon_sym_PLUS] = ACTIONS(4819), + [anon_sym_DASH] = ACTIONS(4819), + [anon_sym_STAR] = ACTIONS(4819), + [anon_sym_SLASH] = ACTIONS(4819), + [anon_sym_PERCENT] = ACTIONS(4819), + [anon_sym_PLUS_PLUS] = ACTIONS(4819), + [anon_sym_DASH_DASH] = ACTIONS(4819), + [anon_sym_TILDE] = ACTIONS(4819), + [anon_sym_AT] = ACTIONS(4817), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4817), + [sym_raw_str_end_part] = ACTIONS(4817), + [sym__dot_custom] = ACTIONS(4817), + [sym__three_dot_operator_custom] = ACTIONS(4817), + [sym__open_ended_range_operator_custom] = ACTIONS(4817), + [sym__eq_eq_custom] = ACTIONS(4817), + [sym__plus_then_ws] = ACTIONS(4817), + [sym__minus_then_ws] = ACTIONS(4817), + [sym_bang] = ACTIONS(4817), + }, + [2269] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4523), + [aux_sym_simple_identifier_token2] = ACTIONS(4525), + [aux_sym_simple_identifier_token3] = ACTIONS(4525), + [aux_sym_simple_identifier_token4] = ACTIONS(4525), + [anon_sym_nil] = ACTIONS(4523), + [sym_real_literal] = ACTIONS(4525), + [sym_integer_literal] = ACTIONS(4523), + [sym_hex_literal] = ACTIONS(4525), + [sym_oct_literal] = ACTIONS(4525), + [sym_bin_literal] = ACTIONS(4525), + [anon_sym_true] = ACTIONS(4523), + [anon_sym_false] = ACTIONS(4523), + [anon_sym_DQUOTE] = ACTIONS(4523), + [anon_sym_BSLASH] = ACTIONS(4523), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_async] = ACTIONS(4523), + [anon_sym_POUNDselector] = ACTIONS(4525), + [aux_sym_custom_operator_token1] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4523), + [anon_sym_GT] = ACTIONS(4523), + [sym__await_operator] = ACTIONS(4523), + [anon_sym_POUNDfile] = ACTIONS(4523), + [anon_sym_POUNDfileID] = ACTIONS(4525), + [anon_sym_POUNDfilePath] = ACTIONS(4525), + [anon_sym_POUNDline] = ACTIONS(4525), + [anon_sym_POUNDcolumn] = ACTIONS(4525), + [anon_sym_POUNDfunction] = ACTIONS(4525), + [anon_sym_POUNDdsohandle] = ACTIONS(4525), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4525), + [anon_sym_POUNDfileLiteral] = ACTIONS(4525), + [anon_sym_POUNDimageLiteral] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_self] = ACTIONS(4523), + [anon_sym_super] = ACTIONS(4523), + [anon_sym_POUNDkeyPath] = ACTIONS(4525), + [anon_sym_try] = ACTIONS(4523), + [anon_sym_try_BANG] = ACTIONS(4525), + [anon_sym_try_QMARK] = ACTIONS(4525), + [anon_sym_BANG_EQ] = ACTIONS(4523), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4523), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4523), + [anon_sym_LT_EQ] = ACTIONS(4523), + [anon_sym_GT_EQ] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_PLUS_PLUS] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4523), + [anon_sym_TILDE] = ACTIONS(4523), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4525), + [sym_raw_str_end_part] = ACTIONS(4525), + [sym__dot_custom] = ACTIONS(4525), + [sym__three_dot_operator_custom] = ACTIONS(4525), + [sym__open_ended_range_operator_custom] = ACTIONS(4525), + [sym__eq_eq_custom] = ACTIONS(4525), + [sym__plus_then_ws] = ACTIONS(4525), + [sym__minus_then_ws] = ACTIONS(4525), + [sym_bang] = ACTIONS(4525), + }, + [2270] = { + [sym_comment] = ACTIONS(3), + [aux_sym_simple_identifier_token1] = ACTIONS(4563), + [aux_sym_simple_identifier_token2] = ACTIONS(4565), + [aux_sym_simple_identifier_token3] = ACTIONS(4565), + [aux_sym_simple_identifier_token4] = ACTIONS(4565), + [anon_sym_nil] = ACTIONS(4563), + [sym_real_literal] = ACTIONS(4565), + [sym_integer_literal] = ACTIONS(4563), + [sym_hex_literal] = ACTIONS(4565), + [sym_oct_literal] = ACTIONS(4565), + [sym_bin_literal] = ACTIONS(4565), + [anon_sym_true] = ACTIONS(4563), + [anon_sym_false] = ACTIONS(4563), + [anon_sym_DQUOTE] = ACTIONS(4563), + [anon_sym_BSLASH] = ACTIONS(4563), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_AMP] = ACTIONS(4563), + [anon_sym_async] = ACTIONS(4563), + [anon_sym_POUNDselector] = ACTIONS(4565), + [aux_sym_custom_operator_token1] = ACTIONS(4563), + [anon_sym_LT] = ACTIONS(6079), + [anon_sym_GT] = ACTIONS(4563), + [sym__await_operator] = ACTIONS(4563), + [anon_sym_POUNDfile] = ACTIONS(4563), + [anon_sym_POUNDfileID] = ACTIONS(4565), + [anon_sym_POUNDfilePath] = ACTIONS(4565), + [anon_sym_POUNDline] = ACTIONS(4565), + [anon_sym_POUNDcolumn] = ACTIONS(4565), + [anon_sym_POUNDfunction] = ACTIONS(4565), + [anon_sym_POUNDdsohandle] = ACTIONS(4565), + [anon_sym_POUNDcolorLiteral] = ACTIONS(4565), + [anon_sym_POUNDfileLiteral] = ACTIONS(4565), + [anon_sym_POUNDimageLiteral] = ACTIONS(4565), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_self] = ACTIONS(4563), + [anon_sym_super] = ACTIONS(4563), + [anon_sym_POUNDkeyPath] = ACTIONS(4565), + [anon_sym_try] = ACTIONS(4563), + [anon_sym_try_BANG] = ACTIONS(4565), + [anon_sym_try_QMARK] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4563), + [anon_sym_LT_EQ] = ACTIONS(4563), + [anon_sym_GT_EQ] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_PLUS_PLUS] = ACTIONS(4563), + [anon_sym_DASH_DASH] = ACTIONS(4563), + [anon_sym_TILDE] = ACTIONS(4563), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym_raw_str_part] = ACTIONS(4565), + [sym_raw_str_end_part] = ACTIONS(4565), + [sym__dot_custom] = ACTIONS(4565), + [sym__three_dot_operator_custom] = ACTIONS(4565), + [sym__open_ended_range_operator_custom] = ACTIONS(4565), + [sym__eq_eq_custom] = ACTIONS(4565), + [sym__plus_then_ws] = ACTIONS(4565), + [sym__minus_then_ws] = ACTIONS(4565), + [sym_bang] = ACTIONS(4565), + }, + [2271] = { + [sym_protocol_property_declaration] = STATE(9191), + [sym_typealias_declaration] = STATE(9191), + [sym__modifierless_typealias_declaration] = STATE(8214), + [sym__bodyless_function_declaration] = STATE(6405), + [sym__modifierless_function_declaration_no_body] = STATE(8117), + [sym__constructor_function_decl] = STATE(7095), + [sym__non_constructor_function_decl] = STATE(7096), + [sym__async_modifier] = STATE(10025), + [sym__protocol_member_declaration] = STATE(9191), + [sym_deinit_declaration] = STATE(9191), + [sym_subscript_declaration] = STATE(9191), + [sym_associatedtype_declaration] = STATE(9191), + [sym_attribute] = STATE(2680), + [sym_value_binding_pattern] = STATE(6096), + [sym_modifiers] = STATE(4771), + [aux_sym__locally_permitted_modifiers] = STATE(2680), + [sym__non_local_scope_modifier] = STATE(2318), + [sym__locally_permitted_modifier] = STATE(2680), + [sym_member_modifier] = STATE(2318), + [sym_visibility_modifier] = STATE(2318), + [sym_function_modifier] = STATE(2318), + [sym_mutation_modifier] = STATE(2318), + [sym_property_modifier] = STATE(2318), + [sym_inheritance_modifier] = STATE(2680), + [sym_parameter_modifier] = STATE(2318), + [sym_ownership_modifier] = STATE(2680), + [aux_sym_modifiers_repeat1] = STATE(2318), + [sym_comment] = ACTIONS(5), + [anon_sym_async] = ACTIONS(5958), + [anon_sym_typealias] = ACTIONS(5962), + [anon_sym_class] = ACTIONS(5964), + [anon_sym_let] = ACTIONS(5966), + [anon_sym_var] = ACTIONS(5966), + [anon_sym_func] = ACTIONS(5344), + [anon_sym_init] = ACTIONS(5350), + [anon_sym_deinit] = ACTIONS(5968), + [anon_sym_subscript] = ACTIONS(5970), + [anon_sym_prefix] = ACTIONS(5972), + [anon_sym_infix] = ACTIONS(5972), + [anon_sym_postfix] = ACTIONS(5972), + [anon_sym_associatedtype] = ACTIONS(5974), + [anon_sym_AT] = ACTIONS(105), + [sym_property_behavior_modifier] = ACTIONS(5362), + [anon_sym_override] = ACTIONS(5364), + [anon_sym_convenience] = ACTIONS(5364), + [anon_sym_required] = ACTIONS(5364), + [anon_sym_public] = ACTIONS(5366), + [anon_sym_private] = ACTIONS(5366), + [anon_sym_internal] = ACTIONS(5366), + [anon_sym_fileprivate] = ACTIONS(5366), + [anon_sym_open] = ACTIONS(5366), + [anon_sym_mutating] = ACTIONS(5368), + [anon_sym_nonmutating] = ACTIONS(5368), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_dynamic] = ACTIONS(5370), + [anon_sym_optional] = ACTIONS(5370), + [anon_sym_final] = ACTIONS(5372), + [anon_sym_inout] = ACTIONS(121), + [anon_sym_ATescaping] = ACTIONS(121), + [anon_sym_ATautoclosure] = ACTIONS(121), + [anon_sym_weak] = ACTIONS(125), + [anon_sym_unowned] = ACTIONS(123), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(125), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(125), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + }, + [2272] = { + [sym__arrow_operator] = STATE(4379), + [sym__async_keyword] = STATE(6465), + [sym__async_keyword_internal] = STATE(6465), + [sym_throws] = STATE(9758), + [aux_sym_optional_type_repeat1] = STATE(2368), + [sym_comment] = ACTIONS(5), + [anon_sym_RPAREN] = ACTIONS(4733), + [anon_sym_COMMA] = ACTIONS(4733), + [anon_sym_BANG] = ACTIONS(4733), + [anon_sym_DOT] = ACTIONS(4733), + [sym__immediate_quest] = ACTIONS(6082), + [anon_sym_AMP] = ACTIONS(4733), + [anon_sym_async] = ACTIONS(4733), + [anon_sym_LBRACE] = ACTIONS(4733), + [anon_sym_RBRACE] = ACTIONS(4733), + [anon_sym_case] = ACTIONS(4733), + [anon_sym_import] = ACTIONS(4733), + [anon_sym_typealias] = ACTIONS(4733), + [anon_sym_struct] = ACTIONS(4733), + [anon_sym_class] = ACTIONS(4733), + [anon_sym_enum] = ACTIONS(4733), + [anon_sym_protocol] = ACTIONS(4733), + [anon_sym_let] = ACTIONS(4733), + [anon_sym_var] = ACTIONS(4733), + [anon_sym_func] = ACTIONS(4733), + [anon_sym_extension] = ACTIONS(4733), + [anon_sym_indirect] = ACTIONS(4733), + [anon_sym_init] = ACTIONS(4733), + [anon_sym_deinit] = ACTIONS(4733), + [anon_sym_subscript] = ACTIONS(4733), + [anon_sym_prefix] = ACTIONS(4733), + [anon_sym_infix] = ACTIONS(4733), + [anon_sym_postfix] = ACTIONS(4733), + [anon_sym_precedencegroup] = ACTIONS(4733), + [anon_sym_associatedtype] = ACTIONS(4733), + [anon_sym_AT] = ACTIONS(4735), + [sym_property_behavior_modifier] = ACTIONS(4733), + [anon_sym_override] = ACTIONS(4733), + [anon_sym_convenience] = ACTIONS(4733), + [anon_sym_required] = ACTIONS(4733), + [anon_sym_public] = ACTIONS(4733), + [anon_sym_private] = ACTIONS(4733), + [anon_sym_internal] = ACTIONS(4733), + [anon_sym_fileprivate] = ACTIONS(4733), + [anon_sym_open] = ACTIONS(4733), + [anon_sym_mutating] = ACTIONS(4733), + [anon_sym_nonmutating] = ACTIONS(4733), + [anon_sym_static] = ACTIONS(4733), + [anon_sym_dynamic] = ACTIONS(4733), + [anon_sym_optional] = ACTIONS(4733), + [anon_sym_final] = ACTIONS(4733), + [anon_sym_inout] = ACTIONS(4733), + [anon_sym_ATescaping] = ACTIONS(4733), + [anon_sym_ATautoclosure] = ACTIONS(4733), + [anon_sym_weak] = ACTIONS(4733), + [anon_sym_unowned] = ACTIONS(4735), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4733), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4733), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__arrow_operator_custom] = ACTIONS(6084), + [sym__eq_custom] = ACTIONS(4733), + [sym__throws_keyword] = ACTIONS(4741), + [sym__rethrows_keyword] = ACTIONS(4741), + [sym__async_keyword_custom] = ACTIONS(4743), + }, + [2273] = { + [sym__arrow_operator] = STATE(4653), + [sym__async_keyword] = STATE(6897), + [sym__async_keyword_internal] = STATE(6897), + [sym_throws] = STATE(9678), + [aux_sym_optional_type_repeat1] = STATE(2342), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4733), + [anon_sym_BANG] = ACTIONS(4733), + [anon_sym_DOT] = ACTIONS(4733), + [sym__immediate_quest] = ACTIONS(6086), + [anon_sym_AMP] = ACTIONS(4733), + [anon_sym_async] = ACTIONS(4733), + [anon_sym_LBRACE] = ACTIONS(4733), + [anon_sym_RBRACE] = ACTIONS(4733), + [anon_sym_case] = ACTIONS(4733), + [anon_sym_import] = ACTIONS(4733), + [anon_sym_typealias] = ACTIONS(4733), + [anon_sym_struct] = ACTIONS(4733), + [anon_sym_class] = ACTIONS(4733), + [anon_sym_enum] = ACTIONS(4733), + [anon_sym_protocol] = ACTIONS(4733), + [anon_sym_let] = ACTIONS(4733), + [anon_sym_var] = ACTIONS(4733), + [anon_sym_func] = ACTIONS(4733), + [anon_sym_extension] = ACTIONS(4733), + [anon_sym_indirect] = ACTIONS(4733), + [anon_sym_init] = ACTIONS(4733), + [anon_sym_deinit] = ACTIONS(4733), + [anon_sym_subscript] = ACTIONS(4733), + [anon_sym_prefix] = ACTIONS(4733), + [anon_sym_infix] = ACTIONS(4733), + [anon_sym_postfix] = ACTIONS(4733), + [anon_sym_precedencegroup] = ACTIONS(4733), + [anon_sym_associatedtype] = ACTIONS(4733), + [anon_sym_AT] = ACTIONS(4735), + [sym_property_behavior_modifier] = ACTIONS(4733), + [anon_sym_override] = ACTIONS(4733), + [anon_sym_convenience] = ACTIONS(4733), + [anon_sym_required] = ACTIONS(4733), + [anon_sym_public] = ACTIONS(4733), + [anon_sym_private] = ACTIONS(4733), + [anon_sym_internal] = ACTIONS(4733), + [anon_sym_fileprivate] = ACTIONS(4733), + [anon_sym_open] = ACTIONS(4733), + [anon_sym_mutating] = ACTIONS(4733), + [anon_sym_nonmutating] = ACTIONS(4733), + [anon_sym_static] = ACTIONS(4733), + [anon_sym_dynamic] = ACTIONS(4733), + [anon_sym_optional] = ACTIONS(4733), + [anon_sym_final] = ACTIONS(4733), + [anon_sym_inout] = ACTIONS(4733), + [anon_sym_ATescaping] = ACTIONS(4733), + [anon_sym_ATautoclosure] = ACTIONS(4733), + [anon_sym_weak] = ACTIONS(4733), + [anon_sym_unowned] = ACTIONS(4735), + [anon_sym_unowned_LPARENsafe_RPAREN] = ACTIONS(4733), + [anon_sym_unowned_LPARENunsafe_RPAREN] = ACTIONS(4733), + [sym_directive] = ACTIONS(5), + [sym_diagnostic] = ACTIONS(5), + [sym_multiline_comment] = ACTIONS(5), + [sym__arrow_operator_custom] = ACTIONS(6088), + [sym__eq_custom] = ACTIONS(4733), + [sym__throws_keyword] = ACTIONS(4741), + [sym__rethrows_keyword] = ACTIONS(4741), + [sym_where_keyword] = ACTIONS(4733), + [sym__async_keyword_custom] = ACTIONS(4743), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4745), 1, + aux_sym_simple_identifier_token1, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6092), 1, + anon_sym_COLON, + ACTIONS(6094), 1, + anon_sym_in, + STATE(2302), 1, + sym_type_arguments, + STATE(10366), 1, + sym_simple_identifier, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(6090), 5, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__semi, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_LBRACK, + anon_sym_RBRACE, + ACTIONS(4886), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [93] = 6, + ACTIONS(6096), 1, + sym__dot_custom, + STATE(2275), 1, + aux_sym_user_type_repeat1, + STATE(6106), 1, + sym__dot, + ACTIONS(5029), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 54, + 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_async, + anon_sym_GT, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [169] = 3, + ACTIONS(4993), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 56, + 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_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [239] = 3, + ACTIONS(4989), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 56, + 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_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [309] = 3, + ACTIONS(4985), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 56, + 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_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [379] = 6, + ACTIONS(6099), 1, + sym__dot_custom, + STATE(2275), 1, + aux_sym_user_type_repeat1, + STATE(6106), 1, + sym__dot, + ACTIONS(5036), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 54, + 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_async, + anon_sym_GT, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [455] = 3, + ACTIONS(4819), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 57, + sym__dot_custom, + sym_integer_literal, + 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_async, + anon_sym_LT, + anon_sym_GT, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [525] = 5, + ACTIONS(6101), 1, + anon_sym_LT, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5086), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 55, + sym__dot_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_async, + anon_sym_GT, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [599] = 6, + ACTIONS(6099), 1, + sym__dot_custom, + STATE(2279), 1, + aux_sym_user_type_repeat1, + STATE(6106), 1, + sym__dot, + ACTIONS(5022), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 54, + 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_async, + anon_sym_GT, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [675] = 5, + ACTIONS(6103), 1, + anon_sym_LT, + STATE(2314), 1, + sym_type_arguments, + ACTIONS(5086), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 53, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [748] = 6, + ACTIONS(6105), 1, + sym__dot_custom, + STATE(2284), 1, + aux_sym_user_type_repeat1, + STATE(6173), 1, + sym__dot, + ACTIONS(5029), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 52, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [823] = 6, + ACTIONS(6108), 1, + sym__dot_custom, + STATE(2287), 1, + aux_sym_user_type_repeat1, + STATE(6173), 1, + sym__dot, + ACTIONS(5022), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 52, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [898] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 27, + sym__semi, + sym__arrow_operator_custom, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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, + 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, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4819), 31, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [969] = 6, + ACTIONS(6108), 1, + sym__dot_custom, + STATE(2284), 1, + aux_sym_user_type_repeat1, + STATE(6173), 1, + sym__dot, + ACTIONS(5036), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 52, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [1044] = 3, + ACTIONS(5134), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 55, + sym__dot_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_async, + anon_sym_GT, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [1112] = 3, + ACTIONS(5122), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 55, + sym__dot_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_async, + anon_sym_GT, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [1180] = 3, + ACTIONS(4993), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 55, + 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_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [1248] = 3, + ACTIONS(4989), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 55, + 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_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_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(4985), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 55, + 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_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [1384] = 3, + ACTIONS(5029), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 55, + sym__dot_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_async, + anon_sym_GT, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [1452] = 3, + ACTIONS(4819), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 54, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [1520] = 11, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(6110), 1, + sym__immediate_quest, + ACTIONS(6112), 1, + sym__arrow_operator_custom, + STATE(2628), 1, + aux_sym_optional_type_repeat1, + STATE(4647), 1, + sym__arrow_operator, + STATE(9698), 1, + sym_throws, + ACTIONS(4735), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(7013), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [1604] = 6, + ACTIONS(6114), 1, + sym__dot_custom, + STATE(2296), 1, + aux_sym_user_type_repeat1, + STATE(5954), 1, + sym__dot, + ACTIONS(5029), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 52, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [1678] = 3, + ACTIONS(4993), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 55, + sym__arrow_operator_custom, + sym__eq_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [1746] = 6, + ACTIONS(6117), 1, + sym__dot_custom, + STATE(2300), 1, + aux_sym_user_type_repeat1, + STATE(5954), 1, + sym__dot, + ACTIONS(5022), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 52, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [1820] = 5, + ACTIONS(6119), 1, + anon_sym_LT, + STATE(2328), 1, + sym_type_arguments, + ACTIONS(5086), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 53, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [1892] = 6, + ACTIONS(6117), 1, + sym__dot_custom, + STATE(2296), 1, + aux_sym_user_type_repeat1, + STATE(5954), 1, + sym__dot, + ACTIONS(5036), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 52, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [1966] = 3, + ACTIONS(4989), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 55, + sym__arrow_operator_custom, + sym__eq_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [2034] = 3, + ACTIONS(5130), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 55, + sym__dot_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_async, + anon_sym_GT, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [2102] = 3, + ACTIONS(4985), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 55, + sym__arrow_operator_custom, + sym__eq_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [2170] = 6, + ACTIONS(6121), 1, + sym__dot_custom, + STATE(2304), 1, + aux_sym_user_type_repeat1, + STATE(5948), 1, + sym__dot, + ACTIONS(5029), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 51, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [2243] = 5, + ACTIONS(6124), 1, + sym__immediate_quest, + STATE(2305), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5103), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 51, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [2314] = 6, + ACTIONS(6127), 1, + sym__dot_custom, + STATE(2319), 1, + aux_sym_user_type_repeat1, + STATE(5948), 1, + sym__dot, + ACTIONS(5022), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 51, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [2387] = 3, + ACTIONS(5122), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 53, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [2454] = 6, + ACTIONS(6129), 1, + sym__dot_custom, + STATE(2313), 1, + aux_sym_user_type_repeat1, + STATE(6245), 1, + sym__dot, + ACTIONS(5022), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 51, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [2527] = 3, + ACTIONS(5029), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 53, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [2594] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(6133), 1, + anon_sym_QMARK, + STATE(2302), 1, + sym_type_arguments, + STATE(2535), 1, + sym__quest, + ACTIONS(6135), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6131), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [2671] = 5, + ACTIONS(6137), 1, + anon_sym_LT, + STATE(2364), 1, + sym_type_arguments, + ACTIONS(5086), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 52, + sym__dot_custom, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [2742] = 3, + ACTIONS(4819), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 54, + sym__dot_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [2809] = 6, + ACTIONS(6129), 1, + sym__dot_custom, + STATE(2316), 1, + aux_sym_user_type_repeat1, + STATE(6245), 1, + sym__dot, + ACTIONS(5036), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 51, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [2882] = 3, + ACTIONS(5130), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 53, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [2949] = 5, + ACTIONS(6053), 1, + sym__immediate_quest, + STATE(2320), 1, + aux_sym_optional_type_repeat1, + ACTIONS(4735), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 51, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [3020] = 6, + ACTIONS(6139), 1, + sym__dot_custom, + STATE(2316), 1, + aux_sym_user_type_repeat1, + STATE(6245), 1, + sym__dot, + ACTIONS(5029), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 51, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [3093] = 3, + ACTIONS(4819), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 54, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [3160] = 16, + ACTIONS(105), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_unowned, + ACTIONS(5362), 1, + sym_property_behavior_modifier, + ACTIONS(5372), 1, + anon_sym_final, + ACTIONS(6144), 1, + anon_sym_class, + ACTIONS(5368), 2, + anon_sym_mutating, + anon_sym_nonmutating, + ACTIONS(121), 3, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + ACTIONS(125), 3, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + ACTIONS(5364), 3, + anon_sym_override, + anon_sym_convenience, + anon_sym_required, + ACTIONS(5370), 3, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + ACTIONS(5972), 3, + anon_sym_prefix, + anon_sym_infix, + anon_sym_postfix, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5366), 5, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + STATE(2680), 5, + sym_attribute, + aux_sym__locally_permitted_modifiers, + sym__locally_permitted_modifier, + sym_inheritance_modifier, + sym_ownership_modifier, + STATE(2321), 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(6142), 16, + 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, + [3253] = 6, + ACTIONS(6127), 1, + sym__dot_custom, + STATE(2304), 1, + aux_sym_user_type_repeat1, + STATE(5948), 1, + sym__dot, + ACTIONS(5036), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 51, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [3326] = 5, + ACTIONS(6147), 1, + sym__immediate_quest, + STATE(2305), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5055), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 51, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [3397] = 15, + ACTIONS(6157), 1, + anon_sym_AT, + ACTIONS(6160), 1, + sym_property_behavior_modifier, + ACTIONS(6172), 1, + anon_sym_final, + ACTIONS(6181), 1, + anon_sym_unowned, + ACTIONS(6169), 2, + anon_sym_mutating, + anon_sym_nonmutating, + ACTIONS(6154), 3, + anon_sym_prefix, + anon_sym_infix, + anon_sym_postfix, + ACTIONS(6163), 3, + anon_sym_override, + anon_sym_convenience, + anon_sym_required, + ACTIONS(6175), 3, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + ACTIONS(6178), 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(6151), 4, + anon_sym_class, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + ACTIONS(6166), 5, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + STATE(2680), 5, + sym_attribute, + aux_sym__locally_permitted_modifiers, + sym__locally_permitted_modifier, + sym_inheritance_modifier, + sym_ownership_modifier, + STATE(2321), 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(6149), 16, + 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, + [3488] = 5, + ACTIONS(6184), 1, + anon_sym_LT, + STATE(2357), 1, + sym_type_arguments, + ACTIONS(5086), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 52, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [3559] = 3, + ACTIONS(5134), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 53, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [3626] = 6, + ACTIONS(6186), 1, + anon_sym_DOT, + ACTIONS(6188), 1, + anon_sym_AMP, + STATE(2336), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5045), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 50, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [3698] = 5, + ACTIONS(6190), 1, + anon_sym_AMP, + STATE(2325), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5096), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 51, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [3768] = 3, + ACTIONS(5122), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 53, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [3834] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4745), 1, + aux_sym_simple_identifier_token1, + STATE(2339), 1, + aux_sym_call_suffix_repeat1, + STATE(10014), 1, + sym_simple_identifier, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(4805), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + ACTIONS(4807), 29, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [3910] = 3, + ACTIONS(5130), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 53, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [3976] = 6, + ACTIONS(6186), 1, + anon_sym_DOT, + ACTIONS(6188), 1, + anon_sym_AMP, + STATE(2336), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5096), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 50, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [4048] = 13, + ACTIONS(4632), 1, + anon_sym_COMMA, + ACTIONS(6193), 1, + anon_sym_COLON, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(6201), 1, + sym__eq_custom, + ACTIONS(6203), 1, + sym_where_keyword, + STATE(1002), 1, + sym__equal_sign, + STATE(2450), 1, + sym_type_annotation, + STATE(2533), 1, + sym_type_constraints, + STATE(2807), 1, + sym_computed_property, + STATE(2808), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(6199), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6195), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [4134] = 3, + ACTIONS(5029), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 53, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [4200] = 6, + ACTIONS(6186), 1, + anon_sym_DOT, + ACTIONS(6188), 1, + anon_sym_AMP, + STATE(2336), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5063), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 50, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [4272] = 3, + ACTIONS(5142), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 52, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [4338] = 3, + ACTIONS(5146), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 52, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [4404] = 13, + ACTIONS(4632), 1, + anon_sym_COMMA, + ACTIONS(6193), 1, + anon_sym_COLON, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(6203), 1, + sym_where_keyword, + ACTIONS(6209), 1, + sym__eq_custom, + STATE(1032), 1, + sym__equal_sign, + STATE(2400), 1, + sym_type_annotation, + STATE(2522), 1, + sym_type_constraints, + STATE(2737), 1, + sym_computed_property, + STATE(2749), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(6207), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6205), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [4490] = 5, + ACTIONS(6188), 1, + anon_sym_AMP, + STATE(2325), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5051), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 51, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [4560] = 3, + ACTIONS(5134), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 53, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [4626] = 3, + ACTIONS(4819), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 53, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [4692] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4753), 1, + aux_sym_simple_identifier_token1, + STATE(2339), 1, + aux_sym_call_suffix_repeat1, + STATE(10014), 1, + sym_simple_identifier, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4756), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(4759), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + ACTIONS(4761), 29, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [4768] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4745), 1, + aux_sym_simple_identifier_token1, + STATE(2327), 1, + aux_sym_call_suffix_repeat1, + STATE(10014), 1, + sym_simple_identifier, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(4749), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + ACTIONS(4751), 29, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [4844] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4753), 1, + aux_sym_simple_identifier_token1, + STATE(2341), 1, + aux_sym_call_suffix_repeat1, + STATE(9858), 1, + sym_simple_identifier, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4756), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(4759), 20, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4761), 29, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [4919] = 5, + ACTIONS(6211), 1, + sym__immediate_quest, + STATE(2343), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5055), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 50, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [4988] = 5, + ACTIONS(6213), 1, + sym__immediate_quest, + STATE(2343), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5103), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 50, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [5057] = 3, + ACTIONS(5118), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 52, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [5122] = 11, + ACTIONS(6193), 1, + anon_sym_COLON, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(6203), 1, + sym_where_keyword, + ACTIONS(6220), 1, + sym__eq_custom, + STATE(1038), 1, + sym__equal_sign, + STATE(2493), 1, + sym_type_annotation, + STATE(2561), 1, + sym_type_constraints, + STATE(2825), 1, + sym_computed_property, + ACTIONS(6218), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6216), 44, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [5203] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6222), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6226), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(6224), 4, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + sym_integer_literal, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4886), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [5284] = 5, + ACTIONS(6086), 1, + sym__immediate_quest, + STATE(2342), 1, + aux_sym_optional_type_repeat1, + ACTIONS(4735), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 50, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [5353] = 3, + ACTIONS(5029), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 52, + sym__dot_custom, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [5418] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6222), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6228), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(6224), 4, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + sym_integer_literal, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4886), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [5499] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4745), 1, + aux_sym_simple_identifier_token1, + STATE(2351), 1, + aux_sym_call_suffix_repeat1, + STATE(9877), 1, + sym_simple_identifier, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(4749), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4751), 29, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [5574] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4745), 1, + aux_sym_simple_identifier_token1, + STATE(2353), 1, + aux_sym_call_suffix_repeat1, + STATE(9877), 1, + sym_simple_identifier, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(4805), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4807), 29, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [5649] = 3, + ACTIONS(5029), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 52, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [5714] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4753), 1, + aux_sym_simple_identifier_token1, + STATE(2353), 1, + aux_sym_call_suffix_repeat1, + STATE(9877), 1, + sym_simple_identifier, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4756), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(4759), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4761), 29, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [5789] = 3, + ACTIONS(5138), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 52, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [5854] = 3, + ACTIONS(5114), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 52, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [5919] = 3, + ACTIONS(5126), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 52, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [5984] = 3, + ACTIONS(5130), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 52, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [6049] = 3, + ACTIONS(5122), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 52, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [6114] = 3, + ACTIONS(5134), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 52, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [6179] = 3, + ACTIONS(5110), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 52, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [6244] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4745), 1, + aux_sym_simple_identifier_token1, + STATE(2362), 1, + aux_sym_call_suffix_repeat1, + STATE(9858), 1, + sym_simple_identifier, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(4749), 20, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4751), 29, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [6319] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4745), 1, + aux_sym_simple_identifier_token1, + STATE(2341), 1, + aux_sym_call_suffix_repeat1, + STATE(9858), 1, + sym_simple_identifier, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(4805), 20, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4807), 29, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [6394] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6222), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6230), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(6224), 4, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + sym_integer_literal, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4886), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [6475] = 3, + ACTIONS(5130), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 52, + sym__dot_custom, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [6540] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4753), 1, + aux_sym_simple_identifier_token1, + STATE(2365), 1, + aux_sym_call_suffix_repeat1, + STATE(10338), 1, + sym_simple_identifier, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4756), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(4759), 19, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4761), 29, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [6615] = 5, + ACTIONS(6082), 1, + sym__immediate_quest, + STATE(2368), 1, + aux_sym_optional_type_repeat1, + ACTIONS(4735), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 50, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [6684] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6222), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6232), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(6224), 4, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + sym_integer_literal, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4886), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [6765] = 5, + ACTIONS(6234), 1, + sym__immediate_quest, + STATE(2371), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5055), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 50, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [6834] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6222), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6236), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(6224), 4, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + sym_integer_literal, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4886), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [6915] = 6, + ACTIONS(6240), 1, + anon_sym_LPAREN, + ACTIONS(6242), 1, + anon_sym_QMARK, + STATE(2421), 1, + sym__quest, + ACTIONS(6244), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6238), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [6986] = 5, + ACTIONS(6246), 1, + sym__immediate_quest, + STATE(2371), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5103), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 50, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [7055] = 3, + ACTIONS(5134), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 52, + sym__dot_custom, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [7120] = 6, + ACTIONS(6251), 1, + anon_sym_LPAREN, + ACTIONS(6253), 1, + anon_sym_QMARK, + STATE(2423), 1, + sym__quest, + ACTIONS(6255), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [7191] = 3, + ACTIONS(5122), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 52, + sym__dot_custom, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [7256] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6222), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6257), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(6224), 4, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + sym_integer_literal, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4886), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [7337] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4745), 1, + aux_sym_simple_identifier_token1, + STATE(2382), 1, + aux_sym_call_suffix_repeat1, + STATE(10338), 1, + sym_simple_identifier, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(4749), 19, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4751), 29, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [7412] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6222), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6259), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(6224), 4, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + sym_integer_literal, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4886), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [7493] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6222), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6261), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(6224), 4, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + sym_integer_literal, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4886), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [7574] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6222), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6263), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(6224), 4, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + sym_integer_literal, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4886), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [7655] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4745), 1, + aux_sym_simple_identifier_token1, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6268), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(10019), 1, + sym_simple_identifier, + ACTIONS(6265), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 13, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_LBRACK, + ACTIONS(4886), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [7740] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6222), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6270), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(6224), 4, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + sym_integer_literal, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4886), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [7821] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4745), 1, + aux_sym_simple_identifier_token1, + STATE(2365), 1, + aux_sym_call_suffix_repeat1, + STATE(10338), 1, + sym_simple_identifier, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(4805), 19, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4807), 29, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [7896] = 5, + ACTIONS(6274), 1, + anon_sym_QMARK, + STATE(2451), 1, + sym__quest, + ACTIONS(6276), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6272), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [7964] = 5, + ACTIONS(6280), 1, + anon_sym_QMARK, + STATE(2534), 1, + sym__quest, + ACTIONS(6282), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6278), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [8032] = 3, + ACTIONS(5146), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 51, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [8096] = 3, + ACTIONS(5142), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 51, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [8160] = 11, + ACTIONS(6284), 1, + anon_sym_COMMA, + ACTIONS(6286), 1, + anon_sym_LPAREN, + ACTIONS(6290), 1, + anon_sym_SEMI, + ACTIONS(6294), 1, + sym__eq_custom, + STATE(827), 1, + sym__equal_sign, + STATE(2708), 1, + aux_sym_enum_entry_repeat1, + STATE(2718), 1, + sym__enum_entry_suffix, + STATE(2736), 1, + sym_enum_type_parameters, + ACTIONS(6292), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6288), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [8240] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4867), 23, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4865), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [8306] = 11, + ACTIONS(6284), 1, + anon_sym_COMMA, + ACTIONS(6286), 1, + anon_sym_LPAREN, + ACTIONS(6294), 1, + sym__eq_custom, + ACTIONS(6298), 1, + anon_sym_SEMI, + STATE(827), 1, + sym__equal_sign, + STATE(2669), 1, + aux_sym_enum_entry_repeat1, + STATE(2675), 1, + sym__enum_entry_suffix, + STATE(2736), 1, + sym_enum_type_parameters, + ACTIONS(6300), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6296), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [8386] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4831), 23, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4829), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [8452] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4827), 23, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4825), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [8518] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4839), 23, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4837), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [8584] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4895), 23, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4893), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [8650] = 5, + ACTIONS(6302), 1, + anon_sym_AMP, + STATE(2394), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5096), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 49, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [8718] = 6, + ACTIONS(6305), 1, + anon_sym_DOT, + ACTIONS(6307), 1, + anon_sym_AMP, + STATE(2397), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5096), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 48, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [8788] = 6, + ACTIONS(6305), 1, + anon_sym_DOT, + ACTIONS(6307), 1, + anon_sym_AMP, + STATE(2397), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5063), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 48, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [8858] = 5, + ACTIONS(6307), 1, + anon_sym_AMP, + STATE(2394), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5051), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 49, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [8926] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4879), 23, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4877), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [8992] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4875), 23, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4873), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [9058] = 11, + ACTIONS(4632), 1, + anon_sym_COMMA, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(6203), 1, + sym_where_keyword, + ACTIONS(6313), 1, + sym__eq_custom, + STATE(1045), 1, + sym__equal_sign, + STATE(2546), 1, + sym_type_constraints, + STATE(2799), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(2800), 1, + sym_computed_property, + ACTIONS(6311), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6309), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [9138] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4849), 1, + aux_sym_simple_identifier_token1, + ACTIONS(4855), 1, + anon_sym_LBRACK, + ACTIONS(4857), 1, + anon_sym_DOT, + STATE(1222), 1, + aux_sym_key_path_expression_repeat1, + STATE(1229), 1, + sym_simple_identifier, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4851), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(1231), 3, + sym__simple_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(4853), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + ACTIONS(4859), 23, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [9218] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4871), 23, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4869), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [9284] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4899), 23, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4897), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [9350] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4753), 1, + aux_sym_simple_identifier_token1, + STATE(2404), 1, + aux_sym_call_suffix_repeat1, + STATE(9905), 1, + sym_simple_identifier, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4756), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(4759), 18, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4761), 29, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [9424] = 3, + ACTIONS(5142), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 51, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [9488] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4863), 23, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4861), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [9554] = 11, + ACTIONS(6284), 1, + anon_sym_COMMA, + ACTIONS(6286), 1, + anon_sym_LPAREN, + ACTIONS(6294), 1, + sym__eq_custom, + ACTIONS(6317), 1, + anon_sym_SEMI, + STATE(827), 1, + sym__equal_sign, + STATE(2655), 1, + aux_sym_enum_entry_repeat1, + STATE(2704), 1, + sym__enum_entry_suffix, + STATE(2736), 1, + sym_enum_type_parameters, + ACTIONS(6319), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6315), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [9634] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4847), 23, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4845), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [9700] = 6, + ACTIONS(6305), 1, + anon_sym_DOT, + ACTIONS(6307), 1, + anon_sym_AMP, + STATE(2397), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5045), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 48, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [9770] = 3, + ACTIONS(4819), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 51, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [9834] = 6, + ACTIONS(6321), 1, + anon_sym_DOT, + ACTIONS(6323), 1, + anon_sym_AMP, + STATE(2413), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5045), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 48, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [9904] = 5, + ACTIONS(6327), 1, + anon_sym_QMARK, + STATE(2540), 1, + sym__quest, + ACTIONS(6329), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6325), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [9972] = 5, + ACTIONS(6323), 1, + anon_sym_AMP, + STATE(2417), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5051), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 49, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [10040] = 6, + ACTIONS(6321), 1, + anon_sym_DOT, + ACTIONS(6323), 1, + anon_sym_AMP, + STATE(2413), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5063), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 48, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [10110] = 5, + ACTIONS(6333), 1, + anon_sym_QMARK, + STATE(2531), 1, + sym__quest, + ACTIONS(6335), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6331), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [10178] = 6, + ACTIONS(6321), 1, + anon_sym_DOT, + ACTIONS(6323), 1, + anon_sym_AMP, + STATE(2413), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5096), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 48, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [10248] = 5, + ACTIONS(6337), 1, + anon_sym_AMP, + STATE(2417), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5096), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 49, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [10316] = 5, + ACTIONS(6253), 1, + anon_sym_QMARK, + STATE(2423), 1, + sym__quest, + ACTIONS(6255), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [10384] = 3, + ACTIONS(5146), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 51, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [10448] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 23, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4819), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [10514] = 5, + ACTIONS(6340), 1, + anon_sym_QMARK, + STATE(2520), 1, + sym__quest, + ACTIONS(6255), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [10582] = 5, + ACTIONS(6344), 1, + anon_sym_QMARK, + STATE(2518), 1, + sym__quest, + ACTIONS(6346), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6342), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [10650] = 5, + ACTIONS(6350), 1, + anon_sym_QMARK, + STATE(2541), 1, + sym__quest, + ACTIONS(6352), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [10718] = 5, + ACTIONS(6354), 1, + anon_sym_QMARK, + STATE(2426), 1, + sym__quest, + ACTIONS(6352), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [10786] = 5, + ACTIONS(6358), 1, + anon_sym_QMARK, + STATE(2429), 1, + sym__quest, + ACTIONS(6360), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [10854] = 5, + ACTIONS(6362), 1, + anon_sym_QMARK, + STATE(2549), 1, + sym__quest, + ACTIONS(6360), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [10922] = 5, + ACTIONS(6366), 1, + anon_sym_QMARK, + STATE(2432), 1, + sym__quest, + ACTIONS(6368), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6364), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [10990] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4979), 25, + sym__semi, + sym__arrow_operator_custom, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4981), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [11056] = 5, + ACTIONS(6372), 1, + anon_sym_QMARK, + STATE(2552), 1, + sym__quest, + ACTIONS(6374), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [11124] = 5, + ACTIONS(6376), 1, + anon_sym_QMARK, + STATE(2434), 1, + sym__quest, + ACTIONS(6374), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [11192] = 5, + ACTIONS(6380), 1, + anon_sym_QMARK, + STATE(2436), 1, + sym__quest, + ACTIONS(6382), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6378), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [11260] = 5, + ACTIONS(6386), 1, + anon_sym_QMARK, + STATE(2439), 1, + sym__quest, + ACTIONS(6388), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6384), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [11328] = 5, + ACTIONS(6392), 1, + anon_sym_QMARK, + STATE(2440), 1, + sym__quest, + ACTIONS(6394), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6390), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [11396] = 5, + ACTIONS(6398), 1, + anon_sym_QMARK, + STATE(2517), 1, + sym__quest, + ACTIONS(6400), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6396), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [11464] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4745), 1, + aux_sym_simple_identifier_token1, + STATE(2452), 1, + aux_sym_call_suffix_repeat1, + STATE(9905), 1, + sym_simple_identifier, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(4749), 18, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4751), 29, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [11538] = 5, + ACTIONS(6404), 1, + anon_sym_QMARK, + STATE(2442), 1, + sym__quest, + ACTIONS(6406), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6402), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [11606] = 5, + ACTIONS(6410), 1, + anon_sym_QMARK, + STATE(2443), 1, + sym__quest, + ACTIONS(6412), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6408), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [11674] = 5, + ACTIONS(6416), 1, + anon_sym_QMARK, + STATE(2444), 1, + sym__quest, + ACTIONS(6418), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6414), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [11742] = 5, + ACTIONS(6422), 1, + anon_sym_QMARK, + STATE(2539), 1, + sym__quest, + ACTIONS(6424), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6420), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [11810] = 5, + ACTIONS(6428), 1, + anon_sym_QMARK, + STATE(2446), 1, + sym__quest, + ACTIONS(6430), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6426), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [11878] = 5, + ACTIONS(6434), 1, + anon_sym_QMARK, + STATE(2447), 1, + sym__quest, + ACTIONS(6436), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6432), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [11946] = 5, + ACTIONS(6440), 1, + anon_sym_QMARK, + STATE(2551), 1, + sym__quest, + ACTIONS(6442), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6438), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [12014] = 5, + ACTIONS(6446), 1, + anon_sym_QMARK, + STATE(2448), 1, + sym__quest, + ACTIONS(6448), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6444), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [12082] = 5, + ACTIONS(6452), 1, + anon_sym_QMARK, + STATE(2449), 1, + sym__quest, + ACTIONS(6454), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6450), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [12150] = 5, + ACTIONS(6458), 1, + anon_sym_QMARK, + STATE(2454), 1, + sym__quest, + ACTIONS(6460), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6456), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [12218] = 5, + ACTIONS(6464), 1, + anon_sym_QMARK, + STATE(2553), 1, + sym__quest, + ACTIONS(6466), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6462), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [12286] = 5, + ACTIONS(6470), 1, + anon_sym_QMARK, + STATE(2455), 1, + sym__quest, + ACTIONS(6472), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6468), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [12354] = 5, + ACTIONS(6476), 1, + anon_sym_QMARK, + STATE(2547), 1, + sym__quest, + ACTIONS(6478), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6474), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [12422] = 5, + ACTIONS(6482), 1, + anon_sym_QMARK, + STATE(2548), 1, + sym__quest, + ACTIONS(6484), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6480), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [12490] = 11, + ACTIONS(4632), 1, + anon_sym_COMMA, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(6203), 1, + sym_where_keyword, + ACTIONS(6490), 1, + sym__eq_custom, + STATE(1030), 1, + sym__equal_sign, + STATE(2516), 1, + sym_type_constraints, + STATE(2738), 1, + sym_computed_property, + STATE(2743), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(6488), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6486), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [12570] = 5, + ACTIONS(6494), 1, + anon_sym_QMARK, + STATE(2456), 1, + sym__quest, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6492), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [12638] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4745), 1, + aux_sym_simple_identifier_token1, + STATE(2404), 1, + aux_sym_call_suffix_repeat1, + STATE(9905), 1, + sym_simple_identifier, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(4805), 18, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4807), 29, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [12712] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(6498), 6, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(4927), 19, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4929), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [12782] = 5, + ACTIONS(6502), 1, + anon_sym_QMARK, + STATE(2384), 1, + sym__quest, + ACTIONS(6504), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6500), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [12850] = 5, + ACTIONS(6508), 1, + anon_sym_QMARK, + STATE(2542), 1, + sym__quest, + ACTIONS(6510), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6506), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [12918] = 5, + ACTIONS(6514), 1, + anon_sym_QMARK, + STATE(2532), 1, + sym__quest, + ACTIONS(6516), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6512), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [12986] = 3, + ACTIONS(5114), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 50, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [13049] = 3, + ACTIONS(4993), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 50, + 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_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [13112] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4875), 22, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4873), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [13177] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4879), 22, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4877), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [13242] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4867), 23, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4865), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [13307] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5308), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4847), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4845), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [13374] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6518), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6522), 1, + anon_sym_LBRACK, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(2978), 1, + aux_sym_key_path_expression_repeat1, + STATE(2987), 1, + sym_simple_identifier, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6520), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2982), 3, + sym__simple_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(4853), 18, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4859), 23, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [13453] = 3, + ACTIONS(5110), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 50, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [13516] = 3, + ACTIONS(5138), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 50, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [13579] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4895), 22, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4893), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [13644] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4839), 22, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4837), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [13709] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4847), 22, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4845), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [13774] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4827), 22, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4825), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [13839] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(6526), 1, + sym__immediate_quest, + ACTIONS(6528), 1, + sym__arrow_operator_custom, + STATE(3005), 1, + aux_sym_optional_type_repeat1, + STATE(4457), 1, + sym__arrow_operator, + STATE(9631), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6781), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4735), 22, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [13920] = 3, + ACTIONS(5126), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 50, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [13983] = 3, + ACTIONS(5118), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 50, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [14046] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4871), 22, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4869), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [14111] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6530), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6534), 1, + anon_sym_LBRACK, + ACTIONS(6536), 1, + anon_sym_DOT, + STATE(2977), 1, + aux_sym_key_path_expression_repeat1, + STATE(3016), 1, + sym_simple_identifier, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6532), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2961), 3, + sym__simple_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(4853), 18, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4859), 23, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [14190] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4831), 22, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4829), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [14255] = 3, + ACTIONS(5138), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 50, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [14318] = 3, + ACTIONS(5118), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 50, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [14381] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6538), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6542), 1, + anon_sym_LBRACK, + ACTIONS(6544), 1, + anon_sym_DOT, + STATE(2963), 1, + aux_sym_key_path_expression_repeat1, + STATE(2984), 1, + sym_simple_identifier, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(6540), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2962), 3, + sym__simple_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(4853), 19, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4859), 23, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [14460] = 26, + ACTIONS(5344), 1, + anon_sym_func, + ACTIONS(5350), 1, + anon_sym_init, + ACTIONS(5962), 1, + anon_sym_typealias, + ACTIONS(6546), 1, + anon_sym_async, + ACTIONS(6550), 1, + anon_sym_struct, + ACTIONS(6552), 1, + anon_sym_class, + ACTIONS(6555), 1, + anon_sym_enum, + ACTIONS(6559), 1, + anon_sym_extension, + ACTIONS(6561), 1, + anon_sym_indirect, + ACTIONS(6563), 1, + anon_sym_AT, + ACTIONS(6566), 1, + sym_property_behavior_modifier, + ACTIONS(6569), 1, + anon_sym_final, + ACTIONS(6575), 1, + anon_sym_unowned, + STATE(7244), 1, + sym__non_constructor_function_decl, + STATE(7245), 1, + sym__constructor_function_decl, + STATE(7888), 1, + sym__modifierless_function_declaration_no_body, + STATE(8486), 1, + sym__modifierless_property_declaration, + STATE(8495), 1, + sym__modifierless_typealias_declaration, + STATE(8508), 1, + sym__modifierless_function_declaration, + STATE(8518), 1, + sym__modifierless_class_declaration, + STATE(10423), 1, + sym__async_modifier, + ACTIONS(6557), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(6572), 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(3019), 5, + sym_attribute, + aux_sym__locally_permitted_modifiers, + sym__locally_permitted_modifier, + sym_inheritance_modifier, + sym_ownership_modifier, + ACTIONS(6548), 21, + sym_default_keyword, + anon_sym_case, + anon_sym_prefix, + anon_sym_infix, + anon_sym_postfix, + anon_sym_override, + anon_sym_convenience, + anon_sym_required, + anon_sym_public, + anon_sym_private, + anon_sym_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, + [14569] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4863), 22, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4861), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [14634] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4899), 22, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4897), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [14699] = 3, + ACTIONS(5114), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 50, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [14762] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4831), 22, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4829), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [14827] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5320), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4863), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4861), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [14894] = 5, + ACTIONS(6582), 1, + sym__as_custom, + STATE(4357), 1, + sym__as, + ACTIONS(6580), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6578), 48, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [14961] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(5086), 1, + anon_sym_DOT, + ACTIONS(6584), 1, + anon_sym_COMMA, + ACTIONS(6587), 1, + anon_sym_RBRACK, + ACTIONS(6594), 1, + sym__eq_custom, + STATE(574), 1, + sym__equal_sign, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(6591), 2, + sym__immediate_quest, + anon_sym_AMP, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 4, + sym__dot_custom, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 14, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 19, + anon_sym_QMARK, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [15046] = 3, + ACTIONS(5126), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 50, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [15109] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4867), 22, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4865), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [15174] = 8, + ACTIONS(6286), 1, + anon_sym_LPAREN, + ACTIONS(6294), 1, + sym__eq_custom, + STATE(827), 1, + sym__equal_sign, + STATE(2736), 1, + sym_enum_type_parameters, + STATE(2805), 1, + sym__enum_entry_suffix, + ACTIONS(6598), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6596), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [15247] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4863), 22, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4861), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [15312] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4827), 23, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4825), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [15377] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4867), 22, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4865), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [15442] = 9, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(6203), 1, + sym_where_keyword, + ACTIONS(6604), 1, + sym__eq_custom, + STATE(1046), 1, + sym__equal_sign, + STATE(2605), 1, + sym_type_constraints, + STATE(2836), 1, + sym_computed_property, + ACTIONS(6602), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6600), 44, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [15517] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4895), 22, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4893), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [15582] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(6606), 1, + sym__immediate_quest, + ACTIONS(6608), 1, + sym__arrow_operator_custom, + STATE(3017), 1, + aux_sym_optional_type_repeat1, + STATE(4573), 1, + sym__arrow_operator, + STATE(9562), 1, + sym_throws, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6930), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(4733), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4735), 22, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [15663] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4895), 23, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4893), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [15728] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4899), 22, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4897), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [15793] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4839), 22, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4837), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [15858] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4863), 23, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4861), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [15923] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4847), 23, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4845), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [15988] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4899), 23, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4897), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [16053] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4871), 23, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4869), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [16118] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4831), 23, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4829), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [16183] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4847), 22, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + 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, + anon_sym_LBRACE, + ACTIONS(4845), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [16248] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4839), 23, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4837), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [16313] = 3, + ACTIONS(4985), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 50, + 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_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [16376] = 3, + ACTIONS(5110), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 50, + sym__eq_custom, + anon_sym_RPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [16439] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4879), 22, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4877), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [16504] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4875), 22, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4873), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [16569] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4871), 22, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4869), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [16634] = 3, + ACTIONS(4989), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 50, + 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_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [16697] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4875), 23, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4873), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [16762] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4879), 23, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4877), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [16827] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(6610), 1, + sym__immediate_quest, + ACTIONS(6612), 1, + sym__arrow_operator_custom, + STATE(2969), 1, + aux_sym_optional_type_repeat1, + STATE(4460), 1, + sym__arrow_operator, + STATE(9824), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6945), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4735), 22, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [16908] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4827), 22, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(4825), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [16973] = 9, + ACTIONS(4632), 1, + anon_sym_COMMA, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(6618), 1, + sym__eq_custom, + STATE(1040), 1, + sym__equal_sign, + STATE(2812), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(2813), 1, + sym_computed_property, + ACTIONS(6616), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6614), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [17047] = 3, + ACTIONS(6622), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6620), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [17109] = 3, + ACTIONS(6626), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6624), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [17171] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4871), 21, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4869), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [17235] = 3, + ACTIONS(6352), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [17297] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4827), 21, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4825), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [17361] = 9, + ACTIONS(4632), 1, + anon_sym_COMMA, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(6313), 1, + sym__eq_custom, + STATE(1045), 1, + sym__equal_sign, + STATE(2798), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(2800), 1, + sym_computed_property, + ACTIONS(6311), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6309), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [17435] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4839), 21, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4837), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [17499] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4895), 21, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4893), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [17563] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(6628), 1, + sym__immediate_quest, + ACTIONS(6630), 1, + sym__arrow_operator_custom, + STATE(3040), 1, + aux_sym_optional_type_repeat1, + STATE(4594), 1, + sym__arrow_operator, + STATE(9776), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6557), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4735), 22, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [17643] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5376), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4847), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4845), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [17709] = 11, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(6632), 1, + sym__immediate_quest, + ACTIONS(6634), 1, + sym__arrow_operator_custom, + STATE(3031), 1, + aux_sym_optional_type_repeat1, + STATE(4640), 1, + sym__arrow_operator, + STATE(9633), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6989), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(4735), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 38, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [17787] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6636), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6640), 1, + anon_sym_LBRACK, + ACTIONS(6642), 1, + anon_sym_DOT, + STATE(3047), 1, + aux_sym_key_path_expression_repeat1, + STATE(3071), 1, + sym_simple_identifier, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6638), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3029), 3, + sym__simple_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(4853), 17, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4859), 23, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [17865] = 11, + ACTIONS(6644), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6650), 1, + anon_sym_func, + ACTIONS(6653), 1, + anon_sym_init, + STATE(5751), 1, + sym_simple_identifier, + STATE(7244), 1, + sym__non_constructor_function_decl, + STATE(7245), 1, + sym__constructor_function_decl, + STATE(10393), 1, + sym__modifierless_function_declaration_no_body, + ACTIONS(6646), 3, + aux_sym_simple_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(6656), 4, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + ACTIONS(6648), 37, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_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, + [17943] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4847), 21, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4845), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [18007] = 3, + ACTIONS(6660), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6658), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [18069] = 3, + ACTIONS(6664), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6662), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [18131] = 9, + ACTIONS(4632), 1, + anon_sym_COMMA, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(6490), 1, + sym__eq_custom, + STATE(1030), 1, + sym__equal_sign, + STATE(2738), 1, + sym_computed_property, + STATE(2744), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(6488), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6486), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [18205] = 3, + ACTIONS(6668), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6666), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [18267] = 3, + ACTIONS(6672), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6670), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [18329] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4831), 21, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4829), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [18393] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4875), 21, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4873), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [18457] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4879), 21, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4877), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [18521] = 3, + ACTIONS(6676), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6674), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [18583] = 3, + ACTIONS(6244), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6238), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [18645] = 3, + ACTIONS(6360), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [18707] = 3, + ACTIONS(6680), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6678), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [18769] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4899), 21, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4897), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [18833] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4867), 21, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4865), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [18897] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4863), 21, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + ACTIONS(4861), 30, + aux_sym_simple_identifier_token1, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [18961] = 9, + ACTIONS(4632), 1, + anon_sym_COMMA, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(6686), 1, + sym__eq_custom, + STATE(1047), 1, + sym__equal_sign, + STATE(2765), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(2767), 1, + sym_computed_property, + ACTIONS(6684), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6682), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [19035] = 3, + ACTIONS(6690), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6688), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [19097] = 3, + ACTIONS(6694), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6692), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [19159] = 3, + ACTIONS(6374), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [19221] = 3, + ACTIONS(4819), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 49, + sym__eq_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [19283] = 3, + ACTIONS(6698), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6696), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [19345] = 3, + ACTIONS(6400), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6396), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [19407] = 3, + ACTIONS(6702), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6700), 49, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [19469] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6704), 1, + anon_sym_COLON, + ACTIONS(6706), 1, + anon_sym_QMARK, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [19548] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6708), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [19627] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6710), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(6131), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 13, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [19706] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6712), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [19785] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6714), 1, + anon_sym_COLON, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [19864] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6720), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [19943] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6722), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [20022] = 7, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(6604), 1, + sym__eq_custom, + STATE(1046), 1, + sym__equal_sign, + STATE(2836), 1, + sym_computed_property, + ACTIONS(6602), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6600), 44, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [20091] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6724), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [20170] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6726), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [20249] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6728), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [20328] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6730), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [20407] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 21, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_operator_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4819), 29, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [20470] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6732), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [20549] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 16, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [20626] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6734), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [20705] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6736), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [20784] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6738), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [20863] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6740), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [20942] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6742), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21021] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6744), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21100] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6746), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21179] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21258] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6750), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 17, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_is, + ACTIONS(4886), 21, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21331] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6752), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21410] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6754), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21489] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6756), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 17, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_is, + ACTIONS(4886), 21, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21562] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6758), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21641] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6760), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21720] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6762), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21799] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6764), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21878] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6766), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [21957] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6768), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22036] = 8, + ACTIONS(6203), 1, + sym_where_keyword, + ACTIONS(6770), 1, + anon_sym_COLON, + ACTIONS(6776), 1, + sym__eq_custom, + STATE(2740), 1, + sym_type_constraints, + STATE(4376), 1, + sym__equal_sign, + ACTIONS(6774), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6772), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [22107] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6778), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22186] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6780), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22265] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6782), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22344] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6784), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22423] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6786), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22502] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6788), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22581] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6790), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22660] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5086), 2, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(6591), 2, + sym__immediate_quest, + anon_sym_AMP, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 5, + sym__dot_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 14, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 19, + anon_sym_QMARK, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22735] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(5086), 1, + anon_sym_DOT, + ACTIONS(6792), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(6591), 2, + sym__immediate_quest, + anon_sym_AMP, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 5, + sym__dot_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 14, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 19, + anon_sym_QMARK, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22812] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6794), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22891] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6796), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [22970] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6798), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23049] = 11, + ACTIONS(6644), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6650), 1, + anon_sym_func, + ACTIONS(6653), 1, + anon_sym_init, + STATE(5796), 1, + sym_simple_identifier, + STATE(7244), 1, + sym__non_constructor_function_decl, + STATE(7245), 1, + sym__constructor_function_decl, + STATE(10393), 1, + sym__modifierless_function_declaration_no_body, + ACTIONS(6646), 3, + aux_sym_simple_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(6656), 4, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + ACTIONS(6648), 36, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_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, + [23126] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6800), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23205] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6802), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(6718), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 13, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23284] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6804), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23363] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6806), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23442] = 7, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(6812), 1, + sym__eq_custom, + STATE(1048), 1, + sym__equal_sign, + STATE(2837), 1, + sym_computed_property, + ACTIONS(6810), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6808), 44, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [23511] = 4, + ACTIONS(6816), 1, + anon_sym_BANG, + ACTIONS(6818), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6814), 47, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [23574] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6820), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23653] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(5086), 1, + anon_sym_DOT, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(6591), 2, + sym__immediate_quest, + anon_sym_AMP, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 5, + sym__dot_custom, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 19, + anon_sym_QMARK, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23728] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6822), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23807] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6824), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23886] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 16, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [23963] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6826), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(6718), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 13, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [24042] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6828), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [24121] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + ACTIONS(6830), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [24200] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(6832), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [24279] = 8, + ACTIONS(6203), 1, + sym_where_keyword, + ACTIONS(6834), 1, + anon_sym_COLON, + ACTIONS(6840), 1, + sym__eq_custom, + STATE(2811), 1, + sym_type_constraints, + STATE(4405), 1, + sym__equal_sign, + ACTIONS(6838), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6836), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [24350] = 5, + ACTIONS(6842), 1, + anon_sym_LT, + STATE(2752), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 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(5086), 36, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_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, + [24414] = 11, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(6844), 1, + sym__immediate_quest, + ACTIONS(6846), 1, + sym__arrow_operator_custom, + STATE(3336), 1, + aux_sym_optional_type_repeat1, + STATE(4608), 1, + sym__arrow_operator, + STATE(9592), 1, + sym_throws, + ACTIONS(4735), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6955), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 37, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [24490] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 17, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 21, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [24560] = 7, + ACTIONS(6203), 1, + sym_where_keyword, + ACTIONS(6852), 1, + sym__eq_custom, + STATE(2802), 1, + sym_type_constraints, + STATE(4370), 1, + sym__equal_sign, + ACTIONS(6850), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6848), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [24628] = 6, + ACTIONS(6858), 1, + sym__dot_custom, + STATE(2621), 1, + aux_sym_identifier_repeat1, + STATE(6637), 1, + sym__dot, + ACTIONS(6856), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6854), 44, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [24694] = 6, + ACTIONS(6865), 1, + sym__dot_custom, + STATE(2643), 1, + aux_sym_identifier_repeat1, + STATE(6637), 1, + sym__dot, + ACTIONS(6863), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6861), 44, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [24760] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6867), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 16, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 21, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [24832] = 6, + ACTIONS(6869), 1, + sym__dot_custom, + STATE(2624), 1, + aux_sym_user_type_repeat1, + STATE(6117), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 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(5029), 36, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_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, + [24898] = 3, + ACTIONS(6874), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6872), 47, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [24958] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6706), 1, + anon_sym_QMARK, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(6131), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 13, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25034] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6876), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 16, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 21, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25106] = 5, + ACTIONS(6878), 1, + sym__immediate_quest, + STATE(2633), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5055), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [25170] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6131), 1, + sym__as_custom, + ACTIONS(6706), 1, + anon_sym_QMARK, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 15, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25246] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 17, + sym__semi, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4886), 21, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25316] = 5, + ACTIONS(6880), 1, + anon_sym_COMMA, + STATE(2637), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(6884), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6882), 45, + sym__eq_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [25380] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6886), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 16, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 21, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25452] = 5, + ACTIONS(6888), 1, + sym__immediate_quest, + STATE(2633), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5103), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [25516] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6891), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 16, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 21, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25588] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6893), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 16, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 21, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25660] = 6, + ACTIONS(6895), 1, + sym__dot_custom, + STATE(2624), 1, + aux_sym_user_type_repeat1, + STATE(6117), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 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(5036), 36, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_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, + [25726] = 5, + ACTIONS(6897), 1, + anon_sym_COMMA, + STATE(2637), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(6902), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6900), 45, + sym__eq_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [25790] = 5, + ACTIONS(6110), 1, + sym__immediate_quest, + STATE(2628), 1, + aux_sym_optional_type_repeat1, + ACTIONS(4735), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [25854] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 18, + sym_multiline_comment, + sym__semi, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4886), 21, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [25924] = 3, + ACTIONS(6906), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6904), 47, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [25984] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6908), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 16, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 21, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26056] = 5, + ACTIONS(6880), 1, + anon_sym_COMMA, + STATE(2631), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(6912), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6910), 45, + sym__eq_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [26120] = 6, + ACTIONS(6865), 1, + sym__dot_custom, + STATE(2621), 1, + aux_sym_identifier_repeat1, + STATE(6637), 1, + sym__dot, + ACTIONS(6916), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6914), 44, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [26186] = 7, + ACTIONS(6203), 1, + sym_where_keyword, + ACTIONS(6922), 1, + sym__eq_custom, + STATE(2762), 1, + sym_type_constraints, + STATE(4345), 1, + sym__equal_sign, + ACTIONS(6920), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6918), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [26254] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6924), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 16, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 21, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26326] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + ACTIONS(6716), 1, + anon_sym_QMARK, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(6718), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 13, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_quest_custom, + sym__as_bang_custom, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 20, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26402] = 6, + ACTIONS(6895), 1, + sym__dot_custom, + STATE(2636), 1, + aux_sym_user_type_repeat1, + STATE(6117), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 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(5022), 36, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_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, + [26468] = 4, + ACTIONS(6926), 1, + anon_sym_BANG, + ACTIONS(6818), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6814), 46, + sym__eq_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [26530] = 5, + ACTIONS(6928), 1, + anon_sym_AMP, + STATE(2649), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5096), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 44, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [26593] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4913), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4915), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26654] = 11, + ACTIONS(6644), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6650), 1, + anon_sym_func, + ACTIONS(6653), 1, + anon_sym_init, + STATE(5676), 1, + sym_simple_identifier, + STATE(7244), 1, + sym__non_constructor_function_decl, + STATE(7245), 1, + sym__constructor_function_decl, + STATE(10393), 1, + sym__modifierless_function_declaration_no_body, + ACTIONS(6646), 3, + aux_sym_simple_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(6656), 4, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + ACTIONS(6648), 34, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_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, + [26729] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4957), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4959), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26790] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4917), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4920), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26853] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4945), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4947), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [26914] = 6, + ACTIONS(6284), 1, + anon_sym_COMMA, + ACTIONS(6933), 1, + anon_sym_SEMI, + STATE(2724), 1, + aux_sym_enum_entry_repeat1, + ACTIONS(6935), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6931), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [26979] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4909), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4911), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27040] = 6, + ACTIONS(6937), 1, + anon_sym_DOT, + ACTIONS(6939), 1, + anon_sym_AMP, + STATE(2672), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5096), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [27105] = 3, + ACTIONS(6943), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6941), 46, + sym__eq_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [27164] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4927), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4929), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27227] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4923), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4925), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27288] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4975), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4977), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27349] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4961), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4963), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27412] = 6, + ACTIONS(6937), 1, + anon_sym_DOT, + ACTIONS(6939), 1, + anon_sym_AMP, + STATE(2672), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5063), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [27477] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4819), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27538] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4957), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4959), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27599] = 3, + ACTIONS(6947), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6945), 46, + sym__eq_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [27658] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4945), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4947), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27719] = 3, + ACTIONS(6902), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6900), 46, + sym__eq_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [27778] = 6, + ACTIONS(6284), 1, + anon_sym_COMMA, + ACTIONS(6951), 1, + anon_sym_SEMI, + STATE(2724), 1, + aux_sym_enum_entry_repeat1, + ACTIONS(6953), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6949), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [27843] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4917), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4920), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27906] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4905), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4907), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [27967] = 5, + ACTIONS(6939), 1, + anon_sym_AMP, + STATE(2649), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5051), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 44, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [28030] = 6, + ACTIONS(6284), 1, + anon_sym_COMMA, + ACTIONS(6957), 1, + anon_sym_SEMI, + STATE(2724), 1, + aux_sym_enum_entry_repeat1, + ACTIONS(6959), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6955), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [28095] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4923), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4925), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28156] = 6, + ACTIONS(6284), 1, + anon_sym_COMMA, + ACTIONS(6963), 1, + anon_sym_SEMI, + STATE(2673), 1, + aux_sym_enum_entry_repeat1, + ACTIONS(6965), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6961), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [28221] = 3, + ACTIONS(6969), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6967), 46, + sym__eq_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [28280] = 6, + ACTIONS(6937), 1, + anon_sym_DOT, + ACTIONS(6939), 1, + anon_sym_AMP, + STATE(2672), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5045), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [28345] = 3, + ACTIONS(4819), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 46, + sym__eq_custom, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [28404] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4905), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4907), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28465] = 8, + ACTIONS(6971), 1, + anon_sym_AT, + ACTIONS(6974), 1, + sym_property_behavior_modifier, + ACTIONS(6977), 1, + anon_sym_final, + ACTIONS(6983), 1, + anon_sym_unowned, + ACTIONS(6980), 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(2690), 5, + sym_attribute, + aux_sym__locally_permitted_modifiers, + sym__locally_permitted_modifier, + sym_inheritance_modifier, + sym_ownership_modifier, + ACTIONS(6548), 36, + 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, + anon_sym_override, + anon_sym_convenience, + anon_sym_required, + anon_sym_public, + anon_sym_private, + anon_sym_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, + [28534] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4751), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4939), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4942), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28597] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6986), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4927), 18, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4929), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28662] = 3, + ACTIONS(6906), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6904), 46, + sym__eq_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [28721] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4979), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4981), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28782] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4935), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4937), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28843] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4935), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4937), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28904] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4953), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4955), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [28965] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_LT, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4883), 3, + sym__dot_custom, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4881), 16, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_is, + ACTIONS(4886), 21, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29034] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4961), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4963), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29097] = 8, + ACTIONS(6991), 1, + anon_sym_AT, + ACTIONS(6994), 1, + sym_property_behavior_modifier, + ACTIONS(6997), 1, + anon_sym_final, + ACTIONS(7003), 1, + anon_sym_unowned, + ACTIONS(7000), 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(2690), 5, + sym_attribute, + aux_sym__locally_permitted_modifiers, + sym__locally_permitted_modifier, + sym_inheritance_modifier, + sym_ownership_modifier, + ACTIONS(6989), 36, + 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, + anon_sym_override, + anon_sym_convenience, + anon_sym_required, + anon_sym_public, + anon_sym_private, + anon_sym_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, + [29166] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4819), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29227] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4945), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4947), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29288] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4927), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4929), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29351] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4901), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4903), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29412] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4909), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4911), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29473] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4975), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4977), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29534] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4751), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4939), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4942), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29597] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4969), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4972), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29660] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4927), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4929), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29723] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 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(4819), 36, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_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, + [29782] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4749), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4751), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29843] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4961), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4963), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29906] = 3, + ACTIONS(4523), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4525), 46, + anon_sym_COLON, + anon_sym_LPAREN, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [29965] = 6, + ACTIONS(6284), 1, + anon_sym_COMMA, + ACTIONS(7008), 1, + anon_sym_SEMI, + STATE(2725), 1, + aux_sym_enum_entry_repeat1, + ACTIONS(7010), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7006), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [30030] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4917), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4920), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30093] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4749), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4751), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30154] = 3, + ACTIONS(5146), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 46, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [30213] = 6, + ACTIONS(6284), 1, + anon_sym_COMMA, + ACTIONS(7014), 1, + anon_sym_SEMI, + STATE(2724), 1, + aux_sym_enum_entry_repeat1, + ACTIONS(7016), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7012), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [30278] = 3, + ACTIONS(7020), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7018), 46, + sym__eq_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [30337] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4975), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4977), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30398] = 3, + ACTIONS(5142), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 46, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [30457] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4901), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4903), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30518] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4953), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4955), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30579] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4901), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4903), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30640] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4749), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4751), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30701] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4957), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4959), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30762] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4953), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4955), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [30823] = 6, + ACTIONS(6284), 1, + anon_sym_COMMA, + ACTIONS(7024), 1, + anon_sym_SEMI, + STATE(2719), 1, + aux_sym_enum_entry_repeat1, + ACTIONS(7026), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7022), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [30888] = 6, + ACTIONS(6284), 1, + anon_sym_COMMA, + ACTIONS(7030), 1, + anon_sym_SEMI, + STATE(2724), 1, + aux_sym_enum_entry_repeat1, + ACTIONS(7032), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7028), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [30953] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4979), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4981), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31014] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4913), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4915), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31075] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4969), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4972), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31138] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4819), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31199] = 5, + ACTIONS(7034), 1, + anon_sym_COMMA, + STATE(2724), 1, + aux_sym_enum_entry_repeat1, + ACTIONS(7039), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7037), 44, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [31262] = 6, + ACTIONS(6284), 1, + anon_sym_COMMA, + ACTIONS(7043), 1, + anon_sym_SEMI, + STATE(2724), 1, + aux_sym_enum_entry_repeat1, + ACTIONS(7045), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7041), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [31327] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4923), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4925), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31388] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4751), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4939), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4942), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31451] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4935), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4937), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31512] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4979), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4981), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31573] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4969), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4972), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31636] = 3, + ACTIONS(7049), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7047), 46, + sym__eq_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [31695] = 11, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(7051), 1, + sym__immediate_quest, + ACTIONS(7053), 1, + sym__arrow_operator_custom, + STATE(3388), 1, + aux_sym_optional_type_repeat1, + STATE(4563), 1, + sym__arrow_operator, + STATE(9552), 1, + sym_throws, + ACTIONS(4735), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6876), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 36, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [31770] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4905), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4907), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31831] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4913), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4915), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31892] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4909), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4911), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31953] = 3, + ACTIONS(7057), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7055), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [32011] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2793), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7061), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7059), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [32073] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2809), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7065), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7063), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [32135] = 3, + ACTIONS(7069), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7067), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [32193] = 5, + ACTIONS(7075), 1, + sym__eq_custom, + STATE(4366), 1, + sym__equal_sign, + ACTIONS(7073), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7071), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [32255] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4751), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4939), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4942), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32317] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4819), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32377] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7079), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7077), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [32439] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7079), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7077), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [32501] = 3, + ACTIONS(7083), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7081), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [32559] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7087), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7085), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [32621] = 3, + ACTIONS(7091), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7089), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [32679] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4945), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4947), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32739] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7095), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7093), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [32801] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4985), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4983), 24, + sym__semi, + sym__arrow_operator_custom, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + [32861] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4749), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4751), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32921] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 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(5130), 36, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_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, + [32979] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4979), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4981), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [33039] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4935), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4937), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [33099] = 3, + ACTIONS(7099), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7097), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [33157] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7103), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7101), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [33219] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7107), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7105), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [33281] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7111), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7109), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [33343] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7115), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7113), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [33405] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4961), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4963), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [33467] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4927), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4929), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [33529] = 5, + ACTIONS(7121), 1, + sym__eq_custom, + STATE(4478), 1, + sym__equal_sign, + ACTIONS(7119), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7117), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [33591] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7125), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7123), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [33653] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7129), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7127), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [33715] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7133), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7131), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [33777] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4917), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4920), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [33839] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2758), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7137), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7135), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [33901] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 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(5029), 36, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_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, + [33959] = 3, + ACTIONS(5118), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [34017] = 3, + ACTIONS(5138), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [34075] = 4, + ACTIONS(7139), 1, + anon_sym_LT, + ACTIONS(4563), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4565), 44, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [34135] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7143), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7141), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [34197] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7147), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7145), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [34259] = 3, + ACTIONS(5114), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [34317] = 5, + ACTIONS(7149), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7154), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7152), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [34379] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4953), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4955), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [34439] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4901), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4903), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [34499] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4975), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4977), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [34559] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4993), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4991), 24, + sym__arrow_operator_custom, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + [34619] = 3, + ACTIONS(7158), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7156), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [34677] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4989), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4987), 24, + sym__arrow_operator_custom, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + [34737] = 3, + ACTIONS(5126), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [34795] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4909), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4911), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [34855] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 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(5122), 36, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_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, + [34913] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4985), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4983), 24, + sym__arrow_operator_custom, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + [34973] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4969), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4972), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35035] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4891), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + ACTIONS(4927), 17, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4929), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35099] = 3, + ACTIONS(5110), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [35157] = 3, + ACTIONS(7165), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7163), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [35215] = 3, + ACTIONS(7169), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7167), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [35273] = 3, + ACTIONS(7173), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7171), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [35331] = 3, + ACTIONS(7177), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7175), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [35389] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7181), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7179), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [35451] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 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(5134), 36, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_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, + [35509] = 3, + ACTIONS(6856), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6854), 45, + sym__dot_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [35567] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4989), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4987), 24, + sym__semi, + sym__arrow_operator_custom, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + [35627] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4905), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4907), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35687] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7185), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7183), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [35749] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7185), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7183), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [35811] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2764), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7189), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7187), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [35873] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4913), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4915), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35933] = 5, + ACTIONS(7195), 1, + sym__eq_custom, + STATE(4348), 1, + sym__equal_sign, + ACTIONS(7193), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7191), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [35995] = 3, + ACTIONS(7199), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7197), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [36053] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4993), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4991), 25, + sym_multiline_comment, + sym__semi, + sym__arrow_operator_custom, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + [36113] = 3, + ACTIONS(7203), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7201), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [36171] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7207), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7205), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [36233] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2746), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7211), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7209), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [36295] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7215), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7213), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [36357] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7219), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7217), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [36419] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4989), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4987), 25, + sym_multiline_comment, + sym__semi, + sym__arrow_operator_custom, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + [36479] = 5, + ACTIONS(7225), 1, + sym__eq_custom, + STATE(4378), 1, + sym__equal_sign, + ACTIONS(7223), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7221), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [36541] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2775), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7229), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7227), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [36603] = 5, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(2773), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7233), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7231), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [36665] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4993), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4991), 24, + sym__semi, + sym__arrow_operator_custom, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + [36725] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4923), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4925), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36785] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4985), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4983), 25, + sym_multiline_comment, + sym__semi, + sym__arrow_operator_custom, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + [36845] = 3, + ACTIONS(7237), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7235), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [36903] = 3, + ACTIONS(7241), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7239), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [36961] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4957), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4959), 28, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + 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_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [37021] = 10, + ACTIONS(7243), 1, + aux_sym_simple_identifier_token1, + ACTIONS(7247), 1, + anon_sym_LBRACK, + ACTIONS(7251), 1, + anon_sym_self, + ACTIONS(7253), 1, + anon_sym_AT, + STATE(5068), 1, + sym_simple_identifier, + STATE(5986), 1, + sym_self_expression, + ACTIONS(7245), 3, + aux_sym_simple_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(7256), 5, + sym_default_keyword, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + ACTIONS(7249), 33, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_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, + [37093] = 3, + ACTIONS(7260), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7258), 45, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [37151] = 3, + ACTIONS(4993), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 43, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [37208] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7262), 1, + anon_sym_self, + STATE(2843), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4995), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4997), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [37271] = 3, + ACTIONS(7266), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7264), 44, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [37328] = 3, + ACTIONS(7270), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7268), 44, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [37385] = 3, + ACTIONS(7274), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7272), 44, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [37442] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7276), 1, + anon_sym_LBRACK, + ACTIONS(7279), 1, + anon_sym_QMARK, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(7282), 2, + sym_bang, + anon_sym_self, + STATE(2827), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(5001), 19, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5006), 22, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [37509] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7285), 1, + anon_sym_self, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + STATE(2827), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(4995), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4997), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [37572] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 23, + sym__arrow_operator_custom, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4985), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [37631] = 4, + ACTIONS(7287), 1, + anon_sym_COLON, + ACTIONS(7291), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7289), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [37690] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7293), 1, + anon_sym_self, + STATE(2823), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5014), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5016), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [37753] = 4, + ACTIONS(7295), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6046), 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(6044), 36, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_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, + [37812] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7262), 1, + anon_sym_self, + STATE(2843), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5014), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5016), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [37875] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7285), 1, + anon_sym_self, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + STATE(2827), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(5014), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5016), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [37938] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7297), 1, + anon_sym_self, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + STATE(2828), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(5014), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5016), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38001] = 3, + ACTIONS(7301), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7299), 44, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [38058] = 3, + ACTIONS(7305), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7303), 44, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [38115] = 3, + ACTIONS(4989), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 43, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [38172] = 3, + ACTIONS(7309), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7307), 44, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [38229] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 23, + sym__arrow_operator_custom, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4989), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38288] = 19, + ACTIONS(183), 1, + anon_sym_unowned, + ACTIONS(187), 1, + sym_default_keyword, + ACTIONS(7311), 1, + anon_sym_RBRACE, + ACTIONS(7313), 1, + anon_sym_case, + ACTIONS(7319), 1, + anon_sym_AT, + ACTIONS(7321), 1, + sym_property_behavior_modifier, + ACTIONS(7329), 1, + anon_sym_final, + STATE(8623), 1, + sym_modifiers, + ACTIONS(7327), 2, + anon_sym_mutating, + anon_sym_nonmutating, + STATE(2845), 2, + sym_switch_entry, + aux_sym_switch_statement_repeat1, + ACTIONS(181), 3, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + ACTIONS(185), 3, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + ACTIONS(7317), 3, + anon_sym_prefix, + anon_sym_infix, + anon_sym_postfix, + ACTIONS(7323), 3, + anon_sym_override, + anon_sym_convenience, + anon_sym_required, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7315), 4, + anon_sym_class, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + ACTIONS(7325), 5, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + STATE(3546), 5, + sym_attribute, + aux_sym__locally_permitted_modifiers, + sym__locally_permitted_modifier, + sym_inheritance_modifier, + sym_ownership_modifier, + STATE(3134), 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, + [38377] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7331), 1, + anon_sym_self, + STATE(2844), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5014), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5016), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38440] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7333), 1, + anon_sym_LBRACK, + ACTIONS(7336), 1, + anon_sym_QMARK, + ACTIONS(7339), 2, + sym_bang, + anon_sym_self, + STATE(2843), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5001), 18, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5006), 22, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38507] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7342), 1, + anon_sym_LBRACK, + ACTIONS(7345), 1, + anon_sym_QMARK, + ACTIONS(7348), 2, + sym_bang, + anon_sym_self, + STATE(2844), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5001), 18, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5006), 22, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38574] = 19, + ACTIONS(7351), 1, + anon_sym_RBRACE, + ACTIONS(7353), 1, + anon_sym_case, + ACTIONS(7362), 1, + anon_sym_AT, + ACTIONS(7365), 1, + sym_property_behavior_modifier, + ACTIONS(7377), 1, + anon_sym_final, + ACTIONS(7386), 1, + anon_sym_unowned, + ACTIONS(7389), 1, + sym_default_keyword, + STATE(8623), 1, + sym_modifiers, + ACTIONS(7374), 2, + anon_sym_mutating, + anon_sym_nonmutating, + STATE(2845), 2, + sym_switch_entry, + aux_sym_switch_statement_repeat1, + ACTIONS(7359), 3, + anon_sym_prefix, + anon_sym_infix, + anon_sym_postfix, + ACTIONS(7368), 3, + anon_sym_override, + anon_sym_convenience, + anon_sym_required, + ACTIONS(7380), 3, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + ACTIONS(7383), 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(7356), 4, + anon_sym_class, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + ACTIONS(7371), 5, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + STATE(3546), 5, + sym_attribute, + aux_sym__locally_permitted_modifiers, + sym__locally_permitted_modifier, + sym_inheritance_modifier, + sym_ownership_modifier, + STATE(3134), 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, + [38663] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7392), 1, + anon_sym_self, + STATE(2850), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5014), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5016), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38726] = 3, + ACTIONS(4985), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 43, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [38783] = 19, + ACTIONS(183), 1, + anon_sym_unowned, + ACTIONS(187), 1, + sym_default_keyword, + ACTIONS(7313), 1, + anon_sym_case, + ACTIONS(7319), 1, + anon_sym_AT, + ACTIONS(7321), 1, + sym_property_behavior_modifier, + ACTIONS(7329), 1, + anon_sym_final, + ACTIONS(7394), 1, + anon_sym_RBRACE, + STATE(8623), 1, + sym_modifiers, + ACTIONS(7327), 2, + anon_sym_mutating, + anon_sym_nonmutating, + STATE(2845), 2, + sym_switch_entry, + aux_sym_switch_statement_repeat1, + ACTIONS(181), 3, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + ACTIONS(185), 3, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + ACTIONS(7317), 3, + anon_sym_prefix, + anon_sym_infix, + anon_sym_postfix, + ACTIONS(7323), 3, + anon_sym_override, + anon_sym_convenience, + anon_sym_required, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7315), 4, + anon_sym_class, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + ACTIONS(7325), 5, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + STATE(3546), 5, + sym_attribute, + aux_sym__locally_permitted_modifiers, + sym__locally_permitted_modifier, + sym_inheritance_modifier, + sym_ownership_modifier, + STATE(3134), 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, + [38872] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 23, + sym__arrow_operator_custom, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4993), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38931] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7331), 1, + anon_sym_self, + STATE(2844), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4995), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4997), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38994] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7396), 1, + sym__dot_custom, + STATE(2956), 1, + aux_sym_user_type_repeat1, + STATE(6304), 1, + sym__dot, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 19, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5036), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39058] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7399), 1, + anon_sym_self, + STATE(2876), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5014), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5016), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39120] = 3, + ACTIONS(7403), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7401), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [39176] = 3, + ACTIONS(7407), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7405), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [39232] = 3, + ACTIONS(7411), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7409), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [39288] = 3, + ACTIONS(7415), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7413), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [39344] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7417), 1, + sym__dot_custom, + STATE(2851), 1, + aux_sym_user_type_repeat1, + STATE(6304), 1, + sym__dot, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 19, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5022), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39408] = 3, + ACTIONS(7422), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7420), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [39464] = 3, + ACTIONS(7426), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7424), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [39520] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7428), 1, + sym__dot_custom, + STATE(2936), 1, + aux_sym_user_type_repeat1, + STATE(6097), 1, + sym__dot, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 19, + sym__semi, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5022), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39584] = 3, + ACTIONS(7433), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7431), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [39640] = 3, + ACTIONS(7437), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7435), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [39696] = 3, + ACTIONS(7426), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7424), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [39752] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7439), 1, + anon_sym_self, + STATE(2886), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5014), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5016), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39814] = 3, + ACTIONS(7443), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7441), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [39870] = 3, + ACTIONS(7447), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7445), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [39926] = 6, + ACTIONS(7449), 1, + sym__dot_custom, + STATE(2867), 1, + aux_sym_user_type_repeat1, + STATE(5949), 1, + sym__dot, + ACTIONS(5029), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 39, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [39988] = 3, + ACTIONS(7454), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7452), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [40044] = 3, + ACTIONS(7458), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7456), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [40100] = 3, + ACTIONS(7462), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7460), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [40156] = 3, + ACTIONS(7466), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7464), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [40212] = 3, + ACTIONS(7470), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7468), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [40268] = 3, + ACTIONS(7474), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7472), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [40324] = 3, + ACTIONS(7478), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7476), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [40380] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7480), 1, + sym__dot_custom, + STATE(2927), 1, + aux_sym_user_type_repeat1, + STATE(6051), 1, + sym__dot, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 20, + sym_multiline_comment, + sym__semi, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5036), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [40444] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7483), 1, + anon_sym_LBRACK, + ACTIONS(7486), 1, + anon_sym_QMARK, + ACTIONS(7489), 2, + sym_bang, + anon_sym_self, + STATE(2876), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5001), 17, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5006), 22, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [40510] = 3, + ACTIONS(7494), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7492), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [40566] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7496), 1, + sym__dot_custom, + STATE(2875), 1, + aux_sym_user_type_repeat1, + STATE(6051), 1, + sym__dot, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 20, + sym_multiline_comment, + sym__semi, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5022), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [40630] = 3, + ACTIONS(7501), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7499), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [40686] = 3, + ACTIONS(7478), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7476), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [40742] = 3, + ACTIONS(7505), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7503), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [40798] = 3, + ACTIONS(7509), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7507), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [40854] = 3, + ACTIONS(7513), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7511), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [40910] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6075), 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(6073), 36, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_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, + [40966] = 3, + ACTIONS(7517), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7515), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [41022] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7399), 1, + anon_sym_self, + STATE(2876), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4995), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4997), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [41084] = 3, + ACTIONS(7521), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7519), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [41140] = 3, + ACTIONS(4819), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [41196] = 3, + ACTIONS(7525), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7523), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [41252] = 3, + ACTIONS(7529), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7527), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [41308] = 3, + ACTIONS(7533), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7531), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [41364] = 3, + ACTIONS(7537), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7535), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [41420] = 3, + ACTIONS(7541), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7539), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [41476] = 3, + ACTIONS(7545), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7543), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [41532] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6071), 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(6069), 36, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_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, + [41588] = 3, + ACTIONS(7549), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7547), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [41644] = 3, + ACTIONS(7553), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7551), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [41700] = 3, + ACTIONS(7557), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7555), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [41756] = 3, + ACTIONS(7561), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7559), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [41812] = 3, + ACTIONS(7565), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7563), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [41868] = 3, + ACTIONS(7569), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7567), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [41924] = 3, + ACTIONS(7573), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7571), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [41980] = 3, + ACTIONS(7577), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7575), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [42036] = 3, + ACTIONS(5310), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5308), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [42092] = 3, + ACTIONS(7581), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7579), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [42148] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7583), 1, + sym__dot_custom, + STATE(2906), 1, + aux_sym_user_type_repeat1, + STATE(6097), 1, + sym__dot, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 19, + sym__semi, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5029), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [42212] = 3, + ACTIONS(7588), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7586), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [42268] = 3, + ACTIONS(7577), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7575), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [42324] = 3, + ACTIONS(5322), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5320), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [42380] = 3, + ACTIONS(7592), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7590), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [42436] = 3, + ACTIONS(7596), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7594), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [42492] = 3, + ACTIONS(7600), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7598), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [42548] = 3, + ACTIONS(7604), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7602), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [42604] = 3, + ACTIONS(7608), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7606), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [42660] = 3, + ACTIONS(7612), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7610), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [42716] = 3, + ACTIONS(7616), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7614), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [42772] = 3, + ACTIONS(7620), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7618), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [42828] = 3, + ACTIONS(7624), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7622), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [42884] = 3, + ACTIONS(7628), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7626), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [42940] = 3, + ACTIONS(7632), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7630), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [42996] = 3, + ACTIONS(7636), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7634), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [43052] = 6, + ACTIONS(7638), 1, + sym__dot_custom, + STATE(2867), 1, + aux_sym_user_type_repeat1, + STATE(5949), 1, + sym__dot, + ACTIONS(5036), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 39, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [43114] = 3, + ACTIONS(7642), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7640), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [43170] = 5, + ACTIONS(7644), 1, + anon_sym_LT, + STATE(3064), 1, + sym_type_arguments, + ACTIONS(5086), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 40, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [43230] = 6, + ACTIONS(7638), 1, + sym__dot_custom, + STATE(2922), 1, + aux_sym_user_type_repeat1, + STATE(5949), 1, + sym__dot, + ACTIONS(5022), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 39, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [43292] = 3, + ACTIONS(7648), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7646), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [43348] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7650), 1, + sym__dot_custom, + STATE(2927), 1, + aux_sym_user_type_repeat1, + STATE(6051), 1, + sym__dot, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 20, + sym_multiline_comment, + sym__semi, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5029), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43412] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6063), 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(6061), 36, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_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, + [43468] = 3, + ACTIONS(7655), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7653), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [43524] = 3, + ACTIONS(7659), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7657), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [43580] = 3, + ACTIONS(7663), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7661), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [43636] = 3, + ACTIONS(7667), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7665), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [43692] = 3, + ACTIONS(7671), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7669), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [43748] = 3, + ACTIONS(7675), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7673), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [43804] = 3, + ACTIONS(7679), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7677), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [43860] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7681), 1, + sym__dot_custom, + STATE(2906), 1, + aux_sym_user_type_repeat1, + STATE(6097), 1, + sym__dot, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 19, + sym__semi, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5036), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43924] = 3, + ACTIONS(7686), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7684), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [43980] = 3, + ACTIONS(7690), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7688), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [44036] = 3, + ACTIONS(7694), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7692), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [44092] = 3, + ACTIONS(7698), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7696), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [44148] = 3, + ACTIONS(7702), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7700), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [44204] = 3, + ACTIONS(7706), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7704), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [44260] = 3, + ACTIONS(7710), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7708), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [44316] = 3, + ACTIONS(7714), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7712), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [44372] = 3, + ACTIONS(7718), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7716), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [44428] = 3, + ACTIONS(7722), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7720), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [44484] = 3, + ACTIONS(7726), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7724), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [44540] = 3, + ACTIONS(7730), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7728), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [44596] = 3, + ACTIONS(7734), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7732), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [44652] = 3, + ACTIONS(7738), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7736), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [44708] = 3, + ACTIONS(7742), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7740), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [44764] = 3, + ACTIONS(7616), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7614), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [44820] = 3, + ACTIONS(7746), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7744), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [44876] = 3, + ACTIONS(7750), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7748), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [44932] = 3, + ACTIONS(7754), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7752), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [44988] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7756), 1, + sym__dot_custom, + STATE(2956), 1, + aux_sym_user_type_repeat1, + STATE(6304), 1, + sym__dot, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 19, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5029), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45052] = 3, + ACTIONS(7761), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7759), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [45108] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6067), 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(6065), 36, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_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, + [45164] = 3, + ACTIONS(7765), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7763), 43, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [45220] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7767), 1, + sym__dot_custom, + STATE(3008), 1, + aux_sym_user_type_repeat1, + STATE(6193), 1, + sym__dot, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 18, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5022), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45283] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6536), 1, + anon_sym_DOT, + STATE(2991), 1, + aux_sym_key_path_expression_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5057), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5059), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45344] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6544), 1, + anon_sym_DOT, + STATE(3006), 1, + aux_sym_key_path_expression_repeat1, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5057), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5059), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45405] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6544), 1, + anon_sym_DOT, + STATE(3007), 1, + aux_sym_key_path_expression_repeat1, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5057), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5059), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45466] = 6, + ACTIONS(7770), 1, + sym__dot_custom, + STATE(2964), 1, + aux_sym_user_type_repeat1, + STATE(6075), 1, + sym__dot, + ACTIONS(5029), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 39, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [45527] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5090), 21, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_self, + anon_sym_is, + ACTIONS(5092), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45584] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5065), 22, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_self, + anon_sym_is, + ACTIONS(5067), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45641] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7773), 1, + anon_sym_DOT, + ACTIONS(7775), 1, + anon_sym_AMP, + STATE(2985), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5096), 21, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45704] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7777), 1, + anon_sym_AMP, + STATE(2968), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5096), 22, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45765] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2992), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5055), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45824] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5065), 21, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_self, + anon_sym_is, + ACTIONS(5067), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45881] = 4, + ACTIONS(7782), 1, + anon_sym_operator, + ACTIONS(7784), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7780), 41, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [45938] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6606), 1, + sym__immediate_quest, + STATE(3017), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4735), 22, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [45999] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7773), 1, + anon_sym_DOT, + ACTIONS(7775), 1, + anon_sym_AMP, + STATE(2985), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5063), 21, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46062] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7786), 1, + anon_sym_DOT, + STATE(2974), 1, + aux_sym_key_path_expression_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5077), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5082), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46123] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7789), 1, + anon_sym_AMP, + STATE(2983), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5051), 22, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46184] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7789), 1, + anon_sym_AMP, + ACTIONS(7791), 1, + anon_sym_DOT, + STATE(2975), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5063), 21, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46247] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6536), 1, + anon_sym_DOT, + STATE(2974), 1, + aux_sym_key_path_expression_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5057), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5059), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46308] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3003), 1, + aux_sym_key_path_expression_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5057), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5059), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46369] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7793), 1, + anon_sym_DOT, + ACTIONS(7795), 1, + anon_sym_AMP, + STATE(3002), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5045), 21, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46432] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5069), 21, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_self, + anon_sym_is, + ACTIONS(5071), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46489] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7789), 1, + anon_sym_AMP, + ACTIONS(7791), 1, + anon_sym_DOT, + STATE(2975), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5096), 21, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46552] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3004), 1, + aux_sym_key_path_expression_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5057), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5059), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46613] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7797), 1, + anon_sym_AMP, + STATE(2983), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5096), 22, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46674] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7800), 1, + anon_sym_LT, + STATE(3069), 1, + sym_type_arguments, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5086), 22, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46735] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7775), 1, + anon_sym_AMP, + STATE(2968), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5051), 22, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46796] = 3, + ACTIONS(4993), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 42, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [46851] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7802), 1, + anon_sym_LT, + STATE(3050), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5086), 22, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46912] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6610), 1, + sym__immediate_quest, + STATE(2969), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4735), 22, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46973] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 21, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_self, + anon_sym_is, + ACTIONS(4819), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47030] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6526), 1, + sym__immediate_quest, + STATE(3005), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4735), 22, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47091] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6536), 1, + anon_sym_DOT, + STATE(2974), 1, + aux_sym_key_path_expression_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5073), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5075), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47152] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7804), 1, + sym__immediate_quest, + STATE(2992), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5103), 22, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47213] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7789), 1, + anon_sym_AMP, + ACTIONS(7791), 1, + anon_sym_DOT, + STATE(2975), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5045), 21, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47276] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 21, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_self, + anon_sym_is, + ACTIONS(4819), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47333] = 5, + ACTIONS(7807), 1, + anon_sym_LT, + STATE(3209), 1, + sym_type_arguments, + ACTIONS(5086), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 40, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [47392] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7773), 1, + anon_sym_DOT, + ACTIONS(7775), 1, + anon_sym_AMP, + STATE(2985), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5045), 21, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47455] = 6, + ACTIONS(7809), 1, + sym__dot_custom, + STATE(2964), 1, + aux_sym_user_type_repeat1, + STATE(6075), 1, + sym__dot, + ACTIONS(5036), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 39, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [47516] = 6, + ACTIONS(7809), 1, + sym__dot_custom, + STATE(2997), 1, + aux_sym_user_type_repeat1, + STATE(6075), 1, + sym__dot, + ACTIONS(5022), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 39, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [47577] = 3, + ACTIONS(4989), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 42, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [47632] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5090), 22, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_self, + anon_sym_is, + ACTIONS(5092), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47689] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7811), 1, + sym__dot_custom, + STATE(3001), 1, + aux_sym_user_type_repeat1, + STATE(6193), 1, + sym__dot, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 18, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5029), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47752] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7795), 1, + anon_sym_AMP, + STATE(3020), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5051), 22, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47813] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7814), 1, + anon_sym_DOT, + STATE(3003), 1, + aux_sym_key_path_expression_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5077), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5082), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47874] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(3003), 1, + aux_sym_key_path_expression_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5073), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5075), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47935] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3021), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5055), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47994] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6544), 1, + anon_sym_DOT, + STATE(3007), 1, + aux_sym_key_path_expression_repeat1, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5073), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5075), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48055] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7817), 1, + anon_sym_DOT, + STATE(3007), 1, + aux_sym_key_path_expression_repeat1, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5077), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5082), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48116] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7820), 1, + sym__dot_custom, + STATE(3001), 1, + aux_sym_user_type_repeat1, + STATE(6193), 1, + sym__dot, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 18, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5036), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48179] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7793), 1, + anon_sym_DOT, + ACTIONS(7795), 1, + anon_sym_AMP, + STATE(3002), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5063), 21, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48242] = 11, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(7823), 1, + sym__immediate_quest, + ACTIONS(7825), 1, + sym__arrow_operator_custom, + STATE(3489), 1, + aux_sym_optional_type_repeat1, + STATE(4614), 1, + sym__arrow_operator, + STATE(9606), 1, + sym_throws, + ACTIONS(4735), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6959), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 32, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [48313] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7827), 1, + sym__immediate_quest, + STATE(3011), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5103), 22, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48374] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5090), 21, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_self, + anon_sym_is, + ACTIONS(5092), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48431] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5065), 21, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_self, + anon_sym_is, + ACTIONS(5067), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48488] = 3, + ACTIONS(4985), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 42, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [48543] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5069), 21, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_self, + anon_sym_is, + ACTIONS(5071), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48600] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7830), 1, + anon_sym_LT, + STATE(3074), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5086), 22, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48661] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3011), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5055), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48720] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7793), 1, + anon_sym_DOT, + ACTIONS(7795), 1, + anon_sym_AMP, + STATE(3002), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5096), 21, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48783] = 8, + ACTIONS(7832), 1, + anon_sym_AT, + ACTIONS(7835), 1, + sym_property_behavior_modifier, + ACTIONS(7838), 1, + anon_sym_final, + ACTIONS(7844), 1, + anon_sym_unowned, + ACTIONS(7841), 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(3019), 5, + sym_attribute, + aux_sym__locally_permitted_modifiers, + sym__locally_permitted_modifier, + sym_inheritance_modifier, + sym_ownership_modifier, + ACTIONS(6989), 32, + sym_default_keyword, + 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, + anon_sym_override, + anon_sym_convenience, + anon_sym_required, + anon_sym_public, + anon_sym_private, + anon_sym_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, + [48848] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7847), 1, + anon_sym_AMP, + STATE(3020), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5096), 22, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48909] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7850), 1, + sym__immediate_quest, + STATE(3021), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5103), 22, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48970] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5069), 22, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_self, + anon_sym_is, + ACTIONS(5071), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49027] = 4, + ACTIONS(7853), 1, + anon_sym_LPAREN, + ACTIONS(6044), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6046), 41, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [49084] = 3, + ACTIONS(4819), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 41, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [49139] = 4, + ACTIONS(7855), 1, + anon_sym_LPAREN, + ACTIONS(7859), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7857), 41, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [49196] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 22, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_self, + anon_sym_is, + ACTIONS(4819), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49253] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5146), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49309] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5069), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_self, + anon_sym_is, + ACTIONS(5071), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49365] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6642), 1, + anon_sym_DOT, + STATE(3044), 1, + aux_sym_key_path_expression_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5057), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5059), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49425] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7861), 1, + anon_sym_COLON, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5198), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5200), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49483] = 5, + ACTIONS(7863), 1, + sym__immediate_quest, + STATE(3056), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5055), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 38, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [49541] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5146), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49597] = 3, + ACTIONS(7784), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7780), 41, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [49651] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5138), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49707] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7865), 1, + anon_sym_DOT, + ACTIONS(7867), 1, + anon_sym_AMP, + STATE(3045), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5096), 21, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49769] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7869), 1, + sym__immediate_quest, + STATE(3036), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5103), 22, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49829] = 4, + ACTIONS(7872), 1, + anon_sym_operator, + ACTIONS(7784), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7780), 40, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [49885] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7874), 1, + anon_sym_AMP, + STATE(3038), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5096), 22, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [49945] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7865), 1, + anon_sym_DOT, + ACTIONS(7867), 1, + anon_sym_AMP, + STATE(3045), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5063), 21, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50007] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3036), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5055), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50065] = 3, + ACTIONS(7879), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7877), 41, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [50119] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5077), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5082), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50175] = 3, + ACTIONS(5029), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 40, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [50229] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6642), 1, + anon_sym_DOT, + STATE(3112), 1, + aux_sym_key_path_expression_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5073), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5075), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50289] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7867), 1, + anon_sym_AMP, + STATE(3038), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5051), 22, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50349] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6628), 1, + sym__immediate_quest, + STATE(3040), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4735), 22, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50409] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6642), 1, + anon_sym_DOT, + STATE(3112), 1, + aux_sym_key_path_expression_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5057), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5059), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50469] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5142), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50525] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5110), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50581] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5130), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50637] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5572), 1, + anon_sym_let, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5198), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5200), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50695] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5077), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5082), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50751] = 3, + ACTIONS(6065), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6067), 41, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [50805] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5118), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50861] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5138), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50917] = 5, + ACTIONS(7881), 1, + sym__immediate_quest, + STATE(3056), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5103), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 38, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [50975] = 3, + ACTIONS(4993), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 41, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [51029] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5114), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51085] = 6, + ACTIONS(7884), 1, + sym__dot_custom, + STATE(3103), 1, + aux_sym_user_type_repeat1, + STATE(6089), 1, + sym__dot, + ACTIONS(5022), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 38, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [51145] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5122), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51201] = 3, + ACTIONS(4819), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 41, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [51255] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5126), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51311] = 3, + ACTIONS(4989), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 41, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [51365] = 3, + ACTIONS(5130), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 40, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [51419] = 3, + ACTIONS(5122), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 40, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [51473] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5110), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51529] = 3, + ACTIONS(4985), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 41, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [51583] = 3, + ACTIONS(5134), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 40, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [51637] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5130), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51693] = 5, + ACTIONS(6632), 1, + sym__immediate_quest, + STATE(3031), 1, + aux_sym_optional_type_repeat1, + ACTIONS(4735), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 38, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [51751] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7886), 1, + anon_sym_LT, + STATE(3236), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5086), 22, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51811] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5122), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51867] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5134), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51923] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5130), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51979] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5029), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52035] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5134), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52091] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5126), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52147] = 6, + ACTIONS(7888), 1, + sym__dot_custom, + STATE(3078), 1, + aux_sym_user_type_repeat1, + STATE(6089), 1, + sym__dot, + ACTIONS(5029), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 38, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [52207] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_self, + anon_sym_is, + ACTIONS(4819), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52263] = 6, + ACTIONS(7891), 1, + sym__dot_custom, + STATE(3104), 1, + aux_sym_user_type_repeat1, + STATE(6300), 1, + sym__dot, + ACTIONS(5036), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 38, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [52323] = 3, + ACTIONS(7895), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7893), 41, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [52377] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7897), 1, + anon_sym_COLON, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5198), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5200), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52435] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(7899), 1, + anon_sym_QMARK, + STATE(2302), 1, + sym_type_arguments, + STATE(3457), 1, + sym__quest, + ACTIONS(6135), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6131), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [52499] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5029), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52555] = 5, + ACTIONS(7901), 1, + anon_sym_LT, + STATE(3328), 1, + sym_type_arguments, + ACTIONS(5086), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 39, + sym__dot_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [52613] = 6, + ACTIONS(7891), 1, + sym__dot_custom, + STATE(3080), 1, + aux_sym_user_type_repeat1, + STATE(6300), 1, + sym__dot, + ACTIONS(5022), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 38, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [52673] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5090), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_self, + anon_sym_is, + ACTIONS(5092), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52729] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5146), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52785] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5142), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52841] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7865), 1, + anon_sym_DOT, + ACTIONS(7867), 1, + anon_sym_AMP, + STATE(3045), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5045), 21, + anon_sym_QMARK, + sym__immediate_quest, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52903] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5114), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [52959] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5118), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53015] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5126), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53071] = 3, + ACTIONS(6073), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6075), 41, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [53125] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5029), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53181] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5122), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53237] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5077), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5082), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53293] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5142), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53349] = 3, + ACTIONS(6069), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6071), 41, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [53403] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5065), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_self, + anon_sym_is, + ACTIONS(5067), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53459] = 5, + ACTIONS(7903), 1, + anon_sym_LT, + STATE(3340), 1, + sym_type_arguments, + ACTIONS(5086), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 39, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [53517] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5110), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [53573] = 6, + ACTIONS(7884), 1, + sym__dot_custom, + STATE(3078), 1, + aux_sym_user_type_repeat1, + STATE(6089), 1, + sym__dot, + ACTIONS(5036), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 38, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [53633] = 6, + ACTIONS(7905), 1, + sym__dot_custom, + STATE(3104), 1, + aux_sym_user_type_repeat1, + STATE(6300), 1, + sym__dot, + ACTIONS(5029), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 38, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [53693] = 3, + ACTIONS(6061), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6063), 41, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [53747] = 3, + ACTIONS(7910), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7908), 41, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [53801] = 3, + ACTIONS(7914), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7912), 41, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [53855] = 3, + ACTIONS(7918), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7916), 41, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [53909] = 3, + ACTIONS(6648), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6656), 41, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [53963] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5118), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54019] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5138), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54075] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7920), 1, + anon_sym_DOT, + STATE(3112), 1, + aux_sym_key_path_expression_repeat1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5077), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5082), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54135] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5114), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54191] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5134), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54247] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5572), 1, + anon_sym_let, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5198), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5200), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54304] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5218), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5220), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54359] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5118), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54414] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5202), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5204), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54469] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5296), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5298), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54524] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5182), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5184), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54579] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4624), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4626), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54634] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5276), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5278), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54689] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5206), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5208), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54744] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5218), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5220), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54799] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5260), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5262), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54854] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5288), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5290), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54909] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5226), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5228), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [54964] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5264), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5266), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55019] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5138), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55074] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5234), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5236), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55129] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5230), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5232), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55184] = 3, + ACTIONS(5142), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 39, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [55237] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5214), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5216), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55292] = 15, + ACTIONS(183), 1, + anon_sym_unowned, + ACTIONS(7319), 1, + anon_sym_AT, + ACTIONS(7321), 1, + sym_property_behavior_modifier, + ACTIONS(7329), 1, + anon_sym_final, + ACTIONS(6142), 2, + sym_default_keyword, + anon_sym_case, + ACTIONS(7327), 2, + anon_sym_mutating, + anon_sym_nonmutating, + ACTIONS(181), 3, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + ACTIONS(185), 3, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + ACTIONS(7317), 3, + anon_sym_prefix, + anon_sym_infix, + anon_sym_postfix, + ACTIONS(7323), 3, + anon_sym_override, + anon_sym_convenience, + anon_sym_required, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7315), 4, + anon_sym_class, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + ACTIONS(7325), 5, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + STATE(3546), 5, + sym_attribute, + aux_sym__locally_permitted_modifiers, + sym__locally_permitted_modifier, + sym_inheritance_modifier, + sym_ownership_modifier, + STATE(3297), 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, + [55369] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5114), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55424] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5244), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5246), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55479] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5148), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5150), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55534] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5248), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5250), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55589] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4847), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4845), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55644] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5174), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5176), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55699] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4863), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4861), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55754] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4899), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4897), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55809] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4580), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4586), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55864] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5029), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55919] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5268), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5270), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55974] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4871), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4869), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56029] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5198), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5200), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56084] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5164), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5166), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56139] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5126), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56194] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4875), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4873), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56249] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4879), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4877), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56304] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5178), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5180), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56359] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5190), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5192), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56414] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5110), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56469] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4895), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4893), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56524] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4839), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4837), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56579] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4827), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4825), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56634] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5272), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5274), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56689] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5182), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5184), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56744] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5284), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5286), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56799] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5222), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5224), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56854] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4831), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4829), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56909] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5300), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5302), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56964] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5160), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5162), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57019] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5190), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5192), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57074] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5292), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5294), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57129] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5280), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5282), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57184] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5210), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5212), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57239] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5256), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5258), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57294] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5186), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5188), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57349] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4831), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4829), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57404] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5168), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5171), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57459] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4847), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4845), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57514] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5252), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5254), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57569] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5152), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5154), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57624] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5156), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5158), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57679] = 5, + ACTIONS(7923), 1, + anon_sym_AMP, + STATE(3177), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5096), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 38, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [57736] = 6, + ACTIONS(7926), 1, + anon_sym_DOT, + ACTIONS(7928), 1, + anon_sym_AMP, + STATE(3188), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5096), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 37, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [57795] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5238), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5241), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57850] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5194), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5196), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57905] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(4694), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4696), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57960] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5234), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5236), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58015] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5230), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5232), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58070] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5296), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5298), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58125] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5214), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5216), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58180] = 6, + ACTIONS(7926), 1, + anon_sym_DOT, + ACTIONS(7928), 1, + anon_sym_AMP, + STATE(3188), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5063), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 37, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [58239] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5288), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5290), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58294] = 5, + ACTIONS(7928), 1, + anon_sym_AMP, + STATE(3177), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5051), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 38, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [58351] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5194), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5196), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58406] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5156), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5158), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58461] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5252), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5254), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58516] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4694), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4696), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58571] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5122), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58626] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5168), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5171), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58681] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4895), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4893), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58736] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5186), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5188), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58791] = 6, + ACTIONS(7926), 1, + anon_sym_DOT, + ACTIONS(7928), 1, + anon_sym_AMP, + STATE(3188), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5045), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 37, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [58850] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5198), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5200), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58905] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5210), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5212), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58960] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4847), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4845), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59015] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5222), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5224), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59070] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4863), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4861), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59125] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4839), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4837), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59180] = 3, + ACTIONS(5029), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 40, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [59233] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4827), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4825), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59288] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4899), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4897), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59343] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5264), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5266), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59398] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4871), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4869), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59453] = 3, + ACTIONS(5130), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 40, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [59506] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5238), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5241), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59561] = 3, + ACTIONS(5122), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 40, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [59614] = 3, + ACTIONS(5134), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 40, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [59667] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5077), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5082), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59722] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 2, + sym_directive, + sym_diagnostic, + ACTIONS(5202), 21, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5204), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59777] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5160), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5162), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59832] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4875), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4873), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59887] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5152), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5154), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59942] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5256), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5258), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59997] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4879), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4877), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60052] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5280), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5282), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60107] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5134), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60162] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5260), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5262), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60217] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5292), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5294), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60272] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5300), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5302), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60327] = 6, + ACTIONS(7930), 1, + sym__dot_custom, + STATE(3225), 1, + aux_sym_user_type_repeat1, + STATE(6131), 1, + sym__dot, + ACTIONS(5029), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 37, + sym__semi, + sym__eq_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [60386] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4895), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4893), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60441] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5284), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5286), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60496] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5272), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5274), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60551] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5146), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60606] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5268), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5270), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60661] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4863), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4861), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60716] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4839), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4837), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60771] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4827), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4825), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60826] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5142), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60881] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4831), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4829), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60936] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5130), 23, + anon_sym_DOT, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60991] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5182), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5184), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61046] = 5, + ACTIONS(7933), 1, + anon_sym_LT, + STATE(3392), 1, + sym_type_arguments, + ACTIONS(5086), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 38, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [61103] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4899), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4897), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61158] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5178), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5180), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61213] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5190), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5192), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61268] = 6, + ACTIONS(7935), 1, + sym__dot_custom, + STATE(3243), 1, + aux_sym_user_type_repeat1, + STATE(6131), 1, + sym__dot, + ACTIONS(5022), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 37, + sym__semi, + sym__eq_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [61327] = 6, + ACTIONS(7935), 1, + sym__dot_custom, + STATE(3225), 1, + aux_sym_user_type_repeat1, + STATE(6131), 1, + sym__dot, + ACTIONS(5036), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 37, + sym__semi, + sym__eq_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [61386] = 3, + ACTIONS(4819), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 40, + sym__dot_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [61439] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4580), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4586), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61494] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5174), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5176), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61549] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5268), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5270), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61604] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5164), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5166), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61659] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5214), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5216), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61714] = 3, + ACTIONS(4819), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 40, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [61767] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4624), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4626), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61822] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5276), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5278), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61877] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5230), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5232), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61932] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5234), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5236), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [61987] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5202), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5204), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62042] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5260), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5262), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + 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(5276), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5278), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62152] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5288), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5290), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62207] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5296), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5298), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62262] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5248), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5250), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62317] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5148), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5150), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62372] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5244), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5246), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62427] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5226), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5228), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62482] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5218), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5220), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62537] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5206), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5208), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62592] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4879), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4877), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62647] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4875), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4873), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62702] = 13, + ACTIONS(4763), 1, + anon_sym_COMMA, + ACTIONS(7937), 1, + anon_sym_COLON, + ACTIONS(7939), 1, + anon_sym_LBRACE, + ACTIONS(7941), 1, + sym__eq_custom, + ACTIONS(7943), 1, + sym_where_keyword, + STATE(952), 1, + sym__equal_sign, + STATE(3378), 1, + sym_type_annotation, + STATE(3478), 1, + sym_type_constraints, + STATE(3553), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(3563), 1, + sym_computed_property, + ACTIONS(6207), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6205), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [62775] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4624), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4626), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62830] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4871), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4869), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62885] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5164), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5166), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62940] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5264), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5266), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [62995] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5178), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5180), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63050] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5222), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5224), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63105] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5272), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5274), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63160] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5284), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5286), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63215] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5248), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5250), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63270] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5148), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5150), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63325] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5244), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5246), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63380] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5300), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5302), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63435] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5292), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5294), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63490] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5226), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5228), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63545] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5280), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5282), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63600] = 3, + ACTIONS(5146), 3, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 39, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [63653] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5256), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5258), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63708] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5152), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5154), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63763] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5238), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5241), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63818] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4694), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4696), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63873] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5206), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5208), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63928] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5174), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(5176), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [63983] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5194), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5196), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [64038] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4580), 20, + sym__semi, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_is, + ACTIONS(4586), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [64093] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5156), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5158), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [64148] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5252), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5254), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [64203] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5160), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5162), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [64258] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5210), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5212), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [64313] = 15, + ACTIONS(7951), 1, + anon_sym_AT, + ACTIONS(7954), 1, + sym_property_behavior_modifier, + ACTIONS(7966), 1, + anon_sym_final, + ACTIONS(7975), 1, + anon_sym_unowned, + ACTIONS(6149), 2, + sym_default_keyword, + anon_sym_case, + ACTIONS(7963), 2, + anon_sym_mutating, + anon_sym_nonmutating, + ACTIONS(7948), 3, + anon_sym_prefix, + anon_sym_infix, + anon_sym_postfix, + ACTIONS(7957), 3, + anon_sym_override, + anon_sym_convenience, + anon_sym_required, + ACTIONS(7969), 3, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + ACTIONS(7972), 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(7945), 4, + anon_sym_class, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + ACTIONS(7960), 5, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + STATE(3546), 5, + sym_attribute, + aux_sym__locally_permitted_modifiers, + sym__locally_permitted_modifier, + sym_inheritance_modifier, + sym_ownership_modifier, + STATE(3297), 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, + [64390] = 13, + ACTIONS(4763), 1, + anon_sym_COMMA, + ACTIONS(7937), 1, + anon_sym_COLON, + ACTIONS(7939), 1, + anon_sym_LBRACE, + ACTIONS(7943), 1, + sym_where_keyword, + ACTIONS(7978), 1, + sym__eq_custom, + STATE(588), 1, + sym__equal_sign, + STATE(3377), 1, + sym_type_annotation, + STATE(3464), 1, + sym_type_constraints, + STATE(3556), 1, + sym_computed_property, + STATE(3559), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(6199), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6195), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [64463] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5168), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5171), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [64518] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5186), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5188), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [64573] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5198), 20, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_where_keyword, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5200), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [64628] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4839), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4837), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [64682] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5218), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5220), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [64736] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5202), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5204), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [64790] = 5, + ACTIONS(7980), 1, + sym__immediate_quest, + STATE(3305), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5103), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 37, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [64846] = 3, + ACTIONS(4819), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 39, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [64898] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5230), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5232), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [64952] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5234), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5236), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [65006] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5260), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5262), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [65060] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5572), 1, + anon_sym_let, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5198), 18, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5200), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [65116] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5276), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5278), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [65170] = 6, + ACTIONS(7983), 1, + anon_sym_LPAREN, + ACTIONS(7985), 1, + anon_sym_QMARK, + STATE(3375), 1, + sym__quest, + ACTIONS(6244), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6238), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [65228] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4895), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4893), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [65282] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5288), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5290), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [65336] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5264), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5266), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [65390] = 6, + ACTIONS(7987), 1, + anon_sym_LPAREN, + ACTIONS(7989), 1, + anon_sym_QMARK, + STATE(3414), 1, + sym__quest, + ACTIONS(6255), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [65448] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5198), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5200), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [65502] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5222), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5224), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [65556] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5210), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5212), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [65610] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5174), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5176), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [65664] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5186), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5188), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [65718] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5168), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5171), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [65772] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4847), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4845), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [65826] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5160), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5162), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [65880] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5252), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5254), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [65934] = 3, + ACTIONS(5029), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 39, + sym__dot_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [65986] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5156), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5158), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [66040] = 3, + ACTIONS(5130), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 39, + sym__dot_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [66092] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5296), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5298), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [66146] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4879), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4877), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [66200] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5194), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5196), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [66254] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4831), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4829), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [66308] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5190), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5192), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [66362] = 4, + ACTIONS(7991), 1, + anon_sym_operator, + ACTIONS(7784), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7780), 38, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [66416] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4694), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4696), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [66470] = 5, + ACTIONS(7993), 1, + sym__immediate_quest, + STATE(3305), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5055), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 37, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [66526] = 3, + ACTIONS(5134), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 39, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [66578] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5238), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5241), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [66632] = 3, + ACTIONS(5122), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 39, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [66684] = 3, + ACTIONS(5130), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 39, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [66736] = 3, + ACTIONS(5122), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 39, + sym__dot_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [66788] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5152), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5154), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [66842] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5256), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5258), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [66896] = 3, + ACTIONS(5134), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 39, + sym__dot_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [66948] = 3, + ACTIONS(5029), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 39, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [67000] = 3, + ACTIONS(5110), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 39, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [67052] = 3, + ACTIONS(5126), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 39, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [67104] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5280), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5282), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [67158] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5292), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5294), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [67212] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5300), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5302), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [67266] = 3, + ACTIONS(5114), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 39, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [67318] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4875), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4873), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [67372] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5284), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5286), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [67426] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5272), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5274), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [67480] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4580), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4586), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [67534] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4863), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4861), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [67588] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4899), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4897), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [67642] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5182), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5184), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [67696] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5178), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5180), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [67750] = 3, + ACTIONS(5138), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 39, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [67802] = 5, + ACTIONS(6844), 1, + sym__immediate_quest, + STATE(3336), 1, + aux_sym_optional_type_repeat1, + ACTIONS(4735), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 37, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [67858] = 3, + ACTIONS(5118), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 39, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [67910] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5268), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5270), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [67964] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4871), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4869), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [68018] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5248), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5250), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [68072] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5164), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5166), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [68126] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5148), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5150), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [68180] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4624), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4626), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [68234] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5244), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5246), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [68288] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5226), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5228), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [68342] = 11, + ACTIONS(7937), 1, + anon_sym_COLON, + ACTIONS(7939), 1, + anon_sym_LBRACE, + ACTIONS(7943), 1, + sym_where_keyword, + ACTIONS(7995), 1, + sym__eq_custom, + STATE(941), 1, + sym__equal_sign, + STATE(3435), 1, + sym_type_annotation, + STATE(3485), 1, + sym_type_constraints, + STATE(3586), 1, + sym_computed_property, + ACTIONS(6218), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6216), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [68410] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5206), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5208), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [68464] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5214), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(5216), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [68518] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4827), 19, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__open_ended_range_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_else, + sym__as_custom, + sym__as_quest_custom, + sym__as_bang_custom, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_is, + ACTIONS(4825), 22, + anon_sym_QMARK, + sym__immediate_quest, + anon_sym_AMP, + aux_sym_custom_operator_token1, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + [68572] = 5, + ACTIONS(7997), 1, + anon_sym_QMARK, + STATE(3460), 1, + sym__quest, + ACTIONS(6255), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [68627] = 5, + ACTIONS(7999), 1, + anon_sym_QMARK, + STATE(3404), 1, + sym__quest, + ACTIONS(6448), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6444), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [68682] = 11, + ACTIONS(4763), 1, + anon_sym_COMMA, + ACTIONS(7939), 1, + anon_sym_LBRACE, + ACTIONS(7943), 1, + sym_where_keyword, + ACTIONS(8001), 1, + sym__eq_custom, + STATE(897), 1, + sym__equal_sign, + STATE(3472), 1, + sym_type_constraints, + STATE(3583), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(3584), 1, + sym_computed_property, + ACTIONS(6488), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6486), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [68749] = 11, + ACTIONS(4763), 1, + anon_sym_COMMA, + ACTIONS(7939), 1, + anon_sym_LBRACE, + ACTIONS(7943), 1, + sym_where_keyword, + ACTIONS(8003), 1, + sym__eq_custom, + STATE(899), 1, + sym__equal_sign, + STATE(3458), 1, + sym_type_constraints, + STATE(3569), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(3571), 1, + sym_computed_property, + ACTIONS(6311), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6309), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [68816] = 3, + ACTIONS(5146), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 38, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [68867] = 3, + ACTIONS(4819), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 38, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [68918] = 5, + ACTIONS(8005), 1, + anon_sym_QMARK, + STATE(3456), 1, + sym__quest, + ACTIONS(6329), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6325), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [68973] = 5, + ACTIONS(7051), 1, + sym__immediate_quest, + STATE(3388), 1, + aux_sym_optional_type_repeat1, + ACTIONS(4735), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 36, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [69028] = 5, + ACTIONS(8007), 1, + anon_sym_AMP, + STATE(3383), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5096), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [69083] = 5, + ACTIONS(8010), 1, + anon_sym_QMARK, + STATE(3459), 1, + sym__quest, + ACTIONS(6335), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6331), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [69138] = 3, + ACTIONS(5142), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 38, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [69189] = 6, + ACTIONS(8012), 1, + anon_sym_DOT, + ACTIONS(8014), 1, + anon_sym_AMP, + STATE(3393), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5045), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 35, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [69246] = 5, + ACTIONS(8016), 1, + anon_sym_QMARK, + STATE(3408), 1, + sym__quest, + ACTIONS(6430), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6426), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [69301] = 5, + ACTIONS(8018), 1, + sym__immediate_quest, + STATE(3389), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5055), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 36, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [69356] = 5, + ACTIONS(8020), 1, + sym__immediate_quest, + STATE(3389), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5103), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 36, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [69411] = 5, + ACTIONS(7989), 1, + anon_sym_QMARK, + STATE(3414), 1, + sym__quest, + ACTIONS(6255), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [69466] = 5, + ACTIONS(8023), 1, + anon_sym_QMARK, + STATE(3407), 1, + sym__quest, + ACTIONS(6436), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6432), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [69521] = 3, + ACTIONS(5130), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 38, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [69572] = 5, + ACTIONS(8014), 1, + anon_sym_AMP, + STATE(3383), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5051), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [69627] = 3, + ACTIONS(5029), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 38, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [69678] = 5, + ACTIONS(8025), 1, + anon_sym_QMARK, + STATE(3474), 1, + sym__quest, + ACTIONS(6516), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6512), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [69733] = 6, + ACTIONS(8012), 1, + anon_sym_DOT, + ACTIONS(8014), 1, + anon_sym_AMP, + STATE(3393), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5063), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 35, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [69790] = 3, + ACTIONS(5122), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 38, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [69841] = 5, + ACTIONS(8027), 1, + anon_sym_QMARK, + STATE(3473), 1, + sym__quest, + ACTIONS(6282), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6278), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [69896] = 5, + ACTIONS(8029), 1, + anon_sym_QMARK, + STATE(3395), 1, + sym__quest, + ACTIONS(6496), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6492), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [69951] = 5, + ACTIONS(8031), 1, + anon_sym_QMARK, + STATE(3471), 1, + sym__quest, + ACTIONS(6510), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6506), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [70006] = 5, + ACTIONS(8033), 1, + anon_sym_QMARK, + STATE(3398), 1, + sym__quest, + ACTIONS(6504), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6500), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [70061] = 5, + ACTIONS(8035), 1, + anon_sym_QMARK, + STATE(3461), 1, + sym__quest, + ACTIONS(6346), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6342), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [70116] = 5, + ACTIONS(8037), 1, + anon_sym_QMARK, + STATE(3470), 1, + sym__quest, + ACTIONS(6484), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6480), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [70171] = 5, + ACTIONS(8039), 1, + anon_sym_QMARK, + STATE(3469), 1, + sym__quest, + ACTIONS(6478), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6474), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [70226] = 5, + ACTIONS(8041), 1, + anon_sym_QMARK, + STATE(3399), 1, + sym__quest, + ACTIONS(6276), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6272), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [70281] = 6, + ACTIONS(8012), 1, + anon_sym_DOT, + ACTIONS(8014), 1, + anon_sym_AMP, + STATE(3393), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5096), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 35, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [70338] = 5, + ACTIONS(8043), 1, + anon_sym_QMARK, + STATE(3400), 1, + sym__quest, + ACTIONS(6472), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6468), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [70393] = 5, + ACTIONS(8045), 1, + anon_sym_QMARK, + STATE(3468), 1, + sym__quest, + ACTIONS(6466), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6462), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [70448] = 5, + ACTIONS(8047), 1, + anon_sym_QMARK, + STATE(3401), 1, + sym__quest, + ACTIONS(6460), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6456), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [70503] = 5, + ACTIONS(8049), 1, + anon_sym_QMARK, + STATE(3403), 1, + sym__quest, + ACTIONS(6454), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6450), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [70558] = 3, + ACTIONS(5134), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 38, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [70609] = 4, + ACTIONS(8051), 1, + anon_sym_LPAREN, + ACTIONS(6044), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6046), 37, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [70662] = 5, + ACTIONS(8053), 1, + anon_sym_QMARK, + STATE(3467), 1, + sym__quest, + ACTIONS(6442), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6438), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [70717] = 5, + ACTIONS(8055), 1, + anon_sym_QMARK, + STATE(3462), 1, + sym__quest, + ACTIONS(6352), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [70772] = 5, + ACTIONS(8057), 1, + anon_sym_QMARK, + STATE(3453), 1, + sym__quest, + ACTIONS(6360), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [70827] = 5, + ACTIONS(8059), 1, + anon_sym_QMARK, + STATE(3410), 1, + sym__quest, + ACTIONS(6418), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6414), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [70882] = 5, + ACTIONS(8061), 1, + anon_sym_QMARK, + STATE(3376), 1, + sym__quest, + ACTIONS(6412), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6408), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [70937] = 5, + ACTIONS(8063), 1, + anon_sym_QMARK, + STATE(3413), 1, + sym__quest, + ACTIONS(6406), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6402), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [70992] = 5, + ACTIONS(8065), 1, + anon_sym_QMARK, + STATE(3465), 1, + sym__quest, + ACTIONS(6400), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6396), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [71047] = 5, + ACTIONS(8067), 1, + anon_sym_QMARK, + STATE(3387), 1, + sym__quest, + ACTIONS(6394), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6390), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [71102] = 5, + ACTIONS(8069), 1, + anon_sym_QMARK, + STATE(3426), 1, + sym__quest, + ACTIONS(6388), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6384), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [71157] = 5, + ACTIONS(8071), 1, + anon_sym_QMARK, + STATE(3418), 1, + sym__quest, + ACTIONS(6382), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6378), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [71212] = 5, + ACTIONS(8073), 1, + anon_sym_QMARK, + STATE(3419), 1, + sym__quest, + ACTIONS(6374), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [71267] = 5, + ACTIONS(8075), 1, + anon_sym_QMARK, + STATE(3463), 1, + sym__quest, + ACTIONS(6374), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [71322] = 5, + ACTIONS(8077), 1, + anon_sym_QMARK, + STATE(3421), 1, + sym__quest, + ACTIONS(6368), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6364), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [71377] = 5, + ACTIONS(8079), 1, + anon_sym_QMARK, + STATE(3466), 1, + sym__quest, + ACTIONS(6424), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6420), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [71432] = 5, + ACTIONS(8081), 1, + anon_sym_QMARK, + STATE(3424), 1, + sym__quest, + ACTIONS(6360), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [71487] = 5, + ACTIONS(8083), 1, + anon_sym_QMARK, + STATE(3415), 1, + sym__quest, + ACTIONS(6352), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [71542] = 5, + ACTIONS(8085), 1, + anon_sym_AMP, + STATE(3442), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5051), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 35, + sym__semi, + sym__eq_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [71596] = 3, + ACTIONS(7910), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7908), 37, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [71646] = 3, + ACTIONS(5126), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 37, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [71696] = 8, + ACTIONS(8087), 1, + anon_sym_func, + ACTIONS(8090), 1, + anon_sym_init, + STATE(7095), 1, + sym__constructor_function_decl, + STATE(7096), 1, + sym__non_constructor_function_decl, + STATE(8082), 1, + sym__modifierless_function_declaration_no_body, + ACTIONS(6648), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6656), 32, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [71756] = 3, + ACTIONS(7918), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7916), 37, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [71806] = 3, + ACTIONS(5146), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 37, + sym__semi, + sym__eq_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [71856] = 9, + ACTIONS(7939), 1, + anon_sym_LBRACE, + ACTIONS(7943), 1, + sym_where_keyword, + ACTIONS(8093), 1, + sym__eq_custom, + STATE(884), 1, + sym__equal_sign, + STATE(3487), 1, + sym_type_constraints, + STATE(3599), 1, + sym_computed_property, + ACTIONS(6602), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6600), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [71918] = 3, + ACTIONS(4993), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 37, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [71968] = 5, + ACTIONS(8095), 1, + sym__as_custom, + STATE(4649), 1, + sym__as, + ACTIONS(6580), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6578), 35, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [72022] = 3, + ACTIONS(5110), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 37, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [72072] = 3, + ACTIONS(6065), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6067), 37, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [72122] = 3, + ACTIONS(5142), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 37, + sym__semi, + sym__eq_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [72172] = 3, + ACTIONS(4989), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 37, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [72222] = 5, + ACTIONS(8097), 1, + anon_sym_AMP, + STATE(3442), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5096), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 35, + sym__semi, + sym__eq_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [72276] = 6, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8100), 1, + anon_sym_DOT, + STATE(3429), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5045), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 34, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [72332] = 3, + ACTIONS(5138), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 37, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [72382] = 6, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8100), 1, + anon_sym_DOT, + STATE(3429), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5063), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 34, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [72438] = 6, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8100), 1, + anon_sym_DOT, + STATE(3429), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5096), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 34, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [72494] = 3, + ACTIONS(5118), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 37, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [72544] = 3, + ACTIONS(6073), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6075), 37, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [72594] = 3, + ACTIONS(6069), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6071), 37, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [72644] = 3, + ACTIONS(5114), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 37, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [72694] = 3, + ACTIONS(4985), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 37, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [72744] = 3, + ACTIONS(6061), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6063), 37, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [72794] = 3, + ACTIONS(6374), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [72843] = 3, + ACTIONS(5138), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 36, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [72892] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8104), 1, + aux_sym_custom_operator_token1, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(8106), 4, + sym__eq_eq_custom, + sym__plus_then_ws, + sym__minus_then_ws, + sym_bang, + STATE(8303), 9, + sym_simple_identifier, + sym_custom_operator, + sym__equality_operator, + sym__comparison_operator, + sym__additive_operator, + sym__multiplicative_operator, + sym__bitwise_binary_operator, + sym__referenceable_operator, + sym__eq_eq, + ACTIONS(8102), 20, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + 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, + [72949] = 3, + ACTIONS(6244), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6238), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [72998] = 3, + ACTIONS(6672), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6670), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [73047] = 9, + ACTIONS(4763), 1, + anon_sym_COMMA, + ACTIONS(7939), 1, + anon_sym_LBRACE, + ACTIONS(8108), 1, + sym__eq_custom, + STATE(868), 1, + sym__equal_sign, + STATE(3520), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(3541), 1, + sym_computed_property, + ACTIONS(6684), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6682), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [73108] = 3, + ACTIONS(6660), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6658), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [73157] = 3, + ACTIONS(6352), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [73206] = 3, + ACTIONS(6626), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6624), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [73255] = 3, + ACTIONS(6360), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [73304] = 3, + ACTIONS(6400), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6396), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [73353] = 9, + ACTIONS(4763), 1, + anon_sym_COMMA, + ACTIONS(7939), 1, + anon_sym_LBRACE, + ACTIONS(8001), 1, + sym__eq_custom, + STATE(897), 1, + sym__equal_sign, + STATE(3582), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(3584), 1, + sym_computed_property, + ACTIONS(6488), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6486), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [73414] = 3, + ACTIONS(6622), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6620), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [73463] = 3, + ACTIONS(6676), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6674), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [73512] = 3, + ACTIONS(6698), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6696), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [73561] = 3, + ACTIONS(6702), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6700), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [73610] = 3, + ACTIONS(6690), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6688), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [73659] = 3, + ACTIONS(6694), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6692), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [73708] = 3, + ACTIONS(6680), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6678), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [73757] = 9, + ACTIONS(4763), 1, + anon_sym_COMMA, + ACTIONS(7939), 1, + anon_sym_LBRACE, + ACTIONS(8110), 1, + sym__eq_custom, + STATE(912), 1, + sym__equal_sign, + STATE(3530), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(3535), 1, + sym_computed_property, + ACTIONS(6616), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6614), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [73818] = 3, + ACTIONS(6668), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6666), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [73867] = 3, + ACTIONS(6664), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6662), 36, + sym__semi, + sym__eq_custom, + sym_default_keyword, + sym_where_keyword, + sym__as_custom, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [73916] = 6, + ACTIONS(8112), 1, + sym__dot_custom, + STATE(3477), 1, + aux_sym_user_type_repeat1, + STATE(6060), 1, + sym__dot, + ACTIONS(5022), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 33, + sym__semi, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [73971] = 5, + ACTIONS(8114), 1, + anon_sym_LT, + STATE(3494), 1, + sym_type_arguments, + ACTIONS(5086), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 34, + sym__semi, + sym__dot_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74024] = 6, + ACTIONS(8112), 1, + sym__dot_custom, + STATE(3480), 1, + aux_sym_user_type_repeat1, + STATE(6060), 1, + sym__dot, + ACTIONS(5036), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 33, + sym__semi, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74079] = 9, + ACTIONS(4763), 1, + anon_sym_COMMA, + ACTIONS(7939), 1, + anon_sym_LBRACE, + ACTIONS(8003), 1, + sym__eq_custom, + STATE(899), 1, + sym__equal_sign, + STATE(3568), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(3571), 1, + sym_computed_property, + ACTIONS(6311), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6309), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74140] = 3, + ACTIONS(5126), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 36, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74189] = 6, + ACTIONS(8116), 1, + sym__dot_custom, + STATE(3480), 1, + aux_sym_user_type_repeat1, + STATE(6060), 1, + sym__dot, + ACTIONS(5029), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 33, + sym__semi, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74244] = 3, + ACTIONS(5118), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 36, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74293] = 3, + ACTIONS(5114), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 36, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74342] = 3, + ACTIONS(5110), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 36, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74391] = 3, + ACTIONS(4819), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 35, + sym__semi, + sym__dot_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74439] = 7, + ACTIONS(7939), 1, + anon_sym_LBRACE, + ACTIONS(8093), 1, + sym__eq_custom, + STATE(884), 1, + sym__equal_sign, + STATE(3599), 1, + sym_computed_property, + ACTIONS(6602), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6600), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74495] = 4, + ACTIONS(8119), 1, + anon_sym_BANG, + ACTIONS(6818), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6814), 34, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74545] = 7, + ACTIONS(7939), 1, + anon_sym_LBRACE, + ACTIONS(8121), 1, + sym__eq_custom, + STATE(972), 1, + sym__equal_sign, + STATE(3595), 1, + sym_computed_property, + ACTIONS(6810), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6808), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74601] = 5, + ACTIONS(8123), 1, + sym__immediate_quest, + STATE(3488), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5103), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 32, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74652] = 5, + ACTIONS(8126), 1, + sym__immediate_quest, + STATE(3488), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5055), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 32, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74703] = 3, + ACTIONS(5122), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 34, + sym__semi, + sym__dot_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74750] = 4, + ACTIONS(8128), 1, + anon_sym_BANG, + ACTIONS(6818), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6814), 33, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74799] = 3, + ACTIONS(5029), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 34, + sym__semi, + sym__dot_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74846] = 5, + ACTIONS(8130), 1, + anon_sym_COMMA, + STATE(3498), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(6912), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6910), 32, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74897] = 3, + ACTIONS(5130), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 34, + sym__semi, + sym__dot_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74944] = 3, + ACTIONS(5134), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 34, + sym__semi, + sym__dot_custom, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [74991] = 3, + ACTIONS(6906), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6904), 34, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75038] = 5, + ACTIONS(7823), 1, + sym__immediate_quest, + STATE(3489), 1, + aux_sym_optional_type_repeat1, + ACTIONS(4735), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 32, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75089] = 5, + ACTIONS(8130), 1, + anon_sym_COMMA, + STATE(3499), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(6884), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6882), 32, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75140] = 5, + ACTIONS(8132), 1, + anon_sym_COMMA, + STATE(3499), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(6902), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6900), 32, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75191] = 3, + ACTIONS(6874), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6872), 34, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75238] = 3, + ACTIONS(6943), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6941), 33, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75284] = 3, + ACTIONS(5142), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 33, + sym__semi, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75330] = 5, + ACTIONS(8139), 1, + sym_catch_keyword, + ACTIONS(8137), 2, + anon_sym_AT, + anon_sym_unowned, + STATE(3507), 2, + sym_catch_block, + aux_sym_do_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8135), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75380] = 3, + ACTIONS(7049), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7047), 33, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75426] = 3, + ACTIONS(6947), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6945), 33, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75472] = 3, + ACTIONS(6902), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6900), 33, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75518] = 5, + ACTIONS(8145), 1, + sym_catch_keyword, + ACTIONS(8143), 2, + anon_sym_AT, + anon_sym_unowned, + STATE(3507), 2, + sym_catch_block, + aux_sym_do_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8141), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75568] = 3, + ACTIONS(6969), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6967), 33, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75614] = 6, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8150), 1, + anon_sym_AMP, + STATE(3510), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5045), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75666] = 5, + ACTIONS(8150), 1, + anon_sym_AMP, + STATE(3513), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5051), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 31, + sym__semi, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75716] = 6, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8150), 1, + anon_sym_AMP, + STATE(3510), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5063), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75768] = 6, + ACTIONS(8148), 1, + anon_sym_DOT, + ACTIONS(8150), 1, + anon_sym_AMP, + STATE(3510), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5096), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75820] = 5, + ACTIONS(8152), 1, + anon_sym_AMP, + STATE(3513), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5096), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 31, + sym__semi, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75870] = 3, + ACTIONS(7020), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7018), 33, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75916] = 3, + ACTIONS(6906), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6904), 33, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [75962] = 3, + ACTIONS(5146), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 33, + sym__semi, + sym_default_keyword, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [76008] = 5, + ACTIONS(8139), 1, + sym_catch_keyword, + ACTIONS(8157), 2, + anon_sym_AT, + anon_sym_unowned, + STATE(3503), 2, + sym_catch_block, + aux_sym_do_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8155), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [76058] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7107), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7105), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [76107] = 3, + ACTIONS(5138), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 32, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [76152] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7133), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7131), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [76201] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7129), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7127), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [76250] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7125), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7123), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [76299] = 5, + ACTIONS(8159), 1, + anon_sym_COMMA, + STATE(3545), 1, + aux_sym_if_statement_repeat1, + ACTIONS(8163), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8161), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [76348] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8169), 1, + anon_sym_RPAREN, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(8133), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [76433] = 5, + ACTIONS(8159), 1, + anon_sym_COMMA, + STATE(3585), 1, + aux_sym_if_statement_repeat1, + ACTIONS(8177), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8175), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [76482] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8179), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7777), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [76567] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7115), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7113), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [76616] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8181), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7943), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [76701] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7111), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7109), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [76750] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7229), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7227), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [76799] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7103), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7101), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [76848] = 6, + ACTIONS(6644), 1, + aux_sym_simple_identifier_token1, + STATE(5676), 1, + sym_simple_identifier, + ACTIONS(6646), 3, + aux_sym_simple_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(6656), 5, + sym_default_keyword, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + ACTIONS(6648), 24, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_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, + [76899] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8183), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(8103), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [76984] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8185), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(8025), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [77069] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3555), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7233), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7231), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [77118] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8187), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7875), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [77203] = 5, + ACTIONS(8159), 1, + anon_sym_COMMA, + STATE(3525), 1, + aux_sym_if_statement_repeat1, + ACTIONS(8191), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8189), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [77252] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8193), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7739), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [77337] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8195), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(8049), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [77422] = 23, + ACTIONS(781), 1, + anon_sym_RPAREN, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7688), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [77507] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3529), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7137), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7135), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [77556] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8197), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7890), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [77641] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8199), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(8184), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [77726] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8201), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7528), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [77811] = 5, + ACTIONS(8159), 1, + anon_sym_COMMA, + STATE(3585), 1, + aux_sym_if_statement_repeat1, + ACTIONS(8205), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8203), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [77860] = 8, + ACTIONS(6563), 1, + anon_sym_AT, + ACTIONS(6566), 1, + sym_property_behavior_modifier, + ACTIONS(6569), 1, + anon_sym_final, + ACTIONS(6575), 1, + anon_sym_unowned, + ACTIONS(6572), 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(3019), 5, + sym_attribute, + aux_sym__locally_permitted_modifiers, + sym__locally_permitted_modifier, + sym_inheritance_modifier, + sym_ownership_modifier, + ACTIONS(6548), 22, + sym_default_keyword, + anon_sym_case, + anon_sym_class, + anon_sym_prefix, + anon_sym_infix, + anon_sym_postfix, + anon_sym_override, + anon_sym_convenience, + anon_sym_required, + anon_sym_public, + anon_sym_private, + anon_sym_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, + [77915] = 3, + ACTIONS(5118), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 32, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [77960] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8207), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7484), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [78045] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8209), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7367), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [78130] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8211), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(8018), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [78215] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8213), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7551), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [78300] = 3, + ACTIONS(5114), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 32, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [78345] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7095), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7093), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [78394] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7143), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7141), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [78443] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7147), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7145), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [78492] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3572), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7211), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7209), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [78541] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8215), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(8157), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [78626] = 3, + ACTIONS(5126), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 32, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [78671] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7215), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7213), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [78720] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8217), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(8004), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [78805] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8219), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7539), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [78890] = 3, + ACTIONS(5110), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 32, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [78935] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3565), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7061), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7059), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [78984] = 5, + ACTIONS(8221), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7154), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7152), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [79033] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7181), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7179), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [79082] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8224), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7952), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [79167] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8226), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7892), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [79252] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7185), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7183), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [79301] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7185), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7183), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [79350] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8228), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7996), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [79435] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3521), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7189), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7187), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [79484] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7087), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7085), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [79533] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7207), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7205), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [79582] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8230), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(8141), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [79667] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8232), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7829), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [79752] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8234), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7839), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [79837] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8236), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7973), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [79922] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8238), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7802), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [80007] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8240), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7845), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [80092] = 23, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(8242), 1, + anon_sym_RPAREN, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(7954), 1, + sym_tuple_type_item, + STATE(8415), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [80177] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7219), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7217), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [80226] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7079), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7077), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [80275] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3564), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7079), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7077), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [80324] = 5, + ACTIONS(4763), 1, + anon_sym_COMMA, + STATE(3581), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7065), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7063), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [80373] = 5, + ACTIONS(8244), 1, + anon_sym_COMMA, + STATE(3585), 1, + aux_sym_if_statement_repeat1, + ACTIONS(8249), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8247), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [80422] = 3, + ACTIONS(7270), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7268), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [80466] = 3, + ACTIONS(5310), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5308), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [80510] = 5, + ACTIONS(8255), 1, + sym__semi, + STATE(3588), 1, + aux_sym_statements_repeat1, + ACTIONS(8253), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8251), 29, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [80558] = 4, + ACTIONS(8262), 1, + sym_else, + ACTIONS(8260), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8258), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [80604] = 3, + ACTIONS(8266), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8264), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [80648] = 3, + ACTIONS(7309), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7307), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [80692] = 5, + ACTIONS(8268), 1, + sym__semi, + STATE(3588), 1, + aux_sym_statements_repeat1, + ACTIONS(435), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(423), 29, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [80740] = 3, + ACTIONS(8272), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8270), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [80784] = 4, + ACTIONS(8278), 1, + sym_else, + ACTIONS(8276), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8274), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [80830] = 3, + ACTIONS(7305), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7303), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [80874] = 5, + ACTIONS(8284), 1, + sym__semi, + STATE(3592), 1, + aux_sym_statements_repeat1, + ACTIONS(8282), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8280), 29, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [80922] = 3, + ACTIONS(8288), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8286), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [80966] = 22, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(819), 1, + sym_wildcard_pattern, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2282), 1, + sym__simple_user_type, + STATE(4231), 1, + sym__tuple_type_item_identifier, + STATE(4551), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5523), 1, + sym_simple_identifier, + STATE(8415), 1, + sym__type, + STATE(8665), 1, + sym_tuple_type_item, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [81048] = 3, + ACTIONS(7301), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7299), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81092] = 3, + ACTIONS(5310), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5308), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81136] = 3, + ACTIONS(5322), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5320), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81180] = 3, + ACTIONS(8292), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8290), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81224] = 3, + ACTIONS(5322), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5320), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81268] = 3, + ACTIONS(8296), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8294), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81312] = 3, + ACTIONS(8300), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8298), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81356] = 3, + ACTIONS(7274), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7272), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81400] = 3, + ACTIONS(8304), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8302), 31, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81444] = 3, + ACTIONS(8308), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8306), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81487] = 3, + ACTIONS(8312), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8310), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81530] = 3, + ACTIONS(8316), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8314), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81573] = 3, + ACTIONS(8320), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8318), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81616] = 3, + ACTIONS(8324), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8322), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81659] = 3, + ACTIONS(8328), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8326), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81702] = 3, + ACTIONS(8332), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8330), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81745] = 3, + ACTIONS(8336), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8334), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81788] = 3, + ACTIONS(8340), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8338), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81831] = 3, + ACTIONS(8344), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8342), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81874] = 3, + ACTIONS(8348), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8346), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81917] = 3, + ACTIONS(8352), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8350), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [81960] = 3, + ACTIONS(8356), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8354), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82003] = 3, + ACTIONS(8360), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8358), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82046] = 3, + ACTIONS(8364), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8362), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82089] = 3, + ACTIONS(8368), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8366), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82132] = 3, + ACTIONS(8372), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8370), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82175] = 3, + ACTIONS(8376), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8374), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82218] = 3, + ACTIONS(8380), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8378), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82261] = 3, + ACTIONS(8384), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8382), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82304] = 3, + ACTIONS(8388), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8386), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82347] = 3, + ACTIONS(8392), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8390), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82390] = 3, + ACTIONS(8396), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8394), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82433] = 3, + ACTIONS(5310), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5308), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82476] = 3, + ACTIONS(8400), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8398), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82519] = 3, + ACTIONS(8404), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8402), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82562] = 3, + ACTIONS(8408), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8406), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82605] = 3, + ACTIONS(8412), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8410), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82648] = 3, + ACTIONS(8416), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8414), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82691] = 3, + ACTIONS(8420), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8418), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82734] = 3, + ACTIONS(8424), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8422), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82777] = 3, + ACTIONS(8428), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8426), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82820] = 3, + ACTIONS(8432), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8430), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82863] = 3, + ACTIONS(8436), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8434), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82906] = 3, + ACTIONS(8440), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8438), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82949] = 3, + ACTIONS(8444), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8442), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [82992] = 3, + ACTIONS(8448), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8446), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83035] = 3, + ACTIONS(8452), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8450), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83078] = 3, + ACTIONS(8456), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8454), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83121] = 3, + ACTIONS(8460), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8458), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83164] = 3, + ACTIONS(8464), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8462), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83207] = 3, + ACTIONS(8468), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8466), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83250] = 3, + ACTIONS(8472), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8470), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83293] = 3, + ACTIONS(8476), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8474), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83336] = 3, + ACTIONS(8480), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8478), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83379] = 3, + ACTIONS(8484), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8482), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83422] = 3, + ACTIONS(8488), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8486), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83465] = 3, + ACTIONS(8492), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8490), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83508] = 3, + ACTIONS(8496), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8494), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83551] = 3, + ACTIONS(8500), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8498), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83594] = 3, + ACTIONS(8504), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8502), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83637] = 3, + ACTIONS(8508), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8506), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83680] = 3, + ACTIONS(8512), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8510), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83723] = 3, + ACTIONS(8516), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8514), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83766] = 3, + ACTIONS(8520), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8518), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83809] = 3, + ACTIONS(8524), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8522), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83852] = 3, + ACTIONS(8528), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8526), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83895] = 3, + ACTIONS(8532), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8530), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83938] = 3, + ACTIONS(8536), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8534), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [83981] = 3, + ACTIONS(8540), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8538), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84024] = 3, + ACTIONS(8544), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8542), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84067] = 3, + ACTIONS(8548), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8546), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84110] = 3, + ACTIONS(8552), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8550), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84153] = 3, + ACTIONS(8556), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8554), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84196] = 3, + ACTIONS(8560), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8558), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84239] = 3, + ACTIONS(8564), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8562), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84282] = 3, + ACTIONS(8568), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8566), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84325] = 3, + ACTIONS(8572), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8570), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84368] = 3, + ACTIONS(8576), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8574), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84411] = 3, + ACTIONS(8580), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8578), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84454] = 3, + ACTIONS(8584), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8582), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84497] = 3, + ACTIONS(5322), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5320), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84540] = 3, + ACTIONS(8588), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8586), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84583] = 3, + ACTIONS(8592), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8590), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84626] = 3, + ACTIONS(8596), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8594), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84669] = 3, + ACTIONS(8600), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8598), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84712] = 3, + ACTIONS(8604), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8602), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84755] = 3, + ACTIONS(8608), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8606), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84798] = 3, + ACTIONS(8612), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8610), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84841] = 3, + ACTIONS(8616), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8614), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84884] = 3, + ACTIONS(8620), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8618), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84927] = 3, + ACTIONS(8624), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8622), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [84970] = 3, + ACTIONS(8628), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8626), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85013] = 3, + ACTIONS(8632), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8630), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85056] = 3, + ACTIONS(8253), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8251), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85099] = 3, + ACTIONS(8636), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8634), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85142] = 3, + ACTIONS(8640), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8638), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85185] = 3, + ACTIONS(8644), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8642), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85228] = 3, + ACTIONS(8648), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8646), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85271] = 3, + ACTIONS(8652), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8650), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85314] = 3, + ACTIONS(8656), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8654), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85357] = 3, + ACTIONS(8660), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8658), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85400] = 3, + ACTIONS(8664), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8662), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85443] = 3, + ACTIONS(8668), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8666), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85486] = 3, + ACTIONS(8672), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8670), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85529] = 3, + ACTIONS(8676), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8674), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85572] = 3, + ACTIONS(8680), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8678), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85615] = 3, + ACTIONS(8684), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8682), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85658] = 3, + ACTIONS(8688), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8686), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85701] = 3, + ACTIONS(8692), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8690), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85744] = 3, + ACTIONS(8696), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8694), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85787] = 3, + ACTIONS(8700), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8698), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85830] = 3, + ACTIONS(8704), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8702), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85873] = 3, + ACTIONS(8708), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8706), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85916] = 3, + ACTIONS(8712), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8710), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [85959] = 3, + ACTIONS(8716), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8714), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86002] = 3, + ACTIONS(8720), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8718), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86045] = 3, + ACTIONS(8724), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8722), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86088] = 3, + ACTIONS(8728), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8726), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86131] = 3, + ACTIONS(8732), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8730), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86174] = 3, + ACTIONS(8736), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8734), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_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(8740), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8738), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86260] = 3, + ACTIONS(8744), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8742), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86303] = 3, + ACTIONS(8748), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8746), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86346] = 3, + ACTIONS(8752), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8750), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86389] = 3, + ACTIONS(8756), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8754), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86432] = 3, + ACTIONS(8760), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8758), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86475] = 3, + ACTIONS(8764), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8762), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86518] = 3, + ACTIONS(8768), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8766), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86561] = 3, + ACTIONS(8772), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8770), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86604] = 3, + ACTIONS(8776), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8774), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86647] = 3, + ACTIONS(8780), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8778), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86690] = 3, + ACTIONS(8784), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8782), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86733] = 3, + ACTIONS(8788), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8786), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86776] = 3, + ACTIONS(8792), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8790), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86819] = 3, + ACTIONS(8796), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8794), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86862] = 3, + ACTIONS(8800), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8798), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86905] = 3, + ACTIONS(8804), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8802), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86948] = 3, + ACTIONS(8808), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8806), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [86991] = 3, + ACTIONS(8812), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8810), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87034] = 3, + ACTIONS(8816), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8814), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87077] = 3, + ACTIONS(8820), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8818), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87120] = 3, + ACTIONS(8824), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8822), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87163] = 3, + ACTIONS(8828), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8826), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87206] = 3, + ACTIONS(8832), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8830), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87249] = 3, + ACTIONS(8836), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8834), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87292] = 3, + ACTIONS(8840), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8838), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87335] = 3, + ACTIONS(8844), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8842), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87378] = 3, + ACTIONS(8848), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8846), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87421] = 3, + ACTIONS(8852), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8850), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87464] = 3, + ACTIONS(8856), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8854), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87507] = 3, + ACTIONS(8860), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8858), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87550] = 3, + ACTIONS(8864), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8862), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87593] = 3, + ACTIONS(8868), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8866), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87636] = 3, + ACTIONS(8872), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8870), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87679] = 3, + ACTIONS(8876), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8874), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87722] = 3, + ACTIONS(8880), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8878), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87765] = 3, + ACTIONS(8884), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8882), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87808] = 3, + ACTIONS(8888), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8886), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87851] = 3, + ACTIONS(8892), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8890), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87894] = 3, + ACTIONS(8896), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8894), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_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(8900), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8898), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [87980] = 3, + ACTIONS(8904), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8902), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88023] = 3, + ACTIONS(8908), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8906), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88066] = 3, + ACTIONS(8912), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8910), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88109] = 3, + ACTIONS(8916), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8914), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88152] = 3, + ACTIONS(8920), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8918), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88195] = 3, + ACTIONS(8924), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8922), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88238] = 3, + ACTIONS(8928), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8926), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88281] = 3, + ACTIONS(8932), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8930), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88324] = 3, + ACTIONS(8936), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8934), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88367] = 3, + ACTIONS(8940), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8938), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88410] = 3, + ACTIONS(8944), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8942), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88453] = 3, + ACTIONS(8948), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8946), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88496] = 3, + ACTIONS(8952), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8950), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88539] = 3, + ACTIONS(8956), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8954), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88582] = 3, + ACTIONS(8960), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8958), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88625] = 3, + ACTIONS(8964), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8962), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88668] = 3, + ACTIONS(8968), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8966), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88711] = 3, + ACTIONS(8972), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8970), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88754] = 3, + ACTIONS(8976), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8974), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88797] = 3, + ACTIONS(8980), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8978), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88840] = 3, + ACTIONS(8984), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8982), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88883] = 3, + ACTIONS(8988), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8986), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88926] = 3, + ACTIONS(8992), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8990), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [88969] = 3, + ACTIONS(8996), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8994), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89012] = 3, + ACTIONS(9000), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8998), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89055] = 3, + ACTIONS(9004), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9002), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89098] = 3, + ACTIONS(9008), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9006), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89141] = 3, + ACTIONS(9012), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9010), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89184] = 3, + ACTIONS(9016), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9014), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89227] = 3, + ACTIONS(9020), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9018), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89270] = 3, + ACTIONS(9024), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9022), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89313] = 3, + ACTIONS(9028), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9026), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89356] = 3, + ACTIONS(9032), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9030), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89399] = 3, + ACTIONS(9036), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9034), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89442] = 3, + ACTIONS(9040), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9038), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89485] = 3, + ACTIONS(9044), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9042), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89528] = 3, + ACTIONS(9048), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9046), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89571] = 3, + ACTIONS(9052), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9050), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89614] = 3, + ACTIONS(9056), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9054), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89657] = 3, + ACTIONS(9060), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9058), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89700] = 3, + ACTIONS(9064), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9062), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89743] = 3, + ACTIONS(9068), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9066), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89786] = 3, + ACTIONS(9072), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9070), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89829] = 3, + ACTIONS(9076), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9074), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89872] = 3, + ACTIONS(9080), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9078), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89915] = 3, + ACTIONS(9084), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9082), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [89958] = 3, + ACTIONS(9088), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9086), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90001] = 3, + ACTIONS(9092), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9090), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90044] = 3, + ACTIONS(9096), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9094), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90087] = 3, + ACTIONS(9100), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9098), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90130] = 3, + ACTIONS(9104), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9102), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90173] = 3, + ACTIONS(9108), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9106), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90216] = 3, + ACTIONS(9112), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9110), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90259] = 3, + ACTIONS(9116), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9114), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90302] = 3, + ACTIONS(9120), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9118), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90345] = 3, + ACTIONS(9124), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9122), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90388] = 3, + ACTIONS(9128), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9126), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90431] = 3, + ACTIONS(9132), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9130), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90474] = 3, + ACTIONS(9136), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9134), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90517] = 3, + ACTIONS(9140), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9138), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90560] = 3, + ACTIONS(9144), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9142), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90603] = 3, + ACTIONS(9148), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9146), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90646] = 3, + ACTIONS(9152), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9150), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90689] = 3, + ACTIONS(9156), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9154), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90732] = 3, + ACTIONS(9160), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9158), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90775] = 3, + ACTIONS(9164), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9162), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90818] = 3, + ACTIONS(9168), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9166), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90861] = 3, + ACTIONS(9172), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9170), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90904] = 3, + ACTIONS(9176), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9174), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90947] = 3, + ACTIONS(9180), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9178), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [90990] = 3, + ACTIONS(9184), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9182), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91033] = 3, + ACTIONS(9188), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9186), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91076] = 3, + ACTIONS(9192), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9190), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91119] = 3, + ACTIONS(9196), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9194), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91162] = 3, + ACTIONS(9200), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9198), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91205] = 3, + ACTIONS(9204), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9202), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91248] = 3, + ACTIONS(9208), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9206), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91291] = 3, + ACTIONS(9212), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9210), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91334] = 3, + ACTIONS(9216), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9214), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91377] = 3, + ACTIONS(9220), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9218), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91420] = 3, + ACTIONS(9224), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9222), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91463] = 3, + ACTIONS(9228), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9226), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91506] = 3, + ACTIONS(9232), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9230), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91549] = 3, + ACTIONS(9236), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9234), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91592] = 3, + ACTIONS(9240), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9238), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91635] = 3, + ACTIONS(9244), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9242), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91678] = 3, + ACTIONS(9248), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9246), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91721] = 3, + ACTIONS(9252), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9250), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91764] = 3, + ACTIONS(9256), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9254), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91807] = 3, + ACTIONS(9260), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9258), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91850] = 3, + ACTIONS(9264), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9262), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91893] = 3, + ACTIONS(9268), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9266), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91936] = 3, + ACTIONS(9272), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9270), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [91979] = 3, + ACTIONS(9276), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9274), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92022] = 3, + ACTIONS(9280), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9278), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92065] = 3, + ACTIONS(9284), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9282), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92108] = 3, + ACTIONS(9288), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9286), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92151] = 3, + ACTIONS(9292), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9290), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92194] = 3, + ACTIONS(9296), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9294), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92237] = 3, + ACTIONS(9300), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9298), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92280] = 3, + ACTIONS(9304), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9302), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92323] = 3, + ACTIONS(9308), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9306), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92366] = 3, + ACTIONS(9312), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9310), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92409] = 3, + ACTIONS(9316), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9314), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92452] = 3, + ACTIONS(9320), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9318), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92495] = 3, + ACTIONS(9324), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9322), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92538] = 3, + ACTIONS(9328), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9326), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92581] = 3, + ACTIONS(9332), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9330), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92624] = 3, + ACTIONS(9336), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9334), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92667] = 3, + ACTIONS(9340), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9338), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92710] = 3, + ACTIONS(9344), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9342), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92753] = 3, + ACTIONS(9348), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9346), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92796] = 3, + ACTIONS(9352), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9350), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92839] = 3, + ACTIONS(9356), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9354), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92882] = 3, + ACTIONS(9360), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9358), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92925] = 3, + ACTIONS(9364), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9362), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [92968] = 3, + ACTIONS(9368), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9366), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93011] = 3, + ACTIONS(9372), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9370), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93054] = 3, + ACTIONS(9376), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9374), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93097] = 3, + ACTIONS(9380), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9378), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93140] = 3, + ACTIONS(9384), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9382), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93183] = 3, + ACTIONS(9388), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9386), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93226] = 3, + ACTIONS(9392), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9390), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93269] = 3, + ACTIONS(9396), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9394), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93312] = 3, + ACTIONS(9400), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9398), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93355] = 3, + ACTIONS(9404), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9402), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93398] = 3, + ACTIONS(9408), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9406), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93441] = 3, + ACTIONS(9412), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9410), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93484] = 3, + ACTIONS(9416), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9414), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93527] = 3, + ACTIONS(7698), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7696), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93570] = 3, + ACTIONS(9420), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9418), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93613] = 3, + ACTIONS(9424), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9422), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93656] = 3, + ACTIONS(9428), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9426), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93699] = 3, + ACTIONS(9432), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9430), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93742] = 3, + ACTIONS(7730), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7728), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93785] = 3, + ACTIONS(7754), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7752), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93828] = 3, + ACTIONS(9436), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9434), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93871] = 3, + ACTIONS(9440), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9438), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93914] = 3, + ACTIONS(9444), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9442), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [93957] = 3, + ACTIONS(9448), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9446), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94000] = 3, + ACTIONS(9452), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9450), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94043] = 3, + ACTIONS(9456), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9454), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94086] = 3, + ACTIONS(9460), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9458), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94129] = 3, + ACTIONS(9464), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9462), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94172] = 3, + ACTIONS(9468), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9466), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94215] = 3, + ACTIONS(9472), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9470), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94258] = 3, + ACTIONS(9476), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9474), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94301] = 3, + ACTIONS(9480), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9478), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94344] = 3, + ACTIONS(9484), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9482), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94387] = 3, + ACTIONS(9488), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9486), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94430] = 3, + ACTIONS(9492), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9490), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94473] = 3, + ACTIONS(9496), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9494), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94516] = 3, + ACTIONS(7663), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7661), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94559] = 3, + ACTIONS(9500), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9498), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94602] = 3, + ACTIONS(9504), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9502), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94645] = 3, + ACTIONS(9508), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9506), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94688] = 3, + ACTIONS(9512), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9510), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94731] = 3, + ACTIONS(9516), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9514), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94774] = 3, + ACTIONS(9520), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9518), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94817] = 3, + ACTIONS(9524), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9522), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94860] = 3, + ACTIONS(9528), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9526), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94903] = 3, + ACTIONS(9532), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9530), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94946] = 3, + ACTIONS(9536), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9534), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [94989] = 3, + ACTIONS(7557), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7555), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95032] = 3, + ACTIONS(7553), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7551), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95075] = 3, + ACTIONS(9540), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9538), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95118] = 3, + ACTIONS(9544), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9542), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95161] = 3, + ACTIONS(9548), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9546), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95204] = 3, + ACTIONS(9552), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9550), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95247] = 3, + ACTIONS(9556), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9554), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95290] = 3, + ACTIONS(7533), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7531), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95333] = 3, + ACTIONS(9560), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9558), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95376] = 3, + ACTIONS(9564), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9562), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95419] = 3, + ACTIONS(9568), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9566), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95462] = 3, + ACTIONS(9572), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9570), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95505] = 3, + ACTIONS(9576), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9574), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95548] = 3, + ACTIONS(9580), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9578), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95591] = 3, + ACTIONS(9584), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9582), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95634] = 3, + ACTIONS(9588), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9586), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95677] = 3, + ACTIONS(9592), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9590), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95720] = 3, + ACTIONS(9596), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9594), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95763] = 3, + ACTIONS(9600), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9598), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_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(763), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(761), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95849] = 3, + ACTIONS(9604), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9602), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95892] = 3, + ACTIONS(9608), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9606), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95935] = 3, + ACTIONS(9612), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9610), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [95978] = 3, + ACTIONS(9616), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9614), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96021] = 3, + ACTIONS(9620), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9618), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96064] = 3, + ACTIONS(9624), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9622), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96107] = 3, + ACTIONS(9628), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9626), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96150] = 3, + ACTIONS(9632), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9630), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96193] = 3, + ACTIONS(9636), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9634), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96236] = 3, + ACTIONS(7742), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7740), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96279] = 3, + ACTIONS(7738), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7736), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96322] = 3, + ACTIONS(9640), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9638), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96365] = 3, + ACTIONS(9644), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9642), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96408] = 3, + ACTIONS(9648), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9646), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96451] = 3, + ACTIONS(9652), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9650), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96494] = 3, + ACTIONS(9656), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9654), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96537] = 3, + ACTIONS(9660), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9658), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96580] = 3, + ACTIONS(9664), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9662), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96623] = 3, + ACTIONS(9668), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9666), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96666] = 3, + ACTIONS(9672), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9670), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96709] = 3, + ACTIONS(9676), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9674), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96752] = 3, + ACTIONS(7545), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7543), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96795] = 3, + ACTIONS(7529), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7527), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96838] = 3, + ACTIONS(7474), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7472), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96881] = 3, + ACTIONS(9680), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9678), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [96924] = 3, + ACTIONS(9684), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9682), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_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(9688), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9686), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97010] = 3, + ACTIONS(9692), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9690), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97053] = 3, + ACTIONS(9696), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9694), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97096] = 3, + ACTIONS(9700), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9698), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97139] = 3, + ACTIONS(9704), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9702), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97182] = 3, + ACTIONS(9708), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9706), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97225] = 3, + ACTIONS(9712), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9710), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97268] = 3, + ACTIONS(9716), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9714), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97311] = 3, + ACTIONS(9720), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9718), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97354] = 3, + ACTIONS(9724), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9722), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97397] = 3, + ACTIONS(7462), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7460), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97440] = 3, + ACTIONS(9728), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9726), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97483] = 3, + ACTIONS(9732), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9730), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97526] = 3, + ACTIONS(9736), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9734), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97569] = 3, + ACTIONS(9740), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9738), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97612] = 3, + ACTIONS(9744), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9742), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97655] = 3, + ACTIONS(9748), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9746), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97698] = 3, + ACTIONS(9752), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9750), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97741] = 3, + ACTIONS(9756), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9754), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97784] = 3, + ACTIONS(9760), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9758), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97827] = 3, + ACTIONS(9764), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9762), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97870] = 3, + ACTIONS(9768), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9766), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97913] = 3, + ACTIONS(9772), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9770), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97956] = 3, + ACTIONS(9776), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9774), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [97999] = 3, + ACTIONS(9780), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9778), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98042] = 3, + ACTIONS(9784), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9782), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98085] = 3, + ACTIONS(9788), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9786), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98128] = 3, + ACTIONS(9792), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9790), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98171] = 3, + ACTIONS(9796), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9794), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98214] = 3, + ACTIONS(9800), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9798), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98257] = 3, + ACTIONS(9804), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9802), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98300] = 3, + ACTIONS(9808), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9806), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98343] = 3, + ACTIONS(9812), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9810), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98386] = 3, + ACTIONS(9816), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9814), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98429] = 3, + ACTIONS(9820), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9818), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98472] = 3, + ACTIONS(9824), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9822), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98515] = 3, + ACTIONS(9828), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9826), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98558] = 3, + ACTIONS(9832), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9830), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98601] = 3, + ACTIONS(9836), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9834), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98644] = 3, + ACTIONS(9840), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9838), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98687] = 3, + ACTIONS(9844), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9842), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98730] = 3, + ACTIONS(9848), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9846), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98773] = 3, + ACTIONS(9852), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9850), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98816] = 3, + ACTIONS(9856), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9854), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98859] = 3, + ACTIONS(9860), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9858), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98902] = 3, + ACTIONS(9864), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9862), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98945] = 3, + ACTIONS(9868), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9866), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [98988] = 3, + ACTIONS(7403), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7401), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99031] = 3, + ACTIONS(7513), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7511), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99074] = 3, + ACTIONS(9872), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9870), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99117] = 3, + ACTIONS(9876), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9874), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99160] = 3, + ACTIONS(9880), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9878), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99203] = 3, + ACTIONS(9884), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9882), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99246] = 3, + ACTIONS(9888), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9886), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99289] = 3, + ACTIONS(9892), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9890), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99332] = 3, + ACTIONS(9896), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9894), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99375] = 3, + ACTIONS(9900), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9898), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99418] = 3, + ACTIONS(7671), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7669), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99461] = 3, + ACTIONS(7581), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7579), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99504] = 3, + ACTIONS(7549), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7547), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99547] = 3, + ACTIONS(9904), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9902), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99590] = 3, + ACTIONS(9908), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9906), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99633] = 3, + ACTIONS(7541), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7539), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99676] = 3, + ACTIONS(9912), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9910), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99719] = 3, + ACTIONS(9916), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9914), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99762] = 3, + ACTIONS(9920), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9918), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99805] = 3, + ACTIONS(9924), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9922), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99848] = 3, + ACTIONS(9928), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9926), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99891] = 3, + ACTIONS(9932), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9930), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99934] = 3, + ACTIONS(9936), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9934), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [99977] = 3, + ACTIONS(9940), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9938), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100020] = 3, + ACTIONS(9944), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9942), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100063] = 3, + ACTIONS(9948), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9946), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100106] = 3, + ACTIONS(9952), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9950), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100149] = 3, + ACTIONS(9956), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9954), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100192] = 3, + ACTIONS(9960), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9958), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100235] = 3, + ACTIONS(9964), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9962), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100278] = 3, + ACTIONS(9968), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9966), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100321] = 3, + ACTIONS(9972), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9970), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100364] = 3, + ACTIONS(9976), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9974), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100407] = 3, + ACTIONS(9980), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9978), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100450] = 3, + ACTIONS(9984), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9982), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100493] = 3, + ACTIONS(9988), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9986), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100536] = 3, + ACTIONS(9992), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9990), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100579] = 3, + ACTIONS(9996), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9994), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100622] = 3, + ACTIONS(10000), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(9998), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100665] = 3, + ACTIONS(10004), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10002), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100708] = 3, + ACTIONS(10008), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10006), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100751] = 3, + ACTIONS(10012), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10010), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100794] = 3, + ACTIONS(10016), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10014), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100837] = 3, + ACTIONS(10020), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10018), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100880] = 3, + ACTIONS(10024), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10022), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100923] = 3, + ACTIONS(10028), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10026), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [100966] = 3, + ACTIONS(10032), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10030), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101009] = 3, + ACTIONS(10036), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10034), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101052] = 3, + ACTIONS(10040), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10038), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101095] = 3, + ACTIONS(10044), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10042), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101138] = 3, + ACTIONS(10048), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10046), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101181] = 3, + ACTIONS(10052), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10050), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101224] = 3, + ACTIONS(10056), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10054), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101267] = 3, + ACTIONS(10060), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10058), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101310] = 3, + ACTIONS(10064), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10062), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101353] = 3, + ACTIONS(10068), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10066), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101396] = 3, + ACTIONS(10072), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10070), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101439] = 3, + ACTIONS(10076), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10074), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101482] = 3, + ACTIONS(10080), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10078), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101525] = 3, + ACTIONS(10084), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10082), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101568] = 3, + ACTIONS(10088), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10086), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101611] = 3, + ACTIONS(10092), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10090), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101654] = 3, + ACTIONS(10096), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10094), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101697] = 3, + ACTIONS(10100), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10098), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101740] = 3, + ACTIONS(10104), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10102), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101783] = 3, + ACTIONS(10108), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10106), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101826] = 3, + ACTIONS(10112), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10110), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101869] = 3, + ACTIONS(10116), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10114), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101912] = 3, + ACTIONS(10120), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10118), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101955] = 3, + ACTIONS(10124), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10122), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [101998] = 3, + ACTIONS(10128), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10126), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102041] = 3, + ACTIONS(10132), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10130), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102084] = 3, + ACTIONS(10136), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10134), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102127] = 3, + ACTIONS(10140), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10138), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102170] = 3, + ACTIONS(10144), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10142), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102213] = 3, + ACTIONS(10148), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10146), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102256] = 3, + ACTIONS(10152), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10150), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102299] = 3, + ACTIONS(10156), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10154), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102342] = 3, + ACTIONS(10160), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10158), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102385] = 3, + ACTIONS(10164), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10162), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102428] = 3, + ACTIONS(10168), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10166), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102471] = 3, + ACTIONS(10172), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10170), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102514] = 3, + ACTIONS(10176), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10174), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102557] = 3, + ACTIONS(10180), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10178), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102600] = 3, + ACTIONS(10184), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10182), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102643] = 3, + ACTIONS(10188), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10186), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102686] = 3, + ACTIONS(10192), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10190), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102729] = 3, + ACTIONS(10196), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10194), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102772] = 3, + ACTIONS(10200), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10198), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102815] = 3, + ACTIONS(10204), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10202), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102858] = 3, + ACTIONS(10208), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10206), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102901] = 3, + ACTIONS(10212), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10210), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102944] = 3, + ACTIONS(10216), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10214), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [102987] = 3, + ACTIONS(10220), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10218), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103030] = 3, + ACTIONS(10224), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10222), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103073] = 3, + ACTIONS(10228), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10226), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103116] = 3, + ACTIONS(10232), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10230), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103159] = 3, + ACTIONS(10236), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10234), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103202] = 3, + ACTIONS(10240), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10238), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103245] = 3, + ACTIONS(10244), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10242), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103288] = 3, + ACTIONS(10248), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10246), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103331] = 3, + ACTIONS(10252), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10250), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103374] = 3, + ACTIONS(10256), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10254), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103417] = 3, + ACTIONS(10260), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10258), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103460] = 3, + ACTIONS(10264), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10262), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103503] = 3, + ACTIONS(10268), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10266), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103546] = 3, + ACTIONS(10272), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10270), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103589] = 3, + ACTIONS(10276), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10274), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103632] = 3, + ACTIONS(10280), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10278), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103675] = 3, + ACTIONS(10284), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10282), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103718] = 3, + ACTIONS(7718), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7716), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103761] = 3, + ACTIONS(10288), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10286), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103804] = 3, + ACTIONS(10292), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10290), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103847] = 3, + ACTIONS(10296), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10294), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103890] = 3, + ACTIONS(10300), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10298), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103933] = 3, + ACTIONS(10304), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10302), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [103976] = 3, + ACTIONS(10308), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10306), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104019] = 3, + ACTIONS(10312), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10310), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104062] = 3, + ACTIONS(10316), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10314), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104105] = 3, + ACTIONS(10320), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10318), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104148] = 3, + ACTIONS(10324), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10322), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104191] = 3, + ACTIONS(10328), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10326), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104234] = 3, + ACTIONS(7746), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7744), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104277] = 3, + ACTIONS(10332), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10330), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104320] = 3, + ACTIONS(10336), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10334), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104363] = 3, + ACTIONS(10340), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10338), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104406] = 3, + ACTIONS(10344), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10342), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104449] = 3, + ACTIONS(10348), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10346), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104492] = 3, + ACTIONS(10352), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10350), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104535] = 3, + ACTIONS(10356), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10354), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104578] = 3, + ACTIONS(10360), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10358), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104621] = 3, + ACTIONS(10364), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10362), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104664] = 3, + ACTIONS(10368), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10366), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104707] = 3, + ACTIONS(10372), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10370), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104750] = 3, + ACTIONS(10376), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10374), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104793] = 3, + ACTIONS(10380), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10378), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104836] = 3, + ACTIONS(10384), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10382), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104879] = 3, + ACTIONS(10388), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10386), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104922] = 3, + ACTIONS(10392), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10390), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [104965] = 3, + ACTIONS(10396), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10394), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105008] = 3, + ACTIONS(10400), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10398), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105051] = 3, + ACTIONS(10404), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10402), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105094] = 3, + ACTIONS(10408), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10406), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105137] = 3, + ACTIONS(10412), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10410), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105180] = 3, + ACTIONS(10416), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10414), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105223] = 3, + ACTIONS(10420), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10418), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105266] = 3, + ACTIONS(10424), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10422), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105309] = 3, + ACTIONS(10428), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10426), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105352] = 3, + ACTIONS(10432), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10430), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105395] = 3, + ACTIONS(10436), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10434), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105438] = 3, + ACTIONS(10440), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10438), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105481] = 3, + ACTIONS(10444), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10442), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105524] = 3, + ACTIONS(10448), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10446), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105567] = 3, + ACTIONS(10452), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10450), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105610] = 3, + ACTIONS(10456), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10454), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105653] = 3, + ACTIONS(10460), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10458), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105696] = 3, + ACTIONS(10464), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10462), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105739] = 3, + ACTIONS(10468), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10466), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105782] = 3, + ACTIONS(10472), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10470), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105825] = 3, + ACTIONS(10476), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10474), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105868] = 3, + ACTIONS(10480), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10478), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105911] = 3, + ACTIONS(10484), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10482), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105954] = 3, + ACTIONS(10488), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10486), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [105997] = 3, + ACTIONS(10492), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10490), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106040] = 3, + ACTIONS(10496), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10494), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106083] = 3, + ACTIONS(10500), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10498), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106126] = 3, + ACTIONS(10504), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10502), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106169] = 3, + ACTIONS(10508), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10506), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106212] = 3, + ACTIONS(10512), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10510), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106255] = 3, + ACTIONS(10516), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10514), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106298] = 3, + ACTIONS(10520), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10518), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106341] = 3, + ACTIONS(10524), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10522), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106384] = 3, + ACTIONS(7470), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7468), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106427] = 3, + ACTIONS(10528), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10526), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106470] = 3, + ACTIONS(10532), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10530), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106513] = 3, + ACTIONS(10536), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10534), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106556] = 3, + ACTIONS(10540), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10538), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106599] = 3, + ACTIONS(10544), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10542), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106642] = 3, + ACTIONS(10548), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10546), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106685] = 3, + ACTIONS(10552), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10550), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106728] = 3, + ACTIONS(10556), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10554), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106771] = 3, + ACTIONS(10560), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10558), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106814] = 3, + ACTIONS(10564), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10562), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106857] = 3, + ACTIONS(10568), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10566), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106900] = 3, + ACTIONS(10572), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10570), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106943] = 3, + ACTIONS(10576), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10574), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [106986] = 3, + ACTIONS(10580), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10578), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [107029] = 3, + ACTIONS(10584), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10582), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [107072] = 3, + ACTIONS(10588), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10586), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [107115] = 3, + ACTIONS(10592), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10590), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [107158] = 3, + ACTIONS(10596), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10594), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [107201] = 3, + ACTIONS(10600), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10598), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [107244] = 3, + ACTIONS(10604), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10602), 30, + sym__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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [107287] = 20, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(10606), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10610), 1, + anon_sym_LPAREN, + ACTIONS(10612), 1, + anon_sym_LBRACK, + ACTIONS(10614), 1, + anon_sym_some, + STATE(4335), 1, + sym_parameter_modifiers, + STATE(4697), 1, + sym_type_modifiers, + STATE(4757), 1, + sym_tuple_type, + STATE(5133), 1, + sym_simple_identifier, + STATE(5135), 1, + sym__simple_user_type, + STATE(6581), 1, + sym__type, + STATE(6908), 1, + sym__possibly_implicitly_unwrapped_type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10608), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5407), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5574), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [107363] = 4, + ACTIONS(10618), 1, + anon_sym_fallthrough, + ACTIONS(10620), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10616), 28, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [107407] = 20, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(10606), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10610), 1, + anon_sym_LPAREN, + ACTIONS(10612), 1, + anon_sym_LBRACK, + ACTIONS(10614), 1, + anon_sym_some, + STATE(4303), 1, + sym_parameter_modifiers, + STATE(4697), 1, + sym_type_modifiers, + STATE(4757), 1, + sym_tuple_type, + STATE(5133), 1, + sym_simple_identifier, + STATE(5135), 1, + sym__simple_user_type, + STATE(6414), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(6581), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10608), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5407), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5574), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [107483] = 20, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(10622), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10626), 1, + anon_sym_LBRACK, + ACTIONS(10628), 1, + anon_sym_some, + STATE(4296), 1, + sym_parameter_modifiers, + STATE(4721), 1, + sym_type_modifiers, + STATE(4849), 1, + sym_tuple_type, + STATE(4906), 1, + sym__simple_user_type, + STATE(4907), 1, + sym_simple_identifier, + STATE(5699), 1, + sym__type, + STATE(6292), 1, + sym__possibly_implicitly_unwrapped_type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10624), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5147), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5278), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [107559] = 24, + ACTIONS(495), 1, + anon_sym_AT, + ACTIONS(501), 1, + anon_sym_unowned, + ACTIONS(5344), 1, + anon_sym_func, + ACTIONS(5350), 1, + anon_sym_init, + ACTIONS(10630), 1, + anon_sym_async, + ACTIONS(10632), 1, + anon_sym_typealias, + ACTIONS(10636), 1, + anon_sym_enum, + ACTIONS(10640), 1, + anon_sym_extension, + ACTIONS(10642), 1, + anon_sym_indirect, + ACTIONS(10644), 1, + sym_property_behavior_modifier, + ACTIONS(10646), 1, + anon_sym_final, + STATE(3649), 1, + sym__modifierless_property_declaration, + STATE(3650), 1, + sym__modifierless_typealias_declaration, + STATE(3652), 1, + sym__modifierless_function_declaration, + STATE(3656), 1, + sym__modifierless_class_declaration, + STATE(7244), 1, + sym__non_constructor_function_decl, + STATE(7245), 1, + sym__constructor_function_decl, + STATE(7555), 1, + sym__modifierless_function_declaration_no_body, + STATE(10416), 1, + sym__async_modifier, + ACTIONS(10634), 2, + anon_sym_struct, + anon_sym_class, + ACTIONS(10638), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(503), 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(4666), 5, + sym_attribute, + aux_sym__locally_permitted_modifiers, + sym__locally_permitted_modifier, + sym_inheritance_modifier, + sym_ownership_modifier, + [107643] = 20, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4310), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(6527), 1, + sym__type, + STATE(8743), 1, + sym__possibly_implicitly_unwrapped_type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [107719] = 20, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4322), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(6527), 1, + sym__type, + STATE(8720), 1, + sym__possibly_implicitly_unwrapped_type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [107795] = 4, + ACTIONS(10650), 1, + anon_sym_fallthrough, + ACTIONS(10652), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10648), 28, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [107839] = 20, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4311), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(6527), 1, + sym__type, + STATE(8742), 1, + sym__possibly_implicitly_unwrapped_type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [107915] = 20, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(10622), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10626), 1, + anon_sym_LBRACK, + ACTIONS(10628), 1, + anon_sym_some, + STATE(4300), 1, + sym_parameter_modifiers, + STATE(4721), 1, + sym_type_modifiers, + STATE(4849), 1, + sym_tuple_type, + STATE(4906), 1, + sym__simple_user_type, + STATE(4907), 1, + sym_simple_identifier, + STATE(5699), 1, + sym__type, + STATE(6212), 1, + sym__possibly_implicitly_unwrapped_type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10624), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5147), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5278), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [107991] = 4, + ACTIONS(10656), 1, + anon_sym_fallthrough, + ACTIONS(10658), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10654), 28, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [108035] = 20, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(10622), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10626), 1, + anon_sym_LBRACK, + ACTIONS(10628), 1, + anon_sym_some, + STATE(4308), 1, + sym_parameter_modifiers, + STATE(4721), 1, + sym_type_modifiers, + STATE(4849), 1, + sym_tuple_type, + STATE(4906), 1, + sym__simple_user_type, + STATE(4907), 1, + sym_simple_identifier, + STATE(5699), 1, + sym__type, + STATE(6287), 1, + sym__possibly_implicitly_unwrapped_type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10624), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5147), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5278), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [108111] = 20, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4269), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(6527), 1, + sym__type, + STATE(8768), 1, + sym__possibly_implicitly_unwrapped_type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [108187] = 20, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(10622), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10626), 1, + anon_sym_LBRACK, + ACTIONS(10628), 1, + anon_sym_some, + STATE(4304), 1, + sym_parameter_modifiers, + STATE(4721), 1, + sym_type_modifiers, + STATE(4849), 1, + sym_tuple_type, + STATE(4906), 1, + sym__simple_user_type, + STATE(4907), 1, + sym_simple_identifier, + STATE(5699), 1, + sym__type, + STATE(6242), 1, + sym__possibly_implicitly_unwrapped_type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10624), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5147), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5278), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [108263] = 4, + ACTIONS(10662), 1, + anon_sym_fallthrough, + ACTIONS(10664), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10660), 28, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [108307] = 24, + ACTIONS(495), 1, + anon_sym_AT, + ACTIONS(501), 1, + anon_sym_unowned, + ACTIONS(5344), 1, + anon_sym_func, + ACTIONS(5350), 1, + anon_sym_init, + ACTIONS(5962), 1, + anon_sym_typealias, + ACTIONS(6546), 1, + anon_sym_async, + ACTIONS(6555), 1, + anon_sym_enum, + ACTIONS(6559), 1, + anon_sym_extension, + ACTIONS(6561), 1, + anon_sym_indirect, + ACTIONS(10644), 1, + sym_property_behavior_modifier, + ACTIONS(10646), 1, + anon_sym_final, + STATE(7244), 1, + sym__non_constructor_function_decl, + STATE(7245), 1, + sym__constructor_function_decl, + STATE(7888), 1, + sym__modifierless_function_declaration_no_body, + STATE(8486), 1, + sym__modifierless_property_declaration, + STATE(8495), 1, + sym__modifierless_typealias_declaration, + STATE(8508), 1, + sym__modifierless_function_declaration, + STATE(8518), 1, + sym__modifierless_class_declaration, + STATE(10423), 1, + sym__async_modifier, + ACTIONS(6550), 2, + anon_sym_struct, + anon_sym_class, + ACTIONS(6557), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(503), 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(4666), 5, + sym_attribute, + aux_sym__locally_permitted_modifiers, + sym__locally_permitted_modifier, + sym_inheritance_modifier, + sym_ownership_modifier, + [108391] = 4, + ACTIONS(10668), 1, + anon_sym_fallthrough, + ACTIONS(10670), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10666), 28, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [108435] = 4, + ACTIONS(10674), 1, + anon_sym_fallthrough, + ACTIONS(10676), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10672), 28, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [108479] = 3, + ACTIONS(10652), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10648), 28, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [108520] = 3, + ACTIONS(10676), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10672), 28, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [108561] = 4, + ACTIONS(10678), 1, + anon_sym_LPAREN, + ACTIONS(7859), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7857), 27, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [108604] = 3, + ACTIONS(10620), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10616), 28, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [108645] = 19, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(817), 1, + anon_sym_AT, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4527), 1, + sym_parameter_modifiers, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8606), 1, + sym__type, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4910), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [108718] = 3, + ACTIONS(10682), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10680), 28, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [108759] = 3, + ACTIONS(10664), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10660), 28, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [108800] = 3, + ACTIONS(10670), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10666), 28, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [108841] = 3, + ACTIONS(7784), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7780), 27, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [108881] = 3, + ACTIONS(7879), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7877), 27, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [108921] = 3, + ACTIONS(7266), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7264), 27, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [108961] = 3, + ACTIONS(7895), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7893), 27, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [109001] = 3, + ACTIONS(6648), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6656), 27, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [109041] = 3, + ACTIONS(7914), 2, + anon_sym_AT, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7912), 27, + 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_public, + anon_sym_private, + anon_sym_internal, + anon_sym_fileprivate, + anon_sym_open, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_static, + anon_sym_dynamic, + anon_sym_optional, + anon_sym_final, + anon_sym_inout, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [109081] = 5, + ACTIONS(10684), 1, + anon_sym_LT, + STATE(4255), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 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(5086), 17, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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, + sym_property_behavior_modifier, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned, + [109124] = 6, + ACTIONS(10686), 1, + sym__dot_custom, + STATE(4243), 1, + aux_sym_user_type_repeat1, + STATE(6036), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 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(5022), 17, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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, + sym_property_behavior_modifier, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned, + [109169] = 6, + ACTIONS(10686), 1, + sym__dot_custom, + STATE(4244), 1, + aux_sym_user_type_repeat1, + STATE(6036), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 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(5036), 17, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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, + sym_property_behavior_modifier, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned, + [109214] = 6, + ACTIONS(10688), 1, + sym__dot_custom, + STATE(4244), 1, + aux_sym_user_type_repeat1, + STATE(6036), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 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(5029), 17, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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, + sym_property_behavior_modifier, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned, + [109259] = 6, + ACTIONS(5029), 1, + anon_sym_unowned, + ACTIONS(10691), 1, + sym__dot_custom, + STATE(4245), 1, + aux_sym_user_type_repeat1, + STATE(6270), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 23, + 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, + sym_property_behavior_modifier, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [109303] = 6, + ACTIONS(5022), 1, + anon_sym_unowned, + ACTIONS(10694), 1, + sym__dot_custom, + STATE(4248), 1, + aux_sym_user_type_repeat1, + STATE(6270), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 23, + 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, + sym_property_behavior_modifier, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [109347] = 5, + ACTIONS(5086), 1, + anon_sym_unowned, + ACTIONS(10696), 1, + anon_sym_LT, + STATE(4328), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 24, + sym__dot_custom, + 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, + sym_property_behavior_modifier, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [109389] = 6, + ACTIONS(5036), 1, + anon_sym_unowned, + ACTIONS(10694), 1, + sym__dot_custom, + STATE(4245), 1, + aux_sym_user_type_repeat1, + STATE(6270), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 23, + 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, + sym_property_behavior_modifier, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [109433] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 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(4819), 17, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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, + sym_property_behavior_modifier, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned, + [109471] = 17, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10698), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10702), 1, + anon_sym_RPAREN, + ACTIONS(10704), 1, + anon_sym_LPAREN, + ACTIONS(10706), 1, + anon_sym_LBRACK, + ACTIONS(10708), 1, + anon_sym_some, + ACTIONS(10710), 1, + sym_wildcard_pattern, + STATE(2272), 1, + sym_tuple_type, + STATE(2308), 1, + sym__simple_user_type, + STATE(4692), 1, + sym_type_modifiers, + STATE(5311), 1, + sym_simple_identifier, + STATE(6852), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10700), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2366), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2411), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [109536] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 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(5134), 17, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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, + sym_property_behavior_modifier, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned, + [109573] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 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(5122), 17, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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, + sym_property_behavior_modifier, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned, + [109610] = 10, + ACTIONS(7243), 1, + aux_sym_simple_identifier_token1, + ACTIONS(7247), 1, + anon_sym_LBRACK, + ACTIONS(7251), 1, + anon_sym_self, + ACTIONS(10712), 1, + anon_sym_AT, + STATE(5068), 1, + sym_simple_identifier, + STATE(5986), 1, + sym_self_expression, + ACTIONS(7256), 2, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + ACTIONS(7245), 3, + aux_sym_simple_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(7249), 15, + 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, + sym_property_behavior_modifier, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned, + [109661] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 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(5029), 17, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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, + sym_property_behavior_modifier, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned, + [109698] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 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(5130), 17, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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, + sym_property_behavior_modifier, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned, + [109735] = 3, + ACTIONS(4819), 1, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 25, + sym__dot_custom, + 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, + sym_property_behavior_modifier, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [109772] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4701), 1, + sym_type_modifiers, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(6345), 1, + sym__type, + STATE(6880), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5650), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [109834] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7088), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(7715), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [109896] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4701), 1, + sym_type_modifiers, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(6345), 1, + sym__type, + STATE(6764), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5650), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [109958] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7628), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(7715), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [110020] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10739), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_LBRACK, + ACTIONS(10743), 1, + anon_sym_some, + STATE(4682), 1, + sym_type_modifiers, + STATE(4755), 1, + sym_tuple_type, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + STATE(6426), 1, + sym__type, + STATE(7135), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10737), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5380), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5540), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [110082] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10739), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_LBRACK, + ACTIONS(10743), 1, + anon_sym_some, + STATE(4682), 1, + sym_type_modifiers, + STATE(4755), 1, + sym_tuple_type, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + STATE(6426), 1, + sym__type, + STATE(7141), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10737), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5380), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5540), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [110144] = 8, + ACTIONS(7243), 1, + aux_sym_simple_identifier_token1, + ACTIONS(7251), 1, + anon_sym_self, + STATE(5068), 1, + sym_simple_identifier, + STATE(5986), 1, + sym_self_expression, + ACTIONS(7245), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(7256), 3, + anon_sym_AT, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7249), 15, + 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, + sym_property_behavior_modifier, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned, + [110190] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(10745), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10749), 1, + anon_sym_some, + STATE(4716), 1, + sym_type_modifiers, + STATE(4882), 1, + sym_tuple_type, + STATE(5572), 1, + sym__simple_user_type, + STATE(5573), 1, + sym_simple_identifier, + STATE(6527), 1, + sym__type, + STATE(10325), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6875), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [110252] = 4, + ACTIONS(10751), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6046), 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(6044), 17, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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, + sym_property_behavior_modifier, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned, + [110290] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10698), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10704), 1, + anon_sym_LPAREN, + ACTIONS(10706), 1, + anon_sym_LBRACK, + ACTIONS(10708), 1, + anon_sym_some, + STATE(2272), 1, + sym_tuple_type, + STATE(2308), 1, + sym__simple_user_type, + STATE(2311), 1, + sym_simple_identifier, + STATE(2648), 1, + sym__type, + STATE(4692), 1, + sym_type_modifiers, + STATE(10318), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10700), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2366), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2411), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [110352] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7715), 1, + sym__type, + STATE(8096), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [110414] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(10745), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10749), 1, + anon_sym_some, + STATE(4716), 1, + sym_type_modifiers, + STATE(4882), 1, + sym_tuple_type, + STATE(5572), 1, + sym__simple_user_type, + STATE(5573), 1, + sym_simple_identifier, + STATE(6527), 1, + sym__type, + STATE(10205), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6875), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [110476] = 16, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(6527), 1, + sym__type, + STATE(8744), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [110538] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10753), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10757), 1, + anon_sym_LPAREN, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10761), 1, + anon_sym_some, + STATE(2273), 1, + sym_tuple_type, + STATE(2306), 1, + sym__simple_user_type, + STATE(2322), 1, + sym_simple_identifier, + STATE(2606), 1, + sym__type, + STATE(2625), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(4683), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10755), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2347), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2409), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [110600] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10763), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10767), 1, + anon_sym_LPAREN, + ACTIONS(10769), 1, + anon_sym_LBRACK, + ACTIONS(10771), 1, + anon_sym_some, + STATE(2732), 1, + sym_tuple_type, + STATE(3238), 1, + sym_simple_identifier, + STATE(3242), 1, + sym__simple_user_type, + STATE(3491), 1, + sym__type, + STATE(3505), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(4729), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10765), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3382), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3443), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [110662] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7715), 1, + sym__type, + STATE(8080), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [110724] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7715), 1, + sym__type, + STATE(8090), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [110786] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4701), 1, + sym_type_modifiers, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(6345), 1, + sym__type, + STATE(6592), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5650), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [110848] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10763), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10767), 1, + anon_sym_LPAREN, + ACTIONS(10769), 1, + anon_sym_LBRACK, + ACTIONS(10771), 1, + anon_sym_some, + STATE(2732), 1, + sym_tuple_type, + STATE(3238), 1, + sym_simple_identifier, + STATE(3242), 1, + sym__simple_user_type, + STATE(3491), 1, + sym__type, + STATE(3508), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(4729), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10765), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3382), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3443), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [110910] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10773), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10777), 1, + anon_sym_LPAREN, + ACTIONS(10779), 1, + anon_sym_LBRACK, + ACTIONS(10781), 1, + anon_sym_some, + STATE(4730), 1, + sym_type_modifiers, + STATE(4747), 1, + sym_tuple_type, + STATE(5008), 1, + sym__simple_user_type, + STATE(5009), 1, + sym_simple_identifier, + STATE(6168), 1, + sym__type, + STATE(6521), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10775), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5303), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5502), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [110972] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7715), 1, + sym__type, + STATE(8098), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [111034] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7715), 1, + sym__type, + STATE(7745), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [111096] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7715), 1, + sym__type, + STATE(7767), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [111158] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7715), 1, + sym__type, + STATE(7891), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [111220] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10783), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10787), 1, + anon_sym_LPAREN, + ACTIONS(10789), 1, + anon_sym_LBRACK, + ACTIONS(10791), 1, + anon_sym_some, + STATE(4705), 1, + sym_type_modifiers, + STATE(4748), 1, + sym_tuple_type, + STATE(4998), 1, + sym_simple_identifier, + STATE(5000), 1, + sym__simple_user_type, + STATE(5981), 1, + sym__type, + STATE(6696), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10785), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5233), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5435), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [111282] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7715), 1, + sym__type, + STATE(7894), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [111344] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7715), 1, + sym__type, + STATE(8081), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [111406] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7715), 1, + sym__type, + STATE(8005), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [111468] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7715), 1, + sym__type, + STATE(8063), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [111530] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7715), 1, + sym__type, + STATE(8086), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [111592] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7114), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(7715), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [111654] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4701), 1, + sym_type_modifiers, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(6345), 1, + sym__type, + STATE(6584), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5650), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [111716] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10698), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10704), 1, + anon_sym_LPAREN, + ACTIONS(10706), 1, + anon_sym_LBRACK, + ACTIONS(10708), 1, + anon_sym_some, + STATE(2272), 1, + sym_tuple_type, + STATE(2308), 1, + sym__simple_user_type, + STATE(2311), 1, + sym_simple_identifier, + STATE(2648), 1, + sym__type, + STATE(2666), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(4692), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10700), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2366), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2411), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [111778] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10698), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10704), 1, + anon_sym_LPAREN, + ACTIONS(10706), 1, + anon_sym_LBRACK, + ACTIONS(10708), 1, + anon_sym_some, + STATE(2272), 1, + sym_tuple_type, + STATE(2308), 1, + sym__simple_user_type, + STATE(2311), 1, + sym_simple_identifier, + STATE(2648), 1, + sym__type, + STATE(2676), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(4692), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10700), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2366), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2411), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [111840] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7351), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(7715), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [111902] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4701), 1, + sym_type_modifiers, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(6345), 1, + sym__type, + STATE(6704), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5650), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [111964] = 16, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(6527), 1, + sym__type, + STATE(9505), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [112026] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7349), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(7715), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [112088] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10783), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10787), 1, + anon_sym_LPAREN, + ACTIONS(10789), 1, + anon_sym_LBRACK, + ACTIONS(10791), 1, + anon_sym_some, + STATE(4705), 1, + sym_type_modifiers, + STATE(4748), 1, + sym_tuple_type, + STATE(4998), 1, + sym_simple_identifier, + STATE(5000), 1, + sym__simple_user_type, + STATE(5981), 1, + sym__type, + STATE(6895), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10785), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5233), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5435), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [112150] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(10622), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10626), 1, + anon_sym_LBRACK, + ACTIONS(10628), 1, + anon_sym_some, + STATE(4721), 1, + sym_type_modifiers, + STATE(4849), 1, + sym_tuple_type, + STATE(4906), 1, + sym__simple_user_type, + STATE(4907), 1, + sym_simple_identifier, + STATE(5699), 1, + sym__type, + STATE(6240), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10624), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5147), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5278), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [112212] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7348), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(7715), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [112274] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7086), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(7715), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [112336] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(10745), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10749), 1, + anon_sym_some, + STATE(4716), 1, + sym_type_modifiers, + STATE(4882), 1, + sym_tuple_type, + STATE(5572), 1, + sym__simple_user_type, + STATE(5573), 1, + sym_simple_identifier, + STATE(6527), 1, + sym__type, + STATE(10153), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6875), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [112398] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(10622), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10626), 1, + anon_sym_LBRACK, + ACTIONS(10628), 1, + anon_sym_some, + STATE(4721), 1, + sym_type_modifiers, + STATE(4849), 1, + sym_tuple_type, + STATE(4906), 1, + sym__simple_user_type, + STATE(4907), 1, + sym_simple_identifier, + STATE(5699), 1, + sym__type, + STATE(6249), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10624), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5147), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5278), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [112460] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4701), 1, + sym_type_modifiers, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(6345), 1, + sym__type, + STATE(6687), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5650), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [112522] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(10745), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10749), 1, + anon_sym_some, + STATE(4716), 1, + sym_type_modifiers, + STATE(4882), 1, + sym_tuple_type, + STATE(5572), 1, + sym__simple_user_type, + STATE(5573), 1, + sym_simple_identifier, + STATE(6527), 1, + sym__type, + STATE(10057), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6875), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [112584] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10606), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10610), 1, + anon_sym_LPAREN, + ACTIONS(10612), 1, + anon_sym_LBRACK, + ACTIONS(10614), 1, + anon_sym_some, + STATE(4697), 1, + sym_type_modifiers, + STATE(4757), 1, + sym_tuple_type, + STATE(5133), 1, + sym_simple_identifier, + STATE(5135), 1, + sym__simple_user_type, + STATE(6581), 1, + sym__type, + STATE(6947), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10608), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5407), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5574), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [112646] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(10622), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10626), 1, + anon_sym_LBRACK, + ACTIONS(10628), 1, + anon_sym_some, + STATE(4721), 1, + sym_type_modifiers, + STATE(4849), 1, + sym_tuple_type, + STATE(4906), 1, + sym__simple_user_type, + STATE(4907), 1, + sym_simple_identifier, + STATE(5699), 1, + sym__type, + STATE(5937), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10624), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5147), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5278), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [112708] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7629), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(7715), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [112770] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7346), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(7715), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [112832] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7223), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(7715), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [112894] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(10622), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10626), 1, + anon_sym_LBRACK, + ACTIONS(10628), 1, + anon_sym_some, + STATE(4721), 1, + sym_type_modifiers, + STATE(4849), 1, + sym_tuple_type, + STATE(4906), 1, + sym__simple_user_type, + STATE(4907), 1, + sym_simple_identifier, + STATE(5699), 1, + sym__type, + STATE(5984), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10624), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5147), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5278), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [112956] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(10745), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10749), 1, + anon_sym_some, + STATE(4716), 1, + sym_type_modifiers, + STATE(4882), 1, + sym_tuple_type, + STATE(5572), 1, + sym__simple_user_type, + STATE(5573), 1, + sym_simple_identifier, + STATE(6527), 1, + sym__type, + STATE(9986), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6875), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [113018] = 16, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(6527), 1, + sym__type, + STATE(8724), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [113080] = 16, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(6527), 1, + sym__type, + STATE(8722), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [113142] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10793), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10797), 1, + anon_sym_LPAREN, + ACTIONS(10799), 1, + anon_sym_LBRACK, + ACTIONS(10801), 1, + anon_sym_some, + STATE(4710), 1, + sym_tuple_type, + STATE(4727), 1, + sym_type_modifiers, + STATE(4977), 1, + sym_simple_identifier, + STATE(4979), 1, + sym__simple_user_type, + STATE(5818), 1, + sym__type, + STATE(5958), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10795), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5156), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5254), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [113204] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7715), 1, + sym__type, + STATE(8670), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [113266] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10803), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10807), 1, + anon_sym_LPAREN, + ACTIONS(10809), 1, + anon_sym_LBRACK, + ACTIONS(10811), 1, + anon_sym_some, + STATE(2618), 1, + sym_tuple_type, + STATE(3059), 1, + sym__simple_user_type, + STATE(3101), 1, + sym_simple_identifier, + STATE(3486), 1, + sym__type, + STATE(3500), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(4725), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10805), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3361), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [113328] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4701), 1, + sym_type_modifiers, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(6345), 1, + sym__type, + STATE(6805), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5650), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [113390] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4701), 1, + sym_type_modifiers, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(6345), 1, + sym__type, + STATE(6811), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5650), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [113452] = 16, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(6527), 1, + sym__type, + STATE(9108), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [113514] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10813), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10817), 1, + anon_sym_LPAREN, + ACTIONS(10819), 1, + anon_sym_LBRACK, + ACTIONS(10821), 1, + anon_sym_some, + STATE(4698), 1, + sym_type_modifiers, + STATE(4712), 1, + sym_tuple_type, + STATE(4960), 1, + sym_simple_identifier, + STATE(4962), 1, + sym__simple_user_type, + STATE(5691), 1, + sym__type, + STATE(6037), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10815), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5101), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5349), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [113576] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4701), 1, + sym_type_modifiers, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(6345), 1, + sym__type, + STATE(6818), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5650), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [113638] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4701), 1, + sym_type_modifiers, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(6345), 1, + sym__type, + STATE(6832), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5650), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [113700] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7266), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(7715), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [113762] = 16, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(6527), 1, + sym__type, + STATE(8707), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [113824] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(10745), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10749), 1, + anon_sym_some, + STATE(4716), 1, + sym_type_modifiers, + STATE(4882), 1, + sym_tuple_type, + STATE(5572), 1, + sym__simple_user_type, + STATE(5573), 1, + sym_simple_identifier, + STATE(6527), 1, + sym__type, + STATE(9889), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6875), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [113886] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4701), 1, + sym_type_modifiers, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(6345), 1, + sym__type, + STATE(6658), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5650), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [113948] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4701), 1, + sym_type_modifiers, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(6345), 1, + sym__type, + STATE(6660), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5650), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [114010] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7715), 1, + sym__type, + STATE(7979), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [114072] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4701), 1, + sym_type_modifiers, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(6345), 1, + sym__type, + STATE(6673), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5650), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [114134] = 3, + ACTIONS(5130), 1, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 24, + sym__dot_custom, + 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, + sym_property_behavior_modifier, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [114170] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10698), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10704), 1, + anon_sym_LPAREN, + ACTIONS(10706), 1, + anon_sym_LBRACK, + ACTIONS(10708), 1, + anon_sym_some, + ACTIONS(10823), 1, + sym_wildcard_pattern, + STATE(2272), 1, + sym_tuple_type, + STATE(2308), 1, + sym__simple_user_type, + STATE(4692), 1, + sym_type_modifiers, + STATE(5298), 1, + sym_simple_identifier, + STATE(7302), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10700), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2366), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2411), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [114232] = 3, + ACTIONS(5029), 1, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 24, + sym__dot_custom, + 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, + sym_property_behavior_modifier, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [114268] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10773), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10777), 1, + anon_sym_LPAREN, + ACTIONS(10779), 1, + anon_sym_LBRACK, + ACTIONS(10781), 1, + anon_sym_some, + STATE(4730), 1, + sym_type_modifiers, + STATE(4747), 1, + sym_tuple_type, + STATE(5008), 1, + sym__simple_user_type, + STATE(5009), 1, + sym_simple_identifier, + STATE(6168), 1, + sym__type, + STATE(6458), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10775), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5303), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5502), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [114330] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4701), 1, + sym_type_modifiers, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(6345), 1, + sym__type, + STATE(6677), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5650), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [114392] = 3, + ACTIONS(5122), 1, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 24, + sym__dot_custom, + 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, + sym_property_behavior_modifier, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [114428] = 3, + ACTIONS(5134), 1, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 24, + sym__dot_custom, + 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, + sym_property_behavior_modifier, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [114464] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10606), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10610), 1, + anon_sym_LPAREN, + ACTIONS(10612), 1, + anon_sym_LBRACK, + ACTIONS(10614), 1, + anon_sym_some, + STATE(4697), 1, + sym_type_modifiers, + STATE(4757), 1, + sym_tuple_type, + STATE(5133), 1, + sym_simple_identifier, + STATE(5135), 1, + sym__simple_user_type, + STATE(6415), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(6581), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10608), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5407), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5574), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [114526] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4701), 1, + sym_type_modifiers, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(6339), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(6345), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5650), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [114588] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4701), 1, + sym_type_modifiers, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(6318), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(6345), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5650), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [114650] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7715), 1, + sym__type, + STATE(7975), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [114712] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7190), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(7715), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [114774] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7331), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(7715), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [114836] = 16, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(7219), 1, + sym__possibly_implicitly_unwrapped_type, + STATE(7715), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [114898] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5210), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [114957] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10292), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [115016] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8154), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [115075] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10825), 1, + anon_sym_LPAREN, + ACTIONS(10827), 1, + anon_sym_LBRACK, + ACTIONS(10829), 1, + anon_sym_some, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(2295), 1, + sym_tuple_type, + STATE(2944), 1, + sym__type, + STATE(4694), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2638), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2677), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [115134] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10831), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10835), 1, + anon_sym_LPAREN, + ACTIONS(10837), 1, + anon_sym_LBRACK, + ACTIONS(10839), 1, + anon_sym_some, + STATE(4688), 1, + sym_type_modifiers, + STATE(4742), 1, + sym_tuple_type, + STATE(5002), 1, + sym__simple_user_type, + STATE(5005), 1, + sym_simple_identifier, + STATE(6170), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10833), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5323), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5391), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [115193] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10089), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [115252] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10825), 1, + anon_sym_LPAREN, + ACTIONS(10827), 1, + anon_sym_LBRACK, + ACTIONS(10829), 1, + anon_sym_some, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(2295), 1, + sym_tuple_type, + STATE(2947), 1, + sym__type, + STATE(4694), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2638), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2677), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [115311] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10773), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10777), 1, + anon_sym_LPAREN, + ACTIONS(10779), 1, + anon_sym_LBRACK, + ACTIONS(10781), 1, + anon_sym_some, + STATE(4730), 1, + sym_type_modifiers, + STATE(4747), 1, + sym_tuple_type, + STATE(5008), 1, + sym__simple_user_type, + STATE(5009), 1, + sym_simple_identifier, + STATE(6523), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10775), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5303), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5502), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [115370] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10841), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10845), 1, + anon_sym_LPAREN, + ACTIONS(10847), 1, + anon_sym_LBRACK, + ACTIONS(10849), 1, + anon_sym_some, + STATE(4736), 1, + sym_type_modifiers, + STATE(4879), 1, + sym_tuple_type, + STATE(5591), 1, + sym__simple_user_type, + STATE(5597), 1, + sym_simple_identifier, + STATE(8698), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10843), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(6132), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6585), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [115429] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8228), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [115488] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6075), 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(6073), 17, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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, + sym_property_behavior_modifier, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned, + [115523] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10739), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_LBRACK, + ACTIONS(10743), 1, + anon_sym_some, + STATE(4682), 1, + sym_type_modifiers, + STATE(4755), 1, + sym_tuple_type, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + STATE(5706), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10737), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5380), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5540), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [115582] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8888), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [115641] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8140), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [115700] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10080), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [115759] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10851), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10855), 1, + anon_sym_LPAREN, + ACTIONS(10857), 1, + anon_sym_LBRACK, + ACTIONS(10859), 1, + anon_sym_some, + STATE(2259), 1, + sym_tuple_type, + STATE(2283), 1, + sym_simple_identifier, + STATE(2285), 1, + sym__simple_user_type, + STATE(2422), 1, + sym__type, + STATE(4686), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10853), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2315), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2324), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [115818] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8903), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [115877] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8132), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [115936] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10861), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10865), 1, + anon_sym_LPAREN, + ACTIONS(10867), 1, + anon_sym_LBRACK, + ACTIONS(10869), 1, + anon_sym_some, + STATE(4672), 1, + sym_tuple_type, + STATE(4696), 1, + sym_type_modifiers, + STATE(4838), 1, + sym_simple_identifier, + STATE(4847), 1, + sym__simple_user_type, + STATE(5206), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10863), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(4944), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(4989), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [115995] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10841), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10845), 1, + anon_sym_LPAREN, + ACTIONS(10847), 1, + anon_sym_LBRACK, + ACTIONS(10849), 1, + anon_sym_some, + STATE(4736), 1, + sym_type_modifiers, + STATE(4879), 1, + sym_tuple_type, + STATE(5591), 1, + sym__simple_user_type, + STATE(5597), 1, + sym_simple_identifier, + STATE(8748), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10843), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(6132), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6585), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [116054] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8918), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [116113] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10793), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10797), 1, + anon_sym_LPAREN, + ACTIONS(10799), 1, + anon_sym_LBRACK, + ACTIONS(10801), 1, + anon_sym_some, + STATE(4710), 1, + sym_tuple_type, + STATE(4727), 1, + sym_type_modifiers, + STATE(4977), 1, + sym_simple_identifier, + STATE(4979), 1, + sym__simple_user_type, + STATE(5462), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10795), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5156), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5254), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [116172] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8102), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [116231] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10071), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [116290] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10825), 1, + anon_sym_LPAREN, + ACTIONS(10827), 1, + anon_sym_LBRACK, + ACTIONS(10829), 1, + anon_sym_some, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(2295), 1, + sym_tuple_type, + STATE(2921), 1, + sym__type, + STATE(4694), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2638), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2677), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [116349] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8933), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [116408] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10763), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10767), 1, + anon_sym_LPAREN, + ACTIONS(10769), 1, + anon_sym_LBRACK, + ACTIONS(10771), 1, + anon_sym_some, + STATE(2732), 1, + sym_tuple_type, + STATE(3238), 1, + sym_simple_identifier, + STATE(3242), 1, + sym__simple_user_type, + STATE(3504), 1, + sym__type, + STATE(4729), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10765), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3382), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3443), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [116467] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10813), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10817), 1, + anon_sym_LPAREN, + ACTIONS(10819), 1, + anon_sym_LBRACK, + ACTIONS(10821), 1, + anon_sym_some, + STATE(4698), 1, + sym_type_modifiers, + STATE(4712), 1, + sym_tuple_type, + STATE(4960), 1, + sym_simple_identifier, + STATE(4962), 1, + sym__simple_user_type, + STATE(5385), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10815), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5101), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5349), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [116526] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10825), 1, + anon_sym_LPAREN, + ACTIONS(10827), 1, + anon_sym_LBRACK, + ACTIONS(10829), 1, + anon_sym_some, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(2295), 1, + sym_tuple_type, + STATE(2901), 1, + sym__type, + STATE(4694), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2638), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2677), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [116585] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8044), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [116644] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10773), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10777), 1, + anon_sym_LPAREN, + ACTIONS(10779), 1, + anon_sym_LBRACK, + ACTIONS(10781), 1, + anon_sym_some, + STATE(4730), 1, + sym_type_modifiers, + STATE(4747), 1, + sym_tuple_type, + STATE(5008), 1, + sym__simple_user_type, + STATE(5009), 1, + sym_simple_identifier, + STATE(6464), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10775), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5303), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5502), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [116703] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(5988), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [116762] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10813), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10817), 1, + anon_sym_LPAREN, + ACTIONS(10819), 1, + anon_sym_LBRACK, + ACTIONS(10821), 1, + anon_sym_some, + STATE(4698), 1, + sym_type_modifiers, + STATE(4712), 1, + sym_tuple_type, + STATE(4960), 1, + sym_simple_identifier, + STATE(4962), 1, + sym__simple_user_type, + STATE(5390), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10815), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5101), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5349), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [116821] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10881), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10885), 1, + anon_sym_LPAREN, + ACTIONS(10887), 1, + anon_sym_LBRACK, + ACTIONS(10889), 1, + anon_sym_some, + STATE(4671), 1, + sym_tuple_type, + STATE(4677), 1, + sym_type_modifiers, + STATE(4843), 1, + sym__simple_user_type, + STATE(4857), 1, + sym_simple_identifier, + STATE(5138), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10883), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(4978), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5019), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [116880] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10825), 1, + anon_sym_LPAREN, + ACTIONS(10827), 1, + anon_sym_LBRACK, + ACTIONS(10829), 1, + anon_sym_some, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(2295), 1, + sym_tuple_type, + STATE(2889), 1, + sym__type, + STATE(4694), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2638), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2677), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [116939] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10753), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10757), 1, + anon_sym_LPAREN, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10761), 1, + anon_sym_some, + STATE(2273), 1, + sym_tuple_type, + STATE(2306), 1, + sym__simple_user_type, + STATE(2322), 1, + sym_simple_identifier, + STATE(2644), 1, + sym__type, + STATE(4683), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10755), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2347), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2409), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [116998] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10825), 1, + anon_sym_LPAREN, + ACTIONS(10827), 1, + anon_sym_LBRACK, + ACTIONS(10829), 1, + anon_sym_some, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(2295), 1, + sym_tuple_type, + STATE(2854), 1, + sym__type, + STATE(4694), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2638), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2677), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [117057] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10698), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10704), 1, + anon_sym_LPAREN, + ACTIONS(10706), 1, + anon_sym_LBRACK, + ACTIONS(10708), 1, + anon_sym_some, + STATE(2272), 1, + sym_tuple_type, + STATE(2308), 1, + sym__simple_user_type, + STATE(2311), 1, + sym_simple_identifier, + STATE(2482), 1, + sym__type, + STATE(4692), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10700), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2366), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2411), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [117116] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10831), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10835), 1, + anon_sym_LPAREN, + ACTIONS(10837), 1, + anon_sym_LBRACK, + ACTIONS(10839), 1, + anon_sym_some, + STATE(4688), 1, + sym_type_modifiers, + STATE(4742), 1, + sym_tuple_type, + STATE(5002), 1, + sym__simple_user_type, + STATE(5005), 1, + sym_simple_identifier, + STATE(5564), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10833), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5323), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5391), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [117175] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10069), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [117234] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8948), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [117293] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8015), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [117352] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8963), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [117411] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10437), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [117470] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10831), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10835), 1, + anon_sym_LPAREN, + ACTIONS(10837), 1, + anon_sym_LBRACK, + ACTIONS(10839), 1, + anon_sym_some, + STATE(4688), 1, + sym_type_modifiers, + STATE(4742), 1, + sym_tuple_type, + STATE(5002), 1, + sym__simple_user_type, + STATE(5005), 1, + sym_simple_identifier, + STATE(5567), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10833), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5323), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5391), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [117529] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10831), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10835), 1, + anon_sym_LPAREN, + ACTIONS(10837), 1, + anon_sym_LBRACK, + ACTIONS(10839), 1, + anon_sym_some, + STATE(4688), 1, + sym_type_modifiers, + STATE(4742), 1, + sym_tuple_type, + STATE(5002), 1, + sym__simple_user_type, + STATE(5005), 1, + sym_simple_identifier, + STATE(5569), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10833), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5323), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5391), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [117588] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8002), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [117647] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10783), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10787), 1, + anon_sym_LPAREN, + ACTIONS(10789), 1, + anon_sym_LBRACK, + ACTIONS(10791), 1, + anon_sym_some, + STATE(4705), 1, + sym_type_modifiers, + STATE(4748), 1, + sym_tuple_type, + STATE(4998), 1, + sym_simple_identifier, + STATE(5000), 1, + sym__simple_user_type, + STATE(6866), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10785), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5233), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5435), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [117706] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10065), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [117765] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10119), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [117824] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10739), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_LBRACK, + ACTIONS(10743), 1, + anon_sym_some, + STATE(4682), 1, + sym_type_modifiers, + STATE(4755), 1, + sym_tuple_type, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + STATE(9598), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10737), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5380), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5540), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [117883] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10825), 1, + anon_sym_LPAREN, + ACTIONS(10827), 1, + anon_sym_LBRACK, + ACTIONS(10829), 1, + anon_sym_some, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(2295), 1, + sym_tuple_type, + STATE(2870), 1, + sym__type, + STATE(4694), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2638), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2677), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [117942] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(6256), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [118001] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10831), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10835), 1, + anon_sym_LPAREN, + ACTIONS(10837), 1, + anon_sym_LBRACK, + ACTIONS(10839), 1, + anon_sym_some, + STATE(4688), 1, + sym_type_modifiers, + STATE(4742), 1, + sym_tuple_type, + STATE(5002), 1, + sym__simple_user_type, + STATE(5005), 1, + sym_simple_identifier, + STATE(6387), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10833), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5323), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5391), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [118060] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8978), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [118119] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7989), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [118178] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10064), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [118237] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(6437), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [118296] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8993), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [118355] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10881), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10885), 1, + anon_sym_LPAREN, + ACTIONS(10887), 1, + anon_sym_LBRACK, + ACTIONS(10889), 1, + anon_sym_some, + STATE(4671), 1, + sym_tuple_type, + STATE(4677), 1, + sym_type_modifiers, + STATE(4843), 1, + sym__simple_user_type, + STATE(4857), 1, + sym_simple_identifier, + STATE(5127), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10883), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(4978), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5019), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [118414] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10831), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10835), 1, + anon_sym_LPAREN, + ACTIONS(10837), 1, + anon_sym_LBRACK, + ACTIONS(10839), 1, + anon_sym_some, + STATE(4688), 1, + sym_type_modifiers, + STATE(4742), 1, + sym_tuple_type, + STATE(5002), 1, + sym__simple_user_type, + STATE(5005), 1, + sym_simple_identifier, + STATE(6188), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10833), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5323), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5391), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [118473] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7970), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [118532] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10061), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [118591] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10825), 1, + anon_sym_LPAREN, + ACTIONS(10827), 1, + anon_sym_LBRACK, + ACTIONS(10829), 1, + anon_sym_some, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(2295), 1, + sym_tuple_type, + STATE(2900), 1, + sym__type, + STATE(4694), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2638), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2677), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [118650] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10753), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10757), 1, + anon_sym_LPAREN, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10761), 1, + anon_sym_some, + STATE(2273), 1, + sym_tuple_type, + STATE(2306), 1, + sym__simple_user_type, + STATE(2322), 1, + sym_simple_identifier, + STATE(2620), 1, + sym__type, + STATE(4683), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10755), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2347), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2409), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [118709] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(5809), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [118768] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10763), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10767), 1, + anon_sym_LPAREN, + ACTIONS(10769), 1, + anon_sym_LBRACK, + ACTIONS(10771), 1, + anon_sym_some, + STATE(2732), 1, + sym_tuple_type, + STATE(3238), 1, + sym_simple_identifier, + STATE(3242), 1, + sym__simple_user_type, + STATE(3501), 1, + sym__type, + STATE(4729), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10765), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3382), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3443), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [118827] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10891), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10895), 1, + anon_sym_LPAREN, + ACTIONS(10897), 1, + anon_sym_LBRACK, + ACTIONS(10899), 1, + anon_sym_some, + STATE(4703), 1, + sym_type_modifiers, + STATE(4804), 1, + sym_tuple_type, + STATE(5201), 1, + sym__simple_user_type, + STATE(5202), 1, + sym_simple_identifier, + STATE(6776), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10893), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5603), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5929), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [118886] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6071), 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(6069), 17, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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, + sym_property_behavior_modifier, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned, + [118921] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10606), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10610), 1, + anon_sym_LPAREN, + ACTIONS(10612), 1, + anon_sym_LBRACK, + ACTIONS(10614), 1, + anon_sym_some, + STATE(4697), 1, + sym_type_modifiers, + STATE(4757), 1, + sym_tuple_type, + STATE(5133), 1, + sym_simple_identifier, + STATE(5135), 1, + sym__simple_user_type, + STATE(5841), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10608), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5407), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5574), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [118980] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(9008), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [119039] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10841), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10845), 1, + anon_sym_LPAREN, + ACTIONS(10847), 1, + anon_sym_LBRACK, + ACTIONS(10849), 1, + anon_sym_some, + STATE(4736), 1, + sym_type_modifiers, + STATE(4879), 1, + sym_tuple_type, + STATE(5591), 1, + sym__simple_user_type, + STATE(5597), 1, + sym_simple_identifier, + STATE(8701), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10843), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(6132), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6585), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [119098] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7494), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [119157] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10825), 1, + anon_sym_LPAREN, + ACTIONS(10827), 1, + anon_sym_LBRACK, + ACTIONS(10829), 1, + anon_sym_some, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(2295), 1, + sym_tuple_type, + STATE(2893), 1, + sym__type, + STATE(4694), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2638), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2677), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [119216] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8873), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [119275] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10606), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10610), 1, + anon_sym_LPAREN, + ACTIONS(10612), 1, + anon_sym_LBRACK, + ACTIONS(10614), 1, + anon_sym_some, + STATE(4697), 1, + sym_type_modifiers, + STATE(4757), 1, + sym_tuple_type, + STATE(5133), 1, + sym_simple_identifier, + STATE(5135), 1, + sym__simple_user_type, + STATE(5844), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10608), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5407), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5574), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [119334] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10831), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10835), 1, + anon_sym_LPAREN, + ACTIONS(10837), 1, + anon_sym_LBRACK, + ACTIONS(10839), 1, + anon_sym_some, + STATE(4688), 1, + sym_type_modifiers, + STATE(4742), 1, + sym_tuple_type, + STATE(5002), 1, + sym__simple_user_type, + STATE(5005), 1, + sym_simple_identifier, + STATE(6352), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10833), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5323), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5391), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [119393] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7950), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [119452] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10698), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10704), 1, + anon_sym_LPAREN, + ACTIONS(10706), 1, + anon_sym_LBRACK, + ACTIONS(10708), 1, + anon_sym_some, + STATE(2272), 1, + sym_tuple_type, + STATE(2308), 1, + sym__simple_user_type, + STATE(2311), 1, + sym_simple_identifier, + STATE(2465), 1, + sym__type, + STATE(4692), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10700), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2366), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2411), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [119511] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(6251), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [119570] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10060), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [119629] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10881), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10885), 1, + anon_sym_LPAREN, + ACTIONS(10887), 1, + anon_sym_LBRACK, + ACTIONS(10889), 1, + anon_sym_some, + STATE(4671), 1, + sym_tuple_type, + STATE(4677), 1, + sym_type_modifiers, + STATE(4843), 1, + sym__simple_user_type, + STATE(4857), 1, + sym_simple_identifier, + STATE(5136), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10883), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(4978), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5019), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [119688] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10698), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10704), 1, + anon_sym_LPAREN, + ACTIONS(10706), 1, + anon_sym_LBRACK, + ACTIONS(10708), 1, + anon_sym_some, + STATE(2272), 1, + sym_tuple_type, + STATE(2308), 1, + sym__simple_user_type, + STATE(2311), 1, + sym_simple_identifier, + STATE(4692), 1, + sym_type_modifiers, + STATE(7233), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10700), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2366), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2411), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [119747] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6636), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6640), 1, + anon_sym_LBRACK, + ACTIONS(10901), 1, + anon_sym_LPAREN, + ACTIONS(10903), 1, + anon_sym_some, + STATE(2525), 1, + sym_tuple_type, + STATE(2960), 1, + sym__simple_user_type, + STATE(3071), 1, + sym_simple_identifier, + STATE(3366), 1, + sym__type, + STATE(4708), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6638), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3046), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3090), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [119806] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6636), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6640), 1, + anon_sym_LBRACK, + ACTIONS(10901), 1, + anon_sym_LPAREN, + ACTIONS(10903), 1, + anon_sym_some, + STATE(2525), 1, + sym_tuple_type, + STATE(2960), 1, + sym__simple_user_type, + STATE(3071), 1, + sym_simple_identifier, + STATE(3363), 1, + sym__type, + STATE(4708), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6638), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3046), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3090), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [119865] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(6794), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [119924] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(5857), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [119983] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(9120), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [120042] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10891), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10895), 1, + anon_sym_LPAREN, + ACTIONS(10897), 1, + anon_sym_LBRACK, + ACTIONS(10899), 1, + anon_sym_some, + STATE(4703), 1, + sym_type_modifiers, + STATE(4804), 1, + sym_tuple_type, + STATE(5201), 1, + sym__simple_user_type, + STATE(5202), 1, + sym_simple_identifier, + STATE(5979), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10893), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5603), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5929), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [120101] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(9023), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [120160] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(6179), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [120219] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7926), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [120278] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10078), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [120337] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10348), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [120396] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10058), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [120455] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7884), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [120514] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10055), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [120573] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10739), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_LBRACK, + ACTIONS(10743), 1, + anon_sym_some, + STATE(4682), 1, + sym_type_modifiers, + STATE(4755), 1, + sym_tuple_type, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + STATE(9298), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10737), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5380), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5540), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [120632] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8658), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [120691] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(9053), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [120750] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10891), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10895), 1, + anon_sym_LPAREN, + ACTIONS(10897), 1, + anon_sym_LBRACK, + ACTIONS(10899), 1, + anon_sym_some, + STATE(4703), 1, + sym_type_modifiers, + STATE(4804), 1, + sym_tuple_type, + STATE(5201), 1, + sym__simple_user_type, + STATE(5202), 1, + sym_simple_identifier, + STATE(6459), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10893), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5603), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5929), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [120809] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10606), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10610), 1, + anon_sym_LPAREN, + ACTIONS(10612), 1, + anon_sym_LBRACK, + ACTIONS(10614), 1, + anon_sym_some, + STATE(4697), 1, + sym_type_modifiers, + STATE(4757), 1, + sym_tuple_type, + STATE(5133), 1, + sym_simple_identifier, + STATE(5135), 1, + sym__simple_user_type, + STATE(5861), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10608), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5407), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5574), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [120868] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6530), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6534), 1, + anon_sym_LBRACK, + ACTIONS(10905), 1, + anon_sym_LPAREN, + ACTIONS(10907), 1, + anon_sym_some, + STATE(2514), 1, + sym_tuple_type, + STATE(2857), 1, + sym__simple_user_type, + STATE(3016), 1, + sym_simple_identifier, + STATE(3230), 1, + sym__type, + STATE(4723), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6532), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2988), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2996), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [120927] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7873), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [120986] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10831), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10835), 1, + anon_sym_LPAREN, + ACTIONS(10837), 1, + anon_sym_LBRACK, + ACTIONS(10839), 1, + anon_sym_some, + STATE(4688), 1, + sym_type_modifiers, + STATE(4742), 1, + sym_tuple_type, + STATE(5002), 1, + sym__simple_user_type, + STATE(5005), 1, + sym_simple_identifier, + STATE(6027), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10833), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5323), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5391), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [121045] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10053), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [121104] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7837), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [121163] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(9068), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [121222] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7843), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [121281] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10050), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [121340] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(9083), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [121399] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6530), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6534), 1, + anon_sym_LBRACK, + ACTIONS(10905), 1, + anon_sym_LPAREN, + ACTIONS(10907), 1, + anon_sym_some, + STATE(2514), 1, + sym_tuple_type, + STATE(2857), 1, + sym__simple_user_type, + STATE(3016), 1, + sym_simple_identifier, + STATE(3271), 1, + sym__type, + STATE(4723), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6532), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2988), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2996), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [121458] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6538), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6542), 1, + anon_sym_LBRACK, + ACTIONS(10909), 1, + anon_sym_LPAREN, + ACTIONS(10911), 1, + anon_sym_some, + STATE(2495), 1, + sym_tuple_type, + STATE(2878), 1, + sym__simple_user_type, + STATE(2984), 1, + sym_simple_identifier, + STATE(3145), 1, + sym__type, + STATE(4740), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6540), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2972), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2993), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [121517] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(4849), 1, + aux_sym_simple_identifier_token1, + ACTIONS(4855), 1, + anon_sym_LBRACK, + ACTIONS(10913), 1, + anon_sym_LPAREN, + ACTIONS(10915), 1, + anon_sym_some, + STATE(1141), 1, + sym_tuple_type, + STATE(1216), 1, + sym__simple_user_type, + STATE(1229), 1, + sym_simple_identifier, + STATE(1290), 1, + sym__type, + STATE(4687), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(4851), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(1227), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(1219), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [121576] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(4849), 1, + aux_sym_simple_identifier_token1, + ACTIONS(4855), 1, + anon_sym_LBRACK, + ACTIONS(10913), 1, + anon_sym_LPAREN, + ACTIONS(10915), 1, + anon_sym_some, + STATE(1141), 1, + sym_tuple_type, + STATE(1216), 1, + sym__simple_user_type, + STATE(1229), 1, + sym_simple_identifier, + STATE(1252), 1, + sym__type, + STATE(4687), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(4851), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(1227), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(1219), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [121635] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6518), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6522), 1, + anon_sym_LBRACK, + ACTIONS(10917), 1, + anon_sym_LPAREN, + ACTIONS(10919), 1, + anon_sym_some, + STATE(2470), 1, + sym_tuple_type, + STATE(2860), 1, + sym__simple_user_type, + STATE(2987), 1, + sym_simple_identifier, + STATE(3113), 1, + sym__type, + STATE(4706), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6520), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2990), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2979), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [121694] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5274), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [121753] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(5526), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [121812] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6530), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6534), 1, + anon_sym_LBRACK, + ACTIONS(10905), 1, + anon_sym_LPAREN, + ACTIONS(10907), 1, + anon_sym_some, + STATE(2514), 1, + sym_tuple_type, + STATE(2857), 1, + sym__simple_user_type, + STATE(3016), 1, + sym_simple_identifier, + STATE(3091), 1, + sym__type, + STATE(4723), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6532), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2988), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2996), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [121871] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10921), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10925), 1, + anon_sym_LPAREN, + ACTIONS(10927), 1, + anon_sym_LBRACK, + ACTIONS(10929), 1, + anon_sym_some, + STATE(3010), 1, + sym_tuple_type, + STATE(3475), 1, + sym__simple_user_type, + STATE(3476), 1, + sym_simple_identifier, + STATE(4031), 1, + sym__type, + STATE(4676), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10923), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3497), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3509), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [121930] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10043), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [121989] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10851), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10855), 1, + anon_sym_LPAREN, + ACTIONS(10857), 1, + anon_sym_LBRACK, + ACTIONS(10859), 1, + anon_sym_some, + STATE(2259), 1, + sym_tuple_type, + STATE(2283), 1, + sym_simple_identifier, + STATE(2285), 1, + sym__simple_user_type, + STATE(2415), 1, + sym__type, + STATE(4686), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10853), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2315), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2324), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [122048] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10698), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10704), 1, + anon_sym_LPAREN, + ACTIONS(10706), 1, + anon_sym_LBRACK, + ACTIONS(10708), 1, + anon_sym_some, + STATE(2272), 1, + sym_tuple_type, + STATE(2308), 1, + sym__simple_user_type, + STATE(2311), 1, + sym_simple_identifier, + STATE(2472), 1, + sym__type, + STATE(4692), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10700), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2366), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2411), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [122107] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10739), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_LBRACK, + ACTIONS(10743), 1, + anon_sym_some, + STATE(4682), 1, + sym_type_modifiers, + STATE(4755), 1, + sym_tuple_type, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + STATE(9792), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10737), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5380), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5540), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [122166] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(9098), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [122225] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7823), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [122284] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10813), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10817), 1, + anon_sym_LPAREN, + ACTIONS(10819), 1, + anon_sym_LBRACK, + ACTIONS(10821), 1, + anon_sym_some, + STATE(4698), 1, + sym_type_modifiers, + STATE(4712), 1, + sym_tuple_type, + STATE(4960), 1, + sym_simple_identifier, + STATE(4962), 1, + sym__simple_user_type, + STATE(5388), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10815), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5101), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5349), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [122343] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10042), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [122402] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(9113), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [122461] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(6335), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [122520] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7811), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [122579] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10041), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [122638] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(5612), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [122697] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6518), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6522), 1, + anon_sym_LBRACK, + ACTIONS(10917), 1, + anon_sym_LPAREN, + ACTIONS(10919), 1, + anon_sym_some, + STATE(2470), 1, + sym_tuple_type, + STATE(2860), 1, + sym__simple_user_type, + STATE(2987), 1, + sym_simple_identifier, + STATE(3034), 1, + sym__type, + STATE(4706), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6520), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2990), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2979), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [122756] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10921), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10925), 1, + anon_sym_LPAREN, + ACTIONS(10927), 1, + anon_sym_LBRACK, + ACTIONS(10929), 1, + anon_sym_some, + STATE(3010), 1, + sym_tuple_type, + STATE(3475), 1, + sym__simple_user_type, + STATE(3476), 1, + sym_simple_identifier, + STATE(3979), 1, + sym__type, + STATE(4676), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10923), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3497), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3509), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [122815] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10841), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10845), 1, + anon_sym_LPAREN, + ACTIONS(10847), 1, + anon_sym_LBRACK, + ACTIONS(10849), 1, + anon_sym_some, + STATE(4736), 1, + sym_type_modifiers, + STATE(4879), 1, + sym_tuple_type, + STATE(5591), 1, + sym__simple_user_type, + STATE(5597), 1, + sym_simple_identifier, + STATE(8725), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10843), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(6132), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6585), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [122874] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10825), 1, + anon_sym_LPAREN, + ACTIONS(10827), 1, + anon_sym_LBRACK, + ACTIONS(10829), 1, + anon_sym_some, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(2295), 1, + sym_tuple_type, + STATE(2937), 1, + sym__type, + STATE(4694), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2638), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2677), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [122933] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10891), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10895), 1, + anon_sym_LPAREN, + ACTIONS(10897), 1, + anon_sym_LBRACK, + ACTIONS(10899), 1, + anon_sym_some, + STATE(4703), 1, + sym_type_modifiers, + STATE(4804), 1, + sym_tuple_type, + STATE(5201), 1, + sym__simple_user_type, + STATE(5202), 1, + sym_simple_identifier, + STATE(5996), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10893), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5603), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5929), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [122992] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6530), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6534), 1, + anon_sym_LBRACK, + ACTIONS(10905), 1, + anon_sym_LPAREN, + ACTIONS(10907), 1, + anon_sym_some, + STATE(2514), 1, + sym_tuple_type, + STATE(2857), 1, + sym__simple_user_type, + STATE(3016), 1, + sym_simple_identifier, + STATE(3092), 1, + sym__type, + STATE(4723), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6532), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2988), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2996), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [123051] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10793), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10797), 1, + anon_sym_LPAREN, + ACTIONS(10799), 1, + anon_sym_LBRACK, + ACTIONS(10801), 1, + anon_sym_some, + STATE(4710), 1, + sym_tuple_type, + STATE(4727), 1, + sym_type_modifiers, + STATE(4977), 1, + sym_simple_identifier, + STATE(4979), 1, + sym__simple_user_type, + STATE(6260), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10795), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5156), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5254), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [123110] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10851), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10855), 1, + anon_sym_LPAREN, + ACTIONS(10857), 1, + anon_sym_LBRACK, + ACTIONS(10859), 1, + anon_sym_some, + STATE(2259), 1, + sym_tuple_type, + STATE(2283), 1, + sym_simple_identifier, + STATE(2285), 1, + sym__simple_user_type, + STATE(2355), 1, + sym__type, + STATE(4686), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10853), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2315), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2324), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [123169] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10209), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [123228] = 4, + ACTIONS(6044), 1, + anon_sym_unowned, + ACTIONS(10931), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6046), 22, + 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, + sym_property_behavior_modifier, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [123265] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6518), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6522), 1, + anon_sym_LBRACK, + ACTIONS(10917), 1, + anon_sym_LPAREN, + ACTIONS(10919), 1, + anon_sym_some, + STATE(2470), 1, + sym_tuple_type, + STATE(2860), 1, + sym__simple_user_type, + STATE(2987), 1, + sym_simple_identifier, + STATE(3110), 1, + sym__type, + STATE(4706), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6520), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2990), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2979), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [123324] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(6063), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [123383] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10841), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10845), 1, + anon_sym_LPAREN, + ACTIONS(10847), 1, + anon_sym_LBRACK, + ACTIONS(10849), 1, + anon_sym_some, + STATE(4736), 1, + sym_type_modifiers, + STATE(4879), 1, + sym_tuple_type, + STATE(5591), 1, + sym__simple_user_type, + STATE(5597), 1, + sym_simple_identifier, + STATE(8694), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10843), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(6132), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6585), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [123442] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6063), 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(6061), 17, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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, + sym_property_behavior_modifier, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned, + [123477] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7571), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [123536] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10698), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10704), 1, + anon_sym_LPAREN, + ACTIONS(10706), 1, + anon_sym_LBRACK, + ACTIONS(10708), 1, + anon_sym_some, + STATE(2272), 1, + sym_tuple_type, + STATE(2308), 1, + sym__simple_user_type, + STATE(2311), 1, + sym_simple_identifier, + STATE(2658), 1, + sym__type, + STATE(4692), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10700), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2366), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2411), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [123595] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(10745), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10749), 1, + anon_sym_some, + STATE(4716), 1, + sym_type_modifiers, + STATE(4882), 1, + sym_tuple_type, + STATE(5332), 1, + sym__type, + STATE(5572), 1, + sym__simple_user_type, + STATE(5573), 1, + sym_simple_identifier, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6875), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [123654] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(9125), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [123713] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8695), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [123772] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7720), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [123831] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10040), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [123890] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10698), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10704), 1, + anon_sym_LPAREN, + ACTIONS(10706), 1, + anon_sym_LBRACK, + ACTIONS(10708), 1, + anon_sym_some, + STATE(2272), 1, + sym_tuple_type, + STATE(2308), 1, + sym__simple_user_type, + STATE(2311), 1, + sym_simple_identifier, + STATE(2731), 1, + sym__type, + STATE(4692), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10700), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2366), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2411), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [123949] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8381), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [124008] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(6539), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [124067] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7797), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [124126] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10881), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10885), 1, + anon_sym_LPAREN, + ACTIONS(10887), 1, + anon_sym_LBRACK, + ACTIONS(10889), 1, + anon_sym_some, + STATE(4671), 1, + sym_tuple_type, + STATE(4677), 1, + sym_type_modifiers, + STATE(4843), 1, + sym__simple_user_type, + STATE(4857), 1, + sym_simple_identifier, + STATE(5255), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10883), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(4978), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5019), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [124185] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7469), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [124244] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7905), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [124303] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10851), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10855), 1, + anon_sym_LPAREN, + ACTIONS(10857), 1, + anon_sym_LBRACK, + ACTIONS(10859), 1, + anon_sym_some, + STATE(2259), 1, + sym_tuple_type, + STATE(2283), 1, + sym_simple_identifier, + STATE(2285), 1, + sym__simple_user_type, + STATE(2354), 1, + sym__type, + STATE(4686), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10853), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2315), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2324), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [124362] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10396), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [124421] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10841), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10845), 1, + anon_sym_LPAREN, + ACTIONS(10847), 1, + anon_sym_LBRACK, + ACTIONS(10849), 1, + anon_sym_some, + STATE(4736), 1, + sym_type_modifiers, + STATE(4879), 1, + sym_tuple_type, + STATE(5591), 1, + sym__simple_user_type, + STATE(5597), 1, + sym_simple_identifier, + STATE(8712), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10843), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(6132), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6585), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [124480] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6518), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6522), 1, + anon_sym_LBRACK, + ACTIONS(10917), 1, + anon_sym_LPAREN, + ACTIONS(10919), 1, + anon_sym_some, + STATE(2470), 1, + sym_tuple_type, + STATE(2860), 1, + sym__simple_user_type, + STATE(2987), 1, + sym_simple_identifier, + STATE(3247), 1, + sym__type, + STATE(4706), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6520), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2990), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2979), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [124539] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6518), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6522), 1, + anon_sym_LBRACK, + ACTIONS(10917), 1, + anon_sym_LPAREN, + ACTIONS(10919), 1, + anon_sym_some, + STATE(2470), 1, + sym_tuple_type, + STATE(2860), 1, + sym__simple_user_type, + STATE(2987), 1, + sym_simple_identifier, + STATE(3248), 1, + sym__type, + STATE(4706), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6520), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2990), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2979), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [124598] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10037), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [124657] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10739), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_LBRACK, + ACTIONS(10743), 1, + anon_sym_some, + STATE(4682), 1, + sym_type_modifiers, + STATE(4755), 1, + sym_tuple_type, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + STATE(8634), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10737), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5380), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5540), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [124716] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10891), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10895), 1, + anon_sym_LPAREN, + ACTIONS(10897), 1, + anon_sym_LBRACK, + ACTIONS(10899), 1, + anon_sym_some, + STATE(4703), 1, + sym_type_modifiers, + STATE(4804), 1, + sym_tuple_type, + STATE(5201), 1, + sym__simple_user_type, + STATE(5202), 1, + sym_simple_identifier, + STATE(6884), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10893), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5603), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5929), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [124775] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10841), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10845), 1, + anon_sym_LPAREN, + ACTIONS(10847), 1, + anon_sym_LBRACK, + ACTIONS(10849), 1, + anon_sym_some, + STATE(4736), 1, + sym_type_modifiers, + STATE(4879), 1, + sym_tuple_type, + STATE(5591), 1, + sym__simple_user_type, + STATE(5597), 1, + sym_simple_identifier, + STATE(8708), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10843), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(6132), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6585), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [124834] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7501), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [124893] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(5312), 1, + aux_sym_simple_identifier_token1, + ACTIONS(5316), 1, + anon_sym_LBRACK, + ACTIONS(10933), 1, + anon_sym_LPAREN, + ACTIONS(10935), 1, + anon_sym_some, + STATE(1302), 1, + sym_tuple_type, + STATE(1396), 1, + sym__simple_user_type, + STATE(1402), 1, + sym_simple_identifier, + STATE(1431), 1, + sym__type, + STATE(4717), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5314), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(1404), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(1403), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [124952] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(5312), 1, + aux_sym_simple_identifier_token1, + ACTIONS(5316), 1, + anon_sym_LBRACK, + ACTIONS(10933), 1, + anon_sym_LPAREN, + ACTIONS(10935), 1, + anon_sym_some, + STATE(1302), 1, + sym_tuple_type, + STATE(1396), 1, + sym__simple_user_type, + STATE(1402), 1, + sym_simple_identifier, + STATE(1433), 1, + sym__type, + STATE(4717), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5314), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(1404), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(1403), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [125011] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10861), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10865), 1, + anon_sym_LPAREN, + ACTIONS(10867), 1, + anon_sym_LBRACK, + ACTIONS(10869), 1, + anon_sym_some, + STATE(4672), 1, + sym_tuple_type, + STATE(4696), 1, + sym_type_modifiers, + STATE(4838), 1, + sym_simple_identifier, + STATE(4847), 1, + sym__simple_user_type, + STATE(5178), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10863), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(4944), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(4989), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [125070] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(9038), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [125129] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7784), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [125188] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7774), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [125247] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(9297), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [125306] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8243), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [125365] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7763), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [125424] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10739), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_LBRACK, + ACTIONS(10743), 1, + anon_sym_some, + STATE(4682), 1, + sym_type_modifiers, + STATE(4755), 1, + sym_tuple_type, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + STATE(5713), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10737), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5380), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5540), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [125483] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7758), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [125542] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(4849), 1, + aux_sym_simple_identifier_token1, + ACTIONS(4855), 1, + anon_sym_LBRACK, + ACTIONS(10913), 1, + anon_sym_LPAREN, + ACTIONS(10915), 1, + anon_sym_some, + STATE(1141), 1, + sym_tuple_type, + STATE(1216), 1, + sym__simple_user_type, + STATE(1229), 1, + sym_simple_identifier, + STATE(1237), 1, + sym__type, + STATE(4687), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(4851), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(1227), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(1219), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [125601] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10783), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10787), 1, + anon_sym_LPAREN, + ACTIONS(10789), 1, + anon_sym_LBRACK, + ACTIONS(10791), 1, + anon_sym_some, + STATE(4705), 1, + sym_type_modifiers, + STATE(4748), 1, + sym_tuple_type, + STATE(4998), 1, + sym_simple_identifier, + STATE(5000), 1, + sym__simple_user_type, + STATE(6388), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10785), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5233), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5435), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [125660] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7753), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [125719] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8667), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [125778] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10861), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10865), 1, + anon_sym_LPAREN, + ACTIONS(10867), 1, + anon_sym_LBRACK, + ACTIONS(10869), 1, + anon_sym_some, + STATE(4672), 1, + sym_tuple_type, + STATE(4696), 1, + sym_type_modifiers, + STATE(4838), 1, + sym_simple_identifier, + STATE(4847), 1, + sym__simple_user_type, + STATE(5173), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10863), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(4944), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(4989), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [125837] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7749), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [125896] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8148), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [125955] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7743), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [126014] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10891), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10895), 1, + anon_sym_LPAREN, + ACTIONS(10897), 1, + anon_sym_LBRACK, + ACTIONS(10899), 1, + anon_sym_some, + STATE(4703), 1, + sym_type_modifiers, + STATE(4804), 1, + sym_tuple_type, + STATE(5201), 1, + sym__simple_user_type, + STATE(5202), 1, + sym_simple_identifier, + STATE(6820), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10893), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5603), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5929), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [126073] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10861), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10865), 1, + anon_sym_LPAREN, + ACTIONS(10867), 1, + anon_sym_LBRACK, + ACTIONS(10869), 1, + anon_sym_some, + STATE(4672), 1, + sym_tuple_type, + STATE(4696), 1, + sym_type_modifiers, + STATE(4838), 1, + sym_simple_identifier, + STATE(4847), 1, + sym__simple_user_type, + STATE(5172), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10863), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(4944), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(4989), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [126132] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10739), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_LBRACK, + ACTIONS(10743), 1, + anon_sym_some, + STATE(4682), 1, + sym_type_modifiers, + STATE(4755), 1, + sym_tuple_type, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + STATE(8866), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10737), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5380), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5540), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [126191] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7727), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [126250] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7716), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [126309] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8847), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [126368] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(6101), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [126427] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7703), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [126486] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10698), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10704), 1, + anon_sym_LPAREN, + ACTIONS(10706), 1, + anon_sym_LBRACK, + ACTIONS(10708), 1, + anon_sym_some, + STATE(2272), 1, + sym_tuple_type, + STATE(2308), 1, + sym__simple_user_type, + STATE(2311), 1, + sym_simple_identifier, + STATE(4692), 1, + sym_type_modifiers, + STATE(7264), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10700), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2366), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2411), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [126545] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7694), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [126604] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7691), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [126663] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7580), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [126722] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(4849), 1, + aux_sym_simple_identifier_token1, + ACTIONS(4855), 1, + anon_sym_LBRACK, + ACTIONS(10913), 1, + anon_sym_LPAREN, + ACTIONS(10915), 1, + anon_sym_some, + STATE(1141), 1, + sym_tuple_type, + STATE(1216), 1, + sym__simple_user_type, + STATE(1229), 1, + sym_simple_identifier, + STATE(1243), 1, + sym__type, + STATE(4687), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(4851), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(1227), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(1219), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [126781] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6538), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6542), 1, + anon_sym_LBRACK, + ACTIONS(10909), 1, + anon_sym_LPAREN, + ACTIONS(10911), 1, + anon_sym_some, + STATE(2495), 1, + sym_tuple_type, + STATE(2878), 1, + sym__simple_user_type, + STATE(2984), 1, + sym_simple_identifier, + STATE(3148), 1, + sym__type, + STATE(4740), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6540), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2972), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2993), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [126840] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10739), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_LBRACK, + ACTIONS(10743), 1, + anon_sym_some, + STATE(4682), 1, + sym_type_modifiers, + STATE(4755), 1, + sym_tuple_type, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + STATE(9581), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10737), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5380), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5540), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [126899] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7686), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [126958] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7681), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [127017] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10067), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [127076] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(10745), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10749), 1, + anon_sym_some, + STATE(4716), 1, + sym_type_modifiers, + STATE(4882), 1, + sym_tuple_type, + STATE(5274), 1, + sym__type, + STATE(5572), 1, + sym__simple_user_type, + STATE(5573), 1, + sym_simple_identifier, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6875), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [127135] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8610), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [127194] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4678), 1, + sym_type_modifiers, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(6307), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5733), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [127253] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10763), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10767), 1, + anon_sym_LPAREN, + ACTIONS(10769), 1, + anon_sym_LBRACK, + ACTIONS(10771), 1, + anon_sym_some, + STATE(2732), 1, + sym_tuple_type, + STATE(3238), 1, + sym_simple_identifier, + STATE(3242), 1, + sym__simple_user_type, + STATE(3481), 1, + sym__type, + STATE(4729), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10765), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3382), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3443), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [127312] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10841), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10845), 1, + anon_sym_LPAREN, + ACTIONS(10847), 1, + anon_sym_LBRACK, + ACTIONS(10849), 1, + anon_sym_some, + STATE(4736), 1, + sym_type_modifiers, + STATE(4879), 1, + sym_tuple_type, + STATE(5591), 1, + sym__simple_user_type, + STATE(5597), 1, + sym_simple_identifier, + STATE(8728), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10843), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(6132), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6585), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [127371] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10851), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10855), 1, + anon_sym_LPAREN, + ACTIONS(10857), 1, + anon_sym_LBRACK, + ACTIONS(10859), 1, + anon_sym_some, + STATE(2259), 1, + sym_tuple_type, + STATE(2283), 1, + sym_simple_identifier, + STATE(2285), 1, + sym__simple_user_type, + STATE(2344), 1, + sym__type, + STATE(4686), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10853), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2315), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2324), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [127430] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10330), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [127489] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10813), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10817), 1, + anon_sym_LPAREN, + ACTIONS(10819), 1, + anon_sym_LBRACK, + ACTIONS(10821), 1, + anon_sym_some, + STATE(4698), 1, + sym_type_modifiers, + STATE(4712), 1, + sym_tuple_type, + STATE(4960), 1, + sym_simple_identifier, + STATE(4962), 1, + sym__simple_user_type, + STATE(6166), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10815), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5101), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5349), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [127548] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8489), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [127607] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10891), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10895), 1, + anon_sym_LPAREN, + ACTIONS(10897), 1, + anon_sym_LBRACK, + ACTIONS(10899), 1, + anon_sym_some, + STATE(4703), 1, + sym_type_modifiers, + STATE(4804), 1, + sym_tuple_type, + STATE(5201), 1, + sym__simple_user_type, + STATE(5202), 1, + sym_simple_identifier, + STATE(6572), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10893), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5603), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5929), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [127666] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(5332), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [127725] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10187), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [127784] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10783), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10787), 1, + anon_sym_LPAREN, + ACTIONS(10789), 1, + anon_sym_LBRACK, + ACTIONS(10791), 1, + anon_sym_some, + STATE(4705), 1, + sym_type_modifiers, + STATE(4748), 1, + sym_tuple_type, + STATE(4998), 1, + sym_simple_identifier, + STATE(5000), 1, + sym__simple_user_type, + STATE(5623), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10785), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5233), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5435), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [127843] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10763), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10767), 1, + anon_sym_LPAREN, + ACTIONS(10769), 1, + anon_sym_LBRACK, + ACTIONS(10771), 1, + anon_sym_some, + STATE(2732), 1, + sym_tuple_type, + STATE(3238), 1, + sym_simple_identifier, + STATE(3242), 1, + sym__simple_user_type, + STATE(3482), 1, + sym__type, + STATE(4729), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10765), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3382), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3443), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [127902] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(9506), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [127961] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7709), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [128020] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(4849), 1, + aux_sym_simple_identifier_token1, + ACTIONS(4855), 1, + anon_sym_LBRACK, + ACTIONS(10913), 1, + anon_sym_LPAREN, + ACTIONS(10915), 1, + anon_sym_some, + STATE(1141), 1, + sym_tuple_type, + STATE(1216), 1, + sym__simple_user_type, + STATE(1229), 1, + sym_simple_identifier, + STATE(1238), 1, + sym__type, + STATE(4687), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(4851), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(1227), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(1219), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [128079] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10841), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10845), 1, + anon_sym_LPAREN, + ACTIONS(10847), 1, + anon_sym_LBRACK, + ACTIONS(10849), 1, + anon_sym_some, + STATE(4736), 1, + sym_type_modifiers, + STATE(4879), 1, + sym_tuple_type, + STATE(5591), 1, + sym__simple_user_type, + STATE(5597), 1, + sym_simple_identifier, + STATE(8705), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10843), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(6132), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6585), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [128138] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6538), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6542), 1, + anon_sym_LBRACK, + ACTIONS(10909), 1, + anon_sym_LPAREN, + ACTIONS(10911), 1, + anon_sym_some, + STATE(2495), 1, + sym_tuple_type, + STATE(2878), 1, + sym__simple_user_type, + STATE(2984), 1, + sym_simple_identifier, + STATE(3054), 1, + sym__type, + STATE(4740), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6540), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2972), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2993), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [128197] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6538), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6542), 1, + anon_sym_LBRACK, + ACTIONS(10909), 1, + anon_sym_LPAREN, + ACTIONS(10911), 1, + anon_sym_some, + STATE(2495), 1, + sym_tuple_type, + STATE(2878), 1, + sym__simple_user_type, + STATE(2984), 1, + sym_simple_identifier, + STATE(3055), 1, + sym__type, + STATE(4740), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6540), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2972), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2993), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [128256] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10793), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10797), 1, + anon_sym_LPAREN, + ACTIONS(10799), 1, + anon_sym_LBRACK, + ACTIONS(10801), 1, + anon_sym_some, + STATE(4710), 1, + sym_tuple_type, + STATE(4727), 1, + sym_type_modifiers, + STATE(4977), 1, + sym_simple_identifier, + STATE(4979), 1, + sym__simple_user_type, + STATE(6079), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10795), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5156), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5254), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [128315] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6636), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6640), 1, + anon_sym_LBRACK, + ACTIONS(10901), 1, + anon_sym_LPAREN, + ACTIONS(10903), 1, + anon_sym_some, + STATE(2525), 1, + sym_tuple_type, + STATE(2960), 1, + sym__simple_user_type, + STATE(3071), 1, + sym_simple_identifier, + STATE(3117), 1, + sym__type, + STATE(4708), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6638), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3046), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3090), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [128374] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8844), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [128433] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6538), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6542), 1, + anon_sym_LBRACK, + ACTIONS(10909), 1, + anon_sym_LPAREN, + ACTIONS(10911), 1, + anon_sym_some, + STATE(2495), 1, + sym_tuple_type, + STATE(2878), 1, + sym__simple_user_type, + STATE(2984), 1, + sym_simple_identifier, + STATE(3058), 1, + sym__type, + STATE(4740), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6540), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2972), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2993), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [128492] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10739), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_LBRACK, + ACTIONS(10743), 1, + anon_sym_some, + STATE(4682), 1, + sym_type_modifiers, + STATE(4755), 1, + sym_tuple_type, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + STATE(7137), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10737), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5380), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5540), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [128551] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(10622), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10626), 1, + anon_sym_LBRACK, + ACTIONS(10628), 1, + anon_sym_some, + STATE(4721), 1, + sym_type_modifiers, + STATE(4849), 1, + sym_tuple_type, + STATE(4906), 1, + sym__simple_user_type, + STATE(4907), 1, + sym_simple_identifier, + STATE(5447), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10624), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5147), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5278), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [128610] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10783), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10787), 1, + anon_sym_LPAREN, + ACTIONS(10789), 1, + anon_sym_LBRACK, + ACTIONS(10791), 1, + anon_sym_some, + STATE(4705), 1, + sym_type_modifiers, + STATE(4748), 1, + sym_tuple_type, + STATE(4998), 1, + sym_simple_identifier, + STATE(5000), 1, + sym__simple_user_type, + STATE(5624), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10785), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5233), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5435), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [128669] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10937), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10941), 1, + anon_sym_LPAREN, + ACTIONS(10943), 1, + anon_sym_LBRACK, + ACTIONS(10945), 1, + anon_sym_some, + STATE(2527), 1, + sym_tuple_type, + STATE(2924), 1, + sym_simple_identifier, + STATE(2925), 1, + sym__simple_user_type, + STATE(3384), 1, + sym__type, + STATE(4681), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10939), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3070), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3197), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [128728] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10372), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [128787] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10773), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10777), 1, + anon_sym_LPAREN, + ACTIONS(10779), 1, + anon_sym_LBRACK, + ACTIONS(10781), 1, + anon_sym_some, + STATE(4730), 1, + sym_type_modifiers, + STATE(4747), 1, + sym_tuple_type, + STATE(5008), 1, + sym__simple_user_type, + STATE(5009), 1, + sym_simple_identifier, + STATE(5582), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10775), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5303), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5502), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [128846] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10783), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10787), 1, + anon_sym_LPAREN, + ACTIONS(10789), 1, + anon_sym_LBRACK, + ACTIONS(10791), 1, + anon_sym_some, + STATE(4705), 1, + sym_type_modifiers, + STATE(4748), 1, + sym_tuple_type, + STATE(4998), 1, + sym_simple_identifier, + STATE(5000), 1, + sym__simple_user_type, + STATE(5626), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10785), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5233), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5435), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [128905] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(10745), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10749), 1, + anon_sym_some, + STATE(4716), 1, + sym_type_modifiers, + STATE(4882), 1, + sym_tuple_type, + STATE(5210), 1, + sym__type, + STATE(5572), 1, + sym__simple_user_type, + STATE(5573), 1, + sym_simple_identifier, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6875), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [128964] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10773), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10777), 1, + anon_sym_LPAREN, + ACTIONS(10779), 1, + anon_sym_LBRACK, + ACTIONS(10781), 1, + anon_sym_some, + STATE(4730), 1, + sym_type_modifiers, + STATE(4747), 1, + sym_tuple_type, + STATE(5008), 1, + sym__simple_user_type, + STATE(5009), 1, + sym_simple_identifier, + STATE(5584), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10775), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5303), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5502), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [129023] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10773), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10777), 1, + anon_sym_LPAREN, + ACTIONS(10779), 1, + anon_sym_LBRACK, + ACTIONS(10781), 1, + anon_sym_some, + STATE(4730), 1, + sym_type_modifiers, + STATE(4747), 1, + sym_tuple_type, + STATE(5008), 1, + sym__simple_user_type, + STATE(5009), 1, + sym_simple_identifier, + STATE(5587), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10775), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5303), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5502), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [129082] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10739), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_LBRACK, + ACTIONS(10743), 1, + anon_sym_some, + STATE(4682), 1, + sym_type_modifiers, + STATE(4755), 1, + sym_tuple_type, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + STATE(7145), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10737), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5380), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5540), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [129141] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10763), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10767), 1, + anon_sym_LPAREN, + ACTIONS(10769), 1, + anon_sym_LBRACK, + ACTIONS(10771), 1, + anon_sym_some, + STATE(2732), 1, + sym_tuple_type, + STATE(3238), 1, + sym_simple_identifier, + STATE(3242), 1, + sym__simple_user_type, + STATE(3454), 1, + sym__type, + STATE(4729), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10765), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3382), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3443), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [129200] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8820), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [129259] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(6182), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [129318] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(5987), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [129377] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10739), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_LBRACK, + ACTIONS(10743), 1, + anon_sym_some, + STATE(4682), 1, + sym_type_modifiers, + STATE(4755), 1, + sym_tuple_type, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + STATE(9284), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10737), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5380), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5540), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [129436] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10841), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10845), 1, + anon_sym_LPAREN, + ACTIONS(10847), 1, + anon_sym_LBRACK, + ACTIONS(10849), 1, + anon_sym_some, + STATE(4736), 1, + sym_type_modifiers, + STATE(4879), 1, + sym_tuple_type, + STATE(5591), 1, + sym__simple_user_type, + STATE(5597), 1, + sym_simple_identifier, + STATE(8739), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10843), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(6132), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6585), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [129495] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8793), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [129554] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10891), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10895), 1, + anon_sym_LPAREN, + ACTIONS(10897), 1, + anon_sym_LBRACK, + ACTIONS(10899), 1, + anon_sym_some, + STATE(4703), 1, + sym_type_modifiers, + STATE(4804), 1, + sym_tuple_type, + STATE(5201), 1, + sym__simple_user_type, + STATE(5202), 1, + sym_simple_identifier, + STATE(6821), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10893), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5603), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5929), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [129613] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6530), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6534), 1, + anon_sym_LBRACK, + ACTIONS(10905), 1, + anon_sym_LPAREN, + ACTIONS(10907), 1, + anon_sym_some, + STATE(2514), 1, + sym_tuple_type, + STATE(2857), 1, + sym__simple_user_type, + STATE(3016), 1, + sym_simple_identifier, + STATE(3111), 1, + sym__type, + STATE(4723), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6532), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2988), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2996), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [129672] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6636), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6640), 1, + anon_sym_LBRACK, + ACTIONS(10901), 1, + anon_sym_LPAREN, + ACTIONS(10903), 1, + anon_sym_some, + STATE(2525), 1, + sym_tuple_type, + STATE(2960), 1, + sym__simple_user_type, + STATE(3071), 1, + sym_simple_identifier, + STATE(3135), 1, + sym__type, + STATE(4708), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6638), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3046), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3090), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [129731] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8033), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [129790] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10841), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10845), 1, + anon_sym_LPAREN, + ACTIONS(10847), 1, + anon_sym_LBRACK, + ACTIONS(10849), 1, + anon_sym_some, + STATE(4736), 1, + sym_type_modifiers, + STATE(4879), 1, + sym_tuple_type, + STATE(5591), 1, + sym__simple_user_type, + STATE(5597), 1, + sym_simple_identifier, + STATE(7205), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10843), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(6132), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6585), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [129849] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10149), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [129908] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10841), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10845), 1, + anon_sym_LPAREN, + ACTIONS(10847), 1, + anon_sym_LBRACK, + ACTIONS(10849), 1, + anon_sym_some, + STATE(4736), 1, + sym_type_modifiers, + STATE(4879), 1, + sym_tuple_type, + STATE(5591), 1, + sym__simple_user_type, + STATE(5597), 1, + sym_simple_identifier, + STATE(7050), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10843), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(6132), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6585), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [129967] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8164), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [130026] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8067), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [130085] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10841), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10845), 1, + anon_sym_LPAREN, + ACTIONS(10847), 1, + anon_sym_LBRACK, + ACTIONS(10849), 1, + anon_sym_some, + STATE(4736), 1, + sym_type_modifiers, + STATE(4879), 1, + sym_tuple_type, + STATE(5591), 1, + sym__simple_user_type, + STATE(5597), 1, + sym_simple_identifier, + STATE(7196), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10843), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(6132), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6585), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [130144] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(6219), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [130203] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10803), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10807), 1, + anon_sym_LPAREN, + ACTIONS(10809), 1, + anon_sym_LBRACK, + ACTIONS(10811), 1, + anon_sym_some, + STATE(2618), 1, + sym_tuple_type, + STATE(3059), 1, + sym__simple_user_type, + STATE(3101), 1, + sym_simple_identifier, + STATE(3447), 1, + sym__type, + STATE(4725), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10805), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3361), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [130262] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10739), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_LBRACK, + ACTIONS(10743), 1, + anon_sym_some, + STATE(4682), 1, + sym_type_modifiers, + STATE(4755), 1, + sym_tuple_type, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + STATE(8841), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10737), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5380), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5540), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [130321] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10135), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [130380] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10803), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10807), 1, + anon_sym_LPAREN, + ACTIONS(10809), 1, + anon_sym_LBRACK, + ACTIONS(10811), 1, + anon_sym_some, + STATE(2618), 1, + sym_tuple_type, + STATE(3059), 1, + sym__simple_user_type, + STATE(3101), 1, + sym_simple_identifier, + STATE(3444), 1, + sym__type, + STATE(4725), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10805), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3361), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [130439] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10881), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10885), 1, + anon_sym_LPAREN, + ACTIONS(10887), 1, + anon_sym_LBRACK, + ACTIONS(10889), 1, + anon_sym_some, + STATE(4671), 1, + sym_tuple_type, + STATE(4677), 1, + sym_type_modifiers, + STATE(4843), 1, + sym__simple_user_type, + STATE(4857), 1, + sym_simple_identifier, + STATE(5338), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10883), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(4978), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5019), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [130498] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10803), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10807), 1, + anon_sym_LPAREN, + ACTIONS(10809), 1, + anon_sym_LBRACK, + ACTIONS(10811), 1, + anon_sym_some, + STATE(2618), 1, + sym_tuple_type, + STATE(3059), 1, + sym__simple_user_type, + STATE(3101), 1, + sym_simple_identifier, + STATE(3450), 1, + sym__type, + STATE(4725), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10805), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3361), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [130557] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(5638), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [130616] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6067), 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(6065), 17, + aux_sym_simple_identifier_token1, + anon_sym_async, + 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, + sym_property_behavior_modifier, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned, + [130651] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(6140), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [130710] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10921), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10925), 1, + anon_sym_LPAREN, + ACTIONS(10927), 1, + anon_sym_LBRACK, + ACTIONS(10929), 1, + anon_sym_some, + STATE(3010), 1, + sym_tuple_type, + STATE(3475), 1, + sym__simple_user_type, + STATE(3476), 1, + sym_simple_identifier, + STATE(3547), 1, + sym__type, + STATE(4676), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10923), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3497), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3509), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [130769] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10921), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10925), 1, + anon_sym_LPAREN, + ACTIONS(10927), 1, + anon_sym_LBRACK, + ACTIONS(10929), 1, + anon_sym_some, + STATE(3010), 1, + sym_tuple_type, + STATE(3475), 1, + sym__simple_user_type, + STATE(3476), 1, + sym_simple_identifier, + STATE(3519), 1, + sym__type, + STATE(4676), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10923), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3497), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3509), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [130828] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10921), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10925), 1, + anon_sym_LPAREN, + ACTIONS(10927), 1, + anon_sym_LBRACK, + ACTIONS(10929), 1, + anon_sym_some, + STATE(3010), 1, + sym_tuple_type, + STATE(3475), 1, + sym__simple_user_type, + STATE(3476), 1, + sym_simple_identifier, + STATE(3552), 1, + sym__type, + STATE(4676), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10923), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3497), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3509), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [130887] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(6783), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [130946] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(6283), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [131005] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10739), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_LBRACK, + ACTIONS(10743), 1, + anon_sym_some, + STATE(4682), 1, + sym_type_modifiers, + STATE(4755), 1, + sym_tuple_type, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + STATE(5709), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10737), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5380), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5540), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [131064] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10698), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10704), 1, + anon_sym_LPAREN, + ACTIONS(10706), 1, + anon_sym_LBRACK, + ACTIONS(10708), 1, + anon_sym_some, + STATE(2272), 1, + sym_tuple_type, + STATE(2308), 1, + sym__simple_user_type, + STATE(2311), 1, + sym_simple_identifier, + STATE(4692), 1, + sym_type_modifiers, + STATE(6357), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10700), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2366), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2411), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [131123] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10891), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10895), 1, + anon_sym_LPAREN, + ACTIONS(10897), 1, + anon_sym_LBRACK, + ACTIONS(10899), 1, + anon_sym_some, + STATE(4703), 1, + sym_type_modifiers, + STATE(4804), 1, + sym_tuple_type, + STATE(5201), 1, + sym__simple_user_type, + STATE(5202), 1, + sym_simple_identifier, + STATE(6009), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10893), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5603), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5929), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [131182] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(5312), 1, + aux_sym_simple_identifier_token1, + ACTIONS(5316), 1, + anon_sym_LBRACK, + ACTIONS(10933), 1, + anon_sym_LPAREN, + ACTIONS(10935), 1, + anon_sym_some, + STATE(1302), 1, + sym_tuple_type, + STATE(1396), 1, + sym__simple_user_type, + STATE(1402), 1, + sym_simple_identifier, + STATE(1420), 1, + sym__type, + STATE(4717), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5314), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(1404), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(1403), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [131241] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10831), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10835), 1, + anon_sym_LPAREN, + ACTIONS(10837), 1, + anon_sym_LBRACK, + ACTIONS(10839), 1, + anon_sym_some, + STATE(4688), 1, + sym_type_modifiers, + STATE(4742), 1, + sym_tuple_type, + STATE(5002), 1, + sym__simple_user_type, + STATE(5005), 1, + sym_simple_identifier, + STATE(5772), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10833), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5323), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5391), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [131300] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(5312), 1, + aux_sym_simple_identifier_token1, + ACTIONS(5316), 1, + anon_sym_LBRACK, + ACTIONS(10933), 1, + anon_sym_LPAREN, + ACTIONS(10935), 1, + anon_sym_some, + STATE(1302), 1, + sym_tuple_type, + STATE(1396), 1, + sym__simple_user_type, + STATE(1402), 1, + sym_simple_identifier, + STATE(1418), 1, + sym__type, + STATE(4717), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5314), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(1404), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(1403), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [131359] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(6289), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [131418] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10698), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10704), 1, + anon_sym_LPAREN, + ACTIONS(10706), 1, + anon_sym_LBRACK, + ACTIONS(10708), 1, + anon_sym_some, + STATE(2272), 1, + sym_tuple_type, + STATE(2308), 1, + sym__simple_user_type, + STATE(2311), 1, + sym_simple_identifier, + STATE(4692), 1, + sym_type_modifiers, + STATE(6837), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10700), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2366), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2411), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [131477] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(5312), 1, + aux_sym_simple_identifier_token1, + ACTIONS(5316), 1, + anon_sym_LBRACK, + ACTIONS(10933), 1, + anon_sym_LPAREN, + ACTIONS(10935), 1, + anon_sym_some, + STATE(1302), 1, + sym_tuple_type, + STATE(1396), 1, + sym__simple_user_type, + STATE(1402), 1, + sym_simple_identifier, + STATE(1415), 1, + sym__type, + STATE(4717), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5314), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(1404), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(1403), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [131536] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10831), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10835), 1, + anon_sym_LPAREN, + ACTIONS(10837), 1, + anon_sym_LBRACK, + ACTIONS(10839), 1, + anon_sym_some, + STATE(4688), 1, + sym_type_modifiers, + STATE(4742), 1, + sym_tuple_type, + STATE(5002), 1, + sym__simple_user_type, + STATE(5005), 1, + sym_simple_identifier, + STATE(6278), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10833), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5323), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5391), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [131595] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(6918), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [131654] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10831), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10835), 1, + anon_sym_LPAREN, + ACTIONS(10837), 1, + anon_sym_LBRACK, + ACTIONS(10839), 1, + anon_sym_some, + STATE(4688), 1, + sym_type_modifiers, + STATE(4742), 1, + sym_tuple_type, + STATE(5002), 1, + sym__simple_user_type, + STATE(5005), 1, + sym_simple_identifier, + STATE(5825), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10833), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5323), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5391), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [131713] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(5993), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [131772] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10739), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_LBRACK, + ACTIONS(10743), 1, + anon_sym_some, + STATE(4682), 1, + sym_type_modifiers, + STATE(4755), 1, + sym_tuple_type, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + STATE(8763), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10737), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5380), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5540), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [131831] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8584), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [131890] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8749), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [131949] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8641), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [132008] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(7394), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [132067] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(10331), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [132126] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10937), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10941), 1, + anon_sym_LPAREN, + ACTIONS(10943), 1, + anon_sym_LBRACK, + ACTIONS(10945), 1, + anon_sym_some, + STATE(2527), 1, + sym_tuple_type, + STATE(2924), 1, + sym_simple_identifier, + STATE(2925), 1, + sym__simple_user_type, + STATE(3362), 1, + sym__type, + STATE(4681), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10939), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3070), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3197), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [132185] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10937), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10941), 1, + anon_sym_LPAREN, + ACTIONS(10943), 1, + anon_sym_LBRACK, + ACTIONS(10945), 1, + anon_sym_some, + STATE(2527), 1, + sym_tuple_type, + STATE(2924), 1, + sym_simple_identifier, + STATE(2925), 1, + sym__simple_user_type, + STATE(3360), 1, + sym__type, + STATE(4681), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10939), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3070), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3197), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [132244] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10861), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10865), 1, + anon_sym_LPAREN, + ACTIONS(10867), 1, + anon_sym_LBRACK, + ACTIONS(10869), 1, + anon_sym_some, + STATE(4672), 1, + sym_tuple_type, + STATE(4696), 1, + sym_type_modifiers, + STATE(4838), 1, + sym_simple_identifier, + STATE(4847), 1, + sym__simple_user_type, + STATE(5213), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10863), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(4944), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(4989), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [132303] = 15, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + STATE(4738), 1, + sym_type_modifiers, + STATE(8858), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5232), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [132362] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10937), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10941), 1, + anon_sym_LPAREN, + ACTIONS(10943), 1, + anon_sym_LBRACK, + ACTIONS(10945), 1, + anon_sym_some, + STATE(2527), 1, + sym_tuple_type, + STATE(2924), 1, + sym_simple_identifier, + STATE(2925), 1, + sym__simple_user_type, + STATE(3351), 1, + sym__type, + STATE(4681), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10939), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3070), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3197), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [132421] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10825), 1, + anon_sym_LPAREN, + ACTIONS(10827), 1, + anon_sym_LBRACK, + ACTIONS(10829), 1, + anon_sym_some, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(2295), 1, + sym_tuple_type, + STATE(2769), 1, + sym__type, + STATE(4694), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2638), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2677), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [132480] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4701), 1, + sym_type_modifiers, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(5687), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5650), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [132539] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4701), 1, + sym_type_modifiers, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(5690), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5650), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [132598] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4701), 1, + sym_type_modifiers, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(5695), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5650), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [132657] = 24, + ACTIONS(5324), 1, + anon_sym_async, + ACTIONS(5332), 1, + anon_sym_typealias, + ACTIONS(5334), 1, + anon_sym_struct, + ACTIONS(5338), 1, + anon_sym_enum, + ACTIONS(5344), 1, + anon_sym_func, + ACTIONS(5346), 1, + anon_sym_extension, + ACTIONS(5350), 1, + anon_sym_init, + ACTIONS(10947), 1, + anon_sym_case, + ACTIONS(10949), 1, + anon_sym_import, + ACTIONS(10951), 1, + anon_sym_class, + ACTIONS(10953), 1, + anon_sym_protocol, + ACTIONS(10955), 1, + anon_sym_indirect, + ACTIONS(10957), 1, + anon_sym_deinit, + ACTIONS(10959), 1, + anon_sym_subscript, + ACTIONS(10961), 1, + anon_sym_associatedtype, + STATE(2865), 1, + sym__modifierless_class_declaration, + STATE(2866), 1, + sym__modifierless_typealias_declaration, + STATE(2868), 1, + sym__modifierless_property_declaration, + STATE(7244), 1, + sym__non_constructor_function_decl, + STATE(7245), 1, + sym__constructor_function_decl, + STATE(10380), 1, + sym__modifierless_function_declaration_no_body, + STATE(10404), 1, + sym__async_modifier, + ACTIONS(5342), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [132734] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10825), 1, + anon_sym_LPAREN, + ACTIONS(10827), 1, + anon_sym_LBRACK, + ACTIONS(10829), 1, + anon_sym_some, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(2295), 1, + sym_tuple_type, + STATE(2770), 1, + sym__type, + STATE(4694), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2638), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2677), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [132793] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10825), 1, + anon_sym_LPAREN, + ACTIONS(10827), 1, + anon_sym_LBRACK, + ACTIONS(10829), 1, + anon_sym_some, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(2295), 1, + sym_tuple_type, + STATE(2774), 1, + sym__type, + STATE(4694), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2638), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2677), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [132852] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10753), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10757), 1, + anon_sym_LPAREN, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10761), 1, + anon_sym_some, + STATE(2273), 1, + sym_tuple_type, + STATE(2306), 1, + sym__simple_user_type, + STATE(2322), 1, + sym_simple_identifier, + STATE(2477), 1, + sym__type, + STATE(4683), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10755), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2347), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2409), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [132911] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10937), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10941), 1, + anon_sym_LPAREN, + ACTIONS(10943), 1, + anon_sym_LBRACK, + ACTIONS(10945), 1, + anon_sym_some, + STATE(2527), 1, + sym_tuple_type, + STATE(2924), 1, + sym_simple_identifier, + STATE(2925), 1, + sym__simple_user_type, + STATE(3402), 1, + sym__type, + STATE(4681), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10939), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3070), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3197), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [132970] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(6266), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [133029] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10793), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10797), 1, + anon_sym_LPAREN, + ACTIONS(10799), 1, + anon_sym_LBRACK, + ACTIONS(10801), 1, + anon_sym_some, + STATE(4710), 1, + sym_tuple_type, + STATE(4727), 1, + sym_type_modifiers, + STATE(4977), 1, + sym_simple_identifier, + STATE(4979), 1, + sym__simple_user_type, + STATE(5467), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10795), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5156), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5254), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [133088] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10753), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10757), 1, + anon_sym_LPAREN, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10761), 1, + anon_sym_some, + STATE(2273), 1, + sym_tuple_type, + STATE(2306), 1, + sym__simple_user_type, + STATE(2322), 1, + sym_simple_identifier, + STATE(2476), 1, + sym__type, + STATE(4683), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10755), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2347), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2409), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [133147] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10753), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10757), 1, + anon_sym_LPAREN, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10761), 1, + anon_sym_some, + STATE(2273), 1, + sym_tuple_type, + STATE(2306), 1, + sym__simple_user_type, + STATE(2322), 1, + sym_simple_identifier, + STATE(2457), 1, + sym__type, + STATE(4683), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10755), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2347), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2409), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [133206] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(6636), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6640), 1, + anon_sym_LBRACK, + ACTIONS(10901), 1, + anon_sym_LPAREN, + ACTIONS(10903), 1, + anon_sym_some, + STATE(2525), 1, + sym_tuple_type, + STATE(2960), 1, + sym__simple_user_type, + STATE(3071), 1, + sym_simple_identifier, + STATE(3129), 1, + sym__type, + STATE(4708), 1, + sym_type_modifiers, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(6638), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3046), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3090), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [133265] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10793), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10797), 1, + anon_sym_LPAREN, + ACTIONS(10799), 1, + anon_sym_LBRACK, + ACTIONS(10801), 1, + anon_sym_some, + STATE(4710), 1, + sym_tuple_type, + STATE(4727), 1, + sym_type_modifiers, + STATE(4977), 1, + sym_simple_identifier, + STATE(4979), 1, + sym__simple_user_type, + STATE(5465), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10795), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5156), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5254), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [133324] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(6186), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [133383] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(10622), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10626), 1, + anon_sym_LBRACK, + ACTIONS(10628), 1, + anon_sym_some, + STATE(4721), 1, + sym_type_modifiers, + STATE(4849), 1, + sym_tuple_type, + STATE(4906), 1, + sym__simple_user_type, + STATE(4907), 1, + sym_simple_identifier, + STATE(5433), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10624), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5147), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5278), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [133442] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4713), 1, + sym_type_modifiers, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + STATE(6194), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5386), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [133501] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(10622), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10626), 1, + anon_sym_LBRACK, + ACTIONS(10628), 1, + anon_sym_some, + STATE(4721), 1, + sym_type_modifiers, + STATE(4849), 1, + sym_tuple_type, + STATE(4906), 1, + sym__simple_user_type, + STATE(4907), 1, + sym_simple_identifier, + STATE(5441), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10624), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5147), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5278), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [133560] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10739), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_LBRACK, + ACTIONS(10743), 1, + anon_sym_some, + STATE(4682), 1, + sym_type_modifiers, + STATE(4755), 1, + sym_tuple_type, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + STATE(8711), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10737), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5380), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5540), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [133619] = 15, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(10813), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10817), 1, + anon_sym_LPAREN, + ACTIONS(10819), 1, + anon_sym_LBRACK, + ACTIONS(10821), 1, + anon_sym_some, + STATE(4698), 1, + sym_type_modifiers, + STATE(4712), 1, + sym_tuple_type, + STATE(4960), 1, + sym_simple_identifier, + STATE(4962), 1, + sym__simple_user_type, + STATE(6100), 1, + sym__type, + STATE(5230), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(10815), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5101), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5349), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [133678] = 23, + ACTIONS(5344), 1, + anon_sym_func, + ACTIONS(5350), 1, + anon_sym_init, + ACTIONS(5481), 1, + anon_sym_async, + ACTIONS(5487), 1, + anon_sym_typealias, + ACTIONS(5489), 1, + anon_sym_struct, + ACTIONS(5493), 1, + anon_sym_enum, + ACTIONS(5499), 1, + anon_sym_extension, + ACTIONS(5501), 1, + anon_sym_indirect, + ACTIONS(10963), 1, + anon_sym_import, + ACTIONS(10965), 1, + anon_sym_class, + ACTIONS(10967), 1, + anon_sym_protocol, + ACTIONS(10969), 1, + anon_sym_deinit, + ACTIONS(10971), 1, + anon_sym_subscript, + ACTIONS(10973), 1, + anon_sym_associatedtype, + STATE(7244), 1, + sym__non_constructor_function_decl, + STATE(7245), 1, + sym__constructor_function_decl, + STATE(8778), 1, + sym__modifierless_class_declaration, + STATE(8780), 1, + sym__modifierless_typealias_declaration, + STATE(8781), 1, + sym__modifierless_property_declaration, + STATE(10212), 1, + sym__async_modifier, + STATE(10380), 1, + sym__modifierless_function_declaration_no_body, + ACTIONS(5497), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [133752] = 3, + ACTIONS(6073), 1, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6075), 22, + 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, + sym_property_behavior_modifier, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [133786] = 3, + ACTIONS(6069), 1, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6071), 22, + 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, + sym_property_behavior_modifier, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [133820] = 3, + ACTIONS(6065), 1, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6067), 22, + 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, + sym_property_behavior_modifier, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [133854] = 8, + ACTIONS(10975), 1, + anon_sym_AT, + ACTIONS(10978), 1, + sym_property_behavior_modifier, + ACTIONS(10981), 1, + anon_sym_final, + ACTIONS(10987), 1, + anon_sym_unowned, + ACTIONS(10984), 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(4666), 5, + sym_attribute, + aux_sym__locally_permitted_modifiers, + sym__locally_permitted_modifier, + sym_inheritance_modifier, + sym_ownership_modifier, + ACTIONS(6989), 11, + 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, + [133898] = 3, + ACTIONS(6061), 1, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6063), 22, + 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, + sym_property_behavior_modifier, + anon_sym_mutating, + anon_sym_nonmutating, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [133932] = 5, + ACTIONS(7249), 1, + anon_sym_unowned, + ACTIONS(10712), 1, + anon_sym_AT, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7247), 5, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_mutating, + anon_sym_nonmutating, + ACTIONS(7256), 16, + 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, + sym_property_behavior_modifier, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [133970] = 19, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10994), 1, + anon_sym_LPAREN, + ACTIONS(10996), 1, + sym__await_operator, + ACTIONS(10998), 1, + anon_sym_case, + ACTIONS(11000), 1, + anon_sym_try, + ACTIONS(11004), 1, + anon_sym_is, + ACTIONS(11006), 1, + sym_wildcard_pattern, + ACTIONS(11008), 1, + sym__dot_custom, + STATE(4746), 1, + sym__try_operator, + STATE(4936), 1, + sym_binding_pattern_kind, + STATE(4955), 1, + sym__simple_user_type, + STATE(5490), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(8251), 1, + sym_binding_pattern, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(11002), 2, + anon_sym_try_BANG, + anon_sym_try_QMARK, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [134035] = 19, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11010), 1, + anon_sym_LPAREN, + ACTIONS(11012), 1, + sym__await_operator, + ACTIONS(11014), 1, + anon_sym_case, + ACTIONS(11016), 1, + anon_sym_try, + ACTIONS(11020), 1, + anon_sym_is, + ACTIONS(11022), 1, + sym_wildcard_pattern, + STATE(4744), 1, + sym__try_operator, + STATE(4898), 1, + sym_binding_pattern_kind, + STATE(4955), 1, + sym__simple_user_type, + STATE(5367), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(8292), 1, + sym_user_type, + STATE(8297), 1, + sym_binding_pattern, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(11018), 2, + anon_sym_try_BANG, + anon_sym_try_QMARK, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [134100] = 11, + ACTIONS(4735), 1, + anon_sym_QMARK, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(11024), 1, + sym__immediate_quest, + ACTIONS(11026), 1, + sym__arrow_operator_custom, + STATE(4423), 1, + sym__arrow_operator, + STATE(4974), 1, + aux_sym_optional_type_repeat1, + STATE(9570), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6385), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 10, + sym__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, + [134148] = 11, + ACTIONS(4735), 1, + anon_sym_QMARK, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(11028), 1, + sym__immediate_quest, + ACTIONS(11030), 1, + sym__arrow_operator_custom, + STATE(4515), 1, + sym__arrow_operator, + STATE(4946), 1, + aux_sym_optional_type_repeat1, + STATE(9803), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6949), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 11, + sym_multiline_comment, + sym__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, + [134196] = 21, + ACTIONS(5344), 1, + anon_sym_func, + ACTIONS(5350), 1, + anon_sym_init, + ACTIONS(5962), 1, + anon_sym_typealias, + ACTIONS(6546), 1, + anon_sym_async, + ACTIONS(6550), 1, + anon_sym_struct, + ACTIONS(6555), 1, + anon_sym_enum, + ACTIONS(6559), 1, + anon_sym_extension, + ACTIONS(6561), 1, + anon_sym_indirect, + ACTIONS(11032), 1, + anon_sym_import, + ACTIONS(11034), 1, + anon_sym_class, + ACTIONS(11036), 1, + anon_sym_protocol, + ACTIONS(11038), 1, + anon_sym_associatedtype, + STATE(7244), 1, + sym__non_constructor_function_decl, + STATE(7245), 1, + sym__constructor_function_decl, + STATE(8410), 1, + sym__modifierless_typealias_declaration, + STATE(10355), 1, + sym__modifierless_property_declaration, + STATE(10379), 1, + sym__modifierless_class_declaration, + STATE(10380), 1, + sym__modifierless_function_declaration_no_body, + STATE(10423), 1, + sym__async_modifier, + ACTIONS(6557), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [134264] = 18, + ACTIONS(5750), 1, + sym_where_keyword, + ACTIONS(11040), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11044), 1, + anon_sym_LPAREN, + ACTIONS(11046), 1, + anon_sym_LBRACE, + ACTIONS(11048), 1, + anon_sym_is, + ACTIONS(11050), 1, + sym_wildcard_pattern, + ACTIONS(11052), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(4984), 1, + sym_binding_pattern_kind, + STATE(5578), 1, + sym_simple_identifier, + STATE(6297), 1, + sym_binding_pattern, + STATE(6488), 1, + sym__dot, + STATE(7638), 1, + sym__block, + STATE(8626), 1, + sym_where_clause, + STATE(9557), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(11042), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [134325] = 18, + ACTIONS(5750), 1, + sym_where_keyword, + ACTIONS(11040), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11044), 1, + anon_sym_LPAREN, + ACTIONS(11048), 1, + anon_sym_is, + ACTIONS(11050), 1, + sym_wildcard_pattern, + ACTIONS(11052), 1, + sym__dot_custom, + ACTIONS(11054), 1, + anon_sym_LBRACE, + STATE(3590), 1, + sym__block, + STATE(4955), 1, + sym__simple_user_type, + STATE(4984), 1, + sym_binding_pattern_kind, + STATE(5578), 1, + sym_simple_identifier, + STATE(6237), 1, + sym_binding_pattern, + STATE(6488), 1, + sym__dot, + STATE(8629), 1, + sym_where_clause, + STATE(9557), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(11042), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [134386] = 11, + ACTIONS(10921), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10925), 1, + anon_sym_LPAREN, + ACTIONS(10927), 1, + anon_sym_LBRACK, + ACTIONS(10929), 1, + anon_sym_some, + STATE(3010), 1, + sym_tuple_type, + STATE(3475), 1, + sym__simple_user_type, + STATE(3476), 1, + sym_simple_identifier, + ACTIONS(10923), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3497), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3511), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [134432] = 11, + ACTIONS(10881), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10885), 1, + anon_sym_LPAREN, + ACTIONS(10887), 1, + anon_sym_LBRACK, + ACTIONS(10889), 1, + anon_sym_some, + STATE(4671), 1, + sym_tuple_type, + STATE(4843), 1, + sym__simple_user_type, + STATE(4857), 1, + sym_simple_identifier, + ACTIONS(10883), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(4978), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5021), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [134478] = 11, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5743), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [134524] = 11, + ACTIONS(10861), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10865), 1, + anon_sym_LPAREN, + ACTIONS(10867), 1, + anon_sym_LBRACK, + ACTIONS(10869), 1, + anon_sym_some, + STATE(4672), 1, + sym_tuple_type, + STATE(4838), 1, + sym_simple_identifier, + STATE(4847), 1, + sym__simple_user_type, + ACTIONS(10863), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(4944), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5034), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [134570] = 11, + ACTIONS(10725), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10729), 1, + anon_sym_LPAREN, + ACTIONS(10731), 1, + anon_sym_LBRACK, + ACTIONS(10733), 1, + anon_sym_some, + STATE(4769), 1, + sym_tuple_type, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + ACTIONS(10727), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5541), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5760), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [134616] = 11, + ACTIONS(10937), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10941), 1, + anon_sym_LPAREN, + ACTIONS(10943), 1, + anon_sym_LBRACK, + ACTIONS(10945), 1, + anon_sym_some, + STATE(2527), 1, + sym_tuple_type, + STATE(2924), 1, + sym_simple_identifier, + STATE(2925), 1, + sym__simple_user_type, + ACTIONS(10939), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3070), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3186), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [134662] = 11, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10739), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_LBRACK, + ACTIONS(10743), 1, + anon_sym_some, + STATE(4755), 1, + sym_tuple_type, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + ACTIONS(10737), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5380), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5535), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [134708] = 11, + ACTIONS(10753), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10757), 1, + anon_sym_LPAREN, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10761), 1, + anon_sym_some, + STATE(2273), 1, + sym_tuple_type, + STATE(2306), 1, + sym__simple_user_type, + STATE(2322), 1, + sym_simple_identifier, + ACTIONS(10755), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2347), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2396), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [134754] = 11, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5654), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [134800] = 11, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10825), 1, + anon_sym_LPAREN, + ACTIONS(10827), 1, + anon_sym_LBRACK, + ACTIONS(10829), 1, + anon_sym_some, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(2295), 1, + sym_tuple_type, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2638), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2657), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [134846] = 11, + ACTIONS(10851), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10855), 1, + anon_sym_LPAREN, + ACTIONS(10857), 1, + anon_sym_LBRACK, + ACTIONS(10859), 1, + anon_sym_some, + STATE(2259), 1, + sym_tuple_type, + STATE(2283), 1, + sym_simple_identifier, + STATE(2285), 1, + sym__simple_user_type, + ACTIONS(10853), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2315), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2332), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [134892] = 11, + ACTIONS(4849), 1, + aux_sym_simple_identifier_token1, + ACTIONS(4855), 1, + anon_sym_LBRACK, + ACTIONS(10913), 1, + anon_sym_LPAREN, + ACTIONS(10915), 1, + anon_sym_some, + STATE(1141), 1, + sym_tuple_type, + STATE(1216), 1, + sym__simple_user_type, + STATE(1229), 1, + sym_simple_identifier, + ACTIONS(4851), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(1227), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(1223), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [134938] = 11, + ACTIONS(10831), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10835), 1, + anon_sym_LPAREN, + ACTIONS(10837), 1, + anon_sym_LBRACK, + ACTIONS(10839), 1, + anon_sym_some, + STATE(4742), 1, + sym_tuple_type, + STATE(5002), 1, + sym__simple_user_type, + STATE(5005), 1, + sym_simple_identifier, + ACTIONS(10833), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5323), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5396), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [134984] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(10745), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10749), 1, + anon_sym_some, + STATE(4882), 1, + sym_tuple_type, + STATE(5572), 1, + sym__simple_user_type, + STATE(5573), 1, + sym_simple_identifier, + ACTIONS(10747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6573), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135030] = 11, + ACTIONS(10793), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10797), 1, + anon_sym_LPAREN, + ACTIONS(10799), 1, + anon_sym_LBRACK, + ACTIONS(10801), 1, + anon_sym_some, + STATE(4710), 1, + sym_tuple_type, + STATE(4977), 1, + sym_simple_identifier, + STATE(4979), 1, + sym__simple_user_type, + ACTIONS(10795), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5156), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5267), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135076] = 11, + ACTIONS(10851), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10855), 1, + anon_sym_LPAREN, + ACTIONS(10857), 1, + anon_sym_LBRACK, + ACTIONS(10859), 1, + anon_sym_some, + STATE(2259), 1, + sym_tuple_type, + STATE(2283), 1, + sym_simple_identifier, + STATE(2285), 1, + sym__simple_user_type, + ACTIONS(10853), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2315), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2329), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135122] = 11, + ACTIONS(10698), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10704), 1, + anon_sym_LPAREN, + ACTIONS(10706), 1, + anon_sym_LBRACK, + ACTIONS(10708), 1, + anon_sym_some, + STATE(2272), 1, + sym_tuple_type, + STATE(2308), 1, + sym__simple_user_type, + STATE(2311), 1, + sym_simple_identifier, + ACTIONS(10700), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2366), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2414), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135168] = 11, + ACTIONS(10698), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10704), 1, + anon_sym_LPAREN, + ACTIONS(10706), 1, + anon_sym_LBRACK, + ACTIONS(10708), 1, + anon_sym_some, + STATE(2272), 1, + sym_tuple_type, + STATE(2308), 1, + sym__simple_user_type, + STATE(2311), 1, + sym_simple_identifier, + ACTIONS(10700), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2366), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2416), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135214] = 11, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10825), 1, + anon_sym_LPAREN, + ACTIONS(10827), 1, + anon_sym_LBRACK, + ACTIONS(10829), 1, + anon_sym_some, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(2295), 1, + sym_tuple_type, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2638), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2663), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135260] = 11, + ACTIONS(10831), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10835), 1, + anon_sym_LPAREN, + ACTIONS(10837), 1, + anon_sym_LBRACK, + ACTIONS(10839), 1, + anon_sym_some, + STATE(4742), 1, + sym_tuple_type, + STATE(5002), 1, + sym__simple_user_type, + STATE(5005), 1, + sym_simple_identifier, + ACTIONS(10833), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5323), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5399), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135306] = 11, + ACTIONS(10861), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10865), 1, + anon_sym_LPAREN, + ACTIONS(10867), 1, + anon_sym_LBRACK, + ACTIONS(10869), 1, + anon_sym_some, + STATE(4672), 1, + sym_tuple_type, + STATE(4838), 1, + sym_simple_identifier, + STATE(4847), 1, + sym__simple_user_type, + ACTIONS(10863), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(4944), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5037), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135352] = 11, + ACTIONS(10606), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10610), 1, + anon_sym_LPAREN, + ACTIONS(10612), 1, + anon_sym_LBRACK, + ACTIONS(10614), 1, + anon_sym_some, + STATE(4757), 1, + sym_tuple_type, + STATE(5133), 1, + sym_simple_identifier, + STATE(5135), 1, + sym__simple_user_type, + ACTIONS(10608), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5407), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5579), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135398] = 11, + ACTIONS(10813), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10817), 1, + anon_sym_LPAREN, + ACTIONS(10819), 1, + anon_sym_LBRACK, + ACTIONS(10821), 1, + anon_sym_some, + STATE(4712), 1, + sym_tuple_type, + STATE(4960), 1, + sym_simple_identifier, + STATE(4962), 1, + sym__simple_user_type, + ACTIONS(10815), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5101), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5357), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135444] = 11, + ACTIONS(10813), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10817), 1, + anon_sym_LPAREN, + ACTIONS(10819), 1, + anon_sym_LBRACK, + ACTIONS(10821), 1, + anon_sym_some, + STATE(4712), 1, + sym_tuple_type, + STATE(4960), 1, + sym_simple_identifier, + STATE(4962), 1, + sym__simple_user_type, + ACTIONS(10815), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5101), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5362), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135490] = 11, + ACTIONS(4849), 1, + aux_sym_simple_identifier_token1, + ACTIONS(4855), 1, + anon_sym_LBRACK, + ACTIONS(10913), 1, + anon_sym_LPAREN, + ACTIONS(10915), 1, + anon_sym_some, + STATE(1141), 1, + sym_tuple_type, + STATE(1216), 1, + sym__simple_user_type, + STATE(1229), 1, + sym_simple_identifier, + ACTIONS(4851), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(1227), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(1233), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135536] = 11, + ACTIONS(10715), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10719), 1, + anon_sym_LPAREN, + ACTIONS(10721), 1, + anon_sym_LBRACK, + ACTIONS(10723), 1, + anon_sym_some, + STATE(4760), 1, + sym_tuple_type, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + ACTIONS(10717), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5487), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5652), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135582] = 11, + ACTIONS(10606), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10610), 1, + anon_sym_LPAREN, + ACTIONS(10612), 1, + anon_sym_LBRACK, + ACTIONS(10614), 1, + anon_sym_some, + STATE(4757), 1, + sym_tuple_type, + STATE(5133), 1, + sym_simple_identifier, + STATE(5135), 1, + sym__simple_user_type, + ACTIONS(10608), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5407), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5580), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135628] = 11, + ACTIONS(10891), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10895), 1, + anon_sym_LPAREN, + ACTIONS(10897), 1, + anon_sym_LBRACK, + ACTIONS(10899), 1, + anon_sym_some, + STATE(4804), 1, + sym_tuple_type, + STATE(5201), 1, + sym__simple_user_type, + STATE(5202), 1, + sym_simple_identifier, + ACTIONS(10893), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5603), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5915), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135674] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(10622), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10626), 1, + anon_sym_LBRACK, + ACTIONS(10628), 1, + anon_sym_some, + STATE(4849), 1, + sym_tuple_type, + STATE(4906), 1, + sym__simple_user_type, + STATE(4907), 1, + sym_simple_identifier, + ACTIONS(10624), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5147), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5245), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135720] = 11, + ACTIONS(10783), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10787), 1, + anon_sym_LPAREN, + ACTIONS(10789), 1, + anon_sym_LBRACK, + ACTIONS(10791), 1, + anon_sym_some, + STATE(4748), 1, + sym_tuple_type, + STATE(4998), 1, + sym_simple_identifier, + STATE(5000), 1, + sym__simple_user_type, + ACTIONS(10785), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5233), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5440), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135766] = 11, + ACTIONS(6518), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6522), 1, + anon_sym_LBRACK, + ACTIONS(10917), 1, + anon_sym_LPAREN, + ACTIONS(10919), 1, + anon_sym_some, + STATE(2470), 1, + sym_tuple_type, + STATE(2860), 1, + sym__simple_user_type, + STATE(2987), 1, + sym_simple_identifier, + ACTIONS(6520), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2990), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3009), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135812] = 11, + ACTIONS(10937), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10941), 1, + anon_sym_LPAREN, + ACTIONS(10943), 1, + anon_sym_LBRACK, + ACTIONS(10945), 1, + anon_sym_some, + STATE(2527), 1, + sym_tuple_type, + STATE(2924), 1, + sym_simple_identifier, + STATE(2925), 1, + sym__simple_user_type, + ACTIONS(10939), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3070), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3178), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135858] = 11, + ACTIONS(6636), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6640), 1, + anon_sym_LBRACK, + ACTIONS(10901), 1, + anon_sym_LPAREN, + ACTIONS(10903), 1, + anon_sym_some, + STATE(2525), 1, + sym_tuple_type, + STATE(2960), 1, + sym__simple_user_type, + STATE(3071), 1, + sym_simple_identifier, + ACTIONS(6638), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3046), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3039), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135904] = 11, + ACTIONS(10753), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10757), 1, + anon_sym_LPAREN, + ACTIONS(10759), 1, + anon_sym_LBRACK, + ACTIONS(10761), 1, + anon_sym_some, + STATE(2273), 1, + sym_tuple_type, + STATE(2306), 1, + sym__simple_user_type, + STATE(2322), 1, + sym_simple_identifier, + ACTIONS(10755), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2347), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2395), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [135950] = 10, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(11056), 1, + sym__immediate_quest, + ACTIONS(11058), 1, + sym__arrow_operator_custom, + STATE(4363), 1, + sym__arrow_operator, + STATE(5153), 1, + aux_sym_optional_type_repeat1, + STATE(9734), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(7016), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 10, + sym_multiline_comment, + sym__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, + [135994] = 11, + ACTIONS(10881), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10885), 1, + anon_sym_LPAREN, + ACTIONS(10887), 1, + anon_sym_LBRACK, + ACTIONS(10889), 1, + anon_sym_some, + STATE(4671), 1, + sym_tuple_type, + STATE(4843), 1, + sym__simple_user_type, + STATE(4857), 1, + sym_simple_identifier, + ACTIONS(10883), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(4978), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5046), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136040] = 10, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(11060), 1, + sym__immediate_quest, + ACTIONS(11062), 1, + sym__arrow_operator_custom, + STATE(4369), 1, + sym__arrow_operator, + STATE(5097), 1, + aux_sym_optional_type_repeat1, + STATE(9805), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6900), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 9, + sym__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, + [136084] = 11, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5405), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136130] = 11, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5327), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136176] = 11, + ACTIONS(10891), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10895), 1, + anon_sym_LPAREN, + ACTIONS(10897), 1, + anon_sym_LBRACK, + ACTIONS(10899), 1, + anon_sym_some, + STATE(4804), 1, + sym_tuple_type, + STATE(5201), 1, + sym__simple_user_type, + STATE(5202), 1, + sym_simple_identifier, + ACTIONS(10893), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5603), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5895), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136222] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + ACTIONS(10745), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10749), 1, + anon_sym_some, + STATE(4882), 1, + sym_tuple_type, + STATE(5572), 1, + sym__simple_user_type, + STATE(5573), 1, + sym_simple_identifier, + ACTIONS(10747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6692), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136268] = 11, + ACTIONS(5312), 1, + aux_sym_simple_identifier_token1, + ACTIONS(5316), 1, + anon_sym_LBRACK, + ACTIONS(10933), 1, + anon_sym_LPAREN, + ACTIONS(10935), 1, + anon_sym_some, + STATE(1302), 1, + sym_tuple_type, + STATE(1396), 1, + sym__simple_user_type, + STATE(1402), 1, + sym_simple_identifier, + ACTIONS(5314), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(1404), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(1408), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136314] = 11, + ACTIONS(5312), 1, + aux_sym_simple_identifier_token1, + ACTIONS(5316), 1, + anon_sym_LBRACK, + ACTIONS(10933), 1, + anon_sym_LPAREN, + ACTIONS(10935), 1, + anon_sym_some, + STATE(1302), 1, + sym_tuple_type, + STATE(1396), 1, + sym__simple_user_type, + STATE(1402), 1, + sym_simple_identifier, + ACTIONS(5314), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(1404), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(1401), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136360] = 11, + ACTIONS(10783), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10787), 1, + anon_sym_LPAREN, + ACTIONS(10789), 1, + anon_sym_LBRACK, + ACTIONS(10791), 1, + anon_sym_some, + STATE(4748), 1, + sym_tuple_type, + STATE(4998), 1, + sym_simple_identifier, + STATE(5000), 1, + sym__simple_user_type, + ACTIONS(10785), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5233), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5444), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136406] = 11, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10739), 1, + anon_sym_LPAREN, + ACTIONS(10741), 1, + anon_sym_LBRACK, + ACTIONS(10743), 1, + anon_sym_some, + STATE(4755), 1, + sym_tuple_type, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + ACTIONS(10737), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5380), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5532), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136452] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(10622), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10626), 1, + anon_sym_LBRACK, + ACTIONS(10628), 1, + anon_sym_some, + STATE(4849), 1, + sym_tuple_type, + STATE(4906), 1, + sym__simple_user_type, + STATE(4907), 1, + sym_simple_identifier, + ACTIONS(10624), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5147), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5260), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136498] = 11, + ACTIONS(10763), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10767), 1, + anon_sym_LPAREN, + ACTIONS(10769), 1, + anon_sym_LBRACK, + ACTIONS(10771), 1, + anon_sym_some, + STATE(2732), 1, + sym_tuple_type, + STATE(3238), 1, + sym_simple_identifier, + STATE(3242), 1, + sym__simple_user_type, + ACTIONS(10765), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3382), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3446), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136544] = 11, + ACTIONS(6530), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6534), 1, + anon_sym_LBRACK, + ACTIONS(10905), 1, + anon_sym_LPAREN, + ACTIONS(10907), 1, + anon_sym_some, + STATE(2514), 1, + sym_tuple_type, + STATE(2857), 1, + sym__simple_user_type, + STATE(3016), 1, + sym_simple_identifier, + ACTIONS(6532), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2988), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2973), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136590] = 11, + ACTIONS(10921), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10925), 1, + anon_sym_LPAREN, + ACTIONS(10927), 1, + anon_sym_LBRACK, + ACTIONS(10929), 1, + anon_sym_some, + STATE(3010), 1, + sym_tuple_type, + STATE(3475), 1, + sym__simple_user_type, + STATE(3476), 1, + sym_simple_identifier, + ACTIONS(10923), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3497), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3512), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136636] = 11, + ACTIONS(10803), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10807), 1, + anon_sym_LPAREN, + ACTIONS(10809), 1, + anon_sym_LBRACK, + ACTIONS(10811), 1, + anon_sym_some, + STATE(2618), 1, + sym_tuple_type, + STATE(3059), 1, + sym__simple_user_type, + STATE(3101), 1, + sym_simple_identifier, + ACTIONS(10805), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3361), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3396), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136682] = 11, + ACTIONS(6518), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6522), 1, + anon_sym_LBRACK, + ACTIONS(10917), 1, + anon_sym_LPAREN, + ACTIONS(10919), 1, + anon_sym_some, + STATE(2470), 1, + sym_tuple_type, + STATE(2860), 1, + sym__simple_user_type, + STATE(2987), 1, + sym_simple_identifier, + ACTIONS(6520), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2990), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3018), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136728] = 11, + ACTIONS(10793), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10797), 1, + anon_sym_LPAREN, + ACTIONS(10799), 1, + anon_sym_LBRACK, + ACTIONS(10801), 1, + anon_sym_some, + STATE(4710), 1, + sym_tuple_type, + STATE(4977), 1, + sym_simple_identifier, + STATE(4979), 1, + sym__simple_user_type, + ACTIONS(10795), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5156), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5261), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136774] = 11, + ACTIONS(10803), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10807), 1, + anon_sym_LPAREN, + ACTIONS(10809), 1, + anon_sym_LBRACK, + ACTIONS(10811), 1, + anon_sym_some, + STATE(2618), 1, + sym_tuple_type, + STATE(3059), 1, + sym__simple_user_type, + STATE(3101), 1, + sym_simple_identifier, + ACTIONS(10805), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3361), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3406), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136820] = 11, + ACTIONS(10763), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10767), 1, + anon_sym_LPAREN, + ACTIONS(10769), 1, + anon_sym_LBRACK, + ACTIONS(10771), 1, + anon_sym_some, + STATE(2732), 1, + sym_tuple_type, + STATE(3238), 1, + sym_simple_identifier, + STATE(3242), 1, + sym__simple_user_type, + ACTIONS(10765), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3382), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3445), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136866] = 11, + ACTIONS(10773), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10777), 1, + anon_sym_LPAREN, + ACTIONS(10779), 1, + anon_sym_LBRACK, + ACTIONS(10781), 1, + anon_sym_some, + STATE(4747), 1, + sym_tuple_type, + STATE(5008), 1, + sym__simple_user_type, + STATE(5009), 1, + sym_simple_identifier, + ACTIONS(10775), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5303), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5506), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136912] = 11, + ACTIONS(6530), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6534), 1, + anon_sym_LBRACK, + ACTIONS(10905), 1, + anon_sym_LPAREN, + ACTIONS(10907), 1, + anon_sym_some, + STATE(2514), 1, + sym_tuple_type, + STATE(2857), 1, + sym__simple_user_type, + STATE(3016), 1, + sym_simple_identifier, + ACTIONS(6532), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2988), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2967), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [136958] = 11, + ACTIONS(10871), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_LBRACK, + ACTIONS(10879), 1, + anon_sym_some, + STATE(4745), 1, + sym_tuple_type, + STATE(5018), 1, + sym__simple_user_type, + STATE(5056), 1, + sym_simple_identifier, + ACTIONS(10873), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5307), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5425), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [137004] = 11, + ACTIONS(6636), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6640), 1, + anon_sym_LBRACK, + ACTIONS(10901), 1, + anon_sym_LPAREN, + ACTIONS(10903), 1, + anon_sym_some, + STATE(2525), 1, + sym_tuple_type, + STATE(2960), 1, + sym__simple_user_type, + STATE(3071), 1, + sym_simple_identifier, + ACTIONS(6638), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(3046), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3035), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [137050] = 11, + ACTIONS(10841), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10845), 1, + anon_sym_LPAREN, + ACTIONS(10847), 1, + anon_sym_LBRACK, + ACTIONS(10849), 1, + anon_sym_some, + STATE(4879), 1, + sym_tuple_type, + STATE(5591), 1, + sym__simple_user_type, + STATE(5597), 1, + sym_simple_identifier, + ACTIONS(10843), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(6132), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6600), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [137096] = 10, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(11064), 1, + sym__immediate_quest, + ACTIONS(11066), 1, + sym__arrow_operator_custom, + STATE(4560), 1, + sym__arrow_operator, + STATE(5072), 1, + aux_sym_optional_type_repeat1, + STATE(8436), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6872), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 9, + 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, + [137140] = 11, + ACTIONS(10841), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10845), 1, + anon_sym_LPAREN, + ACTIONS(10847), 1, + anon_sym_LBRACK, + ACTIONS(10849), 1, + anon_sym_some, + STATE(4879), 1, + sym_tuple_type, + STATE(5591), 1, + sym__simple_user_type, + STATE(5597), 1, + sym_simple_identifier, + ACTIONS(10843), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(6132), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6595), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [137186] = 11, + ACTIONS(10773), 1, + aux_sym_simple_identifier_token1, + ACTIONS(10777), 1, + anon_sym_LPAREN, + ACTIONS(10779), 1, + anon_sym_LBRACK, + ACTIONS(10781), 1, + anon_sym_some, + STATE(4747), 1, + sym_tuple_type, + STATE(5008), 1, + sym__simple_user_type, + STATE(5009), 1, + sym_simple_identifier, + ACTIONS(10775), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5303), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5507), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [137232] = 11, + ACTIONS(787), 1, + anon_sym_some, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_LBRACK, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(4735), 1, + sym_tuple_type, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(5077), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(5199), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [137278] = 11, + ACTIONS(6538), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6542), 1, + anon_sym_LBRACK, + ACTIONS(10909), 1, + anon_sym_LPAREN, + ACTIONS(10911), 1, + anon_sym_some, + STATE(2495), 1, + sym_tuple_type, + STATE(2878), 1, + sym__simple_user_type, + STATE(2984), 1, + sym_simple_identifier, + ACTIONS(6540), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2972), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2981), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [137324] = 11, + ACTIONS(6538), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6542), 1, + anon_sym_LBRACK, + ACTIONS(10909), 1, + anon_sym_LPAREN, + ACTIONS(10911), 1, + anon_sym_some, + STATE(2495), 1, + sym_tuple_type, + STATE(2878), 1, + sym__simple_user_type, + STATE(2984), 1, + sym_simple_identifier, + ACTIONS(6540), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + STATE(2972), 3, + sym_user_type, + sym_array_type, + sym_dictionary_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(2976), 6, + sym__unannotated_type, + sym_function_type, + sym_optional_type, + sym_metatype, + sym_opaque_type, + sym_protocol_composition_type, + [137370] = 3, + ACTIONS(7918), 1, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7916), 17, + 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, + sym_property_behavior_modifier, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [137399] = 11, + ACTIONS(4735), 1, + anon_sym_QMARK, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(11068), 1, + sym__immediate_quest, + ACTIONS(11070), 1, + sym__arrow_operator_custom, + STATE(4380), 1, + sym__arrow_operator, + STATE(5319), 1, + aux_sym_optional_type_repeat1, + STATE(9812), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6901), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 7, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + [137444] = 3, + ACTIONS(7910), 1, + anon_sym_unowned, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7908), 17, + 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, + sym_property_behavior_modifier, + anon_sym_final, + anon_sym_weak, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + [137473] = 16, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11072), 1, + anon_sym_LPAREN, + ACTIONS(11074), 1, + sym__await_operator, + ACTIONS(11076), 1, + anon_sym_case, + ACTIONS(11078), 1, + anon_sym_is, + ACTIONS(11080), 1, + sym_wildcard_pattern, + STATE(4923), 1, + sym_binding_pattern_kind, + STATE(4955), 1, + sym__simple_user_type, + STATE(5436), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(8292), 1, + sym_user_type, + STATE(8603), 1, + sym_binding_pattern, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [137528] = 11, + ACTIONS(4735), 1, + anon_sym_QMARK, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(11082), 1, + sym__immediate_quest, + ACTIONS(11084), 1, + sym__arrow_operator_custom, + STATE(4474), 1, + sym__arrow_operator, + STATE(5304), 1, + aux_sym_optional_type_repeat1, + STATE(9211), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6899), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 7, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_in, + [137573] = 16, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11086), 1, + anon_sym_LPAREN, + ACTIONS(11088), 1, + sym__await_operator, + ACTIONS(11090), 1, + anon_sym_case, + ACTIONS(11092), 1, + anon_sym_is, + ACTIONS(11094), 1, + sym_wildcard_pattern, + STATE(4935), 1, + sym_binding_pattern_kind, + STATE(4955), 1, + sym__simple_user_type, + STATE(5488), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(8242), 1, + sym_binding_pattern, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [137628] = 10, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(11096), 1, + sym__immediate_quest, + ACTIONS(11098), 1, + sym__arrow_operator_custom, + STATE(4583), 1, + sym__arrow_operator, + STATE(5308), 1, + aux_sym_optional_type_repeat1, + STATE(9586), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6948), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [137671] = 10, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(11100), 1, + sym__immediate_quest, + ACTIONS(11102), 1, + sym__arrow_operator_custom, + STATE(4562), 1, + sym__arrow_operator, + STATE(5234), 1, + aux_sym_optional_type_repeat1, + STATE(9780), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(7030), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 8, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [137714] = 13, + ACTIONS(495), 1, + anon_sym_AT, + ACTIONS(11104), 1, + anon_sym_RBRACE, + ACTIONS(11106), 1, + anon_sym_get, + ACTIONS(11108), 1, + anon_sym_set, + ACTIONS(11110), 1, + anon_sym__modify, + STATE(5343), 1, + sym_setter_specifier, + STATE(5375), 1, + sym_getter_specifier, + STATE(5376), 1, + sym_modify_specifier, + STATE(8139), 1, + sym_mutation_modifier, + ACTIONS(5368), 2, + anon_sym_mutating, + anon_sym_nonmutating, + STATE(4992), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(4754), 4, + sym_computed_getter, + sym_computed_modify, + sym_computed_setter, + aux_sym_computed_property_repeat1, + [137762] = 13, + ACTIONS(495), 1, + anon_sym_AT, + ACTIONS(11106), 1, + anon_sym_get, + ACTIONS(11108), 1, + anon_sym_set, + ACTIONS(11110), 1, + anon_sym__modify, + ACTIONS(11112), 1, + anon_sym_RBRACE, + STATE(5343), 1, + sym_setter_specifier, + STATE(5375), 1, + sym_getter_specifier, + STATE(5376), 1, + sym_modify_specifier, + STATE(8139), 1, + sym_mutation_modifier, + ACTIONS(5368), 2, + anon_sym_mutating, + anon_sym_nonmutating, + STATE(4992), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(4754), 4, + sym_computed_getter, + sym_computed_modify, + sym_computed_setter, + aux_sym_computed_property_repeat1, + [137810] = 15, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11114), 1, + anon_sym_LPAREN, + ACTIONS(11116), 1, + anon_sym_case, + ACTIONS(11118), 1, + anon_sym_is, + ACTIONS(11120), 1, + sym_wildcard_pattern, + STATE(4893), 1, + sym_binding_pattern_kind, + STATE(4955), 1, + sym__simple_user_type, + STATE(5498), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(8292), 1, + sym_user_type, + STATE(8631), 1, + sym_binding_pattern, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [137862] = 15, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11122), 1, + anon_sym_LPAREN, + ACTIONS(11124), 1, + anon_sym_case, + ACTIONS(11126), 1, + anon_sym_is, + ACTIONS(11128), 1, + sym_wildcard_pattern, + STATE(4921), 1, + sym_binding_pattern_kind, + STATE(4955), 1, + sym__simple_user_type, + STATE(5422), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(8225), 1, + sym_binding_pattern, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [137914] = 15, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11072), 1, + anon_sym_LPAREN, + ACTIONS(11076), 1, + anon_sym_case, + ACTIONS(11078), 1, + anon_sym_is, + ACTIONS(11080), 1, + sym_wildcard_pattern, + STATE(4923), 1, + sym_binding_pattern_kind, + STATE(4955), 1, + sym__simple_user_type, + STATE(5436), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(8292), 1, + sym_user_type, + STATE(8603), 1, + sym_binding_pattern, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [137966] = 13, + ACTIONS(11130), 1, + anon_sym_RBRACE, + ACTIONS(11132), 1, + anon_sym_get, + ACTIONS(11135), 1, + anon_sym_set, + ACTIONS(11138), 1, + anon_sym__modify, + ACTIONS(11141), 1, + anon_sym_AT, + STATE(5343), 1, + sym_setter_specifier, + STATE(5375), 1, + sym_getter_specifier, + STATE(5376), 1, + sym_modify_specifier, + STATE(8139), 1, + sym_mutation_modifier, + ACTIONS(11144), 2, + anon_sym_mutating, + anon_sym_nonmutating, + STATE(4992), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(4754), 4, + sym_computed_getter, + sym_computed_modify, + sym_computed_setter, + aux_sym_computed_property_repeat1, + [138014] = 10, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(11147), 1, + sym__immediate_quest, + ACTIONS(11149), 1, + sym__arrow_operator_custom, + STATE(4522), 1, + sym__arrow_operator, + STATE(5378), 1, + aux_sym_optional_type_repeat1, + STATE(9789), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6655), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 7, + sym__semi, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [138056] = 13, + ACTIONS(495), 1, + anon_sym_AT, + ACTIONS(11106), 1, + anon_sym_get, + ACTIONS(11108), 1, + anon_sym_set, + ACTIONS(11110), 1, + anon_sym__modify, + ACTIONS(11151), 1, + anon_sym_RBRACE, + STATE(5343), 1, + sym_setter_specifier, + STATE(5375), 1, + sym_getter_specifier, + STATE(5376), 1, + sym_modify_specifier, + STATE(8139), 1, + sym_mutation_modifier, + ACTIONS(5368), 2, + anon_sym_mutating, + anon_sym_nonmutating, + STATE(4992), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(4754), 4, + sym_computed_getter, + sym_computed_modify, + sym_computed_setter, + aux_sym_computed_property_repeat1, + [138104] = 10, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(11153), 1, + sym__immediate_quest, + ACTIONS(11155), 1, + sym__arrow_operator_custom, + STATE(4411), 1, + sym__arrow_operator, + STATE(5409), 1, + aux_sym_optional_type_repeat1, + STATE(9818), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6921), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 7, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + [138146] = 15, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11086), 1, + anon_sym_LPAREN, + ACTIONS(11090), 1, + anon_sym_case, + ACTIONS(11092), 1, + anon_sym_is, + ACTIONS(11094), 1, + sym_wildcard_pattern, + STATE(4935), 1, + sym_binding_pattern_kind, + STATE(4955), 1, + sym__simple_user_type, + STATE(5488), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(8242), 1, + sym_binding_pattern, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [138198] = 13, + ACTIONS(495), 1, + anon_sym_AT, + ACTIONS(11106), 1, + anon_sym_get, + ACTIONS(11108), 1, + anon_sym_set, + ACTIONS(11110), 1, + anon_sym__modify, + ACTIONS(11157), 1, + anon_sym_RBRACE, + STATE(5343), 1, + sym_setter_specifier, + STATE(5375), 1, + sym_getter_specifier, + STATE(5376), 1, + sym_modify_specifier, + STATE(8139), 1, + sym_mutation_modifier, + ACTIONS(5368), 2, + anon_sym_mutating, + anon_sym_nonmutating, + STATE(4992), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(4754), 4, + sym_computed_getter, + sym_computed_modify, + sym_computed_setter, + aux_sym_computed_property_repeat1, + [138246] = 10, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(11159), 1, + sym__immediate_quest, + ACTIONS(11161), 1, + sym__arrow_operator_custom, + STATE(4644), 1, + sym__arrow_operator, + STATE(5494), 1, + aux_sym_optional_type_repeat1, + STATE(9668), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(7011), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 7, + sym__semi, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [138288] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5509), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(7105), 1, + sym_binding_pattern, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [138337] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7315), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [138380] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7155), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [138423] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7273), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [138466] = 3, + ACTIONS(4993), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 15, + sym__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, + [138493] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7167), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [138536] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7350), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [138579] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5646), 1, + sym_simple_identifier, + STATE(6686), 1, + sym_binding_pattern, + STATE(6710), 1, + sym__dot, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [138628] = 10, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(11171), 1, + sym__immediate_quest, + ACTIONS(11173), 1, + sym__arrow_operator_custom, + STATE(4552), 1, + sym__arrow_operator, + STATE(5543), 1, + aux_sym_optional_type_repeat1, + STATE(9797), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6672), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 6, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + [138669] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7071), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [138712] = 16, + ACTIONS(5344), 1, + anon_sym_func, + ACTIONS(5350), 1, + anon_sym_init, + ACTIONS(5958), 1, + anon_sym_async, + ACTIONS(5962), 1, + anon_sym_typealias, + ACTIONS(11038), 1, + anon_sym_associatedtype, + ACTIONS(11175), 1, + anon_sym_class, + ACTIONS(11177), 1, + anon_sym_deinit, + ACTIONS(11179), 1, + anon_sym_subscript, + STATE(6254), 1, + sym_value_binding_pattern, + STATE(7095), 1, + sym__constructor_function_decl, + STATE(7096), 1, + sym__non_constructor_function_decl, + STATE(8045), 1, + sym__modifierless_function_declaration_no_body, + STATE(8410), 1, + sym__modifierless_typealias_declaration, + STATE(10025), 1, + sym__async_modifier, + ACTIONS(5966), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [138765] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5646), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(7353), 1, + sym_binding_pattern, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [138814] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7054), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [138857] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7308), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [138900] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7304), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [138943] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5471), 1, + sym_simple_identifier, + STATE(6559), 1, + sym_binding_pattern, + STATE(6710), 1, + sym__dot, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [138992] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7175), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [139035] = 3, + ACTIONS(4985), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 15, + sym__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, + [139062] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7243), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [139105] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7176), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [139148] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7247), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [139191] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7250), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [139234] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7256), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [139277] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5517), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(6877), 1, + sym_binding_pattern, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [139326] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5646), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(6835), 1, + sym_binding_pattern, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [139375] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5430), 1, + sym_simple_identifier, + STATE(6397), 1, + sym_binding_pattern, + STATE(6710), 1, + sym__dot, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [139424] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7152), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [139467] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7251), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [139510] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7151), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [139553] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7316), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [139596] = 3, + ACTIONS(4985), 1, + anon_sym_QMARK, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 16, + sym_multiline_comment, + sym__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, + [139623] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7318), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [139666] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7320), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [139709] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7148), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [139752] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7238), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [139795] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5428), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(6995), 1, + sym_binding_pattern, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [139844] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7279), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [139887] = 3, + ACTIONS(4989), 1, + anon_sym_QMARK, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 16, + sym_multiline_comment, + sym__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, + [139914] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7192), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [139957] = 14, + ACTIONS(11181), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11185), 1, + anon_sym_LPAREN, + ACTIONS(11187), 1, + anon_sym_is, + ACTIONS(11189), 1, + sym_wildcard_pattern, + ACTIONS(11191), 1, + sym__dot_custom, + STATE(4918), 1, + sym_binding_pattern_kind, + STATE(4955), 1, + sym__simple_user_type, + STATE(5598), 1, + sym_simple_identifier, + STATE(6802), 1, + sym__dot, + STATE(7008), 1, + sym_binding_pattern, + STATE(9195), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(11183), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [140006] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7062), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [140049] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7324), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [140092] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7325), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [140135] = 11, + ACTIONS(4735), 1, + anon_sym_QMARK, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(11193), 1, + sym__immediate_quest, + ACTIONS(11195), 1, + sym__arrow_operator_custom, + STATE(4430), 1, + sym__arrow_operator, + STATE(5601), 1, + aux_sym_optional_type_repeat1, + STATE(9740), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6342), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 5, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_AMP, + [140178] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7336), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [140221] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5383), 1, + sym_simple_identifier, + STATE(6661), 1, + sym_binding_pattern, + STATE(6710), 1, + sym__dot, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [140270] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7343), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [140313] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5503), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(6828), 1, + sym_binding_pattern, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [140362] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7341), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [140405] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5646), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(6979), 1, + sym_binding_pattern, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [140454] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5496), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(6973), 1, + sym_binding_pattern, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [140503] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5646), 1, + sym_simple_identifier, + STATE(6328), 1, + sym_binding_pattern, + STATE(6710), 1, + sym__dot, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [140552] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5646), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(6931), 1, + sym_binding_pattern, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [140601] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7291), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [140644] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7292), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [140687] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7293), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [140730] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7299), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [140773] = 3, + ACTIONS(4993), 1, + anon_sym_QMARK, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 16, + sym_multiline_comment, + sym__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, + [140800] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7340), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [140843] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5646), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(6826), 1, + sym_binding_pattern, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [140892] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5364), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(6819), 1, + sym_binding_pattern, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [140941] = 3, + ACTIONS(4989), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 15, + sym__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, + [140968] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5646), 1, + sym_simple_identifier, + STATE(6334), 1, + sym_binding_pattern, + STATE(6710), 1, + sym__dot, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [141017] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7317), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [141060] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7329), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [141103] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7154), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [141146] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5646), 1, + sym_simple_identifier, + STATE(6418), 1, + sym_binding_pattern, + STATE(6710), 1, + sym__dot, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [141195] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7306), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [141238] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5514), 1, + sym_simple_identifier, + STATE(6710), 1, + sym__dot, + STATE(6903), 1, + sym_binding_pattern, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [141287] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7319), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [141330] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7321), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [141373] = 14, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11008), 1, + sym__dot_custom, + ACTIONS(11163), 1, + anon_sym_LPAREN, + ACTIONS(11165), 1, + anon_sym_is, + ACTIONS(11167), 1, + sym_wildcard_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(4967), 1, + sym_binding_pattern_kind, + STATE(5646), 1, + sym_simple_identifier, + STATE(6562), 1, + sym_binding_pattern, + STATE(6710), 1, + sym__dot, + STATE(8292), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [141422] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7326), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [141465] = 11, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7323), 1, + sym__inheritance_specifiers, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6578), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [141508] = 5, + ACTIONS(11201), 1, + sym__async_keyword_custom, + ACTIONS(11199), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(4854), 4, + sym__async_keyword, + sym__async_keyword_internal, + sym_throws, + aux_sym__getter_effects, + ACTIONS(11197), 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, + [141538] = 5, + ACTIONS(11208), 1, + sym__async_keyword_custom, + ACTIONS(11205), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(4836), 4, + sym__async_keyword, + sym__async_keyword_internal, + sym_throws, + aux_sym__getter_effects, + ACTIONS(11203), 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, + [141568] = 6, + ACTIONS(5029), 1, + anon_sym_QMARK, + ACTIONS(11211), 1, + sym__dot_custom, + STATE(4837), 1, + aux_sym_user_type_repeat1, + STATE(6258), 1, + sym__dot, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 12, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [141600] = 5, + ACTIONS(5086), 1, + anon_sym_QMARK, + ACTIONS(11214), 1, + anon_sym_LT, + STATE(4971), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 13, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [141630] = 6, + ACTIONS(5029), 1, + anon_sym_QMARK, + ACTIONS(11216), 1, + sym__dot_custom, + STATE(4839), 1, + aux_sym_user_type_repeat1, + STATE(6092), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 11, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [141662] = 7, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + STATE(2622), 1, + sym_simple_identifier, + STATE(2902), 1, + sym_identifier, + STATE(6276), 1, + sym__import_kind, + ACTIONS(8167), 3, + aux_sym_simple_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(11219), 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, + [141696] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 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, + [141720] = 7, + ACTIONS(10841), 1, + aux_sym_simple_identifier_token1, + STATE(6310), 1, + sym__import_kind, + STATE(6836), 1, + sym_simple_identifier, + STATE(8774), 1, + sym_identifier, + ACTIONS(10843), 3, + aux_sym_simple_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(11221), 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, + [141754] = 6, + ACTIONS(5022), 1, + anon_sym_QMARK, + ACTIONS(11223), 1, + sym__dot_custom, + STATE(4848), 1, + aux_sym_user_type_repeat1, + STATE(6092), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 11, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [141786] = 10, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(4887), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(7191), 2, + sym_user_type, + sym_function_type, + STATE(7229), 2, + sym_inheritance_specifier, + sym__annotated_inheritance_specifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [141826] = 9, + ACTIONS(801), 1, + anon_sym_LBRACE, + ACTIONS(11064), 1, + sym__immediate_quest, + ACTIONS(11225), 1, + anon_sym_LPAREN, + ACTIONS(11227), 1, + sym__dot_custom, + STATE(1251), 1, + sym_constructor_suffix, + STATE(5072), 1, + aux_sym_optional_type_repeat1, + STATE(1283), 2, + sym__constructor_value_arguments, + sym_lambda_literal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_AMP, + [141864] = 7, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + STATE(6163), 1, + sym__import_kind, + STATE(7149), 1, + sym_simple_identifier, + STATE(10349), 1, + sym_identifier, + ACTIONS(10737), 3, + aux_sym_simple_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(11229), 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, + [141898] = 6, + ACTIONS(5022), 1, + anon_sym_QMARK, + ACTIONS(11231), 1, + sym__dot_custom, + STATE(4853), 1, + aux_sym_user_type_repeat1, + STATE(6258), 1, + sym__dot, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 12, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [141930] = 6, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(11223), 1, + sym__dot_custom, + STATE(4839), 1, + aux_sym_user_type_repeat1, + STATE(6092), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 11, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [141962] = 10, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(11233), 1, + sym__immediate_quest, + ACTIONS(11235), 1, + sym__arrow_operator_custom, + STATE(4575), 1, + sym__arrow_operator, + STATE(5150), 1, + aux_sym_optional_type_repeat1, + STATE(9697), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6678), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 5, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_in, + [142002] = 7, + ACTIONS(10841), 1, + aux_sym_simple_identifier_token1, + STATE(6130), 1, + sym__import_kind, + STATE(6836), 1, + sym_simple_identifier, + STATE(8784), 1, + sym_identifier, + ACTIONS(10843), 3, + aux_sym_simple_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(11237), 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, + [142036] = 7, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + STATE(2622), 1, + sym_simple_identifier, + STATE(2934), 1, + sym_identifier, + STATE(6123), 1, + sym__import_kind, + ACTIONS(8167), 3, + aux_sym_simple_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(11239), 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, + [142070] = 5, + ACTIONS(11201), 1, + sym__async_keyword_custom, + ACTIONS(11199), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(4858), 4, + sym__async_keyword, + sym__async_keyword_internal, + sym_throws, + aux_sym__getter_effects, + ACTIONS(11241), 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, + [142100] = 6, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(11231), 1, + sym__dot_custom, + STATE(4837), 1, + aux_sym_user_type_repeat1, + STATE(6258), 1, + sym__dot, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 12, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [142132] = 5, + ACTIONS(11201), 1, + sym__async_keyword_custom, + ACTIONS(11199), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(4836), 4, + sym__async_keyword, + sym__async_keyword_internal, + sym_throws, + aux_sym__getter_effects, + ACTIONS(11243), 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, + [142162] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 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, + [142186] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 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, + [142210] = 5, + ACTIONS(5086), 1, + anon_sym_QMARK, + ACTIONS(11245), 1, + anon_sym_LT, + STATE(4948), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 12, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [142240] = 5, + ACTIONS(11201), 1, + sym__async_keyword_custom, + ACTIONS(11199), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(4836), 4, + sym__async_keyword, + sym__async_keyword_internal, + sym_throws, + aux_sym__getter_effects, + ACTIONS(11197), 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, + [142270] = 7, + ACTIONS(10735), 1, + aux_sym_simple_identifier_token1, + STATE(6305), 1, + sym__import_kind, + STATE(7149), 1, + sym_simple_identifier, + STATE(10394), 1, + sym_identifier, + ACTIONS(10737), 3, + aux_sym_simple_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(11247), 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, + [142304] = 5, + ACTIONS(11249), 1, + sym__dot_custom, + STATE(4890), 1, + aux_sym_user_type_repeat1, + STATE(5974), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 11, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [142333] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 14, + sym__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, + [142356] = 13, + ACTIONS(11251), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11255), 1, + anon_sym_LPAREN, + ACTIONS(11257), 1, + anon_sym_is, + ACTIONS(11259), 1, + sym_wildcard_pattern, + ACTIONS(11261), 1, + sym__dot_custom, + STATE(2310), 1, + sym_simple_identifier, + STATE(2345), 1, + sym_property_binding_pattern, + STATE(2485), 1, + sym_non_binding_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(6749), 1, + sym__dot, + STATE(9736), 1, + sym_user_type, + ACTIONS(11253), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [142401] = 13, + ACTIONS(11251), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11255), 1, + anon_sym_LPAREN, + ACTIONS(11257), 1, + anon_sym_is, + ACTIONS(11259), 1, + sym_wildcard_pattern, + ACTIONS(11261), 1, + sym__dot_custom, + STATE(2310), 1, + sym_simple_identifier, + STATE(2335), 1, + sym_property_binding_pattern, + STATE(2485), 1, + sym_non_binding_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(6749), 1, + sym__dot, + STATE(9736), 1, + sym_user_type, + ACTIONS(11253), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [142446] = 9, + ACTIONS(11263), 1, + anon_sym_if, + ACTIONS(11265), 1, + anon_sym_guard, + ACTIONS(11267), 1, + anon_sym_switch, + ACTIONS(11269), 1, + anon_sym_do, + ACTIONS(11271), 1, + anon_sym_for, + ACTIONS(11273), 1, + anon_sym_while, + ACTIONS(11275), 1, + anon_sym_repeat, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(8266), 7, + sym_if_statement, + sym_guard_statement, + sym_switch_statement, + sym_do_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_while_statement, + [142483] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 15, + sym_multiline_comment, + sym__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, + [142506] = 5, + ACTIONS(11277), 1, + sym__dot_custom, + STATE(4880), 1, + aux_sym_user_type_repeat1, + STATE(6103), 1, + sym__dot, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 12, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [142535] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 15, + sym_multiline_comment, + sym__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, + [142558] = 13, + ACTIONS(11279), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11283), 1, + anon_sym_LPAREN, + ACTIONS(11285), 1, + anon_sym_is, + ACTIONS(11287), 1, + sym_wildcard_pattern, + ACTIONS(11289), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(4969), 1, + sym_simple_identifier, + STATE(5076), 1, + sym_property_binding_pattern, + STATE(5394), 1, + sym_non_binding_pattern, + STATE(6316), 1, + sym__dot, + STATE(9716), 1, + sym_user_type, + ACTIONS(11281), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [142603] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 15, + sym_multiline_comment, + sym__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, + [142626] = 13, + ACTIONS(11291), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11295), 1, + anon_sym_LPAREN, + ACTIONS(11297), 1, + anon_sym_is, + ACTIONS(11299), 1, + sym_wildcard_pattern, + ACTIONS(11301), 1, + sym__dot_custom, + STATE(4901), 1, + sym_simple_identifier, + STATE(4955), 1, + sym__simple_user_type, + STATE(5087), 1, + sym_property_binding_pattern, + STATE(5381), 1, + sym_non_binding_pattern, + STATE(6748), 1, + sym__dot, + STATE(8299), 1, + sym_user_type, + ACTIONS(11293), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [142671] = 13, + ACTIONS(11291), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11295), 1, + anon_sym_LPAREN, + ACTIONS(11297), 1, + anon_sym_is, + ACTIONS(11299), 1, + sym_wildcard_pattern, + ACTIONS(11301), 1, + sym__dot_custom, + STATE(4901), 1, + sym_simple_identifier, + STATE(4955), 1, + sym__simple_user_type, + STATE(5108), 1, + sym_property_binding_pattern, + STATE(5381), 1, + sym_non_binding_pattern, + STATE(6748), 1, + sym__dot, + STATE(8299), 1, + sym_user_type, + ACTIONS(11293), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [142716] = 4, + ACTIONS(11303), 1, + anon_sym_LT, + STATE(5061), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 12, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [142743] = 3, + ACTIONS(4819), 1, + anon_sym_QMARK, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 14, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_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, + [142768] = 13, + ACTIONS(11279), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11283), 1, + anon_sym_LPAREN, + ACTIONS(11285), 1, + anon_sym_is, + ACTIONS(11287), 1, + sym_wildcard_pattern, + ACTIONS(11289), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(4969), 1, + sym_simple_identifier, + STATE(5166), 1, + sym_property_binding_pattern, + STATE(5394), 1, + sym_non_binding_pattern, + STATE(6316), 1, + sym__dot, + STATE(9716), 1, + sym_user_type, + ACTIONS(11281), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [142813] = 4, + ACTIONS(11305), 1, + anon_sym_LT, + STATE(4991), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 13, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [142840] = 13, + ACTIONS(11307), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11311), 1, + anon_sym_LPAREN, + ACTIONS(11313), 1, + anon_sym_is, + ACTIONS(11315), 1, + sym_wildcard_pattern, + ACTIONS(11317), 1, + sym__dot_custom, + STATE(3083), 1, + sym_simple_identifier, + STATE(3298), 1, + sym_property_binding_pattern, + STATE(3437), 1, + sym_non_binding_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(6556), 1, + sym__dot, + STATE(9772), 1, + sym_user_type, + ACTIONS(11309), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [142885] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 14, + sym__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, + [142908] = 5, + ACTIONS(11249), 1, + sym__dot_custom, + STATE(4860), 1, + aux_sym_user_type_repeat1, + STATE(5974), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 11, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [142937] = 10, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(11319), 1, + sym__immediate_quest, + ACTIONS(11321), 1, + sym__arrow_operator_custom, + STATE(4596), 1, + sym__arrow_operator, + STATE(6135), 1, + aux_sym_optional_type_repeat1, + STATE(9752), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(7029), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 5, + sym_multiline_comment, + sym__semi, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_RBRACE, + [142976] = 5, + ACTIONS(11277), 1, + sym__dot_custom, + STATE(4888), 1, + aux_sym_user_type_repeat1, + STATE(6103), 1, + sym__dot, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 12, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [143005] = 13, + ACTIONS(11307), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11311), 1, + anon_sym_LPAREN, + ACTIONS(11313), 1, + anon_sym_is, + ACTIONS(11315), 1, + sym_wildcard_pattern, + ACTIONS(11317), 1, + sym__dot_custom, + STATE(3083), 1, + sym_simple_identifier, + STATE(3371), 1, + sym_property_binding_pattern, + STATE(3437), 1, + sym_non_binding_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(6556), 1, + sym__dot, + STATE(9772), 1, + sym_user_type, + ACTIONS(11309), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [143050] = 10, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(11064), 1, + sym__immediate_quest, + ACTIONS(11323), 1, + sym__arrow_operator_custom, + STATE(4491), 1, + sym__arrow_operator, + STATE(5072), 1, + aux_sym_optional_type_repeat1, + STATE(9721), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6313), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 4, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_in, + [143089] = 13, + ACTIONS(11291), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11295), 1, + anon_sym_LPAREN, + ACTIONS(11297), 1, + anon_sym_is, + ACTIONS(11299), 1, + sym_wildcard_pattern, + ACTIONS(11301), 1, + sym__dot_custom, + STATE(4901), 1, + sym_simple_identifier, + STATE(4955), 1, + sym__simple_user_type, + STATE(5041), 1, + sym_property_binding_pattern, + STATE(5381), 1, + sym_non_binding_pattern, + STATE(6748), 1, + sym__dot, + STATE(8299), 1, + sym_user_type, + ACTIONS(11293), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [143134] = 13, + ACTIONS(11307), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11311), 1, + anon_sym_LPAREN, + ACTIONS(11313), 1, + anon_sym_is, + ACTIONS(11315), 1, + sym_wildcard_pattern, + ACTIONS(11317), 1, + sym__dot_custom, + STATE(3083), 1, + sym_simple_identifier, + STATE(3268), 1, + sym_property_binding_pattern, + STATE(3437), 1, + sym_non_binding_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(6556), 1, + sym__dot, + STATE(9772), 1, + sym_user_type, + ACTIONS(11309), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [143179] = 13, + ACTIONS(11279), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11283), 1, + anon_sym_LPAREN, + ACTIONS(11285), 1, + anon_sym_is, + ACTIONS(11287), 1, + sym_wildcard_pattern, + ACTIONS(11289), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(4969), 1, + sym_simple_identifier, + STATE(5039), 1, + sym_property_binding_pattern, + STATE(5394), 1, + sym_non_binding_pattern, + STATE(6316), 1, + sym__dot, + STATE(9716), 1, + sym_user_type, + ACTIONS(11281), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [143224] = 3, + ACTIONS(4819), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 13, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_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, + [143249] = 10, + ACTIONS(8171), 1, + anon_sym_LPAREN, + ACTIONS(11169), 1, + anon_sym_AT, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5632), 1, + sym_tuple_type, + STATE(7078), 1, + sym_inheritance_specifier, + STATE(5557), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(7191), 2, + sym_user_type, + sym_function_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [143288] = 5, + ACTIONS(11325), 1, + sym__dot_custom, + STATE(4888), 1, + aux_sym_user_type_repeat1, + STATE(6103), 1, + sym__dot, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 12, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [143317] = 13, + ACTIONS(11251), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11255), 1, + anon_sym_LPAREN, + ACTIONS(11257), 1, + anon_sym_is, + ACTIONS(11259), 1, + sym_wildcard_pattern, + ACTIONS(11261), 1, + sym__dot_custom, + STATE(2310), 1, + sym_simple_identifier, + STATE(2330), 1, + sym_property_binding_pattern, + STATE(2485), 1, + sym_non_binding_pattern, + STATE(4955), 1, + sym__simple_user_type, + STATE(6749), 1, + sym__dot, + STATE(9736), 1, + sym_user_type, + ACTIONS(11253), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [143362] = 5, + ACTIONS(11328), 1, + sym__dot_custom, + STATE(4890), 1, + aux_sym_user_type_repeat1, + STATE(5974), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 11, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [143391] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 14, + sym__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, + [143414] = 9, + ACTIONS(11331), 1, + anon_sym_if, + ACTIONS(11333), 1, + anon_sym_guard, + ACTIONS(11335), 1, + anon_sym_switch, + ACTIONS(11337), 1, + anon_sym_do, + ACTIONS(11339), 1, + anon_sym_for, + ACTIONS(11341), 1, + anon_sym_while, + ACTIONS(11343), 1, + anon_sym_repeat, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(3910), 7, + sym_if_statement, + sym_guard_statement, + sym_switch_statement, + sym_do_statement, + sym_for_statement, + sym_while_statement, + sym_repeat_while_statement, + [143451] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11345), 1, + anon_sym_LPAREN, + ACTIONS(11347), 1, + anon_sym_is, + ACTIONS(11349), 1, + sym_wildcard_pattern, + ACTIONS(11351), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5350), 1, + sym_simple_identifier, + STATE(5731), 1, + sym_non_binding_pattern, + STATE(6484), 1, + sym__dot, + STATE(9560), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [143493] = 12, + ACTIONS(11040), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11353), 1, + anon_sym_LPAREN, + ACTIONS(11355), 1, + anon_sym_is, + ACTIONS(11357), 1, + sym_wildcard_pattern, + ACTIONS(11359), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5331), 1, + sym_simple_identifier, + STATE(5773), 1, + sym_non_binding_pattern, + STATE(6814), 1, + sym__dot, + STATE(9691), 1, + sym_user_type, + ACTIONS(11042), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [143535] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 13, + aux_sym_simple_identifier_token1, + 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_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + [143557] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5497), 1, + sym_simple_identifier, + STATE(6490), 1, + sym__dot, + STATE(6616), 1, + sym_non_binding_pattern, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [143599] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5429), 1, + sym_simple_identifier, + STATE(6427), 1, + sym_non_binding_pattern, + STATE(6490), 1, + sym__dot, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [143641] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11345), 1, + anon_sym_LPAREN, + ACTIONS(11347), 1, + anon_sym_is, + ACTIONS(11349), 1, + sym_wildcard_pattern, + ACTIONS(11351), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5350), 1, + sym_simple_identifier, + STATE(5835), 1, + sym_non_binding_pattern, + STATE(6484), 1, + sym__dot, + STATE(9560), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [143683] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 13, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + [143705] = 3, + ACTIONS(4985), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 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, + [143729] = 7, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(11369), 1, + anon_sym_QMARK, + STATE(2302), 1, + sym_type_arguments, + STATE(5635), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6131), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [143761] = 3, + ACTIONS(4989), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 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, + [143785] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5452), 1, + sym_simple_identifier, + STATE(6490), 1, + sym__dot, + STATE(6654), 1, + sym_non_binding_pattern, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [143827] = 3, + ACTIONS(4993), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 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, + [143851] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5549), 1, + sym_simple_identifier, + STATE(6490), 1, + sym__dot, + STATE(6701), 1, + sym_non_binding_pattern, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [143893] = 5, + ACTIONS(11371), 1, + sym__dot_custom, + STATE(4908), 1, + aux_sym_user_type_repeat1, + STATE(6279), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 10, + sym__arrow_operator_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_in, + [143921] = 4, + ACTIONS(11373), 1, + anon_sym_LT, + STATE(5120), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 11, + sym__arrow_operator_custom, + sym__dot_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_in, + [143947] = 5, + ACTIONS(11371), 1, + sym__dot_custom, + STATE(4922), 1, + aux_sym_user_type_repeat1, + STATE(6279), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 10, + sym__arrow_operator_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_in, + [143975] = 12, + ACTIONS(11181), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11375), 1, + anon_sym_LPAREN, + ACTIONS(11377), 1, + anon_sym_is, + ACTIONS(11379), 1, + sym_wildcard_pattern, + ACTIONS(11381), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5550), 1, + sym_simple_identifier, + STATE(6791), 1, + sym__dot, + STATE(7201), 1, + sym_non_binding_pattern, + STATE(9200), 1, + sym_user_type, + ACTIONS(11183), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144017] = 6, + ACTIONS(821), 1, + anon_sym_inout, + ACTIONS(823), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4947), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(11383), 3, + aux_sym_simple_identifier_token1, + anon_sym_some, + anon_sym_AT, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11385), 5, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_LBRACK, + [144047] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11345), 1, + anon_sym_LPAREN, + ACTIONS(11347), 1, + anon_sym_is, + ACTIONS(11349), 1, + sym_wildcard_pattern, + ACTIONS(11351), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5350), 1, + sym_simple_identifier, + STATE(5867), 1, + sym_non_binding_pattern, + STATE(6484), 1, + sym__dot, + STATE(9560), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144089] = 10, + ACTIONS(11387), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11391), 1, + anon_sym_self, + STATE(6926), 1, + sym_ownership_modifier, + STATE(7132), 1, + sym_simple_identifier, + STATE(7550), 1, + sym_capture_list_item, + STATE(8616), 1, + sym_self_expression, + ACTIONS(851), 2, + anon_sym_weak, + anon_sym_unowned, + ACTIONS(853), 2, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + ACTIONS(11389), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144127] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5549), 1, + sym_simple_identifier, + STATE(6490), 1, + sym__dot, + STATE(6911), 1, + sym_non_binding_pattern, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144169] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5366), 1, + sym_simple_identifier, + STATE(6490), 1, + sym__dot, + STATE(7053), 1, + sym_non_binding_pattern, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144211] = 10, + ACTIONS(11395), 1, + sym__arrow_operator_custom, + ACTIONS(11399), 1, + sym_where_keyword, + ACTIONS(11401), 1, + sym__async_keyword_custom, + STATE(4288), 1, + sym__arrow_operator, + STATE(5909), 1, + sym_throws, + STATE(8006), 1, + sym_type_constraints, + ACTIONS(11397), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(5211), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(11393), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144249] = 10, + ACTIONS(11399), 1, + sym_where_keyword, + ACTIONS(11401), 1, + sym__async_keyword_custom, + ACTIONS(11403), 1, + sym__arrow_operator_custom, + STATE(4274), 1, + sym__arrow_operator, + STATE(5912), 1, + sym_throws, + STATE(7994), 1, + sym_type_constraints, + ACTIONS(11397), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(5214), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(11393), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144287] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5549), 1, + sym_simple_identifier, + STATE(6490), 1, + sym__dot, + STATE(7001), 1, + sym_non_binding_pattern, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144329] = 12, + ACTIONS(11181), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11405), 1, + anon_sym_LPAREN, + ACTIONS(11407), 1, + anon_sym_is, + ACTIONS(11409), 1, + sym_wildcard_pattern, + ACTIONS(11411), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5590), 1, + sym_simple_identifier, + STATE(6124), 1, + sym_non_binding_pattern, + STATE(6793), 1, + sym__dot, + STATE(9663), 1, + sym_user_type, + ACTIONS(11183), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144371] = 3, + ACTIONS(4985), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 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, + [144395] = 12, + ACTIONS(11181), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11375), 1, + anon_sym_LPAREN, + ACTIONS(11377), 1, + anon_sym_is, + ACTIONS(11379), 1, + sym_wildcard_pattern, + ACTIONS(11381), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5550), 1, + sym_simple_identifier, + STATE(6791), 1, + sym__dot, + STATE(7092), 1, + sym_non_binding_pattern, + STATE(9200), 1, + sym_user_type, + ACTIONS(11183), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144437] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11345), 1, + anon_sym_LPAREN, + ACTIONS(11347), 1, + anon_sym_is, + ACTIONS(11349), 1, + sym_wildcard_pattern, + ACTIONS(11351), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5350), 1, + sym_simple_identifier, + STATE(5774), 1, + sym_non_binding_pattern, + STATE(6484), 1, + sym__dot, + STATE(9560), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144479] = 5, + ACTIONS(11413), 1, + sym__dot_custom, + STATE(4922), 1, + aux_sym_user_type_repeat1, + STATE(6279), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 10, + sym__arrow_operator_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_in, + [144507] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11345), 1, + anon_sym_LPAREN, + ACTIONS(11347), 1, + anon_sym_is, + ACTIONS(11349), 1, + sym_wildcard_pattern, + ACTIONS(11351), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5350), 1, + sym_simple_identifier, + STATE(5832), 1, + sym_non_binding_pattern, + STATE(6484), 1, + sym__dot, + STATE(9560), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144549] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11345), 1, + anon_sym_LPAREN, + ACTIONS(11347), 1, + anon_sym_is, + ACTIONS(11349), 1, + sym_wildcard_pattern, + ACTIONS(11351), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5350), 1, + sym_simple_identifier, + STATE(5689), 1, + sym_non_binding_pattern, + STATE(6484), 1, + sym__dot, + STATE(9560), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144591] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11345), 1, + anon_sym_LPAREN, + ACTIONS(11347), 1, + anon_sym_is, + ACTIONS(11349), 1, + sym_wildcard_pattern, + ACTIONS(11351), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5350), 1, + sym_simple_identifier, + STATE(5764), 1, + sym_non_binding_pattern, + STATE(6484), 1, + sym__dot, + STATE(9560), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144633] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5476), 1, + sym_simple_identifier, + STATE(6490), 1, + sym__dot, + STATE(6606), 1, + sym_non_binding_pattern, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144675] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5549), 1, + sym_simple_identifier, + STATE(6490), 1, + sym__dot, + STATE(7099), 1, + sym_non_binding_pattern, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144717] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11345), 1, + anon_sym_LPAREN, + ACTIONS(11347), 1, + anon_sym_is, + ACTIONS(11349), 1, + sym_wildcard_pattern, + ACTIONS(11351), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5350), 1, + sym_simple_identifier, + STATE(5919), 1, + sym_non_binding_pattern, + STATE(6484), 1, + sym__dot, + STATE(9560), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144759] = 3, + ACTIONS(5134), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 12, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [144783] = 5, + ACTIONS(5103), 1, + anon_sym_QMARK, + ACTIONS(11416), 1, + sym__immediate_quest, + STATE(4930), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 10, + sym__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, + [144811] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5515), 1, + sym_simple_identifier, + STATE(6490), 1, + sym__dot, + STATE(6829), 1, + sym_non_binding_pattern, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144853] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5549), 1, + sym_simple_identifier, + STATE(6474), 1, + sym_non_binding_pattern, + STATE(6490), 1, + sym__dot, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144895] = 3, + ACTIONS(5029), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 12, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [144919] = 3, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 12, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [144943] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11345), 1, + anon_sym_LPAREN, + ACTIONS(11347), 1, + anon_sym_is, + ACTIONS(11349), 1, + sym_wildcard_pattern, + ACTIONS(11351), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5350), 1, + sym_simple_identifier, + STATE(5784), 1, + sym_non_binding_pattern, + STATE(6484), 1, + sym__dot, + STATE(9560), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [144985] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11345), 1, + anon_sym_LPAREN, + ACTIONS(11347), 1, + anon_sym_is, + ACTIONS(11349), 1, + sym_wildcard_pattern, + ACTIONS(11351), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5350), 1, + sym_simple_identifier, + STATE(5730), 1, + sym_non_binding_pattern, + STATE(6484), 1, + sym__dot, + STATE(9560), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [145027] = 5, + ACTIONS(11419), 1, + sym__dot_custom, + STATE(4937), 1, + aux_sym_user_type_repeat1, + STATE(5963), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 10, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [145055] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5427), 1, + sym_simple_identifier, + STATE(6354), 1, + sym_non_binding_pattern, + STATE(6490), 1, + sym__dot, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [145097] = 10, + ACTIONS(11399), 1, + sym_where_keyword, + ACTIONS(11401), 1, + sym__async_keyword_custom, + ACTIONS(11424), 1, + sym__arrow_operator_custom, + STATE(4259), 1, + sym__arrow_operator, + STATE(5810), 1, + sym_throws, + STATE(7932), 1, + sym_type_constraints, + ACTIONS(11397), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(5241), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(11422), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [145135] = 10, + ACTIONS(11399), 1, + sym_where_keyword, + ACTIONS(11401), 1, + sym__async_keyword_custom, + ACTIONS(11426), 1, + sym__arrow_operator_custom, + STATE(4319), 1, + sym__arrow_operator, + STATE(5797), 1, + sym_throws, + STATE(7927), 1, + sym_type_constraints, + ACTIONS(11397), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(5248), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(11422), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [145173] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5549), 1, + sym_simple_identifier, + STATE(6490), 1, + sym__dot, + STATE(6506), 1, + sym_non_binding_pattern, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [145215] = 5, + ACTIONS(11428), 1, + sym__dot_custom, + STATE(2275), 1, + aux_sym_user_type_repeat1, + STATE(6106), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 10, + 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, + [145243] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5379), 1, + sym_simple_identifier, + STATE(6490), 1, + sym__dot, + STATE(6854), 1, + sym_non_binding_pattern, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [145285] = 5, + ACTIONS(4735), 1, + anon_sym_QMARK, + ACTIONS(11028), 1, + sym__immediate_quest, + STATE(4946), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 11, + sym_multiline_comment, + sym__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, + [145313] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5549), 1, + sym_simple_identifier, + STATE(6490), 1, + sym__dot, + STATE(6769), 1, + sym_non_binding_pattern, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [145355] = 5, + ACTIONS(5055), 1, + anon_sym_QMARK, + ACTIONS(11431), 1, + sym__immediate_quest, + STATE(4953), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 11, + sym_multiline_comment, + sym__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, + [145383] = 6, + ACTIONS(11437), 1, + anon_sym_inout, + ACTIONS(11440), 2, + anon_sym_ATescaping, + anon_sym_ATautoclosure, + STATE(4947), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(11433), 3, + aux_sym_simple_identifier_token1, + anon_sym_some, + anon_sym_AT, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11435), 5, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_LBRACK, + [145413] = 3, + ACTIONS(5130), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 12, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [145437] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11345), 1, + anon_sym_LPAREN, + ACTIONS(11347), 1, + anon_sym_is, + ACTIONS(11349), 1, + sym_wildcard_pattern, + ACTIONS(11351), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5350), 1, + sym_simple_identifier, + STATE(5862), 1, + sym_non_binding_pattern, + STATE(6484), 1, + sym__dot, + STATE(9560), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [145479] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5519), 1, + sym_simple_identifier, + STATE(6490), 1, + sym__dot, + STATE(6761), 1, + sym_non_binding_pattern, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [145521] = 3, + ACTIONS(4989), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 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, + [145545] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5549), 1, + sym_simple_identifier, + STATE(6344), 1, + sym_non_binding_pattern, + STATE(6490), 1, + sym__dot, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [145587] = 5, + ACTIONS(5103), 1, + anon_sym_QMARK, + ACTIONS(11443), 1, + sym__immediate_quest, + STATE(4953), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 11, + sym_multiline_comment, + sym__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, + [145615] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 13, + sym__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, + [145637] = 5, + ACTIONS(11446), 1, + sym__dot_custom, + STATE(4942), 1, + aux_sym_user_type_repeat1, + STATE(6106), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 10, + 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, + [145665] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 13, + sym__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, + [145687] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 13, + sym__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, + [145709] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5549), 1, + sym_simple_identifier, + STATE(6490), 1, + sym__dot, + STATE(6685), 1, + sym_non_binding_pattern, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [145751] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5501), 1, + sym_simple_identifier, + STATE(6490), 1, + sym__dot, + STATE(6529), 1, + sym_non_binding_pattern, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [145793] = 4, + ACTIONS(11449), 1, + anon_sym_LT, + STATE(5181), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 11, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [145819] = 3, + ACTIONS(4993), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 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, + [145843] = 5, + ACTIONS(11451), 1, + sym__dot_custom, + STATE(4963), 1, + aux_sym_user_type_repeat1, + STATE(5963), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 10, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [145871] = 5, + ACTIONS(11451), 1, + sym__dot_custom, + STATE(4937), 1, + aux_sym_user_type_repeat1, + STATE(5963), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 10, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [145899] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5549), 1, + sym_simple_identifier, + STATE(6428), 1, + sym_non_binding_pattern, + STATE(6490), 1, + sym__dot, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [145941] = 10, + ACTIONS(11387), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11391), 1, + anon_sym_self, + STATE(6926), 1, + sym_ownership_modifier, + STATE(7132), 1, + sym_simple_identifier, + STATE(8616), 1, + sym_self_expression, + STATE(8669), 1, + sym_capture_list_item, + ACTIONS(851), 2, + anon_sym_weak, + anon_sym_unowned, + ACTIONS(853), 2, + anon_sym_unowned_LPARENsafe_RPAREN, + anon_sym_unowned_LPARENunsafe_RPAREN, + ACTIONS(11389), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [145979] = 12, + ACTIONS(11040), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11453), 1, + anon_sym_LPAREN, + ACTIONS(11455), 1, + anon_sym_is, + ACTIONS(11457), 1, + sym_wildcard_pattern, + ACTIONS(11459), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5410), 1, + sym_simple_identifier, + STATE(6369), 1, + sym__dot, + STATE(6543), 1, + sym_non_binding_pattern, + STATE(9754), 1, + sym_user_type, + ACTIONS(11042), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [146021] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11345), 1, + anon_sym_LPAREN, + ACTIONS(11347), 1, + anon_sym_is, + ACTIONS(11349), 1, + sym_wildcard_pattern, + ACTIONS(11351), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5350), 1, + sym_simple_identifier, + STATE(5991), 1, + sym_non_binding_pattern, + STATE(6484), 1, + sym__dot, + STATE(9560), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [146063] = 12, + ACTIONS(11040), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11453), 1, + anon_sym_LPAREN, + ACTIONS(11455), 1, + anon_sym_is, + ACTIONS(11457), 1, + sym_wildcard_pattern, + ACTIONS(11459), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5410), 1, + sym_simple_identifier, + STATE(6369), 1, + sym__dot, + STATE(6453), 1, + sym_non_binding_pattern, + STATE(9754), 1, + sym_user_type, + ACTIONS(11042), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [146105] = 7, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(11461), 1, + anon_sym_QMARK, + STATE(2302), 1, + sym_type_arguments, + STATE(5553), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6131), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [146137] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 14, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + [146159] = 3, + ACTIONS(5130), 1, + anon_sym_QMARK, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 13, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [146183] = 3, + ACTIONS(5029), 1, + anon_sym_QMARK, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 13, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [146207] = 3, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 13, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [146231] = 5, + ACTIONS(5055), 1, + anon_sym_QMARK, + ACTIONS(11463), 1, + sym__immediate_quest, + STATE(4930), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 10, + sym__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, + [146259] = 5, + ACTIONS(11465), 1, + sym__dot_custom, + STATE(4985), 1, + aux_sym_user_type_repeat1, + STATE(6057), 1, + sym__dot, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 11, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [146287] = 3, + ACTIONS(5134), 1, + anon_sym_QMARK, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 13, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [146311] = 4, + ACTIONS(11467), 1, + anon_sym_LT, + STATE(5125), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 12, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [146337] = 5, + ACTIONS(4735), 1, + anon_sym_QMARK, + ACTIONS(11024), 1, + sym__immediate_quest, + STATE(4974), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 10, + sym__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, + [146365] = 5, + ACTIONS(11465), 1, + sym__dot_custom, + STATE(4975), 1, + aux_sym_user_type_repeat1, + STATE(6057), 1, + sym__dot, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 11, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [146393] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5549), 1, + sym_simple_identifier, + STATE(6347), 1, + sym_non_binding_pattern, + STATE(6490), 1, + sym__dot, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [146435] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11361), 1, + anon_sym_LPAREN, + ACTIONS(11363), 1, + anon_sym_is, + ACTIONS(11365), 1, + sym_wildcard_pattern, + ACTIONS(11367), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5473), 1, + sym_simple_identifier, + STATE(6490), 1, + sym__dot, + STATE(6620), 1, + sym_non_binding_pattern, + STATE(9624), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [146477] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11345), 1, + anon_sym_LPAREN, + ACTIONS(11347), 1, + anon_sym_is, + ACTIONS(11349), 1, + sym_wildcard_pattern, + ACTIONS(11351), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5350), 1, + sym_simple_identifier, + STATE(5752), 1, + sym_non_binding_pattern, + STATE(6484), 1, + sym__dot, + STATE(9560), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [146519] = 12, + ACTIONS(10990), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11345), 1, + anon_sym_LPAREN, + ACTIONS(11347), 1, + anon_sym_is, + ACTIONS(11349), 1, + sym_wildcard_pattern, + ACTIONS(11351), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5350), 1, + sym_simple_identifier, + STATE(5814), 1, + sym_non_binding_pattern, + STATE(6484), 1, + sym__dot, + STATE(9560), 1, + sym_user_type, + ACTIONS(10992), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [146561] = 12, + ACTIONS(11040), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11353), 1, + anon_sym_LPAREN, + ACTIONS(11355), 1, + anon_sym_is, + ACTIONS(11357), 1, + sym_wildcard_pattern, + ACTIONS(11359), 1, + sym__dot_custom, + STATE(4955), 1, + sym__simple_user_type, + STATE(5331), 1, + sym_simple_identifier, + STATE(6161), 1, + sym_non_binding_pattern, + STATE(6814), 1, + sym__dot, + STATE(9691), 1, + sym_user_type, + ACTIONS(11042), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [146603] = 5, + ACTIONS(11469), 1, + sym__dot_custom, + STATE(4985), 1, + aux_sym_user_type_repeat1, + STATE(6057), 1, + sym__dot, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 11, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [146631] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 14, + sym_multiline_comment, + sym__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, + [146653] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 14, + sym_multiline_comment, + sym__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, + [146675] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 14, + sym_multiline_comment, + sym__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, + [146697] = 5, + ACTIONS(11472), 1, + anon_sym_DOT, + ACTIONS(11474), 1, + anon_sym_AMP, + STATE(4990), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 10, + sym_multiline_comment, + sym__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, + [146724] = 4, + ACTIONS(11474), 1, + anon_sym_AMP, + STATE(5031), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 11, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [146749] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 13, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [146770] = 11, + ACTIONS(495), 1, + anon_sym_AT, + ACTIONS(11106), 1, + anon_sym_get, + ACTIONS(11108), 1, + anon_sym_set, + ACTIONS(11110), 1, + anon_sym__modify, + STATE(5345), 1, + sym_setter_specifier, + STATE(5419), 1, + sym_modify_specifier, + STATE(5431), 1, + sym_getter_specifier, + STATE(8139), 1, + sym_mutation_modifier, + ACTIONS(5368), 2, + anon_sym_mutating, + anon_sym_nonmutating, + STATE(5615), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [146809] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 13, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [146830] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 13, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [146851] = 5, + ACTIONS(11476), 1, + sym__dot_custom, + STATE(4995), 1, + aux_sym_user_type_repeat1, + STATE(6165), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 9, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [146878] = 6, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(11479), 1, + sym__dot_custom, + STATE(5028), 1, + aux_sym_user_type_repeat1, + STATE(6206), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 8, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + [146907] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 12, + sym__arrow_operator_custom, + sym__dot_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_in, + [146928] = 4, + ACTIONS(11481), 1, + anon_sym_LT, + STATE(5291), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 10, + sym__semi, + sym__dot_custom, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [146953] = 8, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(6078), 1, + sym_simple_identifier, + STATE(6645), 1, + sym_identifier, + STATE(9130), 1, + sym_type_constraint, + STATE(5457), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(8639), 2, + sym_inheritance_constraint, + sym_equality_constraint, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11483), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [146986] = 5, + ACTIONS(11487), 1, + sym__dot_custom, + STATE(5001), 1, + aux_sym_user_type_repeat1, + STATE(6165), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 9, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [147013] = 5, + ACTIONS(11487), 1, + sym__dot_custom, + STATE(4995), 1, + aux_sym_user_type_repeat1, + STATE(6165), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 9, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [147040] = 6, + ACTIONS(5022), 1, + anon_sym_QMARK, + ACTIONS(11479), 1, + sym__dot_custom, + STATE(4996), 1, + aux_sym_user_type_repeat1, + STATE(6206), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 8, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + [147069] = 8, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(6078), 1, + sym_simple_identifier, + STATE(6122), 1, + sym_type_constraint, + STATE(6492), 1, + sym_identifier, + STATE(5432), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6371), 2, + sym_inheritance_constraint, + sym_equality_constraint, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11483), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [147102] = 10, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11489), 1, + sym__dot_custom, + STATE(2281), 1, + sym_simple_identifier, + STATE(4955), 1, + sym__simple_user_type, + STATE(4982), 1, + sym_binding_pattern_kind, + STATE(6883), 1, + sym__dot, + STATE(8747), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [147139] = 5, + ACTIONS(5086), 1, + anon_sym_QMARK, + ACTIONS(11491), 1, + anon_sym_LT, + STATE(5227), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 9, + sym__dot_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + [147166] = 5, + ACTIONS(11493), 1, + sym__dot_custom, + STATE(5006), 1, + aux_sym_user_type_repeat1, + STATE(6098), 1, + sym__dot, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 10, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [147193] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 12, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + [147214] = 5, + ACTIONS(11496), 1, + sym__dot_custom, + STATE(5010), 1, + aux_sym_user_type_repeat1, + STATE(6098), 1, + sym__dot, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 10, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [147241] = 4, + ACTIONS(11498), 1, + anon_sym_LT, + STATE(5334), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 11, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [147266] = 5, + ACTIONS(11496), 1, + sym__dot_custom, + STATE(5006), 1, + aux_sym_user_type_repeat1, + STATE(6098), 1, + sym__dot, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 10, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [147293] = 4, + ACTIONS(11500), 1, + anon_sym_AMP, + STATE(5047), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 10, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [147318] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 13, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + [147339] = 12, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11502), 1, + anon_sym_DQUOTE, + ACTIONS(11504), 1, + aux_sym_line_str_text_token1, + ACTIONS(11506), 1, + anon_sym_BSLASH, + ACTIONS(11508), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(11510), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11512), 1, + sym__escaped_identifier, + STATE(5015), 1, + aux_sym_multi_line_string_literal_repeat1, + STATE(6108), 1, + sym__interpolation, + STATE(6184), 1, + sym__uni_character_literal, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6110), 3, + sym_str_escaped_char, + sym__multi_line_string_content, + sym_multi_line_str_text, + [147380] = 9, + ACTIONS(4849), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11514), 1, + anon_sym_LBRACK, + ACTIONS(11518), 1, + anon_sym_self, + STATE(1214), 1, + sym_simple_identifier, + STATE(1246), 1, + sym__key_path_component, + ACTIONS(11516), 2, + sym_bang, + anon_sym_QMARK, + STATE(1215), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(4851), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [147415] = 12, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11502), 1, + anon_sym_DQUOTE, + ACTIONS(11504), 1, + aux_sym_line_str_text_token1, + ACTIONS(11506), 1, + anon_sym_BSLASH, + ACTIONS(11510), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11512), 1, + sym__escaped_identifier, + ACTIONS(11520), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5074), 1, + aux_sym_multi_line_string_literal_repeat1, + STATE(6108), 1, + sym__interpolation, + STATE(6184), 1, + sym__uni_character_literal, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6110), 3, + sym_str_escaped_char, + sym__multi_line_string_content, + sym_multi_line_str_text, + [147456] = 12, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11502), 1, + anon_sym_DQUOTE, + ACTIONS(11504), 1, + aux_sym_line_str_text_token1, + ACTIONS(11506), 1, + anon_sym_BSLASH, + ACTIONS(11510), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11512), 1, + sym__escaped_identifier, + ACTIONS(11522), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5074), 1, + aux_sym_multi_line_string_literal_repeat1, + STATE(6108), 1, + sym__interpolation, + STATE(6184), 1, + sym__uni_character_literal, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6110), 3, + sym_str_escaped_char, + sym__multi_line_string_content, + sym_multi_line_str_text, + [147497] = 9, + ACTIONS(6636), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11524), 1, + anon_sym_LBRACK, + ACTIONS(11528), 1, + anon_sym_self, + STATE(2864), 1, + sym_simple_identifier, + STATE(3213), 1, + sym__key_path_component, + ACTIONS(11526), 2, + sym_bang, + anon_sym_QMARK, + STATE(2852), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(6638), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [147532] = 6, + ACTIONS(5022), 1, + anon_sym_QMARK, + ACTIONS(11530), 1, + sym__dot_custom, + STATE(5024), 1, + aux_sym_user_type_repeat1, + STATE(6039), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 8, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_in, + [147561] = 5, + ACTIONS(11500), 1, + anon_sym_AMP, + ACTIONS(11532), 1, + anon_sym_DOT, + STATE(5011), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 9, + sym__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, + [147588] = 7, + ACTIONS(4745), 1, + aux_sym_simple_identifier_token1, + ACTIONS(6092), 1, + anon_sym_COLON, + ACTIONS(6094), 1, + anon_sym_in, + STATE(10366), 1, + sym_simple_identifier, + ACTIONS(4747), 3, + aux_sym_simple_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(6090), 5, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + [147619] = 5, + ACTIONS(11500), 1, + anon_sym_AMP, + ACTIONS(11532), 1, + anon_sym_DOT, + STATE(5011), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 9, + sym__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, + [147646] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 12, + sym__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, + [147667] = 8, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(6016), 1, + sym_type_constraint, + STATE(6078), 1, + sym_simple_identifier, + STATE(6937), 1, + sym_identifier, + STATE(5417), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6555), 2, + sym_inheritance_constraint, + sym_equality_constraint, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11483), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [147700] = 6, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(11530), 1, + sym__dot_custom, + STATE(5032), 1, + aux_sym_user_type_repeat1, + STATE(6039), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 8, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_in, + [147729] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 12, + sym__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, + [147750] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 12, + sym__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, + [147771] = 12, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11502), 1, + anon_sym_DQUOTE, + ACTIONS(11504), 1, + aux_sym_line_str_text_token1, + ACTIONS(11506), 1, + anon_sym_BSLASH, + ACTIONS(11510), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11512), 1, + sym__escaped_identifier, + ACTIONS(11534), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5016), 1, + aux_sym_multi_line_string_literal_repeat1, + STATE(6108), 1, + sym__interpolation, + STATE(6184), 1, + sym__uni_character_literal, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6110), 3, + sym_str_escaped_char, + sym__multi_line_string_content, + sym_multi_line_str_text, + [147812] = 6, + ACTIONS(5029), 1, + anon_sym_QMARK, + ACTIONS(11536), 1, + sym__dot_custom, + STATE(5028), 1, + aux_sym_user_type_repeat1, + STATE(6206), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 8, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + [147841] = 3, + ACTIONS(5146), 1, + anon_sym_QMARK, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 12, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [147864] = 3, + ACTIONS(5142), 1, + anon_sym_QMARK, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 12, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [147887] = 4, + ACTIONS(11539), 1, + anon_sym_AMP, + STATE(5031), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 11, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [147912] = 6, + ACTIONS(5029), 1, + anon_sym_QMARK, + ACTIONS(11542), 1, + sym__dot_custom, + STATE(5032), 1, + aux_sym_user_type_repeat1, + STATE(6039), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 8, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_in, + [147941] = 4, + ACTIONS(11545), 1, + sym__immediate_quest, + STATE(5033), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 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, + [147966] = 5, + ACTIONS(11472), 1, + anon_sym_DOT, + ACTIONS(11474), 1, + anon_sym_AMP, + STATE(4990), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 10, + sym_multiline_comment, + sym__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, + [147993] = 9, + ACTIONS(6518), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11548), 1, + anon_sym_LBRACK, + ACTIONS(11552), 1, + anon_sym_self, + STATE(2831), 1, + sym_simple_identifier, + STATE(3042), 1, + sym__key_path_component, + ACTIONS(11550), 2, + sym_bang, + anon_sym_QMARK, + STATE(2833), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(6520), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [148028] = 8, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(6078), 1, + sym_simple_identifier, + STATE(6849), 1, + sym_type_constraint, + STATE(6937), 1, + sym_identifier, + STATE(5417), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6555), 2, + sym_inheritance_constraint, + sym_equality_constraint, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11483), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [148061] = 5, + ACTIONS(11472), 1, + anon_sym_DOT, + ACTIONS(11474), 1, + anon_sym_AMP, + STATE(4990), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 10, + sym_multiline_comment, + sym__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, + [148088] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 13, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [148109] = 12, + ACTIONS(5596), 1, + anon_sym_COMMA, + ACTIONS(11554), 1, + anon_sym_COLON, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(11558), 1, + sym__eq_custom, + ACTIONS(11560), 1, + sym_where_keyword, + STATE(888), 1, + sym__equal_sign, + STATE(5251), 1, + sym_type_annotation, + STATE(5628), 1, + sym_type_constraints, + STATE(7194), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(7204), 1, + sym_computed_property, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6205), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [148150] = 3, + ACTIONS(5142), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 11, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [148173] = 12, + ACTIONS(5684), 1, + anon_sym_COMMA, + ACTIONS(11562), 1, + anon_sym_COLON, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(11566), 1, + sym__eq_custom, + ACTIONS(11568), 1, + sym_where_keyword, + STATE(824), 1, + sym__equal_sign, + STATE(5218), 1, + sym_type_annotation, + STATE(5610), 1, + sym_type_constraints, + STATE(7246), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(7248), 1, + sym_computed_property, + ACTIONS(6205), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [148214] = 8, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(3506), 1, + sym_type_constraint, + STATE(6078), 1, + sym_simple_identifier, + STATE(6726), 1, + sym_identifier, + STATE(3514), 2, + sym_inheritance_constraint, + sym_equality_constraint, + STATE(5420), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11483), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [148247] = 8, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(3493), 1, + sym_type_constraint, + STATE(6078), 1, + sym_simple_identifier, + STATE(6726), 1, + sym_identifier, + STATE(3514), 2, + sym_inheritance_constraint, + sym_equality_constraint, + STATE(5420), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11483), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [148280] = 12, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11502), 1, + anon_sym_DQUOTE, + ACTIONS(11504), 1, + aux_sym_line_str_text_token1, + ACTIONS(11506), 1, + anon_sym_BSLASH, + ACTIONS(11510), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11512), 1, + sym__escaped_identifier, + ACTIONS(11570), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5074), 1, + aux_sym_multi_line_string_literal_repeat1, + STATE(6108), 1, + sym__interpolation, + STATE(6184), 1, + sym__uni_character_literal, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6110), 3, + sym_str_escaped_char, + sym__multi_line_string_content, + sym_multi_line_str_text, + [148321] = 12, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11502), 1, + anon_sym_DQUOTE, + ACTIONS(11504), 1, + aux_sym_line_str_text_token1, + ACTIONS(11506), 1, + anon_sym_BSLASH, + ACTIONS(11510), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11512), 1, + sym__escaped_identifier, + ACTIONS(11572), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5051), 1, + aux_sym_multi_line_string_literal_repeat1, + STATE(6108), 1, + sym__interpolation, + STATE(6184), 1, + sym__uni_character_literal, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6110), 3, + sym_str_escaped_char, + sym__multi_line_string_content, + sym_multi_line_str_text, + [148362] = 5, + ACTIONS(11500), 1, + anon_sym_AMP, + ACTIONS(11532), 1, + anon_sym_DOT, + STATE(5011), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 9, + sym__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, + [148389] = 4, + ACTIONS(11574), 1, + anon_sym_AMP, + STATE(5047), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 10, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [148414] = 9, + ACTIONS(6530), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11577), 1, + anon_sym_LBRACK, + ACTIONS(11581), 1, + anon_sym_self, + STATE(2846), 1, + sym_simple_identifier, + STATE(3097), 1, + sym__key_path_component, + ACTIONS(11579), 2, + sym_bang, + anon_sym_QMARK, + STATE(2842), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(6532), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [148449] = 8, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(6078), 1, + sym_simple_identifier, + STATE(6645), 1, + sym_identifier, + STATE(7907), 1, + sym_type_constraint, + STATE(5457), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(8639), 2, + sym_inheritance_constraint, + sym_equality_constraint, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11483), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [148482] = 3, + ACTIONS(5146), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 11, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [148505] = 12, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11502), 1, + anon_sym_DQUOTE, + ACTIONS(11504), 1, + aux_sym_line_str_text_token1, + ACTIONS(11506), 1, + anon_sym_BSLASH, + ACTIONS(11510), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11512), 1, + sym__escaped_identifier, + ACTIONS(11583), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5074), 1, + aux_sym_multi_line_string_literal_repeat1, + STATE(6108), 1, + sym__interpolation, + STATE(6184), 1, + sym__uni_character_literal, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6110), 3, + sym_str_escaped_char, + sym__multi_line_string_content, + sym_multi_line_str_text, + [148546] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 12, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [148567] = 5, + ACTIONS(11585), 1, + sym__dot_custom, + STATE(5053), 1, + aux_sym_user_type_repeat1, + STATE(6160), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 9, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LT, + anon_sym_LBRACE, + [148594] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 12, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [148615] = 8, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(2642), 1, + sym_type_constraint, + STATE(6078), 1, + sym_simple_identifier, + STATE(6839), 1, + sym_identifier, + STATE(2709), 2, + sym_inheritance_constraint, + sym_equality_constraint, + STATE(5499), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11483), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [148648] = 5, + ACTIONS(5086), 1, + anon_sym_QMARK, + ACTIONS(11588), 1, + anon_sym_LT, + STATE(5277), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 9, + sym__dot_custom, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_in, + [148675] = 10, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11590), 1, + sym__dot_custom, + STATE(2281), 1, + sym_simple_identifier, + STATE(4955), 1, + sym__simple_user_type, + STATE(4983), 1, + sym_binding_pattern_kind, + STATE(6892), 1, + sym__dot, + STATE(8627), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [148712] = 12, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11502), 1, + anon_sym_DQUOTE, + ACTIONS(11504), 1, + aux_sym_line_str_text_token1, + ACTIONS(11506), 1, + anon_sym_BSLASH, + ACTIONS(11510), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11512), 1, + sym__escaped_identifier, + ACTIONS(11592), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5074), 1, + aux_sym_multi_line_string_literal_repeat1, + STATE(6108), 1, + sym__interpolation, + STATE(6184), 1, + sym__uni_character_literal, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6110), 3, + sym_str_escaped_char, + sym__multi_line_string_content, + sym_multi_line_str_text, + [148753] = 9, + ACTIONS(6538), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11594), 1, + anon_sym_LBRACK, + ACTIONS(11598), 1, + anon_sym_self, + STATE(2835), 1, + sym_simple_identifier, + STATE(3052), 1, + sym__key_path_component, + ACTIONS(11596), 2, + sym_bang, + anon_sym_QMARK, + STATE(2834), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(6540), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [148788] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 12, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [148809] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 12, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [148830] = 12, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11502), 1, + anon_sym_DQUOTE, + ACTIONS(11504), 1, + aux_sym_line_str_text_token1, + ACTIONS(11506), 1, + anon_sym_BSLASH, + ACTIONS(11510), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11512), 1, + sym__escaped_identifier, + ACTIONS(11600), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5044), 1, + aux_sym_multi_line_string_literal_repeat1, + STATE(6108), 1, + sym__interpolation, + STATE(6184), 1, + sym__uni_character_literal, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6110), 3, + sym_str_escaped_char, + sym__multi_line_string_content, + sym_multi_line_str_text, + [148871] = 12, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11502), 1, + anon_sym_DQUOTE, + ACTIONS(11504), 1, + aux_sym_line_str_text_token1, + ACTIONS(11506), 1, + anon_sym_BSLASH, + ACTIONS(11510), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11512), 1, + sym__escaped_identifier, + ACTIONS(11602), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5058), 1, + aux_sym_multi_line_string_literal_repeat1, + STATE(6108), 1, + sym__interpolation, + STATE(6184), 1, + sym__uni_character_literal, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6110), 3, + sym_str_escaped_char, + sym__multi_line_string_content, + sym_multi_line_str_text, + [148912] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 12, + sym__arrow_operator_custom, + sym__three_dot_operator_custom, + sym__eq_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [148933] = 10, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11604), 1, + sym__dot_custom, + STATE(2281), 1, + sym_simple_identifier, + STATE(4911), 1, + sym_binding_pattern_kind, + STATE(4955), 1, + sym__simple_user_type, + STATE(6964), 1, + sym__dot, + STATE(8222), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [148970] = 10, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11606), 1, + sym__dot_custom, + STATE(2281), 1, + sym_simple_identifier, + STATE(4924), 1, + sym_binding_pattern_kind, + STATE(4955), 1, + sym__simple_user_type, + STATE(6864), 1, + sym__dot, + STATE(8236), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [149007] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 12, + sym__arrow_operator_custom, + sym__three_dot_operator_custom, + sym__eq_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [149028] = 7, + ACTIONS(4745), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11610), 1, + anon_sym_COLON, + ACTIONS(11612), 1, + anon_sym_in, + STATE(10323), 1, + sym_simple_identifier, + ACTIONS(4747), 3, + aux_sym_simple_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(11608), 5, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + [149059] = 5, + ACTIONS(11614), 1, + sym__dot_custom, + STATE(5053), 1, + aux_sym_user_type_repeat1, + STATE(6160), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 9, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LT, + anon_sym_LBRACE, + [149086] = 8, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(6078), 1, + sym_simple_identifier, + STATE(6946), 1, + sym_identifier, + STATE(7140), 1, + sym_type_constraint, + STATE(5505), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(7110), 2, + sym_inheritance_constraint, + sym_equality_constraint, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11483), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [149119] = 10, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11616), 1, + sym__dot_custom, + STATE(2281), 1, + sym_simple_identifier, + STATE(4928), 1, + sym_binding_pattern_kind, + STATE(4955), 1, + sym__simple_user_type, + STATE(6727), 1, + sym__dot, + STATE(8239), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [149156] = 4, + ACTIONS(11618), 1, + sym__immediate_quest, + STATE(5033), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 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, + [149181] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 12, + sym__arrow_operator_custom, + sym__three_dot_operator_custom, + sym__eq_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [149202] = 12, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11620), 1, + anon_sym_DQUOTE, + ACTIONS(11623), 1, + aux_sym_line_str_text_token1, + ACTIONS(11626), 1, + anon_sym_BSLASH, + ACTIONS(11629), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(11631), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11634), 1, + sym__escaped_identifier, + STATE(5074), 1, + aux_sym_multi_line_string_literal_repeat1, + STATE(6108), 1, + sym__interpolation, + STATE(6184), 1, + sym__uni_character_literal, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6110), 3, + sym_str_escaped_char, + sym__multi_line_string_content, + sym_multi_line_str_text, + [149243] = 8, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(6078), 1, + sym_simple_identifier, + STATE(6467), 1, + sym_type_constraint, + STATE(6492), 1, + sym_identifier, + STATE(5432), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(6371), 2, + sym_inheritance_constraint, + sym_equality_constraint, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11483), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [149276] = 12, + ACTIONS(5596), 1, + anon_sym_COMMA, + ACTIONS(11554), 1, + anon_sym_COLON, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(11560), 1, + sym_where_keyword, + ACTIONS(11637), 1, + sym__eq_custom, + STATE(822), 1, + sym__equal_sign, + STATE(5297), 1, + sym_type_annotation, + STATE(5585), 1, + sym_type_constraints, + STATE(7263), 1, + sym_computed_property, + STATE(7294), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6195), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [149317] = 4, + ACTIONS(11064), 1, + sym__immediate_quest, + STATE(5072), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 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, + [149342] = 8, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(6078), 1, + sym_simple_identifier, + STATE(6825), 1, + sym_type_constraint, + STATE(6946), 1, + sym_identifier, + STATE(5505), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + STATE(7110), 2, + sym_inheritance_constraint, + sym_equality_constraint, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11483), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [149375] = 10, + ACTIONS(8165), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11639), 1, + sym__dot_custom, + STATE(2281), 1, + sym_simple_identifier, + STATE(4925), 1, + sym_binding_pattern_kind, + STATE(4955), 1, + sym__simple_user_type, + STATE(6889), 1, + sym__dot, + STATE(8523), 1, + sym_user_type, + ACTIONS(1003), 2, + anon_sym_let, + anon_sym_var, + ACTIONS(8167), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [149412] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 12, + sym__semi, + sym__arrow_operator_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, + [149433] = 8, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(2668), 1, + sym_type_constraint, + STATE(6078), 1, + sym_simple_identifier, + STATE(6839), 1, + sym_identifier, + STATE(2709), 2, + sym_inheritance_constraint, + sym_equality_constraint, + STATE(5499), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11483), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [149466] = 12, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11502), 1, + anon_sym_DQUOTE, + ACTIONS(11504), 1, + aux_sym_line_str_text_token1, + ACTIONS(11506), 1, + anon_sym_BSLASH, + ACTIONS(11510), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11512), 1, + sym__escaped_identifier, + ACTIONS(11641), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5074), 1, + aux_sym_multi_line_string_literal_repeat1, + STATE(6108), 1, + sym__interpolation, + STATE(6184), 1, + sym__uni_character_literal, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6110), 3, + sym_str_escaped_char, + sym__multi_line_string_content, + sym_multi_line_str_text, + [149507] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 12, + sym__semi, + sym__arrow_operator_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, + [149528] = 12, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11502), 1, + anon_sym_DQUOTE, + ACTIONS(11504), 1, + aux_sym_line_str_text_token1, + ACTIONS(11506), 1, + anon_sym_BSLASH, + ACTIONS(11510), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11512), 1, + sym__escaped_identifier, + ACTIONS(11643), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5082), 1, + aux_sym_multi_line_string_literal_repeat1, + STATE(6108), 1, + sym__interpolation, + STATE(6184), 1, + sym__uni_character_literal, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6110), 3, + sym_str_escaped_char, + sym__multi_line_string_content, + sym_multi_line_str_text, + [149569] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 12, + sym__semi, + sym__arrow_operator_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, + [149590] = 5, + ACTIONS(11614), 1, + sym__dot_custom, + STATE(5069), 1, + aux_sym_user_type_repeat1, + STATE(6160), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 9, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LT, + anon_sym_LBRACE, + [149617] = 12, + ACTIONS(5684), 1, + anon_sym_COMMA, + ACTIONS(11562), 1, + anon_sym_COLON, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(11568), 1, + sym_where_keyword, + ACTIONS(11645), 1, + sym__eq_custom, + STATE(446), 1, + sym__equal_sign, + STATE(5259), 1, + sym_type_annotation, + STATE(5636), 1, + sym_type_constraints, + STATE(7199), 1, + sym_computed_property, + STATE(7307), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(6195), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [149658] = 9, + ACTIONS(5312), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11647), 1, + anon_sym_LBRACK, + ACTIONS(11651), 1, + anon_sym_self, + STATE(1391), 1, + sym_simple_identifier, + STATE(1427), 1, + sym__key_path_component, + ACTIONS(11649), 2, + sym_bang, + anon_sym_QMARK, + STATE(1393), 2, + sym__key_path_postfixes, + aux_sym__key_path_component_repeat1, + ACTIONS(5314), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [149693] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 11, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [149713] = 5, + ACTIONS(11653), 1, + anon_sym_LPAREN, + ACTIONS(11655), 1, + anon_sym_QMARK, + STATE(5204), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [149739] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 11, + sym__arrow_operator_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, + [149759] = 4, + ACTIONS(11657), 1, + sym__immediate_quest, + STATE(5092), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 9, + sym__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, + [149783] = 11, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11660), 1, + anon_sym_DQUOTE, + ACTIONS(11662), 1, + aux_sym_line_str_text_token1, + ACTIONS(11664), 1, + anon_sym_BSLASH, + ACTIONS(11666), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11668), 1, + sym__escaped_identifier, + STATE(5096), 1, + aux_sym_line_string_literal_repeat1, + STATE(6540), 1, + sym__uni_character_literal, + STATE(6542), 1, + sym__interpolation, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6541), 3, + sym__line_string_content, + sym_line_str_text, + sym_str_escaped_char, + [149821] = 11, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11662), 1, + aux_sym_line_str_text_token1, + ACTIONS(11664), 1, + anon_sym_BSLASH, + ACTIONS(11666), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11668), 1, + sym__escaped_identifier, + ACTIONS(11670), 1, + anon_sym_DQUOTE, + STATE(5170), 1, + aux_sym_line_string_literal_repeat1, + STATE(6540), 1, + sym__uni_character_literal, + STATE(6542), 1, + sym__interpolation, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6541), 3, + sym__line_string_content, + sym_line_str_text, + sym_str_escaped_char, + [149859] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 11, + sym__arrow_operator_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, + [149879] = 11, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11662), 1, + aux_sym_line_str_text_token1, + ACTIONS(11664), 1, + anon_sym_BSLASH, + ACTIONS(11666), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11668), 1, + sym__escaped_identifier, + ACTIONS(11672), 1, + anon_sym_DQUOTE, + STATE(5170), 1, + aux_sym_line_string_literal_repeat1, + STATE(6540), 1, + sym__uni_character_literal, + STATE(6542), 1, + sym__interpolation, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6541), 3, + sym__line_string_content, + sym_line_str_text, + sym_str_escaped_char, + [149917] = 4, + ACTIONS(11674), 1, + sym__immediate_quest, + STATE(5092), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 9, + sym__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, + [149941] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 12, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_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, + [149961] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 11, + sym__semi, + sym__dot_custom, + sym__eq_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, + [149981] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 11, + sym__arrow_operator_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, + [150001] = 4, + ACTIONS(11060), 1, + sym__immediate_quest, + STATE(5097), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 9, + sym__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, + [150025] = 11, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11662), 1, + aux_sym_line_str_text_token1, + ACTIONS(11664), 1, + anon_sym_BSLASH, + ACTIONS(11666), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11668), 1, + sym__escaped_identifier, + ACTIONS(11676), 1, + anon_sym_DQUOTE, + STATE(5094), 1, + aux_sym_line_string_literal_repeat1, + STATE(6540), 1, + sym__uni_character_literal, + STATE(6542), 1, + sym__interpolation, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6541), 3, + sym__line_string_content, + sym_line_str_text, + sym_str_escaped_char, + [150063] = 3, + ACTIONS(4819), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 10, + sym__dot_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LT, + anon_sym_LBRACE, + [150085] = 6, + ACTIONS(11678), 1, + sym__dot_custom, + STATE(5104), 1, + aux_sym_user_type_repeat1, + STATE(6177), 1, + sym__dot, + ACTIONS(5029), 2, + aux_sym_simple_identifier_token1, + anon_sym_some, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 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, + [150113] = 5, + ACTIONS(11681), 1, + anon_sym_LPAREN, + ACTIONS(11683), 1, + anon_sym_QMARK, + STATE(5339), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [150139] = 5, + ACTIONS(11685), 1, + anon_sym_LT, + STATE(5479), 1, + sym_type_arguments, + ACTIONS(5086), 2, + aux_sym_simple_identifier_token1, + anon_sym_some, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 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, + [150165] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7914), 4, + aux_sym_simple_identifier_token1, + anon_sym_some, + anon_sym_AT, + anon_sym_inout, + ACTIONS(7912), 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, + [150187] = 10, + ACTIONS(11562), 1, + anon_sym_COLON, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(11568), 1, + sym_where_keyword, + ACTIONS(11687), 1, + sym__eq_custom, + STATE(1039), 1, + sym__equal_sign, + STATE(5472), 1, + sym_type_annotation, + STATE(5738), 1, + sym_type_constraints, + STATE(7602), 1, + sym_computed_property, + ACTIONS(6216), 3, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [150223] = 11, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11662), 1, + aux_sym_line_str_text_token1, + ACTIONS(11664), 1, + anon_sym_BSLASH, + ACTIONS(11666), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11668), 1, + sym__escaped_identifier, + ACTIONS(11689), 1, + anon_sym_DQUOTE, + STATE(5115), 1, + aux_sym_line_string_literal_repeat1, + STATE(6540), 1, + sym__uni_character_literal, + STATE(6542), 1, + sym__interpolation, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6541), 3, + sym__line_string_content, + sym_line_str_text, + sym_str_escaped_char, + [150261] = 11, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11662), 1, + aux_sym_line_str_text_token1, + ACTIONS(11664), 1, + anon_sym_BSLASH, + ACTIONS(11666), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11668), 1, + sym__escaped_identifier, + ACTIONS(11691), 1, + anon_sym_DQUOTE, + STATE(5170), 1, + aux_sym_line_string_literal_repeat1, + STATE(6540), 1, + sym__uni_character_literal, + STATE(6542), 1, + sym__interpolation, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6541), 3, + sym__line_string_content, + sym_line_str_text, + sym_str_escaped_char, + [150299] = 5, + ACTIONS(11693), 1, + sym__dot_custom, + STATE(5119), 1, + aux_sym_user_type_repeat1, + STATE(5939), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 8, + sym__semi, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [150325] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 11, + sym__arrow_operator_custom, + sym__dot_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_in, + [150345] = 4, + ACTIONS(11695), 1, + anon_sym_LT, + STATE(5513), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 9, + sym__semi, + sym__dot_custom, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [150369] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 11, + sym__arrow_operator_custom, + sym__dot_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_in, + [150389] = 11, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11662), 1, + aux_sym_line_str_text_token1, + ACTIONS(11664), 1, + anon_sym_BSLASH, + ACTIONS(11666), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11668), 1, + sym__escaped_identifier, + ACTIONS(11697), 1, + anon_sym_DQUOTE, + STATE(5170), 1, + aux_sym_line_string_literal_repeat1, + STATE(6540), 1, + sym__uni_character_literal, + STATE(6542), 1, + sym__interpolation, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6541), 3, + sym__line_string_content, + sym_line_str_text, + sym_str_escaped_char, + [150427] = 5, + ACTIONS(11699), 1, + sym__dot_custom, + STATE(5116), 1, + aux_sym_user_type_repeat1, + STATE(6150), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 8, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_in, + [150453] = 4, + ACTIONS(11702), 1, + anon_sym_LT, + STATE(5344), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 9, + sym__dot_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + [150477] = 5, + ACTIONS(11693), 1, + sym__dot_custom, + STATE(5111), 1, + aux_sym_user_type_repeat1, + STATE(5939), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 8, + sym__semi, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [150503] = 5, + ACTIONS(11704), 1, + sym__dot_custom, + STATE(5119), 1, + aux_sym_user_type_repeat1, + STATE(5939), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 8, + sym__semi, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [150529] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 11, + sym__arrow_operator_custom, + sym__dot_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_in, + [150549] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 12, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [150569] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 12, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [150589] = 5, + ACTIONS(11707), 1, + sym__dot_custom, + STATE(5123), 1, + aux_sym_user_type_repeat1, + STATE(6055), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 8, + sym__semi, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [150615] = 11, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11662), 1, + aux_sym_line_str_text_token1, + ACTIONS(11664), 1, + anon_sym_BSLASH, + ACTIONS(11666), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11668), 1, + sym__escaped_identifier, + ACTIONS(11710), 1, + anon_sym_DQUOTE, + STATE(5176), 1, + aux_sym_line_string_literal_repeat1, + STATE(6540), 1, + sym__uni_character_literal, + STATE(6542), 1, + sym__interpolation, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6541), 3, + sym__line_string_content, + sym_line_str_text, + sym_str_escaped_char, + [150653] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 12, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [150673] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 11, + 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, + [150693] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 11, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [150713] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 12, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [150733] = 5, + ACTIONS(11712), 1, + sym__dot_custom, + STATE(5145), 1, + aux_sym_user_type_repeat1, + STATE(6295), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 8, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + [150759] = 4, + ACTIONS(11714), 1, + anon_sym_LT, + STATE(5483), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 9, + sym__dot_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + [150783] = 5, + ACTIONS(11712), 1, + sym__dot_custom, + STATE(5129), 1, + aux_sym_user_type_repeat1, + STATE(6295), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 8, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + [150809] = 5, + ACTIONS(11716), 1, + sym__dot_custom, + STATE(5160), 1, + aux_sym_user_type_repeat1, + STATE(6252), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 8, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [150835] = 4, + ACTIONS(11718), 1, + anon_sym_LT, + STATE(5453), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 9, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [150859] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 11, + sym__arrow_operator_custom, + sym__dot_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_in, + [150879] = 5, + ACTIONS(11716), 1, + sym__dot_custom, + STATE(5132), 1, + aux_sym_user_type_repeat1, + STATE(6252), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 8, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [150905] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 11, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [150925] = 11, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11662), 1, + aux_sym_line_str_text_token1, + ACTIONS(11664), 1, + anon_sym_BSLASH, + ACTIONS(11666), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11668), 1, + sym__escaped_identifier, + ACTIONS(11720), 1, + anon_sym_DQUOTE, + STATE(5110), 1, + aux_sym_line_string_literal_repeat1, + STATE(6540), 1, + sym__uni_character_literal, + STATE(6542), 1, + sym__interpolation, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6541), 3, + sym__line_string_content, + sym_line_str_text, + sym_str_escaped_char, + [150963] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 11, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [150983] = 10, + ACTIONS(11422), 1, + anon_sym_LBRACE, + ACTIONS(11722), 1, + sym__arrow_operator_custom, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(11728), 1, + sym__async_keyword_custom, + STATE(4282), 1, + sym__arrow_operator, + STATE(6466), 1, + sym_throws, + STATE(10225), 1, + sym_type_constraints, + ACTIONS(11724), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(5606), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [151019] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 11, + 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, + [151039] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11730), 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, + [151059] = 10, + ACTIONS(11422), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(11728), 1, + sym__async_keyword_custom, + ACTIONS(11732), 1, + sym__arrow_operator_custom, + STATE(4278), 1, + sym__arrow_operator, + STATE(6505), 1, + sym_throws, + STATE(10232), 1, + sym_type_constraints, + ACTIONS(11724), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(5604), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [151095] = 3, + ACTIONS(4819), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 10, + sym__dot_custom, + sym__as_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, + [151117] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11734), 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, + [151137] = 5, + ACTIONS(11736), 1, + sym__dot_custom, + STATE(5145), 1, + aux_sym_user_type_repeat1, + STATE(6295), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 8, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + [151163] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 11, + sym__dot_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, + [151183] = 4, + ACTIONS(11233), 1, + sym__immediate_quest, + STATE(5150), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 9, + sym__arrow_operator_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_in, + [151207] = 4, + ACTIONS(11739), 1, + sym__immediate_quest, + STATE(5148), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 10, + sym_multiline_comment, + sym__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, + [151231] = 3, + ACTIONS(4985), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 10, + sym__arrow_operator_custom, + sym__eq_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__as_custom, + sym__async_keyword_custom, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [151253] = 4, + ACTIONS(11742), 1, + sym__immediate_quest, + STATE(5163), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 9, + sym__arrow_operator_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_in, + [151277] = 5, + ACTIONS(11744), 1, + anon_sym_LPAREN, + ACTIONS(11746), 1, + anon_sym_QMARK, + STATE(5340), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6238), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [151303] = 6, + ACTIONS(11748), 1, + sym__dot_custom, + STATE(5183), 1, + aux_sym_user_type_repeat1, + STATE(6177), 1, + sym__dot, + ACTIONS(5022), 2, + aux_sym_simple_identifier_token1, + anon_sym_some, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 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, + [151331] = 4, + ACTIONS(11750), 1, + sym__immediate_quest, + STATE(5148), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 10, + sym_multiline_comment, + sym__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, + [151355] = 10, + ACTIONS(11393), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(11728), 1, + sym__async_keyword_custom, + ACTIONS(11752), 1, + sym__arrow_operator_custom, + STATE(4326), 1, + sym__arrow_operator, + STATE(6424), 1, + sym_throws, + STATE(10337), 1, + sym_type_constraints, + ACTIONS(11724), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(5661), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [151391] = 10, + ACTIONS(11393), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(11728), 1, + sym__async_keyword_custom, + ACTIONS(11754), 1, + sym__arrow_operator_custom, + STATE(4338), 1, + sym__arrow_operator, + STATE(6409), 1, + sym_throws, + STATE(10336), 1, + sym_type_constraints, + ACTIONS(11724), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(5659), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [151427] = 4, + ACTIONS(11056), 1, + sym__immediate_quest, + STATE(5153), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 10, + sym_multiline_comment, + sym__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, + [151451] = 3, + ACTIONS(4819), 2, + aux_sym_simple_identifier_token1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 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, + [151473] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11756), 4, + aux_sym_simple_identifier_token1, + anon_sym_some, + anon_sym_AT, + anon_sym_inout, + ACTIONS(11758), 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, + [151495] = 3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(1159), 4, + aux_sym_simple_identifier_token1, + anon_sym_some, + anon_sym_AT, + anon_sym_inout, + ACTIONS(1161), 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, + [151517] = 5, + ACTIONS(11760), 1, + sym__dot_custom, + STATE(5160), 1, + aux_sym_user_type_repeat1, + STATE(6252), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 8, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [151543] = 5, + ACTIONS(11763), 1, + sym__dot_custom, + STATE(5123), 1, + aux_sym_user_type_repeat1, + STATE(6055), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 8, + sym__semi, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [151569] = 3, + ACTIONS(4989), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 10, + sym__arrow_operator_custom, + sym__eq_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__as_custom, + sym__async_keyword_custom, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [151591] = 4, + ACTIONS(11765), 1, + sym__immediate_quest, + STATE(5163), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 9, + sym__arrow_operator_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_in, + [151615] = 5, + ACTIONS(11763), 1, + sym__dot_custom, + STATE(5161), 1, + aux_sym_user_type_repeat1, + STATE(6055), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 8, + sym__semi, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [151641] = 3, + ACTIONS(4993), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 10, + sym__arrow_operator_custom, + sym__eq_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__as_custom, + sym__async_keyword_custom, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [151663] = 10, + ACTIONS(11554), 1, + anon_sym_COLON, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(11560), 1, + sym_where_keyword, + ACTIONS(11768), 1, + sym__eq_custom, + STATE(902), 1, + sym__equal_sign, + STATE(5482), 1, + sym_type_annotation, + STATE(5714), 1, + sym_type_constraints, + STATE(7869), 1, + sym_computed_property, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6216), 4, + sym_multiline_comment, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + [151699] = 5, + ACTIONS(11770), 1, + sym__dot_custom, + STATE(5116), 1, + aux_sym_user_type_repeat1, + STATE(6150), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 8, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_in, + [151725] = 4, + ACTIONS(11772), 1, + anon_sym_LT, + STATE(5393), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 9, + sym__semi, + sym__dot_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [151749] = 5, + ACTIONS(11770), 1, + sym__dot_custom, + STATE(5167), 1, + aux_sym_user_type_repeat1, + STATE(6150), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 8, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_in, + [151775] = 11, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11774), 1, + anon_sym_DQUOTE, + ACTIONS(11776), 1, + aux_sym_line_str_text_token1, + ACTIONS(11779), 1, + anon_sym_BSLASH, + ACTIONS(11782), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11785), 1, + sym__escaped_identifier, + STATE(5170), 1, + aux_sym_line_string_literal_repeat1, + STATE(6540), 1, + sym__uni_character_literal, + STATE(6542), 1, + sym__interpolation, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6541), 3, + sym__line_string_content, + sym_line_str_text, + sym_str_escaped_char, + [151813] = 4, + ACTIONS(11788), 1, + anon_sym_LT, + STATE(5382), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 9, + sym__dot_custom, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_in, + [151837] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 12, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [151857] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 12, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [151877] = 11, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11662), 1, + aux_sym_line_str_text_token1, + ACTIONS(11664), 1, + anon_sym_BSLASH, + ACTIONS(11666), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11668), 1, + sym__escaped_identifier, + ACTIONS(11790), 1, + anon_sym_DQUOTE, + STATE(5170), 1, + aux_sym_line_string_literal_repeat1, + STATE(6540), 1, + sym__uni_character_literal, + STATE(6542), 1, + sym__interpolation, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6541), 3, + sym__line_string_content, + sym_line_str_text, + sym_str_escaped_char, + [151915] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 11, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [151935] = 11, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11662), 1, + aux_sym_line_str_text_token1, + ACTIONS(11664), 1, + anon_sym_BSLASH, + ACTIONS(11666), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11668), 1, + sym__escaped_identifier, + ACTIONS(11792), 1, + anon_sym_DQUOTE, + STATE(5170), 1, + aux_sym_line_string_literal_repeat1, + STATE(6540), 1, + sym__uni_character_literal, + STATE(6542), 1, + sym__interpolation, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6541), 3, + sym__line_string_content, + sym_line_str_text, + sym_str_escaped_char, + [151973] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 11, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [151993] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 12, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152013] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 11, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152033] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 11, + sym__dot_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, + [152053] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 11, + sym__semi, + sym__dot_custom, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152073] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 12, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152093] = 6, + ACTIONS(11748), 1, + sym__dot_custom, + STATE(5104), 1, + aux_sym_user_type_repeat1, + STATE(6177), 1, + sym__dot, + ACTIONS(5036), 2, + aux_sym_simple_identifier_token1, + anon_sym_some, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 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, + [152121] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 11, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152141] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 12, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152161] = 11, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(11662), 1, + aux_sym_line_str_text_token1, + ACTIONS(11664), 1, + anon_sym_BSLASH, + ACTIONS(11666), 1, + anon_sym_BSLASH_LPAREN, + ACTIONS(11668), 1, + sym__escaped_identifier, + ACTIONS(11794), 1, + anon_sym_DQUOTE, + STATE(5174), 1, + aux_sym_line_string_literal_repeat1, + STATE(6540), 1, + sym__uni_character_literal, + STATE(6542), 1, + sym__interpolation, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + STATE(6541), 3, + sym__line_string_content, + sym_line_str_text, + sym_str_escaped_char, + [152199] = 5, + ACTIONS(11796), 1, + anon_sym_LPAREN, + ACTIONS(11798), 1, + anon_sym_QMARK, + STATE(5207), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6238), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152225] = 4, + ACTIONS(11800), 1, + anon_sym_QMARK, + STATE(5322), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6500), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152248] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 10, + sym__dot_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LT, + anon_sym_LBRACE, + [152267] = 4, + ACTIONS(11802), 1, + anon_sym_QMARK, + STATE(5226), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6378), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152290] = 4, + ACTIONS(11804), 1, + anon_sym_QMARK, + STATE(5224), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152313] = 4, + ACTIONS(11806), 1, + anon_sym_QMARK, + STATE(5653), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152336] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 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, + [152355] = 4, + ACTIONS(11808), 1, + anon_sym_QMARK, + STATE(5275), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6364), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152378] = 4, + ACTIONS(11810), 1, + anon_sym_AMP, + STATE(5328), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_GT, + anon_sym_LBRACE, + [152401] = 4, + ACTIONS(11812), 1, + anon_sym_QMARK, + STATE(5648), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152424] = 4, + ACTIONS(11814), 1, + anon_sym_QMARK, + STATE(5192), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152447] = 4, + ACTIONS(11816), 1, + anon_sym_QMARK, + STATE(5315), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152470] = 5, + ACTIONS(11810), 1, + anon_sym_AMP, + ACTIONS(11818), 1, + anon_sym_DOT, + STATE(5195), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_LBRACE, + [152495] = 5, + ACTIONS(11820), 1, + anon_sym_AT, + ACTIONS(5906), 2, + aux_sym_simple_identifier_token1, + anon_sym_some, + STATE(5200), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5908), 5, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_LBRACK, + [152520] = 6, + ACTIONS(5022), 1, + anon_sym_QMARK, + ACTIONS(11823), 1, + sym__dot_custom, + STATE(5205), 1, + aux_sym_user_type_repeat1, + STATE(6309), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 6, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [152547] = 5, + ACTIONS(5086), 1, + anon_sym_QMARK, + ACTIONS(11825), 1, + anon_sym_LT, + STATE(5537), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 7, + sym__dot_custom, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [152572] = 4, + ACTIONS(11827), 1, + anon_sym_QMARK, + STATE(5196), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152595] = 4, + ACTIONS(11829), 1, + anon_sym_QMARK, + STATE(5639), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152618] = 6, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(11823), 1, + sym__dot_custom, + STATE(5333), 1, + aux_sym_user_type_repeat1, + STATE(6309), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 6, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [152645] = 4, + ACTIONS(11831), 1, + anon_sym_QMARK, + STATE(5621), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6342), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152668] = 4, + ACTIONS(11833), 1, + anon_sym_QMARK, + STATE(5620), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152691] = 9, + ACTIONS(1141), 1, + anon_sym_AT, + ACTIONS(7243), 1, + aux_sym_simple_identifier_token1, + ACTIONS(7251), 1, + anon_sym_self, + STATE(5020), 1, + sym_simple_identifier, + STATE(5734), 1, + sym_attribute, + STATE(6059), 1, + sym_lambda_parameter, + STATE(6176), 1, + sym_self_expression, + ACTIONS(7245), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [152724] = 4, + ACTIONS(11655), 1, + anon_sym_QMARK, + STATE(5204), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152747] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 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, + [152766] = 8, + ACTIONS(11399), 1, + sym_where_keyword, + ACTIONS(11837), 1, + sym__arrow_operator_custom, + STATE(4315), 1, + sym__arrow_operator, + STATE(5807), 1, + sym_throws, + STATE(7931), 1, + sym_type_constraints, + ACTIONS(11397), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(11835), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [152797] = 7, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(6494), 1, + sym_type_parameter_modifiers, + STATE(7441), 1, + sym_simple_identifier, + STATE(8860), 1, + sym_type_parameter, + STATE(5688), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [152826] = 4, + ACTIONS(11839), 1, + anon_sym_QMARK, + STATE(5594), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6331), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152849] = 8, + ACTIONS(11399), 1, + sym_where_keyword, + ACTIONS(11841), 1, + sym__arrow_operator_custom, + STATE(4320), 1, + sym__arrow_operator, + STATE(5792), 1, + sym_throws, + STATE(7925), 1, + sym_type_constraints, + ACTIONS(11397), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(11835), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [152880] = 3, + ACTIONS(4819), 2, + aux_sym_simple_identifier_token1, + anon_sym_some, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 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, + [152901] = 4, + ACTIONS(11843), 1, + anon_sym_QMARK, + STATE(5552), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6325), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [152924] = 3, + ACTIONS(5029), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 9, + sym__dot_custom, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_in, + [152945] = 10, + ACTIONS(5684), 1, + anon_sym_COMMA, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(11568), 1, + sym_where_keyword, + ACTIONS(11845), 1, + sym__eq_custom, + STATE(1041), 1, + sym__equal_sign, + STATE(5538), 1, + sym_type_constraints, + STATE(7280), 1, + sym_computed_property, + STATE(7282), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(6309), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [152980] = 5, + ACTIONS(5103), 1, + anon_sym_QMARK, + ACTIONS(11847), 1, + sym__immediate_quest, + STATE(5219), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 7, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_in, + [153005] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 10, + sym__semi, + sym__dot_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, + [153024] = 4, + ACTIONS(11850), 1, + anon_sym_QMARK, + STATE(5660), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6420), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153047] = 4, + ACTIONS(11852), 1, + anon_sym_QMARK, + STATE(5242), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6390), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153070] = 4, + ACTIONS(11854), 1, + anon_sym_QMARK, + STATE(5302), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6468), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153093] = 4, + ACTIONS(11856), 1, + anon_sym_QMARK, + STATE(5658), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6396), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153116] = 4, + ACTIONS(11858), 1, + anon_sym_QMARK, + STATE(5301), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6272), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153139] = 4, + ACTIONS(11860), 1, + anon_sym_QMARK, + STATE(5249), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6402), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153162] = 3, + ACTIONS(5130), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 9, + sym__dot_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + [153183] = 3, + ACTIONS(5134), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 9, + sym__dot_custom, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_in, + [153204] = 4, + ACTIONS(11862), 1, + anon_sym_QMARK, + STATE(5250), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6408), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153227] = 5, + ACTIONS(849), 1, + anon_sym_AT, + ACTIONS(5950), 2, + aux_sym_simple_identifier_token1, + anon_sym_some, + STATE(5200), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5952), 5, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_LBRACK, + [153252] = 4, + ACTIONS(11864), 1, + anon_sym_QMARK, + STATE(5258), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6414), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153275] = 5, + ACTIONS(11810), 1, + anon_sym_AMP, + ACTIONS(11818), 1, + anon_sym_DOT, + STATE(5195), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_LBRACE, + [153300] = 4, + ACTIONS(11100), 1, + sym__immediate_quest, + STATE(5234), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 8, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153323] = 4, + ACTIONS(11866), 1, + sym__immediate_quest, + STATE(5238), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 8, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153346] = 3, + ACTIONS(5029), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 9, + sym__dot_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + [153367] = 4, + ACTIONS(11868), 1, + anon_sym_AMP, + STATE(5236), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153390] = 3, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 9, + sym__dot_custom, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_in, + [153411] = 4, + ACTIONS(11871), 1, + sym__immediate_quest, + STATE(5238), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 8, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153434] = 3, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 9, + sym__dot_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + [153455] = 3, + ACTIONS(5134), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 9, + sym__dot_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + [153476] = 8, + ACTIONS(11399), 1, + sym_where_keyword, + ACTIONS(11876), 1, + sym__arrow_operator_custom, + STATE(4292), 1, + sym__arrow_operator, + STATE(5850), 1, + sym_throws, + STATE(7609), 1, + sym_type_constraints, + ACTIONS(11397), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(11874), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [153507] = 4, + ACTIONS(11878), 1, + anon_sym_QMARK, + STATE(5269), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6426), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153530] = 4, + ACTIONS(11880), 1, + anon_sym_QMARK, + STATE(5551), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153553] = 4, + ACTIONS(11882), 1, + anon_sym_AMP, + STATE(5244), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 8, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_in, + [153576] = 5, + ACTIONS(11885), 1, + anon_sym_DOT, + ACTIONS(11887), 1, + anon_sym_AMP, + STATE(5265), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 7, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_in, + [153601] = 4, + ACTIONS(11889), 1, + anon_sym_QMARK, + STATE(5270), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6432), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153624] = 4, + ACTIONS(11891), 1, + anon_sym_QMARK, + STATE(5631), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6474), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153647] = 8, + ACTIONS(11399), 1, + sym_where_keyword, + ACTIONS(11893), 1, + sym__arrow_operator_custom, + STATE(4327), 1, + sym__arrow_operator, + STATE(5845), 1, + sym_throws, + STATE(7728), 1, + sym_type_constraints, + ACTIONS(11397), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(11874), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [153678] = 4, + ACTIONS(11895), 1, + anon_sym_QMARK, + STATE(5662), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6438), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153701] = 4, + ACTIONS(11897), 1, + anon_sym_QMARK, + STATE(5282), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6444), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153724] = 10, + ACTIONS(5596), 1, + anon_sym_COMMA, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(11560), 1, + sym_where_keyword, + ACTIONS(11899), 1, + sym__eq_custom, + STATE(907), 1, + sym__equal_sign, + STATE(5556), 1, + sym_type_constraints, + STATE(7097), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(7098), 1, + sym_computed_property, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6309), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [153759] = 4, + ACTIONS(11901), 1, + anon_sym_QMARK, + STATE(5641), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6480), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153782] = 8, + ACTIONS(11485), 1, + anon_sym_AT, + ACTIONS(11903), 1, + anon_sym_RPAREN, + STATE(6200), 1, + sym_simple_identifier, + STATE(6265), 1, + sym_attribute, + STATE(7242), 1, + sym_parameter, + STATE(7496), 1, + sym__function_value_parameter, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [153813] = 5, + ACTIONS(11905), 1, + anon_sym_DOT, + ACTIONS(11907), 1, + anon_sym_AMP, + STATE(5257), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 8, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153838] = 4, + ACTIONS(11909), 1, + anon_sym_QMARK, + STATE(5559), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6331), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153861] = 9, + ACTIONS(91), 1, + anon_sym_func, + ACTIONS(97), 1, + anon_sym_init, + ACTIONS(6644), 1, + aux_sym_simple_identifier_token1, + STATE(5676), 1, + sym_simple_identifier, + STATE(7244), 1, + sym__non_constructor_function_decl, + STATE(7245), 1, + sym__constructor_function_decl, + STATE(10335), 1, + sym__modifierless_function_declaration_no_body, + ACTIONS(6646), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [153894] = 4, + ACTIONS(11907), 1, + anon_sym_AMP, + STATE(5268), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153917] = 4, + ACTIONS(11911), 1, + anon_sym_QMARK, + STATE(5285), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6450), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [153940] = 10, + ACTIONS(5684), 1, + anon_sym_COMMA, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(11568), 1, + sym_where_keyword, + ACTIONS(11913), 1, + sym__eq_custom, + STATE(745), 1, + sym__equal_sign, + STATE(5533), 1, + sym_type_constraints, + STATE(7313), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(7322), 1, + sym_computed_property, + ACTIONS(6486), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [153975] = 5, + ACTIONS(11885), 1, + anon_sym_DOT, + ACTIONS(11887), 1, + anon_sym_AMP, + STATE(5265), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 7, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_in, + [154000] = 5, + ACTIONS(11905), 1, + anon_sym_DOT, + ACTIONS(11907), 1, + anon_sym_AMP, + STATE(5257), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 8, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154025] = 7, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(6494), 1, + sym_type_parameter_modifiers, + STATE(7439), 1, + sym_type_parameter, + STATE(7441), 1, + sym_simple_identifier, + STATE(5688), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [154054] = 8, + ACTIONS(11485), 1, + anon_sym_AT, + ACTIONS(11915), 1, + anon_sym_RPAREN, + STATE(6200), 1, + sym_simple_identifier, + STATE(6265), 1, + sym_attribute, + STATE(7242), 1, + sym_parameter, + STATE(7445), 1, + sym__function_value_parameter, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [154085] = 4, + ACTIONS(11917), 1, + anon_sym_QMARK, + STATE(5588), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6462), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154108] = 4, + ACTIONS(11887), 1, + anon_sym_AMP, + STATE(5244), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 8, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_in, + [154131] = 4, + ACTIONS(11919), 1, + anon_sym_QMARK, + STATE(5286), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6456), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154154] = 5, + ACTIONS(11905), 1, + anon_sym_DOT, + ACTIONS(11907), 1, + anon_sym_AMP, + STATE(5257), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 8, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154179] = 4, + ACTIONS(11921), 1, + anon_sym_AMP, + STATE(5268), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154202] = 4, + ACTIONS(11924), 1, + anon_sym_QMARK, + STATE(5663), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6462), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154225] = 4, + ACTIONS(11926), 1, + anon_sym_QMARK, + STATE(5288), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6468), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154248] = 4, + ACTIONS(11928), 1, + anon_sym_QMARK, + STATE(5188), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6456), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154271] = 4, + ACTIONS(11930), 1, + anon_sym_QMARK, + STATE(5252), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6450), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154294] = 4, + ACTIONS(11932), 1, + anon_sym_QMARK, + STATE(5289), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6272), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154317] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 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, + [154336] = 4, + ACTIONS(11934), 1, + anon_sym_QMARK, + STATE(5221), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6384), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154359] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 10, + sym__dot_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LT, + anon_sym_LBRACE, + [154378] = 3, + ACTIONS(5130), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 9, + sym__dot_custom, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_in, + [154399] = 5, + ACTIONS(11885), 1, + anon_sym_DOT, + ACTIONS(11887), 1, + anon_sym_AMP, + STATE(5265), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 7, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_in, + [154424] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 11, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154443] = 4, + ACTIONS(11936), 1, + anon_sym_QMARK, + STATE(5247), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6444), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154466] = 4, + ACTIONS(11938), 1, + anon_sym_QMARK, + STATE(5589), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6438), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154489] = 4, + ACTIONS(11940), 1, + anon_sym_QMARK, + STATE(5665), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6474), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154512] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 11, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154531] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 10, + sym__dot_custom, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LT, + anon_sym_in, + [154550] = 4, + ACTIONS(11942), 1, + anon_sym_QMARK, + STATE(5666), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6480), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154573] = 4, + ACTIONS(11944), 1, + anon_sym_QMARK, + STATE(5290), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6500), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154596] = 4, + ACTIONS(11946), 1, + anon_sym_QMARK, + STATE(5223), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6432), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154619] = 4, + ACTIONS(11948), 1, + anon_sym_QMARK, + STATE(5667), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6506), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154642] = 4, + ACTIONS(11950), 1, + anon_sym_QMARK, + STATE(5292), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6492), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154665] = 4, + ACTIONS(11952), 1, + anon_sym_QMARK, + STATE(5668), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6278), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154688] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 10, + sym__semi, + sym__dot_custom, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154707] = 4, + ACTIONS(11954), 1, + anon_sym_QMARK, + STATE(5669), 1, + sym__quest, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6512), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154730] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 10, + sym__semi, + sym__dot_custom, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154749] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 10, + sym__semi, + sym__dot_custom, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154768] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 10, + sym__semi, + sym__dot_custom, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154787] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 10, + sym__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, + [154806] = 10, + ACTIONS(5596), 1, + anon_sym_COMMA, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(11560), 1, + sym_where_keyword, + ACTIONS(11956), 1, + sym__eq_custom, + STATE(875), 1, + sym__equal_sign, + STATE(5616), 1, + sym_type_constraints, + STATE(7222), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(7226), 1, + sym_computed_property, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6486), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [154841] = 5, + ACTIONS(6137), 1, + anon_sym_LT, + ACTIONS(11958), 1, + anon_sym_COLON, + STATE(2364), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 7, + sym__dot_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [154866] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 10, + sym__arrow_operator_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_in, + [154885] = 7, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(6494), 1, + sym_type_parameter_modifiers, + STATE(7441), 1, + sym_simple_identifier, + STATE(8073), 1, + sym_type_parameter, + STATE(5688), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [154914] = 4, + ACTIONS(11960), 1, + anon_sym_QMARK, + STATE(5306), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6492), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154937] = 4, + ACTIONS(11962), 1, + anon_sym_QMARK, + STATE(5560), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6506), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154960] = 4, + ACTIONS(11096), 1, + sym__immediate_quest, + STATE(5308), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [154983] = 5, + ACTIONS(5055), 1, + anon_sym_QMARK, + ACTIONS(11964), 1, + sym__immediate_quest, + STATE(5219), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 7, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_in, + [155008] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 10, + sym__arrow_operator_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_in, + [155027] = 4, + ACTIONS(11966), 1, + anon_sym_QMARK, + STATE(5570), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6512), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155050] = 5, + ACTIONS(4735), 1, + anon_sym_QMARK, + ACTIONS(11082), 1, + sym__immediate_quest, + STATE(5304), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 7, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_in, + [155075] = 4, + ACTIONS(11968), 1, + sym__immediate_quest, + STATE(5312), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155098] = 4, + ACTIONS(11970), 1, + anon_sym_QMARK, + STATE(5321), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6364), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155121] = 9, + ACTIONS(91), 1, + anon_sym_func, + ACTIONS(97), 1, + anon_sym_init, + ACTIONS(6644), 1, + aux_sym_simple_identifier_token1, + STATE(5751), 1, + sym_simple_identifier, + STATE(7244), 1, + sym__non_constructor_function_decl, + STATE(7245), 1, + sym__constructor_function_decl, + STATE(10335), 1, + sym__modifierless_function_declaration_no_body, + ACTIONS(6646), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [155154] = 5, + ACTIONS(6137), 1, + anon_sym_LT, + ACTIONS(11972), 1, + anon_sym_COLON, + STATE(2364), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 7, + sym__dot_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [155179] = 4, + ACTIONS(11974), 1, + sym__immediate_quest, + STATE(5312), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155202] = 8, + ACTIONS(11485), 1, + anon_sym_AT, + ACTIONS(11977), 1, + anon_sym_RPAREN, + STATE(6200), 1, + sym_simple_identifier, + STATE(6265), 1, + sym_attribute, + STATE(7242), 1, + sym_parameter, + STATE(8072), 1, + sym__function_value_parameter, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [155233] = 4, + ACTIONS(11683), 1, + anon_sym_QMARK, + STATE(5339), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155256] = 4, + ACTIONS(11979), 1, + anon_sym_QMARK, + STATE(5568), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155279] = 4, + ACTIONS(11981), 1, + anon_sym_QMARK, + STATE(5354), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155302] = 5, + ACTIONS(5103), 1, + anon_sym_QMARK, + ACTIONS(11983), 1, + sym__immediate_quest, + STATE(5317), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 7, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + [155327] = 4, + ACTIONS(11986), 1, + anon_sym_QMARK, + STATE(5363), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6378), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155350] = 5, + ACTIONS(5055), 1, + anon_sym_QMARK, + ACTIONS(11988), 1, + sym__immediate_quest, + STATE(5317), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 7, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + [155375] = 7, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(6494), 1, + sym_type_parameter_modifiers, + STATE(7441), 1, + sym_simple_identifier, + STATE(7493), 1, + sym_type_parameter, + STATE(5688), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [155404] = 4, + ACTIONS(11990), 1, + anon_sym_QMARK, + STATE(5361), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6384), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155427] = 4, + ACTIONS(11992), 1, + anon_sym_QMARK, + STATE(5627), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6278), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155450] = 5, + ACTIONS(4735), 1, + anon_sym_QMARK, + ACTIONS(11068), 1, + sym__immediate_quest, + STATE(5319), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 7, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + [155475] = 4, + ACTIONS(11994), 1, + anon_sym_QMARK, + STATE(5360), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6390), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155498] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 10, + sym__dot_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LT, + anon_sym_LBRACE, + [155517] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 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, + [155536] = 5, + ACTIONS(11810), 1, + anon_sym_AMP, + ACTIONS(11818), 1, + anon_sym_DOT, + STATE(5195), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_LBRACE, + [155561] = 4, + ACTIONS(11996), 1, + anon_sym_AMP, + STATE(5328), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_GT, + anon_sym_LBRACE, + [155584] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 11, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155603] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 10, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155622] = 6, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + STATE(2302), 1, + sym_type_arguments, + STATE(6084), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6131), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [155649] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 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, + [155668] = 6, + ACTIONS(5029), 1, + anon_sym_QMARK, + ACTIONS(11999), 1, + sym__dot_custom, + STATE(5333), 1, + aux_sym_user_type_repeat1, + STATE(6309), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 6, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [155695] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 11, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155714] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 10, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155733] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 11, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155752] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 11, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155771] = 4, + ACTIONS(12002), 1, + anon_sym_QMARK, + STATE(5542), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6342), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155794] = 4, + ACTIONS(12004), 1, + anon_sym_QMARK, + STATE(5593), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155817] = 4, + ACTIONS(12006), 1, + anon_sym_QMARK, + STATE(5664), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155840] = 4, + ACTIONS(12008), 1, + anon_sym_QMARK, + STATE(5243), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [155863] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 10, + sym__dot_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LT, + anon_sym_LBRACE, + [155882] = 5, + ACTIONS(12010), 1, + anon_sym_LPAREN, + ACTIONS(12012), 1, + anon_sym_LBRACE, + STATE(5753), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12014), 7, + anon_sym_RBRACE, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_AT, + anon_sym_mutating, + anon_sym_nonmutating, + [155907] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 10, + sym__dot_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LT, + anon_sym_LBRACE, + [155926] = 5, + ACTIONS(12012), 1, + anon_sym_LBRACE, + ACTIONS(12016), 1, + anon_sym_LPAREN, + STATE(5827), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12018), 7, + anon_sym_RBRACE, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_AT, + anon_sym_mutating, + anon_sym_nonmutating, + [155951] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 10, + sym__dot_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LT, + anon_sym_LBRACE, + [155970] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 10, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LT, + [155989] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 11, + sym_multiline_comment, + sym__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, + [156008] = 5, + ACTIONS(12020), 1, + anon_sym_DOT, + ACTIONS(12022), 1, + anon_sym_AMP, + STATE(5352), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 7, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156033] = 6, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6131), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [156060] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 10, + sym__semi, + sym__dot_custom, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156079] = 4, + ACTIONS(12022), 1, + anon_sym_AMP, + STATE(5236), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156102] = 4, + ACTIONS(12024), 1, + anon_sym_QMARK, + STATE(5280), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6408), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156125] = 4, + ACTIONS(12026), 1, + anon_sym_QMARK, + STATE(5555), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6396), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156148] = 4, + ACTIONS(12028), 1, + anon_sym_QMARK, + STATE(5629), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6325), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156171] = 4, + ACTIONS(12030), 1, + anon_sym_QMARK, + STATE(5272), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6414), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156194] = 5, + ACTIONS(12020), 1, + anon_sym_DOT, + ACTIONS(12022), 1, + anon_sym_AMP, + STATE(5352), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 7, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156219] = 9, + ACTIONS(91), 1, + anon_sym_func, + ACTIONS(97), 1, + anon_sym_init, + ACTIONS(6644), 1, + aux_sym_simple_identifier_token1, + STATE(5796), 1, + sym_simple_identifier, + STATE(7244), 1, + sym__non_constructor_function_decl, + STATE(7245), 1, + sym__constructor_function_decl, + STATE(10335), 1, + sym__modifierless_function_declaration_no_body, + ACTIONS(6646), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [156252] = 9, + ACTIONS(1141), 1, + anon_sym_AT, + ACTIONS(4745), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11391), 1, + anon_sym_self, + STATE(5613), 1, + sym_simple_identifier, + STATE(5871), 1, + sym_attribute, + STATE(8766), 1, + sym_self_expression, + STATE(8767), 1, + sym_lambda_parameter, + ACTIONS(4747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [156285] = 4, + ACTIONS(12032), 1, + anon_sym_QMARK, + STATE(5264), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6426), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156308] = 4, + ACTIONS(12034), 1, + anon_sym_QMARK, + STATE(5640), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6420), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156331] = 5, + ACTIONS(12020), 1, + anon_sym_DOT, + ACTIONS(12022), 1, + anon_sym_AMP, + STATE(5352), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 7, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156356] = 4, + ACTIONS(12036), 1, + anon_sym_QMARK, + STATE(5281), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6402), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156379] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12038), 1, + anon_sym_COLON, + ACTIONS(12040), 1, + anon_sym_QMARK, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(6718), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [156409] = 5, + STATE(5524), 1, + aux_sym_value_argument_repeat1, + STATE(10315), 1, + sym_simple_identifier, + ACTIONS(12042), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [156433] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12044), 1, + anon_sym_COLON, + ACTIONS(12046), 1, + anon_sym_QMARK, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(6131), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [156463] = 10, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12050), 1, + anon_sym_QMARK, + ACTIONS(12052), 1, + anon_sym_in, + STATE(2302), 1, + sym_type_arguments, + STATE(7109), 1, + sym__quest, + STATE(10352), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [156497] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 9, + sym__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, + [156515] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 9, + sym__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, + [156533] = 6, + ACTIONS(12054), 1, + sym__dot_custom, + STATE(5460), 1, + aux_sym_user_type_repeat1, + STATE(6017), 1, + sym__dot, + ACTIONS(5036), 2, + aux_sym_simple_identifier_token1, + anon_sym_self, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 4, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + [156559] = 6, + ACTIONS(12056), 1, + anon_sym_RBRACE, + STATE(10248), 1, + sym_simple_identifier, + STATE(10322), 1, + sym_precedence_group_attributes, + STATE(5565), 2, + sym_precedence_group_attribute, + aux_sym_precedence_group_attributes_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [156585] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12058), 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, + [156603] = 5, + ACTIONS(12060), 1, + anon_sym_LT, + STATE(5745), 1, + sym_type_arguments, + ACTIONS(5086), 2, + aux_sym_simple_identifier_token1, + anon_sym_self, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 5, + sym__dot_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + [156627] = 6, + ACTIONS(12054), 1, + sym__dot_custom, + STATE(5370), 1, + aux_sym_user_type_repeat1, + STATE(6017), 1, + sym__dot, + ACTIONS(5022), 2, + aux_sym_simple_identifier_token1, + anon_sym_self, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 4, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + [156653] = 4, + ACTIONS(12012), 1, + anon_sym_LBRACE, + STATE(5749), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12062), 7, + anon_sym_RBRACE, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_AT, + anon_sym_mutating, + anon_sym_nonmutating, + [156675] = 4, + ACTIONS(12012), 1, + anon_sym_LBRACE, + STATE(5756), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12064), 7, + anon_sym_RBRACE, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_AT, + anon_sym_mutating, + anon_sym_nonmutating, + [156697] = 4, + ACTIONS(12066), 1, + sym__immediate_quest, + STATE(5377), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 7, + sym__semi, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156719] = 4, + ACTIONS(12069), 1, + sym__immediate_quest, + STATE(5377), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 7, + sym__semi, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156741] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12046), 1, + anon_sym_QMARK, + ACTIONS(12071), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(6131), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [156771] = 4, + ACTIONS(11147), 1, + sym__immediate_quest, + STATE(5378), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 7, + sym__semi, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156793] = 4, + ACTIONS(12073), 1, + sym__as_custom, + STATE(4607), 1, + sym__as, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6578), 7, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [156815] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 9, + sym__dot_custom, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_in, + [156833] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12040), 1, + anon_sym_QMARK, + ACTIONS(12075), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(6718), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [156863] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 9, + sym__dot_custom, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_in, + [156881] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 9, + sym__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, + [156899] = 5, + ACTIONS(12077), 1, + anon_sym_DOT, + ACTIONS(12079), 1, + anon_sym_AMP, + STATE(5403), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [156923] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 9, + sym__dot_custom, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_in, + [156941] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 9, + sym__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, + [156959] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 9, + sym__dot_custom, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_in, + [156977] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 9, + sym__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, + [156995] = 5, + ACTIONS(12081), 1, + anon_sym_DOT, + ACTIONS(12083), 1, + anon_sym_AMP, + STATE(5395), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [157019] = 4, + ACTIONS(12012), 1, + anon_sym_LBRACE, + STATE(5721), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12085), 7, + anon_sym_RBRACE, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_AT, + anon_sym_mutating, + anon_sym_nonmutating, + [157041] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 9, + sym__semi, + sym__dot_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [157059] = 4, + ACTIONS(12087), 1, + sym__as_custom, + STATE(4360), 1, + sym__as, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6578), 8, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [157081] = 4, + ACTIONS(12083), 1, + anon_sym_AMP, + STATE(5400), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 7, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_LBRACE, + [157103] = 5, + ACTIONS(12081), 1, + anon_sym_DOT, + ACTIONS(12083), 1, + anon_sym_AMP, + STATE(5395), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [157127] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 9, + sym__semi, + sym__dot_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [157145] = 8, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(12089), 1, + anon_sym_in, + ACTIONS(12091), 1, + sym__arrow_operator_custom, + STATE(4264), 1, + sym__arrow_operator, + STATE(7626), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(5990), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [157175] = 5, + ACTIONS(12081), 1, + anon_sym_DOT, + ACTIONS(12083), 1, + anon_sym_AMP, + STATE(5395), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [157199] = 4, + ACTIONS(12093), 1, + anon_sym_AMP, + STATE(5400), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 7, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_LBRACE, + [157221] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 9, + sym__semi, + sym__dot_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [157239] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 9, + sym__semi, + sym__dot_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [157257] = 4, + ACTIONS(12079), 1, + anon_sym_AMP, + STATE(5426), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 7, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_in, + [157279] = 7, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5786), 1, + anon_sym_RPAREN, + STATE(5607), 1, + aux_sym_attribute_repeat1, + STATE(8146), 1, + aux_sym_attribute_repeat3, + STATE(10111), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [157307] = 5, + ACTIONS(12077), 1, + anon_sym_DOT, + ACTIONS(12079), 1, + anon_sym_AMP, + STATE(5403), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [157331] = 7, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5852), 1, + anon_sym_RPAREN, + STATE(5607), 1, + aux_sym_attribute_repeat1, + STATE(7527), 1, + aux_sym_attribute_repeat3, + STATE(10111), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [157359] = 4, + ACTIONS(11153), 1, + sym__immediate_quest, + STATE(5409), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 7, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + [157381] = 3, + ACTIONS(5142), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 8, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + [157401] = 4, + ACTIONS(12096), 1, + sym__immediate_quest, + STATE(5411), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 7, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + [157423] = 7, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12098), 1, + anon_sym_QMARK, + STATE(2302), 1, + sym_type_arguments, + STATE(6084), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6131), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [157451] = 4, + ACTIONS(12100), 1, + sym__immediate_quest, + STATE(5411), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 7, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + [157473] = 3, + ACTIONS(5146), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 8, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + [157493] = 5, + STATE(5524), 1, + aux_sym_value_argument_repeat1, + STATE(10315), 1, + sym_simple_identifier, + ACTIONS(12103), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [157517] = 7, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5778), 1, + anon_sym_RPAREN, + STATE(5607), 1, + aux_sym_attribute_repeat1, + STATE(7838), 1, + aux_sym_attribute_repeat3, + STATE(10111), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [157545] = 7, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5862), 1, + anon_sym_RPAREN, + STATE(5607), 1, + aux_sym_attribute_repeat1, + STATE(7647), 1, + aux_sym_attribute_repeat3, + STATE(10111), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [157573] = 8, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(12105), 1, + anon_sym_in, + ACTIONS(12107), 1, + sym__arrow_operator_custom, + STATE(4268), 1, + sym__arrow_operator, + STATE(7471), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(5992), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [157603] = 6, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(6078), 1, + sym_simple_identifier, + STATE(6968), 1, + sym_identifier, + STATE(5724), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11483), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [157629] = 7, + ACTIONS(11106), 1, + anon_sym_get, + ACTIONS(11108), 1, + anon_sym_set, + ACTIONS(12109), 1, + anon_sym_RBRACE, + STATE(9203), 1, + sym_mutation_modifier, + ACTIONS(5368), 2, + anon_sym_mutating, + anon_sym_nonmutating, + STATE(5521), 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, + [157657] = 4, + ACTIONS(12012), 1, + anon_sym_LBRACE, + STATE(5819), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12111), 7, + anon_sym_RBRACE, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_AT, + anon_sym_mutating, + anon_sym_nonmutating, + [157679] = 6, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(6078), 1, + sym_simple_identifier, + STATE(6348), 1, + sym_identifier, + STATE(5724), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11483), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [157705] = 8, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(12113), 1, + anon_sym_in, + ACTIONS(12115), 1, + sym__arrow_operator_custom, + STATE(4302), 1, + sym__arrow_operator, + STATE(7887), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6235), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [157735] = 10, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12117), 1, + anon_sym_QMARK, + ACTIONS(12119), 1, + anon_sym_in, + STATE(2302), 1, + sym_type_arguments, + STATE(7301), 1, + sym__quest, + STATE(9991), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [157769] = 7, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(6200), 1, + sym_simple_identifier, + STATE(6265), 1, + sym_attribute, + STATE(7242), 1, + sym_parameter, + STATE(8851), 1, + sym__function_value_parameter, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [157797] = 5, + ACTIONS(12121), 1, + sym__dot_custom, + STATE(5424), 1, + aux_sym_user_type_repeat1, + STATE(6007), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 6, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + [157821] = 5, + ACTIONS(12077), 1, + anon_sym_DOT, + ACTIONS(12079), 1, + anon_sym_AMP, + STATE(5403), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [157845] = 4, + ACTIONS(12124), 1, + anon_sym_AMP, + STATE(5426), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 7, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_in, + [157867] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12046), 1, + anon_sym_QMARK, + ACTIONS(12127), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(6131), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [157897] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12040), 1, + anon_sym_QMARK, + ACTIONS(12129), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(6718), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [157927] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12046), 1, + anon_sym_QMARK, + ACTIONS(12131), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(6131), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [157957] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12040), 1, + anon_sym_QMARK, + ACTIONS(12133), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(6718), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [157987] = 4, + ACTIONS(12012), 1, + anon_sym_LBRACE, + STATE(5830), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12135), 7, + anon_sym_RBRACE, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_AT, + anon_sym_mutating, + anon_sym_nonmutating, + [158009] = 6, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(6078), 1, + sym_simple_identifier, + STATE(6563), 1, + sym_identifier, + STATE(5724), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11483), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [158035] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 9, + sym__arrow_operator_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_in, + [158053] = 5, + ACTIONS(12137), 1, + sym__dot_custom, + STATE(5434), 1, + aux_sym_user_type_repeat1, + STATE(5967), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 6, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_AT, + [158077] = 5, + ACTIONS(12140), 1, + anon_sym_DOT, + ACTIONS(12142), 1, + anon_sym_AMP, + STATE(5439), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 6, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + [158101] = 10, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12144), 1, + anon_sym_QMARK, + ACTIONS(12146), 1, + anon_sym_in, + STATE(2302), 1, + sym_type_arguments, + STATE(7119), 1, + sym__quest, + STATE(10306), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [158135] = 7, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5838), 1, + anon_sym_RPAREN, + STATE(5607), 1, + aux_sym_attribute_repeat1, + STATE(7792), 1, + aux_sym_attribute_repeat3, + STATE(10111), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [158163] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4983), 10, + sym_multiline_comment, + sym__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, + [158181] = 4, + ACTIONS(12142), 1, + anon_sym_AMP, + STATE(5445), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 7, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + [158203] = 5, + ACTIONS(12140), 1, + anon_sym_DOT, + ACTIONS(12142), 1, + anon_sym_AMP, + STATE(5439), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 6, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + [158227] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 9, + sym__arrow_operator_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_in, + [158245] = 3, + ACTIONS(5146), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 8, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_in, + [158265] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4987), 10, + sym_multiline_comment, + sym__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, + [158283] = 5, + ACTIONS(12140), 1, + anon_sym_DOT, + ACTIONS(12142), 1, + anon_sym_AMP, + STATE(5439), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 6, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + [158307] = 4, + ACTIONS(12148), 1, + anon_sym_AMP, + STATE(5445), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 7, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + [158329] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4991), 10, + sym_multiline_comment, + sym__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, + [158347] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 9, + sym__arrow_operator_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_in, + [158365] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 9, + sym__arrow_operator_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_in, + [158383] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 9, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [158401] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 9, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [158419] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 9, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [158437] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12046), 1, + anon_sym_QMARK, + ACTIONS(12151), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(6131), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [158467] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 9, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [158485] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 10, + sym_multiline_comment, + sym__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, + [158503] = 3, + ACTIONS(5142), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 8, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_in, + [158523] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 9, + sym__arrow_operator_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_in, + [158541] = 6, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(6078), 1, + sym_simple_identifier, + STATE(6925), 1, + sym_identifier, + STATE(5724), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11483), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [158567] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12153), 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, + [158585] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 10, + sym_multiline_comment, + sym__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, + [158603] = 6, + ACTIONS(12155), 1, + sym__dot_custom, + STATE(5460), 1, + aux_sym_user_type_repeat1, + STATE(6017), 1, + sym__dot, + ACTIONS(5029), 2, + aux_sym_simple_identifier_token1, + anon_sym_self, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 4, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + [158629] = 6, + ACTIONS(12158), 1, + anon_sym_RBRACE, + STATE(10246), 1, + sym_precedence_group_attributes, + STATE(10248), 1, + sym_simple_identifier, + STATE(5565), 2, + sym_precedence_group_attribute, + aux_sym_precedence_group_attributes_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [158655] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 10, + sym_multiline_comment, + sym__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, + [158673] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 9, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [158691] = 7, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5894), 1, + anon_sym_RPAREN, + STATE(5607), 1, + aux_sym_attribute_repeat1, + STATE(7427), 1, + aux_sym_attribute_repeat3, + STATE(10111), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [158719] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 10, + sym_multiline_comment, + sym__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, + [158737] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 9, + sym__dot_custom, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [158755] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 10, + sym_multiline_comment, + sym__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, + [158773] = 4, + ACTIONS(12160), 1, + anon_sym_LT, + STATE(5853), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 7, + sym__dot_custom, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_AT, + [158795] = 3, + ACTIONS(5134), 2, + aux_sym_simple_identifier_token1, + anon_sym_some, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 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, + [158815] = 3, + ACTIONS(5122), 2, + aux_sym_simple_identifier_token1, + anon_sym_some, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 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, + [158835] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12040), 1, + anon_sym_QMARK, + ACTIONS(12162), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(6718), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [158865] = 8, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(11568), 1, + sym_where_keyword, + ACTIONS(12164), 1, + sym__eq_custom, + STATE(815), 1, + sym__equal_sign, + STATE(5838), 1, + sym_type_constraints, + STATE(8040), 1, + sym_computed_property, + ACTIONS(6600), 3, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [158895] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12046), 1, + anon_sym_QMARK, + ACTIONS(12166), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(6131), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [158925] = 7, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5872), 1, + anon_sym_RPAREN, + STATE(5607), 1, + aux_sym_attribute_repeat1, + STATE(7442), 1, + aux_sym_attribute_repeat3, + STATE(10111), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [158953] = 3, + ACTIONS(5029), 2, + aux_sym_simple_identifier_token1, + anon_sym_some, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 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, + [158973] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12046), 1, + anon_sym_QMARK, + ACTIONS(12168), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(6131), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [159003] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 9, + sym__dot_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + [159021] = 6, + ACTIONS(12170), 1, + anon_sym_RBRACE, + STATE(10248), 1, + sym_simple_identifier, + STATE(10420), 1, + sym_precedence_group_attributes, + STATE(5565), 2, + sym_precedence_group_attribute, + aux_sym_precedence_group_attributes_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [159047] = 3, + ACTIONS(5130), 2, + aux_sym_simple_identifier_token1, + anon_sym_some, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 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, + [159067] = 5, + ACTIONS(12172), 1, + sym__dot_custom, + STATE(5485), 1, + aux_sym_user_type_repeat1, + STATE(5967), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 6, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_AT, + [159091] = 4, + ACTIONS(12174), 1, + anon_sym_LT, + STATE(5922), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 7, + sym__dot_custom, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + [159113] = 8, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(11560), 1, + sym_where_keyword, + ACTIONS(12176), 1, + sym__eq_custom, + STATE(919), 1, + sym__equal_sign, + STATE(5805), 1, + sym_type_constraints, + STATE(7553), 1, + sym_computed_property, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6600), 4, + sym_multiline_comment, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + [159143] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 9, + sym__dot_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + [159161] = 7, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5874), 1, + anon_sym_RPAREN, + STATE(5607), 1, + aux_sym_attribute_repeat1, + STATE(7374), 1, + aux_sym_attribute_repeat3, + STATE(10111), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [159189] = 5, + ACTIONS(12172), 1, + sym__dot_custom, + STATE(5434), 1, + aux_sym_user_type_repeat1, + STATE(5967), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 6, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_AT, + [159213] = 7, + ACTIONS(11106), 1, + anon_sym_get, + ACTIONS(11108), 1, + anon_sym_set, + ACTIONS(12178), 1, + anon_sym_RBRACE, + STATE(9203), 1, + sym_mutation_modifier, + ACTIONS(5368), 2, + anon_sym_mutating, + anon_sym_nonmutating, + STATE(5418), 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, + [159241] = 4, + ACTIONS(11159), 1, + sym__immediate_quest, + STATE(5494), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 7, + sym__semi, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [159263] = 10, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12180), 1, + anon_sym_QMARK, + ACTIONS(12182), 1, + anon_sym_in, + STATE(2302), 1, + sym_type_arguments, + STATE(7197), 1, + sym__quest, + STATE(9957), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [159297] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 9, + sym__dot_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + [159315] = 10, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12184), 1, + anon_sym_QMARK, + ACTIONS(12186), 1, + anon_sym_in, + STATE(2302), 1, + sym_type_arguments, + STATE(7172), 1, + sym__quest, + STATE(9948), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [159349] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 9, + sym__dot_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + [159367] = 5, + ACTIONS(12188), 1, + sym__dot_custom, + STATE(5493), 1, + aux_sym_user_type_repeat1, + STATE(6007), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 6, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + [159391] = 5, + ACTIONS(12188), 1, + sym__dot_custom, + STATE(5424), 1, + aux_sym_user_type_repeat1, + STATE(6007), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 6, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + [159415] = 4, + ACTIONS(12190), 1, + sym__immediate_quest, + STATE(5495), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 7, + sym__semi, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [159437] = 4, + ACTIONS(12192), 1, + sym__immediate_quest, + STATE(5495), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 7, + sym__semi, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [159459] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12040), 1, + anon_sym_QMARK, + ACTIONS(12195), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(6718), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [159489] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12046), 1, + anon_sym_QMARK, + ACTIONS(12197), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(6131), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [159519] = 10, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(6718), 1, + sym__as_custom, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12199), 1, + anon_sym_QMARK, + ACTIONS(12201), 1, + anon_sym_in, + STATE(2302), 1, + sym_type_arguments, + STATE(7093), 1, + sym__quest, + STATE(10161), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [159553] = 6, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(6078), 1, + sym_simple_identifier, + STATE(6853), 1, + sym_identifier, + STATE(5724), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11483), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [159579] = 7, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5780), 1, + anon_sym_RPAREN, + STATE(5607), 1, + aux_sym_attribute_repeat1, + STATE(7856), 1, + aux_sym_attribute_repeat3, + STATE(10111), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [159607] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12046), 1, + anon_sym_QMARK, + ACTIONS(12203), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(6131), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [159637] = 5, + ACTIONS(12205), 1, + anon_sym_DOT, + ACTIONS(12207), 1, + anon_sym_AMP, + STATE(5504), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 7, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + [159661] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12040), 1, + anon_sym_QMARK, + ACTIONS(12209), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(6718), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [159691] = 4, + ACTIONS(12207), 1, + anon_sym_AMP, + STATE(5508), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 8, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + [159713] = 6, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(6078), 1, + sym_simple_identifier, + STATE(7031), 1, + sym_identifier, + STATE(5724), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11483), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [159739] = 5, + ACTIONS(12205), 1, + anon_sym_DOT, + ACTIONS(12207), 1, + anon_sym_AMP, + STATE(5504), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 7, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + [159763] = 5, + ACTIONS(12205), 1, + anon_sym_DOT, + ACTIONS(12207), 1, + anon_sym_AMP, + STATE(5504), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 7, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + [159787] = 4, + ACTIONS(12211), 1, + anon_sym_AMP, + STATE(5508), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 8, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + [159809] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12040), 1, + anon_sym_QMARK, + ACTIONS(12214), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(6718), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [159839] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 9, + sym__semi, + sym__dot_custom, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [159857] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 9, + sym__semi, + sym__dot_custom, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [159875] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 10, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [159893] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 9, + sym__semi, + sym__dot_custom, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [159911] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12040), 1, + anon_sym_QMARK, + ACTIONS(12216), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(6718), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [159941] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12046), 1, + anon_sym_QMARK, + ACTIONS(12218), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(6131), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [159971] = 3, + ACTIONS(4819), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 8, + sym__dot_custom, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LT, + [159991] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12040), 1, + anon_sym_QMARK, + ACTIONS(12220), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(6718), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [160021] = 4, + ACTIONS(12012), 1, + anon_sym_LBRACE, + STATE(5785), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12222), 7, + anon_sym_RBRACE, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_AT, + anon_sym_mutating, + anon_sym_nonmutating, + [160043] = 8, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12046), 1, + anon_sym_QMARK, + ACTIONS(12224), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(6131), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [160073] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 10, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160091] = 7, + ACTIONS(12226), 1, + anon_sym_RBRACE, + ACTIONS(12228), 1, + anon_sym_get, + ACTIONS(12231), 1, + anon_sym_set, + STATE(9203), 1, + sym_mutation_modifier, + ACTIONS(12234), 2, + anon_sym_mutating, + anon_sym_nonmutating, + STATE(5521), 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, + [160119] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 9, + sym__semi, + sym__dot_custom, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160137] = 5, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12237), 1, + anon_sym_COLON, + STATE(2302), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 6, + sym__dot_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [160161] = 5, + STATE(5524), 1, + aux_sym_value_argument_repeat1, + STATE(10315), 1, + sym_simple_identifier, + ACTIONS(12242), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12239), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [160185] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160202] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 8, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_in, + [160219] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 8, + sym__semi, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160236] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12244), 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, + [160253] = 3, + ACTIONS(5134), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 7, + sym__dot_custom, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [160272] = 3, + ACTIONS(5122), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 7, + sym__dot_custom, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [160291] = 4, + ACTIONS(12246), 1, + anon_sym_AMP, + STATE(5531), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 6, + sym__semi, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160312] = 5, + ACTIONS(12249), 1, + anon_sym_DOT, + ACTIONS(12251), 1, + anon_sym_AMP, + STATE(5536), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 5, + sym__semi, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160335] = 8, + ACTIONS(5684), 1, + anon_sym_COMMA, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(12253), 1, + sym__eq_custom, + STATE(1054), 1, + sym__equal_sign, + STATE(7090), 1, + sym_computed_property, + STATE(7115), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(6614), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [160364] = 3, + ACTIONS(6069), 2, + aux_sym_simple_identifier_token1, + anon_sym_some, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6071), 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, + [160383] = 5, + ACTIONS(12249), 1, + anon_sym_DOT, + ACTIONS(12251), 1, + anon_sym_AMP, + STATE(5536), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 5, + sym__semi, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160406] = 4, + ACTIONS(12251), 1, + anon_sym_AMP, + STATE(5531), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 6, + sym__semi, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160427] = 3, + ACTIONS(5130), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 7, + sym__dot_custom, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [160446] = 8, + ACTIONS(5684), 1, + anon_sym_COMMA, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(12255), 1, + sym__eq_custom, + STATE(755), 1, + sym__equal_sign, + STATE(7295), 1, + sym_computed_property, + STATE(7342), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(6682), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [160475] = 6, + ACTIONS(12257), 1, + anon_sym_STAR, + STATE(2622), 1, + sym_simple_identifier, + STATE(7460), 1, + sym__availability_argument, + STATE(10320), 1, + sym_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8167), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [160500] = 5, + ACTIONS(12249), 1, + anon_sym_DOT, + ACTIONS(12251), 1, + anon_sym_AMP, + STATE(5536), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 5, + sym__semi, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160523] = 4, + ACTIONS(11171), 1, + sym__immediate_quest, + STATE(5543), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 6, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + [160544] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6624), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160561] = 4, + ACTIONS(12259), 1, + sym__immediate_quest, + STATE(5546), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 6, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + [160582] = 4, + ACTIONS(12261), 1, + anon_sym_LPAREN, + STATE(5911), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [160603] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12263), 8, + sym__semi, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym_where_keyword, + sym__async_keyword_custom, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160620] = 4, + ACTIONS(12265), 1, + sym__immediate_quest, + STATE(5546), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 6, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + [160641] = 3, + ACTIONS(5029), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 7, + sym__dot_custom, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [160660] = 3, + ACTIONS(6065), 2, + aux_sym_simple_identifier_token1, + anon_sym_some, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6067), 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, + [160679] = 7, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12046), 1, + anon_sym_QMARK, + STATE(2302), 1, + sym_type_arguments, + STATE(5998), 1, + sym__quest, + ACTIONS(6131), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [160706] = 7, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12268), 1, + anon_sym_QMARK, + STATE(2302), 1, + sym_type_arguments, + STATE(7265), 1, + sym__quest, + ACTIONS(6131), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [160733] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160750] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6238), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160767] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6670), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160784] = 4, + ACTIONS(12270), 1, + anon_sym_LPAREN, + ACTIONS(6044), 2, + aux_sym_simple_identifier_token1, + anon_sym_some, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6046), 5, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LBRACK, + anon_sym_AT, + [160805] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6620), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160822] = 8, + ACTIONS(5596), 1, + anon_sym_COMMA, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(12273), 1, + sym__eq_custom, + STATE(924), 1, + sym__equal_sign, + STATE(7181), 1, + sym_computed_property, + STATE(7182), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6682), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [160851] = 4, + ACTIONS(12275), 1, + anon_sym_AT, + STATE(5557), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5908), 5, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + [160872] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 8, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + [160889] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6658), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160906] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6678), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [160923] = 3, + ACTIONS(12278), 3, + aux_sym_simple_identifier_token1, + anon_sym_is, + sym_wildcard_pattern, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12280), 5, + sym__dot_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + [160942] = 5, + STATE(5607), 1, + aux_sym_attribute_repeat1, + STATE(10111), 1, + sym_simple_identifier, + ACTIONS(5956), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [160965] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 8, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + [160982] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 8, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + [160999] = 5, + ACTIONS(12282), 1, + anon_sym_RBRACE, + STATE(10248), 1, + sym_simple_identifier, + STATE(5630), 2, + sym_precedence_group_attribute, + aux_sym_precedence_group_attributes_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [161022] = 6, + ACTIONS(12284), 1, + anon_sym_STAR, + STATE(2622), 1, + sym_simple_identifier, + STATE(7886), 1, + sym__availability_argument, + STATE(10320), 1, + sym_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8167), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [161047] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 8, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + [161064] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6396), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [161081] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 8, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LBRACE, + [161098] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6662), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [161115] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 8, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_in, + [161132] = 5, + ACTIONS(12286), 1, + sym__dot_custom, + STATE(5575), 1, + aux_sym_user_type_repeat1, + STATE(6284), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 5, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_in, + [161155] = 4, + ACTIONS(12288), 1, + anon_sym_LT, + STATE(6081), 1, + sym_type_arguments, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 6, + sym__dot_custom, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_in, + [161176] = 5, + ACTIONS(12290), 1, + anon_sym_DOT, + ACTIONS(12292), 1, + anon_sym_AMP, + STATE(5577), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 5, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + [161199] = 5, + ACTIONS(12286), 1, + sym__dot_custom, + STATE(5618), 1, + aux_sym_user_type_repeat1, + STATE(6284), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 5, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_in, + [161222] = 5, + ACTIONS(12294), 1, + anon_sym_COLON, + STATE(10012), 1, + sym_simple_identifier, + ACTIONS(11608), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [161245] = 4, + ACTIONS(12292), 1, + anon_sym_AMP, + STATE(5583), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 6, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + [161266] = 7, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12296), 1, + anon_sym_QMARK, + STATE(2302), 1, + sym_type_arguments, + STATE(7870), 1, + sym__quest, + ACTIONS(6718), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [161293] = 5, + ACTIONS(12290), 1, + anon_sym_DOT, + ACTIONS(12292), 1, + anon_sym_AMP, + STATE(5577), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 5, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + [161316] = 5, + ACTIONS(12290), 1, + anon_sym_DOT, + ACTIONS(12292), 1, + anon_sym_AMP, + STATE(5577), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 5, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + [161339] = 3, + ACTIONS(4819), 2, + aux_sym_simple_identifier_token1, + anon_sym_self, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 6, + sym__dot_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_LT, + [161358] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [161375] = 4, + ACTIONS(12298), 1, + anon_sym_AMP, + STATE(5583), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 6, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + [161396] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [161413] = 8, + ACTIONS(5596), 1, + anon_sym_COMMA, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(11956), 1, + sym__eq_custom, + STATE(875), 1, + sym__equal_sign, + STATE(7221), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(7226), 1, + sym_computed_property, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6486), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [161442] = 3, + ACTIONS(12301), 2, + aux_sym_simple_identifier_token1, + anon_sym_some, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12303), 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, + [161461] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [161478] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6700), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [161495] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6696), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [161512] = 6, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + STATE(2302), 1, + sym_type_arguments, + STATE(7265), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6131), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [161537] = 5, + ACTIONS(12305), 1, + sym__dot_custom, + STATE(5599), 1, + aux_sym_user_type_repeat1, + STATE(6158), 1, + sym__dot, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5020), 6, + sym_multiline_comment, + sym__semi, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_RBRACE, + [161560] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [161577] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [161594] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6658), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [161611] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12307), 8, + sym__semi, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym_where_keyword, + sym__async_keyword_custom, + anon_sym_LBRACE, + anon_sym_RBRACE, + [161628] = 5, + ACTIONS(5103), 1, + anon_sym_QMARK, + ACTIONS(12309), 1, + sym__immediate_quest, + STATE(5596), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 5, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_AMP, + [161651] = 4, + ACTIONS(12312), 1, + anon_sym_LT, + STATE(5955), 1, + sym_type_arguments, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5084), 7, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_RBRACE, + [161672] = 7, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12314), 1, + anon_sym_QMARK, + STATE(2302), 1, + sym_type_arguments, + STATE(7559), 1, + sym__quest, + ACTIONS(6718), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [161699] = 5, + ACTIONS(12305), 1, + sym__dot_custom, + STATE(5614), 1, + aux_sym_user_type_repeat1, + STATE(6158), 1, + sym__dot, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5034), 6, + sym_multiline_comment, + sym__semi, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_RBRACE, + [161722] = 6, + ACTIONS(12316), 1, + anon_sym_STAR, + STATE(2622), 1, + sym_simple_identifier, + STATE(7545), 1, + sym__availability_argument, + STATE(10320), 1, + sym_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8167), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [161747] = 5, + ACTIONS(5055), 1, + anon_sym_QMARK, + ACTIONS(12318), 1, + sym__immediate_quest, + STATE(5596), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 5, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_AMP, + [161770] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 8, + sym__semi, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [161787] = 5, + ACTIONS(4735), 1, + anon_sym_QMARK, + ACTIONS(11193), 1, + sym__immediate_quest, + STATE(5601), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 5, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_AMP, + [161810] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(11874), 1, + anon_sym_LBRACE, + ACTIONS(12320), 1, + sym__arrow_operator_custom, + STATE(4272), 1, + sym__arrow_operator, + STATE(6798), 1, + sym_throws, + STATE(10101), 1, + sym_type_constraints, + ACTIONS(11724), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [161839] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 8, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [161856] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(11874), 1, + anon_sym_LBRACE, + ACTIONS(12322), 1, + sym__arrow_operator_custom, + STATE(4273), 1, + sym__arrow_operator, + STATE(6554), 1, + sym_throws, + STATE(10095), 1, + sym_type_constraints, + ACTIONS(11724), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [161885] = 5, + STATE(5607), 1, + aux_sym_attribute_repeat1, + STATE(10111), 1, + sym_simple_identifier, + ACTIONS(1219), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12324), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [161908] = 4, + ACTIONS(12327), 1, + anon_sym_LPAREN, + STATE(5804), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6238), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [161929] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 8, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_in, + [161946] = 8, + ACTIONS(5684), 1, + anon_sym_COMMA, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(11845), 1, + sym__eq_custom, + STATE(1041), 1, + sym__equal_sign, + STATE(7280), 1, + sym_computed_property, + STATE(7287), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(6309), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [161975] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 8, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [161992] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 8, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_in, + [162009] = 5, + ACTIONS(12329), 1, + anon_sym_COLON, + STATE(10019), 1, + sym_simple_identifier, + ACTIONS(6090), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [162032] = 5, + ACTIONS(12331), 1, + sym__dot_custom, + STATE(5614), 1, + aux_sym_user_type_repeat1, + STATE(6158), 1, + sym__dot, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 6, + sym_multiline_comment, + sym__semi, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_RBRACE, + [162055] = 4, + ACTIONS(12334), 1, + anon_sym_AT, + STATE(5615), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5908), 5, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_mutating, + anon_sym_nonmutating, + [162076] = 8, + ACTIONS(5596), 1, + anon_sym_COMMA, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(12337), 1, + sym__eq_custom, + STATE(904), 1, + sym__equal_sign, + STATE(7162), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(7163), 1, + sym_computed_property, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6614), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [162105] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 8, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162122] = 5, + ACTIONS(12339), 1, + sym__dot_custom, + STATE(5618), 1, + aux_sym_user_type_repeat1, + STATE(6284), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 5, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_in, + [162145] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 8, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162162] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162179] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6624), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162196] = 4, + ACTIONS(12342), 1, + anon_sym_LPAREN, + STATE(5846), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [162217] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 8, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162234] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 8, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162251] = 6, + ACTIONS(12344), 1, + anon_sym_STAR, + STATE(2622), 1, + sym_simple_identifier, + STATE(8871), 1, + sym__availability_argument, + STATE(10320), 1, + sym_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8167), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [162276] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 8, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162293] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6666), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162310] = 8, + ACTIONS(5596), 1, + anon_sym_COMMA, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(11899), 1, + sym__eq_custom, + STATE(907), 1, + sym__equal_sign, + STATE(7091), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(7098), 1, + sym_computed_property, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6309), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [162339] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6238), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162356] = 5, + ACTIONS(12349), 1, + anon_sym_RBRACE, + STATE(10248), 1, + sym_simple_identifier, + STATE(5630), 2, + sym_precedence_group_attribute, + aux_sym_precedence_group_attributes_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12346), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [162379] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6688), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162396] = 7, + ACTIONS(4743), 1, + sym__async_keyword_custom, + ACTIONS(11173), 1, + sym__arrow_operator_custom, + STATE(4552), 1, + sym__arrow_operator, + STATE(9797), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + STATE(6672), 2, + sym__async_keyword, + sym__async_keyword_internal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [162423] = 6, + ACTIONS(12351), 1, + anon_sym_STAR, + STATE(2622), 1, + sym_simple_identifier, + STATE(8089), 1, + sym__availability_argument, + STATE(10320), 1, + sym_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8167), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [162448] = 4, + ACTIONS(12353), 1, + anon_sym_LPAREN, + STATE(5824), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6238), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [162469] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6670), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162486] = 8, + ACTIONS(5684), 1, + anon_sym_COMMA, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(11913), 1, + sym__eq_custom, + STATE(745), 1, + sym__equal_sign, + STATE(7311), 1, + aux_sym__modifierless_property_declaration_repeat1, + STATE(7322), 1, + sym_computed_property, + ACTIONS(6486), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [162515] = 5, + ACTIONS(4745), 1, + aux_sym_simple_identifier_token1, + ACTIONS(12355), 2, + anon_sym_true, + anon_sym_false, + STATE(6420), 2, + sym_simple_identifier, + sym_boolean_literal, + ACTIONS(4747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [162538] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 8, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_in, + [162555] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162572] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6674), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162589] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6692), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162606] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12357), 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, + [162623] = 3, + ACTIONS(6073), 2, + aux_sym_simple_identifier_token1, + anon_sym_some, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6075), 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, + [162642] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 8, + sym__semi, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162659] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 8, + sym__dot_custom, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_LT, + [162676] = 7, + ACTIONS(5084), 1, + sym__dot_custom, + ACTIONS(6101), 1, + anon_sym_LT, + ACTIONS(12040), 1, + anon_sym_QMARK, + STATE(2302), 1, + sym_type_arguments, + STATE(7908), 1, + sym__quest, + ACTIONS(6718), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [162703] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12359), 8, + sym__semi, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym_where_keyword, + sym__async_keyword_custom, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162720] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162737] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 8, + sym__dot_custom, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_AT, + [162754] = 5, + ACTIONS(12361), 1, + anon_sym_DOT, + ACTIONS(12363), 1, + anon_sym_AMP, + STATE(5651), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 5, + sym__semi, + sym_where_keyword, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162777] = 4, + ACTIONS(12363), 1, + anon_sym_AMP, + STATE(5655), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 6, + sym__semi, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162798] = 5, + ACTIONS(12361), 1, + anon_sym_DOT, + ACTIONS(12363), 1, + anon_sym_AMP, + STATE(5651), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 5, + sym__semi, + sym_where_keyword, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162821] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6396), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162838] = 5, + ACTIONS(12361), 1, + anon_sym_DOT, + ACTIONS(12363), 1, + anon_sym_AMP, + STATE(5651), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 5, + sym__semi, + sym_where_keyword, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162861] = 4, + ACTIONS(12365), 1, + anon_sym_AMP, + STATE(5655), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 6, + sym__semi, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162882] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 8, + sym__semi, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162899] = 3, + ACTIONS(6061), 2, + aux_sym_simple_identifier_token1, + anon_sym_some, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6063), 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, + [162918] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6620), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162935] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(11835), 1, + anon_sym_LBRACE, + ACTIONS(12368), 1, + sym__arrow_operator_custom, + STATE(4284), 1, + sym__arrow_operator, + STATE(6518), 1, + sym_throws, + STATE(10223), 1, + sym_type_constraints, + ACTIONS(11724), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [162964] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6674), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [162981] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(11835), 1, + anon_sym_LBRACE, + ACTIONS(12370), 1, + sym__arrow_operator_custom, + STATE(4279), 1, + sym__arrow_operator, + STATE(6510), 1, + sym_throws, + STATE(10229), 1, + sym_type_constraints, + ACTIONS(11724), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [163010] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6696), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [163027] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6700), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [163044] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 8, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [163061] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6688), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [163078] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6692), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [163095] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6678), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [163112] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6666), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [163129] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6662), 9, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + [163146] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 7, + sym__dot_custom, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + [163162] = 5, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5737), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [163184] = 5, + STATE(3475), 1, + sym__simple_user_type, + STATE(3476), 1, + sym_simple_identifier, + STATE(3562), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10923), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [163206] = 3, + STATE(5849), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6364), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [163224] = 5, + STATE(5130), 1, + sym_simple_identifier, + STATE(5131), 1, + sym__simple_user_type, + STATE(5558), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11042), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [163246] = 5, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5679), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [163268] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12372), 1, + anon_sym_COLON, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12376), 1, + anon_sym_LBRACE, + STATE(6698), 1, + sym_type_parameters, + STATE(8542), 1, + sym_class_body, + STATE(8544), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [163296] = 5, + STATE(2860), 1, + sym__simple_user_type, + STATE(2987), 1, + sym_simple_identifier, + STATE(3102), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6520), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [163318] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12378), 1, + anon_sym_COLON, + ACTIONS(12380), 1, + anon_sym_LBRACE, + STATE(6382), 1, + sym_type_parameters, + STATE(8542), 1, + sym_enum_class_body, + STATE(8557), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [163346] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12382), 1, + anon_sym_COLON, + ACTIONS(12384), 1, + anon_sym_LBRACE, + STATE(4126), 1, + sym_class_body, + STATE(6629), 1, + sym_type_parameters, + STATE(8282), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [163374] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12386), 1, + anon_sym_COLON, + ACTIONS(12388), 1, + anon_sym_LBRACE, + STATE(6666), 1, + sym_type_parameters, + STATE(8588), 1, + sym_type_constraints, + STATE(10343), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [163402] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 7, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_in, + [163418] = 5, + STATE(1396), 1, + sym__simple_user_type, + STATE(1402), 1, + sym_simple_identifier, + STATE(1419), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5314), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [163440] = 3, + STATE(5748), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6432), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [163458] = 3, + STATE(6181), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6438), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [163476] = 3, + STATE(5768), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6444), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [163494] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12390), 1, + anon_sym_COLON, + ACTIONS(12392), 1, + anon_sym_LBRACE, + STATE(6485), 1, + sym_type_parameters, + STATE(8617), 1, + sym_type_constraints, + STATE(8751), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [163522] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 7, + sym__semi, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [163538] = 4, + ACTIONS(11485), 1, + anon_sym_AT, + STATE(5724), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12394), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [163558] = 8, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12396), 1, + anon_sym_QMARK, + ACTIONS(12398), 1, + anon_sym_in, + ACTIONS(12400), 1, + sym__as_custom, + STATE(4407), 1, + sym__as, + STATE(8061), 1, + sym__quest, + STATE(10003), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [163586] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 7, + sym__semi, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [163602] = 3, + ACTIONS(12402), 1, + anon_sym_BANG, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6814), 6, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [163620] = 7, + ACTIONS(801), 1, + anon_sym_LBRACE, + ACTIONS(11225), 1, + anon_sym_LPAREN, + ACTIONS(12404), 1, + sym__dot_custom, + STATE(1251), 1, + sym_constructor_suffix, + STATE(6327), 1, + sym__dot, + STATE(1283), 2, + sym__constructor_value_arguments, + sym_lambda_literal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [163646] = 3, + STATE(6167), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [163664] = 5, + STATE(5008), 1, + sym__simple_user_type, + STATE(5009), 1, + sym_simple_identifier, + STATE(5525), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10775), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [163686] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 7, + sym__semi, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [163702] = 3, + STATE(5776), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6450), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [163720] = 7, + ACTIONS(801), 1, + anon_sym_LBRACE, + ACTIONS(11225), 1, + anon_sym_LPAREN, + ACTIONS(12406), 1, + sym__dot_custom, + STATE(1251), 1, + sym_constructor_suffix, + STATE(6432), 1, + sym__dot, + STATE(1283), 2, + sym__constructor_value_arguments, + sym_lambda_literal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [163746] = 4, + ACTIONS(12408), 1, + sym_integer_literal, + STATE(5903), 2, + sym_simple_identifier, + aux_sym_attribute_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [163766] = 3, + ACTIONS(12410), 1, + anon_sym_BANG, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6814), 6, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_in, + [163784] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 7, + sym__semi, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [163800] = 3, + STATE(5779), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6456), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [163818] = 5, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(6201), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [163840] = 5, + STATE(4960), 1, + sym_simple_identifier, + STATE(4962), 1, + sym__simple_user_type, + STATE(5369), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10815), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [163862] = 6, + ACTIONS(12414), 1, + anon_sym_LPAREN, + ACTIONS(12416), 1, + anon_sym_QMARK, + ACTIONS(12418), 1, + sym__as_custom, + STATE(6286), 1, + sym__quest, + ACTIONS(12412), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [163886] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 7, + sym__semi, + sym_where_keyword, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [163902] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 7, + sym__semi, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [163918] = 4, + ACTIONS(12420), 1, + sym_integer_literal, + STATE(5903), 2, + sym_simple_identifier, + aux_sym_attribute_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [163938] = 5, + STATE(5468), 1, + sym_simple_identifier, + STATE(5480), 1, + sym__simple_user_type, + STATE(5936), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12422), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [163960] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 7, + sym__semi, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [163976] = 5, + STATE(5164), 1, + sym__simple_user_type, + STATE(5168), 1, + sym_simple_identifier, + STATE(5725), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10737), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [163998] = 3, + STATE(5971), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [164016] = 5, + STATE(3085), 1, + sym_simple_identifier, + STATE(3086), 1, + sym__simple_user_type, + STATE(3412), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12424), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [164038] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 7, + sym__semi, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [164054] = 6, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(12176), 1, + sym__eq_custom, + STATE(919), 1, + sym__equal_sign, + STATE(7553), 1, + sym_computed_property, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6600), 4, + sym_multiline_comment, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + [164078] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 7, + sym__semi, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [164094] = 5, + STATE(5133), 1, + sym_simple_identifier, + STATE(5135), 1, + sym__simple_user_type, + STATE(5833), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10608), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [164116] = 3, + STATE(5711), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [164134] = 3, + STATE(6082), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6325), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [164152] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12426), 1, + anon_sym_COLON, + ACTIONS(12428), 1, + anon_sym_LBRACE, + STATE(2853), 1, + sym_enum_class_body, + STATE(6376), 1, + sym_type_parameters, + STATE(8211), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [164180] = 5, + STATE(5481), 1, + sym_simple_identifier, + STATE(5492), 1, + sym__simple_user_type, + STATE(5956), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11183), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [164202] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12430), 7, + anon_sym_RBRACE, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_AT, + anon_sym_mutating, + anon_sym_nonmutating, + [164218] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 7, + sym__dot_custom, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LT, + anon_sym_in, + [164234] = 5, + STATE(2995), 1, + sym_simple_identifier, + STATE(2998), 1, + sym__simple_user_type, + STATE(3346), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11309), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [164256] = 4, + ACTIONS(12432), 1, + anon_sym_AT, + STATE(5724), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5908), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [164276] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 7, + sym__semi, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_RBRACE, + [164292] = 3, + STATE(6146), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6462), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [164310] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12376), 1, + anon_sym_LBRACE, + ACTIONS(12435), 1, + anon_sym_COLON, + STATE(6582), 1, + sym_type_parameters, + STATE(8592), 1, + sym_class_body, + STATE(8598), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [164338] = 5, + STATE(5373), 1, + sym_simple_identifier, + STATE(5374), 1, + sym__simple_user_type, + STATE(6291), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12437), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [164360] = 3, + STATE(695), 1, + sym__assignment_and_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12439), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + [164378] = 8, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12441), 1, + anon_sym_QMARK, + ACTIONS(12443), 1, + anon_sym_in, + ACTIONS(12445), 1, + sym__as_custom, + STATE(4407), 1, + sym__as, + STATE(7261), 1, + sym__quest, + STATE(9964), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [164406] = 8, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12445), 1, + sym__as_custom, + ACTIONS(12447), 1, + anon_sym_QMARK, + ACTIONS(12449), 1, + anon_sym_in, + STATE(4407), 1, + sym__as, + STATE(7200), 1, + sym__quest, + STATE(10047), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [164434] = 4, + ACTIONS(12451), 1, + sym_integer_literal, + STATE(5903), 2, + sym_simple_identifier, + aux_sym_attribute_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [164454] = 5, + ACTIONS(12453), 1, + anon_sym_DOT, + ACTIONS(12455), 1, + anon_sym_AMP, + STATE(5741), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 4, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LBRACE, + [164476] = 6, + ACTIONS(7243), 1, + aux_sym_simple_identifier_token1, + ACTIONS(7251), 1, + anon_sym_self, + STATE(5068), 1, + sym_simple_identifier, + STATE(5986), 1, + sym_self_expression, + ACTIONS(7245), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [164500] = 3, + STATE(5911), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [164518] = 5, + STATE(2857), 1, + sym__simple_user_type, + STATE(3016), 1, + sym_simple_identifier, + STATE(3049), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6532), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [164540] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12457), 1, + anon_sym_COLON, + ACTIONS(12459), 1, + anon_sym_LBRACE, + STATE(2945), 1, + sym_class_body, + STATE(6419), 1, + sym_type_parameters, + STATE(8229), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [164568] = 6, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(12164), 1, + sym__eq_custom, + STATE(815), 1, + sym__equal_sign, + STATE(8040), 1, + sym_computed_property, + ACTIONS(6600), 3, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [164592] = 7, + ACTIONS(11568), 1, + sym_where_keyword, + ACTIONS(12461), 1, + anon_sym_COLON, + ACTIONS(12463), 1, + sym__eq_custom, + STATE(4660), 1, + sym__equal_sign, + STATE(7214), 1, + sym_type_constraints, + ACTIONS(6836), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [164618] = 3, + STATE(991), 1, + sym__assignment_and_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12465), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + [164636] = 4, + ACTIONS(12455), 1, + anon_sym_AMP, + STATE(5763), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 5, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_LBRACE, + [164656] = 5, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(3023), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8167), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [164678] = 5, + ACTIONS(12453), 1, + anon_sym_DOT, + ACTIONS(12455), 1, + anon_sym_AMP, + STATE(5741), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 4, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LBRACE, + [164700] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 7, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_LBRACE, + [164716] = 3, + ACTIONS(5130), 2, + aux_sym_simple_identifier_token1, + anon_sym_self, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 5, + sym__dot_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + [164734] = 3, + ACTIONS(5146), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 6, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [164752] = 3, + STATE(5880), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [164770] = 3, + STATE(5800), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6468), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [164788] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12135), 7, + anon_sym_RBRACE, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_AT, + anon_sym_mutating, + anon_sym_nonmutating, + [164804] = 3, + ACTIONS(5029), 2, + aux_sym_simple_identifier_token1, + anon_sym_self, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 5, + sym__dot_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + [164822] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12459), 1, + anon_sym_LBRACE, + ACTIONS(12467), 1, + anon_sym_COLON, + STATE(2953), 1, + sym_class_body, + STATE(6438), 1, + sym_type_parameters, + STATE(8232), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [164850] = 8, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12400), 1, + sym__as_custom, + ACTIONS(12469), 1, + anon_sym_QMARK, + ACTIONS(12471), 1, + anon_sym_in, + STATE(4407), 1, + sym__as, + STATE(7830), 1, + sym__quest, + STATE(9943), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [164878] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12018), 7, + anon_sym_RBRACE, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_AT, + anon_sym_mutating, + anon_sym_nonmutating, + [164894] = 5, + STATE(2308), 1, + sym__simple_user_type, + STATE(2311), 1, + sym_simple_identifier, + STATE(2507), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10700), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [164916] = 5, + STATE(2617), 1, + sym_simple_identifier, + STATE(2647), 1, + sym__simple_user_type, + STATE(2832), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12473), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [164938] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12111), 7, + anon_sym_RBRACE, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_AT, + anon_sym_mutating, + anon_sym_nonmutating, + [164954] = 3, + ACTIONS(5122), 2, + aux_sym_simple_identifier_token1, + anon_sym_self, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 5, + sym__dot_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + [164972] = 5, + ACTIONS(12475), 1, + anon_sym_LPAREN, + ACTIONS(12477), 1, + anon_sym_QMARK, + STATE(6197), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [164994] = 5, + STATE(5113), 1, + sym_simple_identifier, + STATE(5118), 1, + sym__simple_user_type, + STATE(5705), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10717), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [165016] = 5, + ACTIONS(12453), 1, + anon_sym_DOT, + ACTIONS(12455), 1, + anon_sym_AMP, + STATE(5741), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 4, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LBRACE, + [165038] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12380), 1, + anon_sym_LBRACE, + ACTIONS(12479), 1, + anon_sym_COLON, + STATE(6379), 1, + sym_type_parameters, + STATE(8656), 1, + sym_type_constraints, + STATE(8657), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [165066] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12428), 1, + anon_sym_LBRACE, + ACTIONS(12481), 1, + anon_sym_COLON, + STATE(2953), 1, + sym_enum_class_body, + STATE(6435), 1, + sym_type_parameters, + STATE(8231), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [165094] = 4, + ACTIONS(12483), 1, + anon_sym_AMP, + STATE(5763), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 5, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_LBRACE, + [165114] = 8, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12400), 1, + sym__as_custom, + ACTIONS(12486), 1, + anon_sym_QMARK, + ACTIONS(12488), 1, + anon_sym_in, + STATE(4407), 1, + sym__as, + STATE(7687), 1, + sym__quest, + STATE(10184), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [165142] = 4, + ACTIONS(12490), 1, + anon_sym_COMMA, + STATE(5765), 1, + aux_sym_lambda_function_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12493), 5, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_in, + [165162] = 3, + STATE(997), 1, + sym__assignment_and_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12495), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + [165180] = 5, + STATE(2878), 1, + sym__simple_user_type, + STATE(2984), 1, + sym_simple_identifier, + STATE(3066), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6540), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [165202] = 3, + STATE(6113), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6474), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [165220] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12497), 1, + anon_sym_COLON, + ACTIONS(12499), 1, + anon_sym_LBRACE, + STATE(2957), 1, + sym_protocol_body, + STATE(6430), 1, + sym_type_parameters, + STATE(8230), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [165248] = 5, + ACTIONS(12501), 1, + anon_sym_LPAREN, + ACTIONS(12503), 1, + anon_sym_QMARK, + STATE(6187), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6238), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [165270] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5308), 7, + anon_sym_RBRACE, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_AT, + anon_sym_mutating, + anon_sym_nonmutating, + [165286] = 3, + STATE(6048), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6331), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [165304] = 6, + ACTIONS(12445), 1, + sym__as_custom, + ACTIONS(12505), 1, + anon_sym_QMARK, + STATE(4628), 1, + sym__as, + STATE(7330), 1, + sym__quest, + ACTIONS(1187), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [165328] = 8, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12445), 1, + sym__as_custom, + ACTIONS(12507), 1, + anon_sym_QMARK, + ACTIONS(12509), 1, + anon_sym_in, + STATE(4407), 1, + sym__as, + STATE(7258), 1, + sym__quest, + STATE(10020), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [165356] = 5, + STATE(3238), 1, + sym_simple_identifier, + STATE(3242), 1, + sym__simple_user_type, + STATE(3483), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10765), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [165378] = 3, + STATE(6112), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6480), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [165396] = 3, + ACTIONS(5142), 1, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 6, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + [165414] = 3, + ACTIONS(5134), 2, + aux_sym_simple_identifier_token1, + anon_sym_self, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 5, + sym__dot_custom, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + [165432] = 3, + STATE(5811), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6500), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [165450] = 5, + STATE(4866), 1, + sym__simple_user_type, + STATE(4875), 1, + sym_simple_identifier, + STATE(5185), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11281), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [165472] = 5, + STATE(3059), 1, + sym__simple_user_type, + STATE(3101), 1, + sym_simple_identifier, + STATE(3438), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10805), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [165494] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12511), 1, + anon_sym_COLON, + ACTIONS(12513), 1, + anon_sym_LBRACE, + STATE(6611), 1, + sym_type_parameters, + STATE(8635), 1, + sym_type_constraints, + STATE(8769), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [165522] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 8, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LT, + anon_sym_RBRACE, + [165538] = 8, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12445), 1, + sym__as_custom, + ACTIONS(12515), 1, + anon_sym_QMARK, + ACTIONS(12517), 1, + anon_sym_in, + STATE(4407), 1, + sym__as, + STATE(7327), 1, + sym__quest, + STATE(9980), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [165566] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12085), 7, + anon_sym_RBRACE, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_AT, + anon_sym_mutating, + anon_sym_nonmutating, + [165582] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12519), 1, + anon_sym_COLON, + ACTIONS(12521), 1, + anon_sym_LBRACE, + STATE(6621), 1, + sym_type_parameters, + STATE(8636), 1, + sym_type_constraints, + STATE(8770), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [165610] = 7, + ACTIONS(11560), 1, + sym_where_keyword, + ACTIONS(12523), 1, + anon_sym_COLON, + ACTIONS(12525), 1, + sym__eq_custom, + STATE(4361), 1, + sym__equal_sign, + STATE(7262), 1, + sym_type_constraints, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6836), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [165636] = 3, + STATE(5856), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6390), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [165654] = 4, + ACTIONS(12527), 1, + sym_integer_literal, + STATE(5903), 2, + sym_simple_identifier, + aux_sym_attribute_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [165674] = 5, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5782), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [165696] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(1203), 7, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + [165712] = 6, + ACTIONS(11399), 1, + sym_where_keyword, + ACTIONS(12531), 1, + sym__arrow_operator_custom, + STATE(4324), 1, + sym__arrow_operator, + STATE(7706), 1, + sym_type_constraints, + ACTIONS(12529), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [165736] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 7, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + [165752] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12392), 1, + anon_sym_LBRACE, + ACTIONS(12533), 1, + anon_sym_COLON, + STATE(6628), 1, + sym_type_parameters, + STATE(8637), 1, + sym_type_constraints, + STATE(8772), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [165780] = 4, + ACTIONS(12535), 1, + sym_integer_literal, + STATE(5903), 2, + sym_simple_identifier, + aux_sym_attribute_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [165800] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12513), 1, + anon_sym_LBRACE, + ACTIONS(12537), 1, + anon_sym_COLON, + STATE(6631), 1, + sym_type_parameters, + STATE(8638), 1, + sym_type_constraints, + STATE(8772), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [165828] = 6, + ACTIONS(11399), 1, + sym_where_keyword, + ACTIONS(12539), 1, + sym__arrow_operator_custom, + STATE(4325), 1, + sym__arrow_operator, + STATE(7718), 1, + sym_type_constraints, + ACTIONS(11874), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [165852] = 4, + ACTIONS(12541), 1, + sym_integer_literal, + STATE(5903), 2, + sym_simple_identifier, + aux_sym_attribute_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [165872] = 5, + STATE(1216), 1, + sym__simple_user_type, + STATE(1229), 1, + sym_simple_identifier, + STATE(1236), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4851), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [165894] = 3, + STATE(6091), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6506), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [165912] = 3, + STATE(5822), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6492), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [165930] = 6, + ACTIONS(12418), 1, + sym__as_custom, + ACTIONS(12543), 1, + anon_sym_LPAREN, + ACTIONS(12545), 1, + anon_sym_QMARK, + STATE(6171), 1, + sym__quest, + ACTIONS(12412), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [165954] = 7, + ACTIONS(11568), 1, + sym_where_keyword, + ACTIONS(12547), 1, + anon_sym_COLON, + ACTIONS(12549), 1, + sym__eq_custom, + STATE(4534), 1, + sym__equal_sign, + STATE(7217), 1, + sym_type_constraints, + ACTIONS(6772), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [165980] = 3, + STATE(6154), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [165998] = 6, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(12551), 1, + sym__eq_custom, + STATE(933), 1, + sym__equal_sign, + STATE(7396), 1, + sym_computed_property, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6808), 4, + sym_multiline_comment, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + [166022] = 5, + STATE(4872), 1, + sym_simple_identifier, + STATE(4878), 1, + sym__simple_user_type, + STATE(5175), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11293), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [166044] = 6, + ACTIONS(11399), 1, + sym_where_keyword, + ACTIONS(12553), 1, + sym__arrow_operator_custom, + STATE(4332), 1, + sym__arrow_operator, + STATE(7746), 1, + sym_type_constraints, + ACTIONS(12529), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [166068] = 5, + STATE(2306), 1, + sym__simple_user_type, + STATE(2322), 1, + sym_simple_identifier, + STATE(2464), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10755), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [166090] = 3, + STATE(5983), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6342), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [166108] = 6, + ACTIONS(11399), 1, + sym_where_keyword, + ACTIONS(12555), 1, + sym__arrow_operator_custom, + STATE(4301), 1, + sym__arrow_operator, + STATE(7766), 1, + sym_type_constraints, + ACTIONS(11874), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [166132] = 3, + STATE(6083), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6278), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [166150] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 7, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_LBRACE, + [166166] = 5, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(5193), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8167), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [166188] = 8, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12400), 1, + sym__as_custom, + ACTIONS(12557), 1, + anon_sym_QMARK, + ACTIONS(12559), 1, + anon_sym_in, + STATE(4407), 1, + sym__as, + STATE(7373), 1, + sym__quest, + STATE(10075), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [166216] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12388), 1, + anon_sym_LBRACE, + ACTIONS(12561), 1, + anon_sym_COLON, + STATE(6524), 1, + sym_type_parameters, + STATE(8661), 1, + sym_type_constraints, + STATE(10214), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [166244] = 5, + STATE(5169), 1, + sym__simple_user_type, + STATE(5171), 1, + sym_simple_identifier, + STATE(5571), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10992), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [166266] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5320), 7, + anon_sym_RBRACE, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_AT, + anon_sym_mutating, + anon_sym_nonmutating, + [166282] = 3, + ACTIONS(12563), 1, + anon_sym_BANG, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6814), 7, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [166300] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12565), 7, + anon_sym_RBRACE, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_AT, + anon_sym_mutating, + anon_sym_nonmutating, + [166316] = 5, + STATE(5106), 1, + sym_simple_identifier, + STATE(5152), 1, + sym__simple_user_type, + STATE(7980), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12567), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [166338] = 3, + STATE(5846), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [166356] = 3, + STATE(6065), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6512), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [166374] = 3, + STATE(799), 1, + sym__assignment_and_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12569), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + [166392] = 3, + STATE(6303), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [166410] = 3, + STATE(6296), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6342), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [166428] = 6, + ACTIONS(12445), 1, + sym__as_custom, + ACTIONS(12571), 1, + anon_sym_LPAREN, + ACTIONS(12573), 1, + anon_sym_QMARK, + STATE(5935), 1, + sym__quest, + ACTIONS(1187), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [166452] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12575), 7, + anon_sym_RBRACE, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_AT, + anon_sym_mutating, + anon_sym_nonmutating, + [166468] = 5, + STATE(5468), 1, + sym_simple_identifier, + STATE(5480), 1, + sym__simple_user_type, + STATE(6157), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12422), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [166490] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12577), 1, + anon_sym_COLON, + ACTIONS(12579), 1, + anon_sym_LBRACE, + STATE(4138), 1, + sym_enum_class_body, + STATE(6612), 1, + sym_type_parameters, + STATE(8276), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [166518] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12581), 7, + anon_sym_RBRACE, + anon_sym_get, + anon_sym_set, + anon_sym__modify, + anon_sym_AT, + anon_sym_mutating, + anon_sym_nonmutating, + [166534] = 5, + STATE(2960), 1, + sym__simple_user_type, + STATE(3071), 1, + sym_simple_identifier, + STATE(3154), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6638), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [166556] = 8, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12445), 1, + sym__as_custom, + ACTIONS(12583), 1, + anon_sym_QMARK, + ACTIONS(12585), 1, + anon_sym_in, + STATE(4407), 1, + sym__as, + STATE(7103), 1, + sym__quest, + STATE(10180), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [166584] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 7, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + [166600] = 4, + ACTIONS(12587), 1, + sym_integer_literal, + STATE(5903), 2, + sym_simple_identifier, + aux_sym_attribute_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [166620] = 8, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12445), 1, + sym__as_custom, + ACTIONS(12589), 1, + anon_sym_QMARK, + ACTIONS(12591), 1, + anon_sym_in, + STATE(4407), 1, + sym__as, + STATE(7147), 1, + sym__quest, + STATE(10302), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [166648] = 3, + STATE(793), 1, + sym__assignment_and_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12593), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + [166666] = 5, + STATE(5193), 1, + sym_user_type, + STATE(5572), 1, + sym__simple_user_type, + STATE(5573), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [166688] = 6, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(12595), 1, + sym__eq_custom, + STATE(720), 1, + sym__equal_sign, + STATE(7663), 1, + sym_computed_property, + ACTIONS(6808), 3, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [166712] = 5, + STATE(2298), 1, + sym__simple_user_type, + STATE(2299), 1, + sym_simple_identifier, + STATE(2360), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11253), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [166734] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 7, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + [166750] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 7, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + [166766] = 3, + STATE(5801), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6272), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [166784] = 5, + STATE(2205), 1, + sym__simple_user_type, + STATE(2227), 1, + sym_simple_identifier, + STATE(2256), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12597), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [166806] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 7, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + [166822] = 6, + ACTIONS(11399), 1, + sym_where_keyword, + ACTIONS(12601), 1, + sym__arrow_operator_custom, + STATE(4337), 1, + sym__arrow_operator, + STATE(7522), 1, + sym_type_constraints, + ACTIONS(12599), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [166846] = 3, + STATE(6159), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [166864] = 3, + STATE(5868), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [166882] = 3, + STATE(6014), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6325), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [166900] = 3, + STATE(5860), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6384), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [166918] = 6, + ACTIONS(11399), 1, + sym_where_keyword, + ACTIONS(12603), 1, + sym__arrow_operator_custom, + STATE(4336), 1, + sym__arrow_operator, + STATE(7563), 1, + sym_type_constraints, + ACTIONS(12599), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [166942] = 3, + STATE(1090), 1, + sym__assignment_and_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12605), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + [166960] = 5, + STATE(4906), 1, + sym__simple_user_type, + STATE(4907), 1, + sym_simple_identifier, + STATE(5456), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10624), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [166982] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 7, + sym__dot_custom, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_AT, + [166998] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11734), 7, + sym__semi, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym_where_keyword, + anon_sym_LBRACE, + anon_sym_RBRACE, + [167014] = 4, + ACTIONS(12607), 1, + sym_integer_literal, + STATE(5903), 2, + sym_simple_identifier, + aux_sym_attribute_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [167034] = 3, + STATE(5726), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6426), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [167052] = 3, + STATE(6202), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6331), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [167070] = 5, + STATE(4241), 1, + sym_simple_identifier, + STATE(4242), 1, + sym__simple_user_type, + STATE(4265), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12609), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [167092] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 7, + sym__dot_custom, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_AT, + [167108] = 3, + STATE(6269), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6420), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [167126] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 7, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + [167142] = 6, + ACTIONS(12445), 1, + sym__as_custom, + ACTIONS(12611), 1, + anon_sym_QMARK, + STATE(4407), 1, + sym__as, + STATE(7257), 1, + sym__quest, + ACTIONS(1187), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [167166] = 6, + ACTIONS(12445), 1, + sym__as_custom, + ACTIONS(12613), 1, + anon_sym_LPAREN, + ACTIONS(12615), 1, + anon_sym_QMARK, + STATE(6080), 1, + sym__quest, + ACTIONS(1187), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [167190] = 3, + STATE(5696), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6414), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [167208] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 7, + sym__dot_custom, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_AT, + [167224] = 3, + STATE(5874), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167242] = 8, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12400), 1, + sym__as_custom, + ACTIONS(12617), 1, + anon_sym_QMARK, + ACTIONS(12619), 1, + anon_sym_in, + STATE(4407), 1, + sym__as, + STATE(7910), 1, + sym__quest, + STATE(10039), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [167270] = 3, + STATE(6070), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167288] = 3, + STATE(5878), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6364), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167306] = 5, + STATE(2281), 1, + sym_simple_identifier, + STATE(2282), 1, + sym__simple_user_type, + STATE(2788), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8167), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [167328] = 6, + ACTIONS(4745), 1, + aux_sym_simple_identifier_token1, + ACTIONS(11391), 1, + anon_sym_self, + STATE(5576), 1, + sym_simple_identifier, + STATE(8760), 1, + sym_self_expression, + ACTIONS(4747), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [167352] = 3, + STATE(5685), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6408), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [167370] = 4, + ACTIONS(12621), 1, + anon_sym_COMMA, + STATE(5765), 1, + aux_sym_lambda_function_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12623), 5, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_in, + [167390] = 3, + STATE(5994), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167408] = 3, + STATE(5882), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167426] = 3, + STATE(5684), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6402), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [167444] = 3, + STATE(5883), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6378), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167462] = 3, + STATE(5886), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6384), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167480] = 3, + STATE(5887), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6390), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167498] = 3, + STATE(6299), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6396), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [167516] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12384), 1, + anon_sym_LBRACE, + ACTIONS(12625), 1, + anon_sym_COLON, + STATE(4138), 1, + sym_class_body, + STATE(6605), 1, + sym_type_parameters, + STATE(8273), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [167544] = 3, + STATE(6008), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6396), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167562] = 3, + STATE(5891), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6402), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167580] = 3, + STATE(5892), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6408), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167598] = 3, + STATE(5893), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6414), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167616] = 3, + STATE(6054), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6420), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167634] = 3, + STATE(5896), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6426), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167652] = 5, + STATE(4998), 1, + sym_simple_identifier, + STATE(5000), 1, + sym__simple_user_type, + STATE(5617), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10785), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [167674] = 4, + ACTIONS(12627), 1, + anon_sym_AMP, + STATE(5889), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 5, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + [167694] = 3, + STATE(5897), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6432), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167712] = 3, + STATE(6073), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6438), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167730] = 3, + STATE(5900), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6444), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167748] = 3, + STATE(5901), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6450), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167766] = 3, + STATE(5902), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6456), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167784] = 5, + ACTIONS(12630), 1, + anon_sym_DOT, + ACTIONS(12632), 1, + anon_sym_AMP, + STATE(5916), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [167806] = 3, + STATE(6093), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6462), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167824] = 3, + STATE(5904), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6468), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167842] = 3, + STATE(5905), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6272), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167860] = 5, + STATE(5591), 1, + sym__simple_user_type, + STATE(5597), 1, + sym_simple_identifier, + STATE(7207), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10843), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [167882] = 3, + STATE(6133), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6474), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167900] = 3, + STATE(6136), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6480), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167918] = 3, + STATE(5908), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6500), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167936] = 4, + ACTIONS(12637), 1, + sym_integer_literal, + STATE(5903), 2, + sym_simple_identifier, + aux_sym_attribute_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12634), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [167956] = 3, + STATE(6151), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6506), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167974] = 3, + STATE(5910), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6492), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [167992] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12521), 1, + anon_sym_LBRACE, + ACTIONS(12639), 1, + anon_sym_COLON, + STATE(6422), 1, + sym_type_parameters, + STATE(8613), 1, + sym_type_constraints, + STATE(8745), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [168020] = 5, + STATE(4977), 1, + sym_simple_identifier, + STATE(4979), 1, + sym__simple_user_type, + STATE(5454), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10795), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [168042] = 3, + STATE(6169), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6278), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [168060] = 6, + ACTIONS(11399), 1, + sym_where_keyword, + ACTIONS(12641), 1, + sym__arrow_operator_custom, + STATE(4316), 1, + sym__arrow_operator, + STATE(7928), 1, + sym_type_constraints, + ACTIONS(11835), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [168084] = 3, + STATE(6178), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6512), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [168102] = 3, + STATE(6118), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [168120] = 6, + ACTIONS(11399), 1, + sym_where_keyword, + ACTIONS(12643), 1, + sym__arrow_operator_custom, + STATE(4257), 1, + sym__arrow_operator, + STATE(7923), 1, + sym_type_constraints, + ACTIONS(11835), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [168144] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 7, + sym__dot_custom, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + [168160] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 7, + sym__dot_custom, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_AT, + [168176] = 5, + ACTIONS(12630), 1, + anon_sym_DOT, + ACTIONS(12632), 1, + anon_sym_AMP, + STATE(5916), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [168198] = 4, + ACTIONS(12632), 1, + anon_sym_AMP, + STATE(5889), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 5, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + [168218] = 3, + STATE(5693), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [168236] = 4, + ACTIONS(12645), 1, + sym_integer_literal, + STATE(5903), 2, + sym_simple_identifier, + aux_sym_attribute_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [168256] = 8, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12400), 1, + sym__as_custom, + ACTIONS(12647), 1, + anon_sym_QMARK, + ACTIONS(12649), 1, + anon_sym_in, + STATE(4407), 1, + sym__as, + STATE(8123), 1, + sym__quest, + STATE(9972), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [168284] = 5, + STATE(4246), 1, + sym__simple_user_type, + STATE(4247), 1, + sym_simple_identifier, + STATE(4484), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12651), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [168306] = 4, + ACTIONS(12653), 1, + sym_integer_literal, + STATE(5903), 2, + sym_simple_identifier, + aux_sym_attribute_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [168326] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 7, + sym__dot_custom, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + [168342] = 3, + STATE(5876), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6378), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [168360] = 4, + ACTIONS(12621), 1, + anon_sym_COMMA, + STATE(5873), 1, + aux_sym_lambda_function_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12655), 5, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_in, + [168380] = 7, + ACTIONS(1041), 1, + anon_sym_LBRACE, + ACTIONS(12657), 1, + anon_sym_LPAREN, + ACTIONS(12659), 1, + sym__dot_custom, + STATE(3295), 1, + sym_constructor_suffix, + STATE(6497), 1, + sym__dot, + STATE(3294), 2, + sym__constructor_value_arguments, + sym_lambda_literal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [168406] = 7, + ACTIONS(11560), 1, + sym_where_keyword, + ACTIONS(12661), 1, + anon_sym_COLON, + ACTIONS(12663), 1, + sym__eq_custom, + STATE(4477), 1, + sym__equal_sign, + STATE(7189), 1, + sym_type_constraints, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6772), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [168432] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12499), 1, + anon_sym_LBRACE, + ACTIONS(12665), 1, + anon_sym_COLON, + STATE(2926), 1, + sym_protocol_body, + STATE(6370), 1, + sym_type_parameters, + STATE(8209), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [168460] = 5, + STATE(5086), 1, + sym__simple_user_type, + STATE(5117), 1, + sym_simple_identifier, + STATE(5727), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [168482] = 5, + ACTIONS(12630), 1, + anon_sym_DOT, + ACTIONS(12632), 1, + anon_sym_AMP, + STATE(5916), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [168504] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 7, + sym__dot_custom, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + [168520] = 3, + STATE(852), 1, + sym__assignment_and_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12667), 6, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_EQ, + [168538] = 5, + STATE(5106), 1, + sym_simple_identifier, + STATE(5152), 1, + sym__simple_user_type, + STATE(5554), 1, + sym_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12567), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [168560] = 8, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12374), 1, + anon_sym_LT, + ACTIONS(12579), 1, + anon_sym_LBRACE, + ACTIONS(12669), 1, + anon_sym_COLON, + STATE(4016), 1, + sym_enum_class_body, + STATE(6663), 1, + sym_type_parameters, + STATE(8314), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [168588] = 5, + ACTIONS(12673), 1, + anon_sym_QMARK, + ACTIONS(12675), 1, + sym__as_custom, + STATE(6006), 1, + sym__quest, + ACTIONS(12671), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [168609] = 5, + ACTIONS(12418), 1, + sym__as_custom, + ACTIONS(12677), 1, + anon_sym_QMARK, + STATE(7063), 1, + sym__quest, + ACTIONS(12412), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [168630] = 3, + ACTIONS(12679), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6046), 5, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_AT, + [168647] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12681), 6, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_in, + [168662] = 4, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(12685), 1, + aux_sym_line_str_text_token1, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12683), 5, + anon_sym_DQUOTE, + anon_sym_BSLASH, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_BSLASH_LPAREN, + sym__escaped_identifier, + [168681] = 4, + STATE(5113), 1, + sym_simple_identifier, + STATE(5522), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10717), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [168700] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12418), 1, + sym__as_custom, + ACTIONS(12619), 1, + anon_sym_in, + ACTIONS(12687), 1, + anon_sym_QMARK, + STATE(6086), 1, + sym__quest, + STATE(10039), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [168725] = 5, + ACTIONS(12689), 1, + anon_sym_QMARK, + ACTIONS(12691), 1, + sym__as_custom, + STATE(7254), 1, + sym__quest, + ACTIONS(5782), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [168746] = 6, + ACTIONS(1041), 1, + anon_sym_LBRACE, + ACTIONS(11227), 1, + sym__dot_custom, + ACTIONS(12657), 1, + anon_sym_LPAREN, + STATE(3295), 1, + sym_constructor_suffix, + STATE(3294), 2, + sym__constructor_value_arguments, + sym_lambda_literal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [168769] = 6, + ACTIONS(1443), 1, + anon_sym_LBRACE, + ACTIONS(11227), 1, + sym__dot_custom, + ACTIONS(12693), 1, + anon_sym_LPAREN, + STATE(3164), 1, + sym_constructor_suffix, + STATE(3191), 2, + sym__constructor_value_arguments, + sym_lambda_literal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [168792] = 5, + ACTIONS(12697), 1, + anon_sym_QMARK, + ACTIONS(12699), 1, + sym__as_custom, + STATE(7186), 1, + sym__quest, + ACTIONS(12695), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [168813] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6904), 6, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_in, + [168828] = 5, + ACTIONS(12703), 1, + anon_sym_QMARK, + ACTIONS(12705), 1, + sym__as_custom, + STATE(6010), 1, + sym__quest, + ACTIONS(12701), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [168849] = 5, + ACTIONS(12709), 1, + anon_sym_QMARK, + ACTIONS(12711), 1, + sym__as_custom, + STATE(5960), 1, + sym__quest, + ACTIONS(12707), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [168870] = 4, + STATE(2322), 1, + sym_simple_identifier, + STATE(2352), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10755), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [168889] = 4, + STATE(2924), 1, + sym_simple_identifier, + STATE(3043), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10939), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [168908] = 5, + ACTIONS(12715), 1, + anon_sym_QMARK, + ACTIONS(12717), 1, + sym__as_custom, + STATE(5964), 1, + sym__quest, + ACTIONS(12713), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [168929] = 5, + ACTIONS(12721), 1, + anon_sym_QMARK, + ACTIONS(12723), 1, + sym__as_custom, + STATE(5968), 1, + sym__quest, + ACTIONS(12719), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [168950] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12725), 1, + anon_sym_QMARK, + ACTIONS(12727), 1, + anon_sym_in, + ACTIONS(12729), 1, + sym__as_custom, + STATE(7305), 1, + sym__quest, + STATE(9851), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [168975] = 7, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12731), 1, + sym__arrow_operator_custom, + STATE(4287), 1, + sym__arrow_operator, + STATE(9155), 1, + sym_type_constraints, + STATE(9158), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169000] = 4, + STATE(2299), 1, + sym_simple_identifier, + STATE(2331), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11253), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [169019] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 7, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_RBRACE, + [169034] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 6, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + [169049] = 5, + ACTIONS(12735), 1, + anon_sym_QMARK, + ACTIONS(12737), 1, + sym__as_custom, + STATE(6000), 1, + sym__quest, + ACTIONS(12733), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169070] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6872), 7, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [169085] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12739), 1, + anon_sym_QMARK, + ACTIONS(12741), 1, + anon_sym_in, + ACTIONS(12743), 1, + sym__as_custom, + STATE(6175), 1, + sym__quest, + STATE(10116), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169110] = 5, + ACTIONS(12747), 1, + anon_sym_QMARK, + ACTIONS(12749), 1, + sym__as_custom, + STATE(7334), 1, + sym__quest, + ACTIONS(12745), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169131] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12743), 1, + sym__as_custom, + ACTIONS(12751), 1, + anon_sym_QMARK, + ACTIONS(12753), 1, + anon_sym_in, + STATE(6156), 1, + sym__quest, + STATE(10049), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169156] = 7, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12755), 1, + sym__arrow_operator_custom, + STATE(2952), 1, + sym_computed_property, + STATE(4341), 1, + sym__arrow_operator, + STATE(8521), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169181] = 4, + STATE(4960), 1, + sym_simple_identifier, + STATE(5177), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10815), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [169200] = 5, + ACTIONS(12759), 1, + anon_sym_QMARK, + ACTIONS(12761), 1, + sym__as_custom, + STATE(7333), 1, + sym__quest, + ACTIONS(12757), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169221] = 7, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12763), 1, + sym__arrow_operator_custom, + STATE(4258), 1, + sym__arrow_operator, + STATE(9530), 1, + sym_type_constraints, + STATE(9533), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169246] = 5, + ACTIONS(12767), 1, + anon_sym_QMARK, + ACTIONS(12769), 1, + sym__as_custom, + STATE(6116), 1, + sym__quest, + ACTIONS(12765), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169267] = 4, + STATE(5468), 1, + sym_simple_identifier, + STATE(5859), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12422), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [169286] = 5, + ACTIONS(12773), 1, + anon_sym_QMARK, + ACTIONS(12775), 1, + sym__as_custom, + STATE(6127), 1, + sym__quest, + ACTIONS(12771), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169307] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12729), 1, + sym__as_custom, + ACTIONS(12777), 1, + anon_sym_QMARK, + ACTIONS(12779), 1, + anon_sym_in, + STATE(6239), 1, + sym__quest, + STATE(10052), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169332] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 7, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_RBRACE, + [169347] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6396), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [169362] = 6, + ACTIONS(43), 1, + anon_sym_LBRACE, + ACTIONS(11227), 1, + sym__dot_custom, + ACTIONS(12781), 1, + anon_sym_LPAREN, + STATE(3215), 1, + sym_constructor_suffix, + STATE(3174), 2, + sym__constructor_value_arguments, + sym_lambda_literal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169385] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12263), 6, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym_where_keyword, + sym__async_keyword_custom, + anon_sym_LBRACE, + [169400] = 4, + STATE(4872), 1, + sym_simple_identifier, + STATE(5060), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11293), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [169419] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 6, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + [169434] = 5, + ACTIONS(12785), 1, + anon_sym_QMARK, + ACTIONS(12787), 1, + sym__as_custom, + STATE(6102), 1, + sym__quest, + ACTIONS(12783), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169455] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12418), 1, + sym__as_custom, + ACTIONS(12649), 1, + anon_sym_in, + ACTIONS(12789), 1, + anon_sym_QMARK, + STATE(6045), 1, + sym__quest, + STATE(9972), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169480] = 4, + STATE(1402), 1, + sym_simple_identifier, + STATE(1426), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5314), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [169499] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 6, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + [169514] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12649), 1, + anon_sym_in, + ACTIONS(12791), 1, + anon_sym_LPAREN, + ACTIONS(12793), 1, + anon_sym_QMARK, + STATE(6359), 1, + sym__quest, + STATE(9972), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169539] = 3, + ACTIONS(12795), 1, + anon_sym_BANG, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6814), 5, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [169556] = 4, + ACTIONS(12797), 1, + sym_integer_literal, + STATE(2652), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(1413), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [169575] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6624), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [169590] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12799), 6, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_in, + [169605] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12691), 1, + sym__as_custom, + ACTIONS(12801), 1, + anon_sym_QMARK, + ACTIONS(12803), 1, + anon_sym_in, + STATE(7303), 1, + sym__quest, + STATE(9989), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169630] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12805), 6, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_in, + [169645] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12807), 1, + anon_sym_QMARK, + ACTIONS(12809), 1, + anon_sym_in, + ACTIONS(12811), 1, + sym__as_custom, + STATE(7183), 1, + sym__quest, + STATE(10046), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169670] = 5, + ACTIONS(12815), 1, + anon_sym_QMARK, + ACTIONS(12817), 1, + sym__as_custom, + STATE(7230), 1, + sym__quest, + ACTIONS(12813), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169691] = 4, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(12821), 1, + aux_sym_line_str_text_token1, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12819), 5, + anon_sym_DQUOTE, + anon_sym_BSLASH, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_BSLASH_LPAREN, + sym__escaped_identifier, + [169710] = 6, + ACTIONS(12105), 1, + anon_sym_in, + ACTIONS(12107), 1, + sym__arrow_operator_custom, + STATE(4268), 1, + sym__arrow_operator, + STATE(7471), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169733] = 5, + ACTIONS(12823), 1, + anon_sym_QMARK, + STATE(4407), 1, + sym__as, + STATE(7897), 1, + sym__quest, + ACTIONS(12445), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169754] = 6, + ACTIONS(12113), 1, + anon_sym_in, + ACTIONS(12115), 1, + sym__arrow_operator_custom, + STATE(4302), 1, + sym__arrow_operator, + STATE(7887), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169777] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12811), 1, + sym__as_custom, + ACTIONS(12825), 1, + anon_sym_QMARK, + ACTIONS(12827), 1, + anon_sym_in, + STATE(7290), 1, + sym__quest, + STATE(9995), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169802] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6396), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [169817] = 4, + ACTIONS(12829), 1, + anon_sym_COMMA, + STATE(6121), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6882), 5, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_LBRACE, + anon_sym_RBRACE, + [169836] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 6, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + [169851] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12729), 1, + sym__as_custom, + ACTIONS(12779), 1, + anon_sym_in, + ACTIONS(12831), 1, + anon_sym_QMARK, + STATE(7068), 1, + sym__quest, + STATE(10052), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169876] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6670), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [169891] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12619), 1, + anon_sym_in, + ACTIONS(12833), 1, + anon_sym_LPAREN, + ACTIONS(12835), 1, + anon_sym_QMARK, + STATE(6625), 1, + sym__quest, + STATE(10039), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169916] = 5, + ACTIONS(12839), 1, + anon_sym_QMARK, + ACTIONS(12841), 1, + sym__as_custom, + STATE(6029), 1, + sym__quest, + ACTIONS(12837), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169937] = 5, + ACTIONS(12845), 1, + anon_sym_QMARK, + ACTIONS(12847), 1, + sym__as_custom, + STATE(6031), 1, + sym__quest, + ACTIONS(12843), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169958] = 7, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12849), 1, + sym__arrow_operator_custom, + STATE(4298), 1, + sym__arrow_operator, + STATE(9508), 1, + sym_type_constraints, + STATE(9526), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [169983] = 5, + ACTIONS(12851), 1, + anon_sym_LPAREN, + ACTIONS(12853), 1, + anon_sym_QMARK, + STATE(6597), 1, + sym__quest, + ACTIONS(12418), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170004] = 5, + ACTIONS(12857), 1, + anon_sym_QMARK, + ACTIONS(12859), 1, + sym__as_custom, + STATE(6032), 1, + sym__quest, + ACTIONS(12855), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170025] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6063), 6, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_AT, + [170040] = 5, + ACTIONS(12863), 1, + anon_sym_QMARK, + ACTIONS(12865), 1, + sym__as_custom, + STATE(7111), 1, + sym__quest, + ACTIONS(12861), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170061] = 4, + STATE(5481), 1, + sym_simple_identifier, + STATE(5930), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11183), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [170080] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6620), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [170095] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 6, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_AMP, + [170110] = 5, + ACTIONS(12869), 1, + anon_sym_QMARK, + ACTIONS(12871), 1, + sym__as_custom, + STATE(6034), 1, + sym__quest, + ACTIONS(12867), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170131] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12359), 6, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym_where_keyword, + sym__async_keyword_custom, + anon_sym_LBRACE, + [170146] = 5, + ACTIONS(12875), 1, + anon_sym_QMARK, + ACTIONS(12877), 1, + sym__as_custom, + STATE(7179), 1, + sym__quest, + ACTIONS(12873), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170167] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12879), 1, + anon_sym_QMARK, + ACTIONS(12881), 1, + anon_sym_in, + ACTIONS(12883), 1, + sym__as_custom, + STATE(7240), 1, + sym__quest, + STATE(9896), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170192] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6238), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [170207] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6067), 6, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_AT, + [170222] = 4, + ACTIONS(12885), 1, + anon_sym_COMMA, + STATE(6241), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6910), 4, + sym__semi, + sym__eq_custom, + anon_sym_LBRACE, + anon_sym_RBRACE, + [170241] = 4, + STATE(5373), 1, + sym_simple_identifier, + STATE(5750), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12437), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [170260] = 4, + ACTIONS(12887), 1, + anon_sym_LPAREN, + STATE(6786), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [170279] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12691), 1, + sym__as_custom, + ACTIONS(12889), 1, + anon_sym_QMARK, + ACTIONS(12891), 1, + anon_sym_in, + STATE(7101), 1, + sym__quest, + STATE(10243), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170304] = 7, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12893), 1, + sym__arrow_operator_custom, + STATE(4340), 1, + sym__arrow_operator, + STATE(9808), 1, + sym_computed_property, + STATE(9809), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170329] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12883), 1, + sym__as_custom, + ACTIONS(12895), 1, + anon_sym_QMARK, + ACTIONS(12897), 1, + anon_sym_in, + STATE(7144), 1, + sym__quest, + STATE(9861), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170354] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6071), 6, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_AT, + [170369] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12727), 1, + anon_sym_in, + ACTIONS(12729), 1, + sym__as_custom, + ACTIONS(12899), 1, + anon_sym_QMARK, + STATE(6267), 1, + sym__quest, + STATE(9851), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170394] = 5, + ACTIONS(12903), 1, + anon_sym_QMARK, + ACTIONS(12905), 1, + sym__as_custom, + STATE(6107), 1, + sym__quest, + ACTIONS(12901), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170415] = 5, + ACTIONS(12909), 1, + anon_sym_QMARK, + ACTIONS(12911), 1, + sym__as_custom, + STATE(7208), 1, + sym__quest, + ACTIONS(12907), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170436] = 5, + ACTIONS(12913), 1, + anon_sym_LPAREN, + ACTIONS(12915), 1, + anon_sym_QMARK, + STATE(6668), 1, + sym__quest, + ACTIONS(6249), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170457] = 5, + ACTIONS(12817), 1, + sym__as_custom, + ACTIONS(12917), 1, + anon_sym_QMARK, + STATE(7345), 1, + sym__quest, + ACTIONS(12813), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170478] = 5, + ACTIONS(12921), 1, + anon_sym_QMARK, + ACTIONS(12923), 1, + sym__as_custom, + STATE(6038), 1, + sym__quest, + ACTIONS(12919), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170499] = 5, + ACTIONS(12699), 1, + sym__as_custom, + ACTIONS(12925), 1, + anon_sym_QMARK, + STATE(7123), 1, + sym__quest, + ACTIONS(12695), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170520] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6075), 6, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_LPAREN, + anon_sym_AT, + [170535] = 5, + ACTIONS(12711), 1, + sym__as_custom, + ACTIONS(12927), 1, + anon_sym_QMARK, + STATE(6042), 1, + sym__quest, + ACTIONS(12707), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170556] = 5, + ACTIONS(12717), 1, + sym__as_custom, + ACTIONS(12929), 1, + anon_sym_QMARK, + STATE(6046), 1, + sym__quest, + ACTIONS(12713), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170577] = 5, + ACTIONS(12723), 1, + sym__as_custom, + ACTIONS(12931), 1, + anon_sym_QMARK, + STATE(6047), 1, + sym__quest, + ACTIONS(12719), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170598] = 5, + ACTIONS(12877), 1, + sym__as_custom, + ACTIONS(12933), 1, + anon_sym_QMARK, + STATE(7130), 1, + sym__quest, + ACTIONS(12873), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170619] = 5, + ACTIONS(12937), 1, + anon_sym_QMARK, + ACTIONS(12939), 1, + sym__as_custom, + STATE(7209), 1, + sym__quest, + ACTIONS(12935), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170640] = 4, + STATE(4241), 1, + sym_simple_identifier, + STATE(4254), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12609), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [170659] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6872), 6, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [170674] = 5, + ACTIONS(12787), 1, + sym__as_custom, + ACTIONS(12941), 1, + anon_sym_QMARK, + STATE(6025), 1, + sym__quest, + ACTIONS(12783), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170695] = 4, + STATE(5056), 1, + sym_simple_identifier, + STATE(5217), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10873), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [170714] = 5, + ACTIONS(12769), 1, + sym__as_custom, + ACTIONS(12943), 1, + anon_sym_QMARK, + STATE(6024), 1, + sym__quest, + ACTIONS(12765), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170735] = 5, + ACTIONS(12841), 1, + sym__as_custom, + ACTIONS(12945), 1, + anon_sym_QMARK, + STATE(5944), 1, + sym__quest, + ACTIONS(12837), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170756] = 5, + ACTIONS(12749), 1, + sym__as_custom, + ACTIONS(12947), 1, + anon_sym_QMARK, + STATE(7171), 1, + sym__quest, + ACTIONS(12745), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170777] = 7, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12949), 1, + sym__arrow_operator_custom, + STATE(2887), 1, + sym_computed_property, + STATE(4321), 1, + sym__arrow_operator, + STATE(8586), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170802] = 5, + ACTIONS(12847), 1, + sym__as_custom, + ACTIONS(12951), 1, + anon_sym_QMARK, + STATE(5947), 1, + sym__quest, + ACTIONS(12843), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170823] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12953), 1, + anon_sym_QMARK, + ACTIONS(12955), 1, + anon_sym_in, + ACTIONS(12957), 1, + sym__as_custom, + STATE(7281), 1, + sym__quest, + STATE(10000), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170848] = 5, + ACTIONS(12761), 1, + sym__as_custom, + ACTIONS(12959), 1, + anon_sym_QMARK, + STATE(7177), 1, + sym__quest, + ACTIONS(12757), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170869] = 5, + ACTIONS(12775), 1, + sym__as_custom, + ACTIONS(12961), 1, + anon_sym_QMARK, + STATE(6035), 1, + sym__quest, + ACTIONS(12771), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170890] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6658), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [170905] = 5, + ACTIONS(12963), 1, + anon_sym_LPAREN, + ACTIONS(12965), 1, + anon_sym_QMARK, + STATE(6571), 1, + sym__quest, + ACTIONS(6238), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170926] = 4, + ACTIONS(12967), 1, + sym_integer_literal, + STATE(2665), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [170945] = 4, + STATE(2984), 1, + sym_simple_identifier, + STATE(3084), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6540), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [170964] = 5, + ACTIONS(12859), 1, + sym__as_custom, + ACTIONS(12969), 1, + anon_sym_QMARK, + STATE(5950), 1, + sym__quest, + ACTIONS(12855), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [170985] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12955), 1, + anon_sym_in, + ACTIONS(12957), 1, + sym__as_custom, + ACTIONS(12971), 1, + anon_sym_QMARK, + STATE(6129), 1, + sym__quest, + STATE(10000), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171010] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6674), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [171025] = 4, + STATE(5168), 1, + sym_simple_identifier, + STATE(5397), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10737), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [171044] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 7, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_RBRACE, + [171059] = 4, + STATE(4977), 1, + sym_simple_identifier, + STATE(5128), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10795), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [171078] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 6, + sym__dot_custom, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_in, + [171093] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12493), 6, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_in, + [171108] = 4, + STATE(3476), 1, + sym_simple_identifier, + STATE(3492), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10923), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [171127] = 5, + ACTIONS(12865), 1, + sym__as_custom, + ACTIONS(12973), 1, + anon_sym_QMARK, + STATE(7289), 1, + sym__quest, + ACTIONS(12861), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171148] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5132), 7, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_RBRACE, + [171163] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12817), 1, + sym__as_custom, + ACTIONS(12975), 1, + anon_sym_QMARK, + ACTIONS(12977), 1, + anon_sym_in, + STATE(7143), 1, + sym__quest, + STATE(10303), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171188] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5120), 6, + sym__dot_custom, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_in, + [171203] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6662), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [171218] = 5, + ACTIONS(12979), 1, + anon_sym_LPAREN, + ACTIONS(12981), 1, + anon_sym_QMARK, + STATE(6546), 1, + sym__quest, + ACTIONS(12445), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171239] = 6, + ACTIONS(801), 1, + anon_sym_LBRACE, + ACTIONS(11225), 1, + anon_sym_LPAREN, + ACTIONS(11227), 1, + sym__dot_custom, + STATE(1251), 1, + sym_constructor_suffix, + STATE(1283), 2, + sym__constructor_value_arguments, + sym_lambda_literal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171262] = 5, + ACTIONS(12983), 1, + anon_sym_LPAREN, + ACTIONS(12985), 1, + anon_sym_QMARK, + STATE(6731), 1, + sym__quest, + ACTIONS(12445), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171283] = 7, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12987), 1, + sym__arrow_operator_custom, + STATE(2916), 1, + sym_computed_property, + STATE(4307), 1, + sym__arrow_operator, + STATE(8565), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171308] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [171323] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12957), 1, + sym__as_custom, + ACTIONS(12989), 1, + anon_sym_QMARK, + ACTIONS(12991), 1, + anon_sym_in, + STATE(7234), 1, + sym__quest, + STATE(10077), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171348] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12957), 1, + sym__as_custom, + ACTIONS(12991), 1, + anon_sym_in, + ACTIONS(12993), 1, + anon_sym_QMARK, + STATE(6306), 1, + sym__quest, + STATE(10077), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171373] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6696), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [171388] = 5, + ACTIONS(12871), 1, + sym__as_custom, + ACTIONS(12995), 1, + anon_sym_QMARK, + STATE(6012), 1, + sym__quest, + ACTIONS(12867), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171409] = 4, + STATE(2995), 1, + sym_simple_identifier, + STATE(3204), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11309), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [171428] = 5, + ACTIONS(12997), 1, + sym__dot_custom, + STATE(6115), 1, + aux_sym_identifier_repeat1, + STATE(6442), 1, + sym__dot, + ACTIONS(6914), 3, + sym__eq_custom, + sym__eq_eq_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171449] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5027), 6, + sym__dot_custom, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_in, + [171464] = 5, + ACTIONS(12997), 1, + sym__dot_custom, + STATE(6076), 1, + aux_sym_identifier_repeat1, + STATE(6442), 1, + sym__dot, + ACTIONS(6861), 3, + sym__eq_custom, + sym__eq_eq_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171485] = 6, + ACTIONS(11560), 1, + sym_where_keyword, + ACTIONS(12999), 1, + sym__eq_custom, + STATE(4505), 1, + sym__equal_sign, + STATE(7157), 1, + sym_type_constraints, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6848), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [171508] = 5, + ACTIONS(12418), 1, + sym__as_custom, + ACTIONS(13001), 1, + anon_sym_QMARK, + STATE(7271), 1, + sym__quest, + ACTIONS(12412), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171529] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5128), 6, + sym__dot_custom, + anon_sym_BANG, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_in, + [171544] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6238), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [171559] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6666), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [171574] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6670), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [171589] = 4, + ACTIONS(13003), 1, + anon_sym_COMMA, + STATE(6085), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6900), 4, + sym__semi, + sym__eq_custom, + anon_sym_LBRACE, + anon_sym_RBRACE, + [171608] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12957), 1, + sym__as_custom, + ACTIONS(13006), 1, + anon_sym_QMARK, + ACTIONS(13008), 1, + anon_sym_in, + STATE(7122), 1, + sym__quest, + STATE(10063), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171633] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12743), 1, + sym__as_custom, + ACTIONS(13010), 1, + anon_sym_QMARK, + ACTIONS(13012), 1, + anon_sym_in, + STATE(7228), 1, + sym__quest, + STATE(9842), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171658] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12418), 1, + sym__as_custom, + ACTIONS(12559), 1, + anon_sym_in, + ACTIONS(13014), 1, + anon_sym_QMARK, + STATE(6114), 1, + sym__quest, + STATE(10075), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171683] = 4, + STATE(3101), 1, + sym_simple_identifier, + STATE(3345), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10805), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [171702] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12559), 1, + anon_sym_in, + ACTIONS(13016), 1, + anon_sym_LPAREN, + ACTIONS(13018), 1, + anon_sym_QMARK, + STATE(6346), 1, + sym__quest, + STATE(10075), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171727] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6678), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [171742] = 4, + STATE(4857), 1, + sym_simple_identifier, + STATE(4933), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10883), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [171761] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6700), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [171776] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12957), 1, + sym__as_custom, + ACTIONS(13008), 1, + anon_sym_in, + ACTIONS(13020), 1, + anon_sym_QMARK, + STATE(6192), 1, + sym__quest, + STATE(10063), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171801] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12743), 1, + sym__as_custom, + ACTIONS(12753), 1, + anon_sym_in, + ACTIONS(13022), 1, + anon_sym_QMARK, + STATE(7156), 1, + sym__quest, + STATE(10049), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171826] = 7, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(13024), 1, + anon_sym_COLON, + ACTIONS(13026), 1, + anon_sym_LBRACE, + STATE(7059), 1, + sym_type_annotation, + STATE(8814), 1, + sym_protocol_property_requirements, + STATE(8868), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171851] = 4, + STATE(2987), 1, + sym_simple_identifier, + STATE(3095), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6520), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [171870] = 4, + STATE(5009), 1, + sym_simple_identifier, + STATE(5329), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10775), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [171889] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12398), 1, + anon_sym_in, + ACTIONS(12418), 1, + sym__as_custom, + ACTIONS(13028), 1, + anon_sym_QMARK, + STATE(6134), 1, + sym__quest, + STATE(10003), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171914] = 6, + ACTIONS(11568), 1, + sym_where_keyword, + ACTIONS(13030), 1, + sym__eq_custom, + STATE(4589), 1, + sym__equal_sign, + STATE(7180), 1, + sym_type_constraints, + ACTIONS(6848), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171937] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12811), 1, + sym__as_custom, + ACTIONS(13032), 1, + anon_sym_QMARK, + ACTIONS(13034), 1, + anon_sym_in, + STATE(7269), 1, + sym__quest, + STATE(10066), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171962] = 5, + ACTIONS(12911), 1, + sym__as_custom, + ACTIONS(13036), 1, + anon_sym_QMARK, + STATE(7057), 1, + sym__quest, + ACTIONS(12907), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [171983] = 4, + STATE(4875), 1, + sym_simple_identifier, + STATE(5038), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11281), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [172002] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6904), 7, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [172017] = 6, + ACTIONS(6238), 1, + sym__as_custom, + ACTIONS(13038), 1, + anon_sym_LPAREN, + ACTIONS(13040), 1, + anon_sym_QMARK, + STATE(6915), 1, + sym__quest, + ACTIONS(1315), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172040] = 4, + STATE(2281), 1, + sym_simple_identifier, + STATE(2293), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8167), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [172059] = 5, + ACTIONS(13044), 1, + anon_sym_QMARK, + ACTIONS(13046), 1, + sym__as_custom, + STATE(7216), 1, + sym__quest, + ACTIONS(13042), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172080] = 4, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(13050), 1, + aux_sym_line_str_text_token1, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13048), 5, + anon_sym_DQUOTE, + anon_sym_BSLASH, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_BSLASH_LPAREN, + sym__escaped_identifier, + [172099] = 5, + ACTIONS(13052), 1, + anon_sym_LPAREN, + ACTIONS(13054), 1, + anon_sym_QMARK, + STATE(6332), 1, + sym__quest, + ACTIONS(6238), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172120] = 4, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(13058), 1, + aux_sym_line_str_text_token1, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13056), 5, + anon_sym_DQUOTE, + anon_sym_BSLASH, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_BSLASH_LPAREN, + sym__escaped_identifier, + [172139] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12991), 1, + anon_sym_in, + ACTIONS(13060), 1, + anon_sym_LPAREN, + ACTIONS(13062), 1, + anon_sym_QMARK, + STATE(6652), 1, + sym__quest, + STATE(10077), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172164] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6692), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [172179] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6688), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [172194] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12957), 1, + sym__as_custom, + ACTIONS(13064), 1, + anon_sym_QMARK, + ACTIONS(13066), 1, + anon_sym_in, + STATE(7335), 1, + sym__quest, + STATE(9979), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172219] = 5, + ACTIONS(13068), 1, + sym__dot_custom, + STATE(6115), 1, + aux_sym_identifier_repeat1, + STATE(6442), 1, + sym__dot, + ACTIONS(6854), 3, + sym__eq_custom, + sym__eq_eq_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172240] = 5, + ACTIONS(12905), 1, + sym__as_custom, + ACTIONS(13071), 1, + anon_sym_QMARK, + STATE(6255), 1, + sym__quest, + ACTIONS(12901), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172261] = 4, + STATE(2617), 1, + sym_simple_identifier, + STATE(2768), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12473), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [172280] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [172295] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12729), 1, + sym__as_custom, + ACTIONS(13073), 1, + anon_sym_QMARK, + ACTIONS(13075), 1, + anon_sym_in, + STATE(6139), 1, + sym__quest, + STATE(10087), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172320] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13077), 1, + anon_sym_LPAREN, + ACTIONS(13079), 1, + anon_sym_QMARK, + ACTIONS(13081), 1, + anon_sym_in, + STATE(6544), 1, + sym__quest, + STATE(10031), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172345] = 4, + ACTIONS(13083), 1, + anon_sym_COMMA, + STATE(6121), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6900), 5, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_LBRACE, + anon_sym_RBRACE, + [172364] = 4, + ACTIONS(12829), 1, + anon_sym_COMMA, + STATE(5995), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6910), 5, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_LBRACE, + anon_sym_RBRACE, + [172383] = 4, + STATE(2622), 1, + sym_simple_identifier, + STATE(2923), 1, + sym_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8167), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [172402] = 5, + ACTIONS(13086), 1, + anon_sym_QMARK, + STATE(4532), 1, + sym__as, + STATE(7780), 1, + sym__quest, + ACTIONS(12445), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172423] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12883), 1, + sym__as_custom, + ACTIONS(13088), 1, + anon_sym_QMARK, + ACTIONS(13090), 1, + anon_sym_in, + STATE(7128), 1, + sym__quest, + STATE(10094), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172448] = 4, + ACTIONS(13092), 1, + sym_integer_literal, + STATE(1202), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(767), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [172467] = 5, + ACTIONS(12939), 1, + sym__as_custom, + ACTIONS(13094), 1, + anon_sym_QMARK, + STATE(7058), 1, + sym__quest, + ACTIONS(12935), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172488] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(1219), 6, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_RPAREN, + anon_sym_COMMA, + [172503] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12729), 1, + sym__as_custom, + ACTIONS(13096), 1, + anon_sym_QMARK, + ACTIONS(13098), 1, + anon_sym_in, + STATE(7278), 1, + sym__quest, + STATE(10026), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172528] = 4, + STATE(6836), 1, + sym_simple_identifier, + STATE(8774), 1, + sym_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10843), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [172547] = 4, + STATE(3238), 1, + sym_simple_identifier, + STATE(3394), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10765), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [172566] = 4, + ACTIONS(11319), 1, + sym__immediate_quest, + STATE(6135), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4733), 5, + sym_multiline_comment, + sym__semi, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_RBRACE, + [172585] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6688), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [172600] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12957), 1, + sym__as_custom, + ACTIONS(13081), 1, + anon_sym_in, + ACTIONS(13100), 1, + anon_sym_QMARK, + STATE(7239), 1, + sym__quest, + STATE(10031), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172625] = 4, + ACTIONS(13102), 1, + sym__immediate_quest, + STATE(6144), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5053), 5, + sym_multiline_comment, + sym__semi, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_RBRACE, + [172644] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6692), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [172659] = 5, + ACTIONS(12675), 1, + sym__as_custom, + ACTIONS(13104), 1, + anon_sym_QMARK, + STATE(6061), 1, + sym__quest, + ACTIONS(12671), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172680] = 4, + ACTIONS(13106), 1, + sym_integer_literal, + STATE(2716), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(1011), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [172699] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12741), 1, + anon_sym_in, + ACTIONS(12743), 1, + sym__as_custom, + ACTIONS(13108), 1, + anon_sym_QMARK, + STATE(7203), 1, + sym__quest, + STATE(10116), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172724] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12817), 1, + sym__as_custom, + ACTIONS(13110), 1, + anon_sym_QMARK, + ACTIONS(13112), 1, + anon_sym_in, + STATE(7104), 1, + sym__quest, + STATE(10182), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172749] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12729), 1, + sym__as_custom, + ACTIONS(13098), 1, + anon_sym_in, + ACTIONS(13114), 1, + anon_sym_QMARK, + STATE(6095), 1, + sym__quest, + STATE(10026), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172774] = 5, + ACTIONS(12737), 1, + sym__as_custom, + ACTIONS(13116), 1, + anon_sym_QMARK, + STATE(6041), 1, + sym__quest, + ACTIONS(12733), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172795] = 5, + ACTIONS(13118), 1, + anon_sym_LPAREN, + ACTIONS(13120), 1, + anon_sym_QMARK, + STATE(6547), 1, + sym__quest, + ACTIONS(6249), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172816] = 4, + ACTIONS(13122), 1, + sym__immediate_quest, + STATE(6144), 1, + aux_sym_optional_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5101), 5, + sym_multiline_comment, + sym__semi, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_RBRACE, + [172835] = 5, + ACTIONS(13125), 1, + anon_sym_LPAREN, + ACTIONS(13127), 1, + anon_sym_QMARK, + STATE(6391), 1, + sym__quest, + ACTIONS(12418), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172856] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6700), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [172871] = 7, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(13129), 1, + sym__arrow_operator_custom, + STATE(4306), 1, + sym__arrow_operator, + STATE(8676), 1, + sym_computed_property, + STATE(9313), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172896] = 4, + ACTIONS(13131), 1, + anon_sym_LPAREN, + STATE(6822), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6238), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [172915] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13008), 1, + anon_sym_in, + ACTIONS(13133), 1, + anon_sym_LPAREN, + ACTIONS(13135), 1, + anon_sym_QMARK, + STATE(6480), 1, + sym__quest, + STATE(10063), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172940] = 4, + STATE(5171), 1, + sym_simple_identifier, + STATE(5384), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10992), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [172959] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6678), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [172974] = 5, + ACTIONS(13139), 1, + anon_sym_QMARK, + ACTIONS(13141), 1, + sym__as_custom, + STATE(5934), 1, + sym__quest, + ACTIONS(13137), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [172995] = 7, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(13143), 1, + sym__arrow_operator_custom, + STATE(4297), 1, + sym__arrow_operator, + STATE(8201), 1, + sym_type_constraints, + STATE(8690), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [173020] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [173035] = 4, + ACTIONS(13145), 1, + anon_sym_QMARK, + STATE(6082), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6325), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [173054] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12883), 1, + sym__as_custom, + ACTIONS(13147), 1, + anon_sym_QMARK, + ACTIONS(13149), 1, + anon_sym_in, + STATE(7312), 1, + sym__quest, + STATE(10070), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [173079] = 3, + ACTIONS(13151), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6046), 5, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_AT, + [173096] = 4, + STATE(5597), 1, + sym_simple_identifier, + STATE(5970), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10843), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [173115] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [173130] = 4, + STATE(5117), 1, + sym_simple_identifier, + STATE(5276), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10727), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [173149] = 5, + ACTIONS(13154), 1, + anon_sym_QMARK, + STATE(4628), 1, + sym__as, + STATE(8100), 1, + sym__quest, + ACTIONS(12445), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [173170] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12398), 1, + anon_sym_in, + ACTIONS(13156), 1, + anon_sym_LPAREN, + ACTIONS(13158), 1, + anon_sym_QMARK, + STATE(6351), 1, + sym__quest, + STATE(10003), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [173195] = 4, + STATE(7149), 1, + sym_simple_identifier, + STATE(10220), 1, + sym_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10737), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [173214] = 4, + STATE(2227), 1, + sym_simple_identifier, + STATE(2261), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12597), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [173233] = 4, + STATE(4998), 1, + sym_simple_identifier, + STATE(5293), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10785), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [173252] = 6, + ACTIONS(11568), 1, + sym_where_keyword, + ACTIONS(13160), 1, + sym__eq_custom, + STATE(4392), 1, + sym__equal_sign, + STATE(7051), 1, + sym_type_constraints, + ACTIONS(6918), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [173275] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [173290] = 3, + ACTIONS(13162), 1, + anon_sym_BANG, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6814), 6, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [173307] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6666), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [173322] = 4, + ACTIONS(13164), 1, + anon_sym_QMARK, + STATE(6048), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6331), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [173341] = 5, + ACTIONS(12957), 1, + sym__as_custom, + ACTIONS(13168), 1, + anon_sym_QMARK, + STATE(7173), 1, + sym__quest, + ACTIONS(13166), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [173362] = 5, + ACTIONS(12923), 1, + sym__as_custom, + ACTIONS(13170), 1, + anon_sym_QMARK, + STATE(5976), 1, + sym__quest, + ACTIONS(12919), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [173383] = 4, + STATE(2283), 1, + sym_simple_identifier, + STATE(2309), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10853), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [173402] = 7, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(13172), 1, + sym__arrow_operator_custom, + STATE(4294), 1, + sym__arrow_operator, + STATE(8207), 1, + sym_type_constraints, + STATE(8688), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [173427] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12883), 1, + sym__as_custom, + ACTIONS(13174), 1, + anon_sym_QMARK, + ACTIONS(13176), 1, + anon_sym_in, + STATE(7080), 1, + sym__quest, + STATE(10150), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [173452] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6498), 6, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_in, + [173467] = 4, + STATE(5106), 1, + sym_simple_identifier, + STATE(5475), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12567), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [173486] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6662), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [173501] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12811), 1, + sym__as_custom, + ACTIONS(13178), 1, + anon_sym_QMARK, + ACTIONS(13180), 1, + anon_sym_in, + STATE(7100), 1, + sym__quest, + STATE(9930), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [173526] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 6, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + [173541] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6696), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [173556] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12817), 1, + sym__as_custom, + ACTIONS(13182), 1, + anon_sym_QMARK, + ACTIONS(13184), 1, + anon_sym_in, + STATE(7184), 1, + sym__quest, + STATE(10048), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [173581] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12691), 1, + sym__as_custom, + ACTIONS(13186), 1, + anon_sym_QMARK, + ACTIONS(13188), 1, + anon_sym_in, + STATE(7106), 1, + sym__quest, + STATE(10353), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [173606] = 4, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(13192), 1, + aux_sym_line_str_text_token1, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13190), 5, + anon_sym_DQUOTE, + anon_sym_BSLASH, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_BSLASH_LPAREN, + sym__escaped_identifier, + [173625] = 4, + ACTIONS(12477), 1, + anon_sym_QMARK, + STATE(6197), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [173644] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12817), 1, + sym__as_custom, + ACTIONS(13194), 1, + anon_sym_QMARK, + ACTIONS(13196), 1, + anon_sym_in, + STATE(7314), 1, + sym__quest, + STATE(9978), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [173669] = 4, + ACTIONS(13198), 1, + anon_sym_QMARK, + STATE(6303), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [173688] = 4, + ACTIONS(13200), 1, + anon_sym_QMARK, + STATE(6296), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6342), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [173707] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4979), 6, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_in, + [173722] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12307), 6, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym_where_keyword, + sym__async_keyword_custom, + anon_sym_LBRACE, + [173737] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12488), 1, + anon_sym_in, + ACTIONS(13202), 1, + anon_sym_LPAREN, + ACTIONS(13204), 1, + anon_sym_QMARK, + STATE(6856), 1, + sym__quest, + STATE(10184), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [173762] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12729), 1, + sym__as_custom, + ACTIONS(13075), 1, + anon_sym_in, + ACTIONS(13206), 1, + anon_sym_QMARK, + STATE(7255), 1, + sym__quest, + STATE(10087), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [173787] = 4, + STATE(3071), 1, + sym_simple_identifier, + STATE(3144), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6638), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [173806] = 5, + ACTIONS(12811), 1, + sym__as_custom, + ACTIONS(13210), 1, + anon_sym_QMARK, + STATE(7270), 1, + sym__quest, + ACTIONS(13208), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [173827] = 5, + ACTIONS(12691), 1, + sym__as_custom, + ACTIONS(13212), 1, + anon_sym_QMARK, + STATE(7069), 1, + sym__quest, + ACTIONS(5782), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [173848] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12471), 1, + anon_sym_in, + ACTIONS(13214), 1, + anon_sym_LPAREN, + ACTIONS(13216), 1, + anon_sym_QMARK, + STATE(6757), 1, + sym__quest, + STATE(9943), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [173873] = 4, + ACTIONS(13218), 1, + anon_sym_QMARK, + STATE(6159), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [173892] = 4, + ACTIONS(13220), 1, + anon_sym_QMARK, + STATE(6204), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [173911] = 5, + ACTIONS(13222), 1, + anon_sym_LPAREN, + ACTIONS(13224), 1, + anon_sym_QMARK, + STATE(6874), 1, + sym__quest, + ACTIONS(12418), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [173932] = 4, + ACTIONS(13226), 1, + anon_sym_COLON, + STATE(10236), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [173951] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 6, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + [173966] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6658), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [173981] = 4, + ACTIONS(13228), 1, + anon_sym_QMARK, + STATE(6207), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174000] = 4, + ACTIONS(13230), 1, + anon_sym_QMARK, + STATE(6070), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174019] = 4, + ACTIONS(13232), 1, + anon_sym_QMARK, + STATE(6210), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6364), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174038] = 4, + STATE(5005), 1, + sym_simple_identifier, + STATE(5235), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10833), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [174057] = 4, + ACTIONS(13234), 1, + anon_sym_QMARK, + STATE(5994), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174076] = 4, + ACTIONS(13236), 1, + anon_sym_QMARK, + STATE(6213), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174095] = 4, + ACTIONS(13238), 1, + anon_sym_QMARK, + STATE(6214), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6378), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174114] = 4, + ACTIONS(13240), 1, + anon_sym_QMARK, + STATE(6217), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6384), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174133] = 4, + ACTIONS(13242), 1, + anon_sym_QMARK, + STATE(6218), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6390), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174152] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13244), 6, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_in, + [174167] = 4, + ACTIONS(13246), 1, + anon_sym_QMARK, + STATE(6008), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6396), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174186] = 4, + ACTIONS(13248), 1, + anon_sym_QMARK, + STATE(6221), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6402), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174205] = 4, + ACTIONS(13250), 1, + anon_sym_QMARK, + STATE(6222), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6408), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174224] = 4, + ACTIONS(13252), 1, + anon_sym_QMARK, + STATE(6223), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6414), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174243] = 4, + ACTIONS(13254), 1, + anon_sym_QMARK, + STATE(6054), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6420), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174262] = 4, + ACTIONS(13256), 1, + anon_sym_QMARK, + STATE(6225), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6426), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174281] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12817), 1, + sym__as_custom, + ACTIONS(13258), 1, + anon_sym_QMARK, + ACTIONS(13260), 1, + anon_sym_in, + STATE(7259), 1, + sym__quest, + STATE(10018), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [174306] = 4, + ACTIONS(13262), 1, + anon_sym_QMARK, + STATE(6226), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6432), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174325] = 4, + ACTIONS(13264), 1, + anon_sym_QMARK, + STATE(6073), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6438), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174344] = 4, + ACTIONS(13266), 1, + anon_sym_QMARK, + STATE(6228), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6444), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174363] = 4, + ACTIONS(13268), 1, + anon_sym_QMARK, + STATE(6229), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6450), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174382] = 4, + ACTIONS(13270), 1, + anon_sym_QMARK, + STATE(6230), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6456), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174401] = 4, + ACTIONS(13272), 1, + anon_sym_QMARK, + STATE(6093), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6462), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174420] = 4, + ACTIONS(13274), 1, + anon_sym_QMARK, + STATE(6231), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6468), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174439] = 4, + ACTIONS(13276), 1, + anon_sym_QMARK, + STATE(6232), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6272), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174458] = 4, + ACTIONS(13278), 1, + anon_sym_QMARK, + STATE(6133), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6474), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174477] = 4, + ACTIONS(13280), 1, + anon_sym_QMARK, + STATE(6136), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6480), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174496] = 4, + ACTIONS(13282), 1, + anon_sym_QMARK, + STATE(6233), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6500), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174515] = 4, + ACTIONS(13284), 1, + anon_sym_QMARK, + STATE(6151), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6506), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174534] = 4, + ACTIONS(13286), 1, + anon_sym_QMARK, + STATE(6234), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6492), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174553] = 4, + ACTIONS(13288), 1, + anon_sym_QMARK, + STATE(6169), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6278), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174572] = 4, + ACTIONS(13290), 1, + anon_sym_QMARK, + STATE(6178), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6512), 4, + sym_where_keyword, + sym__as_custom, + anon_sym_COLON, + anon_sym_LBRACE, + [174591] = 6, + ACTIONS(13292), 1, + anon_sym_in, + ACTIONS(13294), 1, + sym__arrow_operator_custom, + STATE(4309), 1, + sym__arrow_operator, + STATE(8112), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [174614] = 5, + ACTIONS(13296), 1, + anon_sym_LPAREN, + ACTIONS(13298), 1, + anon_sym_QMARK, + STATE(6356), 1, + sym__quest, + ACTIONS(12445), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [174635] = 7, + ACTIONS(5750), 1, + sym_where_keyword, + ACTIONS(11054), 1, + anon_sym_LBRACE, + ACTIONS(13300), 1, + sym__as_custom, + STATE(3605), 1, + sym__block, + STATE(4395), 1, + sym__as, + STATE(8609), 1, + sym_where_clause, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [174660] = 6, + ACTIONS(421), 1, + anon_sym_LBRACE, + ACTIONS(11227), 1, + sym__dot_custom, + ACTIONS(13302), 1, + anon_sym_LPAREN, + STATE(1445), 1, + sym_constructor_suffix, + STATE(1444), 2, + sym__constructor_value_arguments, + sym_lambda_literal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [174683] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12743), 1, + sym__as_custom, + ACTIONS(13304), 1, + anon_sym_QMARK, + ACTIONS(13306), 1, + anon_sym_in, + STATE(7338), 1, + sym__quest, + STATE(10072), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [174708] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13308), 6, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_in, + [174723] = 4, + ACTIONS(12885), 1, + anon_sym_COMMA, + STATE(6085), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6882), 4, + sym__semi, + sym__eq_custom, + anon_sym_LBRACE, + anon_sym_RBRACE, + [174742] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13310), 6, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_in, + [174757] = 5, + ACTIONS(13141), 1, + sym__as_custom, + ACTIONS(13312), 1, + anon_sym_QMARK, + STATE(6137), 1, + sym__quest, + ACTIONS(13137), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [174778] = 4, + ACTIONS(13314), 1, + sym_integer_literal, + STATE(1363), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(391), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [174797] = 4, + STATE(2311), 1, + sym_simple_identifier, + STATE(2348), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10700), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [174816] = 6, + ACTIONS(6249), 1, + sym__as_custom, + ACTIONS(13318), 1, + anon_sym_LPAREN, + ACTIONS(13320), 1, + anon_sym_QMARK, + STATE(6728), 1, + sym__quest, + ACTIONS(13316), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [174839] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12957), 1, + sym__as_custom, + ACTIONS(13066), 1, + anon_sym_in, + ACTIONS(13322), 1, + anon_sym_QMARK, + STATE(6301), 1, + sym__quest, + STATE(9979), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [174864] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12729), 1, + sym__as_custom, + ACTIONS(13324), 1, + anon_sym_QMARK, + ACTIONS(13326), 1, + anon_sym_in, + STATE(6280), 1, + sym__quest, + STATE(9984), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [174889] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13328), 6, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_in, + [174904] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12743), 1, + sym__as_custom, + ACTIONS(13012), 1, + anon_sym_in, + ACTIONS(13330), 1, + anon_sym_QMARK, + STATE(6021), 1, + sym__quest, + STATE(9842), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [174929] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 6, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + [174944] = 4, + STATE(5133), 1, + sym_simple_identifier, + STATE(5450), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10608), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [174963] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12691), 1, + sym__as_custom, + ACTIONS(13332), 1, + anon_sym_QMARK, + ACTIONS(13334), 1, + anon_sym_in, + STATE(7166), 1, + sym__quest, + STATE(9946), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [174988] = 7, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(13024), 1, + anon_sym_COLON, + ACTIONS(13026), 1, + anon_sym_LBRACE, + STATE(7260), 1, + sym_type_annotation, + STATE(9221), 1, + sym_protocol_property_requirements, + STATE(9222), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175013] = 5, + ACTIONS(13046), 1, + sym__as_custom, + ACTIONS(13336), 1, + anon_sym_QMARK, + STATE(7129), 1, + sym__quest, + ACTIONS(13042), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175034] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 6, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + [175049] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12418), 1, + sym__as_custom, + ACTIONS(12488), 1, + anon_sym_in, + ACTIONS(13338), 1, + anon_sym_QMARK, + STATE(6071), 1, + sym__quest, + STATE(10184), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175074] = 4, + STATE(4838), 1, + sym_simple_identifier, + STATE(4972), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10863), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [175093] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12743), 1, + sym__as_custom, + ACTIONS(13306), 1, + anon_sym_in, + ACTIONS(13340), 1, + anon_sym_QMARK, + STATE(6125), 1, + sym__quest, + STATE(10072), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175118] = 6, + ACTIONS(11560), 1, + sym_where_keyword, + ACTIONS(13342), 1, + sym__eq_custom, + STATE(4350), 1, + sym__equal_sign, + STATE(7212), 1, + sym_type_constraints, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6918), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [175141] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13066), 1, + anon_sym_in, + ACTIONS(13344), 1, + anon_sym_LPAREN, + ACTIONS(13346), 1, + anon_sym_QMARK, + STATE(6355), 1, + sym__quest, + STATE(9979), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175166] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12418), 1, + sym__as_custom, + ACTIONS(12471), 1, + anon_sym_in, + ACTIONS(13348), 1, + anon_sym_QMARK, + STATE(6308), 1, + sym__quest, + STATE(9943), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175191] = 7, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(13350), 1, + sym__arrow_operator_custom, + STATE(4291), 1, + sym__arrow_operator, + STATE(8197), 1, + sym_type_constraints, + STATE(8685), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175216] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12691), 1, + sym__as_custom, + ACTIONS(13352), 1, + anon_sym_QMARK, + ACTIONS(13354), 1, + anon_sym_in, + STATE(7134), 1, + sym__quest, + STATE(10162), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175241] = 4, + STATE(6200), 1, + sym_simple_identifier, + STATE(7253), 1, + sym_parameter, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [175260] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12817), 1, + sym__as_custom, + ACTIONS(13356), 1, + anon_sym_QMARK, + ACTIONS(13358), 1, + anon_sym_in, + STATE(7150), 1, + sym__quest, + STATE(9962), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175285] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12743), 1, + sym__as_custom, + ACTIONS(13360), 1, + anon_sym_QMARK, + ACTIONS(13362), 1, + anon_sym_in, + STATE(7089), 1, + sym__quest, + STATE(9873), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175310] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12883), 1, + sym__as_custom, + ACTIONS(13364), 1, + anon_sym_QMARK, + ACTIONS(13366), 1, + anon_sym_in, + STATE(7224), 1, + sym__quest, + STATE(9839), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175335] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6674), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [175350] = 4, + STATE(4247), 1, + sym_simple_identifier, + STATE(4330), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12651), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [175369] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6904), 6, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [175384] = 4, + STATE(1229), 1, + sym_simple_identifier, + STATE(1245), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4851), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [175403] = 6, + ACTIONS(941), 1, + anon_sym_LBRACE, + ACTIONS(11227), 1, + sym__dot_custom, + ACTIONS(13368), 1, + anon_sym_LPAREN, + STATE(3324), 1, + sym_constructor_suffix, + STATE(3325), 2, + sym__constructor_value_arguments, + sym_lambda_literal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175426] = 4, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(13372), 1, + aux_sym_line_str_text_token1, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13370), 5, + anon_sym_DQUOTE, + anon_sym_BSLASH, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_BSLASH_LPAREN, + sym__escaped_identifier, + [175445] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12955), 1, + anon_sym_in, + ACTIONS(13374), 1, + anon_sym_LPAREN, + ACTIONS(13376), 1, + anon_sym_QMARK, + STATE(6450), 1, + sym__quest, + STATE(10000), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175470] = 4, + STATE(2622), 1, + sym_simple_identifier, + STATE(2934), 1, + sym_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8167), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [175489] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12957), 1, + sym__as_custom, + ACTIONS(13081), 1, + anon_sym_in, + ACTIONS(13378), 1, + anon_sym_QMARK, + STATE(5997), 1, + sym__quest, + STATE(10031), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175514] = 5, + ACTIONS(12811), 1, + sym__as_custom, + ACTIONS(13380), 1, + anon_sym_QMARK, + STATE(7061), 1, + sym__quest, + ACTIONS(13208), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175535] = 4, + STATE(4907), 1, + sym_simple_identifier, + STATE(5134), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10624), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [175554] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12743), 1, + sym__as_custom, + ACTIONS(13382), 1, + anon_sym_QMARK, + ACTIONS(13384), 1, + anon_sym_in, + STATE(7060), 1, + sym__quest, + STATE(9831), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175579] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12743), 1, + sym__as_custom, + ACTIONS(13384), 1, + anon_sym_in, + ACTIONS(13386), 1, + anon_sym_QMARK, + STATE(6268), 1, + sym__quest, + STATE(9831), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175604] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12691), 1, + sym__as_custom, + ACTIONS(13388), 1, + anon_sym_QMARK, + ACTIONS(13390), 1, + anon_sym_in, + STATE(7195), 1, + sym__quest, + STATE(9955), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175629] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12811), 1, + sym__as_custom, + ACTIONS(13392), 1, + anon_sym_QMARK, + ACTIONS(13394), 1, + anon_sym_in, + STATE(7277), 1, + sym__quest, + STATE(10010), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175654] = 4, + STATE(5573), 1, + sym_simple_identifier, + STATE(6077), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [175673] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12729), 1, + sym__as_custom, + ACTIONS(13396), 1, + anon_sym_QMARK, + ACTIONS(13398), 1, + anon_sym_in, + STATE(6087), 1, + sym__quest, + STATE(9880), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175698] = 5, + ACTIONS(12957), 1, + sym__as_custom, + ACTIONS(13400), 1, + anon_sym_QMARK, + STATE(7202), 1, + sym__quest, + ACTIONS(13166), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175719] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13402), 6, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_in, + [175734] = 7, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(13404), 1, + sym__arrow_operator_custom, + STATE(2858), 1, + sym_computed_property, + STATE(4339), 1, + sym__arrow_operator, + STATE(8540), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175759] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12811), 1, + sym__as_custom, + ACTIONS(13406), 1, + anon_sym_QMARK, + ACTIONS(13408), 1, + anon_sym_in, + STATE(7082), 1, + sym__quest, + STATE(10159), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175784] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12743), 1, + sym__as_custom, + ACTIONS(13362), 1, + anon_sym_in, + ACTIONS(13410), 1, + anon_sym_QMARK, + STATE(6013), 1, + sym__quest, + STATE(9873), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175809] = 4, + ACTIONS(13412), 1, + anon_sym_LPAREN, + ACTIONS(6044), 2, + aux_sym_simple_identifier_token1, + anon_sym_self, + ACTIONS(6046), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175828] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13414), 6, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym__async_keyword_custom, + anon_sym_COMMA, + anon_sym_in, + [175843] = 5, + ACTIONS(12705), 1, + sym__as_custom, + ACTIONS(13416), 1, + anon_sym_QMARK, + STATE(6074), 1, + sym__quest, + ACTIONS(12701), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175864] = 4, + ACTIONS(13418), 1, + sym_integer_literal, + STATE(2819), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(911), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [175883] = 4, + STATE(5130), 1, + sym_simple_identifier, + STATE(5477), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11042), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [175902] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6624), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [175917] = 7, + ACTIONS(5750), 1, + sym_where_keyword, + ACTIONS(11046), 1, + anon_sym_LBRACE, + ACTIONS(13300), 1, + sym__as_custom, + STATE(4395), 1, + sym__as, + STATE(7714), 1, + sym__block, + STATE(8817), 1, + sym_where_clause, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175942] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12957), 1, + sym__as_custom, + ACTIONS(13420), 1, + anon_sym_QMARK, + ACTIONS(13422), 1, + anon_sym_in, + STATE(5952), 1, + sym__quest, + STATE(9841), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [175967] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6620), 6, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_in, + [175982] = 4, + STATE(3085), 1, + sym_simple_identifier, + STATE(3326), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12424), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [176001] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12729), 1, + sym__as_custom, + ACTIONS(13398), 1, + anon_sym_in, + ACTIONS(13424), 1, + anon_sym_QMARK, + STATE(7055), 1, + sym__quest, + STATE(9880), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176026] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13422), 1, + anon_sym_in, + ACTIONS(13426), 1, + anon_sym_LPAREN, + ACTIONS(13428), 1, + anon_sym_QMARK, + STATE(6999), 1, + sym__quest, + STATE(9841), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176051] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 6, + sym_where_keyword, + sym__as_custom, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LBRACE, + [176066] = 4, + STATE(3016), 1, + sym_simple_identifier, + STATE(3075), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6532), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [176085] = 4, + STATE(7149), 1, + sym_simple_identifier, + STATE(10349), 1, + sym_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10737), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [176104] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12729), 1, + sym__as_custom, + ACTIONS(13326), 1, + anon_sym_in, + ACTIONS(13430), 1, + anon_sym_QMARK, + STATE(7352), 1, + sym__quest, + STATE(9984), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176129] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 6, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_LBRACE, + [176144] = 7, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12957), 1, + sym__as_custom, + ACTIONS(13422), 1, + anon_sym_in, + ACTIONS(13432), 1, + anon_sym_QMARK, + STATE(7052), 1, + sym__quest, + STATE(9841), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176169] = 4, + STATE(5202), 1, + sym_simple_identifier, + STATE(5547), 1, + sym__simple_user_type, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10893), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [176188] = 4, + STATE(6836), 1, + sym_simple_identifier, + STATE(8746), 1, + sym_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10843), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [176207] = 4, + ACTIONS(13434), 1, + anon_sym_QMARK, + STATE(6809), 1, + sym__quest, + ACTIONS(6348), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176225] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13436), 1, + anon_sym_QMARK, + ACTIONS(13438), 1, + anon_sym_in, + STATE(7972), 1, + sym__quest, + STATE(10217), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176247] = 5, + ACTIONS(13440), 1, + sym__arrow_operator_custom, + STATE(4550), 1, + sym__arrow_operator, + STATE(9725), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176267] = 4, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(12821), 1, + aux_sym_line_str_text_token1, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12819), 4, + anon_sym_DQUOTE, + anon_sym_BSLASH, + anon_sym_BSLASH_LPAREN, + sym__escaped_identifier, + [176285] = 4, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(12685), 1, + aux_sym_line_str_text_token1, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(12683), 4, + anon_sym_DQUOTE, + anon_sym_BSLASH, + anon_sym_BSLASH_LPAREN, + sym__escaped_identifier, + [176303] = 3, + STATE(5187), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13442), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [176319] = 4, + ACTIONS(13444), 1, + anon_sym_QMARK, + STATE(6843), 1, + sym__quest, + ACTIONS(12723), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176337] = 4, + ACTIONS(11399), 1, + sym_where_keyword, + STATE(7482), 1, + sym_type_constraints, + ACTIONS(13446), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176355] = 4, + ACTIONS(13448), 1, + anon_sym_QMARK, + STATE(6844), 1, + sym__quest, + ACTIONS(12717), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176373] = 5, + ACTIONS(6468), 1, + sym__as_custom, + ACTIONS(13452), 1, + anon_sym_QMARK, + STATE(6997), 1, + sym__quest, + ACTIONS(13450), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176393] = 5, + ACTIONS(6272), 1, + sym__as_custom, + ACTIONS(13456), 1, + anon_sym_QMARK, + STATE(6996), 1, + sym__quest, + ACTIONS(13454), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176413] = 5, + ACTIONS(6474), 1, + sym__as_custom, + ACTIONS(13460), 1, + anon_sym_QMARK, + STATE(7605), 1, + sym__quest, + ACTIONS(13458), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176433] = 6, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5890), 1, + anon_sym_RPAREN, + ACTIONS(13462), 1, + anon_sym_DOT, + STATE(7339), 1, + aux_sym__availability_argument_repeat1, + STATE(8175), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176455] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13464), 1, + anon_sym_QMARK, + ACTIONS(13466), 1, + anon_sym_in, + STATE(6674), 1, + sym__quest, + STATE(9935), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176477] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13468), 1, + anon_sym_QMARK, + ACTIONS(13470), 1, + anon_sym_in, + STATE(6683), 1, + sym__quest, + STATE(9937), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176499] = 5, + ACTIONS(6480), 1, + sym__as_custom, + ACTIONS(13474), 1, + anon_sym_QMARK, + STATE(7606), 1, + sym__quest, + ACTIONS(13472), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176519] = 3, + STATE(5802), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6059), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [176535] = 6, + ACTIONS(13476), 1, + anon_sym_RPAREN, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13480), 1, + sym__as_custom, + STATE(4615), 1, + sym__as, + STATE(7391), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176557] = 4, + ACTIONS(13482), 1, + anon_sym_QMARK, + STATE(7565), 1, + sym__quest, + ACTIONS(12729), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176575] = 4, + ACTIONS(13486), 1, + anon_sym_QMARK, + STATE(6965), 1, + sym__quest, + ACTIONS(13484), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176593] = 5, + ACTIONS(6500), 1, + sym__as_custom, + ACTIONS(13490), 1, + anon_sym_QMARK, + STATE(6993), 1, + sym__quest, + ACTIONS(13488), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176613] = 4, + ACTIONS(13492), 1, + anon_sym_QMARK, + STATE(6154), 1, + sym__quest, + ACTIONS(6249), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176631] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13494), 1, + anon_sym_QMARK, + ACTIONS(13496), 1, + anon_sym_in, + STATE(6607), 1, + sym__quest, + STATE(10114), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176653] = 6, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13480), 1, + sym__as_custom, + ACTIONS(13498), 1, + anon_sym_RPAREN, + STATE(4615), 1, + sym__as, + STATE(8168), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176675] = 4, + ACTIONS(13500), 1, + anon_sym_QMARK, + STATE(5983), 1, + sym__quest, + ACTIONS(6342), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176693] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13502), 1, + anon_sym_QMARK, + ACTIONS(13504), 1, + anon_sym_in, + STATE(7771), 1, + sym__quest, + STATE(9940), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176715] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13506), 1, + anon_sym_QMARK, + ACTIONS(13508), 1, + anon_sym_in, + STATE(6919), 1, + sym__quest, + STATE(10152), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176737] = 6, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(13462), 1, + anon_sym_DOT, + ACTIONS(13510), 1, + anon_sym_RPAREN, + STATE(6363), 1, + aux_sym__availability_argument_repeat1, + STATE(7385), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176759] = 4, + ACTIONS(11399), 1, + sym_where_keyword, + STATE(7465), 1, + sym_type_constraints, + ACTIONS(13446), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176777] = 6, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(13462), 1, + anon_sym_DOT, + ACTIONS(13512), 1, + anon_sym_RPAREN, + STATE(6323), 1, + aux_sym__availability_argument_repeat1, + STATE(8165), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176799] = 3, + STATE(5769), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6646), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [176815] = 5, + ACTIONS(13514), 1, + sym__arrow_operator_custom, + STATE(4479), 1, + sym__arrow_operator, + STATE(9743), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176835] = 4, + ACTIONS(13120), 1, + anon_sym_QMARK, + STATE(6547), 1, + sym__quest, + ACTIONS(6249), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176853] = 6, + ACTIONS(13516), 1, + anon_sym_RPAREN, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + STATE(4471), 1, + sym__as, + STATE(8158), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176875] = 3, + ACTIONS(13522), 1, + anon_sym_BANG, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6814), 4, + sym__semi, + sym_where_keyword, + anon_sym_LBRACE, + anon_sym_RBRACE, + [176891] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13066), 1, + anon_sym_in, + ACTIONS(13524), 1, + anon_sym_QMARK, + STATE(8144), 1, + sym__quest, + STATE(9979), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176913] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + ACTIONS(13526), 1, + anon_sym_RPAREN, + STATE(4471), 1, + sym__as, + STATE(7376), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176935] = 4, + ACTIONS(13528), 1, + anon_sym_COLON, + ACTIONS(13530), 2, + sym__eq_custom, + sym__eq_eq_custom, + STATE(4368), 2, + sym__equal_sign, + sym__eq_eq, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176953] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13532), 1, + anon_sym_QMARK, + ACTIONS(13534), 1, + anon_sym_in, + STATE(6857), 1, + sym__quest, + STATE(9875), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176975] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13536), 1, + anon_sym_QMARK, + ACTIONS(13538), 1, + anon_sym_in, + STATE(6913), 1, + sym__quest, + STATE(10156), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [176997] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13081), 1, + anon_sym_in, + ACTIONS(13540), 1, + anon_sym_QMARK, + STATE(7940), 1, + sym__quest, + STATE(10031), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177019] = 4, + ACTIONS(13542), 1, + anon_sym_QMARK, + STATE(8107), 1, + sym__quest, + ACTIONS(12817), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177037] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13544), 1, + anon_sym_QMARK, + ACTIONS(13546), 1, + anon_sym_in, + STATE(7762), 1, + sym__quest, + STATE(9944), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177059] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + ACTIONS(13548), 1, + anon_sym_RPAREN, + STATE(4471), 1, + sym__as, + STATE(7433), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177081] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13398), 1, + anon_sym_in, + ACTIONS(13550), 1, + anon_sym_QMARK, + STATE(7600), 1, + sym__quest, + STATE(9880), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177103] = 4, + ACTIONS(13552), 1, + anon_sym_QMARK, + STATE(8093), 1, + sym__quest, + ACTIONS(12418), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177121] = 6, + ACTIONS(5856), 1, + anon_sym_COMMA, + ACTIONS(13554), 1, + anon_sym_RPAREN, + ACTIONS(13556), 1, + sym__eq_custom, + STATE(386), 1, + sym__equal_sign, + STATE(7710), 1, + aux_sym_enum_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177143] = 4, + ACTIONS(13558), 1, + anon_sym_QMARK, + STATE(6960), 1, + sym__quest, + ACTIONS(12729), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177161] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12955), 1, + anon_sym_in, + ACTIONS(13560), 1, + anon_sym_QMARK, + STATE(8019), 1, + sym__quest, + STATE(10000), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177183] = 3, + STATE(5762), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6646), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [177199] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13562), 1, + anon_sym_QMARK, + ACTIONS(13564), 1, + anon_sym_in, + STATE(6803), 1, + sym__quest, + STATE(9945), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177221] = 3, + STATE(5751), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6646), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [177237] = 6, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5888), 1, + anon_sym_RPAREN, + ACTIONS(13462), 1, + anon_sym_DOT, + STATE(7339), 1, + aux_sym__availability_argument_repeat1, + STATE(7431), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177259] = 3, + STATE(5090), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13442), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [177275] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13566), 1, + anon_sym_QMARK, + ACTIONS(13568), 1, + anon_sym_in, + STATE(7702), 1, + sym__quest, + STATE(9950), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177297] = 3, + STATE(9876), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [177313] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13570), 1, + anon_sym_QMARK, + ACTIONS(13572), 1, + anon_sym_in, + STATE(6845), 1, + sym__quest, + STATE(9951), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177335] = 4, + ACTIONS(13574), 1, + anon_sym_QMARK, + STATE(7492), 1, + sym__quest, + ACTIONS(12743), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177353] = 3, + STATE(5770), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6038), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [177369] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12499), 1, + anon_sym_LBRACE, + ACTIONS(13576), 1, + anon_sym_COLON, + STATE(2882), 1, + sym_protocol_body, + STATE(8195), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177391] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7018), 6, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [177405] = 5, + ACTIONS(6402), 1, + sym__as_custom, + ACTIONS(13580), 1, + anon_sym_QMARK, + STATE(6586), 1, + sym__quest, + ACTIONS(13578), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177425] = 4, + ACTIONS(13127), 1, + anon_sym_QMARK, + STATE(6391), 1, + sym__quest, + ACTIONS(12418), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177443] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13582), 1, + anon_sym_QMARK, + ACTIONS(13584), 1, + anon_sym_in, + STATE(8054), 1, + sym__quest, + STATE(10268), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177465] = 3, + STATE(2959), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13586), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [177481] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12428), 1, + anon_sym_LBRACE, + ACTIONS(13588), 1, + anon_sym_COLON, + STATE(2951), 1, + sym_enum_class_body, + STATE(8188), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177503] = 4, + ACTIONS(13590), 1, + anon_sym_QMARK, + STATE(6566), 1, + sym__quest, + ACTIONS(6390), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177521] = 4, + ACTIONS(13592), 1, + anon_sym_QMARK, + STATE(6551), 1, + sym__quest, + ACTIONS(6384), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177539] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12380), 1, + anon_sym_LBRACE, + ACTIONS(13594), 1, + anon_sym_COLON, + STATE(8837), 1, + sym_type_constraints, + STATE(8839), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177561] = 3, + STATE(5927), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6646), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [177577] = 4, + ACTIONS(13596), 1, + anon_sym_QMARK, + STATE(6591), 1, + sym__quest, + ACTIONS(12743), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177595] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12380), 1, + anon_sym_LBRACE, + ACTIONS(13598), 1, + anon_sym_COLON, + STATE(8642), 1, + sym_enum_class_body, + STATE(8647), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177617] = 4, + ACTIONS(13600), 1, + anon_sym_QMARK, + STATE(6532), 1, + sym__quest, + ACTIONS(6378), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177635] = 4, + ACTIONS(13602), 1, + anon_sym_QMARK, + STATE(6531), 1, + sym__quest, + ACTIONS(6370), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177653] = 5, + ACTIONS(13604), 1, + sym__arrow_operator_custom, + STATE(4401), 1, + sym__arrow_operator, + STATE(9582), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177673] = 4, + ACTIONS(13606), 1, + anon_sym_QMARK, + STATE(7283), 1, + sym__quest, + ACTIONS(6370), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177691] = 4, + ACTIONS(13608), 1, + anon_sym_QMARK, + STATE(8036), 1, + sym__quest, + ACTIONS(12811), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177709] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7047), 5, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [177723] = 3, + STATE(10117), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13610), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [177739] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13612), 1, + anon_sym_QMARK, + ACTIONS(13614), 1, + anon_sym_in, + STATE(6434), 1, + sym__quest, + STATE(10264), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177761] = 4, + ACTIONS(13616), 1, + anon_sym_QMARK, + STATE(8034), 1, + sym__quest, + ACTIONS(12957), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177779] = 4, + ACTIONS(11331), 1, + anon_sym_if, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3890), 3, + sym__else_options, + sym_if_statement, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177797] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6904), 6, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [177811] = 4, + ACTIONS(13622), 1, + anon_sym_QMARK, + STATE(7509), 1, + sym__quest, + ACTIONS(13620), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177829] = 4, + ACTIONS(13626), 1, + anon_sym_QMARK, + STATE(6630), 1, + sym__quest, + ACTIONS(13624), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177847] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13628), 1, + anon_sym_QMARK, + ACTIONS(13630), 1, + anon_sym_in, + STATE(7618), 1, + sym__quest, + STATE(10008), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177869] = 6, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13480), 1, + sym__as_custom, + ACTIONS(13632), 1, + anon_sym_RPAREN, + STATE(4615), 1, + sym__as, + STATE(8129), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177891] = 5, + ACTIONS(13634), 1, + sym__dot_custom, + STATE(6398), 1, + aux_sym_identifier_repeat1, + STATE(6589), 1, + sym__dot, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6854), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [177911] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13637), 1, + anon_sym_QMARK, + ACTIONS(13639), 1, + anon_sym_in, + STATE(8179), 1, + sym__quest, + STATE(10262), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177933] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 5, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COLON, + anon_sym_RBRACE, + [177947] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13641), 1, + anon_sym_QMARK, + ACTIONS(13643), 1, + anon_sym_in, + STATE(7512), 1, + sym__quest, + STATE(10112), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [177969] = 3, + STATE(9988), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [177985] = 6, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5884), 1, + anon_sym_RPAREN, + ACTIONS(13462), 1, + anon_sym_DOT, + STATE(7339), 1, + aux_sym__availability_argument_repeat1, + STATE(7397), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178007] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13645), 1, + anon_sym_QMARK, + ACTIONS(13647), 1, + anon_sym_in, + STATE(6695), 1, + sym__quest, + STATE(10109), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178029] = 5, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8378), 1, + sym__block, + STATE(8812), 1, + sym_function_body, + ACTIONS(13651), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178049] = 4, + ACTIONS(13653), 1, + anon_sym_QMARK, + STATE(7267), 1, + sym__quest, + ACTIONS(6325), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178067] = 4, + ACTIONS(13655), 1, + anon_sym_QMARK, + STATE(6904), 1, + sym__quest, + ACTIONS(12711), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178085] = 4, + ACTIONS(13657), 1, + anon_sym_QMARK, + STATE(7655), 1, + sym__quest, + ACTIONS(12699), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178103] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(11835), 1, + anon_sym_LBRACE, + ACTIONS(13659), 1, + sym__arrow_operator_custom, + STATE(4285), 1, + sym__arrow_operator, + STATE(10221), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178125] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13661), 1, + anon_sym_QMARK, + ACTIONS(13663), 1, + anon_sym_in, + STATE(7596), 1, + sym__quest, + STATE(9990), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178147] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13665), 1, + anon_sym_QMARK, + ACTIONS(13667), 1, + anon_sym_in, + STATE(7014), 1, + sym__quest, + STATE(10005), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178169] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13669), 1, + anon_sym_QMARK, + ACTIONS(13671), 1, + anon_sym_in, + STATE(7554), 1, + sym__quest, + STATE(9954), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178191] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13673), 1, + anon_sym_QMARK, + ACTIONS(13675), 1, + anon_sym_in, + STATE(6928), 1, + sym__quest, + STATE(9872), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178213] = 4, + ACTIONS(13679), 1, + sym__three_dot_operator_custom, + STATE(7630), 1, + sym__three_dot_operator, + ACTIONS(13677), 3, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178231] = 4, + ACTIONS(13679), 1, + sym__three_dot_operator_custom, + STATE(7633), 1, + sym__three_dot_operator, + ACTIONS(13681), 3, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178249] = 4, + ACTIONS(13683), 1, + anon_sym_QMARK, + STATE(8121), 1, + sym__quest, + ACTIONS(12691), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178267] = 5, + ACTIONS(6426), 1, + sym__as_custom, + ACTIONS(13687), 1, + anon_sym_QMARK, + STATE(6610), 1, + sym__quest, + ACTIONS(13685), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178287] = 6, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13480), 1, + sym__as_custom, + ACTIONS(13689), 1, + anon_sym_RPAREN, + STATE(4615), 1, + sym__as, + STATE(8079), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178309] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12459), 1, + anon_sym_LBRACE, + ACTIONS(13691), 1, + anon_sym_COLON, + STATE(2883), 1, + sym_class_body, + STATE(8212), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178331] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13693), 5, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_RBRACE, + [178345] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13695), 1, + anon_sym_QMARK, + ACTIONS(13697), 1, + anon_sym_in, + STATE(7639), 1, + sym__quest, + STATE(9871), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178367] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12521), 1, + anon_sym_LBRACE, + ACTIONS(13699), 1, + anon_sym_COLON, + STATE(8597), 1, + sym_type_constraints, + STATE(8726), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178389] = 5, + ACTIONS(6420), 1, + sym__as_custom, + ACTIONS(13703), 1, + anon_sym_QMARK, + STATE(7885), 1, + sym__quest, + ACTIONS(13701), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178409] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(11835), 1, + anon_sym_LBRACE, + ACTIONS(13705), 1, + sym__arrow_operator_custom, + STATE(4280), 1, + sym__arrow_operator, + STATE(10227), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178431] = 3, + STATE(5544), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6059), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [178447] = 3, + ACTIONS(13707), 1, + anon_sym_BANG, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6814), 4, + sym__semi, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [178463] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + ACTIONS(13709), 1, + anon_sym_RPAREN, + STATE(4471), 1, + sym__as, + STATE(8101), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178485] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + ACTIONS(13711), 1, + anon_sym_RPAREN, + STATE(4471), 1, + sym__as, + STATE(8060), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178507] = 5, + ACTIONS(6414), 1, + sym__as_custom, + ACTIONS(13715), 1, + anon_sym_QMARK, + STATE(6590), 1, + sym__quest, + ACTIONS(13713), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178527] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12499), 1, + anon_sym_LBRACE, + ACTIONS(13717), 1, + anon_sym_COLON, + STATE(2954), 1, + sym_protocol_body, + STATE(8217), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178549] = 5, + ACTIONS(6408), 1, + sym__as_custom, + ACTIONS(13721), 1, + anon_sym_QMARK, + STATE(6588), 1, + sym__quest, + ACTIONS(13719), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178569] = 3, + STATE(6246), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6059), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [178585] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13723), 1, + anon_sym_QMARK, + ACTIONS(13725), 1, + anon_sym_in, + STATE(6940), 1, + sym__quest, + STATE(9868), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178607] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13727), 1, + anon_sym_QMARK, + ACTIONS(13729), 1, + anon_sym_in, + STATE(7990), 1, + sym__quest, + STATE(10272), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178629] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12428), 1, + anon_sym_LBRACE, + ACTIONS(13731), 1, + anon_sym_COLON, + STATE(2905), 1, + sym_enum_class_body, + STATE(8220), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178651] = 3, + STATE(5719), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6646), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [178667] = 5, + ACTIONS(6331), 1, + sym__as_custom, + ACTIONS(13735), 1, + anon_sym_QMARK, + STATE(7657), 1, + sym__quest, + ACTIONS(13733), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178687] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12459), 1, + anon_sym_LBRACE, + ACTIONS(13737), 1, + anon_sym_COLON, + STATE(2905), 1, + sym_class_body, + STATE(8221), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178709] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13739), 1, + anon_sym_QMARK, + ACTIONS(13741), 1, + anon_sym_in, + STATE(6971), 1, + sym__quest, + STATE(10107), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178731] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13743), 1, + anon_sym_RPAREN, + ACTIONS(13745), 1, + sym__as_custom, + STATE(4627), 1, + sym__as, + STATE(7877), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178753] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13747), 1, + anon_sym_QMARK, + ACTIONS(13749), 1, + anon_sym_in, + STATE(6943), 1, + sym__quest, + STATE(9867), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178775] = 3, + STATE(7309), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11483), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [178791] = 3, + STATE(6145), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6038), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [178807] = 3, + STATE(7146), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11389), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [178823] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11734), 5, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + sym_where_keyword, + anon_sym_LBRACE, + [178837] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13751), 1, + anon_sym_QMARK, + ACTIONS(13753), 1, + anon_sym_in, + STATE(6950), 1, + sym__quest, + STATE(9866), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178859] = 3, + STATE(9912), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [178875] = 3, + STATE(5676), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6646), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [178891] = 4, + ACTIONS(13755), 1, + anon_sym_QMARK, + STATE(6513), 1, + sym__quest, + ACTIONS(12705), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178909] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13098), 1, + anon_sym_in, + ACTIONS(13757), 1, + anon_sym_QMARK, + STATE(7937), 1, + sym__quest, + STATE(10026), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178931] = 4, + ACTIONS(13759), 1, + anon_sym_QMARK, + STATE(6725), 1, + sym__quest, + ACTIONS(12847), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178949] = 4, + ACTIONS(13761), 1, + anon_sym_QMARK, + STATE(7957), 1, + sym__quest, + ACTIONS(12691), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178967] = 4, + ACTIONS(13765), 1, + sym__as_custom, + STATE(4402), 1, + sym__as, + ACTIONS(13763), 3, + sym_where_keyword, + anon_sym_COLON, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [178985] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13767), 1, + anon_sym_QMARK, + ACTIONS(13769), 1, + anon_sym_in, + STATE(6907), 1, + sym__quest, + STATE(10105), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179007] = 4, + ACTIONS(13771), 1, + anon_sym_QMARK, + STATE(6598), 1, + sym__quest, + ACTIONS(12957), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179025] = 3, + STATE(5678), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6646), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [179041] = 4, + ACTIONS(13773), 1, + anon_sym_QMARK, + STATE(6515), 1, + sym__quest, + ACTIONS(13141), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179059] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6967), 6, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [179073] = 4, + ACTIONS(13775), 1, + anon_sym_QMARK, + STATE(7227), 1, + sym__quest, + ACTIONS(6331), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179091] = 6, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(13462), 1, + anon_sym_DOT, + ACTIONS(13777), 1, + anon_sym_RPAREN, + STATE(6403), 1, + aux_sym__availability_argument_repeat1, + STATE(7403), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179113] = 4, + ACTIONS(13779), 1, + anon_sym_QMARK, + STATE(6522), 1, + sym__quest, + ACTIONS(12859), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179131] = 4, + STATE(8309), 1, + sym__quest, + ACTIONS(13781), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(13783), 2, + sym_bang, + anon_sym_QMARK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179149] = 4, + ACTIONS(13785), 1, + anon_sym_QMARK, + STATE(6509), 1, + sym__quest, + ACTIONS(12675), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179167] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6941), 6, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [179181] = 5, + ACTIONS(13787), 1, + sym__arrow_operator_custom, + STATE(4420), 1, + sym__arrow_operator, + STATE(9761), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179201] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(11874), 1, + anon_sym_LBRACE, + ACTIONS(13789), 1, + sym__arrow_operator_custom, + STATE(4267), 1, + sym__arrow_operator, + STATE(10092), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179223] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6900), 6, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [179237] = 4, + ACTIONS(13791), 1, + anon_sym_QMARK, + STATE(6894), 1, + sym__quest, + ACTIONS(12737), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179255] = 4, + ACTIONS(13793), 1, + anon_sym_QMARK, + STATE(7409), 1, + sym__quest, + ACTIONS(13046), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179273] = 3, + STATE(2587), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13795), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [179289] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13797), 1, + anon_sym_QMARK, + ACTIONS(13799), 1, + anon_sym_in, + STATE(6858), 1, + sym__quest, + STATE(10102), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179311] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13801), 1, + anon_sym_QMARK, + ACTIONS(13803), 1, + anon_sym_in, + STATE(8111), 1, + sym__quest, + STATE(10258), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179333] = 4, + ACTIONS(13805), 1, + anon_sym_QMARK, + STATE(7946), 1, + sym__quest, + ACTIONS(12939), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179351] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + ACTIONS(13807), 1, + anon_sym_RPAREN, + STATE(4471), 1, + sym__as, + STATE(7411), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179373] = 6, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5770), 1, + anon_sym_RPAREN, + ACTIONS(13462), 1, + anon_sym_DOT, + STATE(7339), 1, + aux_sym__availability_argument_repeat1, + STATE(7641), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179395] = 3, + STATE(8731), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13809), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [179411] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13811), 1, + anon_sym_QMARK, + ACTIONS(13813), 1, + anon_sym_in, + STATE(6552), 1, + sym__quest, + STATE(9933), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179433] = 3, + STATE(10388), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [179449] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6904), 5, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [179463] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13075), 1, + anon_sym_in, + ACTIONS(13815), 1, + anon_sym_QMARK, + STATE(7988), 1, + sym__quest, + STATE(10087), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179485] = 3, + STATE(5739), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13817), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [179501] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13819), 1, + anon_sym_QMARK, + ACTIONS(13821), 1, + anon_sym_in, + STATE(6577), 1, + sym__quest, + STATE(9956), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179523] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13823), 1, + anon_sym_QMARK, + ACTIONS(13825), 1, + anon_sym_in, + STATE(6834), 1, + sym__quest, + STATE(10100), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179545] = 3, + STATE(5608), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6059), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [179561] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12392), 1, + anon_sym_LBRACE, + ACTIONS(13827), 1, + anon_sym_COLON, + STATE(8599), 1, + sym_type_constraints, + STATE(8732), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179583] = 6, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13829), 1, + anon_sym_RPAREN, + ACTIONS(13831), 1, + sym__as_custom, + STATE(4658), 1, + sym__as, + STATE(7402), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179605] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13833), 1, + anon_sym_QMARK, + ACTIONS(13835), 1, + anon_sym_in, + STATE(6990), 1, + sym__quest, + STATE(9865), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179627] = 3, + STATE(6236), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6038), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [179643] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13837), 1, + anon_sym_QMARK, + ACTIONS(13839), 1, + anon_sym_in, + STATE(7962), 1, + sym__quest, + STATE(9931), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179665] = 3, + STATE(6109), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6059), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [179681] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13841), 1, + anon_sym_QMARK, + ACTIONS(13843), 1, + anon_sym_in, + STATE(7587), 1, + sym__quest, + STATE(9985), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179703] = 4, + ACTIONS(13845), 1, + anon_sym_COLON, + ACTIONS(13847), 2, + sym__eq_custom, + sym__eq_eq_custom, + STATE(4372), 2, + sym__equal_sign, + sym__eq_eq, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179721] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13849), 1, + anon_sym_QMARK, + ACTIONS(13851), 1, + anon_sym_in, + STATE(6512), 1, + sym__quest, + STATE(9928), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179743] = 3, + STATE(7987), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [179759] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13853), 1, + anon_sym_QMARK, + ACTIONS(13855), 1, + anon_sym_in, + STATE(7455), 1, + sym__quest, + STATE(9958), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179781] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13857), 1, + anon_sym_QMARK, + ACTIONS(13859), 1, + anon_sym_in, + STATE(6499), 1, + sym__quest, + STATE(9927), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179803] = 3, + STATE(5704), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6038), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [179819] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13861), 1, + anon_sym_QMARK, + ACTIONS(13863), 1, + anon_sym_in, + STATE(6495), 1, + sym__quest, + STATE(9926), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179841] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13865), 1, + anon_sym_QMARK, + ACTIONS(13867), 1, + anon_sym_in, + STATE(6491), 1, + sym__quest, + STATE(9959), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179863] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13869), 1, + anon_sym_QMARK, + ACTIONS(13871), 1, + anon_sym_in, + STATE(6975), 1, + sym__quest, + STATE(9864), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179885] = 4, + ACTIONS(13873), 1, + anon_sym_QMARK, + STATE(6587), 1, + sym__quest, + ACTIONS(12729), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179903] = 4, + ACTIONS(13875), 1, + anon_sym_QMARK, + STATE(6329), 1, + sym__quest, + ACTIONS(12957), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179921] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13877), 1, + anon_sym_QMARK, + ACTIONS(13879), 1, + anon_sym_in, + STATE(6374), 1, + sym__quest, + STATE(10254), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179943] = 4, + ACTIONS(13881), 1, + anon_sym_QMARK, + STATE(6615), 1, + sym__quest, + ACTIONS(12737), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179961] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(11874), 1, + anon_sym_LBRACE, + ACTIONS(13883), 1, + sym__arrow_operator_custom, + STATE(4283), 1, + sym__arrow_operator, + STATE(10099), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [179983] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + ACTIONS(13885), 1, + anon_sym_RPAREN, + STATE(4471), 1, + sym__as, + STATE(7449), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180005] = 3, + STATE(2616), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13795), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [180021] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13887), 1, + anon_sym_QMARK, + ACTIONS(13889), 1, + anon_sym_in, + STATE(8106), 1, + sym__quest, + STATE(10252), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180043] = 4, + ACTIONS(13891), 1, + anon_sym_QMARK, + STATE(7541), 1, + sym__quest, + ACTIONS(12865), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180061] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12529), 1, + anon_sym_LBRACE, + ACTIONS(13893), 1, + sym__arrow_operator_custom, + STATE(4286), 1, + sym__arrow_operator, + STATE(10097), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180083] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13895), 1, + anon_sym_QMARK, + ACTIONS(13897), 1, + anon_sym_in, + STATE(8105), 1, + sym__quest, + STATE(10250), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180105] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13899), 1, + anon_sym_QMARK, + ACTIONS(13901), 1, + anon_sym_in, + STATE(6410), 1, + sym__quest, + STATE(9960), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180127] = 4, + ACTIONS(13903), 1, + anon_sym_QMARK, + STATE(6747), 1, + sym__quest, + ACTIONS(12871), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180145] = 3, + STATE(7344), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11389), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [180161] = 4, + ACTIONS(13905), 1, + anon_sym_QMARK, + STATE(6633), 1, + sym__quest, + ACTIONS(12675), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180179] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13907), 1, + anon_sym_QMARK, + ACTIONS(13909), 1, + anon_sym_in, + STATE(6390), 1, + sym__quest, + STATE(10247), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180201] = 3, + STATE(2389), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11389), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [180217] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12529), 1, + anon_sym_LBRACE, + ACTIONS(13911), 1, + sym__arrow_operator_custom, + STATE(4277), 1, + sym__arrow_operator, + STATE(10090), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180239] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13913), 1, + anon_sym_QMARK, + ACTIONS(13915), 1, + anon_sym_in, + STATE(6399), 1, + sym__quest, + STATE(10245), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180261] = 4, + ACTIONS(13917), 1, + anon_sym_QMARK, + STATE(6634), 1, + sym__quest, + ACTIONS(12705), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180279] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6945), 6, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [180293] = 4, + ACTIONS(13919), 1, + anon_sym_QMARK, + STATE(6777), 1, + sym__quest, + ACTIONS(12717), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180311] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7047), 6, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [180325] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12388), 1, + anon_sym_LBRACE, + ACTIONS(13921), 1, + anon_sym_COLON, + STATE(8864), 1, + sym_type_constraints, + STATE(10088), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180347] = 3, + STATE(2489), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11389), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [180363] = 3, + STATE(3316), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13923), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [180379] = 3, + ACTIONS(13925), 1, + anon_sym_BANG, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6814), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_in, + [180395] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13927), 1, + anon_sym_QMARK, + ACTIONS(13929), 1, + anon_sym_in, + STATE(6411), 1, + sym__quest, + STATE(9963), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180417] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + ACTIONS(13931), 1, + anon_sym_RPAREN, + STATE(4471), 1, + sym__as, + STATE(8041), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180439] = 6, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(13462), 1, + anon_sym_DOT, + ACTIONS(13933), 1, + anon_sym_RPAREN, + STATE(6561), 1, + aux_sym__availability_argument_repeat1, + STATE(7468), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180461] = 4, + ACTIONS(13935), 1, + anon_sym_QMARK, + STATE(7138), 1, + sym__quest, + ACTIONS(6396), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180479] = 4, + ACTIONS(13937), 1, + anon_sym_QMARK, + STATE(6885), 1, + sym__quest, + ACTIONS(6402), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180497] = 3, + STATE(9908), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [180513] = 4, + ACTIONS(13939), 1, + anon_sym_QMARK, + STATE(7017), 1, + sym__quest, + ACTIONS(6408), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180531] = 3, + STATE(2407), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11389), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [180547] = 4, + ACTIONS(13941), 1, + anon_sym_QMARK, + STATE(6906), 1, + sym__quest, + ACTIONS(6414), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180565] = 4, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(13945), 1, + aux_sym_line_str_text_token1, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13943), 4, + anon_sym_DQUOTE, + anon_sym_BSLASH, + anon_sym_BSLASH_LPAREN, + sym__escaped_identifier, + [180583] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13947), 1, + anon_sym_QMARK, + ACTIONS(13949), 1, + anon_sym_in, + STATE(6788), 1, + sym__quest, + STATE(9863), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180605] = 4, + ACTIONS(13951), 1, + anon_sym_QMARK, + STATE(7906), 1, + sym__quest, + ACTIONS(12817), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180623] = 4, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(13192), 1, + aux_sym_line_str_text_token1, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13190), 4, + anon_sym_DQUOTE, + anon_sym_BSLASH, + anon_sym_BSLASH_LPAREN, + sym__escaped_identifier, + [180641] = 4, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(13955), 1, + aux_sym_line_str_text_token1, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13953), 4, + anon_sym_DQUOTE, + anon_sym_BSLASH, + anon_sym_BSLASH_LPAREN, + sym__escaped_identifier, + [180659] = 4, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(13959), 1, + aux_sym_line_str_text_token1, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13957), 4, + anon_sym_DQUOTE, + anon_sym_BSLASH, + anon_sym_BSLASH_LPAREN, + sym__escaped_identifier, + [180677] = 4, + ACTIONS(13765), 1, + sym__as_custom, + STATE(4402), 1, + sym__as, + ACTIONS(13961), 3, + sym_where_keyword, + anon_sym_COLON, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180695] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12779), 1, + anon_sym_in, + ACTIONS(13963), 1, + anon_sym_QMARK, + STATE(7612), 1, + sym__quest, + STATE(10052), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180717] = 4, + ACTIONS(13965), 1, + anon_sym_QMARK, + STATE(6469), 1, + sym__quest, + ACTIONS(12905), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180735] = 4, + ACTIONS(13967), 1, + anon_sym_QMARK, + STATE(7889), 1, + sym__quest, + ACTIONS(12418), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180753] = 4, + ACTIONS(13969), 1, + anon_sym_QMARK, + STATE(6118), 1, + sym__quest, + ACTIONS(6348), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180771] = 4, + ACTIONS(13971), 1, + anon_sym_QMARK, + STATE(8027), 1, + sym__quest, + ACTIONS(12911), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180789] = 4, + STATE(6549), 1, + aux_sym__inheritance_specifiers_repeat1, + ACTIONS(13973), 2, + anon_sym_COMMA, + anon_sym_AMP, + ACTIONS(13976), 2, + sym_where_keyword, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180807] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13978), 1, + anon_sym_QMARK, + ACTIONS(13980), 1, + anon_sym_in, + STATE(6790), 1, + sym__quest, + STATE(10096), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180829] = 4, + ACTIONS(13982), 1, + anon_sym_QMARK, + STATE(7074), 1, + sym__quest, + ACTIONS(6420), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180847] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13984), 1, + anon_sym_QMARK, + ACTIONS(13986), 1, + anon_sym_in, + STATE(7358), 1, + sym__quest, + STATE(9975), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180869] = 4, + ACTIONS(13988), 1, + anon_sym_QMARK, + STATE(6782), 1, + sym__quest, + ACTIONS(6348), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180887] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12599), 1, + anon_sym_LBRACE, + ACTIONS(13990), 1, + sym__arrow_operator_custom, + STATE(4260), 1, + sym__arrow_operator, + STATE(9997), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180909] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7018), 5, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [180923] = 3, + STATE(3312), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13923), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [180939] = 5, + ACTIONS(13992), 1, + sym__arrow_operator_custom, + STATE(4654), 1, + sym__arrow_operator, + STATE(9778), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180959] = 4, + ACTIONS(11331), 1, + anon_sym_if, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3798), 3, + sym__else_options, + sym_if_statement, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180977] = 6, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13480), 1, + sym__as_custom, + ACTIONS(13829), 1, + anon_sym_RPAREN, + STATE(4615), 1, + sym__as, + STATE(7402), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [180999] = 4, + ACTIONS(12915), 1, + anon_sym_QMARK, + STATE(6668), 1, + sym__quest, + ACTIONS(6249), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181017] = 6, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5868), 1, + anon_sym_RPAREN, + ACTIONS(13462), 1, + anon_sym_DOT, + STATE(7339), 1, + aux_sym__availability_argument_repeat1, + STATE(7504), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181039] = 6, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13480), 1, + sym__as_custom, + ACTIONS(13994), 1, + anon_sym_RPAREN, + STATE(4615), 1, + sym__as, + STATE(8167), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181061] = 4, + ACTIONS(13996), 1, + anon_sym_COLON, + ACTIONS(13998), 2, + sym__eq_custom, + sym__eq_eq_custom, + STATE(4349), 2, + sym__equal_sign, + sym__eq_eq, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181079] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14000), 1, + anon_sym_QMARK, + ACTIONS(14002), 1, + anon_sym_in, + STATE(7026), 1, + sym__quest, + STATE(9852), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181101] = 4, + ACTIONS(14004), 1, + anon_sym_QMARK, + STATE(6394), 1, + sym__quest, + ACTIONS(13484), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181119] = 4, + ACTIONS(14006), 1, + anon_sym_QMARK, + STATE(6974), 1, + sym__quest, + ACTIONS(6426), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181137] = 4, + ACTIONS(14008), 1, + anon_sym_QMARK, + STATE(7395), 1, + sym__quest, + ACTIONS(12729), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181155] = 3, + STATE(9942), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [181171] = 4, + ACTIONS(14010), 1, + anon_sym_QMARK, + STATE(6368), 1, + sym__quest, + ACTIONS(12729), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181189] = 4, + ACTIONS(14012), 1, + anon_sym_AMP, + STATE(6570), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5094), 3, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181207] = 4, + ACTIONS(14015), 1, + anon_sym_QMARK, + STATE(7159), 1, + sym__quest, + ACTIONS(6249), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181225] = 4, + ACTIONS(14017), 1, + anon_sym_QMARK, + STATE(7158), 1, + sym__quest, + ACTIONS(6342), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181243] = 5, + ACTIONS(11818), 1, + anon_sym_DOT, + ACTIONS(14019), 1, + anon_sym_AMP, + STATE(6718), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5094), 2, + anon_sym_BANG, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181263] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14021), 1, + anon_sym_QMARK, + ACTIONS(14023), 1, + anon_sym_in, + STATE(6978), 1, + sym__quest, + STATE(9982), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181285] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14025), 1, + anon_sym_QMARK, + ACTIONS(14027), 1, + anon_sym_in, + STATE(6350), 1, + sym__quest, + STATE(10120), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181307] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14029), 1, + anon_sym_QMARK, + ACTIONS(14031), 1, + anon_sym_in, + STATE(7015), 1, + sym__quest, + STATE(10059), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181329] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14033), 1, + anon_sym_QMARK, + ACTIONS(14035), 1, + anon_sym_in, + STATE(6958), 1, + sym__quest, + STATE(9977), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181351] = 4, + STATE(6929), 1, + aux_sym__inheritance_specifiers_repeat1, + ACTIONS(14037), 2, + anon_sym_COMMA, + anon_sym_AMP, + ACTIONS(14039), 2, + sym_where_keyword, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181369] = 5, + ACTIONS(6364), 1, + sym__as_custom, + ACTIONS(14043), 1, + anon_sym_QMARK, + STATE(6808), 1, + sym__quest, + ACTIONS(14041), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181389] = 4, + ACTIONS(14045), 1, + anon_sym_QMARK, + STATE(6922), 1, + sym__quest, + ACTIONS(12923), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181407] = 3, + ACTIONS(14047), 1, + anon_sym_BANG, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6814), 4, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + [181423] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12376), 1, + anon_sym_LBRACE, + ACTIONS(14049), 1, + anon_sym_COLON, + STATE(8649), 1, + sym_class_body, + STATE(8655), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181445] = 5, + ACTIONS(6432), 1, + sym__as_custom, + ACTIONS(14053), 1, + anon_sym_QMARK, + STATE(6320), 1, + sym__quest, + ACTIONS(14051), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181465] = 4, + ACTIONS(11399), 1, + sym_where_keyword, + STATE(7764), 1, + sym_type_constraints, + ACTIONS(14055), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181483] = 5, + ACTIONS(14057), 1, + anon_sym_DOT, + ACTIONS(14059), 1, + anon_sym_AMP, + STATE(6593), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5041), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [181503] = 5, + ACTIONS(6438), 1, + sym__as_custom, + ACTIONS(14063), 1, + anon_sym_QMARK, + STATE(7361), 1, + sym__quest, + ACTIONS(14061), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181523] = 4, + ACTIONS(14065), 1, + anon_sym_QMARK, + STATE(7855), 1, + sym__quest, + ACTIONS(12743), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181541] = 5, + ACTIONS(6444), 1, + sym__as_custom, + ACTIONS(14069), 1, + anon_sym_QMARK, + STATE(6322), 1, + sym__quest, + ACTIONS(14067), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181561] = 3, + STATE(7406), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10843), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [181577] = 5, + ACTIONS(6450), 1, + sym__as_custom, + ACTIONS(14073), 1, + anon_sym_QMARK, + STATE(6326), 1, + sym__quest, + ACTIONS(14071), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181597] = 4, + ACTIONS(14075), 1, + anon_sym_QMARK, + STATE(7574), 1, + sym__quest, + ACTIONS(12883), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181615] = 4, + ACTIONS(11399), 1, + sym_where_keyword, + STATE(7717), 1, + sym_type_constraints, + ACTIONS(14055), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181633] = 4, + ACTIONS(14059), 1, + anon_sym_AMP, + STATE(6601), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5049), 4, + sym_multiline_comment, + sym__semi, + anon_sym_DOT, + anon_sym_RBRACE, + [181651] = 4, + ACTIONS(14077), 1, + anon_sym_QMARK, + STATE(6684), 1, + sym__quest, + ACTIONS(12743), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181669] = 5, + ACTIONS(14057), 1, + anon_sym_DOT, + ACTIONS(14059), 1, + anon_sym_AMP, + STATE(6593), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5061), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [181689] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14079), 1, + anon_sym_QMARK, + ACTIONS(14081), 1, + anon_sym_in, + STATE(8014), 1, + sym__quest, + STATE(10239), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181711] = 4, + ACTIONS(14083), 1, + anon_sym_QMARK, + STATE(7569), 1, + sym__quest, + ACTIONS(12957), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181729] = 4, + ACTIONS(14085), 1, + anon_sym_QMARK, + STATE(7793), 1, + sym__quest, + ACTIONS(12729), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181747] = 4, + ACTIONS(14087), 1, + anon_sym_QMARK, + STATE(7750), 1, + sym__quest, + ACTIONS(12671), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181765] = 5, + ACTIONS(14057), 1, + anon_sym_DOT, + ACTIONS(14059), 1, + anon_sym_AMP, + STATE(6593), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [181785] = 4, + ACTIONS(14089), 1, + anon_sym_AMP, + STATE(6601), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5094), 4, + sym_multiline_comment, + sym__semi, + anon_sym_DOT, + anon_sym_RBRACE, + [181803] = 5, + ACTIONS(6456), 1, + sym__as_custom, + ACTIONS(14094), 1, + anon_sym_QMARK, + STATE(6331), 1, + sym__quest, + ACTIONS(14092), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181823] = 3, + STATE(5622), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6038), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [181839] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14096), 1, + anon_sym_QMARK, + ACTIONS(14098), 1, + anon_sym_in, + STATE(6324), 1, + sym__quest, + STATE(9909), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181861] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12384), 1, + anon_sym_LBRACE, + ACTIONS(14100), 1, + anon_sym_COLON, + STATE(4027), 1, + sym_class_body, + STATE(8304), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181883] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + ACTIONS(14102), 1, + anon_sym_RPAREN, + STATE(4471), 1, + sym__as, + STATE(7461), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181905] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14104), 1, + anon_sym_QMARK, + ACTIONS(14106), 1, + anon_sym_in, + STATE(7644), 1, + sym__quest, + STATE(10148), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181927] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14108), 1, + anon_sym_QMARK, + ACTIONS(14110), 1, + anon_sym_in, + STATE(6890), 1, + sym__quest, + STATE(10158), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181949] = 4, + ACTIONS(14112), 1, + anon_sym_QMARK, + STATE(6799), 1, + sym__quest, + ACTIONS(12701), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181967] = 5, + ACTIONS(6462), 1, + sym__as_custom, + ACTIONS(14116), 1, + anon_sym_QMARK, + STATE(7370), 1, + sym__quest, + ACTIONS(14114), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [181987] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12513), 1, + anon_sym_LBRACE, + ACTIONS(14118), 1, + anon_sym_COLON, + STATE(8618), 1, + sym_type_constraints, + STATE(8752), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182009] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12579), 1, + anon_sym_LBRACE, + ACTIONS(14120), 1, + anon_sym_COLON, + STATE(4027), 1, + sym_enum_class_body, + STATE(8307), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182031] = 4, + ACTIONS(14124), 1, + anon_sym_QMARK, + STATE(7510), 1, + sym__quest, + ACTIONS(14122), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182049] = 3, + STATE(6026), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14126), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [182065] = 4, + ACTIONS(14128), 1, + anon_sym_QMARK, + STATE(6691), 1, + sym__quest, + ACTIONS(12841), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182083] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + ACTIONS(13743), 1, + anon_sym_RPAREN, + STATE(4471), 1, + sym__as, + STATE(7877), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182105] = 3, + STATE(6143), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6059), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [182121] = 4, + ACTIONS(14130), 1, + anon_sym_QMARK, + STATE(6694), 1, + sym__quest, + ACTIONS(12847), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182139] = 4, + ACTIONS(14132), 1, + anon_sym_QMARK, + STATE(6703), 1, + sym__quest, + ACTIONS(12859), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182157] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + ACTIONS(14134), 1, + anon_sym_RPAREN, + STATE(4471), 1, + sym__as, + STATE(7437), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182179] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12521), 1, + anon_sym_LBRACE, + ACTIONS(14136), 1, + anon_sym_COLON, + STATE(8622), 1, + sym_type_constraints, + STATE(8754), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182201] = 3, + STATE(6302), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14138), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [182217] = 4, + ACTIONS(14140), 1, + anon_sym_QMARK, + STATE(6766), 1, + sym__quest, + ACTIONS(13141), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182235] = 4, + ACTIONS(14142), 1, + anon_sym_QMARK, + STATE(7018), 1, + sym__quest, + ACTIONS(13137), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182253] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13008), 1, + anon_sym_in, + ACTIONS(14144), 1, + anon_sym_QMARK, + STATE(7398), 1, + sym__quest, + STATE(10063), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182275] = 3, + STATE(5105), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14146), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [182291] = 3, + STATE(10369), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [182307] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12392), 1, + anon_sym_LBRACE, + ACTIONS(14148), 1, + anon_sym_COLON, + STATE(8624), 1, + sym_type_constraints, + STATE(8757), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182329] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12384), 1, + anon_sym_LBRACE, + ACTIONS(14150), 1, + anon_sym_COLON, + STATE(4017), 1, + sym_class_body, + STATE(8312), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182351] = 4, + ACTIONS(14152), 1, + anon_sym_QMARK, + STATE(7586), 1, + sym__quest, + ACTIONS(14122), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182369] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12513), 1, + anon_sym_LBRACE, + ACTIONS(14154), 1, + anon_sym_COLON, + STATE(8625), 1, + sym_type_constraints, + STATE(8757), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182391] = 3, + STATE(5680), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6646), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [182407] = 4, + ACTIONS(14156), 1, + anon_sym_QMARK, + STATE(7825), 1, + sym__quest, + ACTIONS(12865), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182425] = 4, + ACTIONS(14158), 1, + anon_sym_QMARK, + STATE(6730), 1, + sym__quest, + ACTIONS(12871), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182443] = 6, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5834), 1, + anon_sym_RPAREN, + ACTIONS(13462), 1, + anon_sym_DOT, + STATE(7339), 1, + aux_sym__availability_argument_repeat1, + STATE(7967), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182465] = 4, + ACTIONS(13224), 1, + anon_sym_QMARK, + STATE(6874), 1, + sym__quest, + ACTIONS(12418), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182483] = 3, + STATE(2795), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(8167), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [182499] = 4, + ACTIONS(14160), 1, + anon_sym_QMARK, + STATE(6599), 1, + sym__quest, + ACTIONS(13137), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182517] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14162), 1, + anon_sym_QMARK, + ACTIONS(14164), 1, + anon_sym_in, + STATE(6412), 1, + sym__quest, + STATE(9924), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182539] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14166), 1, + anon_sym_QMARK, + ACTIONS(14168), 1, + anon_sym_in, + STATE(6472), 1, + sym__quest, + STATE(10235), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182561] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14170), 1, + anon_sym_QMARK, + ACTIONS(14172), 1, + anon_sym_in, + STATE(8088), 1, + sym__quest, + STATE(9923), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182583] = 3, + STATE(6707), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6450), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [182599] = 4, + ACTIONS(14174), 1, + anon_sym_QMARK, + STATE(7495), 1, + sym__quest, + ACTIONS(12883), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182617] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14176), 1, + anon_sym_QMARK, + ACTIONS(14178), 1, + anon_sym_in, + STATE(8109), 1, + sym__quest, + STATE(9922), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182639] = 4, + ACTIONS(14180), 1, + anon_sym_COLON, + ACTIONS(14182), 2, + sym__eq_custom, + sym__eq_eq_custom, + STATE(4429), 2, + sym__equal_sign, + sym__eq_eq, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182657] = 3, + STATE(6003), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14126), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [182673] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14184), 1, + anon_sym_QMARK, + ACTIONS(14186), 1, + anon_sym_in, + STATE(6367), 1, + sym__quest, + STATE(9920), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182695] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5140), 6, + sym_multiline_comment, + sym__semi, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_RBRACE, + [182709] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14188), 1, + anon_sym_QMARK, + ACTIONS(14190), 1, + anon_sym_in, + STATE(7999), 1, + sym__quest, + STATE(10233), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182731] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14192), 1, + anon_sym_QMARK, + ACTIONS(14194), 1, + anon_sym_in, + STATE(6365), 1, + sym__quest, + STATE(9919), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182753] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14196), 1, + anon_sym_QMARK, + ACTIONS(14198), 1, + anon_sym_in, + STATE(7939), 1, + sym__quest, + STATE(10242), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182775] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13326), 1, + anon_sym_in, + ACTIONS(14200), 1, + anon_sym_QMARK, + STATE(7955), 1, + sym__quest, + STATE(9984), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182797] = 6, + ACTIONS(5766), 1, + anon_sym_RPAREN, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(13462), 1, + anon_sym_DOT, + STATE(7339), 1, + aux_sym__availability_argument_repeat1, + STATE(7911), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182819] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + ACTIONS(14202), 1, + anon_sym_RPAREN, + STATE(4471), 1, + sym__as, + STATE(8075), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182841] = 5, + ACTIONS(14204), 1, + sym__arrow_operator_custom, + STATE(4617), 1, + sym__arrow_operator, + STATE(9791), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182861] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14206), 1, + anon_sym_QMARK, + ACTIONS(14208), 1, + anon_sym_in, + STATE(8126), 1, + sym__quest, + STATE(9918), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182883] = 3, + STATE(10316), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [182899] = 4, + ACTIONS(11399), 1, + sym_where_keyword, + STATE(7365), 1, + sym_type_constraints, + ACTIONS(14210), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182917] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14212), 1, + anon_sym_QMARK, + ACTIONS(14214), 1, + anon_sym_in, + STATE(6927), 1, + sym__quest, + STATE(10145), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182939] = 4, + ACTIONS(11399), 1, + sym_where_keyword, + STATE(7362), 1, + sym_type_constraints, + ACTIONS(14216), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182957] = 6, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13480), 1, + sym__as_custom, + ACTIONS(14218), 1, + anon_sym_RPAREN, + STATE(4615), 1, + sym__as, + STATE(7547), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [182979] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5144), 6, + sym_multiline_comment, + sym__semi, + anon_sym_DOT, + sym__immediate_quest, + anon_sym_AMP, + anon_sym_RBRACE, + [182993] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12579), 1, + anon_sym_LBRACE, + ACTIONS(14220), 1, + anon_sym_COLON, + STATE(3952), 1, + sym_enum_class_body, + STATE(8340), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183015] = 3, + STATE(10307), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [183031] = 3, + STATE(10298), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [183047] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12388), 1, + anon_sym_LBRACE, + ACTIONS(14222), 1, + anon_sym_COLON, + STATE(8648), 1, + sym_type_constraints, + STATE(10269), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183069] = 6, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(13462), 1, + anon_sym_DOT, + ACTIONS(14224), 1, + anon_sym_RPAREN, + STATE(6653), 1, + aux_sym__availability_argument_repeat1, + STATE(7893), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183091] = 4, + ACTIONS(14226), 1, + anon_sym_QMARK, + STATE(7185), 1, + sym__quest, + ACTIONS(6348), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183109] = 5, + ACTIONS(6325), 1, + sym__as_custom, + ACTIONS(14228), 1, + anon_sym_QMARK, + STATE(8052), 1, + sym__quest, + ACTIONS(5772), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183129] = 4, + ACTIONS(14230), 1, + sym_catch_keyword, + ACTIONS(8155), 2, + sym__semi, + anon_sym_RBRACE, + STATE(6676), 2, + sym_catch_block, + aux_sym_do_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183147] = 3, + STATE(10284), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [183163] = 5, + ACTIONS(14232), 1, + sym__arrow_operator_custom, + STATE(4394), 1, + sym__arrow_operator, + STATE(9799), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183183] = 4, + ACTIONS(11399), 1, + sym_where_keyword, + STATE(7360), 1, + sym_type_constraints, + ACTIONS(14216), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183201] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14234), 1, + anon_sym_QMARK, + ACTIONS(14236), 1, + anon_sym_in, + STATE(7390), 1, + sym__quest, + STATE(9967), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183223] = 4, + ACTIONS(14238), 1, + anon_sym_QMARK, + STATE(7025), 1, + sym__quest, + ACTIONS(12923), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183241] = 4, + ACTIONS(14230), 1, + sym_catch_keyword, + ACTIONS(8135), 2, + sym__semi, + anon_sym_RBRACE, + STATE(6924), 2, + sym_catch_block, + aux_sym_do_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183259] = 4, + ACTIONS(11399), 1, + sym_where_keyword, + STATE(7371), 1, + sym_type_constraints, + ACTIONS(14210), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183277] = 5, + ACTIONS(14240), 1, + sym__arrow_operator_custom, + STATE(4659), 1, + sym__arrow_operator, + STATE(9702), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183297] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14242), 1, + anon_sym_QMARK, + ACTIONS(14244), 1, + anon_sym_in, + STATE(7993), 1, + sym__quest, + STATE(10231), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183319] = 3, + STATE(5881), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6646), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [183335] = 4, + ACTIONS(14246), 1, + anon_sym_QMARK, + STATE(7032), 1, + sym__quest, + ACTIONS(12737), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183353] = 3, + STATE(5829), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6646), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [183369] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14248), 1, + anon_sym_QMARK, + ACTIONS(14250), 1, + anon_sym_in, + STATE(6396), 1, + sym__quest, + STATE(9968), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183391] = 4, + ACTIONS(14252), 1, + anon_sym_QMARK, + STATE(7810), 1, + sym__quest, + ACTIONS(12883), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183409] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + ACTIONS(14254), 1, + anon_sym_RPAREN, + STATE(4471), 1, + sym__as, + STATE(7874), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183431] = 6, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13480), 1, + sym__as_custom, + ACTIONS(14256), 1, + anon_sym_RPAREN, + STATE(4615), 1, + sym__as, + STATE(7581), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183453] = 4, + ACTIONS(11399), 1, + sym_where_keyword, + STATE(7372), 1, + sym_type_constraints, + ACTIONS(14216), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183471] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14258), 1, + anon_sym_QMARK, + ACTIONS(14260), 1, + anon_sym_in, + STATE(6361), 1, + sym__quest, + STATE(9916), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183493] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14262), 1, + anon_sym_QMARK, + ACTIONS(14264), 1, + anon_sym_in, + STATE(6353), 1, + sym__quest, + STATE(9914), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183515] = 4, + ACTIONS(14266), 1, + anon_sym_QMARK, + STATE(6745), 1, + sym__quest, + ACTIONS(12923), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183533] = 4, + ACTIONS(14268), 1, + anon_sym_QMARK, + STATE(7801), 1, + sym__quest, + ACTIONS(12699), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183551] = 5, + ACTIONS(11818), 1, + anon_sym_DOT, + ACTIONS(14019), 1, + anon_sym_AMP, + STATE(6718), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5061), 2, + anon_sym_BANG, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183571] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5288), 5, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + anon_sym_RBRACE, + [183585] = 4, + ACTIONS(14270), 1, + anon_sym_QMARK, + STATE(6758), 1, + sym__quest, + ACTIONS(12711), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183603] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14272), 1, + anon_sym_QMARK, + ACTIONS(14274), 1, + anon_sym_in, + STATE(6933), 1, + sym__quest, + STATE(10143), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183625] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6945), 5, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [183639] = 3, + STATE(7164), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6512), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [183655] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12376), 1, + anon_sym_LBRACE, + ACTIONS(14276), 1, + anon_sym_COLON, + STATE(8642), 1, + sym_class_body, + STATE(8643), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183677] = 3, + STATE(7121), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6278), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [183693] = 3, + STATE(6697), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6492), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [183709] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + ACTIONS(14278), 1, + anon_sym_RPAREN, + STATE(4471), 1, + sym__as, + STATE(7827), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183731] = 3, + STATE(7120), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6506), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [183747] = 4, + ACTIONS(14280), 1, + anon_sym_QMARK, + STATE(6759), 1, + sym__quest, + ACTIONS(12717), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183765] = 4, + ACTIONS(11399), 1, + sym_where_keyword, + STATE(7375), 1, + sym_type_constraints, + ACTIONS(14216), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183783] = 4, + ACTIONS(14282), 1, + anon_sym_QMARK, + STATE(7591), 1, + sym__quest, + ACTIONS(12699), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183801] = 3, + STATE(6699), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6500), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [183817] = 3, + STATE(7108), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6480), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [183833] = 3, + STATE(7107), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6474), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [183849] = 3, + STATE(6700), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6272), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [183865] = 3, + STATE(6068), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6059), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [183881] = 6, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(13462), 1, + anon_sym_DOT, + ACTIONS(14284), 1, + anon_sym_RPAREN, + STATE(6733), 1, + aux_sym__availability_argument_repeat1, + STATE(7816), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183903] = 4, + ACTIONS(14286), 1, + anon_sym_QMARK, + STATE(6763), 1, + sym__quest, + ACTIONS(12723), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183921] = 3, + STATE(6702), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6468), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [183937] = 3, + STATE(7070), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6462), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [183953] = 3, + STATE(6706), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6456), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [183969] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14288), 1, + anon_sym_QMARK, + ACTIONS(14290), 1, + anon_sym_in, + STATE(6336), 1, + sym__quest, + STATE(9913), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [183991] = 3, + STATE(7133), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11389), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [184007] = 4, + ACTIONS(14019), 1, + anon_sym_AMP, + STATE(6570), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5049), 3, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184025] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14292), 1, + anon_sym_QMARK, + ACTIONS(14294), 1, + anon_sym_in, + STATE(8155), 1, + sym__quest, + STATE(9911), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184047] = 3, + STATE(6708), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6444), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [184063] = 3, + STATE(7056), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6438), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [184079] = 3, + STATE(6713), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6432), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [184095] = 3, + ACTIONS(6073), 2, + aux_sym_simple_identifier_token1, + anon_sym_self, + ACTIONS(6075), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184111] = 3, + STATE(6714), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6426), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [184127] = 4, + ACTIONS(14296), 1, + anon_sym_QMARK, + STATE(7020), 1, + sym__quest, + ACTIONS(12711), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184145] = 4, + ACTIONS(14298), 1, + anon_sym_COLON, + ACTIONS(14300), 2, + sym__eq_custom, + sym__eq_eq_custom, + STATE(4408), 2, + sym__equal_sign, + sym__eq_eq, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184163] = 3, + STATE(5980), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14138), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [184179] = 5, + ACTIONS(6348), 1, + sym__as_custom, + ACTIONS(14304), 1, + anon_sym_QMARK, + STATE(7481), 1, + sym__quest, + ACTIONS(14302), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184199] = 3, + STATE(7074), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6420), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [184215] = 4, + ACTIONS(14306), 1, + anon_sym_QMARK, + STATE(7756), 1, + sym__quest, + ACTIONS(12877), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184233] = 4, + ACTIONS(14308), 1, + anon_sym_QMARK, + STATE(7654), 1, + sym__quest, + ACTIONS(12418), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184251] = 3, + STATE(6642), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6414), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [184267] = 6, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5840), 1, + anon_sym_RPAREN, + ACTIONS(13462), 1, + anon_sym_DOT, + STATE(7339), 1, + aux_sym__availability_argument_repeat1, + STATE(7809), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184289] = 3, + STATE(6720), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6408), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [184305] = 3, + STATE(6721), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6402), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [184321] = 3, + STATE(7138), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6396), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [184337] = 3, + ACTIONS(6069), 2, + aux_sym_simple_identifier_token1, + anon_sym_self, + ACTIONS(6071), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184353] = 3, + STATE(6724), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6390), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [184369] = 3, + STATE(6729), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6384), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [184385] = 3, + STATE(6735), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6378), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [184401] = 3, + STATE(10023), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [184417] = 6, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(13462), 1, + anon_sym_DOT, + ACTIONS(14310), 1, + anon_sym_RPAREN, + STATE(6635), 1, + aux_sym__availability_argument_repeat1, + STATE(7900), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184439] = 3, + STATE(6736), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [184455] = 3, + STATE(7283), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [184471] = 4, + ACTIONS(14312), 1, + anon_sym_QMARK, + STATE(6773), 1, + sym__quest, + ACTIONS(12787), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184489] = 4, + ACTIONS(14314), 1, + anon_sym_QMARK, + STATE(7010), 1, + sym__quest, + ACTIONS(12723), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184507] = 4, + ACTIONS(14316), 1, + anon_sym_QMARK, + STATE(7598), 1, + sym__quest, + ACTIONS(12877), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184525] = 3, + STATE(5151), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14146), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [184541] = 3, + STATE(2370), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14318), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [184557] = 3, + STATE(7094), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11389), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [184573] = 3, + ACTIONS(6065), 2, + aux_sym_simple_identifier_token1, + anon_sym_self, + ACTIONS(6067), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184589] = 4, + ACTIONS(14320), 1, + anon_sym_QMARK, + STATE(6774), 1, + sym__quest, + ACTIONS(12769), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184607] = 3, + STATE(6739), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6364), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [184623] = 3, + STATE(7296), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [184639] = 3, + STATE(6744), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [184655] = 4, + ACTIONS(14322), 1, + anon_sym_COMMA, + STATE(6756), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(6900), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184673] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13422), 1, + anon_sym_in, + ACTIONS(14325), 1, + anon_sym_QMARK, + STATE(7572), 1, + sym__quest, + STATE(9841), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184695] = 4, + ACTIONS(14327), 1, + anon_sym_QMARK, + STATE(7782), 1, + sym__quest, + ACTIONS(12749), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184713] = 4, + ACTIONS(14329), 1, + anon_sym_QMARK, + STATE(7781), 1, + sym__quest, + ACTIONS(12761), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184731] = 3, + STATE(5926), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14331), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [184747] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + ACTIONS(14333), 1, + anon_sym_RPAREN, + STATE(4471), 1, + sym__as, + STATE(7642), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184769] = 4, + ACTIONS(14335), 1, + anon_sym_QMARK, + STATE(6868), 1, + sym__quest, + ACTIONS(6356), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184787] = 4, + ACTIONS(14337), 1, + anon_sym_QMARK, + STATE(6775), 1, + sym__quest, + ACTIONS(12775), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184805] = 4, + ACTIONS(11399), 1, + sym_where_keyword, + STATE(7543), 1, + sym_type_constraints, + ACTIONS(14339), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184823] = 4, + ACTIONS(12853), 1, + anon_sym_QMARK, + STATE(6597), 1, + sym__quest, + ACTIONS(12418), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184841] = 4, + ACTIONS(14341), 1, + anon_sym_QMARK, + STATE(6941), 1, + sym__quest, + ACTIONS(12675), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184859] = 4, + ACTIONS(14343), 1, + anon_sym_QMARK, + STATE(6932), 1, + sym__quest, + ACTIONS(12705), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184877] = 3, + STATE(5761), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6646), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [184893] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + ACTIONS(14345), 1, + anon_sym_RPAREN, + STATE(4471), 1, + sym__as, + STATE(7815), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184915] = 3, + STATE(6111), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14138), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [184931] = 3, + STATE(8633), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(10737), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [184947] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13745), 1, + sym__as_custom, + ACTIONS(14278), 1, + anon_sym_RPAREN, + STATE(4627), 1, + sym__as, + STATE(7827), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184969] = 4, + ACTIONS(14347), 1, + anon_sym_QMARK, + STATE(7778), 1, + sym__quest, + ACTIONS(12911), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [184987] = 4, + ACTIONS(14349), 1, + anon_sym_QMARK, + STATE(6779), 1, + sym__quest, + ACTIONS(12905), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185005] = 4, + ACTIONS(14351), 1, + anon_sym_QMARK, + STATE(7776), 1, + sym__quest, + ACTIONS(12939), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185023] = 4, + ACTIONS(14353), 1, + anon_sym_QMARK, + STATE(8047), 1, + sym__quest, + ACTIONS(12811), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185041] = 4, + ACTIONS(14355), 1, + anon_sym_QMARK, + STATE(7678), 1, + sym__quest, + ACTIONS(12761), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185059] = 4, + ACTIONS(14357), 1, + anon_sym_QMARK, + STATE(7007), 1, + sym__quest, + ACTIONS(6432), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185077] = 4, + ACTIONS(14359), 1, + anon_sym_QMARK, + STATE(7772), 1, + sym__quest, + ACTIONS(13046), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185095] = 3, + STATE(5933), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6646), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [185111] = 5, + ACTIONS(14361), 1, + sym__arrow_operator_custom, + STATE(4475), 1, + sym__arrow_operator, + STATE(9641), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185131] = 4, + ACTIONS(14363), 1, + anon_sym_QMARK, + STATE(6167), 1, + sym__quest, + ACTIONS(6356), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185149] = 4, + ACTIONS(14365), 1, + anon_sym_QMARK, + STATE(7592), 1, + sym__quest, + ACTIONS(12811), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185167] = 3, + ACTIONS(6061), 2, + aux_sym_simple_identifier_token1, + anon_sym_self, + ACTIONS(6063), 3, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185183] = 3, + STATE(6754), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [185199] = 3, + STATE(7185), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [185215] = 4, + ACTIONS(14367), 1, + anon_sym_QMARK, + STATE(6378), 1, + sym__quest, + ACTIONS(6364), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185233] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14369), 1, + anon_sym_QMARK, + ACTIONS(14371), 1, + anon_sym_in, + STATE(6719), 1, + sym__quest, + STATE(9879), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185255] = 5, + ACTIONS(6512), 1, + sym__as_custom, + ACTIONS(14375), 1, + anon_sym_QMARK, + STATE(7942), 1, + sym__quest, + ACTIONS(14373), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185275] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14377), 1, + anon_sym_QMARK, + ACTIONS(14379), 1, + anon_sym_in, + STATE(6988), 1, + sym__quest, + STATE(10125), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185297] = 3, + STATE(6049), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14126), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [185313] = 4, + ACTIONS(14381), 1, + anon_sym_COMMA, + STATE(6756), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(6882), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185331] = 3, + STATE(6148), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14126), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [185347] = 4, + ACTIONS(14383), 1, + anon_sym_QMARK, + STATE(6202), 1, + sym__quest, + ACTIONS(6331), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185365] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14385), 1, + anon_sym_QMARK, + ACTIONS(14387), 1, + anon_sym_in, + STATE(6984), 1, + sym__quest, + STATE(10127), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185387] = 4, + ACTIONS(14389), 1, + anon_sym_QMARK, + STATE(6914), 1, + sym__quest, + ACTIONS(6364), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185405] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14391), 1, + anon_sym_QMARK, + ACTIONS(14393), 1, + anon_sym_in, + STATE(6503), 1, + sym__quest, + STATE(10228), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185427] = 6, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12599), 1, + anon_sym_LBRACE, + ACTIONS(14395), 1, + sym__arrow_operator_custom, + STATE(4305), 1, + sym__arrow_operator, + STATE(10002), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185449] = 4, + ACTIONS(14397), 1, + anon_sym_QMARK, + STATE(8066), 1, + sym__quest, + ACTIONS(12867), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185467] = 4, + ACTIONS(11263), 1, + anon_sym_if, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8898), 3, + sym__else_options, + sym_if_statement, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185485] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14399), 1, + anon_sym_QMARK, + ACTIONS(14401), 1, + anon_sym_in, + STATE(6508), 1, + sym__quest, + STATE(10226), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185507] = 3, + STATE(6066), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14126), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [185523] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14403), 1, + anon_sym_QMARK, + ACTIONS(14405), 1, + anon_sym_in, + STATE(7470), 1, + sym__quest, + STATE(9971), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185545] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14407), 1, + anon_sym_QMARK, + ACTIONS(14409), 1, + anon_sym_in, + STATE(6716), 1, + sym__quest, + STATE(9882), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185567] = 4, + ACTIONS(11399), 1, + sym_where_keyword, + STATE(7530), 1, + sym_type_constraints, + ACTIONS(14411), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185585] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14413), 1, + anon_sym_QMARK, + ACTIONS(14415), 1, + anon_sym_in, + STATE(6981), 1, + sym__quest, + STATE(10129), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185607] = 5, + ACTIONS(6390), 1, + sym__as_custom, + ACTIONS(14419), 1, + anon_sym_QMARK, + STATE(6417), 1, + sym__quest, + ACTIONS(14417), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185627] = 5, + ACTIONS(6384), 1, + sym__as_custom, + ACTIONS(14423), 1, + anon_sym_QMARK, + STATE(6423), 1, + sym__quest, + ACTIONS(14421), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185647] = 4, + ACTIONS(14425), 1, + anon_sym_QMARK, + STATE(7296), 1, + sym__quest, + ACTIONS(6356), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185665] = 3, + STATE(5803), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13817), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [185681] = 4, + ACTIONS(11399), 1, + sym_where_keyword, + STATE(7525), 1, + sym_type_constraints, + ACTIONS(14411), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185699] = 5, + ACTIONS(6378), 1, + sym__as_custom, + ACTIONS(14429), 1, + anon_sym_QMARK, + STATE(6372), 1, + sym__quest, + ACTIONS(14427), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185719] = 4, + ACTIONS(14431), 1, + anon_sym_QMARK, + STATE(7936), 1, + sym__quest, + ACTIONS(13046), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185737] = 3, + STATE(5634), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6038), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [185753] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14433), 1, + anon_sym_QMARK, + ACTIONS(14435), 1, + anon_sym_in, + STATE(7977), 1, + sym__quest, + STATE(10222), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185775] = 3, + STATE(6199), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6059), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [185791] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14437), 1, + anon_sym_QMARK, + ACTIONS(14439), 1, + anon_sym_in, + STATE(6519), 1, + sym__quest, + STATE(10219), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185813] = 4, + ACTIONS(11399), 1, + sym_where_keyword, + STATE(7524), 1, + sym_type_constraints, + ACTIONS(14339), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185831] = 6, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13480), 1, + sym__as_custom, + ACTIONS(14441), 1, + anon_sym_RPAREN, + STATE(4615), 1, + sym__as, + STATE(7833), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185853] = 3, + STATE(7158), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6342), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [185869] = 4, + ACTIONS(14443), 1, + anon_sym_QMARK, + STATE(7788), 1, + sym__quest, + ACTIONS(12817), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185887] = 3, + STATE(7159), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [185903] = 3, + STATE(6786), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6249), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [185919] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14445), 1, + anon_sym_QMARK, + ACTIONS(14447), 1, + anon_sym_in, + STATE(6483), 1, + sym__quest, + STATE(10076), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185941] = 4, + ACTIONS(14381), 1, + anon_sym_COMMA, + STATE(6792), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(6910), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185959] = 6, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13480), 1, + sym__as_custom, + ACTIONS(14449), 1, + anon_sym_RPAREN, + STATE(4615), 1, + sym__as, + STATE(7737), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185981] = 4, + ACTIONS(14451), 1, + anon_sym_QMARK, + STATE(7121), 1, + sym__quest, + ACTIONS(6278), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [185999] = 6, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13480), 1, + sym__as_custom, + ACTIONS(14453), 1, + anon_sym_RPAREN, + STATE(4615), 1, + sym__as, + STATE(7610), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186021] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + ACTIONS(14455), 1, + anon_sym_RPAREN, + STATE(4471), 1, + sym__as, + STATE(7682), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186043] = 3, + STATE(6018), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14126), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [186059] = 4, + ACTIONS(14457), 1, + anon_sym_QMARK, + STATE(6386), 1, + sym__quest, + ACTIONS(6356), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186077] = 4, + ACTIONS(11399), 1, + sym_where_keyword, + STATE(7520), 1, + sym_type_constraints, + ACTIONS(14411), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186095] = 4, + ACTIONS(14459), 1, + anon_sym_QMARK, + STATE(7699), 1, + sym__quest, + ACTIONS(12877), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186113] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14461), 1, + anon_sym_QMARK, + ACTIONS(14463), 1, + anon_sym_in, + STATE(7613), 1, + sym__quest, + STATE(10132), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186135] = 6, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13480), 1, + sym__as_custom, + ACTIONS(14465), 1, + anon_sym_RPAREN, + STATE(4615), 1, + sym__as, + STATE(7984), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186157] = 5, + ACTIONS(14467), 1, + sym__dot_custom, + STATE(6589), 1, + sym__dot, + STATE(6887), 1, + aux_sym_identifier_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6861), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [186177] = 6, + ACTIONS(5856), 1, + anon_sym_COMMA, + ACTIONS(14469), 1, + anon_sym_RPAREN, + ACTIONS(14471), 1, + sym__eq_custom, + STATE(744), 1, + sym__equal_sign, + STATE(8021), 1, + aux_sym_enum_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186199] = 3, + STATE(5758), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6038), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [186215] = 4, + ACTIONS(14473), 1, + anon_sym_COLON, + ACTIONS(14475), 2, + sym__eq_custom, + sym__eq_eq_custom, + STATE(4490), 2, + sym__equal_sign, + sym__eq_eq, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186233] = 4, + ACTIONS(14477), 1, + anon_sym_QMARK, + STATE(6014), 1, + sym__quest, + ACTIONS(6325), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186251] = 4, + ACTIONS(14479), 1, + anon_sym_QMARK, + STATE(6863), 1, + sym__quest, + ACTIONS(6492), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186269] = 3, + STATE(9830), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [186285] = 4, + ACTIONS(14481), 1, + anon_sym_QMARK, + STATE(6473), 1, + sym__quest, + ACTIONS(12775), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186303] = 4, + ACTIONS(14483), 1, + anon_sym_QMARK, + STATE(8016), 1, + sym__quest, + ACTIONS(12761), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186321] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14485), 1, + anon_sym_QMARK, + ACTIONS(14487), 1, + anon_sym_in, + STATE(7485), 1, + sym__quest, + STATE(9974), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186343] = 3, + STATE(6261), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14138), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [186359] = 4, + ACTIONS(14489), 1, + anon_sym_QMARK, + STATE(7120), 1, + sym__quest, + ACTIONS(6506), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186377] = 3, + STATE(10333), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [186393] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6900), 5, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [186407] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14491), 1, + anon_sym_QMARK, + ACTIONS(14493), 1, + anon_sym_in, + STATE(6651), 1, + sym__quest, + STATE(10213), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186429] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14495), 1, + anon_sym_QMARK, + ACTIONS(14497), 1, + anon_sym_in, + STATE(7947), 1, + sym__quest, + STATE(10211), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186451] = 6, + ACTIONS(5856), 1, + anon_sym_COMMA, + ACTIONS(14499), 1, + anon_sym_RPAREN, + ACTIONS(14501), 1, + sym__eq_custom, + STATE(836), 1, + sym__equal_sign, + STATE(7560), 1, + aux_sym_enum_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186473] = 4, + ACTIONS(14503), 1, + anon_sym_COLON, + ACTIONS(14505), 2, + sym__eq_custom, + sym__eq_eq_custom, + STATE(4496), 2, + sym__equal_sign, + sym__eq_eq, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186491] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + ACTIONS(14507), 1, + anon_sym_RPAREN, + STATE(4471), 1, + sym__as, + STATE(7404), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186513] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14509), 1, + anon_sym_QMARK, + ACTIONS(14511), 1, + anon_sym_in, + STATE(6477), 1, + sym__quest, + STATE(9903), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186535] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12991), 1, + anon_sym_in, + ACTIONS(14513), 1, + anon_sym_QMARK, + STATE(7552), 1, + sym__quest, + STATE(10077), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186557] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14515), 1, + anon_sym_QMARK, + ACTIONS(14517), 1, + anon_sym_in, + STATE(6489), 1, + sym__quest, + STATE(9902), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186579] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14519), 1, + anon_sym_QMARK, + ACTIONS(14521), 1, + anon_sym_in, + STATE(6967), 1, + sym__quest, + STATE(10134), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186601] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14523), 1, + anon_sym_QMARK, + ACTIONS(14525), 1, + anon_sym_in, + STATE(6956), 1, + sym__quest, + STATE(10136), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186623] = 4, + ACTIONS(14527), 1, + anon_sym_QMARK, + STATE(7748), 1, + sym__quest, + ACTIONS(12939), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186641] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14529), 1, + anon_sym_QMARK, + ACTIONS(14531), 1, + anon_sym_in, + STATE(6596), 1, + sym__quest, + STATE(10208), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186663] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14533), 1, + anon_sym_QMARK, + ACTIONS(14535), 1, + anon_sym_in, + STATE(7872), 1, + sym__quest, + STATE(10051), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186685] = 4, + ACTIONS(14537), 1, + anon_sym_QMARK, + STATE(7164), 1, + sym__quest, + ACTIONS(6512), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186703] = 3, + STATE(6162), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14138), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [186719] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14539), 1, + anon_sym_QMARK, + ACTIONS(14541), 1, + anon_sym_in, + STATE(6498), 1, + sym__quest, + STATE(9897), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186741] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6941), 5, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [186755] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14543), 1, + anon_sym_QMARK, + ACTIONS(14545), 1, + anon_sym_in, + STATE(7918), 1, + sym__quest, + STATE(10206), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186777] = 4, + ACTIONS(14547), 1, + anon_sym_QMARK, + STATE(5971), 1, + sym__quest, + ACTIONS(6370), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186795] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14549), 1, + anon_sym_QMARK, + ACTIONS(14551), 1, + anon_sym_in, + STATE(7914), 1, + sym__quest, + STATE(10204), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186817] = 3, + STATE(5796), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6646), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [186833] = 3, + STATE(5794), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6646), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [186849] = 5, + ACTIONS(14553), 1, + sym__arrow_operator_custom, + STATE(4458), 1, + sym__arrow_operator, + STATE(8611), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186869] = 3, + STATE(5786), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6646), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [186885] = 4, + ACTIONS(14555), 1, + anon_sym_QMARK, + STATE(7864), 1, + sym__quest, + ACTIONS(12957), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186903] = 5, + ACTIONS(11818), 1, + anon_sym_DOT, + ACTIONS(14019), 1, + anon_sym_AMP, + STATE(6718), 1, + aux_sym_protocol_composition_type_repeat1, + ACTIONS(5041), 2, + anon_sym_BANG, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186923] = 5, + ACTIONS(14557), 1, + sym__arrow_operator_custom, + STATE(4585), 1, + sym__arrow_operator, + STATE(9551), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186943] = 6, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13480), 1, + sym__as_custom, + ACTIONS(14559), 1, + anon_sym_RPAREN, + STATE(4615), 1, + sym__as, + STATE(7882), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186965] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14561), 1, + anon_sym_QMARK, + ACTIONS(14563), 1, + anon_sym_in, + STATE(6640), 1, + sym__quest, + STATE(10201), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [186987] = 3, + STATE(6149), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14138), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [187003] = 4, + ACTIONS(11399), 1, + sym_where_keyword, + STATE(7519), 1, + sym_type_constraints, + ACTIONS(14411), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187021] = 4, + ACTIONS(14565), 1, + anon_sym_QMARK, + STATE(6957), 1, + sym__quest, + ACTIONS(6370), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187039] = 3, + STATE(5906), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6646), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [187055] = 3, + STATE(6196), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14138), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [187071] = 3, + STATE(7227), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6331), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [187087] = 4, + ACTIONS(14567), 1, + anon_sym_QMARK, + STATE(7056), 1, + sym__quest, + ACTIONS(6438), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187105] = 3, + STATE(2373), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14318), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [187121] = 5, + ACTIONS(14467), 1, + sym__dot_custom, + STATE(6398), 1, + aux_sym_identifier_repeat1, + STATE(6589), 1, + sym__dot, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6914), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [187141] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14569), 1, + anon_sym_QMARK, + ACTIONS(14571), 1, + anon_sym_in, + STATE(6649), 1, + sym__quest, + STATE(10199), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187163] = 3, + STATE(6191), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14138), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [187179] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14573), 1, + anon_sym_QMARK, + ACTIONS(14575), 1, + anon_sym_in, + STATE(6679), 1, + sym__quest, + STATE(10197), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187201] = 3, + STATE(5686), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6646), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [187217] = 3, + STATE(6090), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14138), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [187233] = 4, + ACTIONS(14577), 1, + anon_sym_QMARK, + STATE(6813), 1, + sym__quest, + ACTIONS(12905), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187251] = 4, + ACTIONS(14579), 1, + anon_sym_QMARK, + STATE(6705), 1, + sym__quest, + ACTIONS(12841), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187269] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6967), 5, + sym__semi, + sym__eq_custom, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [187283] = 3, + STATE(5787), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14331), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [187299] = 5, + ACTIONS(14581), 1, + sym__arrow_operator_custom, + STATE(4652), 1, + sym__arrow_operator, + STATE(9677), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187319] = 4, + ACTIONS(14583), 1, + anon_sym_QMARK, + STATE(6065), 1, + sym__quest, + ACTIONS(6512), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187337] = 5, + ACTIONS(14585), 1, + sym__arrow_operator_custom, + STATE(4609), 1, + sym__arrow_operator, + STATE(9230), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187357] = 5, + ACTIONS(14587), 1, + sym__arrow_operator_custom, + STATE(4468), 1, + sym__arrow_operator, + STATE(9807), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187377] = 5, + ACTIONS(14589), 1, + sym__arrow_operator_custom, + STATE(4386), 1, + sym__arrow_operator, + STATE(9813), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187397] = 4, + ACTIONS(14591), 1, + anon_sym_QMARK, + STATE(7729), 1, + sym__quest, + ACTIONS(12911), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187415] = 6, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13480), 1, + sym__as_custom, + ACTIONS(14593), 1, + anon_sym_RPAREN, + STATE(4615), 1, + sym__as, + STATE(7697), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187437] = 4, + ACTIONS(14595), 1, + anon_sym_QMARK, + STATE(7959), 1, + sym__quest, + ACTIONS(12749), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187455] = 4, + ACTIONS(14597), 1, + anon_sym_QMARK, + STATE(6463), 1, + sym__quest, + ACTIONS(13141), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187473] = 4, + ACTIONS(14599), 1, + anon_sym_QMARK, + STATE(6983), 1, + sym__quest, + ACTIONS(6450), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187491] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14601), 1, + anon_sym_QMARK, + ACTIONS(14603), 1, + anon_sym_in, + STATE(7640), 1, + sym__quest, + STATE(10139), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187513] = 4, + ACTIONS(13679), 1, + sym__three_dot_operator_custom, + STATE(8071), 1, + sym__three_dot_operator, + ACTIONS(14605), 3, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187531] = 3, + STATE(5815), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6646), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [187547] = 4, + ACTIONS(14607), 1, + anon_sym_QMARK, + STATE(7722), 1, + sym__quest, + ACTIONS(12867), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187565] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + ACTIONS(14609), 1, + anon_sym_RPAREN, + STATE(4471), 1, + sym__as, + STATE(7635), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187587] = 4, + ACTIONS(14611), 1, + anon_sym_QMARK, + STATE(6545), 1, + sym__quest, + ACTIONS(12769), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187605] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14613), 1, + anon_sym_QMARK, + ACTIONS(14615), 1, + anon_sym_in, + STATE(7779), 1, + sym__quest, + STATE(10195), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187627] = 4, + ACTIONS(14617), 1, + anon_sym_QMARK, + STATE(7000), 1, + sym__quest, + ACTIONS(6384), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187645] = 5, + ACTIONS(6249), 1, + sym__as_custom, + ACTIONS(14619), 1, + anon_sym_QMARK, + STATE(7535), 1, + sym__quest, + ACTIONS(13316), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187665] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14621), 1, + anon_sym_QMARK, + ACTIONS(14623), 1, + anon_sym_in, + STATE(6801), 1, + sym__quest, + STATE(10192), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187687] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14625), 1, + anon_sym_QMARK, + ACTIONS(14627), 1, + anon_sym_in, + STATE(6991), 1, + sym__quest, + STATE(10190), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187709] = 5, + ACTIONS(6342), 1, + sym__as_custom, + ACTIONS(14631), 1, + anon_sym_QMARK, + STATE(7589), 1, + sym__quest, + ACTIONS(14629), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187729] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14633), 1, + anon_sym_QMARK, + ACTIONS(14635), 1, + anon_sym_in, + STATE(6815), 1, + sym__quest, + STATE(10188), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187751] = 4, + ACTIONS(14637), 1, + anon_sym_QMARK, + STATE(7003), 1, + sym__quest, + ACTIONS(6390), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187769] = 5, + ACTIONS(14639), 1, + sym__arrow_operator_custom, + STATE(4417), 1, + sym__arrow_operator, + STATE(9819), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187789] = 4, + ACTIONS(14641), 1, + anon_sym_QMARK, + STATE(6548), 1, + sym__quest, + ACTIONS(12787), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187807] = 6, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(13462), 1, + anon_sym_DOT, + ACTIONS(14643), 1, + anon_sym_RPAREN, + STATE(6962), 1, + aux_sym__availability_argument_repeat1, + STATE(7621), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187829] = 4, + ACTIONS(14645), 1, + sym_catch_keyword, + ACTIONS(8141), 2, + sym__semi, + anon_sym_RBRACE, + STATE(6924), 2, + sym_catch_block, + aux_sym_do_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187847] = 4, + ACTIONS(14648), 1, + anon_sym_COLON, + ACTIONS(14650), 2, + sym__eq_custom, + sym__eq_eq_custom, + STATE(4564), 2, + sym__equal_sign, + sym__eq_eq, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187865] = 3, + STATE(7193), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11389), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [187881] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14652), 1, + anon_sym_QMARK, + ACTIONS(14654), 1, + anon_sym_in, + STATE(6312), 1, + sym__quest, + STATE(10183), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187903] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14656), 1, + anon_sym_QMARK, + ACTIONS(14658), 1, + anon_sym_in, + STATE(7951), 1, + sym__quest, + STATE(9893), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187925] = 4, + STATE(6549), 1, + aux_sym__inheritance_specifiers_repeat1, + ACTIONS(14037), 2, + anon_sym_COMMA, + anon_sym_AMP, + ACTIONS(14660), 2, + sym_where_keyword, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187943] = 5, + ACTIONS(14662), 1, + sym__arrow_operator_custom, + STATE(4569), 1, + sym__arrow_operator, + STATE(9558), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187963] = 6, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13480), 1, + sym__as_custom, + ACTIONS(14664), 1, + anon_sym_RPAREN, + STATE(4615), 1, + sym__as, + STATE(7673), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [187985] = 4, + ACTIONS(14666), 1, + anon_sym_QMARK, + STATE(6833), 1, + sym__quest, + ACTIONS(12871), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188003] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14668), 1, + anon_sym_QMARK, + ACTIONS(14670), 1, + anon_sym_in, + STATE(7713), 1, + sym__quest, + STATE(10181), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188025] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 5, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_QMARK, + [188039] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14672), 1, + anon_sym_QMARK, + ACTIONS(14674), 1, + anon_sym_in, + STATE(7692), 1, + sym__quest, + STATE(10179), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188061] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14676), 1, + anon_sym_QMARK, + ACTIONS(14678), 1, + anon_sym_in, + STATE(6689), 1, + sym__quest, + STATE(9883), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188083] = 4, + ACTIONS(14680), 1, + anon_sym_COLON, + ACTIONS(14682), 2, + sym__eq_custom, + sym__eq_eq_custom, + STATE(4389), 2, + sym__equal_sign, + sym__eq_eq, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188101] = 5, + ACTIONS(14684), 1, + sym__arrow_operator_custom, + STATE(4544), 1, + sym__arrow_operator, + STATE(9674), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188121] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14686), 1, + anon_sym_QMARK, + ACTIONS(14688), 1, + anon_sym_in, + STATE(6639), 1, + sym__quest, + STATE(9891), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188143] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14690), 1, + anon_sym_QMARK, + ACTIONS(14692), 1, + anon_sym_in, + STATE(6641), 1, + sym__quest, + STATE(9890), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188165] = 4, + ACTIONS(14694), 1, + anon_sym_QMARK, + STATE(7364), 1, + sym__quest, + ACTIONS(12865), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188183] = 4, + ACTIONS(14696), 1, + anon_sym_QMARK, + STATE(6972), 1, + sym__quest, + ACTIONS(6456), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188201] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14698), 1, + anon_sym_QMARK, + ACTIONS(14700), 1, + anon_sym_in, + STATE(6644), 1, + sym__quest, + STATE(9888), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188223] = 4, + ACTIONS(14702), 1, + anon_sym_QMARK, + STATE(6319), 1, + sym__quest, + ACTIONS(12859), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188241] = 5, + ACTIONS(14704), 1, + sym__arrow_operator_custom, + STATE(4593), 1, + sym__arrow_operator, + STATE(9825), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188261] = 4, + ACTIONS(14706), 1, + anon_sym_COLON, + ACTIONS(14708), 2, + sym__eq_custom, + sym__eq_eq_custom, + STATE(4574), 2, + sym__equal_sign, + sym__eq_eq, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188279] = 4, + ACTIONS(13679), 1, + sym__three_dot_operator_custom, + STATE(7521), 1, + sym__three_dot_operator, + ACTIONS(14710), 3, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188297] = 5, + ACTIONS(14712), 1, + sym__arrow_operator_custom, + STATE(4582), 1, + sym__arrow_operator, + STATE(9585), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188317] = 5, + ACTIONS(14714), 1, + sym__arrow_operator_custom, + STATE(4528), 1, + sym__arrow_operator, + STATE(9802), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188337] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14716), 1, + anon_sym_QMARK, + ACTIONS(14718), 1, + anon_sym_in, + STATE(7814), 1, + sym__quest, + STATE(9887), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188359] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14720), 1, + anon_sym_QMARK, + ACTIONS(14722), 1, + anon_sym_in, + STATE(6333), 1, + sym__quest, + STATE(10085), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188381] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14724), 1, + anon_sym_QMARK, + ACTIONS(14726), 1, + anon_sym_in, + STATE(6850), 1, + sym__quest, + STATE(10176), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188403] = 5, + ACTIONS(14728), 1, + sym__arrow_operator_custom, + STATE(4503), 1, + sym__arrow_operator, + STATE(9793), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188423] = 3, + STATE(2387), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11389), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [188439] = 5, + ACTIONS(14730), 1, + sym__arrow_operator_custom, + STATE(4606), 1, + sym__arrow_operator, + STATE(9587), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188459] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14732), 1, + anon_sym_QMARK, + ACTIONS(14734), 1, + anon_sym_in, + STATE(6851), 1, + sym__quest, + STATE(10174), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188481] = 4, + ACTIONS(14736), 1, + anon_sym_QMARK, + STATE(6299), 1, + sym__quest, + ACTIONS(6396), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188499] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14738), 1, + anon_sym_QMARK, + ACTIONS(14740), 1, + anon_sym_in, + STATE(7627), 1, + sym__quest, + STATE(10030), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188521] = 5, + ACTIONS(14742), 1, + sym__arrow_operator_custom, + STATE(4613), 1, + sym__arrow_operator, + STATE(9605), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188541] = 4, + ACTIONS(14744), 1, + anon_sym_QMARK, + STATE(7517), 1, + sym__quest, + ACTIONS(12743), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188559] = 4, + ACTIONS(14746), 1, + anon_sym_QMARK, + STATE(6643), 1, + sym__quest, + ACTIONS(12743), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188577] = 6, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5904), 1, + anon_sym_RPAREN, + ACTIONS(13462), 1, + anon_sym_DOT, + STATE(7339), 1, + aux_sym__availability_argument_repeat1, + STATE(7616), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188599] = 6, + ACTIONS(13476), 1, + anon_sym_RPAREN, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13831), 1, + sym__as_custom, + STATE(4658), 1, + sym__as, + STATE(7391), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188621] = 3, + STATE(5999), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14138), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [188637] = 4, + ACTIONS(14748), 1, + anon_sym_QMARK, + STATE(7511), 1, + sym__quest, + ACTIONS(13620), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188655] = 4, + ACTIONS(14750), 1, + anon_sym_QMARK, + STATE(6613), 1, + sym__quest, + ACTIONS(13624), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188673] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14752), 1, + anon_sym_QMARK, + ACTIONS(14754), 1, + anon_sym_in, + STATE(7684), 1, + sym__quest, + STATE(10172), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188695] = 4, + ACTIONS(14756), 1, + anon_sym_COLON, + ACTIONS(14758), 2, + sym__eq_custom, + sym__eq_eq_custom, + STATE(4525), 2, + sym__equal_sign, + sym__eq_eq, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188713] = 4, + ACTIONS(11263), 1, + anon_sym_if, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8699), 3, + sym__else_options, + sym_if_statement, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188731] = 4, + ACTIONS(14760), 1, + anon_sym_QMARK, + STATE(7048), 1, + sym__quest, + ACTIONS(6402), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188749] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14762), 1, + anon_sym_QMARK, + ACTIONS(14764), 1, + anon_sym_in, + STATE(6935), 1, + sym__quest, + STATE(10141), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188771] = 4, + ACTIONS(14766), 1, + anon_sym_QMARK, + STATE(6827), 1, + sym__quest, + ACTIONS(6500), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188789] = 6, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13480), 1, + sym__as_custom, + ACTIONS(14768), 1, + anon_sym_RPAREN, + STATE(4615), 1, + sym__as, + STATE(7656), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188811] = 4, + ACTIONS(14770), 1, + anon_sym_QMARK, + STATE(7070), 1, + sym__quest, + ACTIONS(6462), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188829] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14772), 1, + anon_sym_QMARK, + ACTIONS(14774), 1, + anon_sym_in, + STATE(7876), 1, + sym__quest, + STATE(9884), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188851] = 3, + STATE(6120), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14138), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [188867] = 4, + ACTIONS(14776), 1, + anon_sym_QMARK, + STATE(7047), 1, + sym__quest, + ACTIONS(6408), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188885] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14778), 1, + anon_sym_QMARK, + ACTIONS(14780), 1, + anon_sym_in, + STATE(6862), 1, + sym__quest, + STATE(10032), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188907] = 6, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13480), 1, + sym__as_custom, + ACTIONS(14782), 1, + anon_sym_RPAREN, + STATE(4615), 1, + sym__as, + STATE(7637), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188929] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14784), 1, + anon_sym_QMARK, + ACTIONS(14786), 1, + anon_sym_in, + STATE(6861), 1, + sym__quest, + STATE(10169), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188951] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14788), 1, + anon_sym_QMARK, + ACTIONS(14790), 1, + anon_sym_in, + STATE(6867), 1, + sym__quest, + STATE(10167), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [188973] = 3, + STATE(7267), 1, + sym__quest, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6325), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [188989] = 4, + ACTIONS(14792), 1, + anon_sym_QMARK, + STATE(7108), 1, + sym__quest, + ACTIONS(6480), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189007] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14794), 1, + anon_sym_QMARK, + ACTIONS(14796), 1, + anon_sym_in, + STATE(6869), 1, + sym__quest, + STATE(10165), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189029] = 5, + ACTIONS(14798), 1, + sym__arrow_operator_custom, + STATE(4622), 1, + sym__arrow_operator, + STATE(9614), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189049] = 4, + ACTIONS(14800), 1, + anon_sym_QMARK, + STATE(7107), 1, + sym__quest, + ACTIONS(6474), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189067] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11730), 5, + sym__semi, + sym__arrow_operator_custom, + sym_where_keyword, + anon_sym_LBRACE, + anon_sym_RBRACE, + [189081] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14802), 1, + anon_sym_QMARK, + ACTIONS(14804), 1, + anon_sym_in, + STATE(7671), 1, + sym__quest, + STATE(10163), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189103] = 5, + ACTIONS(14806), 1, + sym__arrow_operator_custom, + STATE(4637), 1, + sym__arrow_operator, + STATE(9621), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189123] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14808), 1, + anon_sym_QMARK, + ACTIONS(14810), 1, + anon_sym_in, + STATE(6656), 1, + sym__quest, + STATE(9885), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189145] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14812), 1, + anon_sym_QMARK, + ACTIONS(14814), 1, + anon_sym_in, + STATE(6511), 1, + sym__quest, + STATE(10224), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189167] = 4, + ACTIONS(14816), 1, + anon_sym_QMARK, + STATE(7045), 1, + sym__quest, + ACTIONS(6414), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189185] = 5, + ACTIONS(6278), 1, + sym__as_custom, + ACTIONS(14820), 1, + anon_sym_QMARK, + STATE(7770), 1, + sym__quest, + ACTIONS(14818), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189205] = 6, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(13462), 1, + anon_sym_DOT, + ACTIONS(14822), 1, + anon_sym_RPAREN, + STATE(6475), 1, + aux_sym__availability_argument_repeat1, + STATE(8065), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189227] = 6, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(13480), 1, + sym__as_custom, + ACTIONS(14824), 1, + anon_sym_RPAREN, + STATE(4615), 1, + sym__as, + STATE(7651), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189249] = 5, + ACTIONS(6492), 1, + sym__as_custom, + ACTIONS(14828), 1, + anon_sym_QMARK, + STATE(6789), 1, + sym__quest, + ACTIONS(14826), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189269] = 5, + ACTIONS(6506), 1, + sym__as_custom, + ACTIONS(14832), 1, + anon_sym_QMARK, + STATE(7769), 1, + sym__quest, + ACTIONS(14830), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189289] = 6, + ACTIONS(5344), 1, + anon_sym_func, + ACTIONS(5350), 1, + anon_sym_init, + STATE(7095), 1, + sym__constructor_function_decl, + STATE(7096), 1, + sym__non_constructor_function_decl, + STATE(7978), 1, + sym__modifierless_function_declaration_no_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189311] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12727), 1, + anon_sym_in, + ACTIONS(14834), 1, + anon_sym_QMARK, + STATE(7384), 1, + sym__quest, + STATE(9851), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189333] = 4, + ACTIONS(14836), 1, + anon_sym_QMARK, + STATE(6269), 1, + sym__quest, + ACTIONS(6420), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189351] = 6, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + sym__as_custom, + ACTIONS(14838), 1, + anon_sym_RPAREN, + STATE(4471), 1, + sym__as, + STATE(8024), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189373] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14840), 1, + anon_sym_QMARK, + ACTIONS(14842), 1, + anon_sym_in, + STATE(6888), 1, + sym__quest, + STATE(10160), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189395] = 4, + ACTIONS(14844), 1, + anon_sym_QMARK, + STATE(7042), 1, + sym__quest, + ACTIONS(6426), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189413] = 4, + ACTIONS(14846), 1, + anon_sym_QMARK, + STATE(6841), 1, + sym__quest, + ACTIONS(6272), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189431] = 4, + ACTIONS(14848), 1, + anon_sym_QMARK, + STATE(7558), 1, + sym__quest, + ACTIONS(12691), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189449] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14850), 1, + anon_sym_QMARK, + ACTIONS(14852), 1, + anon_sym_in, + STATE(6454), 1, + sym__quest, + STATE(10079), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189471] = 4, + ACTIONS(14854), 1, + anon_sym_QMARK, + STATE(6847), 1, + sym__quest, + ACTIONS(6468), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189489] = 6, + ACTIONS(14856), 1, + anon_sym_COLON, + ACTIONS(14858), 1, + sym__eq_custom, + ACTIONS(14860), 1, + sym__as_custom, + STATE(4409), 1, + sym__as, + STATE(10321), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189511] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14862), 1, + anon_sym_QMARK, + ACTIONS(14864), 1, + anon_sym_in, + STATE(6500), 1, + sym__quest, + STATE(9845), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189533] = 4, + ACTIONS(14866), 1, + anon_sym_QMARK, + STATE(6860), 1, + sym__quest, + ACTIONS(12775), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189551] = 5, + ACTIONS(14868), 1, + sym__arrow_operator_custom, + STATE(4643), 1, + sym__arrow_operator, + STATE(9667), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189571] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 6, + sym_multiline_comment, + sym__semi, + sym__eq_custom, + sym_where_keyword, + anon_sym_COLON, + anon_sym_RBRACE, + [189585] = 5, + ACTIONS(14870), 1, + sym__arrow_operator_custom, + STATE(4646), 1, + sym__arrow_operator, + STATE(9693), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189605] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14872), 1, + anon_sym_QMARK, + ACTIONS(14874), 1, + anon_sym_in, + STATE(7744), 1, + sym__quest, + STATE(10035), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189627] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14876), 1, + anon_sym_QMARK, + ACTIONS(14878), 1, + anon_sym_in, + STATE(6401), 1, + sym__quest, + STATE(10083), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189649] = 5, + ACTIONS(14880), 1, + sym__arrow_operator_custom, + STATE(4655), 1, + sym__arrow_operator, + STATE(9724), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189669] = 4, + ACTIONS(14882), 1, + anon_sym_QMARK, + STATE(6986), 1, + sym__quest, + ACTIONS(6444), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189687] = 4, + ACTIONS(14884), 1, + anon_sym_QMARK, + STATE(7650), 1, + sym__quest, + ACTIONS(12671), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189705] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14886), 1, + anon_sym_QMARK, + ACTIONS(14888), 1, + anon_sym_in, + STATE(6446), 1, + sym__quest, + STATE(9847), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189727] = 4, + ACTIONS(14890), 1, + anon_sym_QMARK, + STATE(7677), 1, + sym__quest, + ACTIONS(12749), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189745] = 3, + STATE(10013), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4747), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [189761] = 4, + ACTIONS(14892), 1, + anon_sym_QMARK, + STATE(6567), 1, + sym__quest, + ACTIONS(12957), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189779] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14894), 1, + anon_sym_QMARK, + ACTIONS(14896), 1, + anon_sym_in, + STATE(6650), 1, + sym__quest, + STATE(9886), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189801] = 4, + ACTIONS(14898), 1, + anon_sym_QMARK, + STATE(6893), 1, + sym__quest, + ACTIONS(12769), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189819] = 4, + ACTIONS(14900), 1, + anon_sym_QMARK, + STATE(6902), 1, + sym__quest, + ACTIONS(12787), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189837] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14902), 1, + anon_sym_QMARK, + ACTIONS(14904), 1, + anon_sym_in, + STATE(6421), 1, + sym__quest, + STATE(9849), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189859] = 6, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14906), 1, + anon_sym_QMARK, + ACTIONS(14908), 1, + anon_sym_in, + STATE(6413), 1, + sym__quest, + STATE(9850), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189881] = 3, + STATE(6275), 1, + sym_simple_identifier, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14138), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [189897] = 5, + ACTIONS(14910), 1, + sym__arrow_operator_custom, + STATE(4598), 1, + sym__arrow_operator, + STATE(9751), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189917] = 5, + ACTIONS(14912), 1, + sym__arrow_operator_custom, + STATE(4576), 1, + sym__arrow_operator, + STATE(9777), 1, + sym_throws, + ACTIONS(4741), 2, + sym__throws_keyword, + sym__rethrows_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189937] = 4, + ACTIONS(14914), 1, + anon_sym_COLON, + ACTIONS(14916), 2, + sym__eq_custom, + sym__eq_eq_custom, + STATE(4584), 2, + sym__equal_sign, + sym__eq_eq, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189955] = 4, + ACTIONS(14918), 1, + anon_sym_QMARK, + STATE(6408), 1, + sym__quest, + ACTIONS(12841), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189973] = 4, + ACTIONS(14920), 1, + anon_sym_QMARK, + STATE(6970), 1, + sym__quest, + ACTIONS(6378), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [189991] = 4, + ACTIONS(14922), 1, + anon_sym_QMARK, + STATE(6083), 1, + sym__quest, + ACTIONS(6278), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190009] = 4, + ACTIONS(14924), 1, + anon_sym_QMARK, + STATE(6898), 1, + sym__quest, + ACTIONS(6492), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190027] = 4, + ACTIONS(14926), 1, + anon_sym_QMARK, + STATE(6091), 1, + sym__quest, + ACTIONS(6506), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190045] = 4, + ACTIONS(14928), 1, + anon_sym_QMARK, + STATE(7034), 1, + sym__quest, + ACTIONS(6500), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190063] = 4, + ACTIONS(14930), 1, + anon_sym_QMARK, + STATE(6112), 1, + sym__quest, + ACTIONS(6480), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190081] = 4, + ACTIONS(14932), 1, + anon_sym_QMARK, + STATE(6113), 1, + sym__quest, + ACTIONS(6474), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190099] = 4, + ACTIONS(14934), 1, + anon_sym_QMARK, + STATE(7035), 1, + sym__quest, + ACTIONS(6272), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190117] = 4, + ACTIONS(14936), 1, + anon_sym_QMARK, + STATE(7036), 1, + sym__quest, + ACTIONS(6468), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190135] = 4, + ACTIONS(14938), 1, + anon_sym_QMARK, + STATE(6146), 1, + sym__quest, + ACTIONS(6462), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190153] = 4, + ACTIONS(14940), 1, + anon_sym_QMARK, + STATE(6407), 1, + sym__quest, + ACTIONS(12847), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190171] = 4, + ACTIONS(14942), 1, + anon_sym_QMARK, + STATE(7037), 1, + sym__quest, + ACTIONS(6456), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190189] = 4, + ACTIONS(14944), 1, + anon_sym_QMARK, + STATE(7038), 1, + sym__quest, + ACTIONS(6450), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190207] = 4, + ACTIONS(14946), 1, + anon_sym_QMARK, + STATE(6910), 1, + sym__quest, + ACTIONS(12701), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190225] = 4, + ACTIONS(14948), 1, + anon_sym_QMARK, + STATE(7039), 1, + sym__quest, + ACTIONS(6444), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190243] = 4, + ACTIONS(14950), 1, + anon_sym_QMARK, + STATE(6181), 1, + sym__quest, + ACTIONS(6438), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190261] = 4, + ACTIONS(14952), 1, + anon_sym_QMARK, + STATE(7041), 1, + sym__quest, + ACTIONS(6432), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190279] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5136), 5, + sym_multiline_comment, + sym__semi, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_RBRACE, + [190292] = 4, + ACTIONS(14954), 1, + sym__eq_custom, + STATE(4465), 1, + sym__equal_sign, + ACTIONS(7117), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190309] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12727), 1, + anon_sym_in, + ACTIONS(12729), 1, + sym__as_custom, + STATE(9851), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190328] = 4, + ACTIONS(13520), 1, + sym__as_custom, + STATE(4471), 1, + sym__as, + ACTIONS(14956), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190345] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12388), 1, + anon_sym_LBRACE, + STATE(9229), 1, + sym_type_constraints, + STATE(10027), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190364] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12743), 1, + sym__as_custom, + ACTIONS(13012), 1, + anon_sym_in, + STATE(9842), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190383] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6696), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [190396] = 3, + ACTIONS(14960), 1, + sym__as_custom, + ACTIONS(14958), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190411] = 3, + ACTIONS(14964), 1, + sym__as_custom, + ACTIONS(14962), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190426] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(13026), 1, + anon_sym_LBRACE, + STATE(9214), 1, + sym_protocol_property_requirements, + STATE(9215), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190445] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12883), 1, + sym__as_custom, + ACTIONS(13366), 1, + anon_sym_in, + STATE(9839), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190464] = 3, + ACTIONS(14968), 1, + sym__as_custom, + ACTIONS(14966), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190479] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12380), 1, + anon_sym_LBRACE, + STATE(9131), 1, + sym_enum_class_body, + STATE(9190), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190498] = 3, + ACTIONS(12957), 1, + sym__as_custom, + ACTIONS(13166), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190513] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 4, + sym__dot_custom, + sym__eq_custom, + sym__eq_eq_custom, + anon_sym_COLON, + [190526] = 5, + ACTIONS(14970), 1, + anon_sym_LPAREN, + ACTIONS(14972), 1, + anon_sym_LT, + STATE(5962), 1, + sym__function_value_parameters, + STATE(9295), 1, + sym_type_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190545] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7105), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190562] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7109), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190579] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12743), 1, + sym__as_custom, + ACTIONS(13306), 1, + anon_sym_in, + STATE(10072), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190598] = 3, + ACTIONS(12445), 1, + sym__as_custom, + ACTIONS(1187), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190613] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6700), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [190626] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12376), 1, + anon_sym_LBRACE, + STATE(9131), 1, + sym_class_body, + STATE(9184), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190645] = 4, + ACTIONS(14976), 1, + anon_sym_COMMA, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(14974), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190662] = 4, + ACTIONS(13462), 1, + anon_sym_DOT, + STATE(7165), 1, + aux_sym__availability_argument_repeat1, + ACTIONS(14979), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190679] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6674), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [190692] = 5, + ACTIONS(14970), 1, + anon_sym_LPAREN, + ACTIONS(14972), 1, + anon_sym_LT, + STATE(5965), 1, + sym__function_value_parameters, + STATE(9177), 1, + sym_type_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190711] = 5, + ACTIONS(14970), 1, + anon_sym_LPAREN, + ACTIONS(14972), 1, + anon_sym_LT, + STATE(6043), 1, + sym__function_value_parameters, + STATE(9270), 1, + sym_type_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190730] = 5, + ACTIONS(5533), 1, + anon_sym_RBRACE, + STATE(1377), 1, + sym__class_member_separator, + STATE(7241), 1, + aux_sym__class_member_declarations_repeat1, + ACTIONS(14981), 2, + sym_multiline_comment, + sym__semi, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + [190749] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(14983), 4, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_AMP, + anon_sym_LBRACE, + [190762] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 4, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_in, + [190775] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14985), 1, + anon_sym_in, + ACTIONS(14987), 1, + sym__as_custom, + STATE(10186), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190794] = 4, + ACTIONS(14989), 1, + anon_sym_COMMA, + STATE(7213), 1, + aux_sym_if_statement_repeat1, + ACTIONS(8189), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190811] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14968), 1, + sym__as_custom, + ACTIONS(14991), 1, + anon_sym_in, + STATE(9993), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190830] = 4, + ACTIONS(14995), 1, + anon_sym_QMARK, + STATE(7136), 1, + sym__quest, + ACTIONS(14993), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190847] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7113), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190864] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7179), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [190881] = 5, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + STATE(9713), 1, + sym_computed_property, + STATE(9715), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190900] = 4, + ACTIONS(5908), 1, + anon_sym_LBRACK, + ACTIONS(14997), 1, + anon_sym_AT, + STATE(7087), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190917] = 5, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + STATE(9709), 1, + sym_computed_property, + STATE(9710), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190936] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12881), 1, + anon_sym_in, + ACTIONS(12883), 1, + sym__as_custom, + STATE(9896), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190955] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7274), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7231), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [190972] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7183), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [190989] = 4, + ACTIONS(15000), 1, + sym__as_custom, + STATE(4559), 1, + sym__as, + ACTIONS(13961), 2, + sym__eq_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191006] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15002), 1, + anon_sym_in, + ACTIONS(15004), 1, + sym__as_custom, + STATE(10044), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191025] = 5, + ACTIONS(15006), 1, + anon_sym_LT, + ACTIONS(15008), 1, + sym__eq_custom, + STATE(4554), 1, + sym__equal_sign, + STATE(9223), 1, + sym_type_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191044] = 5, + ACTIONS(14972), 1, + anon_sym_LT, + ACTIONS(15010), 1, + anon_sym_LPAREN, + STATE(4915), 1, + sym__function_value_parameters, + STATE(8651), 1, + sym_type_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191063] = 5, + ACTIONS(14972), 1, + anon_sym_LT, + ACTIONS(15010), 1, + anon_sym_LPAREN, + STATE(4916), 1, + sym__function_value_parameters, + STATE(8650), 1, + sym_type_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191082] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7183), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [191099] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7198), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7187), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [191116] = 4, + ACTIONS(13520), 1, + sym__as_custom, + STATE(4471), 1, + sym__as, + ACTIONS(15012), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191133] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14968), 1, + sym__as_custom, + ACTIONS(15014), 1, + anon_sym_in, + STATE(9828), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191152] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12445), 1, + sym__as_custom, + ACTIONS(12585), 1, + anon_sym_in, + STATE(10180), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191171] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(11734), 4, + sym__arrow_operator_custom, + sym__throws_keyword, + sym__rethrows_keyword, + anon_sym_in, + [191184] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12418), 1, + sym__as_custom, + ACTIONS(12559), 1, + anon_sym_in, + STATE(10075), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191203] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15016), 1, + anon_sym_in, + ACTIONS(15018), 1, + sym__as_custom, + STATE(10074), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191222] = 4, + ACTIONS(13480), 1, + sym__as_custom, + STATE(4615), 1, + sym__as, + ACTIONS(15020), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191239] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12445), 1, + sym__as_custom, + ACTIONS(12591), 1, + anon_sym_in, + STATE(10302), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191258] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6688), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [191271] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6692), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [191284] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15004), 1, + sym__as_custom, + ACTIONS(15022), 1, + anon_sym_in, + STATE(10301), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191303] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7018), 4, + sym__semi, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [191316] = 3, + ACTIONS(15026), 1, + sym__as_custom, + ACTIONS(15024), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191331] = 4, + ACTIONS(15028), 1, + anon_sym_QMARK, + STATE(9576), 1, + sym__quest, + ACTIONS(14421), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191348] = 4, + ACTIONS(15030), 1, + anon_sym_QMARK, + STATE(7268), 1, + sym__quest, + ACTIONS(14417), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191365] = 5, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + STATE(9810), 1, + sym_computed_property, + STATE(9811), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191384] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7227), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191401] = 5, + ACTIONS(5762), 1, + anon_sym_COMMA, + ACTIONS(15032), 1, + anon_sym_COLON, + ACTIONS(15034), 1, + sym_where_keyword, + STATE(7991), 1, + aux_sym_switch_entry_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191420] = 5, + ACTIONS(15036), 1, + anon_sym_COMMA, + ACTIONS(15038), 1, + anon_sym_LBRACE, + STATE(3594), 1, + sym__block, + STATE(7168), 1, + aux_sym_if_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191439] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7217), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191456] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15004), 1, + sym__as_custom, + ACTIONS(15040), 1, + anon_sym_in, + STATE(10177), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191475] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6678), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [191488] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6666), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [191501] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12729), 1, + sym__as_custom, + ACTIONS(13075), 1, + anon_sym_in, + STATE(10087), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191520] = 3, + ACTIONS(15044), 1, + sym__as_custom, + ACTIONS(15042), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191535] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7205), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191552] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7145), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [191569] = 4, + ACTIONS(14989), 1, + anon_sym_COMMA, + STATE(7347), 1, + aux_sym_if_statement_repeat1, + ACTIONS(8203), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191586] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7141), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [191603] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14987), 1, + sym__as_custom, + ACTIONS(15046), 1, + anon_sym_in, + STATE(10123), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191622] = 3, + ACTIONS(15050), 1, + sym__as_custom, + ACTIONS(15048), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191637] = 3, + ACTIONS(15054), 1, + sym__as_custom, + ACTIONS(15052), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191652] = 4, + ACTIONS(13462), 1, + anon_sym_DOT, + STATE(7272), 1, + aux_sym__availability_argument_repeat1, + ACTIONS(15056), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191669] = 4, + ACTIONS(6594), 1, + sym__eq_custom, + STATE(574), 1, + sym__equal_sign, + ACTIONS(15058), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191686] = 5, + ACTIONS(15006), 1, + anon_sym_LT, + ACTIONS(15060), 1, + sym__eq_custom, + STATE(4461), 1, + sym__equal_sign, + STATE(9635), 1, + sym_type_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191705] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12445), 1, + sym__as_custom, + ACTIONS(12449), 1, + anon_sym_in, + STATE(10047), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191724] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6967), 4, + sym__semi, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [191737] = 4, + ACTIONS(15064), 1, + anon_sym_QMARK, + STATE(9708), 1, + sym__quest, + ACTIONS(15062), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191754] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6941), 4, + sym__semi, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [191767] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6620), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [191780] = 5, + ACTIONS(6914), 1, + sym__semi, + ACTIONS(15066), 1, + sym__dot_custom, + STATE(6771), 1, + sym__dot, + STATE(7153), 1, + aux_sym_identifier_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191799] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6900), 4, + sym__semi, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [191812] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6945), 4, + sym__semi, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [191825] = 4, + ACTIONS(15070), 1, + anon_sym_QMARK, + STATE(7231), 1, + sym__quest, + ACTIONS(15068), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191842] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15018), 1, + sym__as_custom, + ACTIONS(15072), 1, + anon_sym_in, + STATE(10175), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191861] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14987), 1, + sym__as_custom, + ACTIONS(15074), 1, + anon_sym_in, + STATE(9906), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191880] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7047), 4, + sym__semi, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [191893] = 5, + ACTIONS(15006), 1, + anon_sym_LT, + ACTIONS(15076), 1, + sym__eq_custom, + STATE(4509), 1, + sym__equal_sign, + STATE(8537), 1, + sym_type_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191912] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12418), 1, + sym__as_custom, + ACTIONS(12488), 1, + anon_sym_in, + STATE(10184), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191931] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12579), 1, + anon_sym_LBRACE, + STATE(3894), 1, + sym_enum_class_body, + STATE(8359), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191950] = 5, + ACTIONS(6861), 1, + sym__semi, + ACTIONS(15066), 1, + sym__dot_custom, + STATE(6771), 1, + sym__dot, + STATE(7139), 1, + aux_sym_identifier_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191969] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15018), 1, + sym__as_custom, + ACTIONS(15078), 1, + anon_sym_in, + STATE(9987), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [191988] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12579), 1, + anon_sym_LBRACE, + STATE(3923), 1, + sym_enum_class_body, + STATE(8352), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192007] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12384), 1, + anon_sym_LBRACE, + STATE(3924), 1, + sym_class_body, + STATE(8351), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192026] = 5, + ACTIONS(6854), 1, + sym__semi, + ACTIONS(15080), 1, + sym__dot_custom, + STATE(6771), 1, + sym__dot, + STATE(7153), 1, + aux_sym_identifier_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192045] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12579), 1, + anon_sym_LBRACE, + STATE(3930), 1, + sym_enum_class_body, + STATE(8347), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192064] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12384), 1, + anon_sym_LBRACE, + STATE(3930), 1, + sym_class_body, + STATE(8346), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192083] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12883), 1, + sym__as_custom, + ACTIONS(13149), 1, + anon_sym_in, + STATE(10070), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192102] = 4, + ACTIONS(15083), 1, + sym__eq_custom, + STATE(4413), 1, + sym__equal_sign, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7191), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [192119] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6624), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [192132] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6348), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [192145] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7205), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [192162] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7217), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [192179] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7227), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [192196] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7125), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7231), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [192213] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6662), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [192226] = 4, + ACTIONS(13462), 1, + anon_sym_DOT, + STATE(7339), 1, + aux_sym__availability_argument_repeat1, + ACTIONS(5916), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192243] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12443), 1, + anon_sym_in, + ACTIONS(12445), 1, + sym__as_custom, + STATE(9964), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192262] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12384), 1, + anon_sym_LBRACE, + STATE(3953), 1, + sym_class_body, + STATE(8337), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192281] = 5, + ACTIONS(15036), 1, + anon_sym_COMMA, + ACTIONS(15038), 1, + anon_sym_LBRACE, + STATE(3589), 1, + sym__block, + STATE(7576), 1, + aux_sym_if_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192300] = 5, + ACTIONS(15036), 1, + anon_sym_COMMA, + ACTIONS(15085), 1, + anon_sym_LBRACE, + STATE(7188), 1, + aux_sym_if_statement_repeat1, + STATE(7595), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192319] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7101), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192336] = 3, + ACTIONS(15089), 1, + sym__as_custom, + ACTIONS(15087), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192351] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15004), 1, + sym__as_custom, + ACTIONS(15091), 1, + anon_sym_in, + STATE(9965), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192370] = 3, + ACTIONS(12729), 1, + sym__as_custom, + ACTIONS(15093), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192385] = 4, + ACTIONS(15095), 1, + anon_sym_LBRACK, + ACTIONS(15097), 1, + anon_sym_AT, + STATE(7087), 2, + sym_attribute, + aux_sym_capture_list_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192402] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12579), 1, + anon_sym_LBRACE, + STATE(3966), 1, + sym_enum_class_body, + STATE(8333), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192421] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12384), 1, + anon_sym_LBRACE, + STATE(3966), 1, + sym_class_body, + STATE(8331), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192440] = 3, + ACTIONS(15101), 1, + sym__as_custom, + ACTIONS(15099), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192455] = 5, + ACTIONS(14970), 1, + anon_sym_LPAREN, + ACTIONS(14972), 1, + anon_sym_LT, + STATE(6174), 1, + sym__function_value_parameters, + STATE(9607), 1, + sym_type_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192474] = 3, + ACTIONS(15054), 1, + sym__as_custom, + ACTIONS(15052), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192489] = 4, + ACTIONS(15103), 1, + sym__eq_custom, + STATE(4546), 1, + sym__equal_sign, + ACTIONS(7191), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192506] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7332), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7135), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [192523] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7131), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [192540] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14968), 1, + sym__as_custom, + ACTIONS(15105), 1, + anon_sym_in, + STATE(10068), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192559] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15018), 1, + sym__as_custom, + ACTIONS(15107), 1, + anon_sym_in, + STATE(9941), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192578] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6356), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [192591] = 3, + ACTIONS(15044), 1, + sym__as_custom, + ACTIONS(15042), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192606] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6904), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_in, + [192619] = 5, + ACTIONS(15036), 1, + anon_sym_COMMA, + ACTIONS(15085), 1, + anon_sym_LBRACE, + STATE(7573), 1, + sym__block, + STATE(7576), 1, + aux_sym_if_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192638] = 4, + ACTIONS(15109), 1, + sym__eq_custom, + STATE(4511), 1, + sym__equal_sign, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7071), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [192655] = 5, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + STATE(2907), 1, + sym_computed_property, + STATE(8506), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192674] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(15111), 4, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_AMP, + anon_sym_LBRACE, + [192687] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12376), 1, + anon_sym_LBRACE, + STATE(8764), 1, + sym_class_body, + STATE(8771), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192706] = 4, + ACTIONS(15115), 1, + sym__eq_custom, + STATE(870), 1, + sym__equal_sign, + ACTIONS(15113), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192723] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7093), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [192740] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12445), 1, + sym__as_custom, + ACTIONS(12517), 1, + anon_sym_in, + STATE(9980), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192759] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5116), 5, + sym_multiline_comment, + sym__semi, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_RBRACE, + [192772] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15004), 1, + sym__as_custom, + ACTIONS(15117), 1, + anon_sym_in, + STATE(9981), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192791] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7127), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [192808] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7286), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7209), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192825] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12418), 1, + sym__as_custom, + ACTIONS(12471), 1, + anon_sym_in, + STATE(9943), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192844] = 4, + ACTIONS(15000), 1, + sym__as_custom, + STATE(4559), 1, + sym__as, + ACTIONS(13763), 2, + sym__eq_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192861] = 3, + ACTIONS(12729), 1, + sym__as_custom, + ACTIONS(15093), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192876] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12883), 1, + sym__as_custom, + ACTIONS(13176), 1, + anon_sym_in, + STATE(10150), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192895] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7085), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7059), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [192912] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5112), 5, + sym_multiline_comment, + sym__semi, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_RBRACE, + [192925] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5124), 5, + sym_multiline_comment, + sym__semi, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_RBRACE, + [192938] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5108), 5, + sym_multiline_comment, + sym__semi, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_RBRACE, + [192951] = 3, + ACTIONS(14960), 1, + sym__as_custom, + ACTIONS(14958), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192966] = 3, + ACTIONS(14964), 1, + sym__as_custom, + ACTIONS(14962), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [192981] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7101), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [192998] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7123), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [193015] = 4, + ACTIONS(15119), 1, + sym__eq_custom, + STATE(4487), 1, + sym__equal_sign, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7117), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [193032] = 4, + ACTIONS(14989), 1, + anon_sym_COMMA, + STATE(7347), 1, + aux_sym_if_statement_repeat1, + ACTIONS(8175), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193049] = 4, + ACTIONS(15121), 1, + sym__eq_custom, + STATE(4604), 1, + sym__equal_sign, + ACTIONS(7221), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193066] = 4, + ACTIONS(14989), 1, + anon_sym_COMMA, + STATE(7126), 1, + aux_sym_if_statement_repeat1, + ACTIONS(8161), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193083] = 3, + ACTIONS(15050), 1, + sym__as_custom, + ACTIONS(15048), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193098] = 4, + ACTIONS(15123), 1, + sym__eq_custom, + STATE(4439), 1, + sym__equal_sign, + ACTIONS(7071), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193115] = 4, + ACTIONS(15125), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7152), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [193132] = 5, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + STATE(2880), 1, + sym_computed_property, + STATE(8522), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193151] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7085), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [193168] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7077), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [193185] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7077), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [193202] = 5, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + STATE(2874), 1, + sym_computed_property, + STATE(8524), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193221] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14987), 1, + sym__as_custom, + ACTIONS(15128), 1, + anon_sym_in, + STATE(9860), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193240] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6904), 4, + sym__three_dot_operator_custom, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + [193253] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7161), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7063), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [193270] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6658), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [193283] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12883), 1, + sym__as_custom, + ACTIONS(12897), 1, + anon_sym_in, + STATE(9861), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193302] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(13976), 4, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_AMP, + anon_sym_LBRACE, + [193315] = 3, + ACTIONS(15018), 1, + sym__as_custom, + ACTIONS(13484), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193330] = 4, + ACTIONS(15132), 1, + anon_sym_QMARK, + STATE(9639), 1, + sym__quest, + ACTIONS(15130), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193347] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7908), 4, + aux_sym_simple_identifier_token1, + aux_sym_simple_identifier_token2, + aux_sym_simple_identifier_token3, + aux_sym_simple_identifier_token4, + [193360] = 4, + ACTIONS(15136), 1, + sym__eq_custom, + STATE(551), 1, + sym__equal_sign, + ACTIONS(15134), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193377] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12729), 1, + sym__as_custom, + ACTIONS(13326), 1, + anon_sym_in, + STATE(9984), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193396] = 5, + ACTIONS(14970), 1, + anon_sym_LPAREN, + ACTIONS(14972), 1, + anon_sym_LT, + STATE(5953), 1, + sym__function_value_parameters, + STATE(8775), 1, + sym_type_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193415] = 5, + ACTIONS(15138), 1, + anon_sym_RBRACE, + STATE(1378), 1, + sym__class_member_separator, + STATE(7077), 1, + aux_sym__class_member_declarations_repeat1, + ACTIONS(15140), 2, + sym_multiline_comment, + sym__semi, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + [193434] = 4, + ACTIONS(15142), 1, + anon_sym_QMARK, + STATE(7112), 1, + sym__quest, + ACTIONS(14041), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193451] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12380), 1, + anon_sym_LBRACE, + STATE(8764), 1, + sym_enum_class_body, + STATE(8797), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193470] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12729), 1, + sym__as_custom, + ACTIONS(12779), 1, + anon_sym_in, + STATE(10052), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193489] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14987), 1, + sym__as_custom, + ACTIONS(15144), 1, + anon_sym_in, + STATE(9925), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193508] = 5, + ACTIONS(15146), 1, + anon_sym_RBRACE, + STATE(1388), 1, + sym__class_member_separator, + STATE(7241), 1, + aux_sym__class_member_declarations_repeat1, + ACTIONS(15148), 2, + sym_multiline_comment, + sym__semi, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + [193527] = 4, + ACTIONS(15153), 1, + sym__eq_custom, + STATE(795), 1, + sym__equal_sign, + ACTIONS(15151), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193544] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12513), 1, + anon_sym_LBRACE, + STATE(8605), 1, + sym_type_constraints, + STATE(8738), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193563] = 5, + ACTIONS(14972), 1, + anon_sym_LT, + ACTIONS(15155), 1, + anon_sym_LPAREN, + STATE(5155), 1, + sym__function_value_parameters, + STATE(8400), 1, + sym_type_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193582] = 5, + ACTIONS(14972), 1, + anon_sym_LT, + ACTIONS(15155), 1, + anon_sym_LPAREN, + STATE(5154), 1, + sym__function_value_parameters, + STATE(8387), 1, + sym_type_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193601] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7093), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193618] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12392), 1, + anon_sym_LBRACE, + STATE(8604), 1, + sym_type_constraints, + STATE(8738), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193637] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7288), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7059), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193654] = 5, + ACTIONS(14970), 1, + anon_sym_LPAREN, + ACTIONS(14972), 1, + anon_sym_LT, + STATE(6147), 1, + sym__function_value_parameters, + STATE(9599), 1, + sym_type_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193673] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12521), 1, + anon_sym_LBRACE, + STATE(8602), 1, + sym_type_constraints, + STATE(8735), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193692] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12388), 1, + anon_sym_LBRACE, + STATE(8810), 1, + sym_type_constraints, + STATE(10133), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193711] = 5, + ACTIONS(5762), 1, + anon_sym_COMMA, + ACTIONS(15157), 1, + anon_sym_COLON, + ACTIONS(15159), 1, + sym_where_keyword, + STATE(8149), 1, + aux_sym_switch_entry_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193730] = 4, + ACTIONS(15163), 1, + sym__eq_custom, + STATE(1062), 1, + sym__equal_sign, + ACTIONS(15161), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193747] = 3, + ACTIONS(12445), 1, + sym__as_custom, + ACTIONS(1187), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193762] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12741), 1, + anon_sym_in, + ACTIONS(12743), 1, + sym__as_custom, + STATE(10116), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193781] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12513), 1, + anon_sym_LBRACE, + STATE(8601), 1, + sym_type_constraints, + STATE(8733), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193800] = 3, + ACTIONS(12418), 1, + sym__as_custom, + ACTIONS(12412), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193815] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12418), 1, + sym__as_custom, + ACTIONS(12619), 1, + anon_sym_in, + STATE(10039), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193834] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15018), 1, + sym__as_custom, + ACTIONS(15165), 1, + anon_sym_in, + STATE(10045), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193853] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(13026), 1, + anon_sym_LBRACE, + STATE(9544), 1, + sym_protocol_property_requirements, + STATE(9550), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193872] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12418), 1, + sym__as_custom, + ACTIONS(12649), 1, + anon_sym_in, + STATE(9972), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193891] = 4, + ACTIONS(15167), 1, + sym__eq_custom, + STATE(4567), 1, + sym__equal_sign, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7221), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [193908] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7220), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7209), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [193925] = 4, + ACTIONS(15171), 1, + sym__eq_custom, + STATE(575), 1, + sym__equal_sign, + ACTIONS(15169), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193942] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6670), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [193955] = 5, + ACTIONS(6197), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + STATE(2856), 1, + sym_computed_property, + STATE(8541), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [193974] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6238), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [193987] = 4, + ACTIONS(15173), 1, + anon_sym_QMARK, + STATE(9498), 1, + sym__quest, + ACTIONS(13685), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194004] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14968), 1, + sym__as_custom, + ACTIONS(15175), 1, + anon_sym_in, + STATE(9961), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194023] = 3, + ACTIONS(14968), 1, + sym__as_custom, + ACTIONS(14966), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194038] = 3, + ACTIONS(12957), 1, + sym__as_custom, + ACTIONS(13166), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194053] = 4, + ACTIONS(13462), 1, + anon_sym_DOT, + STATE(7339), 1, + aux_sym__availability_argument_repeat1, + ACTIONS(15177), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194070] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12380), 1, + anon_sym_LBRACE, + STATE(9274), 1, + sym_type_constraints, + STATE(9277), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194089] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7145), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194106] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7141), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194123] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6904), 4, + sym__semi, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + [194136] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14968), 1, + sym__as_custom, + ACTIONS(15179), 1, + anon_sym_in, + STATE(10036), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194155] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12743), 1, + sym__as_custom, + ACTIONS(12753), 1, + anon_sym_in, + STATE(10049), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194174] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12380), 1, + anon_sym_LBRACE, + STATE(9572), 1, + sym_enum_class_body, + STATE(9574), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194193] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7297), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7187), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194210] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12729), 1, + sym__as_custom, + ACTIONS(13098), 1, + anon_sym_in, + STATE(10026), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194229] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7183), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194246] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6396), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [194259] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 4, + sym_where_keyword, + anon_sym_COLON, + anon_sym_LT, + anon_sym_LBRACE, + [194272] = 3, + ACTIONS(15181), 1, + anon_sym_LT, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4565), 4, + sym_multiline_comment, + sym__semi, + anon_sym_COLON, + anon_sym_RBRACE, + [194287] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7085), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194304] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7183), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194321] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7179), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194338] = 3, + ACTIONS(15026), 1, + sym__as_custom, + ACTIONS(15024), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194353] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14968), 1, + sym__as_custom, + ACTIONS(15183), 1, + anon_sym_in, + STATE(10024), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194372] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12459), 1, + anon_sym_LBRACE, + STATE(2873), 1, + sym_class_body, + STATE(8208), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194391] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12428), 1, + anon_sym_LBRACE, + STATE(2873), 1, + sym_enum_class_body, + STATE(8205), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194410] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12499), 1, + anon_sym_LBRACE, + STATE(2899), 1, + sym_protocol_body, + STATE(8199), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194429] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7213), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [194446] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7067), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7135), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194463] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6370), 4, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + anon_sym_QMARK, + [194476] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7127), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194493] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7123), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194510] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12459), 1, + anon_sym_LBRACE, + STATE(2950), 1, + sym_class_body, + STATE(8198), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194529] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7113), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [194546] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15004), 1, + sym__as_custom, + ACTIONS(15185), 1, + anon_sym_in, + STATE(10021), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194565] = 4, + ACTIONS(15189), 1, + sym__eq_custom, + STATE(383), 1, + sym__equal_sign, + ACTIONS(15187), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194582] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12445), 1, + sym__as_custom, + ACTIONS(12509), 1, + anon_sym_in, + STATE(10020), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194601] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12388), 1, + anon_sym_LBRACE, + STATE(9595), 1, + sym_type_constraints, + STATE(9894), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194620] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12743), 1, + sym__as_custom, + ACTIONS(13362), 1, + anon_sym_in, + STATE(9873), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194639] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12521), 1, + anon_sym_LBRACE, + STATE(8562), 1, + sym_type_constraints, + STATE(8700), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194658] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7213), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194675] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12376), 1, + anon_sym_LBRACE, + STATE(8831), 1, + sym_class_body, + STATE(8833), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194694] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6854), 4, + sym__dot_custom, + sym__eq_custom, + sym__eq_eq_custom, + anon_sym_COLON, + [194707] = 4, + ACTIONS(15191), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7152), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194724] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7077), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194741] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(14987), 1, + sym__as_custom, + ACTIONS(15194), 1, + anon_sym_in, + STATE(10093), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194760] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7077), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194777] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15018), 1, + sym__as_custom, + ACTIONS(15196), 1, + anon_sym_in, + STATE(10009), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194796] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12392), 1, + anon_sym_LBRACE, + STATE(8563), 1, + sym_type_constraints, + STATE(8702), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194815] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12513), 1, + anon_sym_LBRACE, + STATE(8585), 1, + sym_type_constraints, + STATE(8717), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194834] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12459), 1, + anon_sym_LBRACE, + STATE(2891), 1, + sym_class_body, + STATE(8190), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194853] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12392), 1, + anon_sym_LBRACE, + STATE(8583), 1, + sym_type_constraints, + STATE(8717), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194872] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12428), 1, + anon_sym_LBRACE, + STATE(2891), 1, + sym_enum_class_body, + STATE(8192), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194891] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12521), 1, + anon_sym_LBRACE, + STATE(8582), 1, + sym_type_constraints, + STATE(8716), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194910] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12499), 1, + anon_sym_LBRACE, + STATE(2892), 1, + sym_protocol_body, + STATE(8194), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194929] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7118), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7063), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194946] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12459), 1, + anon_sym_LBRACE, + STATE(2897), 1, + sym_class_body, + STATE(8200), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194965] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12513), 1, + anon_sym_LBRACE, + STATE(8581), 1, + sym_type_constraints, + STATE(8715), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [194984] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12392), 1, + anon_sym_LBRACE, + STATE(8580), 1, + sym_type_constraints, + STATE(8714), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195003] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12428), 1, + anon_sym_LBRACE, + STATE(2898), 1, + sym_enum_class_body, + STATE(8203), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195022] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12398), 1, + anon_sym_in, + ACTIONS(12418), 1, + sym__as_custom, + STATE(10003), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195041] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7105), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [195058] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12499), 1, + anon_sym_LBRACE, + STATE(2919), 1, + sym_protocol_body, + STATE(8193), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195077] = 3, + ACTIONS(12418), 1, + sym__as_custom, + ACTIONS(12412), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195092] = 5, + ACTIONS(11556), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + STATE(9644), 1, + sym_computed_property, + STATE(9645), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195111] = 4, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(7218), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7109), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [195128] = 3, + ACTIONS(15101), 1, + sym__as_custom, + ACTIONS(15099), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195143] = 3, + ACTIONS(15089), 1, + sym__as_custom, + ACTIONS(15087), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195158] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12729), 1, + sym__as_custom, + ACTIONS(13398), 1, + anon_sym_in, + STATE(9880), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195177] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12521), 1, + anon_sym_LBRACE, + STATE(8579), 1, + sym_type_constraints, + STATE(8710), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195196] = 2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6904), 4, + sym__semi, + sym_where_keyword, + anon_sym_LBRACE, + anon_sym_RBRACE, + [195209] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12883), 1, + sym__as_custom, + ACTIONS(13090), 1, + anon_sym_in, + STATE(10094), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195228] = 4, + ACTIONS(15200), 1, + anon_sym_DOT, + STATE(7339), 1, + aux_sym__availability_argument_repeat1, + ACTIONS(15198), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195245] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12388), 1, + anon_sym_LBRACE, + STATE(9500), 1, + sym_type_constraints, + STATE(9992), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195264] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12428), 1, + anon_sym_LBRACE, + STATE(2948), 1, + sym_enum_class_body, + STATE(8189), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195283] = 4, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(7310), 1, + aux_sym__modifierless_property_declaration_repeat1, + ACTIONS(7131), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195300] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12499), 1, + anon_sym_LBRACE, + STATE(2946), 1, + sym_protocol_body, + STATE(8191), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195319] = 5, + ACTIONS(15006), 1, + anon_sym_LT, + ACTIONS(15203), 1, + sym__eq_custom, + STATE(4415), 1, + sym__equal_sign, + STATE(9575), 1, + sym_type_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195338] = 3, + ACTIONS(15018), 1, + sym__as_custom, + ACTIONS(13484), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195353] = 5, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + STATE(8196), 1, + sym_type_constraints, + STATE(8686), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195372] = 4, + ACTIONS(15205), 1, + anon_sym_COMMA, + STATE(7347), 1, + aux_sym_if_statement_repeat1, + ACTIONS(8247), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195389] = 5, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + STATE(8202), 1, + sym_type_constraints, + STATE(8683), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195408] = 5, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + STATE(8204), 1, + sym_type_constraints, + STATE(8680), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195427] = 5, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(12376), 1, + anon_sym_LBRACE, + STATE(9232), 1, + sym_class_body, + STATE(9248), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195446] = 5, + ACTIONS(11564), 1, + anon_sym_LBRACE, + ACTIONS(11726), 1, + sym_where_keyword, + STATE(8206), 1, + sym_type_constraints, + STATE(8678), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195465] = 5, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12743), 1, + sym__as_custom, + ACTIONS(13384), 1, + anon_sym_in, + STATE(9831), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195484] = 4, + ACTIONS(13480), 1, + sym__as_custom, + STATE(4615), 1, + sym__as, + ACTIONS(15208), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195501] = 4, + ACTIONS(15210), 1, + anon_sym_RPAREN, + ACTIONS(15212), 1, + anon_sym_COMMA, + STATE(8011), 1, + aux_sym_availability_condition_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195517] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15216), 1, + anon_sym_RBRACK, + STATE(7921), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195533] = 4, + ACTIONS(15218), 1, + anon_sym_RPAREN, + ACTIONS(15220), 1, + anon_sym_COMMA, + STATE(7392), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195549] = 4, + ACTIONS(5856), 1, + anon_sym_COMMA, + ACTIONS(15222), 1, + anon_sym_RPAREN, + STATE(7407), 1, + aux_sym_enum_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195565] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15224), 1, + anon_sym_in, + STATE(10006), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195581] = 4, + ACTIONS(5792), 1, + anon_sym_COMMA, + ACTIONS(15226), 1, + anon_sym_RPAREN, + STATE(8134), 1, + aux_sym__playground_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195597] = 2, + ACTIONS(15228), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195609] = 3, + ACTIONS(6696), 1, + sym__as_custom, + ACTIONS(15230), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195623] = 2, + ACTIONS(15228), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195635] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15232), 1, + anon_sym_RPAREN, + STATE(7412), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195651] = 2, + ACTIONS(15026), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195663] = 2, + ACTIONS(15234), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195675] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15236), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195691] = 4, + ACTIONS(15238), 1, + anon_sym_RPAREN, + ACTIONS(15240), 1, + anon_sym_COMMA, + STATE(7405), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195707] = 4, + ACTIONS(15242), 1, + anon_sym_RPAREN, + ACTIONS(15244), 1, + anon_sym_COMMA, + STATE(7368), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195723] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15247), 1, + anon_sym_RPAREN, + STATE(7604), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195739] = 3, + ACTIONS(6700), 1, + sym__as_custom, + ACTIONS(15249), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195753] = 2, + ACTIONS(15234), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195765] = 2, + ACTIONS(15228), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195777] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13066), 1, + anon_sym_in, + STATE(9979), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195793] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(13510), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195809] = 2, + ACTIONS(15228), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195821] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(15251), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195837] = 4, + ACTIONS(15253), 1, + anon_sym_RPAREN, + ACTIONS(15255), 1, + anon_sym_COMMA, + STATE(7428), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195853] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15257), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195869] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15259), 1, + anon_sym_RPAREN, + STATE(7378), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195885] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15261), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195901] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15263), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195917] = 4, + ACTIONS(15265), 1, + anon_sym_LBRACE, + STATE(2872), 1, + sym__block, + STATE(2885), 1, + sym_function_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195933] = 4, + ACTIONS(15267), 1, + anon_sym_RPAREN, + ACTIONS(15269), 1, + anon_sym_COMMA, + STATE(7974), 1, + aux_sym__interpolation_contents_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195949] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13362), 1, + anon_sym_in, + STATE(9873), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195965] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5888), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195981] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15271), 1, + anon_sym_RPAREN, + STATE(7679), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [195997] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15273), 1, + anon_sym_RPAREN, + STATE(7366), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196013] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15275), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196029] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(15277), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196045] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15279), 1, + anon_sym_in, + STATE(10007), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196061] = 4, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(15281), 1, + anon_sym_RPAREN, + STATE(7707), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196077] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15283), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196093] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15285), 1, + anon_sym_RPAREN, + STATE(7380), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196109] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15289), 1, + anon_sym_GT, + STATE(7436), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196125] = 2, + ACTIONS(12743), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196137] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7303), 4, + sym_multiline_comment, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + [196149] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(15291), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196165] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13075), 1, + anon_sym_in, + STATE(10087), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196181] = 4, + ACTIONS(15212), 1, + anon_sym_COMMA, + ACTIONS(15293), 1, + anon_sym_RPAREN, + STATE(8011), 1, + aux_sym_availability_condition_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196197] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15295), 1, + anon_sym_RPAREN, + STATE(7388), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196213] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15297), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196229] = 4, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(15299), 1, + anon_sym_RPAREN, + STATE(7707), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196245] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5884), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196261] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(15301), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196277] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(15303), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196293] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(6854), 4, + sym_multiline_comment, + sym__semi, + sym__dot_custom, + anon_sym_RBRACE, + [196305] = 4, + ACTIONS(15305), 1, + anon_sym_RPAREN, + ACTIONS(15307), 1, + anon_sym_COMMA, + STATE(7407), 1, + aux_sym_enum_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196321] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15310), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196337] = 2, + ACTIONS(15050), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196349] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15312), 1, + anon_sym_RPAREN, + STATE(7401), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196365] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(15314), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196381] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15316), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196397] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15318), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196413] = 4, + ACTIONS(5756), 1, + anon_sym_COMMA, + ACTIONS(15320), 1, + anon_sym_RPAREN, + STATE(7368), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196429] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15322), 1, + anon_sym_RBRACK, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196445] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15324), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196461] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15326), 1, + anon_sym_RBRACK, + STATE(7415), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196477] = 4, + ACTIONS(15328), 1, + anon_sym_COMMA, + ACTIONS(15330), 1, + anon_sym_GT, + STATE(7719), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196493] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15332), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196509] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15334), 1, + anon_sym_RPAREN, + STATE(7464), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196525] = 4, + ACTIONS(5792), 1, + anon_sym_COMMA, + ACTIONS(15336), 1, + anon_sym_RPAREN, + STATE(8134), 1, + aux_sym__playground_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196541] = 4, + ACTIONS(15338), 1, + anon_sym_RPAREN, + ACTIONS(15340), 1, + anon_sym_COMMA, + STATE(7538), 1, + aux_sym__function_value_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196557] = 2, + ACTIONS(15342), 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, + [196569] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15344), 1, + anon_sym_RBRACK, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196585] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15344), 1, + anon_sym_RPAREN, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196601] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15346), 1, + anon_sym_RPAREN, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196617] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(13777), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196633] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15348), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196649] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15350), 1, + anon_sym_RPAREN, + STATE(7473), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196665] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15352), 1, + anon_sym_RPAREN, + STATE(7408), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196681] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(15354), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196697] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15356), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196713] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(15358), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196729] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15360), 1, + anon_sym_RPAREN, + STATE(7474), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196745] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15362), 1, + anon_sym_RPAREN, + STATE(7476), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196761] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15364), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196777] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(15366), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196793] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15368), 1, + anon_sym_RPAREN, + STATE(7459), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196809] = 4, + ACTIONS(15328), 1, + anon_sym_COMMA, + ACTIONS(15370), 1, + anon_sym_GT, + STATE(7992), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196825] = 4, + ACTIONS(15372), 1, + anon_sym_COMMA, + ACTIONS(15375), 1, + anon_sym_RBRACK, + STATE(7440), 1, + aux_sym_array_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196841] = 3, + ACTIONS(15379), 1, + anon_sym_COLON, + ACTIONS(15377), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196855] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(13933), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196871] = 4, + ACTIONS(15265), 1, + anon_sym_LBRACE, + STATE(2872), 1, + sym__block, + STATE(2920), 1, + sym_function_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196887] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15381), 1, + anon_sym_RPAREN, + STATE(7568), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196903] = 4, + ACTIONS(15340), 1, + anon_sym_COMMA, + ACTIONS(15383), 1, + anon_sym_RPAREN, + STATE(7998), 1, + aux_sym__function_value_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196919] = 4, + ACTIONS(5756), 1, + anon_sym_COMMA, + ACTIONS(15385), 1, + anon_sym_RPAREN, + STATE(7368), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196935] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15387), 1, + anon_sym_RBRACK, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196951] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15389), 1, + anon_sym_RBRACK, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196967] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(15391), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196983] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15393), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [196999] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15389), 1, + anon_sym_RPAREN, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197015] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15395), 1, + anon_sym_RPAREN, + STATE(7490), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197031] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15397), 1, + anon_sym_RPAREN, + STATE(7478), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197047] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15399), 1, + anon_sym_RPAREN, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197063] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15401), 1, + anon_sym_in, + STATE(9983), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197079] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15403), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197095] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15405), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197111] = 4, + ACTIONS(15407), 1, + anon_sym_COMMA, + ACTIONS(15410), 1, + anon_sym_RBRACK, + STATE(7458), 1, + aux_sym_dictionary_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197127] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15412), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197143] = 4, + ACTIONS(15212), 1, + anon_sym_COMMA, + ACTIONS(15414), 1, + anon_sym_RPAREN, + STATE(7399), 1, + aux_sym_availability_condition_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197159] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(15416), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197175] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15418), 1, + anon_sym_RBRACK, + STATE(8020), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197191] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15418), 1, + anon_sym_RPAREN, + STATE(8029), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197207] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15420), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197223] = 2, + ACTIONS(15422), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197235] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15424), 1, + anon_sym_RPAREN, + STATE(8031), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197251] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15426), 1, + anon_sym_RPAREN, + STATE(7735), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197267] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5868), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197283] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15428), 1, + anon_sym_GT, + STATE(8038), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197299] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15430), 1, + anon_sym_in, + STATE(10011), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197315] = 4, + ACTIONS(12113), 1, + anon_sym_in, + ACTIONS(12115), 1, + sym__arrow_operator_custom, + STATE(4302), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197331] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15432), 1, + anon_sym_RPAREN, + STATE(7506), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197347] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15434), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197363] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15436), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197379] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15438), 1, + anon_sym_RPAREN, + STATE(7507), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197395] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15440), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197411] = 4, + ACTIONS(5762), 1, + anon_sym_COMMA, + ACTIONS(15442), 1, + anon_sym_COLON, + STATE(8161), 1, + aux_sym_switch_entry_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197427] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15444), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197443] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(15446), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197459] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(15448), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197475] = 3, + ACTIONS(6356), 1, + sym__as_custom, + ACTIONS(15450), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197489] = 2, + ACTIONS(15422), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197501] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15452), 1, + anon_sym_RBRACK, + STATE(7447), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197517] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(15454), 1, + anon_sym_RPAREN, + STATE(7594), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197533] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15456), 1, + anon_sym_in, + STATE(10016), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197549] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15458), 1, + anon_sym_RBRACK, + STATE(7448), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197565] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15458), 1, + anon_sym_RPAREN, + STATE(7451), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197581] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15460), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197597] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15462), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197613] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15464), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197629] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15466), 1, + anon_sym_RPAREN, + STATE(7454), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197645] = 2, + ACTIONS(12883), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197657] = 4, + ACTIONS(15328), 1, + anon_sym_COMMA, + ACTIONS(15468), 1, + anon_sym_GT, + STATE(7418), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197673] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15470), 1, + anon_sym_GT, + STATE(7457), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197689] = 2, + ACTIONS(14987), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197701] = 4, + ACTIONS(15340), 1, + anon_sym_COMMA, + ACTIONS(15472), 1, + anon_sym_RPAREN, + STATE(7422), 1, + aux_sym__function_value_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197717] = 4, + ACTIONS(15474), 1, + anon_sym_COMMA, + ACTIONS(15476), 1, + anon_sym_RBRACK, + STATE(7883), 1, + aux_sym_capture_list_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197733] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15478), 1, + anon_sym_RBRACK, + STATE(7424), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197749] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15478), 1, + anon_sym_RPAREN, + STATE(7425), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197765] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15480), 1, + anon_sym_RPAREN, + STATE(7426), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197781] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15482), 1, + anon_sym_GT, + STATE(7432), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197797] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15484), 1, + anon_sym_RPAREN, + STATE(7514), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197813] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15486), 1, + anon_sym_RPAREN, + STATE(7523), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197829] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(15488), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197845] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15490), 1, + anon_sym_RPAREN, + STATE(7515), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197861] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15492), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197877] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15494), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197893] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15496), 1, + anon_sym_RPAREN, + STATE(7534), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197909] = 2, + ACTIONS(15498), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197921] = 2, + ACTIONS(15500), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197933] = 2, + ACTIONS(15498), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197945] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15502), 1, + anon_sym_in, + STATE(10147), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197961] = 4, + ACTIONS(15504), 1, + anon_sym_COMMA, + ACTIONS(15506), 1, + anon_sym_RBRACK, + STATE(7458), 1, + aux_sym_dictionary_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197977] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15508), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [197993] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15510), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198009] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15512), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198025] = 2, + ACTIONS(12883), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198037] = 4, + ACTIONS(15514), 1, + anon_sym_COMMA, + ACTIONS(15516), 1, + anon_sym_RBRACK, + STATE(7440), 1, + aux_sym_array_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198053] = 2, + ACTIONS(15518), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198065] = 2, + ACTIONS(15518), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198077] = 2, + ACTIONS(15520), 3, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198089] = 2, + ACTIONS(15522), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198101] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15524), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198117] = 2, + ACTIONS(15526), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198129] = 2, + ACTIONS(15518), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198141] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15528), 1, + anon_sym_RPAREN, + STATE(7768), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198157] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(14822), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198173] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(15530), 1, + anon_sym_RPAREN, + STATE(7480), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198189] = 4, + ACTIONS(5756), 1, + anon_sym_COMMA, + ACTIONS(15532), 1, + anon_sym_RPAREN, + STATE(7368), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198205] = 2, + ACTIONS(15518), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198217] = 4, + ACTIONS(15534), 1, + anon_sym_COMMA, + ACTIONS(15536), 1, + anon_sym_RBRACK, + STATE(7458), 1, + aux_sym_dictionary_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198233] = 4, + ACTIONS(15538), 1, + anon_sym_COMMA, + ACTIONS(15540), 1, + anon_sym_RBRACK, + STATE(7440), 1, + aux_sym_array_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198249] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15542), 1, + anon_sym_RPAREN, + STATE(7566), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198265] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15544), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198281] = 3, + ACTIONS(6348), 1, + sym__as_custom, + ACTIONS(14302), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198295] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15546), 1, + anon_sym_RPAREN, + STATE(7488), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198311] = 4, + ACTIONS(8251), 1, + anon_sym_RBRACE, + ACTIONS(15548), 1, + sym__semi, + STATE(7537), 1, + aux_sym_statements_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198327] = 4, + ACTIONS(15551), 1, + anon_sym_RPAREN, + ACTIONS(15553), 1, + anon_sym_COMMA, + STATE(7538), 1, + aux_sym__function_value_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198343] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(15556), 1, + anon_sym_RPAREN, + STATE(7479), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198359] = 4, + ACTIONS(5756), 1, + anon_sym_COMMA, + ACTIONS(15558), 1, + anon_sym_RPAREN, + STATE(7368), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198375] = 2, + ACTIONS(15026), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198387] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15560), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198403] = 2, + ACTIONS(15526), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198415] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15562), 1, + anon_sym_RPAREN, + STATE(7922), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198431] = 4, + ACTIONS(15212), 1, + anon_sym_COMMA, + ACTIONS(15564), 1, + anon_sym_RPAREN, + STATE(7354), 1, + aux_sym_availability_condition_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198447] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15566), 1, + anon_sym_RPAREN, + STATE(7667), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198463] = 4, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(15568), 1, + anon_sym_RPAREN, + STATE(7707), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198479] = 4, + ACTIONS(15036), 1, + anon_sym_COMMA, + ACTIONS(15570), 1, + anon_sym_LBRACE, + STATE(7576), 1, + aux_sym_if_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198495] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15572), 1, + anon_sym_RPAREN, + STATE(7456), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198511] = 4, + ACTIONS(15474), 1, + anon_sym_COMMA, + ACTIONS(15476), 1, + anon_sym_RBRACK, + STATE(7848), 1, + aux_sym_capture_list_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198527] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(15574), 1, + anon_sym_RPAREN, + STATE(7577), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198543] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13326), 1, + anon_sym_in, + STATE(9984), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198559] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7299), 4, + sym_multiline_comment, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + [198571] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15576), 1, + anon_sym_in, + STATE(9976), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198587] = 4, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3641), 1, + sym_function_body, + STATE(4188), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198603] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15578), 1, + anon_sym_RPAREN, + STATE(7419), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198619] = 4, + ACTIONS(15580), 1, + anon_sym_COMMA, + ACTIONS(15582), 1, + anon_sym_RBRACK, + STATE(7531), 1, + aux_sym_dictionary_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198635] = 2, + ACTIONS(12445), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198647] = 2, + ACTIONS(15004), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198659] = 4, + ACTIONS(5856), 1, + anon_sym_COMMA, + ACTIONS(15584), 1, + anon_sym_RPAREN, + STATE(7407), 1, + aux_sym_enum_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198675] = 4, + ACTIONS(127), 1, + sym_raw_str_part, + ACTIONS(15586), 1, + sym_raw_str_end_part, + STATE(7731), 1, + aux_sym_raw_string_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198691] = 4, + ACTIONS(15588), 1, + anon_sym_LBRACE, + STATE(8782), 1, + sym_function_body, + STATE(8783), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198707] = 2, + ACTIONS(15522), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198719] = 4, + ACTIONS(4606), 1, + sym__dot_custom, + STATE(1201), 1, + sym_navigation_suffix, + STATE(6126), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198735] = 2, + ACTIONS(12743), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198747] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15590), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198763] = 4, + ACTIONS(15592), 1, + anon_sym_COMMA, + ACTIONS(15594), 1, + anon_sym_RBRACK, + STATE(7513), 1, + aux_sym_dictionary_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198779] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15596), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198795] = 2, + ACTIONS(12729), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198807] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15598), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198823] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15600), 1, + anon_sym_GT, + STATE(7765), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198839] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12727), 1, + anon_sym_in, + STATE(9851), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198855] = 3, + ACTIONS(15602), 1, + sym_else, + ACTIONS(8258), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198869] = 2, + ACTIONS(14987), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198881] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15604), 1, + anon_sym_RPAREN, + STATE(7381), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198897] = 4, + ACTIONS(8247), 1, + anon_sym_LBRACE, + ACTIONS(15606), 1, + anon_sym_COMMA, + STATE(7576), 1, + aux_sym_if_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198913] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(15609), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198929] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15611), 1, + anon_sym_RPAREN, + STATE(7696), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198945] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15613), 1, + anon_sym_RPAREN, + STATE(8055), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198961] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15615), 1, + anon_sym_GT, + STATE(7852), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198977] = 4, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(15617), 1, + anon_sym_RPAREN, + STATE(7707), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [198993] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15619), 1, + anon_sym_RPAREN, + STATE(7413), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199009] = 4, + ACTIONS(127), 1, + sym_raw_str_part, + ACTIONS(15621), 1, + sym_raw_str_end_part, + STATE(7731), 1, + aux_sym_raw_string_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199025] = 2, + ACTIONS(5308), 3, + sym__semi, + sym_catch_keyword, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199037] = 4, + ACTIONS(15623), 1, + anon_sym_COMMA, + ACTIONS(15625), 1, + sym_else, + STATE(7956), 1, + aux_sym_if_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199053] = 2, + ACTIONS(15500), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199065] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15627), 1, + anon_sym_in, + STATE(10033), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199081] = 4, + ACTIONS(5622), 1, + sym__dot_custom, + STATE(2687), 1, + sym_navigation_suffix, + STATE(5982), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199097] = 3, + ACTIONS(6624), 1, + sym__as_custom, + ACTIONS(15629), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199111] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15631), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199127] = 2, + ACTIONS(15044), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199139] = 2, + ACTIONS(14968), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199151] = 2, + ACTIONS(7272), 3, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199163] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(15633), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199179] = 3, + ACTIONS(15635), 1, + sym_else, + ACTIONS(8274), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199193] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15637), 1, + anon_sym_in, + STATE(10034), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199209] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15639), 1, + anon_sym_RPAREN, + STATE(7416), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199225] = 2, + ACTIONS(15054), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199237] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15641), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199253] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13012), 1, + anon_sym_in, + STATE(9842), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199269] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15643), 1, + anon_sym_RPAREN, + STATE(7450), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199285] = 2, + ACTIONS(7268), 3, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199297] = 4, + ACTIONS(14956), 1, + anon_sym_RPAREN, + ACTIONS(15645), 1, + anon_sym_COMMA, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199313] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15648), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199329] = 3, + ACTIONS(6688), 1, + sym__as_custom, + ACTIONS(15650), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199343] = 3, + ACTIONS(6692), 1, + sym__as_custom, + ACTIONS(15652), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199357] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15654), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199373] = 4, + ACTIONS(15656), 1, + anon_sym_RBRACE, + ACTIONS(15658), 1, + sym__semi, + STATE(8009), 1, + aux_sym__protocol_member_declarations_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199389] = 2, + ACTIONS(12599), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199401] = 4, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(15660), 1, + anon_sym_RPAREN, + STATE(7707), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199417] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15662), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199433] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13306), 1, + anon_sym_in, + STATE(10072), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199449] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15664), 1, + anon_sym_in, + STATE(10171), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199465] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15666), 1, + anon_sym_RPAREN, + STATE(7489), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199481] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15668), 1, + anon_sym_RPAREN, + STATE(7607), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199497] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(15670), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199513] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15672), 1, + anon_sym_RPAREN, + STATE(7611), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199529] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15674), 1, + anon_sym_in, + STATE(10038), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199545] = 4, + ACTIONS(5762), 1, + anon_sym_COMMA, + ACTIONS(5788), 1, + anon_sym_COLON, + STATE(8161), 1, + aux_sym_switch_entry_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199561] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15676), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199577] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5904), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199593] = 4, + ACTIONS(423), 1, + anon_sym_RBRACE, + ACTIONS(15678), 1, + sym__semi, + STATE(7537), 1, + aux_sym_statements_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199609] = 4, + ACTIONS(15680), 1, + anon_sym_COMMA, + ACTIONS(15683), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199625] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15685), 1, + anon_sym_RPAREN, + STATE(7516), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199641] = 2, + ACTIONS(14974), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199653] = 4, + ACTIONS(12105), 1, + anon_sym_in, + ACTIONS(12107), 1, + sym__arrow_operator_custom, + STATE(4268), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199669] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15687), 1, + anon_sym_in, + STATE(10054), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199685] = 4, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(13446), 1, + anon_sym_LBRACE, + STATE(9835), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199701] = 4, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(13446), 1, + anon_sym_LBRACE, + STATE(9834), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199717] = 2, + ACTIONS(15689), 3, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199729] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15691), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199745] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15693), 1, + anon_sym_RPAREN, + STATE(7620), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199761] = 2, + ACTIONS(15695), 3, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199773] = 2, + ACTIONS(5320), 3, + sym__semi, + sym_catch_keyword, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199785] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(15697), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199801] = 4, + ACTIONS(15588), 1, + anon_sym_LBRACE, + STATE(8783), 1, + sym__block, + STATE(9176), 1, + sym_function_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199817] = 4, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(15699), 1, + anon_sym_RPAREN, + STATE(7707), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199833] = 2, + ACTIONS(8264), 3, + sym__semi, + sym_catch_keyword, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199845] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15701), 1, + anon_sym_in, + STATE(9892), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199861] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15703), 1, + anon_sym_in, + STATE(10178), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199877] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(15705), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199893] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(15707), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199909] = 4, + ACTIONS(5792), 1, + anon_sym_COMMA, + ACTIONS(15709), 1, + anon_sym_RPAREN, + STATE(8134), 1, + aux_sym__playground_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199925] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15711), 1, + anon_sym_in, + STATE(10185), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199941] = 4, + ACTIONS(15713), 1, + anon_sym_RPAREN, + ACTIONS(15715), 1, + anon_sym_COMMA, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199957] = 4, + ACTIONS(15474), 1, + anon_sym_COMMA, + ACTIONS(15718), 1, + anon_sym_RBRACK, + STATE(7497), 1, + aux_sym_capture_list_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199973] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(14643), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [199989] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15720), 1, + anon_sym_RPAREN, + STATE(7631), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200005] = 4, + ACTIONS(6882), 1, + anon_sym_LBRACE, + ACTIONS(15722), 1, + anon_sym_COMMA, + STATE(7929), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200021] = 2, + ACTIONS(12861), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200033] = 4, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(15724), 1, + anon_sym_RPAREN, + STATE(7707), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200049] = 4, + ACTIONS(15036), 1, + anon_sym_COMMA, + ACTIONS(15726), 1, + anon_sym_LBRACE, + STATE(7576), 1, + aux_sym_if_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200065] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15728), 1, + anon_sym_RPAREN, + STATE(7542), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200081] = 2, + ACTIONS(12957), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200093] = 2, + ACTIONS(15044), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200105] = 4, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(15730), 1, + anon_sym_RPAREN, + STATE(7707), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200121] = 3, + ACTIONS(6658), 1, + sym__as_custom, + ACTIONS(14993), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200135] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15732), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200151] = 4, + ACTIONS(15623), 1, + anon_sym_COMMA, + ACTIONS(15734), 1, + sym_else, + STATE(7956), 1, + aux_sym_if_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200167] = 4, + ACTIONS(15736), 1, + anon_sym_COMMA, + ACTIONS(15738), 1, + anon_sym_RBRACK, + STATE(7458), 1, + aux_sym_dictionary_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200183] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15740), 1, + anon_sym_RPAREN, + STATE(7971), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200199] = 4, + ACTIONS(5756), 1, + anon_sym_COMMA, + ACTIONS(15742), 1, + anon_sym_RPAREN, + STATE(7368), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200215] = 2, + ACTIONS(7303), 3, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200227] = 4, + ACTIONS(15744), 1, + anon_sym_COMMA, + ACTIONS(15746), 1, + anon_sym_RBRACK, + STATE(7440), 1, + aux_sym_array_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200243] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15748), 1, + anon_sym_RBRACK, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200259] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15750), 1, + anon_sym_RBRACK, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200275] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15752), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200291] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15754), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200307] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15750), 1, + anon_sym_RPAREN, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200323] = 4, + ACTIONS(15623), 1, + anon_sym_COMMA, + ACTIONS(15756), 1, + sym_else, + STATE(7659), 1, + aux_sym_if_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200339] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15758), 1, + anon_sym_in, + STATE(10203), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200355] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15760), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200371] = 4, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(15762), 1, + anon_sym_RPAREN, + STATE(7707), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200387] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15764), 1, + anon_sym_RPAREN, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200403] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15766), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200419] = 2, + ACTIONS(8294), 3, + sym__semi, + sym_catch_keyword, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200431] = 2, + ACTIONS(15089), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200443] = 2, + ACTIONS(15101), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200455] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15768), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200471] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15770), 1, + anon_sym_RPAREN, + STATE(7723), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200487] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15772), 1, + anon_sym_GT, + STATE(7672), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200503] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(15774), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200519] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15776), 1, + anon_sym_RPAREN, + STATE(7997), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200535] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15778), 1, + anon_sym_in, + STATE(10210), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200551] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15780), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200567] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15782), 1, + anon_sym_GT, + STATE(7685), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200583] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12991), 1, + anon_sym_in, + STATE(10077), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200599] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(15784), 1, + anon_sym_RPAREN, + STATE(7389), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200615] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15786), 1, + anon_sym_RPAREN, + STATE(7726), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200631] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15788), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200647] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15790), 1, + anon_sym_GT, + STATE(7690), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200663] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15792), 1, + anon_sym_in, + STATE(10215), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200679] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15794), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200695] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15796), 1, + anon_sym_GT, + STATE(7693), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200711] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(15798), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200727] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15800), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200743] = 4, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(15802), 1, + anon_sym_RPAREN, + STATE(7707), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200759] = 4, + ACTIONS(5756), 1, + anon_sym_COMMA, + ACTIONS(15804), 1, + anon_sym_RPAREN, + STATE(7368), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200775] = 2, + ACTIONS(15054), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200787] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15806), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200803] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15808), 1, + anon_sym_RBRACK, + STATE(7665), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200819] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15810), 1, + anon_sym_in, + STATE(9973), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200835] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15812), 1, + anon_sym_GT, + STATE(7700), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200851] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15814), 1, + anon_sym_RBRACK, + STATE(7666), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200867] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15814), 1, + anon_sym_RPAREN, + STATE(7669), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200883] = 2, + ACTIONS(15816), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200895] = 4, + ACTIONS(15020), 1, + anon_sym_RPAREN, + ACTIONS(15818), 1, + anon_sym_COMMA, + STATE(7707), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200911] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(15821), 1, + anon_sym_RPAREN, + STATE(7674), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200927] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15823), 1, + anon_sym_GT, + STATE(7675), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200943] = 4, + ACTIONS(5856), 1, + anon_sym_COMMA, + ACTIONS(15825), 1, + anon_sym_RPAREN, + STATE(7407), 1, + aux_sym_enum_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200959] = 4, + ACTIONS(5856), 1, + anon_sym_COMMA, + ACTIONS(15827), 1, + anon_sym_RPAREN, + STATE(7407), 1, + aux_sym_enum_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200975] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15829), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [200991] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15831), 1, + anon_sym_in, + STATE(10216), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201007] = 2, + ACTIONS(8298), 3, + sym__semi, + sym_catch_keyword, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201019] = 3, + ACTIONS(15833), 1, + anon_sym_BANG, + ACTIONS(6814), 2, + sym_where_keyword, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201033] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15835), 1, + anon_sym_GT, + STATE(7712), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201049] = 2, + ACTIONS(15837), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201061] = 2, + ACTIONS(12599), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201073] = 4, + ACTIONS(15839), 1, + anon_sym_COMMA, + ACTIONS(15842), 1, + anon_sym_GT, + STATE(7719), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201089] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15844), 1, + anon_sym_GT, + STATE(7799), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201105] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15846), 1, + anon_sym_RPAREN, + STATE(7741), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201121] = 2, + ACTIONS(12873), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201133] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15848), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201149] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15850), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201165] = 4, + ACTIONS(15269), 1, + anon_sym_COMMA, + ACTIONS(15852), 1, + anon_sym_RPAREN, + STATE(7383), 1, + aux_sym__interpolation_contents_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201181] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15854), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201197] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15856), 1, + anon_sym_GT, + STATE(7724), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201213] = 2, + ACTIONS(12599), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201225] = 2, + ACTIONS(14960), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201237] = 4, + ACTIONS(15858), 1, + anon_sym_COMMA, + ACTIONS(15860), 1, + anon_sym_RBRACK, + STATE(7458), 1, + aux_sym_dictionary_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201253] = 4, + ACTIONS(15862), 1, + sym_raw_str_part, + ACTIONS(15865), 1, + sym_raw_str_end_part, + STATE(7731), 1, + aux_sym_raw_string_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201269] = 4, + ACTIONS(15867), 1, + anon_sym_COMMA, + ACTIONS(15869), 1, + anon_sym_RBRACK, + STATE(7440), 1, + aux_sym_array_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201285] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15871), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201301] = 2, + ACTIONS(15873), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201313] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15875), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201329] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15877), 1, + anon_sym_RPAREN, + STATE(7757), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201345] = 4, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(15879), 1, + anon_sym_RPAREN, + STATE(7707), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201361] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15881), 1, + anon_sym_RPAREN, + STATE(8059), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201377] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(15883), 1, + anon_sym_RPAREN, + STATE(7695), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201393] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15885), 1, + anon_sym_RPAREN, + STATE(7785), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201409] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15887), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201425] = 4, + ACTIONS(5756), 1, + anon_sym_COMMA, + ACTIONS(15889), 1, + anon_sym_RPAREN, + STATE(7368), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201441] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15891), 1, + anon_sym_GT, + STATE(7733), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201457] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15893), 1, + anon_sym_in, + STATE(10056), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201473] = 4, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(14339), 1, + anon_sym_LBRACE, + STATE(10004), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201489] = 2, + ACTIONS(15816), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201501] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15895), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201517] = 2, + ACTIONS(14964), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201529] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15897), 1, + anon_sym_GT, + STATE(7747), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201545] = 2, + ACTIONS(12861), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201557] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15899), 1, + anon_sym_RPAREN, + STATE(7794), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201573] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15901), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201589] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15903), 1, + anon_sym_GT, + STATE(7752), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201605] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15905), 1, + anon_sym_RPAREN, + STATE(7795), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201621] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15907), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201637] = 2, + ACTIONS(15054), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201649] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15909), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201665] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15911), 1, + anon_sym_GT, + STATE(7755), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201681] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15913), 1, + anon_sym_RPAREN, + STATE(7800), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201697] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15915), 1, + anon_sym_RPAREN, + STATE(8077), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201713] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15917), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201729] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15919), 1, + anon_sym_in, + STATE(9970), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201745] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15921), 1, + anon_sym_GT, + STATE(7761), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201761] = 2, + ACTIONS(15837), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201773] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15923), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201789] = 2, + ACTIONS(12599), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201801] = 4, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(14411), 1, + anon_sym_LBRACE, + STATE(10001), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201817] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15925), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201833] = 3, + ACTIONS(6678), 1, + sym__as_custom, + ACTIONS(15927), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201847] = 3, + ACTIONS(6666), 1, + sym__as_custom, + ACTIONS(15929), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201861] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15931), 1, + anon_sym_in, + STATE(9969), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201877] = 2, + ACTIONS(15050), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201889] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15933), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201905] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15935), 1, + anon_sym_GT, + STATE(7773), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201921] = 4, + ACTIONS(15937), 1, + anon_sym_COMMA, + ACTIONS(15939), 1, + anon_sym_RBRACK, + STATE(7730), 1, + aux_sym_dictionary_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201937] = 2, + ACTIONS(14964), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201949] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(15941), 1, + anon_sym_RPAREN, + STATE(8163), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201965] = 2, + ACTIONS(14960), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201977] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15943), 1, + anon_sym_in, + STATE(10230), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [201993] = 2, + ACTIONS(12418), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202005] = 2, + ACTIONS(15101), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202017] = 2, + ACTIONS(15089), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202029] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15945), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202045] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15947), 1, + anon_sym_GT, + STATE(7783), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202061] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15949), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202077] = 4, + ACTIONS(15951), 1, + anon_sym_RPAREN, + ACTIONS(15953), 1, + anon_sym_COMMA, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202093] = 4, + ACTIONS(127), 1, + sym_raw_str_part, + ACTIONS(15956), 1, + sym_raw_str_end_part, + STATE(7731), 1, + aux_sym_raw_string_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202109] = 2, + ACTIONS(15018), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202121] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15958), 1, + anon_sym_RPAREN, + STATE(7819), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202137] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15960), 1, + anon_sym_RPAREN, + STATE(7820), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202153] = 4, + ACTIONS(4789), 1, + sym__dot_custom, + STATE(1366), 1, + sym_navigation_suffix, + STATE(6244), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202169] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(14310), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202185] = 2, + ACTIONS(12743), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202197] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15962), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202213] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15964), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202229] = 4, + ACTIONS(15036), 1, + anon_sym_COMMA, + ACTIONS(15966), 1, + anon_sym_LBRACE, + STATE(7652), 1, + aux_sym_if_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202245] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15968), 1, + anon_sym_GT, + STATE(7817), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202261] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15970), 1, + anon_sym_RPAREN, + STATE(7570), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202277] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15972), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202293] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15974), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202309] = 2, + ACTIONS(15044), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202321] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(15976), 1, + anon_sym_RPAREN, + STATE(7841), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202337] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15978), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202353] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15980), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202369] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15982), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202385] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(15984), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202401] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(15986), 1, + anon_sym_RPAREN, + STATE(7836), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202417] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15988), 1, + anon_sym_RPAREN, + STATE(7803), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202433] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(15990), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202449] = 2, + ACTIONS(14987), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202461] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(15992), 1, + anon_sym_GT, + STATE(7805), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202477] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15994), 1, + anon_sym_RPAREN, + STATE(7804), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202493] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(15996), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202509] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(15998), 1, + anon_sym_in, + STATE(9921), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202525] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(16000), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202541] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5840), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202557] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16002), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202573] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16004), 1, + anon_sym_RPAREN, + STATE(7903), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202589] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16006), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202605] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16008), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202621] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16010), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202637] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16012), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202653] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16014), 1, + anon_sym_GT, + STATE(7821), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202669] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16016), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202685] = 2, + ACTIONS(15026), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202697] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16018), 1, + anon_sym_RPAREN, + STATE(7813), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202713] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(16020), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202729] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16022), 1, + anon_sym_RPAREN, + STATE(7844), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202745] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16024), 1, + anon_sym_RPAREN, + STATE(7822), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202761] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13422), 1, + anon_sym_in, + STATE(9841), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202777] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16026), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202793] = 4, + ACTIONS(15036), 1, + anon_sym_COMMA, + ACTIONS(16028), 1, + anon_sym_LBRACE, + STATE(7548), 1, + aux_sym_if_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202809] = 4, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(16030), 1, + anon_sym_RPAREN, + STATE(7707), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202825] = 4, + ACTIONS(5792), 1, + anon_sym_COMMA, + ACTIONS(16032), 1, + anon_sym_RPAREN, + STATE(8134), 1, + aux_sym__playground_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202841] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16034), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202857] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16036), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202873] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16038), 1, + anon_sym_GT, + STATE(7831), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202889] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(14284), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202905] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16040), 1, + anon_sym_RPAREN, + STATE(7835), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202921] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16042), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202937] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16044), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202953] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16046), 1, + anon_sym_RPAREN, + STATE(7824), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202969] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16048), 1, + anon_sym_GT, + STATE(7840), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [202985] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16050), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203001] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16052), 1, + anon_sym_RPAREN, + STATE(7924), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203017] = 2, + ACTIONS(12359), 3, + sym__arrow_operator_custom, + sym_where_keyword, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203029] = 2, + ACTIONS(4572), 3, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203041] = 4, + ACTIONS(15474), 1, + anon_sym_COMMA, + ACTIONS(16054), 1, + anon_sym_RBRACK, + STATE(7883), 1, + aux_sym_capture_list_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203057] = 3, + ACTIONS(16056), 1, + anon_sym_LT, + ACTIONS(4565), 2, + sym__semi, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203071] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16058), 1, + anon_sym_RPAREN, + STATE(7857), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203087] = 2, + ACTIONS(4979), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203099] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16060), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203115] = 4, + ACTIONS(15212), 1, + anon_sym_COMMA, + ACTIONS(16062), 1, + anon_sym_RPAREN, + STATE(8011), 1, + aux_sym_availability_condition_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203131] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16064), 1, + anon_sym_RPAREN, + STATE(7879), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203147] = 2, + ACTIONS(12883), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203159] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(14224), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203175] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16066), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203191] = 4, + ACTIONS(5756), 1, + anon_sym_COMMA, + ACTIONS(16068), 1, + anon_sym_RPAREN, + STATE(7368), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203207] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16070), 1, + anon_sym_RBRACK, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203223] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16072), 1, + anon_sym_RBRACK, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203239] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16074), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203255] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16072), 1, + anon_sym_RPAREN, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203271] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16076), 1, + anon_sym_RPAREN, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203287] = 2, + ACTIONS(12729), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203299] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7272), 4, + sym_multiline_comment, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + [203311] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16078), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203327] = 4, + ACTIONS(15623), 1, + anon_sym_COMMA, + ACTIONS(16080), 1, + sym_else, + STATE(7585), 1, + aux_sym_if_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203343] = 4, + ACTIONS(14856), 1, + anon_sym_COLON, + ACTIONS(16082), 1, + sym__eq_custom, + STATE(10358), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203359] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7268), 4, + sym_multiline_comment, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + [203371] = 2, + ACTIONS(15004), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203383] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16084), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203399] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16086), 1, + anon_sym_in, + STATE(10073), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203415] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16088), 1, + anon_sym_GT, + STATE(7861), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203431] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(16090), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203447] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16092), 1, + anon_sym_RPAREN, + STATE(7871), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203463] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16094), 1, + anon_sym_in, + STATE(9917), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203479] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(16096), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203495] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16098), 1, + anon_sym_RPAREN, + STATE(7895), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203511] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16100), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203527] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16102), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203543] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16104), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203559] = 4, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(16106), 1, + anon_sym_RPAREN, + STATE(7707), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203575] = 4, + ACTIONS(16108), 1, + anon_sym_COMMA, + ACTIONS(16111), 1, + anon_sym_RBRACK, + STATE(7883), 1, + aux_sym_capture_list_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203591] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16113), 1, + anon_sym_GT, + STATE(7880), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203607] = 3, + ACTIONS(6674), 1, + sym__as_custom, + ACTIONS(16115), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203621] = 4, + ACTIONS(15212), 1, + anon_sym_COMMA, + ACTIONS(16117), 1, + anon_sym_RPAREN, + STATE(7853), 1, + aux_sym_availability_condition_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203637] = 4, + ACTIONS(13292), 1, + anon_sym_in, + ACTIONS(13294), 1, + sym__arrow_operator_custom, + STATE(4309), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203653] = 4, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8378), 1, + sym__block, + STATE(8449), 1, + sym_function_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203669] = 2, + ACTIONS(12957), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203681] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16119), 1, + anon_sym_RPAREN, + STATE(7881), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203697] = 4, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(14411), 1, + anon_sym_LBRACE, + STATE(9999), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203713] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16121), 1, + anon_sym_RPAREN, + STATE(7806), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203729] = 4, + ACTIONS(5766), 1, + anon_sym_RPAREN, + ACTIONS(5768), 1, + anon_sym_COMMA, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203745] = 4, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(14339), 1, + anon_sym_LBRACE, + STATE(9998), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203761] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16123), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203777] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16125), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203793] = 2, + ACTIONS(12418), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203805] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16127), 1, + anon_sym_RBRACK, + STATE(7859), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203821] = 4, + ACTIONS(8280), 1, + anon_sym_RBRACE, + ACTIONS(16129), 1, + sym__semi, + STATE(7622), 1, + aux_sym_statements_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203837] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5834), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203853] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16131), 1, + anon_sym_RBRACK, + STATE(7860), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203869] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16131), 1, + anon_sym_RPAREN, + STATE(7862), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203885] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16133), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203901] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16135), 1, + anon_sym_RPAREN, + STATE(7863), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203917] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16137), 1, + anon_sym_GT, + STATE(7866), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203933] = 2, + ACTIONS(15018), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203945] = 4, + ACTIONS(6910), 1, + anon_sym_LBRACE, + ACTIONS(15722), 1, + anon_sym_COMMA, + STATE(7649), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203961] = 2, + ACTIONS(15004), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203973] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16139), 1, + anon_sym_RPAREN, + STATE(7913), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [203989] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13008), 1, + anon_sym_in, + STATE(10063), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204005] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(16141), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204021] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16143), 1, + anon_sym_RPAREN, + STATE(7917), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204037] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16145), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204053] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16147), 1, + anon_sym_in, + STATE(10237), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204069] = 4, + ACTIONS(16149), 1, + anon_sym_RPAREN, + ACTIONS(16151), 1, + anon_sym_COMMA, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204085] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16154), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204101] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16156), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204117] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16158), 1, + anon_sym_in, + STATE(10238), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204133] = 4, + ACTIONS(16160), 1, + anon_sym_COMMA, + ACTIONS(16162), 1, + anon_sym_RBRACK, + STATE(7660), 1, + aux_sym_dictionary_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204149] = 4, + ACTIONS(5756), 1, + anon_sym_COMMA, + ACTIONS(16164), 1, + anon_sym_RPAREN, + STATE(7368), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204165] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16166), 1, + anon_sym_RBRACK, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204181] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16168), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204197] = 2, + ACTIONS(12529), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204209] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16170), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204225] = 2, + ACTIONS(12529), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204237] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16172), 1, + anon_sym_GT, + STATE(7916), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204253] = 2, + ACTIONS(11874), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204265] = 2, + ACTIONS(12529), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204277] = 4, + ACTIONS(6900), 1, + anon_sym_LBRACE, + ACTIONS(16174), 1, + anon_sym_COMMA, + STATE(7929), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204293] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16177), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204309] = 2, + ACTIONS(12529), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204321] = 2, + ACTIONS(11874), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204333] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16179), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204349] = 4, + ACTIONS(16181), 1, + anon_sym_COMMA, + ACTIONS(16183), 1, + anon_sym_RBRACK, + STATE(7458), 1, + aux_sym_dictionary_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204365] = 2, + ACTIONS(12263), 3, + sym__arrow_operator_custom, + sym_where_keyword, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204377] = 2, + ACTIONS(15050), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204389] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12753), 1, + anon_sym_in, + STATE(10049), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204405] = 4, + ACTIONS(16185), 1, + anon_sym_COMMA, + ACTIONS(16187), 1, + anon_sym_RBRACK, + STATE(7440), 1, + aux_sym_array_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204421] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16189), 1, + anon_sym_in, + STATE(10261), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204437] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12779), 1, + anon_sym_in, + STATE(10052), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204453] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7307), 4, + sym_multiline_comment, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + [204465] = 3, + ACTIONS(6662), 1, + sym__as_custom, + ACTIONS(16191), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204479] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16193), 1, + anon_sym_RPAREN, + STATE(7896), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204495] = 4, + ACTIONS(5756), 1, + anon_sym_COMMA, + ACTIONS(16195), 1, + anon_sym_RPAREN, + STATE(7368), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204511] = 4, + ACTIONS(5856), 1, + anon_sym_COMMA, + ACTIONS(16197), 1, + anon_sym_RPAREN, + STATE(7407), 1, + aux_sym_enum_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204527] = 2, + ACTIONS(14964), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204539] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16199), 1, + anon_sym_in, + STATE(10241), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204555] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16201), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204571] = 4, + ACTIONS(15588), 1, + anon_sym_LBRACE, + STATE(8773), 1, + sym_function_body, + STATE(8783), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204587] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16203), 1, + anon_sym_GT, + STATE(7933), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204603] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16205), 1, + anon_sym_in, + STATE(9947), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204619] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16207), 1, + anon_sym_RPAREN, + STATE(8037), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204635] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16209), 1, + anon_sym_RPAREN, + STATE(8012), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204651] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16211), 1, + anon_sym_RPAREN, + STATE(7948), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204667] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13384), 1, + anon_sym_in, + STATE(9831), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204683] = 4, + ACTIONS(8247), 1, + sym_else, + ACTIONS(16213), 1, + anon_sym_COMMA, + STATE(7956), 1, + aux_sym_if_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204699] = 2, + ACTIONS(12445), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204711] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16216), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204727] = 2, + ACTIONS(15089), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204739] = 3, + ACTIONS(16220), 1, + sym_raw_str_continuing_indicator, + ACTIONS(16218), 2, + sym_raw_str_part, + sym_raw_str_end_part, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204753] = 4, + ACTIONS(127), 1, + sym_raw_str_part, + ACTIONS(16222), 1, + sym_raw_str_end_part, + STATE(7731), 1, + aux_sym_raw_string_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204769] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16224), 1, + anon_sym_in, + STATE(9966), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204785] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16226), 1, + anon_sym_RPAREN, + STATE(7590), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204801] = 4, + ACTIONS(12493), 1, + anon_sym_RPAREN, + ACTIONS(16228), 1, + anon_sym_COMMA, + STATE(7964), 1, + aux_sym_lambda_function_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204817] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16231), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204833] = 4, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8378), 1, + sym__block, + STATE(10385), 1, + sym_function_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204849] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(16233), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204865] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16235), 1, + anon_sym_RPAREN, + STATE(8017), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204881] = 4, + ACTIONS(5658), 1, + sym__dot_custom, + STATE(2717), 1, + sym_navigation_suffix, + STATE(6050), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204897] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16237), 1, + anon_sym_GT, + STATE(7958), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204913] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16239), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204929] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16241), 1, + anon_sym_in, + STATE(10244), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204945] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16243), 1, + anon_sym_RPAREN, + STATE(7965), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204961] = 4, + ACTIONS(16245), 1, + anon_sym_RPAREN, + ACTIONS(16247), 1, + anon_sym_COMMA, + STATE(7974), 1, + aux_sym__interpolation_contents_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204977] = 4, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(14055), 1, + anon_sym_LBRACE, + STATE(10091), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [204993] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16250), 1, + anon_sym_RPAREN, + STATE(8007), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205009] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16252), 1, + anon_sym_in, + STATE(10249), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205025] = 2, + ACTIONS(16254), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205037] = 4, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(14055), 1, + anon_sym_LBRACE, + STATE(10098), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205053] = 3, + ACTIONS(16256), 1, + anon_sym_LPAREN, + ACTIONS(6046), 2, + anon_sym_LBRACK, + anon_sym_AT, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205067] = 4, + ACTIONS(5814), 1, + sym__dot_custom, + STATE(2776), 1, + sym_navigation_suffix, + STATE(6294), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205083] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16258), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205099] = 4, + ACTIONS(15265), 1, + anon_sym_LBRACE, + STATE(2871), 1, + sym_function_body, + STATE(2872), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205115] = 4, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(16260), 1, + anon_sym_RPAREN, + STATE(7707), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205131] = 4, + ACTIONS(127), 1, + sym_raw_str_part, + ACTIONS(16262), 1, + sym_raw_str_end_part, + STATE(7731), 1, + aux_sym_raw_string_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205147] = 2, + ACTIONS(8302), 3, + sym__semi, + sym_catch_keyword, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205159] = 3, + ACTIONS(16266), 1, + anon_sym_COLON, + ACTIONS(16264), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205173] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12741), 1, + anon_sym_in, + STATE(10116), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205189] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16268), 1, + anon_sym_GT, + STATE(8104), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205205] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16270), 1, + anon_sym_in, + STATE(10275), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205221] = 4, + ACTIONS(5762), 1, + anon_sym_COMMA, + ACTIONS(15157), 1, + anon_sym_COLON, + STATE(8161), 1, + aux_sym_switch_entry_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205237] = 4, + ACTIONS(15328), 1, + anon_sym_COMMA, + ACTIONS(16272), 1, + anon_sym_GT, + STATE(7719), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205253] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16274), 1, + anon_sym_in, + STATE(10256), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205269] = 2, + ACTIONS(11835), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205281] = 4, + ACTIONS(16276), 1, + anon_sym_COMMA, + ACTIONS(16278), 1, + anon_sym_RBRACK, + STATE(8032), 1, + aux_sym_dictionary_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205297] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16280), 1, + anon_sym_RPAREN, + STATE(7982), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205313] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16282), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205329] = 4, + ACTIONS(15340), 1, + anon_sym_COMMA, + ACTIONS(16284), 1, + anon_sym_RPAREN, + STATE(7538), 1, + aux_sym__function_value_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205345] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16286), 1, + anon_sym_in, + STATE(10257), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205361] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16288), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205377] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16290), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205393] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16292), 1, + anon_sym_GT, + STATE(8000), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205409] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16294), 1, + anon_sym_RPAREN, + STATE(8145), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205425] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16296), 1, + anon_sym_RPAREN, + STATE(8001), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205441] = 4, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(14411), 1, + anon_sym_LBRACE, + STATE(9996), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205457] = 2, + ACTIONS(11835), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205469] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16298), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205485] = 2, + ACTIONS(12307), 3, + sym__arrow_operator_custom, + sym_where_keyword, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205497] = 4, + ACTIONS(16300), 1, + anon_sym_RBRACE, + ACTIONS(16302), 1, + sym__semi, + STATE(8009), 1, + aux_sym__protocol_member_declarations_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205513] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16305), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205529] = 4, + ACTIONS(16307), 1, + anon_sym_RPAREN, + ACTIONS(16309), 1, + anon_sym_COMMA, + STATE(8011), 1, + aux_sym_availability_condition_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205545] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16312), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205561] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16314), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205577] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16316), 1, + anon_sym_in, + STATE(10260), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205593] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16318), 1, + anon_sym_GT, + STATE(8010), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205609] = 2, + ACTIONS(15101), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205621] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16320), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205637] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16322), 1, + anon_sym_RPAREN, + STATE(8013), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205653] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13098), 1, + anon_sym_in, + STATE(10026), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205669] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16324), 1, + anon_sym_RBRACK, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205685] = 4, + ACTIONS(5856), 1, + anon_sym_COMMA, + ACTIONS(16326), 1, + anon_sym_RPAREN, + STATE(7407), 1, + aux_sym_enum_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205701] = 4, + ACTIONS(16328), 1, + anon_sym_RBRACE, + ACTIONS(16330), 1, + sym__semi, + STATE(7608), 1, + aux_sym__protocol_member_declarations_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205717] = 4, + ACTIONS(5756), 1, + anon_sym_COMMA, + ACTIONS(16332), 1, + anon_sym_RPAREN, + STATE(7368), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205733] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(16334), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205749] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16336), 1, + anon_sym_RPAREN, + STATE(8078), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205765] = 3, + ACTIONS(16338), 1, + anon_sym_COLON, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7289), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [205779] = 2, + ACTIONS(14960), 3, + sym__as_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205791] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16340), 1, + anon_sym_RPAREN, + STATE(7668), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205807] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16324), 1, + anon_sym_RPAREN, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205823] = 4, + ACTIONS(16342), 1, + anon_sym_COMMA, + ACTIONS(16344), 1, + anon_sym_RBRACK, + STATE(7440), 1, + aux_sym_array_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205839] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16346), 1, + anon_sym_RPAREN, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205855] = 4, + ACTIONS(16348), 1, + anon_sym_COMMA, + ACTIONS(16350), 1, + anon_sym_RBRACK, + STATE(7458), 1, + aux_sym_dictionary_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205871] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16352), 1, + anon_sym_GT, + STATE(8056), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205887] = 2, + ACTIONS(12729), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205899] = 2, + ACTIONS(8286), 3, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205911] = 2, + ACTIONS(14968), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205923] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16354), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205939] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16356), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205955] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16358), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205971] = 2, + ACTIONS(7299), 3, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205983] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(16360), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [205999] = 4, + ACTIONS(12623), 1, + anon_sym_RPAREN, + ACTIONS(16362), 1, + anon_sym_COMMA, + STATE(7964), 1, + aux_sym_lambda_function_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206015] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16364), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206031] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16366), 1, + anon_sym_GT, + STATE(8039), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206047] = 2, + ACTIONS(16368), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206059] = 2, + ACTIONS(11730), 3, + sym__arrow_operator_custom, + sym_where_keyword, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206071] = 2, + ACTIONS(14968), 3, + sym__eq_custom, + sym__as_custom, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206083] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16370), 1, + anon_sym_RPAREN, + STATE(7930), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206099] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16372), 1, + anon_sym_RPAREN, + STATE(8043), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206115] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16374), 1, + anon_sym_RPAREN, + STATE(7658), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206131] = 2, + ACTIONS(8270), 3, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206143] = 3, + ACTIONS(6238), 1, + sym__as_custom, + ACTIONS(1315), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206157] = 4, + ACTIONS(16376), 1, + anon_sym_COMMA, + ACTIONS(16378), 1, + anon_sym_RBRACK, + STATE(7934), 1, + aux_sym_dictionary_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206173] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16380), 1, + anon_sym_in, + STATE(10274), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206189] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16382), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206205] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16384), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206221] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16386), 1, + anon_sym_RPAREN, + STATE(8176), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206237] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16388), 1, + anon_sym_RPAREN, + STATE(8110), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206253] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16390), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206269] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(16392), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206285] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13081), 1, + anon_sym_in, + STATE(10031), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206301] = 4, + ACTIONS(5956), 1, + anon_sym_RPAREN, + ACTIONS(16394), 1, + anon_sym_COMMA, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206317] = 4, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(14411), 1, + anon_sym_LBRACE, + STATE(9994), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206333] = 2, + ACTIONS(16397), 3, + sym_where_keyword, + anon_sym_COLON, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206345] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5770), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206361] = 2, + ACTIONS(12873), 3, + sym_where_keyword, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206373] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16399), 1, + anon_sym_GT, + STATE(8113), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206389] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16401), 1, + anon_sym_RPAREN, + STATE(8114), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206405] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16403), 1, + anon_sym_RPAREN, + STATE(8115), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206421] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16403), 1, + anon_sym_RBRACK, + STATE(8116), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206437] = 2, + ACTIONS(16405), 3, + sym__eq_custom, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206449] = 4, + ACTIONS(15340), 1, + anon_sym_COMMA, + ACTIONS(16407), 1, + anon_sym_RPAREN, + STATE(8118), 1, + aux_sym__function_value_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206465] = 4, + ACTIONS(15328), 1, + anon_sym_COMMA, + ACTIONS(16409), 1, + anon_sym_GT, + STATE(8119), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206481] = 2, + ACTIONS(5308), 3, + sym__semi, + sym_else, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206493] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(16411), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206509] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16413), 1, + anon_sym_RBRACK, + STATE(8124), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206525] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16415), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206541] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16417), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206557] = 4, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(16419), 1, + anon_sym_RPAREN, + STATE(7707), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206573] = 4, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(14216), 1, + anon_sym_LBRACE, + STATE(9904), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206589] = 4, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(14216), 1, + anon_sym_LBRACE, + STATE(9901), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206605] = 2, + ACTIONS(16368), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206617] = 4, + ACTIONS(5792), 1, + anon_sym_COMMA, + ACTIONS(16421), 1, + anon_sym_RPAREN, + STATE(8134), 1, + aux_sym__playground_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206633] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16423), 1, + anon_sym_RPAREN, + STATE(8120), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206649] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4525), 4, + sym_multiline_comment, + sym__semi, + anon_sym_COLON, + anon_sym_RBRACE, + [206661] = 4, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(14210), 1, + anon_sym_LBRACE, + STATE(9900), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206677] = 4, + ACTIONS(12655), 1, + anon_sym_RPAREN, + ACTIONS(16362), 1, + anon_sym_COMMA, + STATE(8042), 1, + aux_sym_lambda_function_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206693] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16425), 1, + anon_sym_in, + STATE(9953), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206709] = 4, + ACTIONS(15212), 1, + anon_sym_COMMA, + ACTIONS(16427), 1, + anon_sym_RPAREN, + STATE(8130), 1, + aux_sym_availability_condition_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206725] = 4, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(14216), 1, + anon_sym_LBRACE, + STATE(9899), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206741] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16429), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206757] = 4, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8378), 1, + sym__block, + STATE(8692), 1, + sym_function_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206773] = 2, + ACTIONS(12957), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206785] = 4, + ACTIONS(127), 1, + sym_raw_str_part, + ACTIONS(16431), 1, + sym_raw_str_end_part, + STATE(7731), 1, + aux_sym_raw_string_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206801] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16433), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206817] = 4, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(14216), 1, + anon_sym_LBRACE, + STATE(9898), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206833] = 2, + ACTIONS(8290), 3, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206845] = 4, + ACTIONS(11726), 1, + sym_where_keyword, + ACTIONS(14210), 1, + anon_sym_LBRACE, + STATE(9895), 1, + sym_type_constraints, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206861] = 4, + ACTIONS(5718), 1, + sym__dot_custom, + STATE(2713), 1, + sym_navigation_suffix, + STATE(6138), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206877] = 2, + ACTIONS(12418), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206889] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(16435), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206905] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16437), 1, + anon_sym_GT, + STATE(8091), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206921] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16439), 1, + anon_sym_RPAREN, + STATE(8095), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206937] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16441), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206953] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16443), 1, + anon_sym_in, + STATE(10266), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206969] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16445), 1, + anon_sym_in, + STATE(10267), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206985] = 2, + ACTIONS(15018), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [206997] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16447), 1, + anon_sym_RPAREN, + STATE(7599), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207013] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16449), 1, + anon_sym_in, + STATE(9952), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207029] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16451), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207045] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16453), 1, + anon_sym_in, + STATE(10270), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207061] = 4, + ACTIONS(16455), 1, + anon_sym_in, + ACTIONS(16457), 1, + sym__arrow_operator_custom, + STATE(4323), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207077] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16459), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207093] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16461), 1, + anon_sym_RPAREN, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207109] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16463), 1, + anon_sym_RPAREN, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207125] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16463), 1, + anon_sym_RBRACK, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207141] = 2, + ACTIONS(16465), 3, + sym__semi, + anon_sym_LBRACE, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207153] = 4, + ACTIONS(15340), 1, + anon_sym_COMMA, + ACTIONS(16467), 1, + anon_sym_RPAREN, + STATE(7538), 1, + aux_sym__function_value_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207169] = 4, + ACTIONS(15328), 1, + anon_sym_COMMA, + ACTIONS(16469), 1, + anon_sym_GT, + STATE(7719), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207185] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16471), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207201] = 2, + ACTIONS(12445), 3, + sym_where_keyword, + sym__as_custom, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207213] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16473), 1, + anon_sym_RPAREN, + STATE(8180), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207229] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(12955), 1, + anon_sym_in, + STATE(10000), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207245] = 4, + ACTIONS(15214), 1, + anon_sym_COMMA, + ACTIONS(16475), 1, + anon_sym_RBRACK, + STATE(7072), 1, + aux_sym__constructor_value_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207261] = 4, + ACTIONS(5756), 1, + anon_sym_COMMA, + ACTIONS(16477), 1, + anon_sym_RPAREN, + STATE(7368), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207277] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16479), 1, + anon_sym_in, + STATE(9949), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207293] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16481), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207309] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16483), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207325] = 4, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(16485), 1, + anon_sym_RPAREN, + STATE(7707), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207341] = 4, + ACTIONS(15212), 1, + anon_sym_COMMA, + ACTIONS(16487), 1, + anon_sym_RPAREN, + STATE(8011), 1, + aux_sym_availability_condition_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207357] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16489), 1, + anon_sym_RPAREN, + STATE(8153), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207373] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16491), 1, + anon_sym_GT, + STATE(8127), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207389] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16493), 1, + anon_sym_RPAREN, + STATE(8128), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207405] = 4, + ACTIONS(16495), 1, + anon_sym_RPAREN, + ACTIONS(16497), 1, + anon_sym_COMMA, + STATE(8134), 1, + aux_sym__playground_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207421] = 2, + ACTIONS(7307), 3, + sym__semi, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207433] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16500), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207449] = 4, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8378), 1, + sym__block, + STATE(8691), 1, + sym_function_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207465] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16502), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207481] = 4, + ACTIONS(16504), 1, + anon_sym_get, + ACTIONS(16506), 1, + anon_sym_set, + ACTIONS(16508), 1, + anon_sym__modify, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207497] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16510), 1, + anon_sym_GT, + STATE(8136), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207513] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16512), 1, + anon_sym_RPAREN, + STATE(8138), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207529] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16514), 1, + anon_sym_RPAREN, + STATE(8160), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207545] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16516), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207561] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(13398), 1, + anon_sym_in, + STATE(9880), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207577] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16518), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207593] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(13512), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207609] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16520), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207625] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16522), 1, + anon_sym_GT, + STATE(8171), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207641] = 4, + ACTIONS(5762), 1, + anon_sym_COMMA, + ACTIONS(5764), 1, + anon_sym_COLON, + STATE(8161), 1, + aux_sym_switch_entry_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207657] = 4, + ACTIONS(5792), 1, + anon_sym_COMMA, + ACTIONS(16524), 1, + anon_sym_RPAREN, + STATE(8134), 1, + aux_sym__playground_literal_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207673] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16526), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207689] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16528), 1, + anon_sym_RPAREN, + STATE(8169), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207705] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16530), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207721] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16532), 1, + anon_sym_GT, + STATE(8143), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207737] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16534), 1, + anon_sym_in, + STATE(9938), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207753] = 2, + ACTIONS(5320), 3, + sym__semi, + sym_else, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207765] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16536), 1, + anon_sym_RPAREN, + STATE(8147), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207781] = 4, + ACTIONS(13518), 1, + anon_sym_COMMA, + ACTIONS(16538), 1, + anon_sym_RPAREN, + STATE(7603), 1, + aux_sym_non_binding_pattern_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207797] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16540), 1, + anon_sym_RPAREN, + STATE(8173), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207813] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16542), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207829] = 4, + ACTIONS(16544), 1, + anon_sym_COMMA, + ACTIONS(16547), 1, + anon_sym_COLON, + STATE(8161), 1, + aux_sym_switch_entry_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207845] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16549), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207861] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16551), 1, + anon_sym_RPAREN, + STATE(7915), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207877] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16553), 1, + anon_sym_GT, + STATE(8162), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207893] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5890), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207909] = 2, + ACTIONS(15198), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207921] = 4, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(16555), 1, + anon_sym_RPAREN, + STATE(7707), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207937] = 4, + ACTIONS(13478), 1, + anon_sym_COMMA, + ACTIONS(16557), 1, + anon_sym_RPAREN, + STATE(7707), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207953] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16559), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207969] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16561), 1, + anon_sym_RPAREN, + STATE(8178), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [207985] = 4, + ACTIONS(15287), 1, + anon_sym_COMMA, + ACTIONS(16563), 1, + anon_sym_GT, + STATE(7623), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208001] = 2, + ACTIONS(16565), 3, + sym_where_keyword, + anon_sym_COLON, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208013] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16567), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208029] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16569), 1, + anon_sym_RPAREN, + STATE(8182), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208045] = 4, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(16571), 1, + anon_sym_RPAREN, + STATE(8062), 1, + aux_sym_attribute_repeat3, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208061] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16573), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208077] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16575), 1, + anon_sym_RPAREN, + STATE(8183), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208093] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16577), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208109] = 4, + ACTIONS(12048), 1, + anon_sym_COLON, + ACTIONS(16579), 1, + anon_sym_in, + STATE(10271), 1, + sym_type_annotation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208125] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16581), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208141] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16583), 1, + anon_sym_RPAREN, + STATE(8185), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208157] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16585), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208173] = 4, + ACTIONS(15220), 1, + anon_sym_COMMA, + ACTIONS(16587), 1, + anon_sym_RPAREN, + STATE(7786), 1, + aux_sym_for_statement_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208189] = 4, + ACTIONS(15240), 1, + anon_sym_COMMA, + ACTIONS(16589), 1, + anon_sym_RPAREN, + STATE(8151), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208205] = 4, + ACTIONS(15255), 1, + anon_sym_COMMA, + ACTIONS(16591), 1, + anon_sym_RPAREN, + STATE(7645), 1, + aux_sym_non_binding_pattern_repeat2, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208221] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9289), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208234] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9182), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208247] = 3, + ACTIONS(12428), 1, + anon_sym_LBRACE, + STATE(2898), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208260] = 3, + ACTIONS(12428), 1, + anon_sym_LBRACE, + STATE(2940), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208273] = 3, + ACTIONS(12459), 1, + anon_sym_LBRACE, + STATE(2931), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208286] = 3, + ACTIONS(12499), 1, + anon_sym_LBRACE, + STATE(2938), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208299] = 3, + ACTIONS(12428), 1, + anon_sym_LBRACE, + STATE(2931), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208312] = 3, + ACTIONS(12499), 1, + anon_sym_LBRACE, + STATE(2946), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208325] = 3, + ACTIONS(12499), 1, + anon_sym_LBRACE, + STATE(2932), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208338] = 3, + ACTIONS(12499), 1, + anon_sym_LBRACE, + STATE(2919), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208351] = 3, + ACTIONS(11564), 1, + anon_sym_LBRACE, + STATE(8682), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208364] = 3, + ACTIONS(11564), 1, + anon_sym_LBRACE, + STATE(8681), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208377] = 3, + ACTIONS(12459), 1, + anon_sym_LBRACE, + STATE(2897), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208390] = 3, + ACTIONS(12499), 1, + anon_sym_LBRACE, + STATE(2892), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208403] = 3, + ACTIONS(12459), 1, + anon_sym_LBRACE, + STATE(2955), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208416] = 3, + ACTIONS(11564), 1, + anon_sym_LBRACE, + STATE(8687), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208429] = 3, + ACTIONS(11564), 1, + anon_sym_LBRACE, + STATE(8679), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208442] = 3, + ACTIONS(12428), 1, + anon_sym_LBRACE, + STATE(2948), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208455] = 3, + ACTIONS(11564), 1, + anon_sym_LBRACE, + STATE(8677), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208468] = 3, + ACTIONS(12428), 1, + anon_sym_LBRACE, + STATE(2891), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208481] = 3, + ACTIONS(11564), 1, + anon_sym_LBRACE, + STATE(8672), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208494] = 3, + ACTIONS(11564), 1, + anon_sym_LBRACE, + STATE(8684), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208507] = 3, + ACTIONS(12459), 1, + anon_sym_LBRACE, + STATE(2891), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208520] = 3, + ACTIONS(12499), 1, + anon_sym_LBRACE, + STATE(2882), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208533] = 3, + ACTIONS(5931), 1, + anon_sym_LBRACE, + STATE(2544), 1, + sym_lambda_literal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208546] = 3, + ACTIONS(12428), 1, + anon_sym_LBRACE, + STATE(2951), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208559] = 3, + ACTIONS(12459), 1, + anon_sym_LBRACE, + STATE(2950), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208572] = 3, + ACTIONS(11046), 1, + anon_sym_LBRACE, + STATE(6670), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208585] = 2, + ACTIONS(7618), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208596] = 3, + ACTIONS(16593), 1, + anon_sym_COMMA, + ACTIONS(16595), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208609] = 3, + ACTIONS(16597), 1, + anon_sym_COLON, + ACTIONS(16599), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208622] = 3, + ACTIONS(12499), 1, + anon_sym_LBRACE, + STATE(2899), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208635] = 3, + ACTIONS(16601), 1, + sym_raw_str_interpolation_start, + STATE(7960), 1, + sym_raw_str_interpolation, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208648] = 2, + ACTIONS(761), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208659] = 3, + ACTIONS(12428), 1, + anon_sym_LBRACE, + STATE(2873), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208672] = 3, + ACTIONS(12459), 1, + anon_sym_LBRACE, + STATE(2873), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208685] = 3, + ACTIONS(16603), 1, + sym__dot_custom, + STATE(6879), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208698] = 2, + ACTIONS(9554), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208709] = 2, + ACTIONS(9550), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208720] = 3, + ACTIONS(16605), 1, + sym__as_custom, + STATE(4588), 1, + sym__as, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208733] = 3, + ACTIONS(16607), 1, + anon_sym_COMMA, + ACTIONS(16609), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208746] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3621), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208759] = 3, + ACTIONS(16611), 1, + anon_sym_COLON, + ACTIONS(16613), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208772] = 3, + ACTIONS(12459), 1, + anon_sym_LBRACE, + STATE(2883), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208785] = 3, + ACTIONS(12499), 1, + anon_sym_LBRACE, + STATE(2954), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208798] = 3, + ACTIONS(12428), 1, + anon_sym_LBRACE, + STATE(2905), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208811] = 3, + ACTIONS(12459), 1, + anon_sym_LBRACE, + STATE(2905), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208824] = 2, + ACTIONS(9542), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208835] = 2, + ACTIONS(9538), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208846] = 3, + ACTIONS(16615), 1, + sym__eq_custom, + STATE(587), 1, + sym__equal_sign, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208859] = 3, + ACTIONS(16617), 1, + sym__dot_custom, + STATE(6976), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208872] = 2, + ACTIONS(9534), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208883] = 2, + ACTIONS(16619), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208894] = 3, + ACTIONS(16621), 1, + sym__dot_custom, + STATE(7028), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208907] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16623), 1, + aux_sym_custom_operator_token1, + STATE(2830), 1, + sym_custom_operator, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + [208922] = 3, + ACTIONS(16625), 1, + sym__eq_custom, + STATE(1001), 1, + sym__equal_sign, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208935] = 3, + ACTIONS(16627), 1, + sym__as_custom, + STATE(4616), 1, + sym__as, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208948] = 3, + ACTIONS(16629), 1, + anon_sym_COLON, + ACTIONS(16631), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208961] = 3, + ACTIONS(16633), 1, + anon_sym_COMMA, + ACTIONS(16635), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208974] = 2, + ACTIONS(9530), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208985] = 2, + ACTIONS(9526), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [208996] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3610), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209009] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3611), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209022] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3613), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209035] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3614), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209048] = 3, + ACTIONS(16637), 1, + sym__as_custom, + STATE(4629), 1, + sym__as, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209061] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3615), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209074] = 2, + ACTIONS(16639), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209085] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3616), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209098] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3618), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209111] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3619), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209124] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3620), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209137] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3629), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209150] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3624), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209163] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3625), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209176] = 2, + ACTIONS(9522), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209187] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3627), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209200] = 3, + ACTIONS(16641), 1, + sym__eq_custom, + STATE(381), 1, + sym__equal_sign, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209213] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3628), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209226] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3756), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209239] = 2, + ACTIONS(9490), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209250] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3630), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209263] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3633), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209276] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3634), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209289] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3635), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209302] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3636), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209315] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3639), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209328] = 3, + ACTIONS(12384), 1, + anon_sym_LBRACE, + STATE(4027), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209341] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3640), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209354] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3643), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209367] = 3, + ACTIONS(12579), 1, + anon_sym_LBRACE, + STATE(4027), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209380] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3644), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209393] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3646), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209406] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3647), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209419] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3648), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209432] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3654), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209445] = 3, + ACTIONS(12384), 1, + anon_sym_LBRACE, + STATE(4017), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209458] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3655), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209471] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3659), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209484] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3660), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209497] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3661), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209510] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3663), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209523] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3664), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209536] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3665), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209549] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3667), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209562] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3668), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209575] = 3, + ACTIONS(16643), 1, + sym__dot_custom, + STATE(6816), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209588] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3669), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209601] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3670), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209614] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3673), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209627] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3674), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209640] = 3, + ACTIONS(16645), 1, + sym__as_custom, + STATE(4623), 1, + sym__as, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209653] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3676), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209666] = 3, + ACTIONS(16647), 1, + sym__dot_custom, + STATE(6626), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209679] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3677), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209692] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3680), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209705] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3681), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209718] = 2, + ACTIONS(16649), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209729] = 3, + ACTIONS(12384), 1, + anon_sym_LBRACE, + STATE(3966), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209742] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3682), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209755] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3685), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209768] = 3, + ACTIONS(12579), 1, + anon_sym_LBRACE, + STATE(3966), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209781] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3686), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209794] = 2, + ACTIONS(16651), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209805] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3689), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209818] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3690), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209831] = 3, + ACTIONS(12384), 1, + anon_sym_LBRACE, + STATE(3953), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209844] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3694), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209857] = 3, + ACTIONS(12579), 1, + anon_sym_LBRACE, + STATE(3952), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209870] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3695), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209883] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3697), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209896] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3698), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209909] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3701), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209922] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3704), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209935] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3706), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209948] = 3, + ACTIONS(5836), 1, + anon_sym_LBRACE, + STATE(2488), 1, + sym_lambda_literal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209961] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3708), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209974] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3709), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [209987] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3710), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210000] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3711), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210013] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16653), 1, + aux_sym_custom_operator_token1, + STATE(8600), 1, + sym_custom_operator, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + [210028] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3715), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210041] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3716), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210054] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3718), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210067] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3719), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210080] = 3, + ACTIONS(12384), 1, + anon_sym_LBRACE, + STATE(3930), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210093] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3720), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210106] = 3, + ACTIONS(12579), 1, + anon_sym_LBRACE, + STATE(3930), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210119] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3723), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210132] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3724), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210145] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3726), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210158] = 3, + ACTIONS(12384), 1, + anon_sym_LBRACE, + STATE(3924), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210171] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3727), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210184] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3728), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210197] = 3, + ACTIONS(12579), 1, + anon_sym_LBRACE, + STATE(3923), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210210] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3729), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210223] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3730), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210236] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3733), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210249] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3734), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210262] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3737), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210275] = 3, + ACTIONS(12384), 1, + anon_sym_LBRACE, + STATE(3912), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210288] = 3, + ACTIONS(12579), 1, + anon_sym_LBRACE, + STATE(3912), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210301] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3738), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210314] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3741), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210327] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3742), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210340] = 3, + ACTIONS(12384), 1, + anon_sym_LBRACE, + STATE(3895), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210353] = 3, + ACTIONS(12579), 1, + anon_sym_LBRACE, + STATE(3894), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210366] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3744), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210379] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3745), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210392] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3748), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210405] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3751), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210418] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3752), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210431] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3755), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210444] = 3, + ACTIONS(12579), 1, + anon_sym_LBRACE, + STATE(3889), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210457] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3817), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210470] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3759), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210483] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3760), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210496] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3764), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210509] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3765), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210522] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3766), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210535] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3769), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210548] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3770), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210561] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3772), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210574] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3773), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210587] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3775), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210600] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3776), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210613] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3777), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210626] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3780), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210639] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3781), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210652] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3784), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210665] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3785), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210678] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3787), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210691] = 2, + ACTIONS(7468), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210702] = 3, + ACTIONS(16655), 1, + anon_sym_COMMA, + ACTIONS(16657), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210715] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3788), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210728] = 3, + ACTIONS(16659), 1, + anon_sym_COLON, + ACTIONS(16661), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210741] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3789), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210754] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3792), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210767] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3793), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210780] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3796), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210793] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3797), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210806] = 3, + ACTIONS(15155), 1, + anon_sym_LPAREN, + STATE(5142), 1, + sym__function_value_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210819] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3802), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210832] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3803), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210845] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3806), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210858] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3809), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210871] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3814), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210884] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3900), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210897] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3818), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210910] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3821), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210923] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3822), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210936] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3825), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210949] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3826), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210962] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3830), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210975] = 3, + ACTIONS(15155), 1, + anon_sym_LPAREN, + STATE(5139), 1, + sym__function_value_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [210988] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3833), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211001] = 2, + ACTIONS(16663), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211012] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3836), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211025] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3837), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211038] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3840), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211051] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3841), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211064] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3843), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211077] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3844), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211090] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3845), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211103] = 2, + ACTIONS(7445), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211114] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3848), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211127] = 2, + ACTIONS(16665), 2, + sym_raw_str_part, + sym_raw_str_end_part, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211138] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3849), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211151] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3852), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211164] = 2, + ACTIONS(16667), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211175] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3853), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211188] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3856), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211201] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3857), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211214] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3859), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211227] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3860), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211240] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3863), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211253] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3866), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211266] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3867), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211279] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3870), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211292] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3871), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211305] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3873), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211318] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3874), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211331] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3877), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211344] = 2, + ACTIONS(16669), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211355] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3880), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211368] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3881), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211381] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3884), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211394] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3885), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211407] = 2, + ACTIONS(11730), 2, + sym__arrow_operator_custom, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211418] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3888), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211431] = 3, + ACTIONS(14553), 1, + sym__arrow_operator_custom, + STATE(4458), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211444] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3891), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211457] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4143), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211470] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3907), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211483] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3913), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211496] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3916), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211509] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3917), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211522] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3933), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211535] = 3, + ACTIONS(4777), 1, + anon_sym_LBRACE, + STATE(1307), 1, + sym_lambda_literal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211548] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3936), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211561] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3937), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211574] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3940), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211587] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3941), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211600] = 2, + ACTIONS(8434), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211611] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3944), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211624] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3945), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211637] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3950), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211650] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3955), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211663] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3956), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211676] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3959), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211689] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3960), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211702] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3963), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211715] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3967), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211728] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3992), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211741] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3995), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211754] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3996), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211767] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3999), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211780] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4000), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211793] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4004), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211806] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4007), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211819] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4010), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211832] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4011), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211845] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4014), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211858] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4015), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211871] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4018), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211884] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4022), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211897] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4029), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211910] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4030), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211923] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4034), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211936] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4035), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211949] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4064), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211962] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4065), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211975] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4072), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [211988] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4075), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212001] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4078), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212014] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4079), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212027] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4083), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212040] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4086), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212053] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4087), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212066] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4092), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212079] = 2, + ACTIONS(8466), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212090] = 3, + ACTIONS(16671), 1, + anon_sym_COMMA, + ACTIONS(16673), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212103] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4095), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212116] = 3, + ACTIONS(16675), 1, + anon_sym_COLON, + ACTIONS(16677), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212129] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4112), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212142] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4114), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212155] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4127), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212168] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4128), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212181] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4133), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212194] = 2, + ACTIONS(8470), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212205] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4136), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212218] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4140), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212231] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4201), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212244] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4144), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212257] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4149), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212270] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3948), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212283] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4168), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212296] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4172), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212309] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4182), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212322] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4184), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212335] = 3, + ACTIONS(6197), 1, + anon_sym_LBRACE, + STATE(2915), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212348] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4186), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212361] = 2, + ACTIONS(8478), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212372] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4187), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212385] = 2, + ACTIONS(16679), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212396] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4189), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212409] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4191), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212422] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4192), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212435] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4197), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212448] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4199), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212461] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4208), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212474] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4205), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212487] = 2, + ACTIONS(8494), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212498] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4202), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212511] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8621), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212524] = 3, + ACTIONS(6197), 1, + anon_sym_LBRACE, + STATE(2859), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212537] = 3, + ACTIONS(6197), 1, + anon_sym_LBRACE, + STATE(2908), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212550] = 3, + ACTIONS(16681), 1, + sym__dot_custom, + STATE(6770), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212563] = 3, + ACTIONS(6197), 1, + anon_sym_LBRACE, + STATE(2903), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212576] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4183), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212589] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4177), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212602] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4176), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212615] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4175), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212628] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4173), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212641] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3608), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212654] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4169), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212667] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4162), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212680] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4161), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212693] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4160), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212706] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4158), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212719] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4157), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212732] = 3, + ACTIONS(16683), 1, + sym__eq_custom, + STATE(4630), 1, + sym__equal_sign, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212745] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4155), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212758] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4152), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212771] = 3, + ACTIONS(6197), 1, + anon_sym_LBRACE, + STATE(2879), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212784] = 3, + ACTIONS(6197), 1, + anon_sym_LBRACE, + STATE(2877), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212797] = 2, + ACTIONS(7744), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212808] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4131), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212821] = 3, + ACTIONS(12376), 1, + anon_sym_LBRACE, + STATE(8642), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212834] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4130), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212847] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4123), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212860] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4122), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212873] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4120), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212886] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4119), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212899] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4116), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212912] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4111), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212925] = 3, + ACTIONS(5610), 1, + anon_sym_LBRACE, + STATE(2461), 1, + sym_lambda_literal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212938] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4108), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212951] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4107), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212964] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4106), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212977] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4104), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [212990] = 3, + ACTIONS(12380), 1, + anon_sym_LBRACE, + STATE(8642), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213003] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4103), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213016] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4100), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213029] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4098), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213042] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4097), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213055] = 3, + ACTIONS(12521), 1, + anon_sym_LBRACE, + STATE(8696), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213068] = 3, + ACTIONS(12392), 1, + anon_sym_LBRACE, + STATE(8697), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213081] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3901), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213094] = 3, + ACTIONS(6197), 1, + anon_sym_LBRACE, + STATE(2863), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213107] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4067), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213120] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4061), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213133] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4058), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213146] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4054), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213159] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4053), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213172] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4051), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213185] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4050), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213198] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4166), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213211] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4046), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213224] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4044), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213237] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4043), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213250] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4040), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213263] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(4036), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213276] = 3, + ACTIONS(12521), 1, + anon_sym_LBRACE, + STATE(8700), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213289] = 3, + ACTIONS(12392), 1, + anon_sym_LBRACE, + STATE(8702), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213302] = 3, + ACTIONS(12513), 1, + anon_sym_LBRACE, + STATE(8703), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213315] = 3, + ACTIONS(12521), 1, + anon_sym_LBRACE, + STATE(8704), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213328] = 3, + ACTIONS(12392), 1, + anon_sym_LBRACE, + STATE(8693), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213341] = 3, + ACTIONS(16685), 1, + anon_sym_COLON, + ACTIONS(16687), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213354] = 3, + ACTIONS(12513), 1, + anon_sym_LBRACE, + STATE(8693), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213367] = 3, + ACTIONS(6197), 1, + anon_sym_LBRACE, + STATE(2949), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213380] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3984), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213393] = 3, + ACTIONS(12388), 1, + anon_sym_LBRACE, + STATE(10269), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213406] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3983), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213419] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3981), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213432] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3980), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213445] = 2, + ACTIONS(7716), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213456] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3976), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213469] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3973), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213482] = 2, + ACTIONS(16689), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213493] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3970), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213506] = 3, + ACTIONS(12521), 1, + anon_sym_LBRACE, + STATE(8710), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213519] = 3, + ACTIONS(12376), 1, + anon_sym_LBRACE, + STATE(8649), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213532] = 3, + ACTIONS(12392), 1, + anon_sym_LBRACE, + STATE(8714), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213545] = 3, + ACTIONS(7289), 1, + sym__semi, + ACTIONS(16691), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213558] = 3, + ACTIONS(12513), 1, + anon_sym_LBRACE, + STATE(8715), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213571] = 3, + ACTIONS(12521), 1, + anon_sym_LBRACE, + STATE(8716), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213584] = 3, + ACTIONS(16693), 1, + sym__as_custom, + STATE(4538), 1, + sym__as, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213597] = 3, + ACTIONS(12392), 1, + anon_sym_LBRACE, + STATE(8717), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213610] = 3, + ACTIONS(12513), 1, + anon_sym_LBRACE, + STATE(8717), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213623] = 2, + ACTIONS(16695), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213634] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3904), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213647] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3705), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213660] = 3, + ACTIONS(11054), 1, + anon_sym_LBRACE, + STATE(3607), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213673] = 2, + ACTIONS(16697), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213684] = 3, + ACTIONS(16699), 1, + sym__arrow_operator_custom, + STATE(4342), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213697] = 2, + ACTIONS(16701), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213708] = 3, + ACTIONS(12521), 1, + anon_sym_LBRACE, + STATE(8726), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213721] = 2, + ACTIONS(8251), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213732] = 3, + ACTIONS(5682), 1, + anon_sym_LBRACE, + STATE(2388), 1, + sym_lambda_literal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213745] = 2, + ACTIONS(15058), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213756] = 3, + ACTIONS(12392), 1, + anon_sym_LBRACE, + STATE(8732), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213769] = 3, + ACTIONS(12513), 1, + anon_sym_LBRACE, + STATE(8733), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213782] = 3, + ACTIONS(4638), 1, + anon_sym_LBRACE, + STATE(1182), 1, + sym_lambda_literal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213795] = 2, + ACTIONS(8270), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213806] = 2, + ACTIONS(8682), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213817] = 3, + ACTIONS(12521), 1, + anon_sym_LBRACE, + STATE(8735), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213830] = 3, + ACTIONS(16703), 1, + anon_sym_case, + ACTIONS(16705), 1, + sym_default_keyword, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213843] = 3, + ACTIONS(12392), 1, + anon_sym_LBRACE, + STATE(8738), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213856] = 3, + ACTIONS(12513), 1, + anon_sym_LBRACE, + STATE(8738), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213869] = 3, + ACTIONS(11046), 1, + anon_sym_LBRACE, + STATE(7676), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213882] = 3, + ACTIONS(16707), 1, + sym__dot_custom, + STATE(6846), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213895] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8709), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213908] = 3, + ACTIONS(11054), 1, + anon_sym_LBRACE, + STATE(3604), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213921] = 3, + ACTIONS(13618), 1, + anon_sym_LBRACE, + STATE(3799), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213934] = 3, + ACTIONS(16709), 1, + sym__as_custom, + STATE(4432), 1, + sym__as, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213947] = 2, + ACTIONS(8714), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213958] = 2, + ACTIONS(6854), 2, + sym__semi, + sym__dot_custom, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213969] = 2, + ACTIONS(7539), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213980] = 3, + ACTIONS(12513), 1, + anon_sym_LBRACE, + STATE(8752), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [213993] = 3, + ACTIONS(12521), 1, + anon_sym_LBRACE, + STATE(8754), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214006] = 3, + ACTIONS(12392), 1, + anon_sym_LBRACE, + STATE(8757), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214019] = 3, + ACTIONS(12513), 1, + anon_sym_LBRACE, + STATE(8757), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214032] = 2, + ACTIONS(7018), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214043] = 2, + ACTIONS(7547), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214054] = 3, + ACTIONS(16711), 1, + anon_sym_COLON, + ACTIONS(16713), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214067] = 2, + ACTIONS(7579), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214078] = 3, + ACTIONS(12376), 1, + anon_sym_LBRACE, + STATE(8764), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214091] = 2, + ACTIONS(7669), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214102] = 3, + ACTIONS(10947), 1, + anon_sym_case, + ACTIONS(16715), 1, + anon_sym_enum, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214115] = 2, + ACTIONS(16717), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214126] = 3, + ACTIONS(12380), 1, + anon_sym_LBRACE, + STATE(8764), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214139] = 3, + ACTIONS(12388), 1, + anon_sym_LBRACE, + STATE(10133), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214152] = 2, + ACTIONS(7511), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214163] = 3, + ACTIONS(15010), 1, + anon_sym_LPAREN, + STATE(4940), 1, + sym__function_value_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214176] = 3, + ACTIONS(15010), 1, + anon_sym_LPAREN, + STATE(4939), 1, + sym__function_value_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214189] = 2, + ACTIONS(16719), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214200] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16721), 1, + aux_sym_custom_operator_token1, + STATE(8026), 1, + sym_custom_operator, + ACTIONS(5), 3, + sym_multiline_comment, + sym_directive, + sym_diagnostic, + [214215] = 3, + ACTIONS(16723), 1, + sym__eq_custom, + STATE(816), 1, + sym__equal_sign, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214228] = 3, + ACTIONS(12376), 1, + anon_sym_LBRACE, + STATE(8831), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214241] = 3, + ACTIONS(12380), 1, + anon_sym_LBRACE, + STATE(8839), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214254] = 2, + ACTIONS(7401), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214265] = 3, + ACTIONS(16725), 1, + anon_sym_COLON, + ACTIONS(16727), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214278] = 3, + ACTIONS(5688), 1, + anon_sym_LBRACE, + STATE(2492), 1, + sym_lambda_literal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214291] = 3, + ACTIONS(16729), 1, + anon_sym_COMMA, + ACTIONS(16731), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214304] = 3, + ACTIONS(12388), 1, + anon_sym_LBRACE, + STATE(10088), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214317] = 2, + ACTIONS(16733), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214328] = 3, + ACTIONS(11054), 1, + anon_sym_LBRACE, + STATE(3517), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214341] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(4817), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214352] = 2, + ACTIONS(16735), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214363] = 2, + ACTIONS(4525), 2, + sym__semi, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214374] = 2, + ACTIONS(16737), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214385] = 2, + ACTIONS(6904), 2, + sym_where_keyword, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214396] = 2, + ACTIONS(16111), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214407] = 2, + ACTIONS(6872), 2, + sym_where_keyword, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214418] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5320), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214429] = 2, + ACTIONS(7610), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214440] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(5308), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214451] = 3, + ACTIONS(4565), 1, + anon_sym_LPAREN, + ACTIONS(16739), 1, + anon_sym_LT, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214464] = 2, + ACTIONS(8290), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214475] = 2, + ACTIONS(7519), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214486] = 2, + ACTIONS(7575), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214497] = 2, + ACTIONS(7586), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214508] = 2, + ACTIONS(7575), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214519] = 2, + ACTIONS(7476), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214530] = 2, + ACTIONS(7499), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214541] = 2, + ACTIONS(7492), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214552] = 2, + ACTIONS(7476), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214563] = 2, + ACTIONS(7424), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214574] = 2, + ACTIONS(7420), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214585] = 2, + ACTIONS(7413), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214596] = 2, + ACTIONS(7424), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214607] = 2, + ACTIONS(7614), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214618] = 2, + ACTIONS(7732), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214629] = 2, + ACTIONS(7614), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214640] = 2, + ACTIONS(7515), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214651] = 2, + ACTIONS(7630), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214662] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7661), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214673] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7684), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214684] = 3, + ACTIONS(16742), 1, + anon_sym_COLON, + ACTIONS(16744), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214697] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7688), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214708] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7696), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214719] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7712), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214730] = 2, + ACTIONS(9054), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214741] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7720), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214752] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7724), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214763] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7728), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214774] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7752), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214785] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7665), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214796] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7405), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214807] = 2, + ACTIONS(16746), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214818] = 2, + ACTIONS(13328), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214829] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7634), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214840] = 2, + ACTIONS(9058), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214851] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7626), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214862] = 2, + ACTIONS(7563), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214873] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7567), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214884] = 2, + ACTIONS(9078), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214895] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7555), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214906] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7551), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214917] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7535), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214928] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7531), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [214939] = 2, + ACTIONS(8286), 2, + sym_else, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214950] = 3, + ACTIONS(16748), 1, + sym__as_custom, + STATE(4626), 1, + sym__as, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214963] = 2, + ACTIONS(13244), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214974] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8988), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214987] = 2, + ACTIONS(12799), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [214998] = 2, + ACTIONS(9090), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215009] = 2, + ACTIONS(12681), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215020] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7523), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215031] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7507), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215042] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9033), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215055] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7539), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215066] = 2, + ACTIONS(9094), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215077] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7602), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215088] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7763), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215099] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7740), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215110] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7736), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215121] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7598), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215132] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7559), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215143] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7543), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215154] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7527), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215165] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7472), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215176] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7460), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215187] = 2, + ACTIONS(15873), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215198] = 2, + ACTIONS(8290), 2, + sym_else, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215209] = 2, + ACTIONS(13402), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215220] = 2, + ACTIONS(13310), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215231] = 2, + ACTIONS(13308), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215242] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7646), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215253] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7640), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215264] = 3, + ACTIONS(16750), 1, + sym__dot_custom, + STATE(6622), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215277] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7563), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215288] = 3, + ACTIONS(16752), 1, + anon_sym_COLON, + ACTIONS(16754), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215301] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7456), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215312] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7401), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215323] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7511), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215334] = 2, + ACTIONS(9106), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215345] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7748), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215356] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7708), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215367] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7669), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215378] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7579), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215389] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7547), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215400] = 2, + ACTIONS(16756), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215411] = 2, + ACTIONS(12805), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215422] = 2, + ACTIONS(5320), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215433] = 2, + ACTIONS(9110), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215444] = 2, + ACTIONS(7460), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215455] = 2, + ACTIONS(7472), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215466] = 2, + ACTIONS(8270), 2, + sym_else, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215477] = 2, + ACTIONS(6498), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215488] = 2, + ACTIONS(12493), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215499] = 2, + ACTIONS(13414), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215510] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7716), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215521] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7759), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215532] = 3, + ACTIONS(12376), 1, + anon_sym_LBRACE, + STATE(9131), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215545] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7744), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215556] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7630), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215567] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7673), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215578] = 3, + ACTIONS(14970), 1, + anon_sym_LPAREN, + STATE(6002), 1, + sym__function_value_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215591] = 2, + ACTIONS(5308), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215602] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7622), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215613] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7441), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215624] = 2, + ACTIONS(7527), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215635] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7445), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215646] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7452), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215657] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7464), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215668] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7468), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215679] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7571), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215690] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7594), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215701] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7618), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [215712] = 2, + ACTIONS(8586), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215723] = 2, + ACTIONS(8314), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215734] = 2, + ACTIONS(8318), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215745] = 2, + ACTIONS(8322), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215756] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8788), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215769] = 2, + ACTIONS(8326), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215780] = 3, + ACTIONS(16758), 1, + anon_sym_COLON, + ACTIONS(16760), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215793] = 2, + ACTIONS(8330), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215804] = 2, + ACTIONS(8334), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215815] = 2, + ACTIONS(8338), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215826] = 3, + ACTIONS(12380), 1, + anon_sym_LBRACE, + STATE(9131), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215839] = 2, + ACTIONS(8342), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215850] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8789), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215863] = 2, + ACTIONS(8346), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215874] = 2, + ACTIONS(16762), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215885] = 2, + ACTIONS(8350), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215896] = 2, + ACTIONS(8354), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215907] = 3, + ACTIONS(16715), 1, + anon_sym_enum, + ACTIONS(16764), 1, + anon_sym_case, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215920] = 2, + ACTIONS(8358), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215931] = 2, + ACTIONS(7543), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215942] = 2, + ACTIONS(8362), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215953] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8792), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215966] = 2, + ACTIONS(8366), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215977] = 3, + ACTIONS(12388), 1, + anon_sym_LBRACE, + STATE(10027), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [215990] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8794), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216003] = 2, + ACTIONS(16766), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216014] = 2, + ACTIONS(8370), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216025] = 2, + ACTIONS(16768), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216036] = 2, + ACTIONS(8374), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216047] = 2, + ACTIONS(8378), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216058] = 3, + ACTIONS(11046), 1, + anon_sym_LBRACE, + STATE(7986), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216071] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8795), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216084] = 2, + ACTIONS(8382), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216095] = 3, + ACTIONS(16770), 1, + anon_sym_COLON, + ACTIONS(16772), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216108] = 2, + ACTIONS(8386), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216119] = 2, + ACTIONS(8390), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216130] = 2, + ACTIONS(8394), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216141] = 3, + ACTIONS(13745), 1, + sym__as_custom, + STATE(4627), 1, + sym__as, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216154] = 2, + ACTIONS(8398), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216165] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8796), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216178] = 2, + ACTIONS(8402), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216189] = 2, + ACTIONS(16774), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216200] = 2, + ACTIONS(8406), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216211] = 2, + ACTIONS(8410), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216222] = 2, + ACTIONS(7736), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216233] = 2, + ACTIONS(8414), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216244] = 3, + ACTIONS(12376), 1, + anon_sym_LBRACE, + STATE(9232), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216257] = 2, + ACTIONS(8418), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216268] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8800), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216281] = 2, + ACTIONS(8422), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216292] = 3, + ACTIONS(12380), 1, + anon_sym_LBRACE, + STATE(9277), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216305] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8802), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216318] = 2, + ACTIONS(7740), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216329] = 2, + ACTIONS(8426), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216340] = 2, + ACTIONS(7405), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216351] = 2, + ACTIONS(8430), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216362] = 2, + ACTIONS(8438), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216373] = 2, + ACTIONS(16776), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216384] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8803), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216397] = 2, + ACTIONS(8442), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216408] = 3, + ACTIONS(16778), 1, + anon_sym_COLON, + ACTIONS(16780), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216421] = 2, + ACTIONS(8446), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216432] = 2, + ACTIONS(8450), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216443] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8805), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216456] = 2, + ACTIONS(16782), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216467] = 2, + ACTIONS(8454), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216478] = 2, + ACTIONS(8458), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216489] = 2, + ACTIONS(8462), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216500] = 2, + ACTIONS(16784), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216511] = 2, + ACTIONS(8474), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216522] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8813), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216535] = 2, + ACTIONS(16786), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216546] = 2, + ACTIONS(8482), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216557] = 2, + ACTIONS(15842), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216568] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8815), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216581] = 2, + ACTIONS(8486), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216592] = 2, + ACTIONS(8490), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216603] = 3, + ACTIONS(12388), 1, + anon_sym_LBRACE, + STATE(9992), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216616] = 2, + ACTIONS(8498), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216627] = 2, + ACTIONS(7523), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216638] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8819), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216651] = 3, + ACTIONS(13026), 1, + anon_sym_LBRACE, + STATE(9214), 1, + sym_protocol_property_requirements, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216664] = 2, + ACTIONS(8502), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216675] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8821), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216688] = 2, + ACTIONS(16307), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216699] = 2, + ACTIONS(8506), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216710] = 3, + ACTIONS(16788), 1, + anon_sym_COLON, + ACTIONS(16790), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216723] = 2, + ACTIONS(8510), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216734] = 2, + ACTIONS(8514), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216745] = 2, + ACTIONS(8518), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216756] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8822), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216769] = 2, + ACTIONS(16792), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216780] = 2, + ACTIONS(8522), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216791] = 2, + ACTIONS(8526), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216802] = 2, + ACTIONS(8530), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216813] = 2, + ACTIONS(8534), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216824] = 2, + ACTIONS(8286), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216835] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8823), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216848] = 2, + ACTIONS(8538), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216859] = 2, + ACTIONS(8542), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216870] = 2, + ACTIONS(8546), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216881] = 3, + ACTIONS(16794), 1, + anon_sym_COLON, + ACTIONS(16796), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216894] = 2, + ACTIONS(8550), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216905] = 2, + ACTIONS(8554), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216916] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8827), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216929] = 2, + ACTIONS(8558), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216940] = 2, + ACTIONS(16798), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216951] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8829), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216964] = 2, + ACTIONS(8562), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216975] = 2, + ACTIONS(8566), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216986] = 2, + ACTIONS(8570), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [216997] = 2, + ACTIONS(9418), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217008] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8830), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217021] = 2, + ACTIONS(8574), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217032] = 2, + ACTIONS(8578), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217043] = 2, + ACTIONS(8582), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217054] = 3, + ACTIONS(16800), 1, + anon_sym_COLON, + ACTIONS(16802), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217067] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8832), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217080] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9338), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217093] = 2, + ACTIONS(8590), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217104] = 2, + ACTIONS(8594), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217115] = 2, + ACTIONS(16804), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217126] = 2, + ACTIONS(8598), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217137] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8840), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217150] = 2, + ACTIONS(8602), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217161] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8842), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217174] = 2, + ACTIONS(9438), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217185] = 2, + ACTIONS(8606), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217196] = 2, + ACTIONS(8610), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217207] = 2, + ACTIONS(8614), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217218] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8846), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217231] = 3, + ACTIONS(16806), 1, + anon_sym_COLON, + ACTIONS(16808), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217244] = 2, + ACTIONS(8618), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217255] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8848), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217268] = 2, + ACTIONS(8622), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217279] = 2, + ACTIONS(8626), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217290] = 2, + ACTIONS(16810), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217301] = 2, + ACTIONS(8630), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217312] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8852), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217325] = 2, + ACTIONS(8634), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217336] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8853), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217349] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9382), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217362] = 2, + ACTIONS(8638), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217373] = 2, + ACTIONS(8642), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217384] = 2, + ACTIONS(8646), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217395] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8854), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217408] = 3, + ACTIONS(16812), 1, + anon_sym_COLON, + ACTIONS(16814), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217421] = 2, + ACTIONS(8650), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217432] = 2, + ACTIONS(8654), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217443] = 2, + ACTIONS(8874), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217454] = 2, + ACTIONS(8658), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217465] = 2, + ACTIONS(16816), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217476] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8862), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217489] = 2, + ACTIONS(8662), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217500] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8863), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217513] = 2, + ACTIONS(8666), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217524] = 2, + ACTIONS(9442), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217535] = 2, + ACTIONS(8670), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217546] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8872), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217559] = 2, + ACTIONS(8674), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217570] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8874), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217583] = 3, + ACTIONS(16818), 1, + anon_sym_COLON, + ACTIONS(16820), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217596] = 2, + ACTIONS(8678), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217607] = 2, + ACTIONS(8686), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217618] = 2, + ACTIONS(8690), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217629] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8875), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217642] = 2, + ACTIONS(16822), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217653] = 2, + ACTIONS(8694), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217664] = 2, + ACTIONS(8698), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217675] = 2, + ACTIONS(8702), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217686] = 2, + ACTIONS(8706), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217697] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9413), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217710] = 2, + ACTIONS(8710), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217721] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8879), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217734] = 2, + ACTIONS(8718), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217745] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8880), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217758] = 3, + ACTIONS(16824), 1, + anon_sym_COLON, + ACTIONS(16826), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217771] = 2, + ACTIONS(8722), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217782] = 2, + ACTIONS(8726), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217793] = 2, + ACTIONS(8730), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217804] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8881), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217817] = 2, + ACTIONS(16828), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217828] = 2, + ACTIONS(8734), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217839] = 2, + ACTIONS(8738), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217850] = 2, + ACTIONS(8742), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217861] = 2, + ACTIONS(8746), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217872] = 2, + ACTIONS(9446), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217883] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8885), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217896] = 2, + ACTIONS(8750), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217907] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8886), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217920] = 2, + ACTIONS(8754), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217931] = 3, + ACTIONS(16830), 1, + anon_sym_COLON, + ACTIONS(16832), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217944] = 2, + ACTIONS(8758), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217955] = 2, + ACTIONS(8762), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217966] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8887), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217979] = 2, + ACTIONS(8766), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [217990] = 2, + ACTIONS(16834), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218001] = 2, + ACTIONS(8770), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218012] = 2, + ACTIONS(8310), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218023] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8889), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218036] = 2, + ACTIONS(8774), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218047] = 2, + ACTIONS(9454), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218058] = 2, + ACTIONS(8778), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218069] = 2, + ACTIONS(8782), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218080] = 2, + ACTIONS(8786), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218091] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8895), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218104] = 3, + ACTIONS(16836), 1, + anon_sym_COLON, + ACTIONS(16838), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218117] = 2, + ACTIONS(8790), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218128] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8896), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218141] = 2, + ACTIONS(8794), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218152] = 2, + ACTIONS(8798), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218163] = 2, + ACTIONS(16840), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218174] = 2, + ACTIONS(8802), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218185] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8900), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218198] = 2, + ACTIONS(8806), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218209] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8901), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218222] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9440), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218235] = 2, + ACTIONS(8810), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218246] = 2, + ACTIONS(8814), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218257] = 2, + ACTIONS(8818), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218268] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8787), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218281] = 3, + ACTIONS(16842), 1, + anon_sym_COLON, + ACTIONS(16844), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218294] = 2, + ACTIONS(8822), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218305] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8906), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218318] = 2, + ACTIONS(8826), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218329] = 2, + ACTIONS(8830), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218340] = 2, + ACTIONS(16846), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218351] = 2, + ACTIONS(8834), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218362] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8907), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218375] = 2, + ACTIONS(8838), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218386] = 2, + ACTIONS(8842), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218397] = 2, + ACTIONS(9458), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218408] = 2, + ACTIONS(9462), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218419] = 2, + ACTIONS(8846), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218430] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8914), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218443] = 2, + ACTIONS(8850), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218454] = 3, + ACTIONS(16848), 1, + anon_sym_COLON, + ACTIONS(16850), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218467] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8915), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218480] = 2, + ACTIONS(8854), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218491] = 2, + ACTIONS(8858), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218502] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8921), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218515] = 2, + ACTIONS(16852), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218526] = 2, + ACTIONS(8862), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218537] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8922), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218550] = 2, + ACTIONS(8866), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218561] = 2, + ACTIONS(8870), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218572] = 2, + ACTIONS(9466), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218583] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9461), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218596] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8929), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218609] = 2, + ACTIONS(8878), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218620] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8930), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218633] = 3, + ACTIONS(16854), 1, + anon_sym_COLON, + ACTIONS(16856), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218646] = 2, + ACTIONS(8882), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218657] = 2, + ACTIONS(8886), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218668] = 2, + ACTIONS(8890), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218679] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8934), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218692] = 2, + ACTIONS(16858), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218703] = 2, + ACTIONS(8894), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218714] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8935), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218727] = 2, + ACTIONS(8898), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218738] = 2, + ACTIONS(8902), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218749] = 2, + ACTIONS(9470), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218760] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9466), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218773] = 2, + ACTIONS(8906), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218784] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8942), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218797] = 2, + ACTIONS(9178), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218808] = 3, + ACTIONS(16860), 1, + anon_sym_COLON, + ACTIONS(16862), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218821] = 2, + ACTIONS(8910), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218832] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8949), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218845] = 2, + ACTIONS(8914), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218856] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8950), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218869] = 2, + ACTIONS(16864), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218880] = 2, + ACTIONS(8918), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218891] = 2, + ACTIONS(8922), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218902] = 2, + ACTIONS(8926), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218913] = 2, + ACTIONS(8930), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218924] = 2, + ACTIONS(9474), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218935] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8954), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218948] = 2, + ACTIONS(8934), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218959] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8955), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218972] = 2, + ACTIONS(8938), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218983] = 3, + ACTIONS(16866), 1, + anon_sym_COLON, + ACTIONS(16868), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [218996] = 2, + ACTIONS(8942), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219007] = 2, + ACTIONS(8946), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219018] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8956), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219031] = 2, + ACTIONS(8950), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219042] = 2, + ACTIONS(16870), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219053] = 2, + ACTIONS(8954), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219064] = 2, + ACTIONS(8958), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219075] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8957), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219088] = 2, + ACTIONS(8962), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219099] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9445), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219112] = 2, + ACTIONS(8966), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219123] = 2, + ACTIONS(8970), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219134] = 2, + ACTIONS(8974), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219145] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8964), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219158] = 3, + ACTIONS(16872), 1, + anon_sym_COLON, + ACTIONS(16874), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219171] = 2, + ACTIONS(8978), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219182] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8965), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219195] = 2, + ACTIONS(8982), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219206] = 2, + ACTIONS(8986), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219217] = 2, + ACTIONS(16876), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219228] = 2, + ACTIONS(8990), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219239] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8969), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219252] = 2, + ACTIONS(8994), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219263] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8970), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219276] = 2, + ACTIONS(9486), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219287] = 2, + ACTIONS(8998), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219298] = 2, + ACTIONS(9002), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219309] = 2, + ACTIONS(9006), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219320] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8971), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219333] = 3, + ACTIONS(16878), 1, + anon_sym_COLON, + ACTIONS(16880), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219346] = 2, + ACTIONS(9010), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219357] = 2, + ACTIONS(9014), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219368] = 2, + ACTIONS(9018), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219379] = 2, + ACTIONS(9022), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219390] = 2, + ACTIONS(16882), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219401] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8977), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219414] = 2, + ACTIONS(9026), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219425] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8979), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219438] = 2, + ACTIONS(9030), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219449] = 2, + ACTIONS(6967), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219460] = 2, + ACTIONS(9034), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219471] = 2, + ACTIONS(9038), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219482] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8982), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219495] = 2, + ACTIONS(9042), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219506] = 3, + ACTIONS(16884), 1, + anon_sym_COLON, + ACTIONS(16886), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219519] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8984), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219532] = 2, + ACTIONS(9046), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219543] = 2, + ACTIONS(16888), 2, + anon_sym_Type, + anon_sym_Protocol, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219554] = 2, + ACTIONS(9050), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219565] = 2, + ACTIONS(9062), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219576] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8987), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219589] = 2, + ACTIONS(6941), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219600] = 2, + ACTIONS(9066), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219611] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8989), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219624] = 2, + ACTIONS(9070), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219635] = 2, + ACTIONS(9074), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219646] = 3, + ACTIONS(16890), 1, + anon_sym_COLON, + ACTIONS(16892), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219659] = 2, + ACTIONS(9082), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219670] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8990), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219683] = 2, + ACTIONS(9086), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219694] = 2, + ACTIONS(9098), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219705] = 2, + ACTIONS(6900), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219716] = 2, + ACTIONS(7531), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219727] = 2, + ACTIONS(9102), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219738] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8996), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219751] = 2, + ACTIONS(9114), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219762] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(8997), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219775] = 2, + ACTIONS(9118), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219786] = 2, + ACTIONS(9122), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219797] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9004), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219810] = 2, + ACTIONS(9126), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219821] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9005), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219834] = 2, + ACTIONS(9130), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219845] = 2, + ACTIONS(9134), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219856] = 2, + ACTIONS(9138), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219867] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9011), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219880] = 2, + ACTIONS(9142), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219891] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9012), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219904] = 2, + ACTIONS(9146), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219915] = 2, + ACTIONS(9150), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219926] = 2, + ACTIONS(9154), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219937] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9016), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219950] = 2, + ACTIONS(9158), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219961] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9017), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219974] = 2, + ACTIONS(9162), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219985] = 2, + ACTIONS(9166), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [219996] = 3, + ACTIONS(11556), 1, + anon_sym_LBRACE, + STATE(9527), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220009] = 2, + ACTIONS(9170), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220020] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9025), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220033] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7519), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [220044] = 2, + ACTIONS(9174), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220055] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9031), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220068] = 2, + ACTIONS(9182), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220079] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9032), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220092] = 2, + ACTIONS(9406), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220103] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(15146), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [220114] = 2, + ACTIONS(9186), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220125] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9039), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220138] = 2, + ACTIONS(9190), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220149] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9040), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220162] = 2, + ACTIONS(9194), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220173] = 2, + ACTIONS(9198), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220184] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9046), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220197] = 2, + ACTIONS(9202), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220208] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9047), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220221] = 2, + ACTIONS(9206), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220232] = 2, + ACTIONS(9210), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220243] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7515), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [220254] = 3, + ACTIONS(14970), 1, + anon_sym_LPAREN, + STATE(6020), 1, + sym__function_value_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220267] = 2, + ACTIONS(9214), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220278] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9059), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220291] = 2, + ACTIONS(9218), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220302] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9060), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220315] = 2, + ACTIONS(9222), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220326] = 2, + ACTIONS(9226), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220337] = 3, + ACTIONS(12376), 1, + anon_sym_LBRACE, + STATE(9539), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220350] = 2, + ACTIONS(9230), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220361] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9061), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220374] = 2, + ACTIONS(9234), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220385] = 2, + ACTIONS(9238), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220396] = 2, + ACTIONS(9242), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220407] = 3, + ACTIONS(12380), 1, + anon_sym_LBRACE, + STATE(9539), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220420] = 2, + ACTIONS(16894), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220431] = 2, + ACTIONS(9246), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220442] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9067), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220455] = 2, + ACTIONS(9250), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220466] = 3, + ACTIONS(16896), 1, + sym__dot_custom, + STATE(6646), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220479] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9069), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220492] = 2, + ACTIONS(9254), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220503] = 2, + ACTIONS(9258), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220514] = 2, + ACTIONS(9262), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220525] = 3, + ACTIONS(16898), 1, + sym__dot_custom, + STATE(6614), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220538] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9072), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220551] = 2, + ACTIONS(16900), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220562] = 3, + ACTIONS(16504), 1, + anon_sym_get, + ACTIONS(16506), 1, + anon_sym_set, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220575] = 2, + ACTIONS(9266), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220586] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9074), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220599] = 2, + ACTIONS(9270), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220610] = 2, + ACTIONS(9274), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220621] = 2, + ACTIONS(9278), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220632] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9077), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220645] = 2, + ACTIONS(9282), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220656] = 3, + ACTIONS(14585), 1, + sym__arrow_operator_custom, + STATE(4609), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220669] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9079), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220682] = 2, + ACTIONS(9286), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220693] = 2, + ACTIONS(16902), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220704] = 3, + ACTIONS(13026), 1, + anon_sym_LBRACE, + STATE(9541), 1, + sym_protocol_property_requirements, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220717] = 2, + ACTIONS(9290), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220728] = 2, + ACTIONS(9294), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220739] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9080), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220752] = 2, + ACTIONS(9298), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220763] = 2, + ACTIONS(9302), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220774] = 2, + ACTIONS(16904), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220785] = 3, + ACTIONS(13026), 1, + anon_sym_LBRACE, + STATE(9544), 1, + sym_protocol_property_requirements, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220798] = 3, + ACTIONS(16906), 1, + sym__eq_custom, + STATE(4590), 1, + sym__equal_sign, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220811] = 2, + ACTIONS(9306), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220822] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9086), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220835] = 2, + ACTIONS(9310), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220846] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9087), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220859] = 2, + ACTIONS(9314), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220870] = 3, + ACTIONS(12388), 1, + anon_sym_LBRACE, + STATE(9915), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220883] = 3, + ACTIONS(16908), 1, + sym__arrow_operator_custom, + STATE(4459), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220896] = 2, + ACTIONS(9318), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220907] = 2, + ACTIONS(7551), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220918] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9094), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220931] = 2, + ACTIONS(9322), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220942] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9095), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220955] = 2, + ACTIONS(9326), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220966] = 2, + ACTIONS(9330), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220977] = 2, + ACTIONS(9334), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [220988] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9099), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221001] = 2, + ACTIONS(9338), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221012] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9100), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221025] = 2, + ACTIONS(9342), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221036] = 2, + ACTIONS(9346), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221047] = 2, + ACTIONS(9350), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221058] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9101), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221071] = 2, + ACTIONS(9354), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221082] = 2, + ACTIONS(9358), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221093] = 3, + ACTIONS(12376), 1, + anon_sym_LBRACE, + STATE(9555), 1, + sym_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221106] = 2, + ACTIONS(9362), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221117] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9107), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221130] = 2, + ACTIONS(9366), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221141] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9109), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221154] = 2, + ACTIONS(9370), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221165] = 3, + ACTIONS(13831), 1, + sym__as_custom, + STATE(4658), 1, + sym__as, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221178] = 2, + ACTIONS(9374), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221189] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9115), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221202] = 2, + ACTIONS(9378), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221213] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9117), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221226] = 2, + ACTIONS(9382), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221237] = 2, + ACTIONS(9386), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221248] = 2, + ACTIONS(9390), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221259] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9123), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221272] = 2, + ACTIONS(9394), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221283] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9124), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221296] = 2, + ACTIONS(9398), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221307] = 2, + ACTIONS(9402), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221318] = 2, + ACTIONS(9498), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221329] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9128), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221342] = 2, + ACTIONS(9410), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221353] = 3, + ACTIONS(14970), 1, + anon_sym_LPAREN, + STATE(6069), 1, + sym__function_value_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221366] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9129), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221379] = 2, + ACTIONS(9414), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221390] = 2, + ACTIONS(9422), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221401] = 3, + ACTIONS(12380), 1, + anon_sym_LBRACE, + STATE(9572), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221414] = 2, + ACTIONS(9426), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221425] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9136), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221438] = 2, + ACTIONS(7555), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221449] = 2, + ACTIONS(9430), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221460] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9141), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221473] = 2, + ACTIONS(9434), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221484] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9142), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221497] = 2, + ACTIONS(9450), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221508] = 2, + ACTIONS(9478), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221519] = 2, + ACTIONS(7567), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221530] = 2, + ACTIONS(9482), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221541] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9147), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221554] = 2, + ACTIONS(9494), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221565] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9148), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221578] = 2, + ACTIONS(9642), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221589] = 2, + ACTIONS(9502), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221600] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9153), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221613] = 2, + ACTIONS(9506), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221624] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9154), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221637] = 2, + ACTIONS(9510), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221648] = 3, + ACTIONS(14970), 1, + anon_sym_LPAREN, + STATE(6288), 1, + sym__function_value_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221661] = 2, + ACTIONS(9514), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221672] = 2, + ACTIONS(16910), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221683] = 2, + ACTIONS(7634), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221694] = 2, + ACTIONS(9518), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221705] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9161), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221718] = 2, + ACTIONS(16547), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221729] = 2, + ACTIONS(9546), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221740] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9169), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221753] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9609), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221766] = 2, + ACTIONS(9558), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221777] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9174), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221790] = 2, + ACTIONS(9562), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221801] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9175), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221814] = 2, + ACTIONS(9566), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221825] = 2, + ACTIONS(9682), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221836] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9659), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221849] = 2, + ACTIONS(9570), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221860] = 3, + ACTIONS(11564), 1, + anon_sym_LBRACE, + STATE(8689), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221873] = 2, + ACTIONS(9574), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221884] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9183), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221897] = 2, + ACTIONS(9578), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221908] = 2, + ACTIONS(9582), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221919] = 2, + ACTIONS(9586), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221930] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9187), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221943] = 2, + ACTIONS(9590), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221954] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9188), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221967] = 2, + ACTIONS(9594), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221978] = 2, + ACTIONS(9598), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [221989] = 2, + ACTIONS(9602), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222000] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9189), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222013] = 2, + ACTIONS(9606), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222024] = 2, + ACTIONS(9610), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222035] = 2, + ACTIONS(9686), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222046] = 2, + ACTIONS(9618), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222057] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9197), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222070] = 2, + ACTIONS(9626), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222081] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9198), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222094] = 2, + ACTIONS(9630), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222105] = 2, + ACTIONS(9634), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222116] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9206), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222129] = 2, + ACTIONS(9638), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222140] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9207), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222153] = 2, + ACTIONS(9690), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222164] = 2, + ACTIONS(9646), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222175] = 2, + ACTIONS(9650), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222186] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9213), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222199] = 2, + ACTIONS(9654), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222210] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9216), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222223] = 2, + ACTIONS(9658), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222234] = 2, + ACTIONS(9662), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222245] = 2, + ACTIONS(9666), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222256] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9219), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222269] = 2, + ACTIONS(9670), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222280] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9220), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222293] = 2, + ACTIONS(9674), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222304] = 2, + ACTIONS(9678), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222315] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9676), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222328] = 2, + ACTIONS(9750), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222339] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9228), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222352] = 2, + ACTIONS(9694), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222363] = 2, + ACTIONS(9762), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222374] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9236), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222387] = 2, + ACTIONS(9766), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222398] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9237), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222411] = 2, + ACTIONS(9774), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222422] = 2, + ACTIONS(9778), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222433] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9242), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222446] = 2, + ACTIONS(9782), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222457] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9243), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222470] = 2, + ACTIONS(9786), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222481] = 2, + ACTIONS(9790), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222492] = 2, + ACTIONS(9794), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222503] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9246), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222516] = 2, + ACTIONS(9798), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222527] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9247), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222540] = 2, + ACTIONS(9802), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222551] = 2, + ACTIONS(9806), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222562] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9684), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222575] = 2, + ACTIONS(9810), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222586] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9253), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222599] = 2, + ACTIONS(9698), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222610] = 2, + ACTIONS(9814), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222621] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9259), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222634] = 2, + ACTIONS(9818), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222645] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9260), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222658] = 2, + ACTIONS(9822), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222669] = 2, + ACTIONS(9702), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222680] = 2, + ACTIONS(9826), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222691] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9265), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222704] = 2, + ACTIONS(9830), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222715] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9266), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222728] = 2, + ACTIONS(9834), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222739] = 2, + ACTIONS(9838), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222750] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9272), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222763] = 2, + ACTIONS(9842), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222774] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9273), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222787] = 2, + ACTIONS(9846), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222798] = 2, + ACTIONS(9850), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222809] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9688), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222822] = 2, + ACTIONS(9706), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222833] = 2, + ACTIONS(9854), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222844] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9282), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222857] = 2, + ACTIONS(9858), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222868] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9283), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222881] = 2, + ACTIONS(9862), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222892] = 2, + ACTIONS(9866), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222903] = 2, + ACTIONS(9870), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222914] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9309), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222927] = 2, + ACTIONS(9874), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222938] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9267), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222951] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9699), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222964] = 2, + ACTIONS(9878), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222975] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9294), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222988] = 2, + ACTIONS(9882), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [222999] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9296), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223012] = 2, + ACTIONS(9886), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223023] = 2, + ACTIONS(9710), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223034] = 2, + ACTIONS(9714), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223045] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9748), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223058] = 2, + ACTIONS(9718), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223069] = 2, + ACTIONS(9890), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223080] = 2, + ACTIONS(10114), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223091] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9750), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223104] = 2, + ACTIONS(9894), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223115] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9316), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223128] = 2, + ACTIONS(9898), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223139] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9317), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223152] = 2, + ACTIONS(9902), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223163] = 2, + ACTIONS(9906), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223174] = 2, + ACTIONS(9910), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223185] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9322), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223198] = 2, + ACTIONS(9914), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223209] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9323), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223222] = 2, + ACTIONS(9918), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223233] = 2, + ACTIONS(9922), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223244] = 2, + ACTIONS(10002), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223255] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9326), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223268] = 2, + ACTIONS(10006), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223279] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9327), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223292] = 2, + ACTIONS(10038), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223303] = 2, + ACTIONS(10042), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223314] = 2, + ACTIONS(9722), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223325] = 2, + ACTIONS(10046), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223336] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9333), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223349] = 2, + ACTIONS(9726), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223360] = 2, + ACTIONS(10062), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223371] = 2, + ACTIONS(10066), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223382] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9339), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223395] = 2, + ACTIONS(10070), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223406] = 2, + ACTIONS(9730), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223417] = 2, + ACTIONS(10074), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223428] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9344), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223441] = 2, + ACTIONS(10078), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223452] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9345), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223465] = 2, + ACTIONS(10082), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223476] = 2, + ACTIONS(10086), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223487] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9350), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223500] = 2, + ACTIONS(10090), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223511] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9351), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223524] = 2, + ACTIONS(10094), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223535] = 2, + ACTIONS(10098), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223546] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9769), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223559] = 2, + ACTIONS(9734), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223570] = 2, + ACTIONS(10102), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223581] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9360), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223594] = 2, + ACTIONS(9738), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223605] = 2, + ACTIONS(10106), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223616] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9365), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223629] = 2, + ACTIONS(10110), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223640] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9366), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223653] = 2, + ACTIONS(9742), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223664] = 2, + ACTIONS(10118), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223675] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9371), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223688] = 2, + ACTIONS(10122), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223699] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9372), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223712] = 2, + ACTIONS(10126), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223723] = 2, + ACTIONS(10130), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223734] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9770), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223747] = 2, + ACTIONS(9746), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223758] = 2, + ACTIONS(10134), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223769] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9381), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223782] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9790), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223795] = 2, + ACTIONS(10138), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223806] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9387), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223819] = 2, + ACTIONS(9754), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223830] = 2, + ACTIONS(10142), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223841] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9392), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223854] = 2, + ACTIONS(10146), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223865] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9393), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223878] = 2, + ACTIONS(10150), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223889] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9806), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223902] = 2, + ACTIONS(9758), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223913] = 2, + ACTIONS(10154), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223924] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9400), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223937] = 2, + ACTIONS(10158), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223948] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9401), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223961] = 2, + ACTIONS(10162), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223972] = 2, + ACTIONS(10230), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223983] = 2, + ACTIONS(10234), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [223994] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9402), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224007] = 2, + ACTIONS(10238), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224018] = 2, + ACTIONS(10286), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224029] = 2, + ACTIONS(14114), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224040] = 2, + ACTIONS(10290), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224051] = 3, + ACTIONS(12388), 1, + anon_sym_LBRACE, + STATE(9894), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224064] = 2, + ACTIONS(16912), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224075] = 2, + ACTIONS(10294), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224086] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9411), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224099] = 2, + ACTIONS(9770), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224110] = 2, + ACTIONS(6945), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224121] = 2, + ACTIONS(7047), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224132] = 2, + ACTIONS(10310), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224143] = 3, + ACTIONS(11556), 1, + anon_sym_LBRACE, + STATE(9814), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224156] = 2, + ACTIONS(10314), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224167] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9423), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224180] = 2, + ACTIONS(10318), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224191] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9424), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224204] = 2, + ACTIONS(10322), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224215] = 2, + ACTIONS(10378), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224226] = 2, + ACTIONS(10326), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224237] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9429), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224250] = 2, + ACTIONS(10330), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224261] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9430), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224274] = 2, + ACTIONS(10334), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224285] = 2, + ACTIONS(10338), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224296] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9435), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224309] = 2, + ACTIONS(10342), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224320] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9436), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224333] = 2, + ACTIONS(10346), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224344] = 2, + ACTIONS(10350), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224355] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7614), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [224366] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7732), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [224377] = 2, + ACTIONS(10354), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224388] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9444), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224401] = 3, + ACTIONS(11556), 1, + anon_sym_LBRACE, + STATE(9804), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224414] = 2, + ACTIONS(10358), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224425] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9450), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224438] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7614), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [224449] = 2, + ACTIONS(10362), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224460] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9455), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224473] = 2, + ACTIONS(10366), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224484] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9456), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224497] = 2, + ACTIONS(10370), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224508] = 2, + ACTIONS(7661), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224519] = 2, + ACTIONS(16914), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224530] = 2, + ACTIONS(16916), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224541] = 2, + ACTIONS(10374), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224552] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9417), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224565] = 2, + ACTIONS(16918), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224576] = 2, + ACTIONS(10510), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224587] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9471), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224600] = 2, + ACTIONS(10434), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224611] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9472), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224624] = 2, + ACTIONS(9622), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224635] = 3, + ACTIONS(13026), 1, + anon_sym_LBRACE, + STATE(9745), 1, + sym_protocol_property_requirements, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224648] = 3, + ACTIONS(16920), 1, + sym__arrow_operator_custom, + STATE(4553), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224661] = 3, + ACTIONS(14557), 1, + sym__arrow_operator_custom, + STATE(4585), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224674] = 2, + ACTIONS(16922), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224685] = 2, + ACTIONS(9970), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224696] = 2, + ACTIONS(7752), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224707] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9485), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224720] = 3, + ACTIONS(16924), 1, + sym__dot_custom, + STATE(6443), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224733] = 3, + ACTIONS(16926), 1, + sym__arrow_operator_custom, + STATE(4568), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224746] = 2, + ACTIONS(9614), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224757] = 3, + ACTIONS(16928), 1, + sym__dot_custom, + STATE(6425), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224770] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9492), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224783] = 3, + ACTIONS(14662), 1, + sym__arrow_operator_custom, + STATE(4569), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224796] = 2, + ACTIONS(10442), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224807] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9493), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224820] = 2, + ACTIONS(10446), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224831] = 2, + ACTIONS(10462), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224842] = 2, + ACTIONS(10494), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224853] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9496), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224866] = 2, + ACTIONS(10498), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224877] = 3, + ACTIONS(13604), 1, + sym__arrow_operator_custom, + STATE(4401), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224890] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9497), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224903] = 2, + ACTIONS(7728), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224914] = 2, + ACTIONS(10502), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224925] = 3, + ACTIONS(12380), 1, + anon_sym_LBRACE, + STATE(9800), 1, + sym_enum_class_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224938] = 3, + ACTIONS(16930), 1, + sym__eq_custom, + STATE(4393), 1, + sym__equal_sign, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224951] = 2, + ACTIONS(13701), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224962] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7610), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [224973] = 2, + ACTIONS(10514), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224984] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9499), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [224997] = 2, + ACTIONS(10518), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225008] = 2, + ACTIONS(7724), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225019] = 3, + ACTIONS(16932), 1, + sym__arrow_operator_custom, + STATE(4375), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225032] = 2, + ACTIONS(10522), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225043] = 2, + ACTIONS(10526), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225054] = 3, + ACTIONS(16934), 1, + sym__arrow_operator_custom, + STATE(4579), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225067] = 3, + ACTIONS(14712), 1, + sym__arrow_operator_custom, + STATE(4582), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225080] = 3, + ACTIONS(16936), 1, + sym__arrow_operator_custom, + STATE(4603), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225093] = 2, + ACTIONS(10530), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225104] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9507), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225117] = 2, + ACTIONS(10534), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225128] = 2, + ACTIONS(10538), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225139] = 3, + ACTIONS(14730), 1, + sym__arrow_operator_custom, + STATE(4606), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225152] = 2, + ACTIONS(10542), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225163] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9513), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225176] = 3, + ACTIONS(12388), 1, + anon_sym_LBRACE, + STATE(9836), 1, + sym_protocol_body, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225189] = 2, + ACTIONS(10546), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225200] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9519), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225213] = 2, + ACTIONS(7712), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225224] = 3, + ACTIONS(14970), 1, + anon_sym_LPAREN, + STATE(6153), 1, + sym__function_value_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225237] = 2, + ACTIONS(10550), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225248] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9524), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225261] = 2, + ACTIONS(10554), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225272] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9525), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225285] = 2, + ACTIONS(10558), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225296] = 3, + ACTIONS(16938), 1, + sym__arrow_operator_custom, + STATE(4612), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225309] = 3, + ACTIONS(14742), 1, + sym__arrow_operator_custom, + STATE(4613), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225322] = 3, + ACTIONS(14970), 1, + anon_sym_LPAREN, + STATE(6263), 1, + sym__function_value_parameters, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225335] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9821), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225348] = 2, + ACTIONS(9926), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225359] = 2, + ACTIONS(10562), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225370] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9538), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225383] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9784), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225396] = 2, + ACTIONS(10566), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225407] = 3, + ACTIONS(16940), 1, + sym__arrow_operator_custom, + STATE(4620), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225420] = 3, + ACTIONS(14798), 1, + sym__arrow_operator_custom, + STATE(4622), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225433] = 2, + ACTIONS(10570), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225444] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9549), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225457] = 2, + ACTIONS(9930), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225468] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9783), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225481] = 2, + ACTIONS(9934), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225492] = 3, + ACTIONS(16942), 1, + sym__arrow_operator_custom, + STATE(4636), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225505] = 2, + ACTIONS(10602), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225516] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9604), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225529] = 3, + ACTIONS(16944), 1, + sym__dot_custom, + STATE(6617), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225542] = 2, + ACTIONS(10598), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225553] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9565), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225566] = 2, + ACTIONS(10594), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225577] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9566), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225590] = 2, + ACTIONS(10590), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225601] = 2, + ACTIONS(10586), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225612] = 3, + ACTIONS(14361), 1, + sym__arrow_operator_custom, + STATE(4475), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225625] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9573), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225638] = 3, + ACTIONS(14806), 1, + sym__arrow_operator_custom, + STATE(4637), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225651] = 2, + ACTIONS(10582), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225662] = 3, + ACTIONS(16946), 1, + sym__eq_custom, + STATE(4476), 1, + sym__equal_sign, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225675] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9545), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225688] = 2, + ACTIONS(10578), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225699] = 2, + ACTIONS(10574), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225710] = 2, + ACTIONS(16948), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225721] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9779), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225734] = 3, + ACTIONS(16950), 1, + sym__arrow_operator_custom, + STATE(4485), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225747] = 2, + ACTIONS(9938), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225758] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7575), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [225769] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7586), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [225780] = 3, + ACTIONS(11556), 1, + anon_sym_LBRACE, + STATE(9577), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225793] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7575), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [225804] = 2, + ACTIONS(10506), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225815] = 2, + ACTIONS(10490), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225826] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9580), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225839] = 2, + ACTIONS(10486), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225850] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9583), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225863] = 2, + ACTIONS(10482), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225874] = 2, + ACTIONS(10478), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225885] = 2, + ACTIONS(10474), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225896] = 2, + ACTIONS(10470), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225907] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9584), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225920] = 2, + ACTIONS(10466), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225931] = 2, + ACTIONS(8306), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225942] = 2, + ACTIONS(9942), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225953] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9768), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225966] = 2, + ACTIONS(10458), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225977] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9590), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [225990] = 3, + ACTIONS(16952), 1, + sym__dot_custom, + STATE(6830), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226003] = 2, + ACTIONS(10454), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226014] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9591), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226027] = 2, + ACTIONS(10450), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226038] = 3, + ACTIONS(16954), 1, + sym__arrow_operator_custom, + STATE(4642), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226051] = 3, + ACTIONS(14868), 1, + sym__arrow_operator_custom, + STATE(4643), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226064] = 3, + ACTIONS(14684), 1, + sym__arrow_operator_custom, + STATE(4544), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226077] = 2, + ACTIONS(9946), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226088] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9767), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226101] = 2, + ACTIONS(10430), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226112] = 2, + ACTIONS(9950), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226123] = 3, + ACTIONS(16956), 1, + sym__arrow_operator_custom, + STATE(4566), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226136] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9613), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226149] = 2, + ACTIONS(9954), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226160] = 3, + ACTIONS(16958), 1, + sym__arrow_operator_custom, + STATE(4648), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226173] = 3, + ACTIONS(14581), 1, + sym__arrow_operator_custom, + STATE(4652), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226186] = 2, + ACTIONS(10426), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226197] = 2, + ACTIONS(10246), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226208] = 2, + ACTIONS(10422), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226219] = 2, + ACTIONS(10418), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226230] = 2, + ACTIONS(10414), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226241] = 2, + ACTIONS(9958), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226252] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9764), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226265] = 2, + ACTIONS(9962), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226276] = 2, + ACTIONS(10410), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226287] = 2, + ACTIONS(9966), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226298] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9622), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226311] = 2, + ACTIONS(10406), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226322] = 3, + ACTIONS(16960), 1, + sym__dot_custom, + STATE(6603), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226335] = 2, + ACTIONS(10402), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226346] = 3, + ACTIONS(16962), 1, + sym__arrow_operator_custom, + STATE(4641), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226359] = 2, + ACTIONS(10398), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226370] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9629), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226383] = 2, + ACTIONS(10394), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226394] = 3, + ACTIONS(14240), 1, + sym__arrow_operator_custom, + STATE(4659), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226407] = 3, + ACTIONS(14870), 1, + sym__arrow_operator_custom, + STATE(4646), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226420] = 2, + ACTIONS(10438), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226431] = 2, + ACTIONS(10390), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226442] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9763), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226455] = 3, + ACTIONS(16964), 1, + sym__arrow_operator_custom, + STATE(4657), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226468] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9637), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226481] = 2, + ACTIONS(10386), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226492] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9638), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226505] = 2, + ACTIONS(10382), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226516] = 2, + ACTIONS(16966), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226527] = 2, + ACTIONS(16968), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226538] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7476), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [226549] = 3, + ACTIONS(11556), 1, + anon_sym_LBRACE, + STATE(9643), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226562] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7499), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [226573] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7492), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [226584] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7476), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [226595] = 2, + ACTIONS(9974), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226606] = 3, + ACTIONS(11556), 1, + anon_sym_LBRACE, + STATE(9646), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226619] = 3, + ACTIONS(16970), 1, + sym__dot_custom, + STATE(6364), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226632] = 2, + ACTIONS(10306), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226643] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9647), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226656] = 2, + ACTIONS(10302), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226667] = 2, + ACTIONS(10298), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226678] = 3, + ACTIONS(13440), 1, + sym__arrow_operator_custom, + STATE(4550), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226691] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9762), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226704] = 2, + ACTIONS(16972), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226715] = 3, + ACTIONS(16974), 1, + sym__arrow_operator_custom, + STATE(4651), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226728] = 3, + ACTIONS(16976), 1, + sym__arrow_operator_custom, + STATE(4581), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226741] = 2, + ACTIONS(10282), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226752] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9652), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226765] = 2, + ACTIONS(10278), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226776] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9653), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226789] = 2, + ACTIONS(10274), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226800] = 2, + ACTIONS(10270), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226811] = 2, + ACTIONS(10266), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226822] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9654), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226835] = 3, + ACTIONS(14880), 1, + sym__arrow_operator_custom, + STATE(4655), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226848] = 2, + ACTIONS(10262), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226859] = 3, + ACTIONS(16978), 1, + sym__dot_custom, + STATE(6886), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226872] = 2, + ACTIONS(10258), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226883] = 2, + ACTIONS(10254), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226894] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9657), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226907] = 3, + ACTIONS(13514), 1, + sym__arrow_operator_custom, + STATE(4479), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226920] = 2, + ACTIONS(9978), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226931] = 2, + ACTIONS(10250), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226942] = 3, + ACTIONS(16980), 1, + sym__arrow_operator_custom, + STATE(4619), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226955] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9658), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226968] = 2, + ACTIONS(16982), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226979] = 2, + ACTIONS(10242), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [226990] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9666), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227003] = 2, + ACTIONS(9982), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227014] = 2, + ACTIONS(10226), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227025] = 2, + ACTIONS(9986), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227036] = 3, + ACTIONS(16984), 1, + sym__arrow_operator_custom, + STATE(4601), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227049] = 3, + ACTIONS(14910), 1, + sym__arrow_operator_custom, + STATE(4598), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227062] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9749), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227075] = 3, + ACTIONS(16986), 1, + sym__dot_custom, + STATE(6838), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227088] = 2, + ACTIONS(10222), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227099] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9681), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227112] = 2, + ACTIONS(10218), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227123] = 3, + ACTIONS(13787), 1, + sym__arrow_operator_custom, + STATE(4420), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227136] = 2, + ACTIONS(9990), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227147] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9682), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227160] = 3, + ACTIONS(16988), 1, + sym__arrow_operator_custom, + STATE(4464), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227173] = 2, + ACTIONS(10214), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227184] = 2, + ACTIONS(10210), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227195] = 2, + ACTIONS(10206), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227206] = 2, + ACTIONS(10202), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227217] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9683), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227230] = 2, + ACTIONS(10198), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227241] = 2, + ACTIONS(10194), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227252] = 2, + ACTIONS(9994), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227263] = 2, + ACTIONS(9998), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227274] = 2, + ACTIONS(10190), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227285] = 3, + ACTIONS(16990), 1, + sym__dot_custom, + STATE(6526), 1, + sym__dot, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227298] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9690), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227311] = 2, + ACTIONS(10186), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227322] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9692), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227335] = 3, + ACTIONS(13992), 1, + sym__arrow_operator_custom, + STATE(4654), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227348] = 3, + ACTIONS(16992), 1, + sym__arrow_operator_custom, + STATE(4580), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227361] = 3, + ACTIONS(16994), 1, + sym__arrow_operator_custom, + STATE(4571), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227374] = 2, + ACTIONS(10182), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227385] = 3, + ACTIONS(14912), 1, + sym__arrow_operator_custom, + STATE(4576), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227398] = 2, + ACTIONS(10178), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227409] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9696), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227422] = 2, + ACTIONS(10174), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227433] = 2, + ACTIONS(10170), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227444] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9680), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227457] = 2, + ACTIONS(10010), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227468] = 2, + ACTIONS(10166), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227479] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9706), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227492] = 3, + ACTIONS(14204), 1, + sym__arrow_operator_custom, + STATE(4617), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227505] = 2, + ACTIONS(10014), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227516] = 3, + ACTIONS(16996), 1, + sym__arrow_operator_custom, + STATE(4353), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227529] = 2, + ACTIONS(7684), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227540] = 3, + ACTIONS(16998), 1, + sym__arrow_operator_custom, + STATE(4555), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227553] = 3, + ACTIONS(14728), 1, + sym__arrow_operator_custom, + STATE(4503), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227566] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9737), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227579] = 2, + ACTIONS(10018), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227590] = 3, + ACTIONS(14232), 1, + sym__arrow_operator_custom, + STATE(4394), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227603] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9735), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227616] = 3, + ACTIONS(17000), 1, + sym__arrow_operator_custom, + STATE(4421), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227629] = 2, + ACTIONS(7696), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227640] = 2, + ACTIONS(10022), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227651] = 3, + ACTIONS(17002), 1, + sym__arrow_operator_custom, + STATE(4533), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227664] = 3, + ACTIONS(14714), 1, + sym__arrow_operator_custom, + STATE(4528), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227677] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7424), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [227688] = 3, + ACTIONS(14587), 1, + sym__arrow_operator_custom, + STATE(4468), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227701] = 2, + ACTIONS(10026), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227712] = 3, + ACTIONS(17004), 1, + sym__arrow_operator_custom, + STATE(4374), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227725] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7420), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [227736] = 3, + ACTIONS(11556), 1, + anon_sym_LBRACE, + STATE(9711), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227749] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7413), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [227760] = 3, + ACTIONS(11556), 1, + anon_sym_LBRACE, + STATE(9712), 1, + sym_computed_property, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227773] = 3, + ACTIONS(14589), 1, + sym__arrow_operator_custom, + STATE(4386), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227786] = 3, + ACTIONS(17006), 1, + sym__arrow_operator_custom, + STATE(4387), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227799] = 2, + ACTIONS(5), 3, + sym_comment, + sym_directive, + sym_diagnostic, + ACTIONS(7424), 3, + sym_multiline_comment, + sym__semi, + anon_sym_RBRACE, + [227810] = 2, + ACTIONS(10058), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227821] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9719), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227834] = 2, + ACTIONS(10054), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227845] = 3, + ACTIONS(14639), 1, + sym__arrow_operator_custom, + STATE(4417), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227858] = 3, + ACTIONS(17008), 1, + sym__arrow_operator_custom, + STATE(4443), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227871] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9720), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227884] = 2, + ACTIONS(10050), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227895] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9731), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227908] = 2, + ACTIONS(10034), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227919] = 3, + ACTIONS(14704), 1, + sym__arrow_operator_custom, + STATE(4593), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227932] = 3, + ACTIONS(17010), 1, + sym__arrow_operator_custom, + STATE(4480), 1, + sym__arrow_operator, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227945] = 3, + ACTIONS(13649), 1, + anon_sym_LBRACE, + STATE(9730), 1, + sym__block, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227958] = 2, + ACTIONS(10030), 2, + sym__semi, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227969] = 2, + ACTIONS(17012), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227979] = 2, + ACTIONS(17014), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227989] = 2, + ACTIONS(17016), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [227999] = 2, + ACTIONS(17018), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228009] = 2, + ACTIONS(17020), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228019] = 2, + ACTIONS(17022), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228029] = 2, + ACTIONS(15422), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228039] = 2, + ACTIONS(15422), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228049] = 2, + ACTIONS(7688), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228059] = 2, + ACTIONS(17024), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228069] = 2, + ACTIONS(17026), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228079] = 2, + ACTIONS(17028), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228089] = 2, + ACTIONS(17030), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228099] = 2, + ACTIONS(17032), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228109] = 2, + ACTIONS(17034), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228119] = 2, + ACTIONS(17036), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228129] = 2, + ACTIONS(17038), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228139] = 2, + ACTIONS(17040), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228149] = 2, + ACTIONS(17042), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228159] = 2, + ACTIONS(17044), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228169] = 2, + ACTIONS(17046), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228179] = 2, + ACTIONS(17048), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228189] = 2, + ACTIONS(17050), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228199] = 2, + ACTIONS(17052), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228209] = 2, + ACTIONS(17054), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228219] = 2, + ACTIONS(17056), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228229] = 2, + ACTIONS(17058), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228239] = 2, + ACTIONS(17060), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228249] = 2, + ACTIONS(17062), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228259] = 2, + ACTIONS(17064), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228269] = 2, + ACTIONS(17066), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228279] = 2, + ACTIONS(17068), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228289] = 2, + ACTIONS(17070), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228299] = 2, + ACTIONS(17072), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228309] = 2, + ACTIONS(17074), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228319] = 2, + ACTIONS(17076), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228329] = 2, + ACTIONS(17078), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228339] = 2, + ACTIONS(17080), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228349] = 2, + ACTIONS(17082), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228359] = 2, + ACTIONS(17084), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228369] = 2, + ACTIONS(17086), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228379] = 2, + ACTIONS(17088), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228389] = 2, + ACTIONS(17090), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228399] = 2, + ACTIONS(17092), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228409] = 2, + ACTIONS(17094), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228419] = 2, + ACTIONS(17096), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228429] = 2, + ACTIONS(17098), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228439] = 2, + ACTIONS(17100), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228449] = 2, + ACTIONS(17102), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228459] = 2, + ACTIONS(17104), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228469] = 2, + ACTIONS(17106), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228479] = 2, + ACTIONS(17108), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228489] = 2, + ACTIONS(17110), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228499] = 2, + ACTIONS(17112), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228509] = 2, + ACTIONS(17114), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228519] = 2, + ACTIONS(17116), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228529] = 2, + ACTIONS(17118), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228539] = 2, + ACTIONS(17120), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228549] = 2, + ACTIONS(17122), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228559] = 2, + ACTIONS(17124), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228569] = 2, + ACTIONS(17126), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228579] = 2, + ACTIONS(17128), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228589] = 2, + ACTIONS(17130), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228599] = 2, + ACTIONS(17132), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228609] = 2, + ACTIONS(17134), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228619] = 2, + ACTIONS(17136), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228629] = 2, + ACTIONS(7720), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228639] = 2, + ACTIONS(15234), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228649] = 2, + ACTIONS(17138), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228659] = 2, + ACTIONS(17140), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228669] = 2, + ACTIONS(15228), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228679] = 2, + ACTIONS(15228), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228689] = 2, + ACTIONS(15234), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228699] = 2, + ACTIONS(15228), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228709] = 2, + ACTIONS(17142), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228719] = 2, + ACTIONS(17144), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228729] = 2, + ACTIONS(15228), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228739] = 2, + ACTIONS(17146), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228749] = 2, + ACTIONS(17148), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228759] = 2, + ACTIONS(17150), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228769] = 2, + ACTIONS(17152), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228779] = 2, + ACTIONS(17154), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228789] = 2, + ACTIONS(17156), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228799] = 2, + ACTIONS(17158), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228809] = 2, + ACTIONS(17160), 1, + anon_sym_RPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228819] = 2, + ACTIONS(17162), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228829] = 2, + ACTIONS(17164), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228839] = 2, + ACTIONS(7665), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228849] = 2, + ACTIONS(17166), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228859] = 2, + ACTIONS(17168), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228869] = 2, + ACTIONS(17170), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228879] = 2, + ACTIONS(17172), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228889] = 2, + ACTIONS(17174), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228899] = 2, + ACTIONS(17176), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228909] = 2, + ACTIONS(17178), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228919] = 2, + ACTIONS(17180), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228929] = 2, + ACTIONS(17182), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228939] = 2, + ACTIONS(17184), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228949] = 2, + ACTIONS(17186), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228959] = 2, + ACTIONS(17188), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228969] = 2, + ACTIONS(17190), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228979] = 2, + ACTIONS(17192), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228989] = 2, + ACTIONS(17194), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [228999] = 2, + ACTIONS(17196), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229009] = 2, + ACTIONS(17198), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229019] = 2, + ACTIONS(17200), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229029] = 2, + ACTIONS(17202), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229039] = 2, + ACTIONS(17204), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229049] = 2, + ACTIONS(17206), 1, + anon_sym_enum, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229059] = 2, + ACTIONS(17208), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229069] = 2, + ACTIONS(17210), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229079] = 2, + ACTIONS(17212), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229089] = 2, + ACTIONS(17214), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229099] = 2, + ACTIONS(17216), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229109] = 2, + ACTIONS(17218), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229119] = 2, + ACTIONS(17220), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229129] = 2, + ACTIONS(17222), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229139] = 2, + ACTIONS(17224), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229149] = 2, + ACTIONS(17226), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229159] = 2, + ACTIONS(17228), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229169] = 2, + ACTIONS(17230), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229179] = 2, + ACTIONS(17232), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229189] = 2, + ACTIONS(17234), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229199] = 2, + ACTIONS(17236), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229209] = 2, + ACTIONS(17238), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229219] = 2, + ACTIONS(17240), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229229] = 2, + ACTIONS(17242), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229239] = 2, + ACTIONS(17244), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229249] = 2, + ACTIONS(17246), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229259] = 2, + ACTIONS(17248), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229269] = 2, + ACTIONS(17250), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229279] = 2, + ACTIONS(17252), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229289] = 2, + ACTIONS(17254), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229299] = 2, + ACTIONS(17256), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229309] = 2, + ACTIONS(17258), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229319] = 2, + ACTIONS(17260), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229329] = 2, + ACTIONS(17262), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229339] = 2, + ACTIONS(17264), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229349] = 2, + ACTIONS(17266), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229359] = 2, + ACTIONS(17268), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229369] = 2, + ACTIONS(17270), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229379] = 2, + ACTIONS(17272), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229389] = 2, + ACTIONS(17274), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229399] = 2, + ACTIONS(17276), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229409] = 2, + ACTIONS(17278), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229419] = 2, + ACTIONS(17280), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229429] = 2, + ACTIONS(17282), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229439] = 2, + ACTIONS(17284), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229449] = 2, + ACTIONS(17286), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229459] = 2, + ACTIONS(17288), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229469] = 2, + ACTIONS(17290), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229479] = 2, + ACTIONS(17292), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229489] = 2, + ACTIONS(17294), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229499] = 2, + ACTIONS(17296), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229509] = 2, + ACTIONS(17298), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229519] = 2, + ACTIONS(17300), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229529] = 2, + ACTIONS(17302), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229539] = 2, + ACTIONS(17304), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229549] = 2, + ACTIONS(17306), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229559] = 2, + ACTIONS(17308), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229569] = 2, + ACTIONS(17310), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229579] = 2, + ACTIONS(17312), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229589] = 2, + ACTIONS(17314), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229599] = 2, + ACTIONS(17316), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229609] = 2, + ACTIONS(7626), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229619] = 2, + ACTIONS(17318), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229629] = 2, + ACTIONS(15518), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229639] = 2, + ACTIONS(17320), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229649] = 2, + ACTIONS(15518), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229659] = 2, + ACTIONS(15522), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229669] = 2, + ACTIONS(15526), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229679] = 2, + ACTIONS(15518), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229689] = 2, + ACTIONS(17322), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229699] = 2, + ACTIONS(15518), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229709] = 2, + ACTIONS(15522), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229719] = 2, + ACTIONS(17324), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229729] = 2, + ACTIONS(15526), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229739] = 2, + ACTIONS(17326), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229749] = 2, + ACTIONS(17328), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229759] = 2, + ACTIONS(17330), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229769] = 2, + ACTIONS(17332), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229779] = 2, + ACTIONS(17334), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229789] = 2, + ACTIONS(17336), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229799] = 2, + ACTIONS(17338), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229809] = 2, + ACTIONS(17340), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229819] = 2, + ACTIONS(17342), 1, + anon_sym_RPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229829] = 2, + ACTIONS(17344), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229839] = 2, + ACTIONS(17346), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229849] = 2, + ACTIONS(17348), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229859] = 2, + ACTIONS(17350), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229869] = 2, + ACTIONS(17352), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229879] = 2, + ACTIONS(17354), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229889] = 2, + ACTIONS(17356), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229899] = 2, + ACTIONS(17358), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229909] = 2, + ACTIONS(17360), 1, + anon_sym_set, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229919] = 2, + ACTIONS(17362), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229929] = 2, + ACTIONS(17364), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229939] = 2, + ACTIONS(17366), 1, + anon_sym_let, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229949] = 2, + ACTIONS(17368), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229959] = 2, + ACTIONS(7535), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229969] = 2, + ACTIONS(17370), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229979] = 2, + ACTIONS(17372), 1, + anon_sym_u, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229989] = 2, + ACTIONS(17374), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [229999] = 2, + ACTIONS(17376), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230009] = 2, + ACTIONS(17378), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230019] = 2, + ACTIONS(17380), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230029] = 2, + ACTIONS(17382), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230039] = 2, + ACTIONS(17384), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230049] = 2, + ACTIONS(17386), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230059] = 2, + ACTIONS(17388), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230069] = 2, + ACTIONS(17390), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230079] = 2, + ACTIONS(17392), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230089] = 2, + ACTIONS(17394), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230099] = 2, + ACTIONS(17396), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230109] = 2, + ACTIONS(17398), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230119] = 2, + ACTIONS(17400), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230129] = 2, + ACTIONS(17402), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230139] = 2, + ACTIONS(17404), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230149] = 2, + ACTIONS(17406), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230159] = 2, + ACTIONS(17408), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230169] = 2, + ACTIONS(17410), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230179] = 2, + ACTIONS(17412), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230189] = 2, + ACTIONS(17414), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230199] = 2, + ACTIONS(17416), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230209] = 2, + ACTIONS(17418), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230219] = 2, + ACTIONS(17420), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230229] = 2, + ACTIONS(17422), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230239] = 2, + ACTIONS(17424), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230249] = 2, + ACTIONS(17426), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230259] = 2, + ACTIONS(17428), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230269] = 2, + ACTIONS(17430), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230279] = 2, + ACTIONS(17432), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230289] = 2, + ACTIONS(17434), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230299] = 2, + ACTIONS(17436), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230309] = 2, + ACTIONS(17438), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230319] = 2, + ACTIONS(17440), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230329] = 2, + ACTIONS(17442), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230339] = 2, + ACTIONS(17444), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230349] = 2, + ACTIONS(17446), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230359] = 2, + ACTIONS(17448), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230369] = 2, + ACTIONS(17450), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230379] = 2, + ACTIONS(17452), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230389] = 2, + ACTIONS(17454), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230399] = 2, + ACTIONS(17456), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230409] = 2, + ACTIONS(17458), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230419] = 2, + ACTIONS(17460), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230429] = 2, + ACTIONS(17462), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230439] = 2, + ACTIONS(17464), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230449] = 2, + ACTIONS(17466), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230459] = 2, + ACTIONS(17468), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230469] = 2, + ACTIONS(17470), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230479] = 2, + ACTIONS(17472), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230489] = 2, + ACTIONS(17474), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230499] = 2, + ACTIONS(17476), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230509] = 2, + ACTIONS(17478), 1, + sym_integer_literal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230519] = 2, + ACTIONS(17480), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230529] = 2, + ACTIONS(17482), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230539] = 2, + ACTIONS(17484), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230549] = 2, + ACTIONS(17486), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230559] = 2, + ACTIONS(17488), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230569] = 2, + ACTIONS(7507), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230579] = 2, + ACTIONS(17490), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230589] = 2, + ACTIONS(15816), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230599] = 2, + ACTIONS(15837), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230609] = 2, + ACTIONS(12599), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230619] = 2, + ACTIONS(17492), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230629] = 2, + ACTIONS(17494), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230639] = 2, + ACTIONS(12599), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230649] = 2, + ACTIONS(17496), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230659] = 2, + ACTIONS(15816), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230669] = 2, + ACTIONS(15837), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230679] = 2, + ACTIONS(12599), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230689] = 2, + ACTIONS(17498), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230699] = 2, + ACTIONS(12599), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230709] = 2, + ACTIONS(17500), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230719] = 2, + ACTIONS(16397), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230729] = 2, + ACTIONS(743), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230739] = 2, + ACTIONS(17502), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230749] = 2, + ACTIONS(17504), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230759] = 2, + ACTIONS(17506), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230769] = 2, + ACTIONS(737), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230779] = 2, + ACTIONS(17508), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230789] = 2, + ACTIONS(17510), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230799] = 2, + ACTIONS(17512), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230809] = 2, + ACTIONS(17514), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230819] = 2, + ACTIONS(17516), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230829] = 2, + ACTIONS(17518), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230839] = 2, + ACTIONS(7602), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230849] = 2, + ACTIONS(17520), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230859] = 2, + ACTIONS(7763), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230869] = 2, + ACTIONS(17522), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230879] = 2, + ACTIONS(17524), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230889] = 2, + ACTIONS(17526), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230899] = 2, + ACTIONS(703), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230909] = 2, + ACTIONS(17528), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230919] = 2, + ACTIONS(17530), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230929] = 2, + ACTIONS(695), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230939] = 2, + ACTIONS(17532), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230949] = 2, + ACTIONS(17534), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230959] = 2, + ACTIONS(17536), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230969] = 2, + ACTIONS(17538), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230979] = 2, + ACTIONS(17540), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230989] = 2, + ACTIONS(7598), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [230999] = 2, + ACTIONS(17542), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231009] = 2, + ACTIONS(17544), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231019] = 2, + ACTIONS(7559), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231029] = 2, + ACTIONS(17546), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231039] = 2, + ACTIONS(17548), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231049] = 2, + ACTIONS(17550), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231059] = 2, + ACTIONS(637), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231069] = 2, + ACTIONS(17552), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231079] = 2, + ACTIONS(17554), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231089] = 2, + ACTIONS(639), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231099] = 2, + ACTIONS(17556), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231109] = 2, + ACTIONS(17558), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231119] = 2, + ACTIONS(17560), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231129] = 2, + ACTIONS(17562), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231139] = 2, + ACTIONS(17564), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231149] = 2, + ACTIONS(17566), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231159] = 2, + ACTIONS(17568), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231169] = 2, + ACTIONS(17570), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231179] = 2, + ACTIONS(17572), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231189] = 2, + ACTIONS(17574), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231199] = 2, + ACTIONS(653), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231209] = 2, + ACTIONS(17576), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231219] = 2, + ACTIONS(6872), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231229] = 2, + ACTIONS(17578), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231239] = 2, + ACTIONS(17580), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231249] = 2, + ACTIONS(17582), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231259] = 2, + ACTIONS(659), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231269] = 2, + ACTIONS(17584), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231279] = 2, + ACTIONS(17586), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231289] = 2, + ACTIONS(17588), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231299] = 2, + ACTIONS(17590), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231309] = 2, + ACTIONS(17592), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231319] = 2, + ACTIONS(17594), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231329] = 2, + ACTIONS(16565), 1, + sym__eq_custom, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231339] = 2, + ACTIONS(17596), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231349] = 2, + ACTIONS(17598), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231359] = 2, + ACTIONS(17600), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231369] = 2, + ACTIONS(16397), 1, + sym__eq_custom, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231379] = 2, + ACTIONS(17602), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231389] = 2, + ACTIONS(17604), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231399] = 2, + ACTIONS(17606), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231409] = 2, + ACTIONS(17608), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231419] = 2, + ACTIONS(17610), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231429] = 2, + ACTIONS(17612), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231439] = 2, + ACTIONS(17614), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231449] = 2, + ACTIONS(17616), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231459] = 2, + ACTIONS(17618), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231469] = 2, + ACTIONS(17620), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231479] = 2, + ACTIONS(17622), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231489] = 2, + ACTIONS(17624), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231499] = 2, + ACTIONS(17626), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231509] = 2, + ACTIONS(17628), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231519] = 2, + ACTIONS(17630), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231529] = 2, + ACTIONS(17632), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231539] = 2, + ACTIONS(17634), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231549] = 2, + ACTIONS(17636), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231559] = 2, + ACTIONS(17638), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231569] = 2, + ACTIONS(17640), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231579] = 2, + ACTIONS(17642), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231589] = 2, + ACTIONS(17644), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231599] = 2, + ACTIONS(15032), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231609] = 2, + ACTIONS(17646), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231619] = 2, + ACTIONS(669), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231629] = 2, + ACTIONS(17648), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231639] = 2, + ACTIONS(17650), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231649] = 2, + ACTIONS(713), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231659] = 2, + ACTIONS(17652), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231669] = 2, + ACTIONS(17654), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231679] = 2, + ACTIONS(17656), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231689] = 2, + ACTIONS(17658), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231699] = 2, + ACTIONS(17660), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231709] = 2, + ACTIONS(17662), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231719] = 2, + ACTIONS(17664), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231729] = 2, + ACTIONS(17666), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231739] = 2, + ACTIONS(17668), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231749] = 2, + ACTIONS(17670), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231759] = 2, + ACTIONS(17672), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231769] = 2, + ACTIONS(17674), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231779] = 2, + ACTIONS(17676), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231789] = 2, + ACTIONS(17678), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231799] = 2, + ACTIONS(17680), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231809] = 2, + ACTIONS(17682), 1, + anon_sym_let, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231819] = 2, + ACTIONS(17684), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231829] = 2, + ACTIONS(7646), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231839] = 2, + ACTIONS(17686), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231849] = 2, + ACTIONS(17688), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231859] = 2, + ACTIONS(17690), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231869] = 2, + ACTIONS(17692), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231879] = 2, + ACTIONS(17694), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231889] = 2, + ACTIONS(7640), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231899] = 2, + ACTIONS(12529), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231909] = 2, + ACTIONS(17696), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231919] = 2, + ACTIONS(12529), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231929] = 2, + ACTIONS(17698), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231939] = 2, + ACTIONS(11874), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231949] = 2, + ACTIONS(17700), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231959] = 2, + ACTIONS(12529), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231969] = 2, + ACTIONS(17702), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231979] = 2, + ACTIONS(12529), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231989] = 2, + ACTIONS(17704), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [231999] = 2, + ACTIONS(17706), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232009] = 2, + ACTIONS(11874), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232019] = 2, + ACTIONS(17708), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232029] = 2, + ACTIONS(16565), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232039] = 2, + ACTIONS(17710), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232049] = 2, + ACTIONS(17712), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232059] = 2, + ACTIONS(17714), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232069] = 2, + ACTIONS(17716), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232079] = 2, + ACTIONS(17718), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232089] = 2, + ACTIONS(17720), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232099] = 2, + ACTIONS(17722), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232109] = 2, + ACTIONS(17724), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232119] = 2, + ACTIONS(17726), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232129] = 2, + ACTIONS(17728), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232139] = 2, + ACTIONS(17730), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232149] = 2, + ACTIONS(17732), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232159] = 2, + ACTIONS(17734), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232169] = 2, + ACTIONS(17736), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232179] = 2, + ACTIONS(17738), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232189] = 2, + ACTIONS(17740), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232199] = 2, + ACTIONS(7456), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232209] = 2, + ACTIONS(17742), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232219] = 2, + ACTIONS(699), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232229] = 2, + ACTIONS(17744), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232239] = 2, + ACTIONS(701), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232249] = 2, + ACTIONS(17746), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232259] = 2, + ACTIONS(17748), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232269] = 2, + ACTIONS(17750), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232279] = 2, + ACTIONS(17752), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232289] = 2, + ACTIONS(17754), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232299] = 2, + ACTIONS(17756), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232309] = 2, + ACTIONS(17758), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232319] = 2, + ACTIONS(4817), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232329] = 2, + ACTIONS(17760), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232339] = 2, + ACTIONS(11157), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232349] = 2, + ACTIONS(17762), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232359] = 2, + ACTIONS(17764), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232369] = 2, + ACTIONS(17766), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232379] = 2, + ACTIONS(7748), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232389] = 2, + ACTIONS(17768), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232399] = 2, + ACTIONS(17770), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232409] = 2, + ACTIONS(17772), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232419] = 2, + ACTIONS(17774), 1, + anon_sym_RPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232429] = 2, + ACTIONS(17776), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232439] = 2, + ACTIONS(17778), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232449] = 2, + ACTIONS(17780), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232459] = 2, + ACTIONS(17782), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232469] = 2, + ACTIONS(17784), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232479] = 2, + ACTIONS(7708), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232489] = 2, + ACTIONS(17786), 1, + anon_sym_enum, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232499] = 2, + ACTIONS(17788), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232509] = 2, + ACTIONS(673), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232519] = 2, + ACTIONS(17790), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232529] = 2, + ACTIONS(17792), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232539] = 2, + ACTIONS(17794), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232549] = 2, + ACTIONS(715), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232559] = 2, + ACTIONS(17796), 1, + aux_sym__uni_character_literal_token1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232569] = 2, + ACTIONS(17798), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232579] = 2, + ACTIONS(17800), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232589] = 2, + ACTIONS(17802), 1, + anon_sym_while, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232599] = 2, + ACTIONS(17804), 1, + anon_sym_RPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232609] = 2, + ACTIONS(17806), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232619] = 2, + ACTIONS(17808), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232629] = 2, + ACTIONS(17810), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232639] = 2, + ACTIONS(17812), 1, + anon_sym_while, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232649] = 2, + ACTIONS(17814), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232659] = 2, + ACTIONS(17816), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232669] = 2, + ACTIONS(17818), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232679] = 2, + ACTIONS(17820), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232689] = 2, + ACTIONS(17822), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232699] = 2, + ACTIONS(17824), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232709] = 2, + ACTIONS(17826), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232719] = 2, + ACTIONS(17828), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232729] = 2, + ACTIONS(17830), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232739] = 2, + ACTIONS(17832), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232749] = 2, + ACTIONS(17834), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232759] = 2, + ACTIONS(17836), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232769] = 2, + ACTIONS(17838), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232779] = 2, + ACTIONS(17840), 1, + anon_sym_while, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232789] = 2, + ACTIONS(17842), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232799] = 2, + ACTIONS(17844), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232809] = 2, + ACTIONS(17846), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232819] = 2, + ACTIONS(17848), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232829] = 2, + ACTIONS(17850), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232839] = 2, + ACTIONS(17852), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232849] = 2, + ACTIONS(17854), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232859] = 2, + ACTIONS(17856), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232869] = 2, + ACTIONS(6872), 1, + sym__eq_custom, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232879] = 2, + ACTIONS(11104), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232889] = 2, + ACTIONS(17858), 1, + sym_integer_literal, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232899] = 2, + ACTIONS(17860), 1, + sym__eq_custom, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232909] = 2, + ACTIONS(17862), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232919] = 2, + ACTIONS(17864), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232929] = 2, + ACTIONS(17866), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232939] = 2, + ACTIONS(17868), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232949] = 2, + ACTIONS(17870), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232959] = 2, + ACTIONS(17872), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232969] = 2, + ACTIONS(17874), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232979] = 2, + ACTIONS(17876), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232989] = 2, + ACTIONS(17878), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [232999] = 2, + ACTIONS(17880), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233009] = 2, + ACTIONS(17882), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233019] = 2, + ACTIONS(17884), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233029] = 2, + ACTIONS(17886), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233039] = 2, + ACTIONS(16254), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233049] = 2, + ACTIONS(11835), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233059] = 2, + ACTIONS(11835), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233069] = 2, + ACTIONS(17888), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233079] = 2, + ACTIONS(17890), 1, + anon_sym_RPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233089] = 2, + ACTIONS(745), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233099] = 2, + ACTIONS(17892), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233109] = 2, + ACTIONS(17894), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233119] = 2, + ACTIONS(7759), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233129] = 2, + ACTIONS(751), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233139] = 2, + ACTIONS(17896), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233149] = 2, + ACTIONS(17898), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233159] = 2, + ACTIONS(17900), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233169] = 2, + ACTIONS(17902), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233179] = 2, + ACTIONS(7673), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233189] = 2, + ACTIONS(17904), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233199] = 2, + ACTIONS(17906), 1, + anon_sym_while, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233209] = 2, + ACTIONS(17908), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233219] = 2, + ACTIONS(17910), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233229] = 2, + ACTIONS(17912), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233239] = 2, + ACTIONS(7452), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233249] = 2, + ACTIONS(17914), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233259] = 2, + ACTIONS(691), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233269] = 2, + ACTIONS(14858), 1, + sym__eq_custom, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233279] = 2, + ACTIONS(17916), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233289] = 2, + ACTIONS(17918), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233299] = 2, + ACTIONS(679), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233309] = 2, + ACTIONS(17920), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233319] = 2, + ACTIONS(17922), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233329] = 2, + ACTIONS(657), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233339] = 2, + ACTIONS(17924), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233349] = 2, + ACTIONS(17926), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233359] = 2, + ACTIONS(17928), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233369] = 2, + ACTIONS(17930), 1, + anon_sym_RPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233379] = 2, + ACTIONS(17932), 1, + anon_sym_COLON, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233389] = 2, + ACTIONS(17934), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233399] = 2, + ACTIONS(17936), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233409] = 2, + ACTIONS(17938), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233419] = 2, + ACTIONS(17940), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233429] = 2, + ACTIONS(17942), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233439] = 2, + ACTIONS(17944), 1, + anon_sym_RPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233449] = 2, + ACTIONS(17946), 1, + aux_sym__uni_character_literal_token1, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233459] = 2, + ACTIONS(629), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233469] = 2, + ACTIONS(17948), 1, + anon_sym_RPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233479] = 2, + ACTIONS(7441), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233489] = 2, + ACTIONS(16368), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233499] = 2, + ACTIONS(17950), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233509] = 2, + ACTIONS(17952), 1, + anon_sym_in, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233519] = 2, + ACTIONS(17954), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233529] = 2, + ACTIONS(723), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233539] = 2, + ACTIONS(7464), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233549] = 2, + ACTIONS(17956), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233559] = 2, + ACTIONS(17958), 1, + anon_sym_set, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233569] = 2, + ACTIONS(17960), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233579] = 2, + ACTIONS(17962), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233589] = 2, + ACTIONS(11112), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233599] = 2, + ACTIONS(17964), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233609] = 2, + ACTIONS(17966), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233619] = 2, + ACTIONS(16368), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233629] = 2, + ACTIONS(7571), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233639] = 2, + ACTIONS(17968), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233649] = 2, + ACTIONS(17970), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233659] = 2, + ACTIONS(17972), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233669] = 2, + ACTIONS(739), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233679] = 2, + ACTIONS(17974), 1, + anon_sym_let, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233689] = 2, + ACTIONS(17976), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233699] = 2, + ACTIONS(17978), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233709] = 2, + ACTIONS(17980), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233719] = 2, + ACTIONS(17982), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233729] = 2, + ACTIONS(17984), 1, + anon_sym_let, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233739] = 2, + ACTIONS(17986), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233749] = 2, + ACTIONS(647), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233759] = 2, + ACTIONS(17988), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233769] = 2, + ACTIONS(17990), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233779] = 2, + ACTIONS(633), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233789] = 2, + ACTIONS(627), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233799] = 2, + ACTIONS(17992), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233809] = 2, + ACTIONS(17994), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233819] = 2, + ACTIONS(17996), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233829] = 2, + ACTIONS(17998), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233839] = 2, + ACTIONS(18000), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233849] = 2, + ACTIONS(18002), 1, + anon_sym_let, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233859] = 2, + ACTIONS(661), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233869] = 2, + ACTIONS(18004), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233879] = 2, + ACTIONS(11151), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233889] = 2, + ACTIONS(18006), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233899] = 2, + ACTIONS(18008), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233909] = 2, + ACTIONS(18010), 1, + anon_sym_u, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233919] = 2, + ACTIONS(18012), 1, + anon_sym_let, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233929] = 2, + ACTIONS(7594), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233939] = 2, + ACTIONS(16465), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233949] = 2, + ACTIONS(18014), 1, + anon_sym_RBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233959] = 2, + ACTIONS(7622), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233969] = 2, + ACTIONS(18016), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233979] = 2, + ACTIONS(18018), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233989] = 2, + ACTIONS(18020), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [233999] = 2, + ACTIONS(18022), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [234009] = 2, + ACTIONS(18024), 1, + sym__semi, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [234019] = 2, + ACTIONS(18026), 1, + ts_builtin_sym_end, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [234029] = 2, + ACTIONS(18028), 1, + anon_sym_enum, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [234039] = 2, + ACTIONS(18030), 1, + anon_sym_LBRACE, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [234049] = 2, + ACTIONS(18032), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [234059] = 2, + ACTIONS(18034), 1, + anon_sym_RBRACK, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [234069] = 2, + ACTIONS(18036), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [234079] = 2, + ACTIONS(18038), 1, + anon_sym_LPAREN, + ACTIONS(5), 4, + sym_multiline_comment, + sym_comment, + sym_directive, + sym_diagnostic, + [234089] = 3, + ACTIONS(5), 1, + sym_multiline_comment, + ACTIONS(18040), 1, + aux_sym_shebang_line_token1, + ACTIONS(3), 3, + sym_comment, + sym_directive, + sym_diagnostic, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(2274)] = 0, + [SMALL_STATE(2275)] = 93, + [SMALL_STATE(2276)] = 169, + [SMALL_STATE(2277)] = 239, + [SMALL_STATE(2278)] = 309, + [SMALL_STATE(2279)] = 379, + [SMALL_STATE(2280)] = 455, + [SMALL_STATE(2281)] = 525, + [SMALL_STATE(2282)] = 599, + [SMALL_STATE(2283)] = 675, + [SMALL_STATE(2284)] = 748, + [SMALL_STATE(2285)] = 823, + [SMALL_STATE(2286)] = 898, + [SMALL_STATE(2287)] = 969, + [SMALL_STATE(2288)] = 1044, + [SMALL_STATE(2289)] = 1112, + [SMALL_STATE(2290)] = 1180, + [SMALL_STATE(2291)] = 1248, + [SMALL_STATE(2292)] = 1316, + [SMALL_STATE(2293)] = 1384, + [SMALL_STATE(2294)] = 1452, + [SMALL_STATE(2295)] = 1520, + [SMALL_STATE(2296)] = 1604, + [SMALL_STATE(2297)] = 1678, + [SMALL_STATE(2298)] = 1746, + [SMALL_STATE(2299)] = 1820, + [SMALL_STATE(2300)] = 1892, + [SMALL_STATE(2301)] = 1966, + [SMALL_STATE(2302)] = 2034, + [SMALL_STATE(2303)] = 2102, + [SMALL_STATE(2304)] = 2170, + [SMALL_STATE(2305)] = 2243, + [SMALL_STATE(2306)] = 2314, + [SMALL_STATE(2307)] = 2387, + [SMALL_STATE(2308)] = 2454, + [SMALL_STATE(2309)] = 2527, + [SMALL_STATE(2310)] = 2594, + [SMALL_STATE(2311)] = 2671, + [SMALL_STATE(2312)] = 2742, + [SMALL_STATE(2313)] = 2809, + [SMALL_STATE(2314)] = 2882, + [SMALL_STATE(2315)] = 2949, + [SMALL_STATE(2316)] = 3020, + [SMALL_STATE(2317)] = 3093, + [SMALL_STATE(2318)] = 3160, + [SMALL_STATE(2319)] = 3253, + [SMALL_STATE(2320)] = 3326, + [SMALL_STATE(2321)] = 3397, + [SMALL_STATE(2322)] = 3488, + [SMALL_STATE(2323)] = 3559, + [SMALL_STATE(2324)] = 3626, + [SMALL_STATE(2325)] = 3698, + [SMALL_STATE(2326)] = 3768, + [SMALL_STATE(2327)] = 3834, + [SMALL_STATE(2328)] = 3910, + [SMALL_STATE(2329)] = 3976, + [SMALL_STATE(2330)] = 4048, + [SMALL_STATE(2331)] = 4134, + [SMALL_STATE(2332)] = 4200, + [SMALL_STATE(2333)] = 4272, + [SMALL_STATE(2334)] = 4338, + [SMALL_STATE(2335)] = 4404, + [SMALL_STATE(2336)] = 4490, + [SMALL_STATE(2337)] = 4560, + [SMALL_STATE(2338)] = 4626, + [SMALL_STATE(2339)] = 4692, + [SMALL_STATE(2340)] = 4768, + [SMALL_STATE(2341)] = 4844, + [SMALL_STATE(2342)] = 4919, + [SMALL_STATE(2343)] = 4988, + [SMALL_STATE(2344)] = 5057, + [SMALL_STATE(2345)] = 5122, + [SMALL_STATE(2346)] = 5203, + [SMALL_STATE(2347)] = 5284, + [SMALL_STATE(2348)] = 5353, + [SMALL_STATE(2349)] = 5418, + [SMALL_STATE(2350)] = 5499, + [SMALL_STATE(2351)] = 5574, + [SMALL_STATE(2352)] = 5649, + [SMALL_STATE(2353)] = 5714, + [SMALL_STATE(2354)] = 5789, + [SMALL_STATE(2355)] = 5854, + [SMALL_STATE(2356)] = 5919, + [SMALL_STATE(2357)] = 5984, + [SMALL_STATE(2358)] = 6049, + [SMALL_STATE(2359)] = 6114, + [SMALL_STATE(2360)] = 6179, + [SMALL_STATE(2361)] = 6244, + [SMALL_STATE(2362)] = 6319, + [SMALL_STATE(2363)] = 6394, + [SMALL_STATE(2364)] = 6475, + [SMALL_STATE(2365)] = 6540, + [SMALL_STATE(2366)] = 6615, + [SMALL_STATE(2367)] = 6684, + [SMALL_STATE(2368)] = 6765, + [SMALL_STATE(2369)] = 6834, + [SMALL_STATE(2370)] = 6915, + [SMALL_STATE(2371)] = 6986, + [SMALL_STATE(2372)] = 7055, + [SMALL_STATE(2373)] = 7120, + [SMALL_STATE(2374)] = 7191, + [SMALL_STATE(2375)] = 7256, + [SMALL_STATE(2376)] = 7337, + [SMALL_STATE(2377)] = 7412, + [SMALL_STATE(2378)] = 7493, + [SMALL_STATE(2379)] = 7574, + [SMALL_STATE(2380)] = 7655, + [SMALL_STATE(2381)] = 7740, + [SMALL_STATE(2382)] = 7821, + [SMALL_STATE(2383)] = 7896, + [SMALL_STATE(2384)] = 7964, + [SMALL_STATE(2385)] = 8032, + [SMALL_STATE(2386)] = 8096, + [SMALL_STATE(2387)] = 8160, + [SMALL_STATE(2388)] = 8240, + [SMALL_STATE(2389)] = 8306, + [SMALL_STATE(2390)] = 8386, + [SMALL_STATE(2391)] = 8452, + [SMALL_STATE(2392)] = 8518, + [SMALL_STATE(2393)] = 8584, + [SMALL_STATE(2394)] = 8650, + [SMALL_STATE(2395)] = 8718, + [SMALL_STATE(2396)] = 8788, + [SMALL_STATE(2397)] = 8858, + [SMALL_STATE(2398)] = 8926, + [SMALL_STATE(2399)] = 8992, + [SMALL_STATE(2400)] = 9058, + [SMALL_STATE(2401)] = 9138, + [SMALL_STATE(2402)] = 9218, + [SMALL_STATE(2403)] = 9284, + [SMALL_STATE(2404)] = 9350, + [SMALL_STATE(2405)] = 9424, + [SMALL_STATE(2406)] = 9488, + [SMALL_STATE(2407)] = 9554, + [SMALL_STATE(2408)] = 9634, + [SMALL_STATE(2409)] = 9700, + [SMALL_STATE(2410)] = 9770, + [SMALL_STATE(2411)] = 9834, + [SMALL_STATE(2412)] = 9904, + [SMALL_STATE(2413)] = 9972, + [SMALL_STATE(2414)] = 10040, + [SMALL_STATE(2415)] = 10110, + [SMALL_STATE(2416)] = 10178, + [SMALL_STATE(2417)] = 10248, + [SMALL_STATE(2418)] = 10316, + [SMALL_STATE(2419)] = 10384, + [SMALL_STATE(2420)] = 10448, + [SMALL_STATE(2421)] = 10514, + [SMALL_STATE(2422)] = 10582, + [SMALL_STATE(2423)] = 10650, + [SMALL_STATE(2424)] = 10718, + [SMALL_STATE(2425)] = 10786, + [SMALL_STATE(2426)] = 10854, + [SMALL_STATE(2427)] = 10922, + [SMALL_STATE(2428)] = 10990, + [SMALL_STATE(2429)] = 11056, + [SMALL_STATE(2430)] = 11124, + [SMALL_STATE(2431)] = 11192, + [SMALL_STATE(2432)] = 11260, + [SMALL_STATE(2433)] = 11328, + [SMALL_STATE(2434)] = 11396, + [SMALL_STATE(2435)] = 11464, + [SMALL_STATE(2436)] = 11538, + [SMALL_STATE(2437)] = 11606, + [SMALL_STATE(2438)] = 11674, + [SMALL_STATE(2439)] = 11742, + [SMALL_STATE(2440)] = 11810, + [SMALL_STATE(2441)] = 11878, + [SMALL_STATE(2442)] = 11946, + [SMALL_STATE(2443)] = 12014, + [SMALL_STATE(2444)] = 12082, + [SMALL_STATE(2445)] = 12150, + [SMALL_STATE(2446)] = 12218, + [SMALL_STATE(2447)] = 12286, + [SMALL_STATE(2448)] = 12354, + [SMALL_STATE(2449)] = 12422, + [SMALL_STATE(2450)] = 12490, + [SMALL_STATE(2451)] = 12570, + [SMALL_STATE(2452)] = 12638, + [SMALL_STATE(2453)] = 12712, + [SMALL_STATE(2454)] = 12782, + [SMALL_STATE(2455)] = 12850, + [SMALL_STATE(2456)] = 12918, + [SMALL_STATE(2457)] = 12986, + [SMALL_STATE(2458)] = 13049, + [SMALL_STATE(2459)] = 13112, + [SMALL_STATE(2460)] = 13177, + [SMALL_STATE(2461)] = 13242, + [SMALL_STATE(2462)] = 13307, + [SMALL_STATE(2463)] = 13374, + [SMALL_STATE(2464)] = 13453, + [SMALL_STATE(2465)] = 13516, + [SMALL_STATE(2466)] = 13579, + [SMALL_STATE(2467)] = 13644, + [SMALL_STATE(2468)] = 13709, + [SMALL_STATE(2469)] = 13774, + [SMALL_STATE(2470)] = 13839, + [SMALL_STATE(2471)] = 13920, + [SMALL_STATE(2472)] = 13983, + [SMALL_STATE(2473)] = 14046, + [SMALL_STATE(2474)] = 14111, + [SMALL_STATE(2475)] = 14190, + [SMALL_STATE(2476)] = 14255, + [SMALL_STATE(2477)] = 14318, + [SMALL_STATE(2478)] = 14381, + [SMALL_STATE(2479)] = 14460, + [SMALL_STATE(2480)] = 14569, + [SMALL_STATE(2481)] = 14634, + [SMALL_STATE(2482)] = 14699, + [SMALL_STATE(2483)] = 14762, + [SMALL_STATE(2484)] = 14827, + [SMALL_STATE(2485)] = 14894, + [SMALL_STATE(2486)] = 14961, + [SMALL_STATE(2487)] = 15046, + [SMALL_STATE(2488)] = 15109, + [SMALL_STATE(2489)] = 15174, + [SMALL_STATE(2490)] = 15247, + [SMALL_STATE(2491)] = 15312, + [SMALL_STATE(2492)] = 15377, + [SMALL_STATE(2493)] = 15442, + [SMALL_STATE(2494)] = 15517, + [SMALL_STATE(2495)] = 15582, + [SMALL_STATE(2496)] = 15663, + [SMALL_STATE(2497)] = 15728, + [SMALL_STATE(2498)] = 15793, + [SMALL_STATE(2499)] = 15858, + [SMALL_STATE(2500)] = 15923, + [SMALL_STATE(2501)] = 15988, + [SMALL_STATE(2502)] = 16053, + [SMALL_STATE(2503)] = 16118, + [SMALL_STATE(2504)] = 16183, + [SMALL_STATE(2505)] = 16248, + [SMALL_STATE(2506)] = 16313, + [SMALL_STATE(2507)] = 16376, + [SMALL_STATE(2508)] = 16439, + [SMALL_STATE(2509)] = 16504, + [SMALL_STATE(2510)] = 16569, + [SMALL_STATE(2511)] = 16634, + [SMALL_STATE(2512)] = 16697, + [SMALL_STATE(2513)] = 16762, + [SMALL_STATE(2514)] = 16827, + [SMALL_STATE(2515)] = 16908, + [SMALL_STATE(2516)] = 16973, + [SMALL_STATE(2517)] = 17047, + [SMALL_STATE(2518)] = 17109, + [SMALL_STATE(2519)] = 17171, + [SMALL_STATE(2520)] = 17235, + [SMALL_STATE(2521)] = 17297, + [SMALL_STATE(2522)] = 17361, + [SMALL_STATE(2523)] = 17435, + [SMALL_STATE(2524)] = 17499, + [SMALL_STATE(2525)] = 17563, + [SMALL_STATE(2526)] = 17643, + [SMALL_STATE(2527)] = 17709, + [SMALL_STATE(2528)] = 17787, + [SMALL_STATE(2529)] = 17865, + [SMALL_STATE(2530)] = 17943, + [SMALL_STATE(2531)] = 18007, + [SMALL_STATE(2532)] = 18069, + [SMALL_STATE(2533)] = 18131, + [SMALL_STATE(2534)] = 18205, + [SMALL_STATE(2535)] = 18267, + [SMALL_STATE(2536)] = 18329, + [SMALL_STATE(2537)] = 18393, + [SMALL_STATE(2538)] = 18457, + [SMALL_STATE(2539)] = 18521, + [SMALL_STATE(2540)] = 18583, + [SMALL_STATE(2541)] = 18645, + [SMALL_STATE(2542)] = 18707, + [SMALL_STATE(2543)] = 18769, + [SMALL_STATE(2544)] = 18833, + [SMALL_STATE(2545)] = 18897, + [SMALL_STATE(2546)] = 18961, + [SMALL_STATE(2547)] = 19035, + [SMALL_STATE(2548)] = 19097, + [SMALL_STATE(2549)] = 19159, + [SMALL_STATE(2550)] = 19221, + [SMALL_STATE(2551)] = 19283, + [SMALL_STATE(2552)] = 19345, + [SMALL_STATE(2553)] = 19407, + [SMALL_STATE(2554)] = 19469, + [SMALL_STATE(2555)] = 19548, + [SMALL_STATE(2556)] = 19627, + [SMALL_STATE(2557)] = 19706, + [SMALL_STATE(2558)] = 19785, + [SMALL_STATE(2559)] = 19864, + [SMALL_STATE(2560)] = 19943, + [SMALL_STATE(2561)] = 20022, + [SMALL_STATE(2562)] = 20091, + [SMALL_STATE(2563)] = 20170, + [SMALL_STATE(2564)] = 20249, + [SMALL_STATE(2565)] = 20328, + [SMALL_STATE(2566)] = 20407, + [SMALL_STATE(2567)] = 20470, + [SMALL_STATE(2568)] = 20549, + [SMALL_STATE(2569)] = 20626, + [SMALL_STATE(2570)] = 20705, + [SMALL_STATE(2571)] = 20784, + [SMALL_STATE(2572)] = 20863, + [SMALL_STATE(2573)] = 20942, + [SMALL_STATE(2574)] = 21021, + [SMALL_STATE(2575)] = 21100, + [SMALL_STATE(2576)] = 21179, + [SMALL_STATE(2577)] = 21258, + [SMALL_STATE(2578)] = 21331, + [SMALL_STATE(2579)] = 21410, + [SMALL_STATE(2580)] = 21489, + [SMALL_STATE(2581)] = 21562, + [SMALL_STATE(2582)] = 21641, + [SMALL_STATE(2583)] = 21720, + [SMALL_STATE(2584)] = 21799, + [SMALL_STATE(2585)] = 21878, + [SMALL_STATE(2586)] = 21957, + [SMALL_STATE(2587)] = 22036, + [SMALL_STATE(2588)] = 22107, + [SMALL_STATE(2589)] = 22186, + [SMALL_STATE(2590)] = 22265, + [SMALL_STATE(2591)] = 22344, + [SMALL_STATE(2592)] = 22423, + [SMALL_STATE(2593)] = 22502, + [SMALL_STATE(2594)] = 22581, + [SMALL_STATE(2595)] = 22660, + [SMALL_STATE(2596)] = 22735, + [SMALL_STATE(2597)] = 22812, + [SMALL_STATE(2598)] = 22891, + [SMALL_STATE(2599)] = 22970, + [SMALL_STATE(2600)] = 23049, + [SMALL_STATE(2601)] = 23126, + [SMALL_STATE(2602)] = 23205, + [SMALL_STATE(2603)] = 23284, + [SMALL_STATE(2604)] = 23363, + [SMALL_STATE(2605)] = 23442, + [SMALL_STATE(2606)] = 23511, + [SMALL_STATE(2607)] = 23574, + [SMALL_STATE(2608)] = 23653, + [SMALL_STATE(2609)] = 23728, + [SMALL_STATE(2610)] = 23807, + [SMALL_STATE(2611)] = 23886, + [SMALL_STATE(2612)] = 23963, + [SMALL_STATE(2613)] = 24042, + [SMALL_STATE(2614)] = 24121, + [SMALL_STATE(2615)] = 24200, + [SMALL_STATE(2616)] = 24279, + [SMALL_STATE(2617)] = 24350, + [SMALL_STATE(2618)] = 24414, + [SMALL_STATE(2619)] = 24490, + [SMALL_STATE(2620)] = 24560, + [SMALL_STATE(2621)] = 24628, + [SMALL_STATE(2622)] = 24694, + [SMALL_STATE(2623)] = 24760, + [SMALL_STATE(2624)] = 24832, + [SMALL_STATE(2625)] = 24898, + [SMALL_STATE(2626)] = 24958, + [SMALL_STATE(2627)] = 25034, + [SMALL_STATE(2628)] = 25106, + [SMALL_STATE(2629)] = 25170, + [SMALL_STATE(2630)] = 25246, + [SMALL_STATE(2631)] = 25316, + [SMALL_STATE(2632)] = 25380, + [SMALL_STATE(2633)] = 25452, + [SMALL_STATE(2634)] = 25516, + [SMALL_STATE(2635)] = 25588, + [SMALL_STATE(2636)] = 25660, + [SMALL_STATE(2637)] = 25726, + [SMALL_STATE(2638)] = 25790, + [SMALL_STATE(2639)] = 25854, + [SMALL_STATE(2640)] = 25924, + [SMALL_STATE(2641)] = 25984, + [SMALL_STATE(2642)] = 26056, + [SMALL_STATE(2643)] = 26120, + [SMALL_STATE(2644)] = 26186, + [SMALL_STATE(2645)] = 26254, + [SMALL_STATE(2646)] = 26326, + [SMALL_STATE(2647)] = 26402, + [SMALL_STATE(2648)] = 26468, + [SMALL_STATE(2649)] = 26530, + [SMALL_STATE(2650)] = 26593, + [SMALL_STATE(2651)] = 26654, + [SMALL_STATE(2652)] = 26729, + [SMALL_STATE(2653)] = 26790, + [SMALL_STATE(2654)] = 26853, + [SMALL_STATE(2655)] = 26914, + [SMALL_STATE(2656)] = 26979, + [SMALL_STATE(2657)] = 27040, + [SMALL_STATE(2658)] = 27105, + [SMALL_STATE(2659)] = 27164, + [SMALL_STATE(2660)] = 27227, + [SMALL_STATE(2661)] = 27288, + [SMALL_STATE(2662)] = 27349, + [SMALL_STATE(2663)] = 27412, + [SMALL_STATE(2664)] = 27477, + [SMALL_STATE(2665)] = 27538, + [SMALL_STATE(2666)] = 27599, + [SMALL_STATE(2667)] = 27658, + [SMALL_STATE(2668)] = 27719, + [SMALL_STATE(2669)] = 27778, + [SMALL_STATE(2670)] = 27843, + [SMALL_STATE(2671)] = 27906, + [SMALL_STATE(2672)] = 27967, + [SMALL_STATE(2673)] = 28030, + [SMALL_STATE(2674)] = 28095, + [SMALL_STATE(2675)] = 28156, + [SMALL_STATE(2676)] = 28221, + [SMALL_STATE(2677)] = 28280, + [SMALL_STATE(2678)] = 28345, + [SMALL_STATE(2679)] = 28404, + [SMALL_STATE(2680)] = 28465, + [SMALL_STATE(2681)] = 28534, + [SMALL_STATE(2682)] = 28597, + [SMALL_STATE(2683)] = 28662, + [SMALL_STATE(2684)] = 28721, + [SMALL_STATE(2685)] = 28782, + [SMALL_STATE(2686)] = 28843, + [SMALL_STATE(2687)] = 28904, + [SMALL_STATE(2688)] = 28965, + [SMALL_STATE(2689)] = 29034, + [SMALL_STATE(2690)] = 29097, + [SMALL_STATE(2691)] = 29166, + [SMALL_STATE(2692)] = 29227, + [SMALL_STATE(2693)] = 29288, + [SMALL_STATE(2694)] = 29351, + [SMALL_STATE(2695)] = 29412, + [SMALL_STATE(2696)] = 29473, + [SMALL_STATE(2697)] = 29534, + [SMALL_STATE(2698)] = 29597, + [SMALL_STATE(2699)] = 29660, + [SMALL_STATE(2700)] = 29723, + [SMALL_STATE(2701)] = 29782, + [SMALL_STATE(2702)] = 29843, + [SMALL_STATE(2703)] = 29906, + [SMALL_STATE(2704)] = 29965, + [SMALL_STATE(2705)] = 30030, + [SMALL_STATE(2706)] = 30093, + [SMALL_STATE(2707)] = 30154, + [SMALL_STATE(2708)] = 30213, + [SMALL_STATE(2709)] = 30278, + [SMALL_STATE(2710)] = 30337, + [SMALL_STATE(2711)] = 30398, + [SMALL_STATE(2712)] = 30457, + [SMALL_STATE(2713)] = 30518, + [SMALL_STATE(2714)] = 30579, + [SMALL_STATE(2715)] = 30640, + [SMALL_STATE(2716)] = 30701, + [SMALL_STATE(2717)] = 30762, + [SMALL_STATE(2718)] = 30823, + [SMALL_STATE(2719)] = 30888, + [SMALL_STATE(2720)] = 30953, + [SMALL_STATE(2721)] = 31014, + [SMALL_STATE(2722)] = 31075, + [SMALL_STATE(2723)] = 31138, + [SMALL_STATE(2724)] = 31199, + [SMALL_STATE(2725)] = 31262, + [SMALL_STATE(2726)] = 31327, + [SMALL_STATE(2727)] = 31388, + [SMALL_STATE(2728)] = 31451, + [SMALL_STATE(2729)] = 31512, + [SMALL_STATE(2730)] = 31573, + [SMALL_STATE(2731)] = 31636, + [SMALL_STATE(2732)] = 31695, + [SMALL_STATE(2733)] = 31770, + [SMALL_STATE(2734)] = 31831, + [SMALL_STATE(2735)] = 31892, + [SMALL_STATE(2736)] = 31953, + [SMALL_STATE(2737)] = 32011, + [SMALL_STATE(2738)] = 32073, + [SMALL_STATE(2739)] = 32135, + [SMALL_STATE(2740)] = 32193, + [SMALL_STATE(2741)] = 32255, + [SMALL_STATE(2742)] = 32317, + [SMALL_STATE(2743)] = 32377, + [SMALL_STATE(2744)] = 32439, + [SMALL_STATE(2745)] = 32501, + [SMALL_STATE(2746)] = 32559, + [SMALL_STATE(2747)] = 32621, + [SMALL_STATE(2748)] = 32679, + [SMALL_STATE(2749)] = 32739, + [SMALL_STATE(2750)] = 32801, + [SMALL_STATE(2751)] = 32861, + [SMALL_STATE(2752)] = 32921, + [SMALL_STATE(2753)] = 32979, + [SMALL_STATE(2754)] = 33039, + [SMALL_STATE(2755)] = 33099, + [SMALL_STATE(2756)] = 33157, + [SMALL_STATE(2757)] = 33219, + [SMALL_STATE(2758)] = 33281, + [SMALL_STATE(2759)] = 33343, + [SMALL_STATE(2760)] = 33405, + [SMALL_STATE(2761)] = 33467, + [SMALL_STATE(2762)] = 33529, + [SMALL_STATE(2763)] = 33591, + [SMALL_STATE(2764)] = 33653, + [SMALL_STATE(2765)] = 33715, + [SMALL_STATE(2766)] = 33777, + [SMALL_STATE(2767)] = 33839, + [SMALL_STATE(2768)] = 33901, + [SMALL_STATE(2769)] = 33959, + [SMALL_STATE(2770)] = 34017, + [SMALL_STATE(2771)] = 34075, + [SMALL_STATE(2772)] = 34135, + [SMALL_STATE(2773)] = 34197, + [SMALL_STATE(2774)] = 34259, + [SMALL_STATE(2775)] = 34317, + [SMALL_STATE(2776)] = 34379, + [SMALL_STATE(2777)] = 34439, + [SMALL_STATE(2778)] = 34499, + [SMALL_STATE(2779)] = 34559, + [SMALL_STATE(2780)] = 34619, + [SMALL_STATE(2781)] = 34677, + [SMALL_STATE(2782)] = 34737, + [SMALL_STATE(2783)] = 34795, + [SMALL_STATE(2784)] = 34855, + [SMALL_STATE(2785)] = 34913, + [SMALL_STATE(2786)] = 34973, + [SMALL_STATE(2787)] = 35035, + [SMALL_STATE(2788)] = 35099, + [SMALL_STATE(2789)] = 35157, + [SMALL_STATE(2790)] = 35215, + [SMALL_STATE(2791)] = 35273, + [SMALL_STATE(2792)] = 35331, + [SMALL_STATE(2793)] = 35389, + [SMALL_STATE(2794)] = 35451, + [SMALL_STATE(2795)] = 35509, + [SMALL_STATE(2796)] = 35567, + [SMALL_STATE(2797)] = 35627, + [SMALL_STATE(2798)] = 35687, + [SMALL_STATE(2799)] = 35749, + [SMALL_STATE(2800)] = 35811, + [SMALL_STATE(2801)] = 35873, + [SMALL_STATE(2802)] = 35933, + [SMALL_STATE(2803)] = 35995, + [SMALL_STATE(2804)] = 36053, + [SMALL_STATE(2805)] = 36113, + [SMALL_STATE(2806)] = 36171, + [SMALL_STATE(2807)] = 36233, + [SMALL_STATE(2808)] = 36295, + [SMALL_STATE(2809)] = 36357, + [SMALL_STATE(2810)] = 36419, + [SMALL_STATE(2811)] = 36479, + [SMALL_STATE(2812)] = 36541, + [SMALL_STATE(2813)] = 36603, + [SMALL_STATE(2814)] = 36665, + [SMALL_STATE(2815)] = 36725, + [SMALL_STATE(2816)] = 36785, + [SMALL_STATE(2817)] = 36845, + [SMALL_STATE(2818)] = 36903, + [SMALL_STATE(2819)] = 36961, + [SMALL_STATE(2820)] = 37021, + [SMALL_STATE(2821)] = 37093, + [SMALL_STATE(2822)] = 37151, + [SMALL_STATE(2823)] = 37208, + [SMALL_STATE(2824)] = 37271, + [SMALL_STATE(2825)] = 37328, + [SMALL_STATE(2826)] = 37385, + [SMALL_STATE(2827)] = 37442, + [SMALL_STATE(2828)] = 37509, + [SMALL_STATE(2829)] = 37572, + [SMALL_STATE(2830)] = 37631, + [SMALL_STATE(2831)] = 37690, + [SMALL_STATE(2832)] = 37753, + [SMALL_STATE(2833)] = 37812, + [SMALL_STATE(2834)] = 37875, + [SMALL_STATE(2835)] = 37938, + [SMALL_STATE(2836)] = 38001, + [SMALL_STATE(2837)] = 38058, + [SMALL_STATE(2838)] = 38115, + [SMALL_STATE(2839)] = 38172, + [SMALL_STATE(2840)] = 38229, + [SMALL_STATE(2841)] = 38288, + [SMALL_STATE(2842)] = 38377, + [SMALL_STATE(2843)] = 38440, + [SMALL_STATE(2844)] = 38507, + [SMALL_STATE(2845)] = 38574, + [SMALL_STATE(2846)] = 38663, + [SMALL_STATE(2847)] = 38726, + [SMALL_STATE(2848)] = 38783, + [SMALL_STATE(2849)] = 38872, + [SMALL_STATE(2850)] = 38931, + [SMALL_STATE(2851)] = 38994, + [SMALL_STATE(2852)] = 39058, + [SMALL_STATE(2853)] = 39120, + [SMALL_STATE(2854)] = 39176, + [SMALL_STATE(2855)] = 39232, + [SMALL_STATE(2856)] = 39288, + [SMALL_STATE(2857)] = 39344, + [SMALL_STATE(2858)] = 39408, + [SMALL_STATE(2859)] = 39464, + [SMALL_STATE(2860)] = 39520, + [SMALL_STATE(2861)] = 39584, + [SMALL_STATE(2862)] = 39640, + [SMALL_STATE(2863)] = 39696, + [SMALL_STATE(2864)] = 39752, + [SMALL_STATE(2865)] = 39814, + [SMALL_STATE(2866)] = 39870, + [SMALL_STATE(2867)] = 39926, + [SMALL_STATE(2868)] = 39988, + [SMALL_STATE(2869)] = 40044, + [SMALL_STATE(2870)] = 40100, + [SMALL_STATE(2871)] = 40156, + [SMALL_STATE(2872)] = 40212, + [SMALL_STATE(2873)] = 40268, + [SMALL_STATE(2874)] = 40324, + [SMALL_STATE(2875)] = 40380, + [SMALL_STATE(2876)] = 40444, + [SMALL_STATE(2877)] = 40510, + [SMALL_STATE(2878)] = 40566, + [SMALL_STATE(2879)] = 40630, + [SMALL_STATE(2880)] = 40686, + [SMALL_STATE(2881)] = 40742, + [SMALL_STATE(2882)] = 40798, + [SMALL_STATE(2883)] = 40854, + [SMALL_STATE(2884)] = 40910, + [SMALL_STATE(2885)] = 40966, + [SMALL_STATE(2886)] = 41022, + [SMALL_STATE(2887)] = 41084, + [SMALL_STATE(2888)] = 41140, + [SMALL_STATE(2889)] = 41196, + [SMALL_STATE(2890)] = 41252, + [SMALL_STATE(2891)] = 41308, + [SMALL_STATE(2892)] = 41364, + [SMALL_STATE(2893)] = 41420, + [SMALL_STATE(2894)] = 41476, + [SMALL_STATE(2895)] = 41532, + [SMALL_STATE(2896)] = 41588, + [SMALL_STATE(2897)] = 41644, + [SMALL_STATE(2898)] = 41700, + [SMALL_STATE(2899)] = 41756, + [SMALL_STATE(2900)] = 41812, + [SMALL_STATE(2901)] = 41868, + [SMALL_STATE(2902)] = 41924, + [SMALL_STATE(2903)] = 41980, + [SMALL_STATE(2904)] = 42036, + [SMALL_STATE(2905)] = 42092, + [SMALL_STATE(2906)] = 42148, + [SMALL_STATE(2907)] = 42212, + [SMALL_STATE(2908)] = 42268, + [SMALL_STATE(2909)] = 42324, + [SMALL_STATE(2910)] = 42380, + [SMALL_STATE(2911)] = 42436, + [SMALL_STATE(2912)] = 42492, + [SMALL_STATE(2913)] = 42548, + [SMALL_STATE(2914)] = 42604, + [SMALL_STATE(2915)] = 42660, + [SMALL_STATE(2916)] = 42716, + [SMALL_STATE(2917)] = 42772, + [SMALL_STATE(2918)] = 42828, + [SMALL_STATE(2919)] = 42884, + [SMALL_STATE(2920)] = 42940, + [SMALL_STATE(2921)] = 42996, + [SMALL_STATE(2922)] = 43052, + [SMALL_STATE(2923)] = 43114, + [SMALL_STATE(2924)] = 43170, + [SMALL_STATE(2925)] = 43230, + [SMALL_STATE(2926)] = 43292, + [SMALL_STATE(2927)] = 43348, + [SMALL_STATE(2928)] = 43412, + [SMALL_STATE(2929)] = 43468, + [SMALL_STATE(2930)] = 43524, + [SMALL_STATE(2931)] = 43580, + [SMALL_STATE(2932)] = 43636, + [SMALL_STATE(2933)] = 43692, + [SMALL_STATE(2934)] = 43748, + [SMALL_STATE(2935)] = 43804, + [SMALL_STATE(2936)] = 43860, + [SMALL_STATE(2937)] = 43924, + [SMALL_STATE(2938)] = 43980, + [SMALL_STATE(2939)] = 44036, + [SMALL_STATE(2940)] = 44092, + [SMALL_STATE(2941)] = 44148, + [SMALL_STATE(2942)] = 44204, + [SMALL_STATE(2943)] = 44260, + [SMALL_STATE(2944)] = 44316, + [SMALL_STATE(2945)] = 44372, + [SMALL_STATE(2946)] = 44428, + [SMALL_STATE(2947)] = 44484, + [SMALL_STATE(2948)] = 44540, + [SMALL_STATE(2949)] = 44596, + [SMALL_STATE(2950)] = 44652, + [SMALL_STATE(2951)] = 44708, + [SMALL_STATE(2952)] = 44764, + [SMALL_STATE(2953)] = 44820, + [SMALL_STATE(2954)] = 44876, + [SMALL_STATE(2955)] = 44932, + [SMALL_STATE(2956)] = 44988, + [SMALL_STATE(2957)] = 45052, + [SMALL_STATE(2958)] = 45108, + [SMALL_STATE(2959)] = 45164, + [SMALL_STATE(2960)] = 45220, + [SMALL_STATE(2961)] = 45283, + [SMALL_STATE(2962)] = 45344, + [SMALL_STATE(2963)] = 45405, + [SMALL_STATE(2964)] = 45466, + [SMALL_STATE(2965)] = 45527, + [SMALL_STATE(2966)] = 45584, + [SMALL_STATE(2967)] = 45641, + [SMALL_STATE(2968)] = 45704, + [SMALL_STATE(2969)] = 45765, + [SMALL_STATE(2970)] = 45824, + [SMALL_STATE(2971)] = 45881, + [SMALL_STATE(2972)] = 45938, + [SMALL_STATE(2973)] = 45999, + [SMALL_STATE(2974)] = 46062, + [SMALL_STATE(2975)] = 46123, + [SMALL_STATE(2976)] = 46184, + [SMALL_STATE(2977)] = 46247, + [SMALL_STATE(2978)] = 46308, + [SMALL_STATE(2979)] = 46369, + [SMALL_STATE(2980)] = 46432, + [SMALL_STATE(2981)] = 46489, + [SMALL_STATE(2982)] = 46552, + [SMALL_STATE(2983)] = 46613, + [SMALL_STATE(2984)] = 46674, + [SMALL_STATE(2985)] = 46735, + [SMALL_STATE(2986)] = 46796, + [SMALL_STATE(2987)] = 46851, + [SMALL_STATE(2988)] = 46912, + [SMALL_STATE(2989)] = 46973, + [SMALL_STATE(2990)] = 47030, + [SMALL_STATE(2991)] = 47091, + [SMALL_STATE(2992)] = 47152, + [SMALL_STATE(2993)] = 47213, + [SMALL_STATE(2994)] = 47276, + [SMALL_STATE(2995)] = 47333, + [SMALL_STATE(2996)] = 47392, + [SMALL_STATE(2997)] = 47455, + [SMALL_STATE(2998)] = 47516, + [SMALL_STATE(2999)] = 47577, + [SMALL_STATE(3000)] = 47632, + [SMALL_STATE(3001)] = 47689, + [SMALL_STATE(3002)] = 47752, + [SMALL_STATE(3003)] = 47813, + [SMALL_STATE(3004)] = 47874, + [SMALL_STATE(3005)] = 47935, + [SMALL_STATE(3006)] = 47994, + [SMALL_STATE(3007)] = 48055, + [SMALL_STATE(3008)] = 48116, + [SMALL_STATE(3009)] = 48179, + [SMALL_STATE(3010)] = 48242, + [SMALL_STATE(3011)] = 48313, + [SMALL_STATE(3012)] = 48374, + [SMALL_STATE(3013)] = 48431, + [SMALL_STATE(3014)] = 48488, + [SMALL_STATE(3015)] = 48543, + [SMALL_STATE(3016)] = 48600, + [SMALL_STATE(3017)] = 48661, + [SMALL_STATE(3018)] = 48720, + [SMALL_STATE(3019)] = 48783, + [SMALL_STATE(3020)] = 48848, + [SMALL_STATE(3021)] = 48909, + [SMALL_STATE(3022)] = 48970, + [SMALL_STATE(3023)] = 49027, + [SMALL_STATE(3024)] = 49084, + [SMALL_STATE(3025)] = 49139, + [SMALL_STATE(3026)] = 49196, + [SMALL_STATE(3027)] = 49253, + [SMALL_STATE(3028)] = 49309, + [SMALL_STATE(3029)] = 49365, + [SMALL_STATE(3030)] = 49425, + [SMALL_STATE(3031)] = 49483, + [SMALL_STATE(3032)] = 49541, + [SMALL_STATE(3033)] = 49597, + [SMALL_STATE(3034)] = 49651, + [SMALL_STATE(3035)] = 49707, + [SMALL_STATE(3036)] = 49769, + [SMALL_STATE(3037)] = 49829, + [SMALL_STATE(3038)] = 49885, + [SMALL_STATE(3039)] = 49945, + [SMALL_STATE(3040)] = 50007, + [SMALL_STATE(3041)] = 50065, + [SMALL_STATE(3042)] = 50119, + [SMALL_STATE(3043)] = 50175, + [SMALL_STATE(3044)] = 50229, + [SMALL_STATE(3045)] = 50289, + [SMALL_STATE(3046)] = 50349, + [SMALL_STATE(3047)] = 50409, + [SMALL_STATE(3048)] = 50469, + [SMALL_STATE(3049)] = 50525, + [SMALL_STATE(3050)] = 50581, + [SMALL_STATE(3051)] = 50637, + [SMALL_STATE(3052)] = 50695, + [SMALL_STATE(3053)] = 50751, + [SMALL_STATE(3054)] = 50805, + [SMALL_STATE(3055)] = 50861, + [SMALL_STATE(3056)] = 50917, + [SMALL_STATE(3057)] = 50975, + [SMALL_STATE(3058)] = 51029, + [SMALL_STATE(3059)] = 51085, + [SMALL_STATE(3060)] = 51145, + [SMALL_STATE(3061)] = 51201, + [SMALL_STATE(3062)] = 51255, + [SMALL_STATE(3063)] = 51311, + [SMALL_STATE(3064)] = 51365, + [SMALL_STATE(3065)] = 51419, + [SMALL_STATE(3066)] = 51473, + [SMALL_STATE(3067)] = 51529, + [SMALL_STATE(3068)] = 51583, + [SMALL_STATE(3069)] = 51637, + [SMALL_STATE(3070)] = 51693, + [SMALL_STATE(3071)] = 51751, + [SMALL_STATE(3072)] = 51811, + [SMALL_STATE(3073)] = 51867, + [SMALL_STATE(3074)] = 51923, + [SMALL_STATE(3075)] = 51979, + [SMALL_STATE(3076)] = 52035, + [SMALL_STATE(3077)] = 52091, + [SMALL_STATE(3078)] = 52147, + [SMALL_STATE(3079)] = 52207, + [SMALL_STATE(3080)] = 52263, + [SMALL_STATE(3081)] = 52323, + [SMALL_STATE(3082)] = 52377, + [SMALL_STATE(3083)] = 52435, + [SMALL_STATE(3084)] = 52499, + [SMALL_STATE(3085)] = 52555, + [SMALL_STATE(3086)] = 52613, + [SMALL_STATE(3087)] = 52673, + [SMALL_STATE(3088)] = 52729, + [SMALL_STATE(3089)] = 52785, + [SMALL_STATE(3090)] = 52841, + [SMALL_STATE(3091)] = 52903, + [SMALL_STATE(3092)] = 52959, + [SMALL_STATE(3093)] = 53015, + [SMALL_STATE(3094)] = 53071, + [SMALL_STATE(3095)] = 53125, + [SMALL_STATE(3096)] = 53181, + [SMALL_STATE(3097)] = 53237, + [SMALL_STATE(3098)] = 53293, + [SMALL_STATE(3099)] = 53349, + [SMALL_STATE(3100)] = 53403, + [SMALL_STATE(3101)] = 53459, + [SMALL_STATE(3102)] = 53517, + [SMALL_STATE(3103)] = 53573, + [SMALL_STATE(3104)] = 53633, + [SMALL_STATE(3105)] = 53693, + [SMALL_STATE(3106)] = 53747, + [SMALL_STATE(3107)] = 53801, + [SMALL_STATE(3108)] = 53855, + [SMALL_STATE(3109)] = 53909, + [SMALL_STATE(3110)] = 53963, + [SMALL_STATE(3111)] = 54019, + [SMALL_STATE(3112)] = 54075, + [SMALL_STATE(3113)] = 54135, + [SMALL_STATE(3114)] = 54191, + [SMALL_STATE(3115)] = 54247, + [SMALL_STATE(3116)] = 54304, + [SMALL_STATE(3117)] = 54359, + [SMALL_STATE(3118)] = 54414, + [SMALL_STATE(3119)] = 54469, + [SMALL_STATE(3120)] = 54524, + [SMALL_STATE(3121)] = 54579, + [SMALL_STATE(3122)] = 54634, + [SMALL_STATE(3123)] = 54689, + [SMALL_STATE(3124)] = 54744, + [SMALL_STATE(3125)] = 54799, + [SMALL_STATE(3126)] = 54854, + [SMALL_STATE(3127)] = 54909, + [SMALL_STATE(3128)] = 54964, + [SMALL_STATE(3129)] = 55019, + [SMALL_STATE(3130)] = 55074, + [SMALL_STATE(3131)] = 55129, + [SMALL_STATE(3132)] = 55184, + [SMALL_STATE(3133)] = 55237, + [SMALL_STATE(3134)] = 55292, + [SMALL_STATE(3135)] = 55369, + [SMALL_STATE(3136)] = 55424, + [SMALL_STATE(3137)] = 55479, + [SMALL_STATE(3138)] = 55534, + [SMALL_STATE(3139)] = 55589, + [SMALL_STATE(3140)] = 55644, + [SMALL_STATE(3141)] = 55699, + [SMALL_STATE(3142)] = 55754, + [SMALL_STATE(3143)] = 55809, + [SMALL_STATE(3144)] = 55864, + [SMALL_STATE(3145)] = 55919, + [SMALL_STATE(3146)] = 55974, + [SMALL_STATE(3147)] = 56029, + [SMALL_STATE(3148)] = 56084, + [SMALL_STATE(3149)] = 56139, + [SMALL_STATE(3150)] = 56194, + [SMALL_STATE(3151)] = 56249, + [SMALL_STATE(3152)] = 56304, + [SMALL_STATE(3153)] = 56359, + [SMALL_STATE(3154)] = 56414, + [SMALL_STATE(3155)] = 56469, + [SMALL_STATE(3156)] = 56524, + [SMALL_STATE(3157)] = 56579, + [SMALL_STATE(3158)] = 56634, + [SMALL_STATE(3159)] = 56689, + [SMALL_STATE(3160)] = 56744, + [SMALL_STATE(3161)] = 56799, + [SMALL_STATE(3162)] = 56854, + [SMALL_STATE(3163)] = 56909, + [SMALL_STATE(3164)] = 56964, + [SMALL_STATE(3165)] = 57019, + [SMALL_STATE(3166)] = 57074, + [SMALL_STATE(3167)] = 57129, + [SMALL_STATE(3168)] = 57184, + [SMALL_STATE(3169)] = 57239, + [SMALL_STATE(3170)] = 57294, + [SMALL_STATE(3171)] = 57349, + [SMALL_STATE(3172)] = 57404, + [SMALL_STATE(3173)] = 57459, + [SMALL_STATE(3174)] = 57514, + [SMALL_STATE(3175)] = 57569, + [SMALL_STATE(3176)] = 57624, + [SMALL_STATE(3177)] = 57679, + [SMALL_STATE(3178)] = 57736, + [SMALL_STATE(3179)] = 57795, + [SMALL_STATE(3180)] = 57850, + [SMALL_STATE(3181)] = 57905, + [SMALL_STATE(3182)] = 57960, + [SMALL_STATE(3183)] = 58015, + [SMALL_STATE(3184)] = 58070, + [SMALL_STATE(3185)] = 58125, + [SMALL_STATE(3186)] = 58180, + [SMALL_STATE(3187)] = 58239, + [SMALL_STATE(3188)] = 58294, + [SMALL_STATE(3189)] = 58351, + [SMALL_STATE(3190)] = 58406, + [SMALL_STATE(3191)] = 58461, + [SMALL_STATE(3192)] = 58516, + [SMALL_STATE(3193)] = 58571, + [SMALL_STATE(3194)] = 58626, + [SMALL_STATE(3195)] = 58681, + [SMALL_STATE(3196)] = 58736, + [SMALL_STATE(3197)] = 58791, + [SMALL_STATE(3198)] = 58850, + [SMALL_STATE(3199)] = 58905, + [SMALL_STATE(3200)] = 58960, + [SMALL_STATE(3201)] = 59015, + [SMALL_STATE(3202)] = 59070, + [SMALL_STATE(3203)] = 59125, + [SMALL_STATE(3204)] = 59180, + [SMALL_STATE(3205)] = 59233, + [SMALL_STATE(3206)] = 59288, + [SMALL_STATE(3207)] = 59343, + [SMALL_STATE(3208)] = 59398, + [SMALL_STATE(3209)] = 59453, + [SMALL_STATE(3210)] = 59506, + [SMALL_STATE(3211)] = 59561, + [SMALL_STATE(3212)] = 59614, + [SMALL_STATE(3213)] = 59667, + [SMALL_STATE(3214)] = 59722, + [SMALL_STATE(3215)] = 59777, + [SMALL_STATE(3216)] = 59832, + [SMALL_STATE(3217)] = 59887, + [SMALL_STATE(3218)] = 59942, + [SMALL_STATE(3219)] = 59997, + [SMALL_STATE(3220)] = 60052, + [SMALL_STATE(3221)] = 60107, + [SMALL_STATE(3222)] = 60162, + [SMALL_STATE(3223)] = 60217, + [SMALL_STATE(3224)] = 60272, + [SMALL_STATE(3225)] = 60327, + [SMALL_STATE(3226)] = 60386, + [SMALL_STATE(3227)] = 60441, + [SMALL_STATE(3228)] = 60496, + [SMALL_STATE(3229)] = 60551, + [SMALL_STATE(3230)] = 60606, + [SMALL_STATE(3231)] = 60661, + [SMALL_STATE(3232)] = 60716, + [SMALL_STATE(3233)] = 60771, + [SMALL_STATE(3234)] = 60826, + [SMALL_STATE(3235)] = 60881, + [SMALL_STATE(3236)] = 60936, + [SMALL_STATE(3237)] = 60991, + [SMALL_STATE(3238)] = 61046, + [SMALL_STATE(3239)] = 61103, + [SMALL_STATE(3240)] = 61158, + [SMALL_STATE(3241)] = 61213, + [SMALL_STATE(3242)] = 61268, + [SMALL_STATE(3243)] = 61327, + [SMALL_STATE(3244)] = 61386, + [SMALL_STATE(3245)] = 61439, + [SMALL_STATE(3246)] = 61494, + [SMALL_STATE(3247)] = 61549, + [SMALL_STATE(3248)] = 61604, + [SMALL_STATE(3249)] = 61659, + [SMALL_STATE(3250)] = 61714, + [SMALL_STATE(3251)] = 61767, + [SMALL_STATE(3252)] = 61822, + [SMALL_STATE(3253)] = 61877, + [SMALL_STATE(3254)] = 61932, + [SMALL_STATE(3255)] = 61987, + [SMALL_STATE(3256)] = 62042, + [SMALL_STATE(3257)] = 62097, + [SMALL_STATE(3258)] = 62152, + [SMALL_STATE(3259)] = 62207, + [SMALL_STATE(3260)] = 62262, + [SMALL_STATE(3261)] = 62317, + [SMALL_STATE(3262)] = 62372, + [SMALL_STATE(3263)] = 62427, + [SMALL_STATE(3264)] = 62482, + [SMALL_STATE(3265)] = 62537, + [SMALL_STATE(3266)] = 62592, + [SMALL_STATE(3267)] = 62647, + [SMALL_STATE(3268)] = 62702, + [SMALL_STATE(3269)] = 62775, + [SMALL_STATE(3270)] = 62830, + [SMALL_STATE(3271)] = 62885, + [SMALL_STATE(3272)] = 62940, + [SMALL_STATE(3273)] = 62995, + [SMALL_STATE(3274)] = 63050, + [SMALL_STATE(3275)] = 63105, + [SMALL_STATE(3276)] = 63160, + [SMALL_STATE(3277)] = 63215, + [SMALL_STATE(3278)] = 63270, + [SMALL_STATE(3279)] = 63325, + [SMALL_STATE(3280)] = 63380, + [SMALL_STATE(3281)] = 63435, + [SMALL_STATE(3282)] = 63490, + [SMALL_STATE(3283)] = 63545, + [SMALL_STATE(3284)] = 63600, + [SMALL_STATE(3285)] = 63653, + [SMALL_STATE(3286)] = 63708, + [SMALL_STATE(3287)] = 63763, + [SMALL_STATE(3288)] = 63818, + [SMALL_STATE(3289)] = 63873, + [SMALL_STATE(3290)] = 63928, + [SMALL_STATE(3291)] = 63983, + [SMALL_STATE(3292)] = 64038, + [SMALL_STATE(3293)] = 64093, + [SMALL_STATE(3294)] = 64148, + [SMALL_STATE(3295)] = 64203, + [SMALL_STATE(3296)] = 64258, + [SMALL_STATE(3297)] = 64313, + [SMALL_STATE(3298)] = 64390, + [SMALL_STATE(3299)] = 64463, + [SMALL_STATE(3300)] = 64518, + [SMALL_STATE(3301)] = 64573, + [SMALL_STATE(3302)] = 64628, + [SMALL_STATE(3303)] = 64682, + [SMALL_STATE(3304)] = 64736, + [SMALL_STATE(3305)] = 64790, + [SMALL_STATE(3306)] = 64846, + [SMALL_STATE(3307)] = 64898, + [SMALL_STATE(3308)] = 64952, + [SMALL_STATE(3309)] = 65006, + [SMALL_STATE(3310)] = 65060, + [SMALL_STATE(3311)] = 65116, + [SMALL_STATE(3312)] = 65170, + [SMALL_STATE(3313)] = 65228, + [SMALL_STATE(3314)] = 65282, + [SMALL_STATE(3315)] = 65336, + [SMALL_STATE(3316)] = 65390, + [SMALL_STATE(3317)] = 65448, + [SMALL_STATE(3318)] = 65502, + [SMALL_STATE(3319)] = 65556, + [SMALL_STATE(3320)] = 65610, + [SMALL_STATE(3321)] = 65664, + [SMALL_STATE(3322)] = 65718, + [SMALL_STATE(3323)] = 65772, + [SMALL_STATE(3324)] = 65826, + [SMALL_STATE(3325)] = 65880, + [SMALL_STATE(3326)] = 65934, + [SMALL_STATE(3327)] = 65986, + [SMALL_STATE(3328)] = 66040, + [SMALL_STATE(3329)] = 66092, + [SMALL_STATE(3330)] = 66146, + [SMALL_STATE(3331)] = 66200, + [SMALL_STATE(3332)] = 66254, + [SMALL_STATE(3333)] = 66308, + [SMALL_STATE(3334)] = 66362, + [SMALL_STATE(3335)] = 66416, + [SMALL_STATE(3336)] = 66470, + [SMALL_STATE(3337)] = 66526, + [SMALL_STATE(3338)] = 66578, + [SMALL_STATE(3339)] = 66632, + [SMALL_STATE(3340)] = 66684, + [SMALL_STATE(3341)] = 66736, + [SMALL_STATE(3342)] = 66788, + [SMALL_STATE(3343)] = 66842, + [SMALL_STATE(3344)] = 66896, + [SMALL_STATE(3345)] = 66948, + [SMALL_STATE(3346)] = 67000, + [SMALL_STATE(3347)] = 67052, + [SMALL_STATE(3348)] = 67104, + [SMALL_STATE(3349)] = 67158, + [SMALL_STATE(3350)] = 67212, + [SMALL_STATE(3351)] = 67266, + [SMALL_STATE(3352)] = 67318, + [SMALL_STATE(3353)] = 67372, + [SMALL_STATE(3354)] = 67426, + [SMALL_STATE(3355)] = 67480, + [SMALL_STATE(3356)] = 67534, + [SMALL_STATE(3357)] = 67588, + [SMALL_STATE(3358)] = 67642, + [SMALL_STATE(3359)] = 67696, + [SMALL_STATE(3360)] = 67750, + [SMALL_STATE(3361)] = 67802, + [SMALL_STATE(3362)] = 67858, + [SMALL_STATE(3363)] = 67910, + [SMALL_STATE(3364)] = 67964, + [SMALL_STATE(3365)] = 68018, + [SMALL_STATE(3366)] = 68072, + [SMALL_STATE(3367)] = 68126, + [SMALL_STATE(3368)] = 68180, + [SMALL_STATE(3369)] = 68234, + [SMALL_STATE(3370)] = 68288, + [SMALL_STATE(3371)] = 68342, + [SMALL_STATE(3372)] = 68410, + [SMALL_STATE(3373)] = 68464, + [SMALL_STATE(3374)] = 68518, + [SMALL_STATE(3375)] = 68572, + [SMALL_STATE(3376)] = 68627, + [SMALL_STATE(3377)] = 68682, + [SMALL_STATE(3378)] = 68749, + [SMALL_STATE(3379)] = 68816, + [SMALL_STATE(3380)] = 68867, + [SMALL_STATE(3381)] = 68918, + [SMALL_STATE(3382)] = 68973, + [SMALL_STATE(3383)] = 69028, + [SMALL_STATE(3384)] = 69083, + [SMALL_STATE(3385)] = 69138, + [SMALL_STATE(3386)] = 69189, + [SMALL_STATE(3387)] = 69246, + [SMALL_STATE(3388)] = 69301, + [SMALL_STATE(3389)] = 69356, + [SMALL_STATE(3390)] = 69411, + [SMALL_STATE(3391)] = 69466, + [SMALL_STATE(3392)] = 69521, + [SMALL_STATE(3393)] = 69572, + [SMALL_STATE(3394)] = 69627, + [SMALL_STATE(3395)] = 69678, + [SMALL_STATE(3396)] = 69733, + [SMALL_STATE(3397)] = 69790, + [SMALL_STATE(3398)] = 69841, + [SMALL_STATE(3399)] = 69896, + [SMALL_STATE(3400)] = 69951, + [SMALL_STATE(3401)] = 70006, + [SMALL_STATE(3402)] = 70061, + [SMALL_STATE(3403)] = 70116, + [SMALL_STATE(3404)] = 70171, + [SMALL_STATE(3405)] = 70226, + [SMALL_STATE(3406)] = 70281, + [SMALL_STATE(3407)] = 70338, + [SMALL_STATE(3408)] = 70393, + [SMALL_STATE(3409)] = 70448, + [SMALL_STATE(3410)] = 70503, + [SMALL_STATE(3411)] = 70558, + [SMALL_STATE(3412)] = 70609, + [SMALL_STATE(3413)] = 70662, + [SMALL_STATE(3414)] = 70717, + [SMALL_STATE(3415)] = 70772, + [SMALL_STATE(3416)] = 70827, + [SMALL_STATE(3417)] = 70882, + [SMALL_STATE(3418)] = 70937, + [SMALL_STATE(3419)] = 70992, + [SMALL_STATE(3420)] = 71047, + [SMALL_STATE(3421)] = 71102, + [SMALL_STATE(3422)] = 71157, + [SMALL_STATE(3423)] = 71212, + [SMALL_STATE(3424)] = 71267, + [SMALL_STATE(3425)] = 71322, + [SMALL_STATE(3426)] = 71377, + [SMALL_STATE(3427)] = 71432, + [SMALL_STATE(3428)] = 71487, + [SMALL_STATE(3429)] = 71542, + [SMALL_STATE(3430)] = 71596, + [SMALL_STATE(3431)] = 71646, + [SMALL_STATE(3432)] = 71696, + [SMALL_STATE(3433)] = 71756, + [SMALL_STATE(3434)] = 71806, + [SMALL_STATE(3435)] = 71856, + [SMALL_STATE(3436)] = 71918, + [SMALL_STATE(3437)] = 71968, + [SMALL_STATE(3438)] = 72022, + [SMALL_STATE(3439)] = 72072, + [SMALL_STATE(3440)] = 72122, + [SMALL_STATE(3441)] = 72172, + [SMALL_STATE(3442)] = 72222, + [SMALL_STATE(3443)] = 72276, + [SMALL_STATE(3444)] = 72332, + [SMALL_STATE(3445)] = 72382, + [SMALL_STATE(3446)] = 72438, + [SMALL_STATE(3447)] = 72494, + [SMALL_STATE(3448)] = 72544, + [SMALL_STATE(3449)] = 72594, + [SMALL_STATE(3450)] = 72644, + [SMALL_STATE(3451)] = 72694, + [SMALL_STATE(3452)] = 72744, + [SMALL_STATE(3453)] = 72794, + [SMALL_STATE(3454)] = 72843, + [SMALL_STATE(3455)] = 72892, + [SMALL_STATE(3456)] = 72949, + [SMALL_STATE(3457)] = 72998, + [SMALL_STATE(3458)] = 73047, + [SMALL_STATE(3459)] = 73108, + [SMALL_STATE(3460)] = 73157, + [SMALL_STATE(3461)] = 73206, + [SMALL_STATE(3462)] = 73255, + [SMALL_STATE(3463)] = 73304, + [SMALL_STATE(3464)] = 73353, + [SMALL_STATE(3465)] = 73414, + [SMALL_STATE(3466)] = 73463, + [SMALL_STATE(3467)] = 73512, + [SMALL_STATE(3468)] = 73561, + [SMALL_STATE(3469)] = 73610, + [SMALL_STATE(3470)] = 73659, + [SMALL_STATE(3471)] = 73708, + [SMALL_STATE(3472)] = 73757, + [SMALL_STATE(3473)] = 73818, + [SMALL_STATE(3474)] = 73867, + [SMALL_STATE(3475)] = 73916, + [SMALL_STATE(3476)] = 73971, + [SMALL_STATE(3477)] = 74024, + [SMALL_STATE(3478)] = 74079, + [SMALL_STATE(3479)] = 74140, + [SMALL_STATE(3480)] = 74189, + [SMALL_STATE(3481)] = 74244, + [SMALL_STATE(3482)] = 74293, + [SMALL_STATE(3483)] = 74342, + [SMALL_STATE(3484)] = 74391, + [SMALL_STATE(3485)] = 74439, + [SMALL_STATE(3486)] = 74495, + [SMALL_STATE(3487)] = 74545, + [SMALL_STATE(3488)] = 74601, + [SMALL_STATE(3489)] = 74652, + [SMALL_STATE(3490)] = 74703, + [SMALL_STATE(3491)] = 74750, + [SMALL_STATE(3492)] = 74799, + [SMALL_STATE(3493)] = 74846, + [SMALL_STATE(3494)] = 74897, + [SMALL_STATE(3495)] = 74944, + [SMALL_STATE(3496)] = 74991, + [SMALL_STATE(3497)] = 75038, + [SMALL_STATE(3498)] = 75089, + [SMALL_STATE(3499)] = 75140, + [SMALL_STATE(3500)] = 75191, + [SMALL_STATE(3501)] = 75238, + [SMALL_STATE(3502)] = 75284, + [SMALL_STATE(3503)] = 75330, + [SMALL_STATE(3504)] = 75380, + [SMALL_STATE(3505)] = 75426, + [SMALL_STATE(3506)] = 75472, + [SMALL_STATE(3507)] = 75518, + [SMALL_STATE(3508)] = 75568, + [SMALL_STATE(3509)] = 75614, + [SMALL_STATE(3510)] = 75666, + [SMALL_STATE(3511)] = 75716, + [SMALL_STATE(3512)] = 75768, + [SMALL_STATE(3513)] = 75820, + [SMALL_STATE(3514)] = 75870, + [SMALL_STATE(3515)] = 75916, + [SMALL_STATE(3516)] = 75962, + [SMALL_STATE(3517)] = 76008, + [SMALL_STATE(3518)] = 76058, + [SMALL_STATE(3519)] = 76107, + [SMALL_STATE(3520)] = 76152, + [SMALL_STATE(3521)] = 76201, + [SMALL_STATE(3522)] = 76250, + [SMALL_STATE(3523)] = 76299, + [SMALL_STATE(3524)] = 76348, + [SMALL_STATE(3525)] = 76433, + [SMALL_STATE(3526)] = 76482, + [SMALL_STATE(3527)] = 76567, + [SMALL_STATE(3528)] = 76616, + [SMALL_STATE(3529)] = 76701, + [SMALL_STATE(3530)] = 76750, + [SMALL_STATE(3531)] = 76799, + [SMALL_STATE(3532)] = 76848, + [SMALL_STATE(3533)] = 76899, + [SMALL_STATE(3534)] = 76984, + [SMALL_STATE(3535)] = 77069, + [SMALL_STATE(3536)] = 77118, + [SMALL_STATE(3537)] = 77203, + [SMALL_STATE(3538)] = 77252, + [SMALL_STATE(3539)] = 77337, + [SMALL_STATE(3540)] = 77422, + [SMALL_STATE(3541)] = 77507, + [SMALL_STATE(3542)] = 77556, + [SMALL_STATE(3543)] = 77641, + [SMALL_STATE(3544)] = 77726, + [SMALL_STATE(3545)] = 77811, + [SMALL_STATE(3546)] = 77860, + [SMALL_STATE(3547)] = 77915, + [SMALL_STATE(3548)] = 77960, + [SMALL_STATE(3549)] = 78045, + [SMALL_STATE(3550)] = 78130, + [SMALL_STATE(3551)] = 78215, + [SMALL_STATE(3552)] = 78300, + [SMALL_STATE(3553)] = 78345, + [SMALL_STATE(3554)] = 78394, + [SMALL_STATE(3555)] = 78443, + [SMALL_STATE(3556)] = 78492, + [SMALL_STATE(3557)] = 78541, + [SMALL_STATE(3558)] = 78626, + [SMALL_STATE(3559)] = 78671, + [SMALL_STATE(3560)] = 78720, + [SMALL_STATE(3561)] = 78805, + [SMALL_STATE(3562)] = 78890, + [SMALL_STATE(3563)] = 78935, + [SMALL_STATE(3564)] = 78984, + [SMALL_STATE(3565)] = 79033, + [SMALL_STATE(3566)] = 79082, + [SMALL_STATE(3567)] = 79167, + [SMALL_STATE(3568)] = 79252, + [SMALL_STATE(3569)] = 79301, + [SMALL_STATE(3570)] = 79350, + [SMALL_STATE(3571)] = 79435, + [SMALL_STATE(3572)] = 79484, + [SMALL_STATE(3573)] = 79533, + [SMALL_STATE(3574)] = 79582, + [SMALL_STATE(3575)] = 79667, + [SMALL_STATE(3576)] = 79752, + [SMALL_STATE(3577)] = 79837, + [SMALL_STATE(3578)] = 79922, + [SMALL_STATE(3579)] = 80007, + [SMALL_STATE(3580)] = 80092, + [SMALL_STATE(3581)] = 80177, + [SMALL_STATE(3582)] = 80226, + [SMALL_STATE(3583)] = 80275, + [SMALL_STATE(3584)] = 80324, + [SMALL_STATE(3585)] = 80373, + [SMALL_STATE(3586)] = 80422, + [SMALL_STATE(3587)] = 80466, + [SMALL_STATE(3588)] = 80510, + [SMALL_STATE(3589)] = 80558, + [SMALL_STATE(3590)] = 80604, + [SMALL_STATE(3591)] = 80648, + [SMALL_STATE(3592)] = 80692, + [SMALL_STATE(3593)] = 80740, + [SMALL_STATE(3594)] = 80784, + [SMALL_STATE(3595)] = 80830, + [SMALL_STATE(3596)] = 80874, + [SMALL_STATE(3597)] = 80922, + [SMALL_STATE(3598)] = 80966, + [SMALL_STATE(3599)] = 81048, + [SMALL_STATE(3600)] = 81092, + [SMALL_STATE(3601)] = 81136, + [SMALL_STATE(3602)] = 81180, + [SMALL_STATE(3603)] = 81224, + [SMALL_STATE(3604)] = 81268, + [SMALL_STATE(3605)] = 81312, + [SMALL_STATE(3606)] = 81356, + [SMALL_STATE(3607)] = 81400, + [SMALL_STATE(3608)] = 81444, + [SMALL_STATE(3609)] = 81487, + [SMALL_STATE(3610)] = 81530, + [SMALL_STATE(3611)] = 81573, + [SMALL_STATE(3612)] = 81616, + [SMALL_STATE(3613)] = 81659, + [SMALL_STATE(3614)] = 81702, + [SMALL_STATE(3615)] = 81745, + [SMALL_STATE(3616)] = 81788, + [SMALL_STATE(3617)] = 81831, + [SMALL_STATE(3618)] = 81874, + [SMALL_STATE(3619)] = 81917, + [SMALL_STATE(3620)] = 81960, + [SMALL_STATE(3621)] = 82003, + [SMALL_STATE(3622)] = 82046, + [SMALL_STATE(3623)] = 82089, + [SMALL_STATE(3624)] = 82132, + [SMALL_STATE(3625)] = 82175, + [SMALL_STATE(3626)] = 82218, + [SMALL_STATE(3627)] = 82261, + [SMALL_STATE(3628)] = 82304, + [SMALL_STATE(3629)] = 82347, + [SMALL_STATE(3630)] = 82390, + [SMALL_STATE(3631)] = 82433, + [SMALL_STATE(3632)] = 82476, + [SMALL_STATE(3633)] = 82519, + [SMALL_STATE(3634)] = 82562, + [SMALL_STATE(3635)] = 82605, + [SMALL_STATE(3636)] = 82648, + [SMALL_STATE(3637)] = 82691, + [SMALL_STATE(3638)] = 82734, + [SMALL_STATE(3639)] = 82777, + [SMALL_STATE(3640)] = 82820, + [SMALL_STATE(3641)] = 82863, + [SMALL_STATE(3642)] = 82906, + [SMALL_STATE(3643)] = 82949, + [SMALL_STATE(3644)] = 82992, + [SMALL_STATE(3645)] = 83035, + [SMALL_STATE(3646)] = 83078, + [SMALL_STATE(3647)] = 83121, + [SMALL_STATE(3648)] = 83164, + [SMALL_STATE(3649)] = 83207, + [SMALL_STATE(3650)] = 83250, + [SMALL_STATE(3651)] = 83293, + [SMALL_STATE(3652)] = 83336, + [SMALL_STATE(3653)] = 83379, + [SMALL_STATE(3654)] = 83422, + [SMALL_STATE(3655)] = 83465, + [SMALL_STATE(3656)] = 83508, + [SMALL_STATE(3657)] = 83551, + [SMALL_STATE(3658)] = 83594, + [SMALL_STATE(3659)] = 83637, + [SMALL_STATE(3660)] = 83680, + [SMALL_STATE(3661)] = 83723, + [SMALL_STATE(3662)] = 83766, + [SMALL_STATE(3663)] = 83809, + [SMALL_STATE(3664)] = 83852, + [SMALL_STATE(3665)] = 83895, + [SMALL_STATE(3666)] = 83938, + [SMALL_STATE(3667)] = 83981, + [SMALL_STATE(3668)] = 84024, + [SMALL_STATE(3669)] = 84067, + [SMALL_STATE(3670)] = 84110, + [SMALL_STATE(3671)] = 84153, + [SMALL_STATE(3672)] = 84196, + [SMALL_STATE(3673)] = 84239, + [SMALL_STATE(3674)] = 84282, + [SMALL_STATE(3675)] = 84325, + [SMALL_STATE(3676)] = 84368, + [SMALL_STATE(3677)] = 84411, + [SMALL_STATE(3678)] = 84454, + [SMALL_STATE(3679)] = 84497, + [SMALL_STATE(3680)] = 84540, + [SMALL_STATE(3681)] = 84583, + [SMALL_STATE(3682)] = 84626, + [SMALL_STATE(3683)] = 84669, + [SMALL_STATE(3684)] = 84712, + [SMALL_STATE(3685)] = 84755, + [SMALL_STATE(3686)] = 84798, + [SMALL_STATE(3687)] = 84841, + [SMALL_STATE(3688)] = 84884, + [SMALL_STATE(3689)] = 84927, + [SMALL_STATE(3690)] = 84970, + [SMALL_STATE(3691)] = 85013, + [SMALL_STATE(3692)] = 85056, + [SMALL_STATE(3693)] = 85099, + [SMALL_STATE(3694)] = 85142, + [SMALL_STATE(3695)] = 85185, + [SMALL_STATE(3696)] = 85228, + [SMALL_STATE(3697)] = 85271, + [SMALL_STATE(3698)] = 85314, + [SMALL_STATE(3699)] = 85357, + [SMALL_STATE(3700)] = 85400, + [SMALL_STATE(3701)] = 85443, + [SMALL_STATE(3702)] = 85486, + [SMALL_STATE(3703)] = 85529, + [SMALL_STATE(3704)] = 85572, + [SMALL_STATE(3705)] = 85615, + [SMALL_STATE(3706)] = 85658, + [SMALL_STATE(3707)] = 85701, + [SMALL_STATE(3708)] = 85744, + [SMALL_STATE(3709)] = 85787, + [SMALL_STATE(3710)] = 85830, + [SMALL_STATE(3711)] = 85873, + [SMALL_STATE(3712)] = 85916, + [SMALL_STATE(3713)] = 85959, + [SMALL_STATE(3714)] = 86002, + [SMALL_STATE(3715)] = 86045, + [SMALL_STATE(3716)] = 86088, + [SMALL_STATE(3717)] = 86131, + [SMALL_STATE(3718)] = 86174, + [SMALL_STATE(3719)] = 86217, + [SMALL_STATE(3720)] = 86260, + [SMALL_STATE(3721)] = 86303, + [SMALL_STATE(3722)] = 86346, + [SMALL_STATE(3723)] = 86389, + [SMALL_STATE(3724)] = 86432, + [SMALL_STATE(3725)] = 86475, + [SMALL_STATE(3726)] = 86518, + [SMALL_STATE(3727)] = 86561, + [SMALL_STATE(3728)] = 86604, + [SMALL_STATE(3729)] = 86647, + [SMALL_STATE(3730)] = 86690, + [SMALL_STATE(3731)] = 86733, + [SMALL_STATE(3732)] = 86776, + [SMALL_STATE(3733)] = 86819, + [SMALL_STATE(3734)] = 86862, + [SMALL_STATE(3735)] = 86905, + [SMALL_STATE(3736)] = 86948, + [SMALL_STATE(3737)] = 86991, + [SMALL_STATE(3738)] = 87034, + [SMALL_STATE(3739)] = 87077, + [SMALL_STATE(3740)] = 87120, + [SMALL_STATE(3741)] = 87163, + [SMALL_STATE(3742)] = 87206, + [SMALL_STATE(3743)] = 87249, + [SMALL_STATE(3744)] = 87292, + [SMALL_STATE(3745)] = 87335, + [SMALL_STATE(3746)] = 87378, + [SMALL_STATE(3747)] = 87421, + [SMALL_STATE(3748)] = 87464, + [SMALL_STATE(3749)] = 87507, + [SMALL_STATE(3750)] = 87550, + [SMALL_STATE(3751)] = 87593, + [SMALL_STATE(3752)] = 87636, + [SMALL_STATE(3753)] = 87679, + [SMALL_STATE(3754)] = 87722, + [SMALL_STATE(3755)] = 87765, + [SMALL_STATE(3756)] = 87808, + [SMALL_STATE(3757)] = 87851, + [SMALL_STATE(3758)] = 87894, + [SMALL_STATE(3759)] = 87937, + [SMALL_STATE(3760)] = 87980, + [SMALL_STATE(3761)] = 88023, + [SMALL_STATE(3762)] = 88066, + [SMALL_STATE(3763)] = 88109, + [SMALL_STATE(3764)] = 88152, + [SMALL_STATE(3765)] = 88195, + [SMALL_STATE(3766)] = 88238, + [SMALL_STATE(3767)] = 88281, + [SMALL_STATE(3768)] = 88324, + [SMALL_STATE(3769)] = 88367, + [SMALL_STATE(3770)] = 88410, + [SMALL_STATE(3771)] = 88453, + [SMALL_STATE(3772)] = 88496, + [SMALL_STATE(3773)] = 88539, + [SMALL_STATE(3774)] = 88582, + [SMALL_STATE(3775)] = 88625, + [SMALL_STATE(3776)] = 88668, + [SMALL_STATE(3777)] = 88711, + [SMALL_STATE(3778)] = 88754, + [SMALL_STATE(3779)] = 88797, + [SMALL_STATE(3780)] = 88840, + [SMALL_STATE(3781)] = 88883, + [SMALL_STATE(3782)] = 88926, + [SMALL_STATE(3783)] = 88969, + [SMALL_STATE(3784)] = 89012, + [SMALL_STATE(3785)] = 89055, + [SMALL_STATE(3786)] = 89098, + [SMALL_STATE(3787)] = 89141, + [SMALL_STATE(3788)] = 89184, + [SMALL_STATE(3789)] = 89227, + [SMALL_STATE(3790)] = 89270, + [SMALL_STATE(3791)] = 89313, + [SMALL_STATE(3792)] = 89356, + [SMALL_STATE(3793)] = 89399, + [SMALL_STATE(3794)] = 89442, + [SMALL_STATE(3795)] = 89485, + [SMALL_STATE(3796)] = 89528, + [SMALL_STATE(3797)] = 89571, + [SMALL_STATE(3798)] = 89614, + [SMALL_STATE(3799)] = 89657, + [SMALL_STATE(3800)] = 89700, + [SMALL_STATE(3801)] = 89743, + [SMALL_STATE(3802)] = 89786, + [SMALL_STATE(3803)] = 89829, + [SMALL_STATE(3804)] = 89872, + [SMALL_STATE(3805)] = 89915, + [SMALL_STATE(3806)] = 89958, + [SMALL_STATE(3807)] = 90001, + [SMALL_STATE(3808)] = 90044, + [SMALL_STATE(3809)] = 90087, + [SMALL_STATE(3810)] = 90130, + [SMALL_STATE(3811)] = 90173, + [SMALL_STATE(3812)] = 90216, + [SMALL_STATE(3813)] = 90259, + [SMALL_STATE(3814)] = 90302, + [SMALL_STATE(3815)] = 90345, + [SMALL_STATE(3816)] = 90388, + [SMALL_STATE(3817)] = 90431, + [SMALL_STATE(3818)] = 90474, + [SMALL_STATE(3819)] = 90517, + [SMALL_STATE(3820)] = 90560, + [SMALL_STATE(3821)] = 90603, + [SMALL_STATE(3822)] = 90646, + [SMALL_STATE(3823)] = 90689, + [SMALL_STATE(3824)] = 90732, + [SMALL_STATE(3825)] = 90775, + [SMALL_STATE(3826)] = 90818, + [SMALL_STATE(3827)] = 90861, + [SMALL_STATE(3828)] = 90904, + [SMALL_STATE(3829)] = 90947, + [SMALL_STATE(3830)] = 90990, + [SMALL_STATE(3831)] = 91033, + [SMALL_STATE(3832)] = 91076, + [SMALL_STATE(3833)] = 91119, + [SMALL_STATE(3834)] = 91162, + [SMALL_STATE(3835)] = 91205, + [SMALL_STATE(3836)] = 91248, + [SMALL_STATE(3837)] = 91291, + [SMALL_STATE(3838)] = 91334, + [SMALL_STATE(3839)] = 91377, + [SMALL_STATE(3840)] = 91420, + [SMALL_STATE(3841)] = 91463, + [SMALL_STATE(3842)] = 91506, + [SMALL_STATE(3843)] = 91549, + [SMALL_STATE(3844)] = 91592, + [SMALL_STATE(3845)] = 91635, + [SMALL_STATE(3846)] = 91678, + [SMALL_STATE(3847)] = 91721, + [SMALL_STATE(3848)] = 91764, + [SMALL_STATE(3849)] = 91807, + [SMALL_STATE(3850)] = 91850, + [SMALL_STATE(3851)] = 91893, + [SMALL_STATE(3852)] = 91936, + [SMALL_STATE(3853)] = 91979, + [SMALL_STATE(3854)] = 92022, + [SMALL_STATE(3855)] = 92065, + [SMALL_STATE(3856)] = 92108, + [SMALL_STATE(3857)] = 92151, + [SMALL_STATE(3858)] = 92194, + [SMALL_STATE(3859)] = 92237, + [SMALL_STATE(3860)] = 92280, + [SMALL_STATE(3861)] = 92323, + [SMALL_STATE(3862)] = 92366, + [SMALL_STATE(3863)] = 92409, + [SMALL_STATE(3864)] = 92452, + [SMALL_STATE(3865)] = 92495, + [SMALL_STATE(3866)] = 92538, + [SMALL_STATE(3867)] = 92581, + [SMALL_STATE(3868)] = 92624, + [SMALL_STATE(3869)] = 92667, + [SMALL_STATE(3870)] = 92710, + [SMALL_STATE(3871)] = 92753, + [SMALL_STATE(3872)] = 92796, + [SMALL_STATE(3873)] = 92839, + [SMALL_STATE(3874)] = 92882, + [SMALL_STATE(3875)] = 92925, + [SMALL_STATE(3876)] = 92968, + [SMALL_STATE(3877)] = 93011, + [SMALL_STATE(3878)] = 93054, + [SMALL_STATE(3879)] = 93097, + [SMALL_STATE(3880)] = 93140, + [SMALL_STATE(3881)] = 93183, + [SMALL_STATE(3882)] = 93226, + [SMALL_STATE(3883)] = 93269, + [SMALL_STATE(3884)] = 93312, + [SMALL_STATE(3885)] = 93355, + [SMALL_STATE(3886)] = 93398, + [SMALL_STATE(3887)] = 93441, + [SMALL_STATE(3888)] = 93484, + [SMALL_STATE(3889)] = 93527, + [SMALL_STATE(3890)] = 93570, + [SMALL_STATE(3891)] = 93613, + [SMALL_STATE(3892)] = 93656, + [SMALL_STATE(3893)] = 93699, + [SMALL_STATE(3894)] = 93742, + [SMALL_STATE(3895)] = 93785, + [SMALL_STATE(3896)] = 93828, + [SMALL_STATE(3897)] = 93871, + [SMALL_STATE(3898)] = 93914, + [SMALL_STATE(3899)] = 93957, + [SMALL_STATE(3900)] = 94000, + [SMALL_STATE(3901)] = 94043, + [SMALL_STATE(3902)] = 94086, + [SMALL_STATE(3903)] = 94129, + [SMALL_STATE(3904)] = 94172, + [SMALL_STATE(3905)] = 94215, + [SMALL_STATE(3906)] = 94258, + [SMALL_STATE(3907)] = 94301, + [SMALL_STATE(3908)] = 94344, + [SMALL_STATE(3909)] = 94387, + [SMALL_STATE(3910)] = 94430, + [SMALL_STATE(3911)] = 94473, + [SMALL_STATE(3912)] = 94516, + [SMALL_STATE(3913)] = 94559, + [SMALL_STATE(3914)] = 94602, + [SMALL_STATE(3915)] = 94645, + [SMALL_STATE(3916)] = 94688, + [SMALL_STATE(3917)] = 94731, + [SMALL_STATE(3918)] = 94774, + [SMALL_STATE(3919)] = 94817, + [SMALL_STATE(3920)] = 94860, + [SMALL_STATE(3921)] = 94903, + [SMALL_STATE(3922)] = 94946, + [SMALL_STATE(3923)] = 94989, + [SMALL_STATE(3924)] = 95032, + [SMALL_STATE(3925)] = 95075, + [SMALL_STATE(3926)] = 95118, + [SMALL_STATE(3927)] = 95161, + [SMALL_STATE(3928)] = 95204, + [SMALL_STATE(3929)] = 95247, + [SMALL_STATE(3930)] = 95290, + [SMALL_STATE(3931)] = 95333, + [SMALL_STATE(3932)] = 95376, + [SMALL_STATE(3933)] = 95419, + [SMALL_STATE(3934)] = 95462, + [SMALL_STATE(3935)] = 95505, + [SMALL_STATE(3936)] = 95548, + [SMALL_STATE(3937)] = 95591, + [SMALL_STATE(3938)] = 95634, + [SMALL_STATE(3939)] = 95677, + [SMALL_STATE(3940)] = 95720, + [SMALL_STATE(3941)] = 95763, + [SMALL_STATE(3942)] = 95806, + [SMALL_STATE(3943)] = 95849, + [SMALL_STATE(3944)] = 95892, + [SMALL_STATE(3945)] = 95935, + [SMALL_STATE(3946)] = 95978, + [SMALL_STATE(3947)] = 96021, + [SMALL_STATE(3948)] = 96064, + [SMALL_STATE(3949)] = 96107, + [SMALL_STATE(3950)] = 96150, + [SMALL_STATE(3951)] = 96193, + [SMALL_STATE(3952)] = 96236, + [SMALL_STATE(3953)] = 96279, + [SMALL_STATE(3954)] = 96322, + [SMALL_STATE(3955)] = 96365, + [SMALL_STATE(3956)] = 96408, + [SMALL_STATE(3957)] = 96451, + [SMALL_STATE(3958)] = 96494, + [SMALL_STATE(3959)] = 96537, + [SMALL_STATE(3960)] = 96580, + [SMALL_STATE(3961)] = 96623, + [SMALL_STATE(3962)] = 96666, + [SMALL_STATE(3963)] = 96709, + [SMALL_STATE(3964)] = 96752, + [SMALL_STATE(3965)] = 96795, + [SMALL_STATE(3966)] = 96838, + [SMALL_STATE(3967)] = 96881, + [SMALL_STATE(3968)] = 96924, + [SMALL_STATE(3969)] = 96967, + [SMALL_STATE(3970)] = 97010, + [SMALL_STATE(3971)] = 97053, + [SMALL_STATE(3972)] = 97096, + [SMALL_STATE(3973)] = 97139, + [SMALL_STATE(3974)] = 97182, + [SMALL_STATE(3975)] = 97225, + [SMALL_STATE(3976)] = 97268, + [SMALL_STATE(3977)] = 97311, + [SMALL_STATE(3978)] = 97354, + [SMALL_STATE(3979)] = 97397, + [SMALL_STATE(3980)] = 97440, + [SMALL_STATE(3981)] = 97483, + [SMALL_STATE(3982)] = 97526, + [SMALL_STATE(3983)] = 97569, + [SMALL_STATE(3984)] = 97612, + [SMALL_STATE(3985)] = 97655, + [SMALL_STATE(3986)] = 97698, + [SMALL_STATE(3987)] = 97741, + [SMALL_STATE(3988)] = 97784, + [SMALL_STATE(3989)] = 97827, + [SMALL_STATE(3990)] = 97870, + [SMALL_STATE(3991)] = 97913, + [SMALL_STATE(3992)] = 97956, + [SMALL_STATE(3993)] = 97999, + [SMALL_STATE(3994)] = 98042, + [SMALL_STATE(3995)] = 98085, + [SMALL_STATE(3996)] = 98128, + [SMALL_STATE(3997)] = 98171, + [SMALL_STATE(3998)] = 98214, + [SMALL_STATE(3999)] = 98257, + [SMALL_STATE(4000)] = 98300, + [SMALL_STATE(4001)] = 98343, + [SMALL_STATE(4002)] = 98386, + [SMALL_STATE(4003)] = 98429, + [SMALL_STATE(4004)] = 98472, + [SMALL_STATE(4005)] = 98515, + [SMALL_STATE(4006)] = 98558, + [SMALL_STATE(4007)] = 98601, + [SMALL_STATE(4008)] = 98644, + [SMALL_STATE(4009)] = 98687, + [SMALL_STATE(4010)] = 98730, + [SMALL_STATE(4011)] = 98773, + [SMALL_STATE(4012)] = 98816, + [SMALL_STATE(4013)] = 98859, + [SMALL_STATE(4014)] = 98902, + [SMALL_STATE(4015)] = 98945, + [SMALL_STATE(4016)] = 98988, + [SMALL_STATE(4017)] = 99031, + [SMALL_STATE(4018)] = 99074, + [SMALL_STATE(4019)] = 99117, + [SMALL_STATE(4020)] = 99160, + [SMALL_STATE(4021)] = 99203, + [SMALL_STATE(4022)] = 99246, + [SMALL_STATE(4023)] = 99289, + [SMALL_STATE(4024)] = 99332, + [SMALL_STATE(4025)] = 99375, + [SMALL_STATE(4026)] = 99418, + [SMALL_STATE(4027)] = 99461, + [SMALL_STATE(4028)] = 99504, + [SMALL_STATE(4029)] = 99547, + [SMALL_STATE(4030)] = 99590, + [SMALL_STATE(4031)] = 99633, + [SMALL_STATE(4032)] = 99676, + [SMALL_STATE(4033)] = 99719, + [SMALL_STATE(4034)] = 99762, + [SMALL_STATE(4035)] = 99805, + [SMALL_STATE(4036)] = 99848, + [SMALL_STATE(4037)] = 99891, + [SMALL_STATE(4038)] = 99934, + [SMALL_STATE(4039)] = 99977, + [SMALL_STATE(4040)] = 100020, + [SMALL_STATE(4041)] = 100063, + [SMALL_STATE(4042)] = 100106, + [SMALL_STATE(4043)] = 100149, + [SMALL_STATE(4044)] = 100192, + [SMALL_STATE(4045)] = 100235, + [SMALL_STATE(4046)] = 100278, + [SMALL_STATE(4047)] = 100321, + [SMALL_STATE(4048)] = 100364, + [SMALL_STATE(4049)] = 100407, + [SMALL_STATE(4050)] = 100450, + [SMALL_STATE(4051)] = 100493, + [SMALL_STATE(4052)] = 100536, + [SMALL_STATE(4053)] = 100579, + [SMALL_STATE(4054)] = 100622, + [SMALL_STATE(4055)] = 100665, + [SMALL_STATE(4056)] = 100708, + [SMALL_STATE(4057)] = 100751, + [SMALL_STATE(4058)] = 100794, + [SMALL_STATE(4059)] = 100837, + [SMALL_STATE(4060)] = 100880, + [SMALL_STATE(4061)] = 100923, + [SMALL_STATE(4062)] = 100966, + [SMALL_STATE(4063)] = 101009, + [SMALL_STATE(4064)] = 101052, + [SMALL_STATE(4065)] = 101095, + [SMALL_STATE(4066)] = 101138, + [SMALL_STATE(4067)] = 101181, + [SMALL_STATE(4068)] = 101224, + [SMALL_STATE(4069)] = 101267, + [SMALL_STATE(4070)] = 101310, + [SMALL_STATE(4071)] = 101353, + [SMALL_STATE(4072)] = 101396, + [SMALL_STATE(4073)] = 101439, + [SMALL_STATE(4074)] = 101482, + [SMALL_STATE(4075)] = 101525, + [SMALL_STATE(4076)] = 101568, + [SMALL_STATE(4077)] = 101611, + [SMALL_STATE(4078)] = 101654, + [SMALL_STATE(4079)] = 101697, + [SMALL_STATE(4080)] = 101740, + [SMALL_STATE(4081)] = 101783, + [SMALL_STATE(4082)] = 101826, + [SMALL_STATE(4083)] = 101869, + [SMALL_STATE(4084)] = 101912, + [SMALL_STATE(4085)] = 101955, + [SMALL_STATE(4086)] = 101998, + [SMALL_STATE(4087)] = 102041, + [SMALL_STATE(4088)] = 102084, + [SMALL_STATE(4089)] = 102127, + [SMALL_STATE(4090)] = 102170, + [SMALL_STATE(4091)] = 102213, + [SMALL_STATE(4092)] = 102256, + [SMALL_STATE(4093)] = 102299, + [SMALL_STATE(4094)] = 102342, + [SMALL_STATE(4095)] = 102385, + [SMALL_STATE(4096)] = 102428, + [SMALL_STATE(4097)] = 102471, + [SMALL_STATE(4098)] = 102514, + [SMALL_STATE(4099)] = 102557, + [SMALL_STATE(4100)] = 102600, + [SMALL_STATE(4101)] = 102643, + [SMALL_STATE(4102)] = 102686, + [SMALL_STATE(4103)] = 102729, + [SMALL_STATE(4104)] = 102772, + [SMALL_STATE(4105)] = 102815, + [SMALL_STATE(4106)] = 102858, + [SMALL_STATE(4107)] = 102901, + [SMALL_STATE(4108)] = 102944, + [SMALL_STATE(4109)] = 102987, + [SMALL_STATE(4110)] = 103030, + [SMALL_STATE(4111)] = 103073, + [SMALL_STATE(4112)] = 103116, + [SMALL_STATE(4113)] = 103159, + [SMALL_STATE(4114)] = 103202, + [SMALL_STATE(4115)] = 103245, + [SMALL_STATE(4116)] = 103288, + [SMALL_STATE(4117)] = 103331, + [SMALL_STATE(4118)] = 103374, + [SMALL_STATE(4119)] = 103417, + [SMALL_STATE(4120)] = 103460, + [SMALL_STATE(4121)] = 103503, + [SMALL_STATE(4122)] = 103546, + [SMALL_STATE(4123)] = 103589, + [SMALL_STATE(4124)] = 103632, + [SMALL_STATE(4125)] = 103675, + [SMALL_STATE(4126)] = 103718, + [SMALL_STATE(4127)] = 103761, + [SMALL_STATE(4128)] = 103804, + [SMALL_STATE(4129)] = 103847, + [SMALL_STATE(4130)] = 103890, + [SMALL_STATE(4131)] = 103933, + [SMALL_STATE(4132)] = 103976, + [SMALL_STATE(4133)] = 104019, + [SMALL_STATE(4134)] = 104062, + [SMALL_STATE(4135)] = 104105, + [SMALL_STATE(4136)] = 104148, + [SMALL_STATE(4137)] = 104191, + [SMALL_STATE(4138)] = 104234, + [SMALL_STATE(4139)] = 104277, + [SMALL_STATE(4140)] = 104320, + [SMALL_STATE(4141)] = 104363, + [SMALL_STATE(4142)] = 104406, + [SMALL_STATE(4143)] = 104449, + [SMALL_STATE(4144)] = 104492, + [SMALL_STATE(4145)] = 104535, + [SMALL_STATE(4146)] = 104578, + [SMALL_STATE(4147)] = 104621, + [SMALL_STATE(4148)] = 104664, + [SMALL_STATE(4149)] = 104707, + [SMALL_STATE(4150)] = 104750, + [SMALL_STATE(4151)] = 104793, + [SMALL_STATE(4152)] = 104836, + [SMALL_STATE(4153)] = 104879, + [SMALL_STATE(4154)] = 104922, + [SMALL_STATE(4155)] = 104965, + [SMALL_STATE(4156)] = 105008, + [SMALL_STATE(4157)] = 105051, + [SMALL_STATE(4158)] = 105094, + [SMALL_STATE(4159)] = 105137, + [SMALL_STATE(4160)] = 105180, + [SMALL_STATE(4161)] = 105223, + [SMALL_STATE(4162)] = 105266, + [SMALL_STATE(4163)] = 105309, + [SMALL_STATE(4164)] = 105352, + [SMALL_STATE(4165)] = 105395, + [SMALL_STATE(4166)] = 105438, + [SMALL_STATE(4167)] = 105481, + [SMALL_STATE(4168)] = 105524, + [SMALL_STATE(4169)] = 105567, + [SMALL_STATE(4170)] = 105610, + [SMALL_STATE(4171)] = 105653, + [SMALL_STATE(4172)] = 105696, + [SMALL_STATE(4173)] = 105739, + [SMALL_STATE(4174)] = 105782, + [SMALL_STATE(4175)] = 105825, + [SMALL_STATE(4176)] = 105868, + [SMALL_STATE(4177)] = 105911, + [SMALL_STATE(4178)] = 105954, + [SMALL_STATE(4179)] = 105997, + [SMALL_STATE(4180)] = 106040, + [SMALL_STATE(4181)] = 106083, + [SMALL_STATE(4182)] = 106126, + [SMALL_STATE(4183)] = 106169, + [SMALL_STATE(4184)] = 106212, + [SMALL_STATE(4185)] = 106255, + [SMALL_STATE(4186)] = 106298, + [SMALL_STATE(4187)] = 106341, + [SMALL_STATE(4188)] = 106384, + [SMALL_STATE(4189)] = 106427, + [SMALL_STATE(4190)] = 106470, + [SMALL_STATE(4191)] = 106513, + [SMALL_STATE(4192)] = 106556, + [SMALL_STATE(4193)] = 106599, + [SMALL_STATE(4194)] = 106642, + [SMALL_STATE(4195)] = 106685, + [SMALL_STATE(4196)] = 106728, + [SMALL_STATE(4197)] = 106771, + [SMALL_STATE(4198)] = 106814, + [SMALL_STATE(4199)] = 106857, + [SMALL_STATE(4200)] = 106900, + [SMALL_STATE(4201)] = 106943, + [SMALL_STATE(4202)] = 106986, + [SMALL_STATE(4203)] = 107029, + [SMALL_STATE(4204)] = 107072, + [SMALL_STATE(4205)] = 107115, + [SMALL_STATE(4206)] = 107158, + [SMALL_STATE(4207)] = 107201, + [SMALL_STATE(4208)] = 107244, + [SMALL_STATE(4209)] = 107287, + [SMALL_STATE(4210)] = 107363, + [SMALL_STATE(4211)] = 107407, + [SMALL_STATE(4212)] = 107483, + [SMALL_STATE(4213)] = 107559, + [SMALL_STATE(4214)] = 107643, + [SMALL_STATE(4215)] = 107719, + [SMALL_STATE(4216)] = 107795, + [SMALL_STATE(4217)] = 107839, + [SMALL_STATE(4218)] = 107915, + [SMALL_STATE(4219)] = 107991, + [SMALL_STATE(4220)] = 108035, + [SMALL_STATE(4221)] = 108111, + [SMALL_STATE(4222)] = 108187, + [SMALL_STATE(4223)] = 108263, + [SMALL_STATE(4224)] = 108307, + [SMALL_STATE(4225)] = 108391, + [SMALL_STATE(4226)] = 108435, + [SMALL_STATE(4227)] = 108479, + [SMALL_STATE(4228)] = 108520, + [SMALL_STATE(4229)] = 108561, + [SMALL_STATE(4230)] = 108604, + [SMALL_STATE(4231)] = 108645, + [SMALL_STATE(4232)] = 108718, + [SMALL_STATE(4233)] = 108759, + [SMALL_STATE(4234)] = 108800, + [SMALL_STATE(4235)] = 108841, + [SMALL_STATE(4236)] = 108881, + [SMALL_STATE(4237)] = 108921, + [SMALL_STATE(4238)] = 108961, + [SMALL_STATE(4239)] = 109001, + [SMALL_STATE(4240)] = 109041, + [SMALL_STATE(4241)] = 109081, + [SMALL_STATE(4242)] = 109124, + [SMALL_STATE(4243)] = 109169, + [SMALL_STATE(4244)] = 109214, + [SMALL_STATE(4245)] = 109259, + [SMALL_STATE(4246)] = 109303, + [SMALL_STATE(4247)] = 109347, + [SMALL_STATE(4248)] = 109389, + [SMALL_STATE(4249)] = 109433, + [SMALL_STATE(4250)] = 109471, + [SMALL_STATE(4251)] = 109536, + [SMALL_STATE(4252)] = 109573, + [SMALL_STATE(4253)] = 109610, + [SMALL_STATE(4254)] = 109661, + [SMALL_STATE(4255)] = 109698, + [SMALL_STATE(4256)] = 109735, + [SMALL_STATE(4257)] = 109772, + [SMALL_STATE(4258)] = 109834, + [SMALL_STATE(4259)] = 109896, + [SMALL_STATE(4260)] = 109958, + [SMALL_STATE(4261)] = 110020, + [SMALL_STATE(4262)] = 110082, + [SMALL_STATE(4263)] = 110144, + [SMALL_STATE(4264)] = 110190, + [SMALL_STATE(4265)] = 110252, + [SMALL_STATE(4266)] = 110290, + [SMALL_STATE(4267)] = 110352, + [SMALL_STATE(4268)] = 110414, + [SMALL_STATE(4269)] = 110476, + [SMALL_STATE(4270)] = 110538, + [SMALL_STATE(4271)] = 110600, + [SMALL_STATE(4272)] = 110662, + [SMALL_STATE(4273)] = 110724, + [SMALL_STATE(4274)] = 110786, + [SMALL_STATE(4275)] = 110848, + [SMALL_STATE(4276)] = 110910, + [SMALL_STATE(4277)] = 110972, + [SMALL_STATE(4278)] = 111034, + [SMALL_STATE(4279)] = 111096, + [SMALL_STATE(4280)] = 111158, + [SMALL_STATE(4281)] = 111220, + [SMALL_STATE(4282)] = 111282, + [SMALL_STATE(4283)] = 111344, + [SMALL_STATE(4284)] = 111406, + [SMALL_STATE(4285)] = 111468, + [SMALL_STATE(4286)] = 111530, + [SMALL_STATE(4287)] = 111592, + [SMALL_STATE(4288)] = 111654, + [SMALL_STATE(4289)] = 111716, + [SMALL_STATE(4290)] = 111778, + [SMALL_STATE(4291)] = 111840, + [SMALL_STATE(4292)] = 111902, + [SMALL_STATE(4293)] = 111964, + [SMALL_STATE(4294)] = 112026, + [SMALL_STATE(4295)] = 112088, + [SMALL_STATE(4296)] = 112150, + [SMALL_STATE(4297)] = 112212, + [SMALL_STATE(4298)] = 112274, + [SMALL_STATE(4299)] = 112336, + [SMALL_STATE(4300)] = 112398, + [SMALL_STATE(4301)] = 112460, + [SMALL_STATE(4302)] = 112522, + [SMALL_STATE(4303)] = 112584, + [SMALL_STATE(4304)] = 112646, + [SMALL_STATE(4305)] = 112708, + [SMALL_STATE(4306)] = 112770, + [SMALL_STATE(4307)] = 112832, + [SMALL_STATE(4308)] = 112894, + [SMALL_STATE(4309)] = 112956, + [SMALL_STATE(4310)] = 113018, + [SMALL_STATE(4311)] = 113080, + [SMALL_STATE(4312)] = 113142, + [SMALL_STATE(4313)] = 113204, + [SMALL_STATE(4314)] = 113266, + [SMALL_STATE(4315)] = 113328, + [SMALL_STATE(4316)] = 113390, + [SMALL_STATE(4317)] = 113452, + [SMALL_STATE(4318)] = 113514, + [SMALL_STATE(4319)] = 113576, + [SMALL_STATE(4320)] = 113638, + [SMALL_STATE(4321)] = 113700, + [SMALL_STATE(4322)] = 113762, + [SMALL_STATE(4323)] = 113824, + [SMALL_STATE(4324)] = 113886, + [SMALL_STATE(4325)] = 113948, + [SMALL_STATE(4326)] = 114010, + [SMALL_STATE(4327)] = 114072, + [SMALL_STATE(4328)] = 114134, + [SMALL_STATE(4329)] = 114170, + [SMALL_STATE(4330)] = 114232, + [SMALL_STATE(4331)] = 114268, + [SMALL_STATE(4332)] = 114330, + [SMALL_STATE(4333)] = 114392, + [SMALL_STATE(4334)] = 114428, + [SMALL_STATE(4335)] = 114464, + [SMALL_STATE(4336)] = 114526, + [SMALL_STATE(4337)] = 114588, + [SMALL_STATE(4338)] = 114650, + [SMALL_STATE(4339)] = 114712, + [SMALL_STATE(4340)] = 114774, + [SMALL_STATE(4341)] = 114836, + [SMALL_STATE(4342)] = 114898, + [SMALL_STATE(4343)] = 114957, + [SMALL_STATE(4344)] = 115016, + [SMALL_STATE(4345)] = 115075, + [SMALL_STATE(4346)] = 115134, + [SMALL_STATE(4347)] = 115193, + [SMALL_STATE(4348)] = 115252, + [SMALL_STATE(4349)] = 115311, + [SMALL_STATE(4350)] = 115370, + [SMALL_STATE(4351)] = 115429, + [SMALL_STATE(4352)] = 115488, + [SMALL_STATE(4353)] = 115523, + [SMALL_STATE(4354)] = 115582, + [SMALL_STATE(4355)] = 115641, + [SMALL_STATE(4356)] = 115700, + [SMALL_STATE(4357)] = 115759, + [SMALL_STATE(4358)] = 115818, + [SMALL_STATE(4359)] = 115877, + [SMALL_STATE(4360)] = 115936, + [SMALL_STATE(4361)] = 115995, + [SMALL_STATE(4362)] = 116054, + [SMALL_STATE(4363)] = 116113, + [SMALL_STATE(4364)] = 116172, + [SMALL_STATE(4365)] = 116231, + [SMALL_STATE(4366)] = 116290, + [SMALL_STATE(4367)] = 116349, + [SMALL_STATE(4368)] = 116408, + [SMALL_STATE(4369)] = 116467, + [SMALL_STATE(4370)] = 116526, + [SMALL_STATE(4371)] = 116585, + [SMALL_STATE(4372)] = 116644, + [SMALL_STATE(4373)] = 116703, + [SMALL_STATE(4374)] = 116762, + [SMALL_STATE(4375)] = 116821, + [SMALL_STATE(4376)] = 116880, + [SMALL_STATE(4377)] = 116939, + [SMALL_STATE(4378)] = 116998, + [SMALL_STATE(4379)] = 117057, + [SMALL_STATE(4380)] = 117116, + [SMALL_STATE(4381)] = 117175, + [SMALL_STATE(4382)] = 117234, + [SMALL_STATE(4383)] = 117293, + [SMALL_STATE(4384)] = 117352, + [SMALL_STATE(4385)] = 117411, + [SMALL_STATE(4386)] = 117470, + [SMALL_STATE(4387)] = 117529, + [SMALL_STATE(4388)] = 117588, + [SMALL_STATE(4389)] = 117647, + [SMALL_STATE(4390)] = 117706, + [SMALL_STATE(4391)] = 117765, + [SMALL_STATE(4392)] = 117824, + [SMALL_STATE(4393)] = 117883, + [SMALL_STATE(4394)] = 117942, + [SMALL_STATE(4395)] = 118001, + [SMALL_STATE(4396)] = 118060, + [SMALL_STATE(4397)] = 118119, + [SMALL_STATE(4398)] = 118178, + [SMALL_STATE(4399)] = 118237, + [SMALL_STATE(4400)] = 118296, + [SMALL_STATE(4401)] = 118355, + [SMALL_STATE(4402)] = 118414, + [SMALL_STATE(4403)] = 118473, + [SMALL_STATE(4404)] = 118532, + [SMALL_STATE(4405)] = 118591, + [SMALL_STATE(4406)] = 118650, + [SMALL_STATE(4407)] = 118709, + [SMALL_STATE(4408)] = 118768, + [SMALL_STATE(4409)] = 118827, + [SMALL_STATE(4410)] = 118886, + [SMALL_STATE(4411)] = 118921, + [SMALL_STATE(4412)] = 118980, + [SMALL_STATE(4413)] = 119039, + [SMALL_STATE(4414)] = 119098, + [SMALL_STATE(4415)] = 119157, + [SMALL_STATE(4416)] = 119216, + [SMALL_STATE(4417)] = 119275, + [SMALL_STATE(4418)] = 119334, + [SMALL_STATE(4419)] = 119393, + [SMALL_STATE(4420)] = 119452, + [SMALL_STATE(4421)] = 119511, + [SMALL_STATE(4422)] = 119570, + [SMALL_STATE(4423)] = 119629, + [SMALL_STATE(4424)] = 119688, + [SMALL_STATE(4425)] = 119747, + [SMALL_STATE(4426)] = 119806, + [SMALL_STATE(4427)] = 119865, + [SMALL_STATE(4428)] = 119924, + [SMALL_STATE(4429)] = 119983, + [SMALL_STATE(4430)] = 120042, + [SMALL_STATE(4431)] = 120101, + [SMALL_STATE(4432)] = 120160, + [SMALL_STATE(4433)] = 120219, + [SMALL_STATE(4434)] = 120278, + [SMALL_STATE(4435)] = 120337, + [SMALL_STATE(4436)] = 120396, + [SMALL_STATE(4437)] = 120455, + [SMALL_STATE(4438)] = 120514, + [SMALL_STATE(4439)] = 120573, + [SMALL_STATE(4440)] = 120632, + [SMALL_STATE(4441)] = 120691, + [SMALL_STATE(4442)] = 120750, + [SMALL_STATE(4443)] = 120809, + [SMALL_STATE(4444)] = 120868, + [SMALL_STATE(4445)] = 120927, + [SMALL_STATE(4446)] = 120986, + [SMALL_STATE(4447)] = 121045, + [SMALL_STATE(4448)] = 121104, + [SMALL_STATE(4449)] = 121163, + [SMALL_STATE(4450)] = 121222, + [SMALL_STATE(4451)] = 121281, + [SMALL_STATE(4452)] = 121340, + [SMALL_STATE(4453)] = 121399, + [SMALL_STATE(4454)] = 121458, + [SMALL_STATE(4455)] = 121517, + [SMALL_STATE(4456)] = 121576, + [SMALL_STATE(4457)] = 121635, + [SMALL_STATE(4458)] = 121694, + [SMALL_STATE(4459)] = 121753, + [SMALL_STATE(4460)] = 121812, + [SMALL_STATE(4461)] = 121871, + [SMALL_STATE(4462)] = 121930, + [SMALL_STATE(4463)] = 121989, + [SMALL_STATE(4464)] = 122048, + [SMALL_STATE(4465)] = 122107, + [SMALL_STATE(4466)] = 122166, + [SMALL_STATE(4467)] = 122225, + [SMALL_STATE(4468)] = 122284, + [SMALL_STATE(4469)] = 122343, + [SMALL_STATE(4470)] = 122402, + [SMALL_STATE(4471)] = 122461, + [SMALL_STATE(4472)] = 122520, + [SMALL_STATE(4473)] = 122579, + [SMALL_STATE(4474)] = 122638, + [SMALL_STATE(4475)] = 122697, + [SMALL_STATE(4476)] = 122756, + [SMALL_STATE(4477)] = 122815, + [SMALL_STATE(4478)] = 122874, + [SMALL_STATE(4479)] = 122933, + [SMALL_STATE(4480)] = 122992, + [SMALL_STATE(4481)] = 123051, + [SMALL_STATE(4482)] = 123110, + [SMALL_STATE(4483)] = 123169, + [SMALL_STATE(4484)] = 123228, + [SMALL_STATE(4485)] = 123265, + [SMALL_STATE(4486)] = 123324, + [SMALL_STATE(4487)] = 123383, + [SMALL_STATE(4488)] = 123442, + [SMALL_STATE(4489)] = 123477, + [SMALL_STATE(4490)] = 123536, + [SMALL_STATE(4491)] = 123595, + [SMALL_STATE(4492)] = 123654, + [SMALL_STATE(4493)] = 123713, + [SMALL_STATE(4494)] = 123772, + [SMALL_STATE(4495)] = 123831, + [SMALL_STATE(4496)] = 123890, + [SMALL_STATE(4497)] = 123949, + [SMALL_STATE(4498)] = 124008, + [SMALL_STATE(4499)] = 124067, + [SMALL_STATE(4500)] = 124126, + [SMALL_STATE(4501)] = 124185, + [SMALL_STATE(4502)] = 124244, + [SMALL_STATE(4503)] = 124303, + [SMALL_STATE(4504)] = 124362, + [SMALL_STATE(4505)] = 124421, + [SMALL_STATE(4506)] = 124480, + [SMALL_STATE(4507)] = 124539, + [SMALL_STATE(4508)] = 124598, + [SMALL_STATE(4509)] = 124657, + [SMALL_STATE(4510)] = 124716, + [SMALL_STATE(4511)] = 124775, + [SMALL_STATE(4512)] = 124834, + [SMALL_STATE(4513)] = 124893, + [SMALL_STATE(4514)] = 124952, + [SMALL_STATE(4515)] = 125011, + [SMALL_STATE(4516)] = 125070, + [SMALL_STATE(4517)] = 125129, + [SMALL_STATE(4518)] = 125188, + [SMALL_STATE(4519)] = 125247, + [SMALL_STATE(4520)] = 125306, + [SMALL_STATE(4521)] = 125365, + [SMALL_STATE(4522)] = 125424, + [SMALL_STATE(4523)] = 125483, + [SMALL_STATE(4524)] = 125542, + [SMALL_STATE(4525)] = 125601, + [SMALL_STATE(4526)] = 125660, + [SMALL_STATE(4527)] = 125719, + [SMALL_STATE(4528)] = 125778, + [SMALL_STATE(4529)] = 125837, + [SMALL_STATE(4530)] = 125896, + [SMALL_STATE(4531)] = 125955, + [SMALL_STATE(4532)] = 126014, + [SMALL_STATE(4533)] = 126073, + [SMALL_STATE(4534)] = 126132, + [SMALL_STATE(4535)] = 126191, + [SMALL_STATE(4536)] = 126250, + [SMALL_STATE(4537)] = 126309, + [SMALL_STATE(4538)] = 126368, + [SMALL_STATE(4539)] = 126427, + [SMALL_STATE(4540)] = 126486, + [SMALL_STATE(4541)] = 126545, + [SMALL_STATE(4542)] = 126604, + [SMALL_STATE(4543)] = 126663, + [SMALL_STATE(4544)] = 126722, + [SMALL_STATE(4545)] = 126781, + [SMALL_STATE(4546)] = 126840, + [SMALL_STATE(4547)] = 126899, + [SMALL_STATE(4548)] = 126958, + [SMALL_STATE(4549)] = 127017, + [SMALL_STATE(4550)] = 127076, + [SMALL_STATE(4551)] = 127135, + [SMALL_STATE(4552)] = 127194, + [SMALL_STATE(4553)] = 127253, + [SMALL_STATE(4554)] = 127312, + [SMALL_STATE(4555)] = 127371, + [SMALL_STATE(4556)] = 127430, + [SMALL_STATE(4557)] = 127489, + [SMALL_STATE(4558)] = 127548, + [SMALL_STATE(4559)] = 127607, + [SMALL_STATE(4560)] = 127666, + [SMALL_STATE(4561)] = 127725, + [SMALL_STATE(4562)] = 127784, + [SMALL_STATE(4563)] = 127843, + [SMALL_STATE(4564)] = 127902, + [SMALL_STATE(4565)] = 127961, + [SMALL_STATE(4566)] = 128020, + [SMALL_STATE(4567)] = 128079, + [SMALL_STATE(4568)] = 128138, + [SMALL_STATE(4569)] = 128197, + [SMALL_STATE(4570)] = 128256, + [SMALL_STATE(4571)] = 128315, + [SMALL_STATE(4572)] = 128374, + [SMALL_STATE(4573)] = 128433, + [SMALL_STATE(4574)] = 128492, + [SMALL_STATE(4575)] = 128551, + [SMALL_STATE(4576)] = 128610, + [SMALL_STATE(4577)] = 128669, + [SMALL_STATE(4578)] = 128728, + [SMALL_STATE(4579)] = 128787, + [SMALL_STATE(4580)] = 128846, + [SMALL_STATE(4581)] = 128905, + [SMALL_STATE(4582)] = 128964, + [SMALL_STATE(4583)] = 129023, + [SMALL_STATE(4584)] = 129082, + [SMALL_STATE(4585)] = 129141, + [SMALL_STATE(4586)] = 129200, + [SMALL_STATE(4587)] = 129259, + [SMALL_STATE(4588)] = 129318, + [SMALL_STATE(4589)] = 129377, + [SMALL_STATE(4590)] = 129436, + [SMALL_STATE(4591)] = 129495, + [SMALL_STATE(4592)] = 129554, + [SMALL_STATE(4593)] = 129613, + [SMALL_STATE(4594)] = 129672, + [SMALL_STATE(4595)] = 129731, + [SMALL_STATE(4596)] = 129790, + [SMALL_STATE(4597)] = 129849, + [SMALL_STATE(4598)] = 129908, + [SMALL_STATE(4599)] = 129967, + [SMALL_STATE(4600)] = 130026, + [SMALL_STATE(4601)] = 130085, + [SMALL_STATE(4602)] = 130144, + [SMALL_STATE(4603)] = 130203, + [SMALL_STATE(4604)] = 130262, + [SMALL_STATE(4605)] = 130321, + [SMALL_STATE(4606)] = 130380, + [SMALL_STATE(4607)] = 130439, + [SMALL_STATE(4608)] = 130498, + [SMALL_STATE(4609)] = 130557, + [SMALL_STATE(4610)] = 130616, + [SMALL_STATE(4611)] = 130651, + [SMALL_STATE(4612)] = 130710, + [SMALL_STATE(4613)] = 130769, + [SMALL_STATE(4614)] = 130828, + [SMALL_STATE(4615)] = 130887, + [SMALL_STATE(4616)] = 130946, + [SMALL_STATE(4617)] = 131005, + [SMALL_STATE(4618)] = 131064, + [SMALL_STATE(4619)] = 131123, + [SMALL_STATE(4620)] = 131182, + [SMALL_STATE(4621)] = 131241, + [SMALL_STATE(4622)] = 131300, + [SMALL_STATE(4623)] = 131359, + [SMALL_STATE(4624)] = 131418, + [SMALL_STATE(4625)] = 131477, + [SMALL_STATE(4626)] = 131536, + [SMALL_STATE(4627)] = 131595, + [SMALL_STATE(4628)] = 131654, + [SMALL_STATE(4629)] = 131713, + [SMALL_STATE(4630)] = 131772, + [SMALL_STATE(4631)] = 131831, + [SMALL_STATE(4632)] = 131890, + [SMALL_STATE(4633)] = 131949, + [SMALL_STATE(4634)] = 132008, + [SMALL_STATE(4635)] = 132067, + [SMALL_STATE(4636)] = 132126, + [SMALL_STATE(4637)] = 132185, + [SMALL_STATE(4638)] = 132244, + [SMALL_STATE(4639)] = 132303, + [SMALL_STATE(4640)] = 132362, + [SMALL_STATE(4641)] = 132421, + [SMALL_STATE(4642)] = 132480, + [SMALL_STATE(4643)] = 132539, + [SMALL_STATE(4644)] = 132598, + [SMALL_STATE(4645)] = 132657, + [SMALL_STATE(4646)] = 132734, + [SMALL_STATE(4647)] = 132793, + [SMALL_STATE(4648)] = 132852, + [SMALL_STATE(4649)] = 132911, + [SMALL_STATE(4650)] = 132970, + [SMALL_STATE(4651)] = 133029, + [SMALL_STATE(4652)] = 133088, + [SMALL_STATE(4653)] = 133147, + [SMALL_STATE(4654)] = 133206, + [SMALL_STATE(4655)] = 133265, + [SMALL_STATE(4656)] = 133324, + [SMALL_STATE(4657)] = 133383, + [SMALL_STATE(4658)] = 133442, + [SMALL_STATE(4659)] = 133501, + [SMALL_STATE(4660)] = 133560, + [SMALL_STATE(4661)] = 133619, + [SMALL_STATE(4662)] = 133678, + [SMALL_STATE(4663)] = 133752, + [SMALL_STATE(4664)] = 133786, + [SMALL_STATE(4665)] = 133820, + [SMALL_STATE(4666)] = 133854, + [SMALL_STATE(4667)] = 133898, + [SMALL_STATE(4668)] = 133932, + [SMALL_STATE(4669)] = 133970, + [SMALL_STATE(4670)] = 134035, + [SMALL_STATE(4671)] = 134100, + [SMALL_STATE(4672)] = 134148, + [SMALL_STATE(4673)] = 134196, + [SMALL_STATE(4674)] = 134264, + [SMALL_STATE(4675)] = 134325, + [SMALL_STATE(4676)] = 134386, + [SMALL_STATE(4677)] = 134432, + [SMALL_STATE(4678)] = 134478, + [SMALL_STATE(4679)] = 134524, + [SMALL_STATE(4680)] = 134570, + [SMALL_STATE(4681)] = 134616, + [SMALL_STATE(4682)] = 134662, + [SMALL_STATE(4683)] = 134708, + [SMALL_STATE(4684)] = 134754, + [SMALL_STATE(4685)] = 134800, + [SMALL_STATE(4686)] = 134846, + [SMALL_STATE(4687)] = 134892, + [SMALL_STATE(4688)] = 134938, + [SMALL_STATE(4689)] = 134984, + [SMALL_STATE(4690)] = 135030, + [SMALL_STATE(4691)] = 135076, + [SMALL_STATE(4692)] = 135122, + [SMALL_STATE(4693)] = 135168, + [SMALL_STATE(4694)] = 135214, + [SMALL_STATE(4695)] = 135260, + [SMALL_STATE(4696)] = 135306, + [SMALL_STATE(4697)] = 135352, + [SMALL_STATE(4698)] = 135398, + [SMALL_STATE(4699)] = 135444, + [SMALL_STATE(4700)] = 135490, + [SMALL_STATE(4701)] = 135536, + [SMALL_STATE(4702)] = 135582, + [SMALL_STATE(4703)] = 135628, + [SMALL_STATE(4704)] = 135674, + [SMALL_STATE(4705)] = 135720, + [SMALL_STATE(4706)] = 135766, + [SMALL_STATE(4707)] = 135812, + [SMALL_STATE(4708)] = 135858, + [SMALL_STATE(4709)] = 135904, + [SMALL_STATE(4710)] = 135950, + [SMALL_STATE(4711)] = 135994, + [SMALL_STATE(4712)] = 136040, + [SMALL_STATE(4713)] = 136084, + [SMALL_STATE(4714)] = 136130, + [SMALL_STATE(4715)] = 136176, + [SMALL_STATE(4716)] = 136222, + [SMALL_STATE(4717)] = 136268, + [SMALL_STATE(4718)] = 136314, + [SMALL_STATE(4719)] = 136360, + [SMALL_STATE(4720)] = 136406, + [SMALL_STATE(4721)] = 136452, + [SMALL_STATE(4722)] = 136498, + [SMALL_STATE(4723)] = 136544, + [SMALL_STATE(4724)] = 136590, + [SMALL_STATE(4725)] = 136636, + [SMALL_STATE(4726)] = 136682, + [SMALL_STATE(4727)] = 136728, + [SMALL_STATE(4728)] = 136774, + [SMALL_STATE(4729)] = 136820, + [SMALL_STATE(4730)] = 136866, + [SMALL_STATE(4731)] = 136912, + [SMALL_STATE(4732)] = 136958, + [SMALL_STATE(4733)] = 137004, + [SMALL_STATE(4734)] = 137050, + [SMALL_STATE(4735)] = 137096, + [SMALL_STATE(4736)] = 137140, + [SMALL_STATE(4737)] = 137186, + [SMALL_STATE(4738)] = 137232, + [SMALL_STATE(4739)] = 137278, + [SMALL_STATE(4740)] = 137324, + [SMALL_STATE(4741)] = 137370, + [SMALL_STATE(4742)] = 137399, + [SMALL_STATE(4743)] = 137444, + [SMALL_STATE(4744)] = 137473, + [SMALL_STATE(4745)] = 137528, + [SMALL_STATE(4746)] = 137573, + [SMALL_STATE(4747)] = 137628, + [SMALL_STATE(4748)] = 137671, + [SMALL_STATE(4749)] = 137714, + [SMALL_STATE(4750)] = 137762, + [SMALL_STATE(4751)] = 137810, + [SMALL_STATE(4752)] = 137862, + [SMALL_STATE(4753)] = 137914, + [SMALL_STATE(4754)] = 137966, + [SMALL_STATE(4755)] = 138014, + [SMALL_STATE(4756)] = 138056, + [SMALL_STATE(4757)] = 138104, + [SMALL_STATE(4758)] = 138146, + [SMALL_STATE(4759)] = 138198, + [SMALL_STATE(4760)] = 138246, + [SMALL_STATE(4761)] = 138288, + [SMALL_STATE(4762)] = 138337, + [SMALL_STATE(4763)] = 138380, + [SMALL_STATE(4764)] = 138423, + [SMALL_STATE(4765)] = 138466, + [SMALL_STATE(4766)] = 138493, + [SMALL_STATE(4767)] = 138536, + [SMALL_STATE(4768)] = 138579, + [SMALL_STATE(4769)] = 138628, + [SMALL_STATE(4770)] = 138669, + [SMALL_STATE(4771)] = 138712, + [SMALL_STATE(4772)] = 138765, + [SMALL_STATE(4773)] = 138814, + [SMALL_STATE(4774)] = 138857, + [SMALL_STATE(4775)] = 138900, + [SMALL_STATE(4776)] = 138943, + [SMALL_STATE(4777)] = 138992, + [SMALL_STATE(4778)] = 139035, + [SMALL_STATE(4779)] = 139062, + [SMALL_STATE(4780)] = 139105, + [SMALL_STATE(4781)] = 139148, + [SMALL_STATE(4782)] = 139191, + [SMALL_STATE(4783)] = 139234, + [SMALL_STATE(4784)] = 139277, + [SMALL_STATE(4785)] = 139326, + [SMALL_STATE(4786)] = 139375, + [SMALL_STATE(4787)] = 139424, + [SMALL_STATE(4788)] = 139467, + [SMALL_STATE(4789)] = 139510, + [SMALL_STATE(4790)] = 139553, + [SMALL_STATE(4791)] = 139596, + [SMALL_STATE(4792)] = 139623, + [SMALL_STATE(4793)] = 139666, + [SMALL_STATE(4794)] = 139709, + [SMALL_STATE(4795)] = 139752, + [SMALL_STATE(4796)] = 139795, + [SMALL_STATE(4797)] = 139844, + [SMALL_STATE(4798)] = 139887, + [SMALL_STATE(4799)] = 139914, + [SMALL_STATE(4800)] = 139957, + [SMALL_STATE(4801)] = 140006, + [SMALL_STATE(4802)] = 140049, + [SMALL_STATE(4803)] = 140092, + [SMALL_STATE(4804)] = 140135, + [SMALL_STATE(4805)] = 140178, + [SMALL_STATE(4806)] = 140221, + [SMALL_STATE(4807)] = 140270, + [SMALL_STATE(4808)] = 140313, + [SMALL_STATE(4809)] = 140362, + [SMALL_STATE(4810)] = 140405, + [SMALL_STATE(4811)] = 140454, + [SMALL_STATE(4812)] = 140503, + [SMALL_STATE(4813)] = 140552, + [SMALL_STATE(4814)] = 140601, + [SMALL_STATE(4815)] = 140644, + [SMALL_STATE(4816)] = 140687, + [SMALL_STATE(4817)] = 140730, + [SMALL_STATE(4818)] = 140773, + [SMALL_STATE(4819)] = 140800, + [SMALL_STATE(4820)] = 140843, + [SMALL_STATE(4821)] = 140892, + [SMALL_STATE(4822)] = 140941, + [SMALL_STATE(4823)] = 140968, + [SMALL_STATE(4824)] = 141017, + [SMALL_STATE(4825)] = 141060, + [SMALL_STATE(4826)] = 141103, + [SMALL_STATE(4827)] = 141146, + [SMALL_STATE(4828)] = 141195, + [SMALL_STATE(4829)] = 141238, + [SMALL_STATE(4830)] = 141287, + [SMALL_STATE(4831)] = 141330, + [SMALL_STATE(4832)] = 141373, + [SMALL_STATE(4833)] = 141422, + [SMALL_STATE(4834)] = 141465, + [SMALL_STATE(4835)] = 141508, + [SMALL_STATE(4836)] = 141538, + [SMALL_STATE(4837)] = 141568, + [SMALL_STATE(4838)] = 141600, + [SMALL_STATE(4839)] = 141630, + [SMALL_STATE(4840)] = 141662, + [SMALL_STATE(4841)] = 141696, + [SMALL_STATE(4842)] = 141720, + [SMALL_STATE(4843)] = 141754, + [SMALL_STATE(4844)] = 141786, + [SMALL_STATE(4845)] = 141826, + [SMALL_STATE(4846)] = 141864, + [SMALL_STATE(4847)] = 141898, + [SMALL_STATE(4848)] = 141930, + [SMALL_STATE(4849)] = 141962, + [SMALL_STATE(4850)] = 142002, + [SMALL_STATE(4851)] = 142036, + [SMALL_STATE(4852)] = 142070, + [SMALL_STATE(4853)] = 142100, + [SMALL_STATE(4854)] = 142132, + [SMALL_STATE(4855)] = 142162, + [SMALL_STATE(4856)] = 142186, + [SMALL_STATE(4857)] = 142210, + [SMALL_STATE(4858)] = 142240, + [SMALL_STATE(4859)] = 142270, + [SMALL_STATE(4860)] = 142304, + [SMALL_STATE(4861)] = 142333, + [SMALL_STATE(4862)] = 142356, + [SMALL_STATE(4863)] = 142401, + [SMALL_STATE(4864)] = 142446, + [SMALL_STATE(4865)] = 142483, + [SMALL_STATE(4866)] = 142506, + [SMALL_STATE(4867)] = 142535, + [SMALL_STATE(4868)] = 142558, + [SMALL_STATE(4869)] = 142603, + [SMALL_STATE(4870)] = 142626, + [SMALL_STATE(4871)] = 142671, + [SMALL_STATE(4872)] = 142716, + [SMALL_STATE(4873)] = 142743, + [SMALL_STATE(4874)] = 142768, + [SMALL_STATE(4875)] = 142813, + [SMALL_STATE(4876)] = 142840, + [SMALL_STATE(4877)] = 142885, + [SMALL_STATE(4878)] = 142908, + [SMALL_STATE(4879)] = 142937, + [SMALL_STATE(4880)] = 142976, + [SMALL_STATE(4881)] = 143005, + [SMALL_STATE(4882)] = 143050, + [SMALL_STATE(4883)] = 143089, + [SMALL_STATE(4884)] = 143134, + [SMALL_STATE(4885)] = 143179, + [SMALL_STATE(4886)] = 143224, + [SMALL_STATE(4887)] = 143249, + [SMALL_STATE(4888)] = 143288, + [SMALL_STATE(4889)] = 143317, + [SMALL_STATE(4890)] = 143362, + [SMALL_STATE(4891)] = 143391, + [SMALL_STATE(4892)] = 143414, + [SMALL_STATE(4893)] = 143451, + [SMALL_STATE(4894)] = 143493, + [SMALL_STATE(4895)] = 143535, + [SMALL_STATE(4896)] = 143557, + [SMALL_STATE(4897)] = 143599, + [SMALL_STATE(4898)] = 143641, + [SMALL_STATE(4899)] = 143683, + [SMALL_STATE(4900)] = 143705, + [SMALL_STATE(4901)] = 143729, + [SMALL_STATE(4902)] = 143761, + [SMALL_STATE(4903)] = 143785, + [SMALL_STATE(4904)] = 143827, + [SMALL_STATE(4905)] = 143851, + [SMALL_STATE(4906)] = 143893, + [SMALL_STATE(4907)] = 143921, + [SMALL_STATE(4908)] = 143947, + [SMALL_STATE(4909)] = 143975, + [SMALL_STATE(4910)] = 144017, + [SMALL_STATE(4911)] = 144047, + [SMALL_STATE(4912)] = 144089, + [SMALL_STATE(4913)] = 144127, + [SMALL_STATE(4914)] = 144169, + [SMALL_STATE(4915)] = 144211, + [SMALL_STATE(4916)] = 144249, + [SMALL_STATE(4917)] = 144287, + [SMALL_STATE(4918)] = 144329, + [SMALL_STATE(4919)] = 144371, + [SMALL_STATE(4920)] = 144395, + [SMALL_STATE(4921)] = 144437, + [SMALL_STATE(4922)] = 144479, + [SMALL_STATE(4923)] = 144507, + [SMALL_STATE(4924)] = 144549, + [SMALL_STATE(4925)] = 144591, + [SMALL_STATE(4926)] = 144633, + [SMALL_STATE(4927)] = 144675, + [SMALL_STATE(4928)] = 144717, + [SMALL_STATE(4929)] = 144759, + [SMALL_STATE(4930)] = 144783, + [SMALL_STATE(4931)] = 144811, + [SMALL_STATE(4932)] = 144853, + [SMALL_STATE(4933)] = 144895, + [SMALL_STATE(4934)] = 144919, + [SMALL_STATE(4935)] = 144943, + [SMALL_STATE(4936)] = 144985, + [SMALL_STATE(4937)] = 145027, + [SMALL_STATE(4938)] = 145055, + [SMALL_STATE(4939)] = 145097, + [SMALL_STATE(4940)] = 145135, + [SMALL_STATE(4941)] = 145173, + [SMALL_STATE(4942)] = 145215, + [SMALL_STATE(4943)] = 145243, + [SMALL_STATE(4944)] = 145285, + [SMALL_STATE(4945)] = 145313, + [SMALL_STATE(4946)] = 145355, + [SMALL_STATE(4947)] = 145383, + [SMALL_STATE(4948)] = 145413, + [SMALL_STATE(4949)] = 145437, + [SMALL_STATE(4950)] = 145479, + [SMALL_STATE(4951)] = 145521, + [SMALL_STATE(4952)] = 145545, + [SMALL_STATE(4953)] = 145587, + [SMALL_STATE(4954)] = 145615, + [SMALL_STATE(4955)] = 145637, + [SMALL_STATE(4956)] = 145665, + [SMALL_STATE(4957)] = 145687, + [SMALL_STATE(4958)] = 145709, + [SMALL_STATE(4959)] = 145751, + [SMALL_STATE(4960)] = 145793, + [SMALL_STATE(4961)] = 145819, + [SMALL_STATE(4962)] = 145843, + [SMALL_STATE(4963)] = 145871, + [SMALL_STATE(4964)] = 145899, + [SMALL_STATE(4965)] = 145941, + [SMALL_STATE(4966)] = 145979, + [SMALL_STATE(4967)] = 146021, + [SMALL_STATE(4968)] = 146063, + [SMALL_STATE(4969)] = 146105, + [SMALL_STATE(4970)] = 146137, + [SMALL_STATE(4971)] = 146159, + [SMALL_STATE(4972)] = 146183, + [SMALL_STATE(4973)] = 146207, + [SMALL_STATE(4974)] = 146231, + [SMALL_STATE(4975)] = 146259, + [SMALL_STATE(4976)] = 146287, + [SMALL_STATE(4977)] = 146311, + [SMALL_STATE(4978)] = 146337, + [SMALL_STATE(4979)] = 146365, + [SMALL_STATE(4980)] = 146393, + [SMALL_STATE(4981)] = 146435, + [SMALL_STATE(4982)] = 146477, + [SMALL_STATE(4983)] = 146519, + [SMALL_STATE(4984)] = 146561, + [SMALL_STATE(4985)] = 146603, + [SMALL_STATE(4986)] = 146631, + [SMALL_STATE(4987)] = 146653, + [SMALL_STATE(4988)] = 146675, + [SMALL_STATE(4989)] = 146697, + [SMALL_STATE(4990)] = 146724, + [SMALL_STATE(4991)] = 146749, + [SMALL_STATE(4992)] = 146770, + [SMALL_STATE(4993)] = 146809, + [SMALL_STATE(4994)] = 146830, + [SMALL_STATE(4995)] = 146851, + [SMALL_STATE(4996)] = 146878, + [SMALL_STATE(4997)] = 146907, + [SMALL_STATE(4998)] = 146928, + [SMALL_STATE(4999)] = 146953, + [SMALL_STATE(5000)] = 146986, + [SMALL_STATE(5001)] = 147013, + [SMALL_STATE(5002)] = 147040, + [SMALL_STATE(5003)] = 147069, + [SMALL_STATE(5004)] = 147102, + [SMALL_STATE(5005)] = 147139, + [SMALL_STATE(5006)] = 147166, + [SMALL_STATE(5007)] = 147193, + [SMALL_STATE(5008)] = 147214, + [SMALL_STATE(5009)] = 147241, + [SMALL_STATE(5010)] = 147266, + [SMALL_STATE(5011)] = 147293, + [SMALL_STATE(5012)] = 147318, + [SMALL_STATE(5013)] = 147339, + [SMALL_STATE(5014)] = 147380, + [SMALL_STATE(5015)] = 147415, + [SMALL_STATE(5016)] = 147456, + [SMALL_STATE(5017)] = 147497, + [SMALL_STATE(5018)] = 147532, + [SMALL_STATE(5019)] = 147561, + [SMALL_STATE(5020)] = 147588, + [SMALL_STATE(5021)] = 147619, + [SMALL_STATE(5022)] = 147646, + [SMALL_STATE(5023)] = 147667, + [SMALL_STATE(5024)] = 147700, + [SMALL_STATE(5025)] = 147729, + [SMALL_STATE(5026)] = 147750, + [SMALL_STATE(5027)] = 147771, + [SMALL_STATE(5028)] = 147812, + [SMALL_STATE(5029)] = 147841, + [SMALL_STATE(5030)] = 147864, + [SMALL_STATE(5031)] = 147887, + [SMALL_STATE(5032)] = 147912, + [SMALL_STATE(5033)] = 147941, + [SMALL_STATE(5034)] = 147966, + [SMALL_STATE(5035)] = 147993, + [SMALL_STATE(5036)] = 148028, + [SMALL_STATE(5037)] = 148061, + [SMALL_STATE(5038)] = 148088, + [SMALL_STATE(5039)] = 148109, + [SMALL_STATE(5040)] = 148150, + [SMALL_STATE(5041)] = 148173, + [SMALL_STATE(5042)] = 148214, + [SMALL_STATE(5043)] = 148247, + [SMALL_STATE(5044)] = 148280, + [SMALL_STATE(5045)] = 148321, + [SMALL_STATE(5046)] = 148362, + [SMALL_STATE(5047)] = 148389, + [SMALL_STATE(5048)] = 148414, + [SMALL_STATE(5049)] = 148449, + [SMALL_STATE(5050)] = 148482, + [SMALL_STATE(5051)] = 148505, + [SMALL_STATE(5052)] = 148546, + [SMALL_STATE(5053)] = 148567, + [SMALL_STATE(5054)] = 148594, + [SMALL_STATE(5055)] = 148615, + [SMALL_STATE(5056)] = 148648, + [SMALL_STATE(5057)] = 148675, + [SMALL_STATE(5058)] = 148712, + [SMALL_STATE(5059)] = 148753, + [SMALL_STATE(5060)] = 148788, + [SMALL_STATE(5061)] = 148809, + [SMALL_STATE(5062)] = 148830, + [SMALL_STATE(5063)] = 148871, + [SMALL_STATE(5064)] = 148912, + [SMALL_STATE(5065)] = 148933, + [SMALL_STATE(5066)] = 148970, + [SMALL_STATE(5067)] = 149007, + [SMALL_STATE(5068)] = 149028, + [SMALL_STATE(5069)] = 149059, + [SMALL_STATE(5070)] = 149086, + [SMALL_STATE(5071)] = 149119, + [SMALL_STATE(5072)] = 149156, + [SMALL_STATE(5073)] = 149181, + [SMALL_STATE(5074)] = 149202, + [SMALL_STATE(5075)] = 149243, + [SMALL_STATE(5076)] = 149276, + [SMALL_STATE(5077)] = 149317, + [SMALL_STATE(5078)] = 149342, + [SMALL_STATE(5079)] = 149375, + [SMALL_STATE(5080)] = 149412, + [SMALL_STATE(5081)] = 149433, + [SMALL_STATE(5082)] = 149466, + [SMALL_STATE(5083)] = 149507, + [SMALL_STATE(5084)] = 149528, + [SMALL_STATE(5085)] = 149569, + [SMALL_STATE(5086)] = 149590, + [SMALL_STATE(5087)] = 149617, + [SMALL_STATE(5088)] = 149658, + [SMALL_STATE(5089)] = 149693, + [SMALL_STATE(5090)] = 149713, + [SMALL_STATE(5091)] = 149739, + [SMALL_STATE(5092)] = 149759, + [SMALL_STATE(5093)] = 149783, + [SMALL_STATE(5094)] = 149821, + [SMALL_STATE(5095)] = 149859, + [SMALL_STATE(5096)] = 149879, + [SMALL_STATE(5097)] = 149917, + [SMALL_STATE(5098)] = 149941, + [SMALL_STATE(5099)] = 149961, + [SMALL_STATE(5100)] = 149981, + [SMALL_STATE(5101)] = 150001, + [SMALL_STATE(5102)] = 150025, + [SMALL_STATE(5103)] = 150063, + [SMALL_STATE(5104)] = 150085, + [SMALL_STATE(5105)] = 150113, + [SMALL_STATE(5106)] = 150139, + [SMALL_STATE(5107)] = 150165, + [SMALL_STATE(5108)] = 150187, + [SMALL_STATE(5109)] = 150223, + [SMALL_STATE(5110)] = 150261, + [SMALL_STATE(5111)] = 150299, + [SMALL_STATE(5112)] = 150325, + [SMALL_STATE(5113)] = 150345, + [SMALL_STATE(5114)] = 150369, + [SMALL_STATE(5115)] = 150389, + [SMALL_STATE(5116)] = 150427, + [SMALL_STATE(5117)] = 150453, + [SMALL_STATE(5118)] = 150477, + [SMALL_STATE(5119)] = 150503, + [SMALL_STATE(5120)] = 150529, + [SMALL_STATE(5121)] = 150549, + [SMALL_STATE(5122)] = 150569, + [SMALL_STATE(5123)] = 150589, + [SMALL_STATE(5124)] = 150615, + [SMALL_STATE(5125)] = 150653, + [SMALL_STATE(5126)] = 150673, + [SMALL_STATE(5127)] = 150693, + [SMALL_STATE(5128)] = 150713, + [SMALL_STATE(5129)] = 150733, + [SMALL_STATE(5130)] = 150759, + [SMALL_STATE(5131)] = 150783, + [SMALL_STATE(5132)] = 150809, + [SMALL_STATE(5133)] = 150835, + [SMALL_STATE(5134)] = 150859, + [SMALL_STATE(5135)] = 150879, + [SMALL_STATE(5136)] = 150905, + [SMALL_STATE(5137)] = 150925, + [SMALL_STATE(5138)] = 150963, + [SMALL_STATE(5139)] = 150983, + [SMALL_STATE(5140)] = 151019, + [SMALL_STATE(5141)] = 151039, + [SMALL_STATE(5142)] = 151059, + [SMALL_STATE(5143)] = 151095, + [SMALL_STATE(5144)] = 151117, + [SMALL_STATE(5145)] = 151137, + [SMALL_STATE(5146)] = 151163, + [SMALL_STATE(5147)] = 151183, + [SMALL_STATE(5148)] = 151207, + [SMALL_STATE(5149)] = 151231, + [SMALL_STATE(5150)] = 151253, + [SMALL_STATE(5151)] = 151277, + [SMALL_STATE(5152)] = 151303, + [SMALL_STATE(5153)] = 151331, + [SMALL_STATE(5154)] = 151355, + [SMALL_STATE(5155)] = 151391, + [SMALL_STATE(5156)] = 151427, + [SMALL_STATE(5157)] = 151451, + [SMALL_STATE(5158)] = 151473, + [SMALL_STATE(5159)] = 151495, + [SMALL_STATE(5160)] = 151517, + [SMALL_STATE(5161)] = 151543, + [SMALL_STATE(5162)] = 151569, + [SMALL_STATE(5163)] = 151591, + [SMALL_STATE(5164)] = 151615, + [SMALL_STATE(5165)] = 151641, + [SMALL_STATE(5166)] = 151663, + [SMALL_STATE(5167)] = 151699, + [SMALL_STATE(5168)] = 151725, + [SMALL_STATE(5169)] = 151749, + [SMALL_STATE(5170)] = 151775, + [SMALL_STATE(5171)] = 151813, + [SMALL_STATE(5172)] = 151837, + [SMALL_STATE(5173)] = 151857, + [SMALL_STATE(5174)] = 151877, + [SMALL_STATE(5175)] = 151915, + [SMALL_STATE(5176)] = 151935, + [SMALL_STATE(5177)] = 151973, + [SMALL_STATE(5178)] = 151993, + [SMALL_STATE(5179)] = 152013, + [SMALL_STATE(5180)] = 152033, + [SMALL_STATE(5181)] = 152053, + [SMALL_STATE(5182)] = 152073, + [SMALL_STATE(5183)] = 152093, + [SMALL_STATE(5184)] = 152121, + [SMALL_STATE(5185)] = 152141, + [SMALL_STATE(5186)] = 152161, + [SMALL_STATE(5187)] = 152199, + [SMALL_STATE(5188)] = 152225, + [SMALL_STATE(5189)] = 152248, + [SMALL_STATE(5190)] = 152267, + [SMALL_STATE(5191)] = 152290, + [SMALL_STATE(5192)] = 152313, + [SMALL_STATE(5193)] = 152336, + [SMALL_STATE(5194)] = 152355, + [SMALL_STATE(5195)] = 152378, + [SMALL_STATE(5196)] = 152401, + [SMALL_STATE(5197)] = 152424, + [SMALL_STATE(5198)] = 152447, + [SMALL_STATE(5199)] = 152470, + [SMALL_STATE(5200)] = 152495, + [SMALL_STATE(5201)] = 152520, + [SMALL_STATE(5202)] = 152547, + [SMALL_STATE(5203)] = 152572, + [SMALL_STATE(5204)] = 152595, + [SMALL_STATE(5205)] = 152618, + [SMALL_STATE(5206)] = 152645, + [SMALL_STATE(5207)] = 152668, + [SMALL_STATE(5208)] = 152691, + [SMALL_STATE(5209)] = 152724, + [SMALL_STATE(5210)] = 152747, + [SMALL_STATE(5211)] = 152766, + [SMALL_STATE(5212)] = 152797, + [SMALL_STATE(5213)] = 152826, + [SMALL_STATE(5214)] = 152849, + [SMALL_STATE(5215)] = 152880, + [SMALL_STATE(5216)] = 152901, + [SMALL_STATE(5217)] = 152924, + [SMALL_STATE(5218)] = 152945, + [SMALL_STATE(5219)] = 152980, + [SMALL_STATE(5220)] = 153005, + [SMALL_STATE(5221)] = 153024, + [SMALL_STATE(5222)] = 153047, + [SMALL_STATE(5223)] = 153070, + [SMALL_STATE(5224)] = 153093, + [SMALL_STATE(5225)] = 153116, + [SMALL_STATE(5226)] = 153139, + [SMALL_STATE(5227)] = 153162, + [SMALL_STATE(5228)] = 153183, + [SMALL_STATE(5229)] = 153204, + [SMALL_STATE(5230)] = 153227, + [SMALL_STATE(5231)] = 153252, + [SMALL_STATE(5232)] = 153275, + [SMALL_STATE(5233)] = 153300, + [SMALL_STATE(5234)] = 153323, + [SMALL_STATE(5235)] = 153346, + [SMALL_STATE(5236)] = 153367, + [SMALL_STATE(5237)] = 153390, + [SMALL_STATE(5238)] = 153411, + [SMALL_STATE(5239)] = 153434, + [SMALL_STATE(5240)] = 153455, + [SMALL_STATE(5241)] = 153476, + [SMALL_STATE(5242)] = 153507, + [SMALL_STATE(5243)] = 153530, + [SMALL_STATE(5244)] = 153553, + [SMALL_STATE(5245)] = 153576, + [SMALL_STATE(5246)] = 153601, + [SMALL_STATE(5247)] = 153624, + [SMALL_STATE(5248)] = 153647, + [SMALL_STATE(5249)] = 153678, + [SMALL_STATE(5250)] = 153701, + [SMALL_STATE(5251)] = 153724, + [SMALL_STATE(5252)] = 153759, + [SMALL_STATE(5253)] = 153782, + [SMALL_STATE(5254)] = 153813, + [SMALL_STATE(5255)] = 153838, + [SMALL_STATE(5256)] = 153861, + [SMALL_STATE(5257)] = 153894, + [SMALL_STATE(5258)] = 153917, + [SMALL_STATE(5259)] = 153940, + [SMALL_STATE(5260)] = 153975, + [SMALL_STATE(5261)] = 154000, + [SMALL_STATE(5262)] = 154025, + [SMALL_STATE(5263)] = 154054, + [SMALL_STATE(5264)] = 154085, + [SMALL_STATE(5265)] = 154108, + [SMALL_STATE(5266)] = 154131, + [SMALL_STATE(5267)] = 154154, + [SMALL_STATE(5268)] = 154179, + [SMALL_STATE(5269)] = 154202, + [SMALL_STATE(5270)] = 154225, + [SMALL_STATE(5271)] = 154248, + [SMALL_STATE(5272)] = 154271, + [SMALL_STATE(5273)] = 154294, + [SMALL_STATE(5274)] = 154317, + [SMALL_STATE(5275)] = 154336, + [SMALL_STATE(5276)] = 154359, + [SMALL_STATE(5277)] = 154378, + [SMALL_STATE(5278)] = 154399, + [SMALL_STATE(5279)] = 154424, + [SMALL_STATE(5280)] = 154443, + [SMALL_STATE(5281)] = 154466, + [SMALL_STATE(5282)] = 154489, + [SMALL_STATE(5283)] = 154512, + [SMALL_STATE(5284)] = 154531, + [SMALL_STATE(5285)] = 154550, + [SMALL_STATE(5286)] = 154573, + [SMALL_STATE(5287)] = 154596, + [SMALL_STATE(5288)] = 154619, + [SMALL_STATE(5289)] = 154642, + [SMALL_STATE(5290)] = 154665, + [SMALL_STATE(5291)] = 154688, + [SMALL_STATE(5292)] = 154707, + [SMALL_STATE(5293)] = 154730, + [SMALL_STATE(5294)] = 154749, + [SMALL_STATE(5295)] = 154768, + [SMALL_STATE(5296)] = 154787, + [SMALL_STATE(5297)] = 154806, + [SMALL_STATE(5298)] = 154841, + [SMALL_STATE(5299)] = 154866, + [SMALL_STATE(5300)] = 154885, + [SMALL_STATE(5301)] = 154914, + [SMALL_STATE(5302)] = 154937, + [SMALL_STATE(5303)] = 154960, + [SMALL_STATE(5304)] = 154983, + [SMALL_STATE(5305)] = 155008, + [SMALL_STATE(5306)] = 155027, + [SMALL_STATE(5307)] = 155050, + [SMALL_STATE(5308)] = 155075, + [SMALL_STATE(5309)] = 155098, + [SMALL_STATE(5310)] = 155121, + [SMALL_STATE(5311)] = 155154, + [SMALL_STATE(5312)] = 155179, + [SMALL_STATE(5313)] = 155202, + [SMALL_STATE(5314)] = 155233, + [SMALL_STATE(5315)] = 155256, + [SMALL_STATE(5316)] = 155279, + [SMALL_STATE(5317)] = 155302, + [SMALL_STATE(5318)] = 155327, + [SMALL_STATE(5319)] = 155350, + [SMALL_STATE(5320)] = 155375, + [SMALL_STATE(5321)] = 155404, + [SMALL_STATE(5322)] = 155427, + [SMALL_STATE(5323)] = 155450, + [SMALL_STATE(5324)] = 155475, + [SMALL_STATE(5325)] = 155498, + [SMALL_STATE(5326)] = 155517, + [SMALL_STATE(5327)] = 155536, + [SMALL_STATE(5328)] = 155561, + [SMALL_STATE(5329)] = 155584, + [SMALL_STATE(5330)] = 155603, + [SMALL_STATE(5331)] = 155622, + [SMALL_STATE(5332)] = 155649, + [SMALL_STATE(5333)] = 155668, + [SMALL_STATE(5334)] = 155695, + [SMALL_STATE(5335)] = 155714, + [SMALL_STATE(5336)] = 155733, + [SMALL_STATE(5337)] = 155752, + [SMALL_STATE(5338)] = 155771, + [SMALL_STATE(5339)] = 155794, + [SMALL_STATE(5340)] = 155817, + [SMALL_STATE(5341)] = 155840, + [SMALL_STATE(5342)] = 155863, + [SMALL_STATE(5343)] = 155882, + [SMALL_STATE(5344)] = 155907, + [SMALL_STATE(5345)] = 155926, + [SMALL_STATE(5346)] = 155951, + [SMALL_STATE(5347)] = 155970, + [SMALL_STATE(5348)] = 155989, + [SMALL_STATE(5349)] = 156008, + [SMALL_STATE(5350)] = 156033, + [SMALL_STATE(5351)] = 156060, + [SMALL_STATE(5352)] = 156079, + [SMALL_STATE(5353)] = 156102, + [SMALL_STATE(5354)] = 156125, + [SMALL_STATE(5355)] = 156148, + [SMALL_STATE(5356)] = 156171, + [SMALL_STATE(5357)] = 156194, + [SMALL_STATE(5358)] = 156219, + [SMALL_STATE(5359)] = 156252, + [SMALL_STATE(5360)] = 156285, + [SMALL_STATE(5361)] = 156308, + [SMALL_STATE(5362)] = 156331, + [SMALL_STATE(5363)] = 156356, + [SMALL_STATE(5364)] = 156379, + [SMALL_STATE(5365)] = 156409, + [SMALL_STATE(5366)] = 156433, + [SMALL_STATE(5367)] = 156463, + [SMALL_STATE(5368)] = 156497, + [SMALL_STATE(5369)] = 156515, + [SMALL_STATE(5370)] = 156533, + [SMALL_STATE(5371)] = 156559, + [SMALL_STATE(5372)] = 156585, + [SMALL_STATE(5373)] = 156603, + [SMALL_STATE(5374)] = 156627, + [SMALL_STATE(5375)] = 156653, + [SMALL_STATE(5376)] = 156675, + [SMALL_STATE(5377)] = 156697, + [SMALL_STATE(5378)] = 156719, + [SMALL_STATE(5379)] = 156741, + [SMALL_STATE(5380)] = 156771, + [SMALL_STATE(5381)] = 156793, + [SMALL_STATE(5382)] = 156815, + [SMALL_STATE(5383)] = 156833, + [SMALL_STATE(5384)] = 156863, + [SMALL_STATE(5385)] = 156881, + [SMALL_STATE(5386)] = 156899, + [SMALL_STATE(5387)] = 156923, + [SMALL_STATE(5388)] = 156941, + [SMALL_STATE(5389)] = 156959, + [SMALL_STATE(5390)] = 156977, + [SMALL_STATE(5391)] = 156995, + [SMALL_STATE(5392)] = 157019, + [SMALL_STATE(5393)] = 157041, + [SMALL_STATE(5394)] = 157059, + [SMALL_STATE(5395)] = 157081, + [SMALL_STATE(5396)] = 157103, + [SMALL_STATE(5397)] = 157127, + [SMALL_STATE(5398)] = 157145, + [SMALL_STATE(5399)] = 157175, + [SMALL_STATE(5400)] = 157199, + [SMALL_STATE(5401)] = 157221, + [SMALL_STATE(5402)] = 157239, + [SMALL_STATE(5403)] = 157257, + [SMALL_STATE(5404)] = 157279, + [SMALL_STATE(5405)] = 157307, + [SMALL_STATE(5406)] = 157331, + [SMALL_STATE(5407)] = 157359, + [SMALL_STATE(5408)] = 157381, + [SMALL_STATE(5409)] = 157401, + [SMALL_STATE(5410)] = 157423, + [SMALL_STATE(5411)] = 157451, + [SMALL_STATE(5412)] = 157473, + [SMALL_STATE(5413)] = 157493, + [SMALL_STATE(5414)] = 157517, + [SMALL_STATE(5415)] = 157545, + [SMALL_STATE(5416)] = 157573, + [SMALL_STATE(5417)] = 157603, + [SMALL_STATE(5418)] = 157629, + [SMALL_STATE(5419)] = 157657, + [SMALL_STATE(5420)] = 157679, + [SMALL_STATE(5421)] = 157705, + [SMALL_STATE(5422)] = 157735, + [SMALL_STATE(5423)] = 157769, + [SMALL_STATE(5424)] = 157797, + [SMALL_STATE(5425)] = 157821, + [SMALL_STATE(5426)] = 157845, + [SMALL_STATE(5427)] = 157867, + [SMALL_STATE(5428)] = 157897, + [SMALL_STATE(5429)] = 157927, + [SMALL_STATE(5430)] = 157957, + [SMALL_STATE(5431)] = 157987, + [SMALL_STATE(5432)] = 158009, + [SMALL_STATE(5433)] = 158035, + [SMALL_STATE(5434)] = 158053, + [SMALL_STATE(5435)] = 158077, + [SMALL_STATE(5436)] = 158101, + [SMALL_STATE(5437)] = 158135, + [SMALL_STATE(5438)] = 158163, + [SMALL_STATE(5439)] = 158181, + [SMALL_STATE(5440)] = 158203, + [SMALL_STATE(5441)] = 158227, + [SMALL_STATE(5442)] = 158245, + [SMALL_STATE(5443)] = 158265, + [SMALL_STATE(5444)] = 158283, + [SMALL_STATE(5445)] = 158307, + [SMALL_STATE(5446)] = 158329, + [SMALL_STATE(5447)] = 158347, + [SMALL_STATE(5448)] = 158365, + [SMALL_STATE(5449)] = 158383, + [SMALL_STATE(5450)] = 158401, + [SMALL_STATE(5451)] = 158419, + [SMALL_STATE(5452)] = 158437, + [SMALL_STATE(5453)] = 158467, + [SMALL_STATE(5454)] = 158485, + [SMALL_STATE(5455)] = 158503, + [SMALL_STATE(5456)] = 158523, + [SMALL_STATE(5457)] = 158541, + [SMALL_STATE(5458)] = 158567, + [SMALL_STATE(5459)] = 158585, + [SMALL_STATE(5460)] = 158603, + [SMALL_STATE(5461)] = 158629, + [SMALL_STATE(5462)] = 158655, + [SMALL_STATE(5463)] = 158673, + [SMALL_STATE(5464)] = 158691, + [SMALL_STATE(5465)] = 158719, + [SMALL_STATE(5466)] = 158737, + [SMALL_STATE(5467)] = 158755, + [SMALL_STATE(5468)] = 158773, + [SMALL_STATE(5469)] = 158795, + [SMALL_STATE(5470)] = 158815, + [SMALL_STATE(5471)] = 158835, + [SMALL_STATE(5472)] = 158865, + [SMALL_STATE(5473)] = 158895, + [SMALL_STATE(5474)] = 158925, + [SMALL_STATE(5475)] = 158953, + [SMALL_STATE(5476)] = 158973, + [SMALL_STATE(5477)] = 159003, + [SMALL_STATE(5478)] = 159021, + [SMALL_STATE(5479)] = 159047, + [SMALL_STATE(5480)] = 159067, + [SMALL_STATE(5481)] = 159091, + [SMALL_STATE(5482)] = 159113, + [SMALL_STATE(5483)] = 159143, + [SMALL_STATE(5484)] = 159161, + [SMALL_STATE(5485)] = 159189, + [SMALL_STATE(5486)] = 159213, + [SMALL_STATE(5487)] = 159241, + [SMALL_STATE(5488)] = 159263, + [SMALL_STATE(5489)] = 159297, + [SMALL_STATE(5490)] = 159315, + [SMALL_STATE(5491)] = 159349, + [SMALL_STATE(5492)] = 159367, + [SMALL_STATE(5493)] = 159391, + [SMALL_STATE(5494)] = 159415, + [SMALL_STATE(5495)] = 159437, + [SMALL_STATE(5496)] = 159459, + [SMALL_STATE(5497)] = 159489, + [SMALL_STATE(5498)] = 159519, + [SMALL_STATE(5499)] = 159553, + [SMALL_STATE(5500)] = 159579, + [SMALL_STATE(5501)] = 159607, + [SMALL_STATE(5502)] = 159637, + [SMALL_STATE(5503)] = 159661, + [SMALL_STATE(5504)] = 159691, + [SMALL_STATE(5505)] = 159713, + [SMALL_STATE(5506)] = 159739, + [SMALL_STATE(5507)] = 159763, + [SMALL_STATE(5508)] = 159787, + [SMALL_STATE(5509)] = 159809, + [SMALL_STATE(5510)] = 159839, + [SMALL_STATE(5511)] = 159857, + [SMALL_STATE(5512)] = 159875, + [SMALL_STATE(5513)] = 159893, + [SMALL_STATE(5514)] = 159911, + [SMALL_STATE(5515)] = 159941, + [SMALL_STATE(5516)] = 159971, + [SMALL_STATE(5517)] = 159991, + [SMALL_STATE(5518)] = 160021, + [SMALL_STATE(5519)] = 160043, + [SMALL_STATE(5520)] = 160073, + [SMALL_STATE(5521)] = 160091, + [SMALL_STATE(5522)] = 160119, + [SMALL_STATE(5523)] = 160137, + [SMALL_STATE(5524)] = 160161, + [SMALL_STATE(5525)] = 160185, + [SMALL_STATE(5526)] = 160202, + [SMALL_STATE(5527)] = 160219, + [SMALL_STATE(5528)] = 160236, + [SMALL_STATE(5529)] = 160253, + [SMALL_STATE(5530)] = 160272, + [SMALL_STATE(5531)] = 160291, + [SMALL_STATE(5532)] = 160312, + [SMALL_STATE(5533)] = 160335, + [SMALL_STATE(5534)] = 160364, + [SMALL_STATE(5535)] = 160383, + [SMALL_STATE(5536)] = 160406, + [SMALL_STATE(5537)] = 160427, + [SMALL_STATE(5538)] = 160446, + [SMALL_STATE(5539)] = 160475, + [SMALL_STATE(5540)] = 160500, + [SMALL_STATE(5541)] = 160523, + [SMALL_STATE(5542)] = 160544, + [SMALL_STATE(5543)] = 160561, + [SMALL_STATE(5544)] = 160582, + [SMALL_STATE(5545)] = 160603, + [SMALL_STATE(5546)] = 160620, + [SMALL_STATE(5547)] = 160641, + [SMALL_STATE(5548)] = 160660, + [SMALL_STATE(5549)] = 160679, + [SMALL_STATE(5550)] = 160706, + [SMALL_STATE(5551)] = 160733, + [SMALL_STATE(5552)] = 160750, + [SMALL_STATE(5553)] = 160767, + [SMALL_STATE(5554)] = 160784, + [SMALL_STATE(5555)] = 160805, + [SMALL_STATE(5556)] = 160822, + [SMALL_STATE(5557)] = 160851, + [SMALL_STATE(5558)] = 160872, + [SMALL_STATE(5559)] = 160889, + [SMALL_STATE(5560)] = 160906, + [SMALL_STATE(5561)] = 160923, + [SMALL_STATE(5562)] = 160942, + [SMALL_STATE(5563)] = 160965, + [SMALL_STATE(5564)] = 160982, + [SMALL_STATE(5565)] = 160999, + [SMALL_STATE(5566)] = 161022, + [SMALL_STATE(5567)] = 161047, + [SMALL_STATE(5568)] = 161064, + [SMALL_STATE(5569)] = 161081, + [SMALL_STATE(5570)] = 161098, + [SMALL_STATE(5571)] = 161115, + [SMALL_STATE(5572)] = 161132, + [SMALL_STATE(5573)] = 161155, + [SMALL_STATE(5574)] = 161176, + [SMALL_STATE(5575)] = 161199, + [SMALL_STATE(5576)] = 161222, + [SMALL_STATE(5577)] = 161245, + [SMALL_STATE(5578)] = 161266, + [SMALL_STATE(5579)] = 161293, + [SMALL_STATE(5580)] = 161316, + [SMALL_STATE(5581)] = 161339, + [SMALL_STATE(5582)] = 161358, + [SMALL_STATE(5583)] = 161375, + [SMALL_STATE(5584)] = 161396, + [SMALL_STATE(5585)] = 161413, + [SMALL_STATE(5586)] = 161442, + [SMALL_STATE(5587)] = 161461, + [SMALL_STATE(5588)] = 161478, + [SMALL_STATE(5589)] = 161495, + [SMALL_STATE(5590)] = 161512, + [SMALL_STATE(5591)] = 161537, + [SMALL_STATE(5592)] = 161560, + [SMALL_STATE(5593)] = 161577, + [SMALL_STATE(5594)] = 161594, + [SMALL_STATE(5595)] = 161611, + [SMALL_STATE(5596)] = 161628, + [SMALL_STATE(5597)] = 161651, + [SMALL_STATE(5598)] = 161672, + [SMALL_STATE(5599)] = 161699, + [SMALL_STATE(5600)] = 161722, + [SMALL_STATE(5601)] = 161747, + [SMALL_STATE(5602)] = 161770, + [SMALL_STATE(5603)] = 161787, + [SMALL_STATE(5604)] = 161810, + [SMALL_STATE(5605)] = 161839, + [SMALL_STATE(5606)] = 161856, + [SMALL_STATE(5607)] = 161885, + [SMALL_STATE(5608)] = 161908, + [SMALL_STATE(5609)] = 161929, + [SMALL_STATE(5610)] = 161946, + [SMALL_STATE(5611)] = 161975, + [SMALL_STATE(5612)] = 161992, + [SMALL_STATE(5613)] = 162009, + [SMALL_STATE(5614)] = 162032, + [SMALL_STATE(5615)] = 162055, + [SMALL_STATE(5616)] = 162076, + [SMALL_STATE(5617)] = 162105, + [SMALL_STATE(5618)] = 162122, + [SMALL_STATE(5619)] = 162145, + [SMALL_STATE(5620)] = 162162, + [SMALL_STATE(5621)] = 162179, + [SMALL_STATE(5622)] = 162196, + [SMALL_STATE(5623)] = 162217, + [SMALL_STATE(5624)] = 162234, + [SMALL_STATE(5625)] = 162251, + [SMALL_STATE(5626)] = 162276, + [SMALL_STATE(5627)] = 162293, + [SMALL_STATE(5628)] = 162310, + [SMALL_STATE(5629)] = 162339, + [SMALL_STATE(5630)] = 162356, + [SMALL_STATE(5631)] = 162379, + [SMALL_STATE(5632)] = 162396, + [SMALL_STATE(5633)] = 162423, + [SMALL_STATE(5634)] = 162448, + [SMALL_STATE(5635)] = 162469, + [SMALL_STATE(5636)] = 162486, + [SMALL_STATE(5637)] = 162515, + [SMALL_STATE(5638)] = 162538, + [SMALL_STATE(5639)] = 162555, + [SMALL_STATE(5640)] = 162572, + [SMALL_STATE(5641)] = 162589, + [SMALL_STATE(5642)] = 162606, + [SMALL_STATE(5643)] = 162623, + [SMALL_STATE(5644)] = 162642, + [SMALL_STATE(5645)] = 162659, + [SMALL_STATE(5646)] = 162676, + [SMALL_STATE(5647)] = 162703, + [SMALL_STATE(5648)] = 162720, + [SMALL_STATE(5649)] = 162737, + [SMALL_STATE(5650)] = 162754, + [SMALL_STATE(5651)] = 162777, + [SMALL_STATE(5652)] = 162798, + [SMALL_STATE(5653)] = 162821, + [SMALL_STATE(5654)] = 162838, + [SMALL_STATE(5655)] = 162861, + [SMALL_STATE(5656)] = 162882, + [SMALL_STATE(5657)] = 162899, + [SMALL_STATE(5658)] = 162918, + [SMALL_STATE(5659)] = 162935, + [SMALL_STATE(5660)] = 162964, + [SMALL_STATE(5661)] = 162981, + [SMALL_STATE(5662)] = 163010, + [SMALL_STATE(5663)] = 163027, + [SMALL_STATE(5664)] = 163044, + [SMALL_STATE(5665)] = 163061, + [SMALL_STATE(5666)] = 163078, + [SMALL_STATE(5667)] = 163095, + [SMALL_STATE(5668)] = 163112, + [SMALL_STATE(5669)] = 163129, + [SMALL_STATE(5670)] = 163146, + [SMALL_STATE(5671)] = 163162, + [SMALL_STATE(5672)] = 163184, + [SMALL_STATE(5673)] = 163206, + [SMALL_STATE(5674)] = 163224, + [SMALL_STATE(5675)] = 163246, + [SMALL_STATE(5676)] = 163268, + [SMALL_STATE(5677)] = 163296, + [SMALL_STATE(5678)] = 163318, + [SMALL_STATE(5679)] = 163346, + [SMALL_STATE(5680)] = 163374, + [SMALL_STATE(5681)] = 163402, + [SMALL_STATE(5682)] = 163418, + [SMALL_STATE(5683)] = 163440, + [SMALL_STATE(5684)] = 163458, + [SMALL_STATE(5685)] = 163476, + [SMALL_STATE(5686)] = 163494, + [SMALL_STATE(5687)] = 163522, + [SMALL_STATE(5688)] = 163538, + [SMALL_STATE(5689)] = 163558, + [SMALL_STATE(5690)] = 163586, + [SMALL_STATE(5691)] = 163602, + [SMALL_STATE(5692)] = 163620, + [SMALL_STATE(5693)] = 163646, + [SMALL_STATE(5694)] = 163664, + [SMALL_STATE(5695)] = 163686, + [SMALL_STATE(5696)] = 163702, + [SMALL_STATE(5697)] = 163720, + [SMALL_STATE(5698)] = 163746, + [SMALL_STATE(5699)] = 163766, + [SMALL_STATE(5700)] = 163784, + [SMALL_STATE(5701)] = 163800, + [SMALL_STATE(5702)] = 163818, + [SMALL_STATE(5703)] = 163840, + [SMALL_STATE(5704)] = 163862, + [SMALL_STATE(5705)] = 163886, + [SMALL_STATE(5706)] = 163902, + [SMALL_STATE(5707)] = 163918, + [SMALL_STATE(5708)] = 163938, + [SMALL_STATE(5709)] = 163960, + [SMALL_STATE(5710)] = 163976, + [SMALL_STATE(5711)] = 163998, + [SMALL_STATE(5712)] = 164016, + [SMALL_STATE(5713)] = 164038, + [SMALL_STATE(5714)] = 164054, + [SMALL_STATE(5715)] = 164078, + [SMALL_STATE(5716)] = 164094, + [SMALL_STATE(5717)] = 164116, + [SMALL_STATE(5718)] = 164134, + [SMALL_STATE(5719)] = 164152, + [SMALL_STATE(5720)] = 164180, + [SMALL_STATE(5721)] = 164202, + [SMALL_STATE(5722)] = 164218, + [SMALL_STATE(5723)] = 164234, + [SMALL_STATE(5724)] = 164256, + [SMALL_STATE(5725)] = 164276, + [SMALL_STATE(5726)] = 164292, + [SMALL_STATE(5727)] = 164310, + [SMALL_STATE(5728)] = 164338, + [SMALL_STATE(5729)] = 164360, + [SMALL_STATE(5730)] = 164378, + [SMALL_STATE(5731)] = 164406, + [SMALL_STATE(5732)] = 164434, + [SMALL_STATE(5733)] = 164454, + [SMALL_STATE(5734)] = 164476, + [SMALL_STATE(5735)] = 164500, + [SMALL_STATE(5736)] = 164518, + [SMALL_STATE(5737)] = 164540, + [SMALL_STATE(5738)] = 164568, + [SMALL_STATE(5739)] = 164592, + [SMALL_STATE(5740)] = 164618, + [SMALL_STATE(5741)] = 164636, + [SMALL_STATE(5742)] = 164656, + [SMALL_STATE(5743)] = 164678, + [SMALL_STATE(5744)] = 164700, + [SMALL_STATE(5745)] = 164716, + [SMALL_STATE(5746)] = 164734, + [SMALL_STATE(5747)] = 164752, + [SMALL_STATE(5748)] = 164770, + [SMALL_STATE(5749)] = 164788, + [SMALL_STATE(5750)] = 164804, + [SMALL_STATE(5751)] = 164822, + [SMALL_STATE(5752)] = 164850, + [SMALL_STATE(5753)] = 164878, + [SMALL_STATE(5754)] = 164894, + [SMALL_STATE(5755)] = 164916, + [SMALL_STATE(5756)] = 164938, + [SMALL_STATE(5757)] = 164954, + [SMALL_STATE(5758)] = 164972, + [SMALL_STATE(5759)] = 164994, + [SMALL_STATE(5760)] = 165016, + [SMALL_STATE(5761)] = 165038, + [SMALL_STATE(5762)] = 165066, + [SMALL_STATE(5763)] = 165094, + [SMALL_STATE(5764)] = 165114, + [SMALL_STATE(5765)] = 165142, + [SMALL_STATE(5766)] = 165162, + [SMALL_STATE(5767)] = 165180, + [SMALL_STATE(5768)] = 165202, + [SMALL_STATE(5769)] = 165220, + [SMALL_STATE(5770)] = 165248, + [SMALL_STATE(5771)] = 165270, + [SMALL_STATE(5772)] = 165286, + [SMALL_STATE(5773)] = 165304, + [SMALL_STATE(5774)] = 165328, + [SMALL_STATE(5775)] = 165356, + [SMALL_STATE(5776)] = 165378, + [SMALL_STATE(5777)] = 165396, + [SMALL_STATE(5778)] = 165414, + [SMALL_STATE(5779)] = 165432, + [SMALL_STATE(5780)] = 165450, + [SMALL_STATE(5781)] = 165472, + [SMALL_STATE(5782)] = 165494, + [SMALL_STATE(5783)] = 165522, + [SMALL_STATE(5784)] = 165538, + [SMALL_STATE(5785)] = 165566, + [SMALL_STATE(5786)] = 165582, + [SMALL_STATE(5787)] = 165610, + [SMALL_STATE(5788)] = 165636, + [SMALL_STATE(5789)] = 165654, + [SMALL_STATE(5790)] = 165674, + [SMALL_STATE(5791)] = 165696, + [SMALL_STATE(5792)] = 165712, + [SMALL_STATE(5793)] = 165736, + [SMALL_STATE(5794)] = 165752, + [SMALL_STATE(5795)] = 165780, + [SMALL_STATE(5796)] = 165800, + [SMALL_STATE(5797)] = 165828, + [SMALL_STATE(5798)] = 165852, + [SMALL_STATE(5799)] = 165872, + [SMALL_STATE(5800)] = 165894, + [SMALL_STATE(5801)] = 165912, + [SMALL_STATE(5802)] = 165930, + [SMALL_STATE(5803)] = 165954, + [SMALL_STATE(5804)] = 165980, + [SMALL_STATE(5805)] = 165998, + [SMALL_STATE(5806)] = 166022, + [SMALL_STATE(5807)] = 166044, + [SMALL_STATE(5808)] = 166068, + [SMALL_STATE(5809)] = 166090, + [SMALL_STATE(5810)] = 166108, + [SMALL_STATE(5811)] = 166132, + [SMALL_STATE(5812)] = 166150, + [SMALL_STATE(5813)] = 166166, + [SMALL_STATE(5814)] = 166188, + [SMALL_STATE(5815)] = 166216, + [SMALL_STATE(5816)] = 166244, + [SMALL_STATE(5817)] = 166266, + [SMALL_STATE(5818)] = 166282, + [SMALL_STATE(5819)] = 166300, + [SMALL_STATE(5820)] = 166316, + [SMALL_STATE(5821)] = 166338, + [SMALL_STATE(5822)] = 166356, + [SMALL_STATE(5823)] = 166374, + [SMALL_STATE(5824)] = 166392, + [SMALL_STATE(5825)] = 166410, + [SMALL_STATE(5826)] = 166428, + [SMALL_STATE(5827)] = 166452, + [SMALL_STATE(5828)] = 166468, + [SMALL_STATE(5829)] = 166490, + [SMALL_STATE(5830)] = 166518, + [SMALL_STATE(5831)] = 166534, + [SMALL_STATE(5832)] = 166556, + [SMALL_STATE(5833)] = 166584, + [SMALL_STATE(5834)] = 166600, + [SMALL_STATE(5835)] = 166620, + [SMALL_STATE(5836)] = 166648, + [SMALL_STATE(5837)] = 166666, + [SMALL_STATE(5838)] = 166688, + [SMALL_STATE(5839)] = 166712, + [SMALL_STATE(5840)] = 166734, + [SMALL_STATE(5841)] = 166750, + [SMALL_STATE(5842)] = 166766, + [SMALL_STATE(5843)] = 166784, + [SMALL_STATE(5844)] = 166806, + [SMALL_STATE(5845)] = 166822, + [SMALL_STATE(5846)] = 166846, + [SMALL_STATE(5847)] = 166864, + [SMALL_STATE(5848)] = 166882, + [SMALL_STATE(5849)] = 166900, + [SMALL_STATE(5850)] = 166918, + [SMALL_STATE(5851)] = 166942, + [SMALL_STATE(5852)] = 166960, + [SMALL_STATE(5853)] = 166982, + [SMALL_STATE(5854)] = 166998, + [SMALL_STATE(5855)] = 167014, + [SMALL_STATE(5856)] = 167034, + [SMALL_STATE(5857)] = 167052, + [SMALL_STATE(5858)] = 167070, + [SMALL_STATE(5859)] = 167092, + [SMALL_STATE(5860)] = 167108, + [SMALL_STATE(5861)] = 167126, + [SMALL_STATE(5862)] = 167142, + [SMALL_STATE(5863)] = 167166, + [SMALL_STATE(5864)] = 167190, + [SMALL_STATE(5865)] = 167208, + [SMALL_STATE(5866)] = 167224, + [SMALL_STATE(5867)] = 167242, + [SMALL_STATE(5868)] = 167270, + [SMALL_STATE(5869)] = 167288, + [SMALL_STATE(5870)] = 167306, + [SMALL_STATE(5871)] = 167328, + [SMALL_STATE(5872)] = 167352, + [SMALL_STATE(5873)] = 167370, + [SMALL_STATE(5874)] = 167390, + [SMALL_STATE(5875)] = 167408, + [SMALL_STATE(5876)] = 167426, + [SMALL_STATE(5877)] = 167444, + [SMALL_STATE(5878)] = 167462, + [SMALL_STATE(5879)] = 167480, + [SMALL_STATE(5880)] = 167498, + [SMALL_STATE(5881)] = 167516, + [SMALL_STATE(5882)] = 167544, + [SMALL_STATE(5883)] = 167562, + [SMALL_STATE(5884)] = 167580, + [SMALL_STATE(5885)] = 167598, + [SMALL_STATE(5886)] = 167616, + [SMALL_STATE(5887)] = 167634, + [SMALL_STATE(5888)] = 167652, + [SMALL_STATE(5889)] = 167674, + [SMALL_STATE(5890)] = 167694, + [SMALL_STATE(5891)] = 167712, + [SMALL_STATE(5892)] = 167730, + [SMALL_STATE(5893)] = 167748, + [SMALL_STATE(5894)] = 167766, + [SMALL_STATE(5895)] = 167784, + [SMALL_STATE(5896)] = 167806, + [SMALL_STATE(5897)] = 167824, + [SMALL_STATE(5898)] = 167842, + [SMALL_STATE(5899)] = 167860, + [SMALL_STATE(5900)] = 167882, + [SMALL_STATE(5901)] = 167900, + [SMALL_STATE(5902)] = 167918, + [SMALL_STATE(5903)] = 167936, + [SMALL_STATE(5904)] = 167956, + [SMALL_STATE(5905)] = 167974, + [SMALL_STATE(5906)] = 167992, + [SMALL_STATE(5907)] = 168020, + [SMALL_STATE(5908)] = 168042, + [SMALL_STATE(5909)] = 168060, + [SMALL_STATE(5910)] = 168084, + [SMALL_STATE(5911)] = 168102, + [SMALL_STATE(5912)] = 168120, + [SMALL_STATE(5913)] = 168144, + [SMALL_STATE(5914)] = 168160, + [SMALL_STATE(5915)] = 168176, + [SMALL_STATE(5916)] = 168198, + [SMALL_STATE(5917)] = 168218, + [SMALL_STATE(5918)] = 168236, + [SMALL_STATE(5919)] = 168256, + [SMALL_STATE(5920)] = 168284, + [SMALL_STATE(5921)] = 168306, + [SMALL_STATE(5922)] = 168326, + [SMALL_STATE(5923)] = 168342, + [SMALL_STATE(5924)] = 168360, + [SMALL_STATE(5925)] = 168380, + [SMALL_STATE(5926)] = 168406, + [SMALL_STATE(5927)] = 168432, + [SMALL_STATE(5928)] = 168460, + [SMALL_STATE(5929)] = 168482, + [SMALL_STATE(5930)] = 168504, + [SMALL_STATE(5931)] = 168520, + [SMALL_STATE(5932)] = 168538, + [SMALL_STATE(5933)] = 168560, + [SMALL_STATE(5934)] = 168588, + [SMALL_STATE(5935)] = 168609, + [SMALL_STATE(5936)] = 168630, + [SMALL_STATE(5937)] = 168647, + [SMALL_STATE(5938)] = 168662, + [SMALL_STATE(5939)] = 168681, + [SMALL_STATE(5940)] = 168700, + [SMALL_STATE(5941)] = 168725, + [SMALL_STATE(5942)] = 168746, + [SMALL_STATE(5943)] = 168769, + [SMALL_STATE(5944)] = 168792, + [SMALL_STATE(5945)] = 168813, + [SMALL_STATE(5946)] = 168828, + [SMALL_STATE(5947)] = 168849, + [SMALL_STATE(5948)] = 168870, + [SMALL_STATE(5949)] = 168889, + [SMALL_STATE(5950)] = 168908, + [SMALL_STATE(5951)] = 168929, + [SMALL_STATE(5952)] = 168950, + [SMALL_STATE(5953)] = 168975, + [SMALL_STATE(5954)] = 169000, + [SMALL_STATE(5955)] = 169019, + [SMALL_STATE(5956)] = 169034, + [SMALL_STATE(5957)] = 169049, + [SMALL_STATE(5958)] = 169070, + [SMALL_STATE(5959)] = 169085, + [SMALL_STATE(5960)] = 169110, + [SMALL_STATE(5961)] = 169131, + [SMALL_STATE(5962)] = 169156, + [SMALL_STATE(5963)] = 169181, + [SMALL_STATE(5964)] = 169200, + [SMALL_STATE(5965)] = 169221, + [SMALL_STATE(5966)] = 169246, + [SMALL_STATE(5967)] = 169267, + [SMALL_STATE(5968)] = 169286, + [SMALL_STATE(5969)] = 169307, + [SMALL_STATE(5970)] = 169332, + [SMALL_STATE(5971)] = 169347, + [SMALL_STATE(5972)] = 169362, + [SMALL_STATE(5973)] = 169385, + [SMALL_STATE(5974)] = 169400, + [SMALL_STATE(5975)] = 169419, + [SMALL_STATE(5976)] = 169434, + [SMALL_STATE(5977)] = 169455, + [SMALL_STATE(5978)] = 169480, + [SMALL_STATE(5979)] = 169499, + [SMALL_STATE(5980)] = 169514, + [SMALL_STATE(5981)] = 169539, + [SMALL_STATE(5982)] = 169556, + [SMALL_STATE(5983)] = 169575, + [SMALL_STATE(5984)] = 169590, + [SMALL_STATE(5985)] = 169605, + [SMALL_STATE(5986)] = 169630, + [SMALL_STATE(5987)] = 169645, + [SMALL_STATE(5988)] = 169670, + [SMALL_STATE(5989)] = 169691, + [SMALL_STATE(5990)] = 169710, + [SMALL_STATE(5991)] = 169733, + [SMALL_STATE(5992)] = 169754, + [SMALL_STATE(5993)] = 169777, + [SMALL_STATE(5994)] = 169802, + [SMALL_STATE(5995)] = 169817, + [SMALL_STATE(5996)] = 169836, + [SMALL_STATE(5997)] = 169851, + [SMALL_STATE(5998)] = 169876, + [SMALL_STATE(5999)] = 169891, + [SMALL_STATE(6000)] = 169916, + [SMALL_STATE(6001)] = 169937, + [SMALL_STATE(6002)] = 169958, + [SMALL_STATE(6003)] = 169983, + [SMALL_STATE(6004)] = 170004, + [SMALL_STATE(6005)] = 170025, + [SMALL_STATE(6006)] = 170040, + [SMALL_STATE(6007)] = 170061, + [SMALL_STATE(6008)] = 170080, + [SMALL_STATE(6009)] = 170095, + [SMALL_STATE(6010)] = 170110, + [SMALL_STATE(6011)] = 170131, + [SMALL_STATE(6012)] = 170146, + [SMALL_STATE(6013)] = 170167, + [SMALL_STATE(6014)] = 170192, + [SMALL_STATE(6015)] = 170207, + [SMALL_STATE(6016)] = 170222, + [SMALL_STATE(6017)] = 170241, + [SMALL_STATE(6018)] = 170260, + [SMALL_STATE(6019)] = 170279, + [SMALL_STATE(6020)] = 170304, + [SMALL_STATE(6021)] = 170329, + [SMALL_STATE(6022)] = 170354, + [SMALL_STATE(6023)] = 170369, + [SMALL_STATE(6024)] = 170394, + [SMALL_STATE(6025)] = 170415, + [SMALL_STATE(6026)] = 170436, + [SMALL_STATE(6027)] = 170457, + [SMALL_STATE(6028)] = 170478, + [SMALL_STATE(6029)] = 170499, + [SMALL_STATE(6030)] = 170520, + [SMALL_STATE(6031)] = 170535, + [SMALL_STATE(6032)] = 170556, + [SMALL_STATE(6033)] = 170577, + [SMALL_STATE(6034)] = 170598, + [SMALL_STATE(6035)] = 170619, + [SMALL_STATE(6036)] = 170640, + [SMALL_STATE(6037)] = 170659, + [SMALL_STATE(6038)] = 170674, + [SMALL_STATE(6039)] = 170695, + [SMALL_STATE(6040)] = 170714, + [SMALL_STATE(6041)] = 170735, + [SMALL_STATE(6042)] = 170756, + [SMALL_STATE(6043)] = 170777, + [SMALL_STATE(6044)] = 170802, + [SMALL_STATE(6045)] = 170823, + [SMALL_STATE(6046)] = 170848, + [SMALL_STATE(6047)] = 170869, + [SMALL_STATE(6048)] = 170890, + [SMALL_STATE(6049)] = 170905, + [SMALL_STATE(6050)] = 170926, + [SMALL_STATE(6051)] = 170945, + [SMALL_STATE(6052)] = 170964, + [SMALL_STATE(6053)] = 170985, + [SMALL_STATE(6054)] = 171010, + [SMALL_STATE(6055)] = 171025, + [SMALL_STATE(6056)] = 171044, + [SMALL_STATE(6057)] = 171059, + [SMALL_STATE(6058)] = 171078, + [SMALL_STATE(6059)] = 171093, + [SMALL_STATE(6060)] = 171108, + [SMALL_STATE(6061)] = 171127, + [SMALL_STATE(6062)] = 171148, + [SMALL_STATE(6063)] = 171163, + [SMALL_STATE(6064)] = 171188, + [SMALL_STATE(6065)] = 171203, + [SMALL_STATE(6066)] = 171218, + [SMALL_STATE(6067)] = 171239, + [SMALL_STATE(6068)] = 171262, + [SMALL_STATE(6069)] = 171283, + [SMALL_STATE(6070)] = 171308, + [SMALL_STATE(6071)] = 171323, + [SMALL_STATE(6072)] = 171348, + [SMALL_STATE(6073)] = 171373, + [SMALL_STATE(6074)] = 171388, + [SMALL_STATE(6075)] = 171409, + [SMALL_STATE(6076)] = 171428, + [SMALL_STATE(6077)] = 171449, + [SMALL_STATE(6078)] = 171464, + [SMALL_STATE(6079)] = 171485, + [SMALL_STATE(6080)] = 171508, + [SMALL_STATE(6081)] = 171529, + [SMALL_STATE(6082)] = 171544, + [SMALL_STATE(6083)] = 171559, + [SMALL_STATE(6084)] = 171574, + [SMALL_STATE(6085)] = 171589, + [SMALL_STATE(6086)] = 171608, + [SMALL_STATE(6087)] = 171633, + [SMALL_STATE(6088)] = 171658, + [SMALL_STATE(6089)] = 171683, + [SMALL_STATE(6090)] = 171702, + [SMALL_STATE(6091)] = 171727, + [SMALL_STATE(6092)] = 171742, + [SMALL_STATE(6093)] = 171761, + [SMALL_STATE(6094)] = 171776, + [SMALL_STATE(6095)] = 171801, + [SMALL_STATE(6096)] = 171826, + [SMALL_STATE(6097)] = 171851, + [SMALL_STATE(6098)] = 171870, + [SMALL_STATE(6099)] = 171889, + [SMALL_STATE(6100)] = 171914, + [SMALL_STATE(6101)] = 171937, + [SMALL_STATE(6102)] = 171962, + [SMALL_STATE(6103)] = 171983, + [SMALL_STATE(6104)] = 172002, + [SMALL_STATE(6105)] = 172017, + [SMALL_STATE(6106)] = 172040, + [SMALL_STATE(6107)] = 172059, + [SMALL_STATE(6108)] = 172080, + [SMALL_STATE(6109)] = 172099, + [SMALL_STATE(6110)] = 172120, + [SMALL_STATE(6111)] = 172139, + [SMALL_STATE(6112)] = 172164, + [SMALL_STATE(6113)] = 172179, + [SMALL_STATE(6114)] = 172194, + [SMALL_STATE(6115)] = 172219, + [SMALL_STATE(6116)] = 172240, + [SMALL_STATE(6117)] = 172261, + [SMALL_STATE(6118)] = 172280, + [SMALL_STATE(6119)] = 172295, + [SMALL_STATE(6120)] = 172320, + [SMALL_STATE(6121)] = 172345, + [SMALL_STATE(6122)] = 172364, + [SMALL_STATE(6123)] = 172383, + [SMALL_STATE(6124)] = 172402, + [SMALL_STATE(6125)] = 172423, + [SMALL_STATE(6126)] = 172448, + [SMALL_STATE(6127)] = 172467, + [SMALL_STATE(6128)] = 172488, + [SMALL_STATE(6129)] = 172503, + [SMALL_STATE(6130)] = 172528, + [SMALL_STATE(6131)] = 172547, + [SMALL_STATE(6132)] = 172566, + [SMALL_STATE(6133)] = 172585, + [SMALL_STATE(6134)] = 172600, + [SMALL_STATE(6135)] = 172625, + [SMALL_STATE(6136)] = 172644, + [SMALL_STATE(6137)] = 172659, + [SMALL_STATE(6138)] = 172680, + [SMALL_STATE(6139)] = 172699, + [SMALL_STATE(6140)] = 172724, + [SMALL_STATE(6141)] = 172749, + [SMALL_STATE(6142)] = 172774, + [SMALL_STATE(6143)] = 172795, + [SMALL_STATE(6144)] = 172816, + [SMALL_STATE(6145)] = 172835, + [SMALL_STATE(6146)] = 172856, + [SMALL_STATE(6147)] = 172871, + [SMALL_STATE(6148)] = 172896, + [SMALL_STATE(6149)] = 172915, + [SMALL_STATE(6150)] = 172940, + [SMALL_STATE(6151)] = 172959, + [SMALL_STATE(6152)] = 172974, + [SMALL_STATE(6153)] = 172995, + [SMALL_STATE(6154)] = 173020, + [SMALL_STATE(6155)] = 173035, + [SMALL_STATE(6156)] = 173054, + [SMALL_STATE(6157)] = 173079, + [SMALL_STATE(6158)] = 173096, + [SMALL_STATE(6159)] = 173115, + [SMALL_STATE(6160)] = 173130, + [SMALL_STATE(6161)] = 173149, + [SMALL_STATE(6162)] = 173170, + [SMALL_STATE(6163)] = 173195, + [SMALL_STATE(6164)] = 173214, + [SMALL_STATE(6165)] = 173233, + [SMALL_STATE(6166)] = 173252, + [SMALL_STATE(6167)] = 173275, + [SMALL_STATE(6168)] = 173290, + [SMALL_STATE(6169)] = 173307, + [SMALL_STATE(6170)] = 173322, + [SMALL_STATE(6171)] = 173341, + [SMALL_STATE(6172)] = 173362, + [SMALL_STATE(6173)] = 173383, + [SMALL_STATE(6174)] = 173402, + [SMALL_STATE(6175)] = 173427, + [SMALL_STATE(6176)] = 173452, + [SMALL_STATE(6177)] = 173467, + [SMALL_STATE(6178)] = 173486, + [SMALL_STATE(6179)] = 173501, + [SMALL_STATE(6180)] = 173526, + [SMALL_STATE(6181)] = 173541, + [SMALL_STATE(6182)] = 173556, + [SMALL_STATE(6183)] = 173581, + [SMALL_STATE(6184)] = 173606, + [SMALL_STATE(6185)] = 173625, + [SMALL_STATE(6186)] = 173644, + [SMALL_STATE(6187)] = 173669, + [SMALL_STATE(6188)] = 173688, + [SMALL_STATE(6189)] = 173707, + [SMALL_STATE(6190)] = 173722, + [SMALL_STATE(6191)] = 173737, + [SMALL_STATE(6192)] = 173762, + [SMALL_STATE(6193)] = 173787, + [SMALL_STATE(6194)] = 173806, + [SMALL_STATE(6195)] = 173827, + [SMALL_STATE(6196)] = 173848, + [SMALL_STATE(6197)] = 173873, + [SMALL_STATE(6198)] = 173892, + [SMALL_STATE(6199)] = 173911, + [SMALL_STATE(6200)] = 173932, + [SMALL_STATE(6201)] = 173951, + [SMALL_STATE(6202)] = 173966, + [SMALL_STATE(6203)] = 173981, + [SMALL_STATE(6204)] = 174000, + [SMALL_STATE(6205)] = 174019, + [SMALL_STATE(6206)] = 174038, + [SMALL_STATE(6207)] = 174057, + [SMALL_STATE(6208)] = 174076, + [SMALL_STATE(6209)] = 174095, + [SMALL_STATE(6210)] = 174114, + [SMALL_STATE(6211)] = 174133, + [SMALL_STATE(6212)] = 174152, + [SMALL_STATE(6213)] = 174167, + [SMALL_STATE(6214)] = 174186, + [SMALL_STATE(6215)] = 174205, + [SMALL_STATE(6216)] = 174224, + [SMALL_STATE(6217)] = 174243, + [SMALL_STATE(6218)] = 174262, + [SMALL_STATE(6219)] = 174281, + [SMALL_STATE(6220)] = 174306, + [SMALL_STATE(6221)] = 174325, + [SMALL_STATE(6222)] = 174344, + [SMALL_STATE(6223)] = 174363, + [SMALL_STATE(6224)] = 174382, + [SMALL_STATE(6225)] = 174401, + [SMALL_STATE(6226)] = 174420, + [SMALL_STATE(6227)] = 174439, + [SMALL_STATE(6228)] = 174458, + [SMALL_STATE(6229)] = 174477, + [SMALL_STATE(6230)] = 174496, + [SMALL_STATE(6231)] = 174515, + [SMALL_STATE(6232)] = 174534, + [SMALL_STATE(6233)] = 174553, + [SMALL_STATE(6234)] = 174572, + [SMALL_STATE(6235)] = 174591, + [SMALL_STATE(6236)] = 174614, + [SMALL_STATE(6237)] = 174635, + [SMALL_STATE(6238)] = 174660, + [SMALL_STATE(6239)] = 174683, + [SMALL_STATE(6240)] = 174708, + [SMALL_STATE(6241)] = 174723, + [SMALL_STATE(6242)] = 174742, + [SMALL_STATE(6243)] = 174757, + [SMALL_STATE(6244)] = 174778, + [SMALL_STATE(6245)] = 174797, + [SMALL_STATE(6246)] = 174816, + [SMALL_STATE(6247)] = 174839, + [SMALL_STATE(6248)] = 174864, + [SMALL_STATE(6249)] = 174889, + [SMALL_STATE(6250)] = 174904, + [SMALL_STATE(6251)] = 174929, + [SMALL_STATE(6252)] = 174944, + [SMALL_STATE(6253)] = 174963, + [SMALL_STATE(6254)] = 174988, + [SMALL_STATE(6255)] = 175013, + [SMALL_STATE(6256)] = 175034, + [SMALL_STATE(6257)] = 175049, + [SMALL_STATE(6258)] = 175074, + [SMALL_STATE(6259)] = 175093, + [SMALL_STATE(6260)] = 175118, + [SMALL_STATE(6261)] = 175141, + [SMALL_STATE(6262)] = 175166, + [SMALL_STATE(6263)] = 175191, + [SMALL_STATE(6264)] = 175216, + [SMALL_STATE(6265)] = 175241, + [SMALL_STATE(6266)] = 175260, + [SMALL_STATE(6267)] = 175285, + [SMALL_STATE(6268)] = 175310, + [SMALL_STATE(6269)] = 175335, + [SMALL_STATE(6270)] = 175350, + [SMALL_STATE(6271)] = 175369, + [SMALL_STATE(6272)] = 175384, + [SMALL_STATE(6273)] = 175403, + [SMALL_STATE(6274)] = 175426, + [SMALL_STATE(6275)] = 175445, + [SMALL_STATE(6276)] = 175470, + [SMALL_STATE(6277)] = 175489, + [SMALL_STATE(6278)] = 175514, + [SMALL_STATE(6279)] = 175535, + [SMALL_STATE(6280)] = 175554, + [SMALL_STATE(6281)] = 175579, + [SMALL_STATE(6282)] = 175604, + [SMALL_STATE(6283)] = 175629, + [SMALL_STATE(6284)] = 175654, + [SMALL_STATE(6285)] = 175673, + [SMALL_STATE(6286)] = 175698, + [SMALL_STATE(6287)] = 175719, + [SMALL_STATE(6288)] = 175734, + [SMALL_STATE(6289)] = 175759, + [SMALL_STATE(6290)] = 175784, + [SMALL_STATE(6291)] = 175809, + [SMALL_STATE(6292)] = 175828, + [SMALL_STATE(6293)] = 175843, + [SMALL_STATE(6294)] = 175864, + [SMALL_STATE(6295)] = 175883, + [SMALL_STATE(6296)] = 175902, + [SMALL_STATE(6297)] = 175917, + [SMALL_STATE(6298)] = 175942, + [SMALL_STATE(6299)] = 175967, + [SMALL_STATE(6300)] = 175982, + [SMALL_STATE(6301)] = 176001, + [SMALL_STATE(6302)] = 176026, + [SMALL_STATE(6303)] = 176051, + [SMALL_STATE(6304)] = 176066, + [SMALL_STATE(6305)] = 176085, + [SMALL_STATE(6306)] = 176104, + [SMALL_STATE(6307)] = 176129, + [SMALL_STATE(6308)] = 176144, + [SMALL_STATE(6309)] = 176169, + [SMALL_STATE(6310)] = 176188, + [SMALL_STATE(6311)] = 176207, + [SMALL_STATE(6312)] = 176225, + [SMALL_STATE(6313)] = 176247, + [SMALL_STATE(6314)] = 176267, + [SMALL_STATE(6315)] = 176285, + [SMALL_STATE(6316)] = 176303, + [SMALL_STATE(6317)] = 176319, + [SMALL_STATE(6318)] = 176337, + [SMALL_STATE(6319)] = 176355, + [SMALL_STATE(6320)] = 176373, + [SMALL_STATE(6321)] = 176393, + [SMALL_STATE(6322)] = 176413, + [SMALL_STATE(6323)] = 176433, + [SMALL_STATE(6324)] = 176455, + [SMALL_STATE(6325)] = 176477, + [SMALL_STATE(6326)] = 176499, + [SMALL_STATE(6327)] = 176519, + [SMALL_STATE(6328)] = 176535, + [SMALL_STATE(6329)] = 176557, + [SMALL_STATE(6330)] = 176575, + [SMALL_STATE(6331)] = 176593, + [SMALL_STATE(6332)] = 176613, + [SMALL_STATE(6333)] = 176631, + [SMALL_STATE(6334)] = 176653, + [SMALL_STATE(6335)] = 176675, + [SMALL_STATE(6336)] = 176693, + [SMALL_STATE(6337)] = 176715, + [SMALL_STATE(6338)] = 176737, + [SMALL_STATE(6339)] = 176759, + [SMALL_STATE(6340)] = 176777, + [SMALL_STATE(6341)] = 176799, + [SMALL_STATE(6342)] = 176815, + [SMALL_STATE(6343)] = 176835, + [SMALL_STATE(6344)] = 176853, + [SMALL_STATE(6345)] = 176875, + [SMALL_STATE(6346)] = 176891, + [SMALL_STATE(6347)] = 176913, + [SMALL_STATE(6348)] = 176935, + [SMALL_STATE(6349)] = 176953, + [SMALL_STATE(6350)] = 176975, + [SMALL_STATE(6351)] = 176997, + [SMALL_STATE(6352)] = 177019, + [SMALL_STATE(6353)] = 177037, + [SMALL_STATE(6354)] = 177059, + [SMALL_STATE(6355)] = 177081, + [SMALL_STATE(6356)] = 177103, + [SMALL_STATE(6357)] = 177121, + [SMALL_STATE(6358)] = 177143, + [SMALL_STATE(6359)] = 177161, + [SMALL_STATE(6360)] = 177183, + [SMALL_STATE(6361)] = 177199, + [SMALL_STATE(6362)] = 177221, + [SMALL_STATE(6363)] = 177237, + [SMALL_STATE(6364)] = 177259, + [SMALL_STATE(6365)] = 177275, + [SMALL_STATE(6366)] = 177297, + [SMALL_STATE(6367)] = 177313, + [SMALL_STATE(6368)] = 177335, + [SMALL_STATE(6369)] = 177353, + [SMALL_STATE(6370)] = 177369, + [SMALL_STATE(6371)] = 177391, + [SMALL_STATE(6372)] = 177405, + [SMALL_STATE(6373)] = 177425, + [SMALL_STATE(6374)] = 177443, + [SMALL_STATE(6375)] = 177465, + [SMALL_STATE(6376)] = 177481, + [SMALL_STATE(6377)] = 177503, + [SMALL_STATE(6378)] = 177521, + [SMALL_STATE(6379)] = 177539, + [SMALL_STATE(6380)] = 177561, + [SMALL_STATE(6381)] = 177577, + [SMALL_STATE(6382)] = 177595, + [SMALL_STATE(6383)] = 177617, + [SMALL_STATE(6384)] = 177635, + [SMALL_STATE(6385)] = 177653, + [SMALL_STATE(6386)] = 177673, + [SMALL_STATE(6387)] = 177691, + [SMALL_STATE(6388)] = 177709, + [SMALL_STATE(6389)] = 177723, + [SMALL_STATE(6390)] = 177739, + [SMALL_STATE(6391)] = 177761, + [SMALL_STATE(6392)] = 177779, + [SMALL_STATE(6393)] = 177797, + [SMALL_STATE(6394)] = 177811, + [SMALL_STATE(6395)] = 177829, + [SMALL_STATE(6396)] = 177847, + [SMALL_STATE(6397)] = 177869, + [SMALL_STATE(6398)] = 177891, + [SMALL_STATE(6399)] = 177911, + [SMALL_STATE(6400)] = 177933, + [SMALL_STATE(6401)] = 177947, + [SMALL_STATE(6402)] = 177969, + [SMALL_STATE(6403)] = 177985, + [SMALL_STATE(6404)] = 178007, + [SMALL_STATE(6405)] = 178029, + [SMALL_STATE(6406)] = 178049, + [SMALL_STATE(6407)] = 178067, + [SMALL_STATE(6408)] = 178085, + [SMALL_STATE(6409)] = 178103, + [SMALL_STATE(6410)] = 178125, + [SMALL_STATE(6411)] = 178147, + [SMALL_STATE(6412)] = 178169, + [SMALL_STATE(6413)] = 178191, + [SMALL_STATE(6414)] = 178213, + [SMALL_STATE(6415)] = 178231, + [SMALL_STATE(6416)] = 178249, + [SMALL_STATE(6417)] = 178267, + [SMALL_STATE(6418)] = 178287, + [SMALL_STATE(6419)] = 178309, + [SMALL_STATE(6420)] = 178331, + [SMALL_STATE(6421)] = 178345, + [SMALL_STATE(6422)] = 178367, + [SMALL_STATE(6423)] = 178389, + [SMALL_STATE(6424)] = 178409, + [SMALL_STATE(6425)] = 178431, + [SMALL_STATE(6426)] = 178447, + [SMALL_STATE(6427)] = 178463, + [SMALL_STATE(6428)] = 178485, + [SMALL_STATE(6429)] = 178507, + [SMALL_STATE(6430)] = 178527, + [SMALL_STATE(6431)] = 178549, + [SMALL_STATE(6432)] = 178569, + [SMALL_STATE(6433)] = 178585, + [SMALL_STATE(6434)] = 178607, + [SMALL_STATE(6435)] = 178629, + [SMALL_STATE(6436)] = 178651, + [SMALL_STATE(6437)] = 178667, + [SMALL_STATE(6438)] = 178687, + [SMALL_STATE(6439)] = 178709, + [SMALL_STATE(6440)] = 178731, + [SMALL_STATE(6441)] = 178753, + [SMALL_STATE(6442)] = 178775, + [SMALL_STATE(6443)] = 178791, + [SMALL_STATE(6444)] = 178807, + [SMALL_STATE(6445)] = 178823, + [SMALL_STATE(6446)] = 178837, + [SMALL_STATE(6447)] = 178859, + [SMALL_STATE(6448)] = 178875, + [SMALL_STATE(6449)] = 178891, + [SMALL_STATE(6450)] = 178909, + [SMALL_STATE(6451)] = 178931, + [SMALL_STATE(6452)] = 178949, + [SMALL_STATE(6453)] = 178967, + [SMALL_STATE(6454)] = 178985, + [SMALL_STATE(6455)] = 179007, + [SMALL_STATE(6456)] = 179025, + [SMALL_STATE(6457)] = 179041, + [SMALL_STATE(6458)] = 179059, + [SMALL_STATE(6459)] = 179073, + [SMALL_STATE(6460)] = 179091, + [SMALL_STATE(6461)] = 179113, + [SMALL_STATE(6462)] = 179131, + [SMALL_STATE(6463)] = 179149, + [SMALL_STATE(6464)] = 179167, + [SMALL_STATE(6465)] = 179181, + [SMALL_STATE(6466)] = 179201, + [SMALL_STATE(6467)] = 179223, + [SMALL_STATE(6468)] = 179237, + [SMALL_STATE(6469)] = 179255, + [SMALL_STATE(6470)] = 179273, + [SMALL_STATE(6471)] = 179289, + [SMALL_STATE(6472)] = 179311, + [SMALL_STATE(6473)] = 179333, + [SMALL_STATE(6474)] = 179351, + [SMALL_STATE(6475)] = 179373, + [SMALL_STATE(6476)] = 179395, + [SMALL_STATE(6477)] = 179411, + [SMALL_STATE(6478)] = 179433, + [SMALL_STATE(6479)] = 179449, + [SMALL_STATE(6480)] = 179463, + [SMALL_STATE(6481)] = 179485, + [SMALL_STATE(6482)] = 179501, + [SMALL_STATE(6483)] = 179523, + [SMALL_STATE(6484)] = 179545, + [SMALL_STATE(6485)] = 179561, + [SMALL_STATE(6486)] = 179583, + [SMALL_STATE(6487)] = 179605, + [SMALL_STATE(6488)] = 179627, + [SMALL_STATE(6489)] = 179643, + [SMALL_STATE(6490)] = 179665, + [SMALL_STATE(6491)] = 179681, + [SMALL_STATE(6492)] = 179703, + [SMALL_STATE(6493)] = 179721, + [SMALL_STATE(6494)] = 179743, + [SMALL_STATE(6495)] = 179759, + [SMALL_STATE(6496)] = 179781, + [SMALL_STATE(6497)] = 179803, + [SMALL_STATE(6498)] = 179819, + [SMALL_STATE(6499)] = 179841, + [SMALL_STATE(6500)] = 179863, + [SMALL_STATE(6501)] = 179885, + [SMALL_STATE(6502)] = 179903, + [SMALL_STATE(6503)] = 179921, + [SMALL_STATE(6504)] = 179943, + [SMALL_STATE(6505)] = 179961, + [SMALL_STATE(6506)] = 179983, + [SMALL_STATE(6507)] = 180005, + [SMALL_STATE(6508)] = 180021, + [SMALL_STATE(6509)] = 180043, + [SMALL_STATE(6510)] = 180061, + [SMALL_STATE(6511)] = 180083, + [SMALL_STATE(6512)] = 180105, + [SMALL_STATE(6513)] = 180127, + [SMALL_STATE(6514)] = 180145, + [SMALL_STATE(6515)] = 180161, + [SMALL_STATE(6516)] = 180179, + [SMALL_STATE(6517)] = 180201, + [SMALL_STATE(6518)] = 180217, + [SMALL_STATE(6519)] = 180239, + [SMALL_STATE(6520)] = 180261, + [SMALL_STATE(6521)] = 180279, + [SMALL_STATE(6522)] = 180293, + [SMALL_STATE(6523)] = 180311, + [SMALL_STATE(6524)] = 180325, + [SMALL_STATE(6525)] = 180347, + [SMALL_STATE(6526)] = 180363, + [SMALL_STATE(6527)] = 180379, + [SMALL_STATE(6528)] = 180395, + [SMALL_STATE(6529)] = 180417, + [SMALL_STATE(6530)] = 180439, + [SMALL_STATE(6531)] = 180461, + [SMALL_STATE(6532)] = 180479, + [SMALL_STATE(6533)] = 180497, + [SMALL_STATE(6534)] = 180513, + [SMALL_STATE(6535)] = 180531, + [SMALL_STATE(6536)] = 180547, + [SMALL_STATE(6537)] = 180565, + [SMALL_STATE(6538)] = 180583, + [SMALL_STATE(6539)] = 180605, + [SMALL_STATE(6540)] = 180623, + [SMALL_STATE(6541)] = 180641, + [SMALL_STATE(6542)] = 180659, + [SMALL_STATE(6543)] = 180677, + [SMALL_STATE(6544)] = 180695, + [SMALL_STATE(6545)] = 180717, + [SMALL_STATE(6546)] = 180735, + [SMALL_STATE(6547)] = 180753, + [SMALL_STATE(6548)] = 180771, + [SMALL_STATE(6549)] = 180789, + [SMALL_STATE(6550)] = 180807, + [SMALL_STATE(6551)] = 180829, + [SMALL_STATE(6552)] = 180847, + [SMALL_STATE(6553)] = 180869, + [SMALL_STATE(6554)] = 180887, + [SMALL_STATE(6555)] = 180909, + [SMALL_STATE(6556)] = 180923, + [SMALL_STATE(6557)] = 180939, + [SMALL_STATE(6558)] = 180959, + [SMALL_STATE(6559)] = 180977, + [SMALL_STATE(6560)] = 180999, + [SMALL_STATE(6561)] = 181017, + [SMALL_STATE(6562)] = 181039, + [SMALL_STATE(6563)] = 181061, + [SMALL_STATE(6564)] = 181079, + [SMALL_STATE(6565)] = 181101, + [SMALL_STATE(6566)] = 181119, + [SMALL_STATE(6567)] = 181137, + [SMALL_STATE(6568)] = 181155, + [SMALL_STATE(6569)] = 181171, + [SMALL_STATE(6570)] = 181189, + [SMALL_STATE(6571)] = 181207, + [SMALL_STATE(6572)] = 181225, + [SMALL_STATE(6573)] = 181243, + [SMALL_STATE(6574)] = 181263, + [SMALL_STATE(6575)] = 181285, + [SMALL_STATE(6576)] = 181307, + [SMALL_STATE(6577)] = 181329, + [SMALL_STATE(6578)] = 181351, + [SMALL_STATE(6579)] = 181369, + [SMALL_STATE(6580)] = 181389, + [SMALL_STATE(6581)] = 181407, + [SMALL_STATE(6582)] = 181423, + [SMALL_STATE(6583)] = 181445, + [SMALL_STATE(6584)] = 181465, + [SMALL_STATE(6585)] = 181483, + [SMALL_STATE(6586)] = 181503, + [SMALL_STATE(6587)] = 181523, + [SMALL_STATE(6588)] = 181541, + [SMALL_STATE(6589)] = 181561, + [SMALL_STATE(6590)] = 181577, + [SMALL_STATE(6591)] = 181597, + [SMALL_STATE(6592)] = 181615, + [SMALL_STATE(6593)] = 181633, + [SMALL_STATE(6594)] = 181651, + [SMALL_STATE(6595)] = 181669, + [SMALL_STATE(6596)] = 181689, + [SMALL_STATE(6597)] = 181711, + [SMALL_STATE(6598)] = 181729, + [SMALL_STATE(6599)] = 181747, + [SMALL_STATE(6600)] = 181765, + [SMALL_STATE(6601)] = 181785, + [SMALL_STATE(6602)] = 181803, + [SMALL_STATE(6603)] = 181823, + [SMALL_STATE(6604)] = 181839, + [SMALL_STATE(6605)] = 181861, + [SMALL_STATE(6606)] = 181883, + [SMALL_STATE(6607)] = 181905, + [SMALL_STATE(6608)] = 181927, + [SMALL_STATE(6609)] = 181949, + [SMALL_STATE(6610)] = 181967, + [SMALL_STATE(6611)] = 181987, + [SMALL_STATE(6612)] = 182009, + [SMALL_STATE(6613)] = 182031, + [SMALL_STATE(6614)] = 182049, + [SMALL_STATE(6615)] = 182065, + [SMALL_STATE(6616)] = 182083, + [SMALL_STATE(6617)] = 182105, + [SMALL_STATE(6618)] = 182121, + [SMALL_STATE(6619)] = 182139, + [SMALL_STATE(6620)] = 182157, + [SMALL_STATE(6621)] = 182179, + [SMALL_STATE(6622)] = 182201, + [SMALL_STATE(6623)] = 182217, + [SMALL_STATE(6624)] = 182235, + [SMALL_STATE(6625)] = 182253, + [SMALL_STATE(6626)] = 182275, + [SMALL_STATE(6627)] = 182291, + [SMALL_STATE(6628)] = 182307, + [SMALL_STATE(6629)] = 182329, + [SMALL_STATE(6630)] = 182351, + [SMALL_STATE(6631)] = 182369, + [SMALL_STATE(6632)] = 182391, + [SMALL_STATE(6633)] = 182407, + [SMALL_STATE(6634)] = 182425, + [SMALL_STATE(6635)] = 182443, + [SMALL_STATE(6636)] = 182465, + [SMALL_STATE(6637)] = 182483, + [SMALL_STATE(6638)] = 182499, + [SMALL_STATE(6639)] = 182517, + [SMALL_STATE(6640)] = 182539, + [SMALL_STATE(6641)] = 182561, + [SMALL_STATE(6642)] = 182583, + [SMALL_STATE(6643)] = 182599, + [SMALL_STATE(6644)] = 182617, + [SMALL_STATE(6645)] = 182639, + [SMALL_STATE(6646)] = 182657, + [SMALL_STATE(6647)] = 182673, + [SMALL_STATE(6648)] = 182695, + [SMALL_STATE(6649)] = 182709, + [SMALL_STATE(6650)] = 182731, + [SMALL_STATE(6651)] = 182753, + [SMALL_STATE(6652)] = 182775, + [SMALL_STATE(6653)] = 182797, + [SMALL_STATE(6654)] = 182819, + [SMALL_STATE(6655)] = 182841, + [SMALL_STATE(6656)] = 182861, + [SMALL_STATE(6657)] = 182883, + [SMALL_STATE(6658)] = 182899, + [SMALL_STATE(6659)] = 182917, + [SMALL_STATE(6660)] = 182939, + [SMALL_STATE(6661)] = 182957, + [SMALL_STATE(6662)] = 182979, + [SMALL_STATE(6663)] = 182993, + [SMALL_STATE(6664)] = 183015, + [SMALL_STATE(6665)] = 183031, + [SMALL_STATE(6666)] = 183047, + [SMALL_STATE(6667)] = 183069, + [SMALL_STATE(6668)] = 183091, + [SMALL_STATE(6669)] = 183109, + [SMALL_STATE(6670)] = 183129, + [SMALL_STATE(6671)] = 183147, + [SMALL_STATE(6672)] = 183163, + [SMALL_STATE(6673)] = 183183, + [SMALL_STATE(6674)] = 183201, + [SMALL_STATE(6675)] = 183223, + [SMALL_STATE(6676)] = 183241, + [SMALL_STATE(6677)] = 183259, + [SMALL_STATE(6678)] = 183277, + [SMALL_STATE(6679)] = 183297, + [SMALL_STATE(6680)] = 183319, + [SMALL_STATE(6681)] = 183335, + [SMALL_STATE(6682)] = 183353, + [SMALL_STATE(6683)] = 183369, + [SMALL_STATE(6684)] = 183391, + [SMALL_STATE(6685)] = 183409, + [SMALL_STATE(6686)] = 183431, + [SMALL_STATE(6687)] = 183453, + [SMALL_STATE(6688)] = 183471, + [SMALL_STATE(6689)] = 183493, + [SMALL_STATE(6690)] = 183515, + [SMALL_STATE(6691)] = 183533, + [SMALL_STATE(6692)] = 183551, + [SMALL_STATE(6693)] = 183571, + [SMALL_STATE(6694)] = 183585, + [SMALL_STATE(6695)] = 183603, + [SMALL_STATE(6696)] = 183625, + [SMALL_STATE(6697)] = 183639, + [SMALL_STATE(6698)] = 183655, + [SMALL_STATE(6699)] = 183677, + [SMALL_STATE(6700)] = 183693, + [SMALL_STATE(6701)] = 183709, + [SMALL_STATE(6702)] = 183731, + [SMALL_STATE(6703)] = 183747, + [SMALL_STATE(6704)] = 183765, + [SMALL_STATE(6705)] = 183783, + [SMALL_STATE(6706)] = 183801, + [SMALL_STATE(6707)] = 183817, + [SMALL_STATE(6708)] = 183833, + [SMALL_STATE(6709)] = 183849, + [SMALL_STATE(6710)] = 183865, + [SMALL_STATE(6711)] = 183881, + [SMALL_STATE(6712)] = 183903, + [SMALL_STATE(6713)] = 183921, + [SMALL_STATE(6714)] = 183937, + [SMALL_STATE(6715)] = 183953, + [SMALL_STATE(6716)] = 183969, + [SMALL_STATE(6717)] = 183991, + [SMALL_STATE(6718)] = 184007, + [SMALL_STATE(6719)] = 184025, + [SMALL_STATE(6720)] = 184047, + [SMALL_STATE(6721)] = 184063, + [SMALL_STATE(6722)] = 184079, + [SMALL_STATE(6723)] = 184095, + [SMALL_STATE(6724)] = 184111, + [SMALL_STATE(6725)] = 184127, + [SMALL_STATE(6726)] = 184145, + [SMALL_STATE(6727)] = 184163, + [SMALL_STATE(6728)] = 184179, + [SMALL_STATE(6729)] = 184199, + [SMALL_STATE(6730)] = 184215, + [SMALL_STATE(6731)] = 184233, + [SMALL_STATE(6732)] = 184251, + [SMALL_STATE(6733)] = 184267, + [SMALL_STATE(6734)] = 184289, + [SMALL_STATE(6735)] = 184305, + [SMALL_STATE(6736)] = 184321, + [SMALL_STATE(6737)] = 184337, + [SMALL_STATE(6738)] = 184353, + [SMALL_STATE(6739)] = 184369, + [SMALL_STATE(6740)] = 184385, + [SMALL_STATE(6741)] = 184401, + [SMALL_STATE(6742)] = 184417, + [SMALL_STATE(6743)] = 184439, + [SMALL_STATE(6744)] = 184455, + [SMALL_STATE(6745)] = 184471, + [SMALL_STATE(6746)] = 184489, + [SMALL_STATE(6747)] = 184507, + [SMALL_STATE(6748)] = 184525, + [SMALL_STATE(6749)] = 184541, + [SMALL_STATE(6750)] = 184557, + [SMALL_STATE(6751)] = 184573, + [SMALL_STATE(6752)] = 184589, + [SMALL_STATE(6753)] = 184607, + [SMALL_STATE(6754)] = 184623, + [SMALL_STATE(6755)] = 184639, + [SMALL_STATE(6756)] = 184655, + [SMALL_STATE(6757)] = 184673, + [SMALL_STATE(6758)] = 184695, + [SMALL_STATE(6759)] = 184713, + [SMALL_STATE(6760)] = 184731, + [SMALL_STATE(6761)] = 184747, + [SMALL_STATE(6762)] = 184769, + [SMALL_STATE(6763)] = 184787, + [SMALL_STATE(6764)] = 184805, + [SMALL_STATE(6765)] = 184823, + [SMALL_STATE(6766)] = 184841, + [SMALL_STATE(6767)] = 184859, + [SMALL_STATE(6768)] = 184877, + [SMALL_STATE(6769)] = 184893, + [SMALL_STATE(6770)] = 184915, + [SMALL_STATE(6771)] = 184931, + [SMALL_STATE(6772)] = 184947, + [SMALL_STATE(6773)] = 184969, + [SMALL_STATE(6774)] = 184987, + [SMALL_STATE(6775)] = 185005, + [SMALL_STATE(6776)] = 185023, + [SMALL_STATE(6777)] = 185041, + [SMALL_STATE(6778)] = 185059, + [SMALL_STATE(6779)] = 185077, + [SMALL_STATE(6780)] = 185095, + [SMALL_STATE(6781)] = 185111, + [SMALL_STATE(6782)] = 185131, + [SMALL_STATE(6783)] = 185149, + [SMALL_STATE(6784)] = 185167, + [SMALL_STATE(6785)] = 185183, + [SMALL_STATE(6786)] = 185199, + [SMALL_STATE(6787)] = 185215, + [SMALL_STATE(6788)] = 185233, + [SMALL_STATE(6789)] = 185255, + [SMALL_STATE(6790)] = 185275, + [SMALL_STATE(6791)] = 185297, + [SMALL_STATE(6792)] = 185313, + [SMALL_STATE(6793)] = 185331, + [SMALL_STATE(6794)] = 185347, + [SMALL_STATE(6795)] = 185365, + [SMALL_STATE(6796)] = 185387, + [SMALL_STATE(6797)] = 185405, + [SMALL_STATE(6798)] = 185427, + [SMALL_STATE(6799)] = 185449, + [SMALL_STATE(6800)] = 185467, + [SMALL_STATE(6801)] = 185485, + [SMALL_STATE(6802)] = 185507, + [SMALL_STATE(6803)] = 185523, + [SMALL_STATE(6804)] = 185545, + [SMALL_STATE(6805)] = 185567, + [SMALL_STATE(6806)] = 185585, + [SMALL_STATE(6807)] = 185607, + [SMALL_STATE(6808)] = 185627, + [SMALL_STATE(6809)] = 185647, + [SMALL_STATE(6810)] = 185665, + [SMALL_STATE(6811)] = 185681, + [SMALL_STATE(6812)] = 185699, + [SMALL_STATE(6813)] = 185719, + [SMALL_STATE(6814)] = 185737, + [SMALL_STATE(6815)] = 185753, + [SMALL_STATE(6816)] = 185775, + [SMALL_STATE(6817)] = 185791, + [SMALL_STATE(6818)] = 185813, + [SMALL_STATE(6819)] = 185831, + [SMALL_STATE(6820)] = 185853, + [SMALL_STATE(6821)] = 185869, + [SMALL_STATE(6822)] = 185887, + [SMALL_STATE(6823)] = 185903, + [SMALL_STATE(6824)] = 185919, + [SMALL_STATE(6825)] = 185941, + [SMALL_STATE(6826)] = 185959, + [SMALL_STATE(6827)] = 185981, + [SMALL_STATE(6828)] = 185999, + [SMALL_STATE(6829)] = 186021, + [SMALL_STATE(6830)] = 186043, + [SMALL_STATE(6831)] = 186059, + [SMALL_STATE(6832)] = 186077, + [SMALL_STATE(6833)] = 186095, + [SMALL_STATE(6834)] = 186113, + [SMALL_STATE(6835)] = 186135, + [SMALL_STATE(6836)] = 186157, + [SMALL_STATE(6837)] = 186177, + [SMALL_STATE(6838)] = 186199, + [SMALL_STATE(6839)] = 186215, + [SMALL_STATE(6840)] = 186233, + [SMALL_STATE(6841)] = 186251, + [SMALL_STATE(6842)] = 186269, + [SMALL_STATE(6843)] = 186285, + [SMALL_STATE(6844)] = 186303, + [SMALL_STATE(6845)] = 186321, + [SMALL_STATE(6846)] = 186343, + [SMALL_STATE(6847)] = 186359, + [SMALL_STATE(6848)] = 186377, + [SMALL_STATE(6849)] = 186393, + [SMALL_STATE(6850)] = 186407, + [SMALL_STATE(6851)] = 186429, + [SMALL_STATE(6852)] = 186451, + [SMALL_STATE(6853)] = 186473, + [SMALL_STATE(6854)] = 186491, + [SMALL_STATE(6855)] = 186513, + [SMALL_STATE(6856)] = 186535, + [SMALL_STATE(6857)] = 186557, + [SMALL_STATE(6858)] = 186579, + [SMALL_STATE(6859)] = 186601, + [SMALL_STATE(6860)] = 186623, + [SMALL_STATE(6861)] = 186641, + [SMALL_STATE(6862)] = 186663, + [SMALL_STATE(6863)] = 186685, + [SMALL_STATE(6864)] = 186703, + [SMALL_STATE(6865)] = 186719, + [SMALL_STATE(6866)] = 186741, + [SMALL_STATE(6867)] = 186755, + [SMALL_STATE(6868)] = 186777, + [SMALL_STATE(6869)] = 186795, + [SMALL_STATE(6870)] = 186817, + [SMALL_STATE(6871)] = 186833, + [SMALL_STATE(6872)] = 186849, + [SMALL_STATE(6873)] = 186869, + [SMALL_STATE(6874)] = 186885, + [SMALL_STATE(6875)] = 186903, + [SMALL_STATE(6876)] = 186923, + [SMALL_STATE(6877)] = 186943, + [SMALL_STATE(6878)] = 186965, + [SMALL_STATE(6879)] = 186987, + [SMALL_STATE(6880)] = 187003, + [SMALL_STATE(6881)] = 187021, + [SMALL_STATE(6882)] = 187039, + [SMALL_STATE(6883)] = 187055, + [SMALL_STATE(6884)] = 187071, + [SMALL_STATE(6885)] = 187087, + [SMALL_STATE(6886)] = 187105, + [SMALL_STATE(6887)] = 187121, + [SMALL_STATE(6888)] = 187141, + [SMALL_STATE(6889)] = 187163, + [SMALL_STATE(6890)] = 187179, + [SMALL_STATE(6891)] = 187201, + [SMALL_STATE(6892)] = 187217, + [SMALL_STATE(6893)] = 187233, + [SMALL_STATE(6894)] = 187251, + [SMALL_STATE(6895)] = 187269, + [SMALL_STATE(6896)] = 187283, + [SMALL_STATE(6897)] = 187299, + [SMALL_STATE(6898)] = 187319, + [SMALL_STATE(6899)] = 187337, + [SMALL_STATE(6900)] = 187357, + [SMALL_STATE(6901)] = 187377, + [SMALL_STATE(6902)] = 187397, + [SMALL_STATE(6903)] = 187415, + [SMALL_STATE(6904)] = 187437, + [SMALL_STATE(6905)] = 187455, + [SMALL_STATE(6906)] = 187473, + [SMALL_STATE(6907)] = 187491, + [SMALL_STATE(6908)] = 187513, + [SMALL_STATE(6909)] = 187531, + [SMALL_STATE(6910)] = 187547, + [SMALL_STATE(6911)] = 187565, + [SMALL_STATE(6912)] = 187587, + [SMALL_STATE(6913)] = 187605, + [SMALL_STATE(6914)] = 187627, + [SMALL_STATE(6915)] = 187645, + [SMALL_STATE(6916)] = 187665, + [SMALL_STATE(6917)] = 187687, + [SMALL_STATE(6918)] = 187709, + [SMALL_STATE(6919)] = 187729, + [SMALL_STATE(6920)] = 187751, + [SMALL_STATE(6921)] = 187769, + [SMALL_STATE(6922)] = 187789, + [SMALL_STATE(6923)] = 187807, + [SMALL_STATE(6924)] = 187829, + [SMALL_STATE(6925)] = 187847, + [SMALL_STATE(6926)] = 187865, + [SMALL_STATE(6927)] = 187881, + [SMALL_STATE(6928)] = 187903, + [SMALL_STATE(6929)] = 187925, + [SMALL_STATE(6930)] = 187943, + [SMALL_STATE(6931)] = 187963, + [SMALL_STATE(6932)] = 187985, + [SMALL_STATE(6933)] = 188003, + [SMALL_STATE(6934)] = 188025, + [SMALL_STATE(6935)] = 188039, + [SMALL_STATE(6936)] = 188061, + [SMALL_STATE(6937)] = 188083, + [SMALL_STATE(6938)] = 188101, + [SMALL_STATE(6939)] = 188121, + [SMALL_STATE(6940)] = 188143, + [SMALL_STATE(6941)] = 188165, + [SMALL_STATE(6942)] = 188183, + [SMALL_STATE(6943)] = 188201, + [SMALL_STATE(6944)] = 188223, + [SMALL_STATE(6945)] = 188241, + [SMALL_STATE(6946)] = 188261, + [SMALL_STATE(6947)] = 188279, + [SMALL_STATE(6948)] = 188297, + [SMALL_STATE(6949)] = 188317, + [SMALL_STATE(6950)] = 188337, + [SMALL_STATE(6951)] = 188359, + [SMALL_STATE(6952)] = 188381, + [SMALL_STATE(6953)] = 188403, + [SMALL_STATE(6954)] = 188423, + [SMALL_STATE(6955)] = 188439, + [SMALL_STATE(6956)] = 188459, + [SMALL_STATE(6957)] = 188481, + [SMALL_STATE(6958)] = 188499, + [SMALL_STATE(6959)] = 188521, + [SMALL_STATE(6960)] = 188541, + [SMALL_STATE(6961)] = 188559, + [SMALL_STATE(6962)] = 188577, + [SMALL_STATE(6963)] = 188599, + [SMALL_STATE(6964)] = 188621, + [SMALL_STATE(6965)] = 188637, + [SMALL_STATE(6966)] = 188655, + [SMALL_STATE(6967)] = 188673, + [SMALL_STATE(6968)] = 188695, + [SMALL_STATE(6969)] = 188713, + [SMALL_STATE(6970)] = 188731, + [SMALL_STATE(6971)] = 188749, + [SMALL_STATE(6972)] = 188771, + [SMALL_STATE(6973)] = 188789, + [SMALL_STATE(6974)] = 188811, + [SMALL_STATE(6975)] = 188829, + [SMALL_STATE(6976)] = 188851, + [SMALL_STATE(6977)] = 188867, + [SMALL_STATE(6978)] = 188885, + [SMALL_STATE(6979)] = 188907, + [SMALL_STATE(6980)] = 188929, + [SMALL_STATE(6981)] = 188951, + [SMALL_STATE(6982)] = 188973, + [SMALL_STATE(6983)] = 188989, + [SMALL_STATE(6984)] = 189007, + [SMALL_STATE(6985)] = 189029, + [SMALL_STATE(6986)] = 189049, + [SMALL_STATE(6987)] = 189067, + [SMALL_STATE(6988)] = 189081, + [SMALL_STATE(6989)] = 189103, + [SMALL_STATE(6990)] = 189123, + [SMALL_STATE(6991)] = 189145, + [SMALL_STATE(6992)] = 189167, + [SMALL_STATE(6993)] = 189185, + [SMALL_STATE(6994)] = 189205, + [SMALL_STATE(6995)] = 189227, + [SMALL_STATE(6996)] = 189249, + [SMALL_STATE(6997)] = 189269, + [SMALL_STATE(6998)] = 189289, + [SMALL_STATE(6999)] = 189311, + [SMALL_STATE(7000)] = 189333, + [SMALL_STATE(7001)] = 189351, + [SMALL_STATE(7002)] = 189373, + [SMALL_STATE(7003)] = 189395, + [SMALL_STATE(7004)] = 189413, + [SMALL_STATE(7005)] = 189431, + [SMALL_STATE(7006)] = 189449, + [SMALL_STATE(7007)] = 189471, + [SMALL_STATE(7008)] = 189489, + [SMALL_STATE(7009)] = 189511, + [SMALL_STATE(7010)] = 189533, + [SMALL_STATE(7011)] = 189551, + [SMALL_STATE(7012)] = 189571, + [SMALL_STATE(7013)] = 189585, + [SMALL_STATE(7014)] = 189605, + [SMALL_STATE(7015)] = 189627, + [SMALL_STATE(7016)] = 189649, + [SMALL_STATE(7017)] = 189669, + [SMALL_STATE(7018)] = 189687, + [SMALL_STATE(7019)] = 189705, + [SMALL_STATE(7020)] = 189727, + [SMALL_STATE(7021)] = 189745, + [SMALL_STATE(7022)] = 189761, + [SMALL_STATE(7023)] = 189779, + [SMALL_STATE(7024)] = 189801, + [SMALL_STATE(7025)] = 189819, + [SMALL_STATE(7026)] = 189837, + [SMALL_STATE(7027)] = 189859, + [SMALL_STATE(7028)] = 189881, + [SMALL_STATE(7029)] = 189897, + [SMALL_STATE(7030)] = 189917, + [SMALL_STATE(7031)] = 189937, + [SMALL_STATE(7032)] = 189955, + [SMALL_STATE(7033)] = 189973, + [SMALL_STATE(7034)] = 189991, + [SMALL_STATE(7035)] = 190009, + [SMALL_STATE(7036)] = 190027, + [SMALL_STATE(7037)] = 190045, + [SMALL_STATE(7038)] = 190063, + [SMALL_STATE(7039)] = 190081, + [SMALL_STATE(7040)] = 190099, + [SMALL_STATE(7041)] = 190117, + [SMALL_STATE(7042)] = 190135, + [SMALL_STATE(7043)] = 190153, + [SMALL_STATE(7044)] = 190171, + [SMALL_STATE(7045)] = 190189, + [SMALL_STATE(7046)] = 190207, + [SMALL_STATE(7047)] = 190225, + [SMALL_STATE(7048)] = 190243, + [SMALL_STATE(7049)] = 190261, + [SMALL_STATE(7050)] = 190279, + [SMALL_STATE(7051)] = 190292, + [SMALL_STATE(7052)] = 190309, + [SMALL_STATE(7053)] = 190328, + [SMALL_STATE(7054)] = 190345, + [SMALL_STATE(7055)] = 190364, + [SMALL_STATE(7056)] = 190383, + [SMALL_STATE(7057)] = 190396, + [SMALL_STATE(7058)] = 190411, + [SMALL_STATE(7059)] = 190426, + [SMALL_STATE(7060)] = 190445, + [SMALL_STATE(7061)] = 190464, + [SMALL_STATE(7062)] = 190479, + [SMALL_STATE(7063)] = 190498, + [SMALL_STATE(7064)] = 190513, + [SMALL_STATE(7065)] = 190526, + [SMALL_STATE(7066)] = 190545, + [SMALL_STATE(7067)] = 190562, + [SMALL_STATE(7068)] = 190579, + [SMALL_STATE(7069)] = 190598, + [SMALL_STATE(7070)] = 190613, + [SMALL_STATE(7071)] = 190626, + [SMALL_STATE(7072)] = 190645, + [SMALL_STATE(7073)] = 190662, + [SMALL_STATE(7074)] = 190679, + [SMALL_STATE(7075)] = 190692, + [SMALL_STATE(7076)] = 190711, + [SMALL_STATE(7077)] = 190730, + [SMALL_STATE(7078)] = 190749, + [SMALL_STATE(7079)] = 190762, + [SMALL_STATE(7080)] = 190775, + [SMALL_STATE(7081)] = 190794, + [SMALL_STATE(7082)] = 190811, + [SMALL_STATE(7083)] = 190830, + [SMALL_STATE(7084)] = 190847, + [SMALL_STATE(7085)] = 190864, + [SMALL_STATE(7086)] = 190881, + [SMALL_STATE(7087)] = 190900, + [SMALL_STATE(7088)] = 190917, + [SMALL_STATE(7089)] = 190936, + [SMALL_STATE(7090)] = 190955, + [SMALL_STATE(7091)] = 190972, + [SMALL_STATE(7092)] = 190989, + [SMALL_STATE(7093)] = 191006, + [SMALL_STATE(7094)] = 191025, + [SMALL_STATE(7095)] = 191044, + [SMALL_STATE(7096)] = 191063, + [SMALL_STATE(7097)] = 191082, + [SMALL_STATE(7098)] = 191099, + [SMALL_STATE(7099)] = 191116, + [SMALL_STATE(7100)] = 191133, + [SMALL_STATE(7101)] = 191152, + [SMALL_STATE(7102)] = 191171, + [SMALL_STATE(7103)] = 191184, + [SMALL_STATE(7104)] = 191203, + [SMALL_STATE(7105)] = 191222, + [SMALL_STATE(7106)] = 191239, + [SMALL_STATE(7107)] = 191258, + [SMALL_STATE(7108)] = 191271, + [SMALL_STATE(7109)] = 191284, + [SMALL_STATE(7110)] = 191303, + [SMALL_STATE(7111)] = 191316, + [SMALL_STATE(7112)] = 191331, + [SMALL_STATE(7113)] = 191348, + [SMALL_STATE(7114)] = 191365, + [SMALL_STATE(7115)] = 191384, + [SMALL_STATE(7116)] = 191401, + [SMALL_STATE(7117)] = 191420, + [SMALL_STATE(7118)] = 191439, + [SMALL_STATE(7119)] = 191456, + [SMALL_STATE(7120)] = 191475, + [SMALL_STATE(7121)] = 191488, + [SMALL_STATE(7122)] = 191501, + [SMALL_STATE(7123)] = 191520, + [SMALL_STATE(7124)] = 191535, + [SMALL_STATE(7125)] = 191552, + [SMALL_STATE(7126)] = 191569, + [SMALL_STATE(7127)] = 191586, + [SMALL_STATE(7128)] = 191603, + [SMALL_STATE(7129)] = 191622, + [SMALL_STATE(7130)] = 191637, + [SMALL_STATE(7131)] = 191652, + [SMALL_STATE(7132)] = 191669, + [SMALL_STATE(7133)] = 191686, + [SMALL_STATE(7134)] = 191705, + [SMALL_STATE(7135)] = 191724, + [SMALL_STATE(7136)] = 191737, + [SMALL_STATE(7137)] = 191754, + [SMALL_STATE(7138)] = 191767, + [SMALL_STATE(7139)] = 191780, + [SMALL_STATE(7140)] = 191799, + [SMALL_STATE(7141)] = 191812, + [SMALL_STATE(7142)] = 191825, + [SMALL_STATE(7143)] = 191842, + [SMALL_STATE(7144)] = 191861, + [SMALL_STATE(7145)] = 191880, + [SMALL_STATE(7146)] = 191893, + [SMALL_STATE(7147)] = 191912, + [SMALL_STATE(7148)] = 191931, + [SMALL_STATE(7149)] = 191950, + [SMALL_STATE(7150)] = 191969, + [SMALL_STATE(7151)] = 191988, + [SMALL_STATE(7152)] = 192007, + [SMALL_STATE(7153)] = 192026, + [SMALL_STATE(7154)] = 192045, + [SMALL_STATE(7155)] = 192064, + [SMALL_STATE(7156)] = 192083, + [SMALL_STATE(7157)] = 192102, + [SMALL_STATE(7158)] = 192119, + [SMALL_STATE(7159)] = 192132, + [SMALL_STATE(7160)] = 192145, + [SMALL_STATE(7161)] = 192162, + [SMALL_STATE(7162)] = 192179, + [SMALL_STATE(7163)] = 192196, + [SMALL_STATE(7164)] = 192213, + [SMALL_STATE(7165)] = 192226, + [SMALL_STATE(7166)] = 192243, + [SMALL_STATE(7167)] = 192262, + [SMALL_STATE(7168)] = 192281, + [SMALL_STATE(7169)] = 192300, + [SMALL_STATE(7170)] = 192319, + [SMALL_STATE(7171)] = 192336, + [SMALL_STATE(7172)] = 192351, + [SMALL_STATE(7173)] = 192370, + [SMALL_STATE(7174)] = 192385, + [SMALL_STATE(7175)] = 192402, + [SMALL_STATE(7176)] = 192421, + [SMALL_STATE(7177)] = 192440, + [SMALL_STATE(7178)] = 192455, + [SMALL_STATE(7179)] = 192474, + [SMALL_STATE(7180)] = 192489, + [SMALL_STATE(7181)] = 192506, + [SMALL_STATE(7182)] = 192523, + [SMALL_STATE(7183)] = 192540, + [SMALL_STATE(7184)] = 192559, + [SMALL_STATE(7185)] = 192578, + [SMALL_STATE(7186)] = 192591, + [SMALL_STATE(7187)] = 192606, + [SMALL_STATE(7188)] = 192619, + [SMALL_STATE(7189)] = 192638, + [SMALL_STATE(7190)] = 192655, + [SMALL_STATE(7191)] = 192674, + [SMALL_STATE(7192)] = 192687, + [SMALL_STATE(7193)] = 192706, + [SMALL_STATE(7194)] = 192723, + [SMALL_STATE(7195)] = 192740, + [SMALL_STATE(7196)] = 192759, + [SMALL_STATE(7197)] = 192772, + [SMALL_STATE(7198)] = 192791, + [SMALL_STATE(7199)] = 192808, + [SMALL_STATE(7200)] = 192825, + [SMALL_STATE(7201)] = 192844, + [SMALL_STATE(7202)] = 192861, + [SMALL_STATE(7203)] = 192876, + [SMALL_STATE(7204)] = 192895, + [SMALL_STATE(7205)] = 192912, + [SMALL_STATE(7206)] = 192925, + [SMALL_STATE(7207)] = 192938, + [SMALL_STATE(7208)] = 192951, + [SMALL_STATE(7209)] = 192966, + [SMALL_STATE(7210)] = 192981, + [SMALL_STATE(7211)] = 192998, + [SMALL_STATE(7212)] = 193015, + [SMALL_STATE(7213)] = 193032, + [SMALL_STATE(7214)] = 193049, + [SMALL_STATE(7215)] = 193066, + [SMALL_STATE(7216)] = 193083, + [SMALL_STATE(7217)] = 193098, + [SMALL_STATE(7218)] = 193115, + [SMALL_STATE(7219)] = 193132, + [SMALL_STATE(7220)] = 193151, + [SMALL_STATE(7221)] = 193168, + [SMALL_STATE(7222)] = 193185, + [SMALL_STATE(7223)] = 193202, + [SMALL_STATE(7224)] = 193221, + [SMALL_STATE(7225)] = 193240, + [SMALL_STATE(7226)] = 193253, + [SMALL_STATE(7227)] = 193270, + [SMALL_STATE(7228)] = 193283, + [SMALL_STATE(7229)] = 193302, + [SMALL_STATE(7230)] = 193315, + [SMALL_STATE(7231)] = 193330, + [SMALL_STATE(7232)] = 193347, + [SMALL_STATE(7233)] = 193360, + [SMALL_STATE(7234)] = 193377, + [SMALL_STATE(7235)] = 193396, + [SMALL_STATE(7236)] = 193415, + [SMALL_STATE(7237)] = 193434, + [SMALL_STATE(7238)] = 193451, + [SMALL_STATE(7239)] = 193470, + [SMALL_STATE(7240)] = 193489, + [SMALL_STATE(7241)] = 193508, + [SMALL_STATE(7242)] = 193527, + [SMALL_STATE(7243)] = 193544, + [SMALL_STATE(7244)] = 193563, + [SMALL_STATE(7245)] = 193582, + [SMALL_STATE(7246)] = 193601, + [SMALL_STATE(7247)] = 193618, + [SMALL_STATE(7248)] = 193637, + [SMALL_STATE(7249)] = 193654, + [SMALL_STATE(7250)] = 193673, + [SMALL_STATE(7251)] = 193692, + [SMALL_STATE(7252)] = 193711, + [SMALL_STATE(7253)] = 193730, + [SMALL_STATE(7254)] = 193747, + [SMALL_STATE(7255)] = 193762, + [SMALL_STATE(7256)] = 193781, + [SMALL_STATE(7257)] = 193800, + [SMALL_STATE(7258)] = 193815, + [SMALL_STATE(7259)] = 193834, + [SMALL_STATE(7260)] = 193853, + [SMALL_STATE(7261)] = 193872, + [SMALL_STATE(7262)] = 193891, + [SMALL_STATE(7263)] = 193908, + [SMALL_STATE(7264)] = 193925, + [SMALL_STATE(7265)] = 193942, + [SMALL_STATE(7266)] = 193955, + [SMALL_STATE(7267)] = 193974, + [SMALL_STATE(7268)] = 193987, + [SMALL_STATE(7269)] = 194004, + [SMALL_STATE(7270)] = 194023, + [SMALL_STATE(7271)] = 194038, + [SMALL_STATE(7272)] = 194053, + [SMALL_STATE(7273)] = 194070, + [SMALL_STATE(7274)] = 194089, + [SMALL_STATE(7275)] = 194106, + [SMALL_STATE(7276)] = 194123, + [SMALL_STATE(7277)] = 194136, + [SMALL_STATE(7278)] = 194155, + [SMALL_STATE(7279)] = 194174, + [SMALL_STATE(7280)] = 194193, + [SMALL_STATE(7281)] = 194210, + [SMALL_STATE(7282)] = 194229, + [SMALL_STATE(7283)] = 194246, + [SMALL_STATE(7284)] = 194259, + [SMALL_STATE(7285)] = 194272, + [SMALL_STATE(7286)] = 194287, + [SMALL_STATE(7287)] = 194304, + [SMALL_STATE(7288)] = 194321, + [SMALL_STATE(7289)] = 194338, + [SMALL_STATE(7290)] = 194353, + [SMALL_STATE(7291)] = 194372, + [SMALL_STATE(7292)] = 194391, + [SMALL_STATE(7293)] = 194410, + [SMALL_STATE(7294)] = 194429, + [SMALL_STATE(7295)] = 194446, + [SMALL_STATE(7296)] = 194463, + [SMALL_STATE(7297)] = 194476, + [SMALL_STATE(7298)] = 194493, + [SMALL_STATE(7299)] = 194510, + [SMALL_STATE(7300)] = 194529, + [SMALL_STATE(7301)] = 194546, + [SMALL_STATE(7302)] = 194565, + [SMALL_STATE(7303)] = 194582, + [SMALL_STATE(7304)] = 194601, + [SMALL_STATE(7305)] = 194620, + [SMALL_STATE(7306)] = 194639, + [SMALL_STATE(7307)] = 194658, + [SMALL_STATE(7308)] = 194675, + [SMALL_STATE(7309)] = 194694, + [SMALL_STATE(7310)] = 194707, + [SMALL_STATE(7311)] = 194724, + [SMALL_STATE(7312)] = 194741, + [SMALL_STATE(7313)] = 194760, + [SMALL_STATE(7314)] = 194777, + [SMALL_STATE(7315)] = 194796, + [SMALL_STATE(7316)] = 194815, + [SMALL_STATE(7317)] = 194834, + [SMALL_STATE(7318)] = 194853, + [SMALL_STATE(7319)] = 194872, + [SMALL_STATE(7320)] = 194891, + [SMALL_STATE(7321)] = 194910, + [SMALL_STATE(7322)] = 194929, + [SMALL_STATE(7323)] = 194946, + [SMALL_STATE(7324)] = 194965, + [SMALL_STATE(7325)] = 194984, + [SMALL_STATE(7326)] = 195003, + [SMALL_STATE(7327)] = 195022, + [SMALL_STATE(7328)] = 195041, + [SMALL_STATE(7329)] = 195058, + [SMALL_STATE(7330)] = 195077, + [SMALL_STATE(7331)] = 195092, + [SMALL_STATE(7332)] = 195111, + [SMALL_STATE(7333)] = 195128, + [SMALL_STATE(7334)] = 195143, + [SMALL_STATE(7335)] = 195158, + [SMALL_STATE(7336)] = 195177, + [SMALL_STATE(7337)] = 195196, + [SMALL_STATE(7338)] = 195209, + [SMALL_STATE(7339)] = 195228, + [SMALL_STATE(7340)] = 195245, + [SMALL_STATE(7341)] = 195264, + [SMALL_STATE(7342)] = 195283, + [SMALL_STATE(7343)] = 195300, + [SMALL_STATE(7344)] = 195319, + [SMALL_STATE(7345)] = 195338, + [SMALL_STATE(7346)] = 195353, + [SMALL_STATE(7347)] = 195372, + [SMALL_STATE(7348)] = 195389, + [SMALL_STATE(7349)] = 195408, + [SMALL_STATE(7350)] = 195427, + [SMALL_STATE(7351)] = 195446, + [SMALL_STATE(7352)] = 195465, + [SMALL_STATE(7353)] = 195484, + [SMALL_STATE(7354)] = 195501, + [SMALL_STATE(7355)] = 195517, + [SMALL_STATE(7356)] = 195533, + [SMALL_STATE(7357)] = 195549, + [SMALL_STATE(7358)] = 195565, + [SMALL_STATE(7359)] = 195581, + [SMALL_STATE(7360)] = 195597, + [SMALL_STATE(7361)] = 195609, + [SMALL_STATE(7362)] = 195623, + [SMALL_STATE(7363)] = 195635, + [SMALL_STATE(7364)] = 195651, + [SMALL_STATE(7365)] = 195663, + [SMALL_STATE(7366)] = 195675, + [SMALL_STATE(7367)] = 195691, + [SMALL_STATE(7368)] = 195707, + [SMALL_STATE(7369)] = 195723, + [SMALL_STATE(7370)] = 195739, + [SMALL_STATE(7371)] = 195753, + [SMALL_STATE(7372)] = 195765, + [SMALL_STATE(7373)] = 195777, + [SMALL_STATE(7374)] = 195793, + [SMALL_STATE(7375)] = 195809, + [SMALL_STATE(7376)] = 195821, + [SMALL_STATE(7377)] = 195837, + [SMALL_STATE(7378)] = 195853, + [SMALL_STATE(7379)] = 195869, + [SMALL_STATE(7380)] = 195885, + [SMALL_STATE(7381)] = 195901, + [SMALL_STATE(7382)] = 195917, + [SMALL_STATE(7383)] = 195933, + [SMALL_STATE(7384)] = 195949, + [SMALL_STATE(7385)] = 195965, + [SMALL_STATE(7386)] = 195981, + [SMALL_STATE(7387)] = 195997, + [SMALL_STATE(7388)] = 196013, + [SMALL_STATE(7389)] = 196029, + [SMALL_STATE(7390)] = 196045, + [SMALL_STATE(7391)] = 196061, + [SMALL_STATE(7392)] = 196077, + [SMALL_STATE(7393)] = 196093, + [SMALL_STATE(7394)] = 196109, + [SMALL_STATE(7395)] = 196125, + [SMALL_STATE(7396)] = 196137, + [SMALL_STATE(7397)] = 196149, + [SMALL_STATE(7398)] = 196165, + [SMALL_STATE(7399)] = 196181, + [SMALL_STATE(7400)] = 196197, + [SMALL_STATE(7401)] = 196213, + [SMALL_STATE(7402)] = 196229, + [SMALL_STATE(7403)] = 196245, + [SMALL_STATE(7404)] = 196261, + [SMALL_STATE(7405)] = 196277, + [SMALL_STATE(7406)] = 196293, + [SMALL_STATE(7407)] = 196305, + [SMALL_STATE(7408)] = 196321, + [SMALL_STATE(7409)] = 196337, + [SMALL_STATE(7410)] = 196349, + [SMALL_STATE(7411)] = 196365, + [SMALL_STATE(7412)] = 196381, + [SMALL_STATE(7413)] = 196397, + [SMALL_STATE(7414)] = 196413, + [SMALL_STATE(7415)] = 196429, + [SMALL_STATE(7416)] = 196445, + [SMALL_STATE(7417)] = 196461, + [SMALL_STATE(7418)] = 196477, + [SMALL_STATE(7419)] = 196493, + [SMALL_STATE(7420)] = 196509, + [SMALL_STATE(7421)] = 196525, + [SMALL_STATE(7422)] = 196541, + [SMALL_STATE(7423)] = 196557, + [SMALL_STATE(7424)] = 196569, + [SMALL_STATE(7425)] = 196585, + [SMALL_STATE(7426)] = 196601, + [SMALL_STATE(7427)] = 196617, + [SMALL_STATE(7428)] = 196633, + [SMALL_STATE(7429)] = 196649, + [SMALL_STATE(7430)] = 196665, + [SMALL_STATE(7431)] = 196681, + [SMALL_STATE(7432)] = 196697, + [SMALL_STATE(7433)] = 196713, + [SMALL_STATE(7434)] = 196729, + [SMALL_STATE(7435)] = 196745, + [SMALL_STATE(7436)] = 196761, + [SMALL_STATE(7437)] = 196777, + [SMALL_STATE(7438)] = 196793, + [SMALL_STATE(7439)] = 196809, + [SMALL_STATE(7440)] = 196825, + [SMALL_STATE(7441)] = 196841, + [SMALL_STATE(7442)] = 196855, + [SMALL_STATE(7443)] = 196871, + [SMALL_STATE(7444)] = 196887, + [SMALL_STATE(7445)] = 196903, + [SMALL_STATE(7446)] = 196919, + [SMALL_STATE(7447)] = 196935, + [SMALL_STATE(7448)] = 196951, + [SMALL_STATE(7449)] = 196967, + [SMALL_STATE(7450)] = 196983, + [SMALL_STATE(7451)] = 196999, + [SMALL_STATE(7452)] = 197015, + [SMALL_STATE(7453)] = 197031, + [SMALL_STATE(7454)] = 197047, + [SMALL_STATE(7455)] = 197063, + [SMALL_STATE(7456)] = 197079, + [SMALL_STATE(7457)] = 197095, + [SMALL_STATE(7458)] = 197111, + [SMALL_STATE(7459)] = 197127, + [SMALL_STATE(7460)] = 197143, + [SMALL_STATE(7461)] = 197159, + [SMALL_STATE(7462)] = 197175, + [SMALL_STATE(7463)] = 197191, + [SMALL_STATE(7464)] = 197207, + [SMALL_STATE(7465)] = 197223, + [SMALL_STATE(7466)] = 197235, + [SMALL_STATE(7467)] = 197251, + [SMALL_STATE(7468)] = 197267, + [SMALL_STATE(7469)] = 197283, + [SMALL_STATE(7470)] = 197299, + [SMALL_STATE(7471)] = 197315, + [SMALL_STATE(7472)] = 197331, + [SMALL_STATE(7473)] = 197347, + [SMALL_STATE(7474)] = 197363, + [SMALL_STATE(7475)] = 197379, + [SMALL_STATE(7476)] = 197395, + [SMALL_STATE(7477)] = 197411, + [SMALL_STATE(7478)] = 197427, + [SMALL_STATE(7479)] = 197443, + [SMALL_STATE(7480)] = 197459, + [SMALL_STATE(7481)] = 197475, + [SMALL_STATE(7482)] = 197489, + [SMALL_STATE(7483)] = 197501, + [SMALL_STATE(7484)] = 197517, + [SMALL_STATE(7485)] = 197533, + [SMALL_STATE(7486)] = 197549, + [SMALL_STATE(7487)] = 197565, + [SMALL_STATE(7488)] = 197581, + [SMALL_STATE(7489)] = 197597, + [SMALL_STATE(7490)] = 197613, + [SMALL_STATE(7491)] = 197629, + [SMALL_STATE(7492)] = 197645, + [SMALL_STATE(7493)] = 197657, + [SMALL_STATE(7494)] = 197673, + [SMALL_STATE(7495)] = 197689, + [SMALL_STATE(7496)] = 197701, + [SMALL_STATE(7497)] = 197717, + [SMALL_STATE(7498)] = 197733, + [SMALL_STATE(7499)] = 197749, + [SMALL_STATE(7500)] = 197765, + [SMALL_STATE(7501)] = 197781, + [SMALL_STATE(7502)] = 197797, + [SMALL_STATE(7503)] = 197813, + [SMALL_STATE(7504)] = 197829, + [SMALL_STATE(7505)] = 197845, + [SMALL_STATE(7506)] = 197861, + [SMALL_STATE(7507)] = 197877, + [SMALL_STATE(7508)] = 197893, + [SMALL_STATE(7509)] = 197909, + [SMALL_STATE(7510)] = 197921, + [SMALL_STATE(7511)] = 197933, + [SMALL_STATE(7512)] = 197945, + [SMALL_STATE(7513)] = 197961, + [SMALL_STATE(7514)] = 197977, + [SMALL_STATE(7515)] = 197993, + [SMALL_STATE(7516)] = 198009, + [SMALL_STATE(7517)] = 198025, + [SMALL_STATE(7518)] = 198037, + [SMALL_STATE(7519)] = 198053, + [SMALL_STATE(7520)] = 198065, + [SMALL_STATE(7521)] = 198077, + [SMALL_STATE(7522)] = 198089, + [SMALL_STATE(7523)] = 198101, + [SMALL_STATE(7524)] = 198117, + [SMALL_STATE(7525)] = 198129, + [SMALL_STATE(7526)] = 198141, + [SMALL_STATE(7527)] = 198157, + [SMALL_STATE(7528)] = 198173, + [SMALL_STATE(7529)] = 198189, + [SMALL_STATE(7530)] = 198205, + [SMALL_STATE(7531)] = 198217, + [SMALL_STATE(7532)] = 198233, + [SMALL_STATE(7533)] = 198249, + [SMALL_STATE(7534)] = 198265, + [SMALL_STATE(7535)] = 198281, + [SMALL_STATE(7536)] = 198295, + [SMALL_STATE(7537)] = 198311, + [SMALL_STATE(7538)] = 198327, + [SMALL_STATE(7539)] = 198343, + [SMALL_STATE(7540)] = 198359, + [SMALL_STATE(7541)] = 198375, + [SMALL_STATE(7542)] = 198387, + [SMALL_STATE(7543)] = 198403, + [SMALL_STATE(7544)] = 198415, + [SMALL_STATE(7545)] = 198431, + [SMALL_STATE(7546)] = 198447, + [SMALL_STATE(7547)] = 198463, + [SMALL_STATE(7548)] = 198479, + [SMALL_STATE(7549)] = 198495, + [SMALL_STATE(7550)] = 198511, + [SMALL_STATE(7551)] = 198527, + [SMALL_STATE(7552)] = 198543, + [SMALL_STATE(7553)] = 198559, + [SMALL_STATE(7554)] = 198571, + [SMALL_STATE(7555)] = 198587, + [SMALL_STATE(7556)] = 198603, + [SMALL_STATE(7557)] = 198619, + [SMALL_STATE(7558)] = 198635, + [SMALL_STATE(7559)] = 198647, + [SMALL_STATE(7560)] = 198659, + [SMALL_STATE(7561)] = 198675, + [SMALL_STATE(7562)] = 198691, + [SMALL_STATE(7563)] = 198707, + [SMALL_STATE(7564)] = 198719, + [SMALL_STATE(7565)] = 198735, + [SMALL_STATE(7566)] = 198747, + [SMALL_STATE(7567)] = 198763, + [SMALL_STATE(7568)] = 198779, + [SMALL_STATE(7569)] = 198795, + [SMALL_STATE(7570)] = 198807, + [SMALL_STATE(7571)] = 198823, + [SMALL_STATE(7572)] = 198839, + [SMALL_STATE(7573)] = 198855, + [SMALL_STATE(7574)] = 198869, + [SMALL_STATE(7575)] = 198881, + [SMALL_STATE(7576)] = 198897, + [SMALL_STATE(7577)] = 198913, + [SMALL_STATE(7578)] = 198929, + [SMALL_STATE(7579)] = 198945, + [SMALL_STATE(7580)] = 198961, + [SMALL_STATE(7581)] = 198977, + [SMALL_STATE(7582)] = 198993, + [SMALL_STATE(7583)] = 199009, + [SMALL_STATE(7584)] = 199025, + [SMALL_STATE(7585)] = 199037, + [SMALL_STATE(7586)] = 199053, + [SMALL_STATE(7587)] = 199065, + [SMALL_STATE(7588)] = 199081, + [SMALL_STATE(7589)] = 199097, + [SMALL_STATE(7590)] = 199111, + [SMALL_STATE(7591)] = 199127, + [SMALL_STATE(7592)] = 199139, + [SMALL_STATE(7593)] = 199151, + [SMALL_STATE(7594)] = 199163, + [SMALL_STATE(7595)] = 199179, + [SMALL_STATE(7596)] = 199193, + [SMALL_STATE(7597)] = 199209, + [SMALL_STATE(7598)] = 199225, + [SMALL_STATE(7599)] = 199237, + [SMALL_STATE(7600)] = 199253, + [SMALL_STATE(7601)] = 199269, + [SMALL_STATE(7602)] = 199285, + [SMALL_STATE(7603)] = 199297, + [SMALL_STATE(7604)] = 199313, + [SMALL_STATE(7605)] = 199329, + [SMALL_STATE(7606)] = 199343, + [SMALL_STATE(7607)] = 199357, + [SMALL_STATE(7608)] = 199373, + [SMALL_STATE(7609)] = 199389, + [SMALL_STATE(7610)] = 199401, + [SMALL_STATE(7611)] = 199417, + [SMALL_STATE(7612)] = 199433, + [SMALL_STATE(7613)] = 199449, + [SMALL_STATE(7614)] = 199465, + [SMALL_STATE(7615)] = 199481, + [SMALL_STATE(7616)] = 199497, + [SMALL_STATE(7617)] = 199513, + [SMALL_STATE(7618)] = 199529, + [SMALL_STATE(7619)] = 199545, + [SMALL_STATE(7620)] = 199561, + [SMALL_STATE(7621)] = 199577, + [SMALL_STATE(7622)] = 199593, + [SMALL_STATE(7623)] = 199609, + [SMALL_STATE(7624)] = 199625, + [SMALL_STATE(7625)] = 199641, + [SMALL_STATE(7626)] = 199653, + [SMALL_STATE(7627)] = 199669, + [SMALL_STATE(7628)] = 199685, + [SMALL_STATE(7629)] = 199701, + [SMALL_STATE(7630)] = 199717, + [SMALL_STATE(7631)] = 199729, + [SMALL_STATE(7632)] = 199745, + [SMALL_STATE(7633)] = 199761, + [SMALL_STATE(7634)] = 199773, + [SMALL_STATE(7635)] = 199785, + [SMALL_STATE(7636)] = 199801, + [SMALL_STATE(7637)] = 199817, + [SMALL_STATE(7638)] = 199833, + [SMALL_STATE(7639)] = 199845, + [SMALL_STATE(7640)] = 199861, + [SMALL_STATE(7641)] = 199877, + [SMALL_STATE(7642)] = 199893, + [SMALL_STATE(7643)] = 199909, + [SMALL_STATE(7644)] = 199925, + [SMALL_STATE(7645)] = 199941, + [SMALL_STATE(7646)] = 199957, + [SMALL_STATE(7647)] = 199973, + [SMALL_STATE(7648)] = 199989, + [SMALL_STATE(7649)] = 200005, + [SMALL_STATE(7650)] = 200021, + [SMALL_STATE(7651)] = 200033, + [SMALL_STATE(7652)] = 200049, + [SMALL_STATE(7653)] = 200065, + [SMALL_STATE(7654)] = 200081, + [SMALL_STATE(7655)] = 200093, + [SMALL_STATE(7656)] = 200105, + [SMALL_STATE(7657)] = 200121, + [SMALL_STATE(7658)] = 200135, + [SMALL_STATE(7659)] = 200151, + [SMALL_STATE(7660)] = 200167, + [SMALL_STATE(7661)] = 200183, + [SMALL_STATE(7662)] = 200199, + [SMALL_STATE(7663)] = 200215, + [SMALL_STATE(7664)] = 200227, + [SMALL_STATE(7665)] = 200243, + [SMALL_STATE(7666)] = 200259, + [SMALL_STATE(7667)] = 200275, + [SMALL_STATE(7668)] = 200291, + [SMALL_STATE(7669)] = 200307, + [SMALL_STATE(7670)] = 200323, + [SMALL_STATE(7671)] = 200339, + [SMALL_STATE(7672)] = 200355, + [SMALL_STATE(7673)] = 200371, + [SMALL_STATE(7674)] = 200387, + [SMALL_STATE(7675)] = 200403, + [SMALL_STATE(7676)] = 200419, + [SMALL_STATE(7677)] = 200431, + [SMALL_STATE(7678)] = 200443, + [SMALL_STATE(7679)] = 200455, + [SMALL_STATE(7680)] = 200471, + [SMALL_STATE(7681)] = 200487, + [SMALL_STATE(7682)] = 200503, + [SMALL_STATE(7683)] = 200519, + [SMALL_STATE(7684)] = 200535, + [SMALL_STATE(7685)] = 200551, + [SMALL_STATE(7686)] = 200567, + [SMALL_STATE(7687)] = 200583, + [SMALL_STATE(7688)] = 200599, + [SMALL_STATE(7689)] = 200615, + [SMALL_STATE(7690)] = 200631, + [SMALL_STATE(7691)] = 200647, + [SMALL_STATE(7692)] = 200663, + [SMALL_STATE(7693)] = 200679, + [SMALL_STATE(7694)] = 200695, + [SMALL_STATE(7695)] = 200711, + [SMALL_STATE(7696)] = 200727, + [SMALL_STATE(7697)] = 200743, + [SMALL_STATE(7698)] = 200759, + [SMALL_STATE(7699)] = 200775, + [SMALL_STATE(7700)] = 200787, + [SMALL_STATE(7701)] = 200803, + [SMALL_STATE(7702)] = 200819, + [SMALL_STATE(7703)] = 200835, + [SMALL_STATE(7704)] = 200851, + [SMALL_STATE(7705)] = 200867, + [SMALL_STATE(7706)] = 200883, + [SMALL_STATE(7707)] = 200895, + [SMALL_STATE(7708)] = 200911, + [SMALL_STATE(7709)] = 200927, + [SMALL_STATE(7710)] = 200943, + [SMALL_STATE(7711)] = 200959, + [SMALL_STATE(7712)] = 200975, + [SMALL_STATE(7713)] = 200991, + [SMALL_STATE(7714)] = 201007, + [SMALL_STATE(7715)] = 201019, + [SMALL_STATE(7716)] = 201033, + [SMALL_STATE(7717)] = 201049, + [SMALL_STATE(7718)] = 201061, + [SMALL_STATE(7719)] = 201073, + [SMALL_STATE(7720)] = 201089, + [SMALL_STATE(7721)] = 201105, + [SMALL_STATE(7722)] = 201121, + [SMALL_STATE(7723)] = 201133, + [SMALL_STATE(7724)] = 201149, + [SMALL_STATE(7725)] = 201165, + [SMALL_STATE(7726)] = 201181, + [SMALL_STATE(7727)] = 201197, + [SMALL_STATE(7728)] = 201213, + [SMALL_STATE(7729)] = 201225, + [SMALL_STATE(7730)] = 201237, + [SMALL_STATE(7731)] = 201253, + [SMALL_STATE(7732)] = 201269, + [SMALL_STATE(7733)] = 201285, + [SMALL_STATE(7734)] = 201301, + [SMALL_STATE(7735)] = 201313, + [SMALL_STATE(7736)] = 201329, + [SMALL_STATE(7737)] = 201345, + [SMALL_STATE(7738)] = 201361, + [SMALL_STATE(7739)] = 201377, + [SMALL_STATE(7740)] = 201393, + [SMALL_STATE(7741)] = 201409, + [SMALL_STATE(7742)] = 201425, + [SMALL_STATE(7743)] = 201441, + [SMALL_STATE(7744)] = 201457, + [SMALL_STATE(7745)] = 201473, + [SMALL_STATE(7746)] = 201489, + [SMALL_STATE(7747)] = 201501, + [SMALL_STATE(7748)] = 201517, + [SMALL_STATE(7749)] = 201529, + [SMALL_STATE(7750)] = 201545, + [SMALL_STATE(7751)] = 201557, + [SMALL_STATE(7752)] = 201573, + [SMALL_STATE(7753)] = 201589, + [SMALL_STATE(7754)] = 201605, + [SMALL_STATE(7755)] = 201621, + [SMALL_STATE(7756)] = 201637, + [SMALL_STATE(7757)] = 201649, + [SMALL_STATE(7758)] = 201665, + [SMALL_STATE(7759)] = 201681, + [SMALL_STATE(7760)] = 201697, + [SMALL_STATE(7761)] = 201713, + [SMALL_STATE(7762)] = 201729, + [SMALL_STATE(7763)] = 201745, + [SMALL_STATE(7764)] = 201761, + [SMALL_STATE(7765)] = 201773, + [SMALL_STATE(7766)] = 201789, + [SMALL_STATE(7767)] = 201801, + [SMALL_STATE(7768)] = 201817, + [SMALL_STATE(7769)] = 201833, + [SMALL_STATE(7770)] = 201847, + [SMALL_STATE(7771)] = 201861, + [SMALL_STATE(7772)] = 201877, + [SMALL_STATE(7773)] = 201889, + [SMALL_STATE(7774)] = 201905, + [SMALL_STATE(7775)] = 201921, + [SMALL_STATE(7776)] = 201937, + [SMALL_STATE(7777)] = 201949, + [SMALL_STATE(7778)] = 201965, + [SMALL_STATE(7779)] = 201977, + [SMALL_STATE(7780)] = 201993, + [SMALL_STATE(7781)] = 202005, + [SMALL_STATE(7782)] = 202017, + [SMALL_STATE(7783)] = 202029, + [SMALL_STATE(7784)] = 202045, + [SMALL_STATE(7785)] = 202061, + [SMALL_STATE(7786)] = 202077, + [SMALL_STATE(7787)] = 202093, + [SMALL_STATE(7788)] = 202109, + [SMALL_STATE(7789)] = 202121, + [SMALL_STATE(7790)] = 202137, + [SMALL_STATE(7791)] = 202153, + [SMALL_STATE(7792)] = 202169, + [SMALL_STATE(7793)] = 202185, + [SMALL_STATE(7794)] = 202197, + [SMALL_STATE(7795)] = 202213, + [SMALL_STATE(7796)] = 202229, + [SMALL_STATE(7797)] = 202245, + [SMALL_STATE(7798)] = 202261, + [SMALL_STATE(7799)] = 202277, + [SMALL_STATE(7800)] = 202293, + [SMALL_STATE(7801)] = 202309, + [SMALL_STATE(7802)] = 202321, + [SMALL_STATE(7803)] = 202337, + [SMALL_STATE(7804)] = 202353, + [SMALL_STATE(7805)] = 202369, + [SMALL_STATE(7806)] = 202385, + [SMALL_STATE(7807)] = 202401, + [SMALL_STATE(7808)] = 202417, + [SMALL_STATE(7809)] = 202433, + [SMALL_STATE(7810)] = 202449, + [SMALL_STATE(7811)] = 202461, + [SMALL_STATE(7812)] = 202477, + [SMALL_STATE(7813)] = 202493, + [SMALL_STATE(7814)] = 202509, + [SMALL_STATE(7815)] = 202525, + [SMALL_STATE(7816)] = 202541, + [SMALL_STATE(7817)] = 202557, + [SMALL_STATE(7818)] = 202573, + [SMALL_STATE(7819)] = 202589, + [SMALL_STATE(7820)] = 202605, + [SMALL_STATE(7821)] = 202621, + [SMALL_STATE(7822)] = 202637, + [SMALL_STATE(7823)] = 202653, + [SMALL_STATE(7824)] = 202669, + [SMALL_STATE(7825)] = 202685, + [SMALL_STATE(7826)] = 202697, + [SMALL_STATE(7827)] = 202713, + [SMALL_STATE(7828)] = 202729, + [SMALL_STATE(7829)] = 202745, + [SMALL_STATE(7830)] = 202761, + [SMALL_STATE(7831)] = 202777, + [SMALL_STATE(7832)] = 202793, + [SMALL_STATE(7833)] = 202809, + [SMALL_STATE(7834)] = 202825, + [SMALL_STATE(7835)] = 202841, + [SMALL_STATE(7836)] = 202857, + [SMALL_STATE(7837)] = 202873, + [SMALL_STATE(7838)] = 202889, + [SMALL_STATE(7839)] = 202905, + [SMALL_STATE(7840)] = 202921, + [SMALL_STATE(7841)] = 202937, + [SMALL_STATE(7842)] = 202953, + [SMALL_STATE(7843)] = 202969, + [SMALL_STATE(7844)] = 202985, + [SMALL_STATE(7845)] = 203001, + [SMALL_STATE(7846)] = 203017, + [SMALL_STATE(7847)] = 203029, + [SMALL_STATE(7848)] = 203041, + [SMALL_STATE(7849)] = 203057, + [SMALL_STATE(7850)] = 203071, + [SMALL_STATE(7851)] = 203087, + [SMALL_STATE(7852)] = 203099, + [SMALL_STATE(7853)] = 203115, + [SMALL_STATE(7854)] = 203131, + [SMALL_STATE(7855)] = 203147, + [SMALL_STATE(7856)] = 203159, + [SMALL_STATE(7857)] = 203175, + [SMALL_STATE(7858)] = 203191, + [SMALL_STATE(7859)] = 203207, + [SMALL_STATE(7860)] = 203223, + [SMALL_STATE(7861)] = 203239, + [SMALL_STATE(7862)] = 203255, + [SMALL_STATE(7863)] = 203271, + [SMALL_STATE(7864)] = 203287, + [SMALL_STATE(7865)] = 203299, + [SMALL_STATE(7866)] = 203311, + [SMALL_STATE(7867)] = 203327, + [SMALL_STATE(7868)] = 203343, + [SMALL_STATE(7869)] = 203359, + [SMALL_STATE(7870)] = 203371, + [SMALL_STATE(7871)] = 203383, + [SMALL_STATE(7872)] = 203399, + [SMALL_STATE(7873)] = 203415, + [SMALL_STATE(7874)] = 203431, + [SMALL_STATE(7875)] = 203447, + [SMALL_STATE(7876)] = 203463, + [SMALL_STATE(7877)] = 203479, + [SMALL_STATE(7878)] = 203495, + [SMALL_STATE(7879)] = 203511, + [SMALL_STATE(7880)] = 203527, + [SMALL_STATE(7881)] = 203543, + [SMALL_STATE(7882)] = 203559, + [SMALL_STATE(7883)] = 203575, + [SMALL_STATE(7884)] = 203591, + [SMALL_STATE(7885)] = 203607, + [SMALL_STATE(7886)] = 203621, + [SMALL_STATE(7887)] = 203637, + [SMALL_STATE(7888)] = 203653, + [SMALL_STATE(7889)] = 203669, + [SMALL_STATE(7890)] = 203681, + [SMALL_STATE(7891)] = 203697, + [SMALL_STATE(7892)] = 203713, + [SMALL_STATE(7893)] = 203729, + [SMALL_STATE(7894)] = 203745, + [SMALL_STATE(7895)] = 203761, + [SMALL_STATE(7896)] = 203777, + [SMALL_STATE(7897)] = 203793, + [SMALL_STATE(7898)] = 203805, + [SMALL_STATE(7899)] = 203821, + [SMALL_STATE(7900)] = 203837, + [SMALL_STATE(7901)] = 203853, + [SMALL_STATE(7902)] = 203869, + [SMALL_STATE(7903)] = 203885, + [SMALL_STATE(7904)] = 203901, + [SMALL_STATE(7905)] = 203917, + [SMALL_STATE(7906)] = 203933, + [SMALL_STATE(7907)] = 203945, + [SMALL_STATE(7908)] = 203961, + [SMALL_STATE(7909)] = 203973, + [SMALL_STATE(7910)] = 203989, + [SMALL_STATE(7911)] = 204005, + [SMALL_STATE(7912)] = 204021, + [SMALL_STATE(7913)] = 204037, + [SMALL_STATE(7914)] = 204053, + [SMALL_STATE(7915)] = 204069, + [SMALL_STATE(7916)] = 204085, + [SMALL_STATE(7917)] = 204101, + [SMALL_STATE(7918)] = 204117, + [SMALL_STATE(7919)] = 204133, + [SMALL_STATE(7920)] = 204149, + [SMALL_STATE(7921)] = 204165, + [SMALL_STATE(7922)] = 204181, + [SMALL_STATE(7923)] = 204197, + [SMALL_STATE(7924)] = 204209, + [SMALL_STATE(7925)] = 204225, + [SMALL_STATE(7926)] = 204237, + [SMALL_STATE(7927)] = 204253, + [SMALL_STATE(7928)] = 204265, + [SMALL_STATE(7929)] = 204277, + [SMALL_STATE(7930)] = 204293, + [SMALL_STATE(7931)] = 204309, + [SMALL_STATE(7932)] = 204321, + [SMALL_STATE(7933)] = 204333, + [SMALL_STATE(7934)] = 204349, + [SMALL_STATE(7935)] = 204365, + [SMALL_STATE(7936)] = 204377, + [SMALL_STATE(7937)] = 204389, + [SMALL_STATE(7938)] = 204405, + [SMALL_STATE(7939)] = 204421, + [SMALL_STATE(7940)] = 204437, + [SMALL_STATE(7941)] = 204453, + [SMALL_STATE(7942)] = 204465, + [SMALL_STATE(7943)] = 204479, + [SMALL_STATE(7944)] = 204495, + [SMALL_STATE(7945)] = 204511, + [SMALL_STATE(7946)] = 204527, + [SMALL_STATE(7947)] = 204539, + [SMALL_STATE(7948)] = 204555, + [SMALL_STATE(7949)] = 204571, + [SMALL_STATE(7950)] = 204587, + [SMALL_STATE(7951)] = 204603, + [SMALL_STATE(7952)] = 204619, + [SMALL_STATE(7953)] = 204635, + [SMALL_STATE(7954)] = 204651, + [SMALL_STATE(7955)] = 204667, + [SMALL_STATE(7956)] = 204683, + [SMALL_STATE(7957)] = 204699, + [SMALL_STATE(7958)] = 204711, + [SMALL_STATE(7959)] = 204727, + [SMALL_STATE(7960)] = 204739, + [SMALL_STATE(7961)] = 204753, + [SMALL_STATE(7962)] = 204769, + [SMALL_STATE(7963)] = 204785, + [SMALL_STATE(7964)] = 204801, + [SMALL_STATE(7965)] = 204817, + [SMALL_STATE(7966)] = 204833, + [SMALL_STATE(7967)] = 204849, + [SMALL_STATE(7968)] = 204865, + [SMALL_STATE(7969)] = 204881, + [SMALL_STATE(7970)] = 204897, + [SMALL_STATE(7971)] = 204913, + [SMALL_STATE(7972)] = 204929, + [SMALL_STATE(7973)] = 204945, + [SMALL_STATE(7974)] = 204961, + [SMALL_STATE(7975)] = 204977, + [SMALL_STATE(7976)] = 204993, + [SMALL_STATE(7977)] = 205009, + [SMALL_STATE(7978)] = 205025, + [SMALL_STATE(7979)] = 205037, + [SMALL_STATE(7980)] = 205053, + [SMALL_STATE(7981)] = 205067, + [SMALL_STATE(7982)] = 205083, + [SMALL_STATE(7983)] = 205099, + [SMALL_STATE(7984)] = 205115, + [SMALL_STATE(7985)] = 205131, + [SMALL_STATE(7986)] = 205147, + [SMALL_STATE(7987)] = 205159, + [SMALL_STATE(7988)] = 205173, + [SMALL_STATE(7989)] = 205189, + [SMALL_STATE(7990)] = 205205, + [SMALL_STATE(7991)] = 205221, + [SMALL_STATE(7992)] = 205237, + [SMALL_STATE(7993)] = 205253, + [SMALL_STATE(7994)] = 205269, + [SMALL_STATE(7995)] = 205281, + [SMALL_STATE(7996)] = 205297, + [SMALL_STATE(7997)] = 205313, + [SMALL_STATE(7998)] = 205329, + [SMALL_STATE(7999)] = 205345, + [SMALL_STATE(8000)] = 205361, + [SMALL_STATE(8001)] = 205377, + [SMALL_STATE(8002)] = 205393, + [SMALL_STATE(8003)] = 205409, + [SMALL_STATE(8004)] = 205425, + [SMALL_STATE(8005)] = 205441, + [SMALL_STATE(8006)] = 205457, + [SMALL_STATE(8007)] = 205469, + [SMALL_STATE(8008)] = 205485, + [SMALL_STATE(8009)] = 205497, + [SMALL_STATE(8010)] = 205513, + [SMALL_STATE(8011)] = 205529, + [SMALL_STATE(8012)] = 205545, + [SMALL_STATE(8013)] = 205561, + [SMALL_STATE(8014)] = 205577, + [SMALL_STATE(8015)] = 205593, + [SMALL_STATE(8016)] = 205609, + [SMALL_STATE(8017)] = 205621, + [SMALL_STATE(8018)] = 205637, + [SMALL_STATE(8019)] = 205653, + [SMALL_STATE(8020)] = 205669, + [SMALL_STATE(8021)] = 205685, + [SMALL_STATE(8022)] = 205701, + [SMALL_STATE(8023)] = 205717, + [SMALL_STATE(8024)] = 205733, + [SMALL_STATE(8025)] = 205749, + [SMALL_STATE(8026)] = 205765, + [SMALL_STATE(8027)] = 205779, + [SMALL_STATE(8028)] = 205791, + [SMALL_STATE(8029)] = 205807, + [SMALL_STATE(8030)] = 205823, + [SMALL_STATE(8031)] = 205839, + [SMALL_STATE(8032)] = 205855, + [SMALL_STATE(8033)] = 205871, + [SMALL_STATE(8034)] = 205887, + [SMALL_STATE(8035)] = 205899, + [SMALL_STATE(8036)] = 205911, + [SMALL_STATE(8037)] = 205923, + [SMALL_STATE(8038)] = 205939, + [SMALL_STATE(8039)] = 205955, + [SMALL_STATE(8040)] = 205971, + [SMALL_STATE(8041)] = 205983, + [SMALL_STATE(8042)] = 205999, + [SMALL_STATE(8043)] = 206015, + [SMALL_STATE(8044)] = 206031, + [SMALL_STATE(8045)] = 206047, + [SMALL_STATE(8046)] = 206059, + [SMALL_STATE(8047)] = 206071, + [SMALL_STATE(8048)] = 206083, + [SMALL_STATE(8049)] = 206099, + [SMALL_STATE(8050)] = 206115, + [SMALL_STATE(8051)] = 206131, + [SMALL_STATE(8052)] = 206143, + [SMALL_STATE(8053)] = 206157, + [SMALL_STATE(8054)] = 206173, + [SMALL_STATE(8055)] = 206189, + [SMALL_STATE(8056)] = 206205, + [SMALL_STATE(8057)] = 206221, + [SMALL_STATE(8058)] = 206237, + [SMALL_STATE(8059)] = 206253, + [SMALL_STATE(8060)] = 206269, + [SMALL_STATE(8061)] = 206285, + [SMALL_STATE(8062)] = 206301, + [SMALL_STATE(8063)] = 206317, + [SMALL_STATE(8064)] = 206333, + [SMALL_STATE(8065)] = 206345, + [SMALL_STATE(8066)] = 206361, + [SMALL_STATE(8067)] = 206373, + [SMALL_STATE(8068)] = 206389, + [SMALL_STATE(8069)] = 206405, + [SMALL_STATE(8070)] = 206421, + [SMALL_STATE(8071)] = 206437, + [SMALL_STATE(8072)] = 206449, + [SMALL_STATE(8073)] = 206465, + [SMALL_STATE(8074)] = 206481, + [SMALL_STATE(8075)] = 206493, + [SMALL_STATE(8076)] = 206509, + [SMALL_STATE(8077)] = 206525, + [SMALL_STATE(8078)] = 206541, + [SMALL_STATE(8079)] = 206557, + [SMALL_STATE(8080)] = 206573, + [SMALL_STATE(8081)] = 206589, + [SMALL_STATE(8082)] = 206605, + [SMALL_STATE(8083)] = 206617, + [SMALL_STATE(8084)] = 206633, + [SMALL_STATE(8085)] = 206649, + [SMALL_STATE(8086)] = 206661, + [SMALL_STATE(8087)] = 206677, + [SMALL_STATE(8088)] = 206693, + [SMALL_STATE(8089)] = 206709, + [SMALL_STATE(8090)] = 206725, + [SMALL_STATE(8091)] = 206741, + [SMALL_STATE(8092)] = 206757, + [SMALL_STATE(8093)] = 206773, + [SMALL_STATE(8094)] = 206785, + [SMALL_STATE(8095)] = 206801, + [SMALL_STATE(8096)] = 206817, + [SMALL_STATE(8097)] = 206833, + [SMALL_STATE(8098)] = 206845, + [SMALL_STATE(8099)] = 206861, + [SMALL_STATE(8100)] = 206877, + [SMALL_STATE(8101)] = 206889, + [SMALL_STATE(8102)] = 206905, + [SMALL_STATE(8103)] = 206921, + [SMALL_STATE(8104)] = 206937, + [SMALL_STATE(8105)] = 206953, + [SMALL_STATE(8106)] = 206969, + [SMALL_STATE(8107)] = 206985, + [SMALL_STATE(8108)] = 206997, + [SMALL_STATE(8109)] = 207013, + [SMALL_STATE(8110)] = 207029, + [SMALL_STATE(8111)] = 207045, + [SMALL_STATE(8112)] = 207061, + [SMALL_STATE(8113)] = 207077, + [SMALL_STATE(8114)] = 207093, + [SMALL_STATE(8115)] = 207109, + [SMALL_STATE(8116)] = 207125, + [SMALL_STATE(8117)] = 207141, + [SMALL_STATE(8118)] = 207153, + [SMALL_STATE(8119)] = 207169, + [SMALL_STATE(8120)] = 207185, + [SMALL_STATE(8121)] = 207201, + [SMALL_STATE(8122)] = 207213, + [SMALL_STATE(8123)] = 207229, + [SMALL_STATE(8124)] = 207245, + [SMALL_STATE(8125)] = 207261, + [SMALL_STATE(8126)] = 207277, + [SMALL_STATE(8127)] = 207293, + [SMALL_STATE(8128)] = 207309, + [SMALL_STATE(8129)] = 207325, + [SMALL_STATE(8130)] = 207341, + [SMALL_STATE(8131)] = 207357, + [SMALL_STATE(8132)] = 207373, + [SMALL_STATE(8133)] = 207389, + [SMALL_STATE(8134)] = 207405, + [SMALL_STATE(8135)] = 207421, + [SMALL_STATE(8136)] = 207433, + [SMALL_STATE(8137)] = 207449, + [SMALL_STATE(8138)] = 207465, + [SMALL_STATE(8139)] = 207481, + [SMALL_STATE(8140)] = 207497, + [SMALL_STATE(8141)] = 207513, + [SMALL_STATE(8142)] = 207529, + [SMALL_STATE(8143)] = 207545, + [SMALL_STATE(8144)] = 207561, + [SMALL_STATE(8145)] = 207577, + [SMALL_STATE(8146)] = 207593, + [SMALL_STATE(8147)] = 207609, + [SMALL_STATE(8148)] = 207625, + [SMALL_STATE(8149)] = 207641, + [SMALL_STATE(8150)] = 207657, + [SMALL_STATE(8151)] = 207673, + [SMALL_STATE(8152)] = 207689, + [SMALL_STATE(8153)] = 207705, + [SMALL_STATE(8154)] = 207721, + [SMALL_STATE(8155)] = 207737, + [SMALL_STATE(8156)] = 207753, + [SMALL_STATE(8157)] = 207765, + [SMALL_STATE(8158)] = 207781, + [SMALL_STATE(8159)] = 207797, + [SMALL_STATE(8160)] = 207813, + [SMALL_STATE(8161)] = 207829, + [SMALL_STATE(8162)] = 207845, + [SMALL_STATE(8163)] = 207861, + [SMALL_STATE(8164)] = 207877, + [SMALL_STATE(8165)] = 207893, + [SMALL_STATE(8166)] = 207909, + [SMALL_STATE(8167)] = 207921, + [SMALL_STATE(8168)] = 207937, + [SMALL_STATE(8169)] = 207953, + [SMALL_STATE(8170)] = 207969, + [SMALL_STATE(8171)] = 207985, + [SMALL_STATE(8172)] = 208001, + [SMALL_STATE(8173)] = 208013, + [SMALL_STATE(8174)] = 208029, + [SMALL_STATE(8175)] = 208045, + [SMALL_STATE(8176)] = 208061, + [SMALL_STATE(8177)] = 208077, + [SMALL_STATE(8178)] = 208093, + [SMALL_STATE(8179)] = 208109, + [SMALL_STATE(8180)] = 208125, + [SMALL_STATE(8181)] = 208141, + [SMALL_STATE(8182)] = 208157, + [SMALL_STATE(8183)] = 208173, + [SMALL_STATE(8184)] = 208189, + [SMALL_STATE(8185)] = 208205, + [SMALL_STATE(8186)] = 208221, + [SMALL_STATE(8187)] = 208234, + [SMALL_STATE(8188)] = 208247, + [SMALL_STATE(8189)] = 208260, + [SMALL_STATE(8190)] = 208273, + [SMALL_STATE(8191)] = 208286, + [SMALL_STATE(8192)] = 208299, + [SMALL_STATE(8193)] = 208312, + [SMALL_STATE(8194)] = 208325, + [SMALL_STATE(8195)] = 208338, + [SMALL_STATE(8196)] = 208351, + [SMALL_STATE(8197)] = 208364, + [SMALL_STATE(8198)] = 208377, + [SMALL_STATE(8199)] = 208390, + [SMALL_STATE(8200)] = 208403, + [SMALL_STATE(8201)] = 208416, + [SMALL_STATE(8202)] = 208429, + [SMALL_STATE(8203)] = 208442, + [SMALL_STATE(8204)] = 208455, + [SMALL_STATE(8205)] = 208468, + [SMALL_STATE(8206)] = 208481, + [SMALL_STATE(8207)] = 208494, + [SMALL_STATE(8208)] = 208507, + [SMALL_STATE(8209)] = 208520, + [SMALL_STATE(8210)] = 208533, + [SMALL_STATE(8211)] = 208546, + [SMALL_STATE(8212)] = 208559, + [SMALL_STATE(8213)] = 208572, + [SMALL_STATE(8214)] = 208585, + [SMALL_STATE(8215)] = 208596, + [SMALL_STATE(8216)] = 208609, + [SMALL_STATE(8217)] = 208622, + [SMALL_STATE(8218)] = 208635, + [SMALL_STATE(8219)] = 208648, + [SMALL_STATE(8220)] = 208659, + [SMALL_STATE(8221)] = 208672, + [SMALL_STATE(8222)] = 208685, + [SMALL_STATE(8223)] = 208698, + [SMALL_STATE(8224)] = 208709, + [SMALL_STATE(8225)] = 208720, + [SMALL_STATE(8226)] = 208733, + [SMALL_STATE(8227)] = 208746, + [SMALL_STATE(8228)] = 208759, + [SMALL_STATE(8229)] = 208772, + [SMALL_STATE(8230)] = 208785, + [SMALL_STATE(8231)] = 208798, + [SMALL_STATE(8232)] = 208811, + [SMALL_STATE(8233)] = 208824, + [SMALL_STATE(8234)] = 208835, + [SMALL_STATE(8235)] = 208846, + [SMALL_STATE(8236)] = 208859, + [SMALL_STATE(8237)] = 208872, + [SMALL_STATE(8238)] = 208883, + [SMALL_STATE(8239)] = 208894, + [SMALL_STATE(8240)] = 208907, + [SMALL_STATE(8241)] = 208922, + [SMALL_STATE(8242)] = 208935, + [SMALL_STATE(8243)] = 208948, + [SMALL_STATE(8244)] = 208961, + [SMALL_STATE(8245)] = 208974, + [SMALL_STATE(8246)] = 208985, + [SMALL_STATE(8247)] = 208996, + [SMALL_STATE(8248)] = 209009, + [SMALL_STATE(8249)] = 209022, + [SMALL_STATE(8250)] = 209035, + [SMALL_STATE(8251)] = 209048, + [SMALL_STATE(8252)] = 209061, + [SMALL_STATE(8253)] = 209074, + [SMALL_STATE(8254)] = 209085, + [SMALL_STATE(8255)] = 209098, + [SMALL_STATE(8256)] = 209111, + [SMALL_STATE(8257)] = 209124, + [SMALL_STATE(8258)] = 209137, + [SMALL_STATE(8259)] = 209150, + [SMALL_STATE(8260)] = 209163, + [SMALL_STATE(8261)] = 209176, + [SMALL_STATE(8262)] = 209187, + [SMALL_STATE(8263)] = 209200, + [SMALL_STATE(8264)] = 209213, + [SMALL_STATE(8265)] = 209226, + [SMALL_STATE(8266)] = 209239, + [SMALL_STATE(8267)] = 209250, + [SMALL_STATE(8268)] = 209263, + [SMALL_STATE(8269)] = 209276, + [SMALL_STATE(8270)] = 209289, + [SMALL_STATE(8271)] = 209302, + [SMALL_STATE(8272)] = 209315, + [SMALL_STATE(8273)] = 209328, + [SMALL_STATE(8274)] = 209341, + [SMALL_STATE(8275)] = 209354, + [SMALL_STATE(8276)] = 209367, + [SMALL_STATE(8277)] = 209380, + [SMALL_STATE(8278)] = 209393, + [SMALL_STATE(8279)] = 209406, + [SMALL_STATE(8280)] = 209419, + [SMALL_STATE(8281)] = 209432, + [SMALL_STATE(8282)] = 209445, + [SMALL_STATE(8283)] = 209458, + [SMALL_STATE(8284)] = 209471, + [SMALL_STATE(8285)] = 209484, + [SMALL_STATE(8286)] = 209497, + [SMALL_STATE(8287)] = 209510, + [SMALL_STATE(8288)] = 209523, + [SMALL_STATE(8289)] = 209536, + [SMALL_STATE(8290)] = 209549, + [SMALL_STATE(8291)] = 209562, + [SMALL_STATE(8292)] = 209575, + [SMALL_STATE(8293)] = 209588, + [SMALL_STATE(8294)] = 209601, + [SMALL_STATE(8295)] = 209614, + [SMALL_STATE(8296)] = 209627, + [SMALL_STATE(8297)] = 209640, + [SMALL_STATE(8298)] = 209653, + [SMALL_STATE(8299)] = 209666, + [SMALL_STATE(8300)] = 209679, + [SMALL_STATE(8301)] = 209692, + [SMALL_STATE(8302)] = 209705, + [SMALL_STATE(8303)] = 209718, + [SMALL_STATE(8304)] = 209729, + [SMALL_STATE(8305)] = 209742, + [SMALL_STATE(8306)] = 209755, + [SMALL_STATE(8307)] = 209768, + [SMALL_STATE(8308)] = 209781, + [SMALL_STATE(8309)] = 209794, + [SMALL_STATE(8310)] = 209805, + [SMALL_STATE(8311)] = 209818, + [SMALL_STATE(8312)] = 209831, + [SMALL_STATE(8313)] = 209844, + [SMALL_STATE(8314)] = 209857, + [SMALL_STATE(8315)] = 209870, + [SMALL_STATE(8316)] = 209883, + [SMALL_STATE(8317)] = 209896, + [SMALL_STATE(8318)] = 209909, + [SMALL_STATE(8319)] = 209922, + [SMALL_STATE(8320)] = 209935, + [SMALL_STATE(8321)] = 209948, + [SMALL_STATE(8322)] = 209961, + [SMALL_STATE(8323)] = 209974, + [SMALL_STATE(8324)] = 209987, + [SMALL_STATE(8325)] = 210000, + [SMALL_STATE(8326)] = 210013, + [SMALL_STATE(8327)] = 210028, + [SMALL_STATE(8328)] = 210041, + [SMALL_STATE(8329)] = 210054, + [SMALL_STATE(8330)] = 210067, + [SMALL_STATE(8331)] = 210080, + [SMALL_STATE(8332)] = 210093, + [SMALL_STATE(8333)] = 210106, + [SMALL_STATE(8334)] = 210119, + [SMALL_STATE(8335)] = 210132, + [SMALL_STATE(8336)] = 210145, + [SMALL_STATE(8337)] = 210158, + [SMALL_STATE(8338)] = 210171, + [SMALL_STATE(8339)] = 210184, + [SMALL_STATE(8340)] = 210197, + [SMALL_STATE(8341)] = 210210, + [SMALL_STATE(8342)] = 210223, + [SMALL_STATE(8343)] = 210236, + [SMALL_STATE(8344)] = 210249, + [SMALL_STATE(8345)] = 210262, + [SMALL_STATE(8346)] = 210275, + [SMALL_STATE(8347)] = 210288, + [SMALL_STATE(8348)] = 210301, + [SMALL_STATE(8349)] = 210314, + [SMALL_STATE(8350)] = 210327, + [SMALL_STATE(8351)] = 210340, + [SMALL_STATE(8352)] = 210353, + [SMALL_STATE(8353)] = 210366, + [SMALL_STATE(8354)] = 210379, + [SMALL_STATE(8355)] = 210392, + [SMALL_STATE(8356)] = 210405, + [SMALL_STATE(8357)] = 210418, + [SMALL_STATE(8358)] = 210431, + [SMALL_STATE(8359)] = 210444, + [SMALL_STATE(8360)] = 210457, + [SMALL_STATE(8361)] = 210470, + [SMALL_STATE(8362)] = 210483, + [SMALL_STATE(8363)] = 210496, + [SMALL_STATE(8364)] = 210509, + [SMALL_STATE(8365)] = 210522, + [SMALL_STATE(8366)] = 210535, + [SMALL_STATE(8367)] = 210548, + [SMALL_STATE(8368)] = 210561, + [SMALL_STATE(8369)] = 210574, + [SMALL_STATE(8370)] = 210587, + [SMALL_STATE(8371)] = 210600, + [SMALL_STATE(8372)] = 210613, + [SMALL_STATE(8373)] = 210626, + [SMALL_STATE(8374)] = 210639, + [SMALL_STATE(8375)] = 210652, + [SMALL_STATE(8376)] = 210665, + [SMALL_STATE(8377)] = 210678, + [SMALL_STATE(8378)] = 210691, + [SMALL_STATE(8379)] = 210702, + [SMALL_STATE(8380)] = 210715, + [SMALL_STATE(8381)] = 210728, + [SMALL_STATE(8382)] = 210741, + [SMALL_STATE(8383)] = 210754, + [SMALL_STATE(8384)] = 210767, + [SMALL_STATE(8385)] = 210780, + [SMALL_STATE(8386)] = 210793, + [SMALL_STATE(8387)] = 210806, + [SMALL_STATE(8388)] = 210819, + [SMALL_STATE(8389)] = 210832, + [SMALL_STATE(8390)] = 210845, + [SMALL_STATE(8391)] = 210858, + [SMALL_STATE(8392)] = 210871, + [SMALL_STATE(8393)] = 210884, + [SMALL_STATE(8394)] = 210897, + [SMALL_STATE(8395)] = 210910, + [SMALL_STATE(8396)] = 210923, + [SMALL_STATE(8397)] = 210936, + [SMALL_STATE(8398)] = 210949, + [SMALL_STATE(8399)] = 210962, + [SMALL_STATE(8400)] = 210975, + [SMALL_STATE(8401)] = 210988, + [SMALL_STATE(8402)] = 211001, + [SMALL_STATE(8403)] = 211012, + [SMALL_STATE(8404)] = 211025, + [SMALL_STATE(8405)] = 211038, + [SMALL_STATE(8406)] = 211051, + [SMALL_STATE(8407)] = 211064, + [SMALL_STATE(8408)] = 211077, + [SMALL_STATE(8409)] = 211090, + [SMALL_STATE(8410)] = 211103, + [SMALL_STATE(8411)] = 211114, + [SMALL_STATE(8412)] = 211127, + [SMALL_STATE(8413)] = 211138, + [SMALL_STATE(8414)] = 211151, + [SMALL_STATE(8415)] = 211164, + [SMALL_STATE(8416)] = 211175, + [SMALL_STATE(8417)] = 211188, + [SMALL_STATE(8418)] = 211201, + [SMALL_STATE(8419)] = 211214, + [SMALL_STATE(8420)] = 211227, + [SMALL_STATE(8421)] = 211240, + [SMALL_STATE(8422)] = 211253, + [SMALL_STATE(8423)] = 211266, + [SMALL_STATE(8424)] = 211279, + [SMALL_STATE(8425)] = 211292, + [SMALL_STATE(8426)] = 211305, + [SMALL_STATE(8427)] = 211318, + [SMALL_STATE(8428)] = 211331, + [SMALL_STATE(8429)] = 211344, + [SMALL_STATE(8430)] = 211355, + [SMALL_STATE(8431)] = 211368, + [SMALL_STATE(8432)] = 211381, + [SMALL_STATE(8433)] = 211394, + [SMALL_STATE(8434)] = 211407, + [SMALL_STATE(8435)] = 211418, + [SMALL_STATE(8436)] = 211431, + [SMALL_STATE(8437)] = 211444, + [SMALL_STATE(8438)] = 211457, + [SMALL_STATE(8439)] = 211470, + [SMALL_STATE(8440)] = 211483, + [SMALL_STATE(8441)] = 211496, + [SMALL_STATE(8442)] = 211509, + [SMALL_STATE(8443)] = 211522, + [SMALL_STATE(8444)] = 211535, + [SMALL_STATE(8445)] = 211548, + [SMALL_STATE(8446)] = 211561, + [SMALL_STATE(8447)] = 211574, + [SMALL_STATE(8448)] = 211587, + [SMALL_STATE(8449)] = 211600, + [SMALL_STATE(8450)] = 211611, + [SMALL_STATE(8451)] = 211624, + [SMALL_STATE(8452)] = 211637, + [SMALL_STATE(8453)] = 211650, + [SMALL_STATE(8454)] = 211663, + [SMALL_STATE(8455)] = 211676, + [SMALL_STATE(8456)] = 211689, + [SMALL_STATE(8457)] = 211702, + [SMALL_STATE(8458)] = 211715, + [SMALL_STATE(8459)] = 211728, + [SMALL_STATE(8460)] = 211741, + [SMALL_STATE(8461)] = 211754, + [SMALL_STATE(8462)] = 211767, + [SMALL_STATE(8463)] = 211780, + [SMALL_STATE(8464)] = 211793, + [SMALL_STATE(8465)] = 211806, + [SMALL_STATE(8466)] = 211819, + [SMALL_STATE(8467)] = 211832, + [SMALL_STATE(8468)] = 211845, + [SMALL_STATE(8469)] = 211858, + [SMALL_STATE(8470)] = 211871, + [SMALL_STATE(8471)] = 211884, + [SMALL_STATE(8472)] = 211897, + [SMALL_STATE(8473)] = 211910, + [SMALL_STATE(8474)] = 211923, + [SMALL_STATE(8475)] = 211936, + [SMALL_STATE(8476)] = 211949, + [SMALL_STATE(8477)] = 211962, + [SMALL_STATE(8478)] = 211975, + [SMALL_STATE(8479)] = 211988, + [SMALL_STATE(8480)] = 212001, + [SMALL_STATE(8481)] = 212014, + [SMALL_STATE(8482)] = 212027, + [SMALL_STATE(8483)] = 212040, + [SMALL_STATE(8484)] = 212053, + [SMALL_STATE(8485)] = 212066, + [SMALL_STATE(8486)] = 212079, + [SMALL_STATE(8487)] = 212090, + [SMALL_STATE(8488)] = 212103, + [SMALL_STATE(8489)] = 212116, + [SMALL_STATE(8490)] = 212129, + [SMALL_STATE(8491)] = 212142, + [SMALL_STATE(8492)] = 212155, + [SMALL_STATE(8493)] = 212168, + [SMALL_STATE(8494)] = 212181, + [SMALL_STATE(8495)] = 212194, + [SMALL_STATE(8496)] = 212205, + [SMALL_STATE(8497)] = 212218, + [SMALL_STATE(8498)] = 212231, + [SMALL_STATE(8499)] = 212244, + [SMALL_STATE(8500)] = 212257, + [SMALL_STATE(8501)] = 212270, + [SMALL_STATE(8502)] = 212283, + [SMALL_STATE(8503)] = 212296, + [SMALL_STATE(8504)] = 212309, + [SMALL_STATE(8505)] = 212322, + [SMALL_STATE(8506)] = 212335, + [SMALL_STATE(8507)] = 212348, + [SMALL_STATE(8508)] = 212361, + [SMALL_STATE(8509)] = 212372, + [SMALL_STATE(8510)] = 212385, + [SMALL_STATE(8511)] = 212396, + [SMALL_STATE(8512)] = 212409, + [SMALL_STATE(8513)] = 212422, + [SMALL_STATE(8514)] = 212435, + [SMALL_STATE(8515)] = 212448, + [SMALL_STATE(8516)] = 212461, + [SMALL_STATE(8517)] = 212474, + [SMALL_STATE(8518)] = 212487, + [SMALL_STATE(8519)] = 212498, + [SMALL_STATE(8520)] = 212511, + [SMALL_STATE(8521)] = 212524, + [SMALL_STATE(8522)] = 212537, + [SMALL_STATE(8523)] = 212550, + [SMALL_STATE(8524)] = 212563, + [SMALL_STATE(8525)] = 212576, + [SMALL_STATE(8526)] = 212589, + [SMALL_STATE(8527)] = 212602, + [SMALL_STATE(8528)] = 212615, + [SMALL_STATE(8529)] = 212628, + [SMALL_STATE(8530)] = 212641, + [SMALL_STATE(8531)] = 212654, + [SMALL_STATE(8532)] = 212667, + [SMALL_STATE(8533)] = 212680, + [SMALL_STATE(8534)] = 212693, + [SMALL_STATE(8535)] = 212706, + [SMALL_STATE(8536)] = 212719, + [SMALL_STATE(8537)] = 212732, + [SMALL_STATE(8538)] = 212745, + [SMALL_STATE(8539)] = 212758, + [SMALL_STATE(8540)] = 212771, + [SMALL_STATE(8541)] = 212784, + [SMALL_STATE(8542)] = 212797, + [SMALL_STATE(8543)] = 212808, + [SMALL_STATE(8544)] = 212821, + [SMALL_STATE(8545)] = 212834, + [SMALL_STATE(8546)] = 212847, + [SMALL_STATE(8547)] = 212860, + [SMALL_STATE(8548)] = 212873, + [SMALL_STATE(8549)] = 212886, + [SMALL_STATE(8550)] = 212899, + [SMALL_STATE(8551)] = 212912, + [SMALL_STATE(8552)] = 212925, + [SMALL_STATE(8553)] = 212938, + [SMALL_STATE(8554)] = 212951, + [SMALL_STATE(8555)] = 212964, + [SMALL_STATE(8556)] = 212977, + [SMALL_STATE(8557)] = 212990, + [SMALL_STATE(8558)] = 213003, + [SMALL_STATE(8559)] = 213016, + [SMALL_STATE(8560)] = 213029, + [SMALL_STATE(8561)] = 213042, + [SMALL_STATE(8562)] = 213055, + [SMALL_STATE(8563)] = 213068, + [SMALL_STATE(8564)] = 213081, + [SMALL_STATE(8565)] = 213094, + [SMALL_STATE(8566)] = 213107, + [SMALL_STATE(8567)] = 213120, + [SMALL_STATE(8568)] = 213133, + [SMALL_STATE(8569)] = 213146, + [SMALL_STATE(8570)] = 213159, + [SMALL_STATE(8571)] = 213172, + [SMALL_STATE(8572)] = 213185, + [SMALL_STATE(8573)] = 213198, + [SMALL_STATE(8574)] = 213211, + [SMALL_STATE(8575)] = 213224, + [SMALL_STATE(8576)] = 213237, + [SMALL_STATE(8577)] = 213250, + [SMALL_STATE(8578)] = 213263, + [SMALL_STATE(8579)] = 213276, + [SMALL_STATE(8580)] = 213289, + [SMALL_STATE(8581)] = 213302, + [SMALL_STATE(8582)] = 213315, + [SMALL_STATE(8583)] = 213328, + [SMALL_STATE(8584)] = 213341, + [SMALL_STATE(8585)] = 213354, + [SMALL_STATE(8586)] = 213367, + [SMALL_STATE(8587)] = 213380, + [SMALL_STATE(8588)] = 213393, + [SMALL_STATE(8589)] = 213406, + [SMALL_STATE(8590)] = 213419, + [SMALL_STATE(8591)] = 213432, + [SMALL_STATE(8592)] = 213445, + [SMALL_STATE(8593)] = 213456, + [SMALL_STATE(8594)] = 213469, + [SMALL_STATE(8595)] = 213482, + [SMALL_STATE(8596)] = 213493, + [SMALL_STATE(8597)] = 213506, + [SMALL_STATE(8598)] = 213519, + [SMALL_STATE(8599)] = 213532, + [SMALL_STATE(8600)] = 213545, + [SMALL_STATE(8601)] = 213558, + [SMALL_STATE(8602)] = 213571, + [SMALL_STATE(8603)] = 213584, + [SMALL_STATE(8604)] = 213597, + [SMALL_STATE(8605)] = 213610, + [SMALL_STATE(8606)] = 213623, + [SMALL_STATE(8607)] = 213634, + [SMALL_STATE(8608)] = 213647, + [SMALL_STATE(8609)] = 213660, + [SMALL_STATE(8610)] = 213673, + [SMALL_STATE(8611)] = 213684, + [SMALL_STATE(8612)] = 213697, + [SMALL_STATE(8613)] = 213708, + [SMALL_STATE(8614)] = 213721, + [SMALL_STATE(8615)] = 213732, + [SMALL_STATE(8616)] = 213745, + [SMALL_STATE(8617)] = 213756, + [SMALL_STATE(8618)] = 213769, + [SMALL_STATE(8619)] = 213782, + [SMALL_STATE(8620)] = 213795, + [SMALL_STATE(8621)] = 213806, + [SMALL_STATE(8622)] = 213817, + [SMALL_STATE(8623)] = 213830, + [SMALL_STATE(8624)] = 213843, + [SMALL_STATE(8625)] = 213856, + [SMALL_STATE(8626)] = 213869, + [SMALL_STATE(8627)] = 213882, + [SMALL_STATE(8628)] = 213895, + [SMALL_STATE(8629)] = 213908, + [SMALL_STATE(8630)] = 213921, + [SMALL_STATE(8631)] = 213934, + [SMALL_STATE(8632)] = 213947, + [SMALL_STATE(8633)] = 213958, + [SMALL_STATE(8634)] = 213969, + [SMALL_STATE(8635)] = 213980, + [SMALL_STATE(8636)] = 213993, + [SMALL_STATE(8637)] = 214006, + [SMALL_STATE(8638)] = 214019, + [SMALL_STATE(8639)] = 214032, + [SMALL_STATE(8640)] = 214043, + [SMALL_STATE(8641)] = 214054, + [SMALL_STATE(8642)] = 214067, + [SMALL_STATE(8643)] = 214078, + [SMALL_STATE(8644)] = 214091, + [SMALL_STATE(8645)] = 214102, + [SMALL_STATE(8646)] = 214115, + [SMALL_STATE(8647)] = 214126, + [SMALL_STATE(8648)] = 214139, + [SMALL_STATE(8649)] = 214152, + [SMALL_STATE(8650)] = 214163, + [SMALL_STATE(8651)] = 214176, + [SMALL_STATE(8652)] = 214189, + [SMALL_STATE(8653)] = 214200, + [SMALL_STATE(8654)] = 214215, + [SMALL_STATE(8655)] = 214228, + [SMALL_STATE(8656)] = 214241, + [SMALL_STATE(8657)] = 214254, + [SMALL_STATE(8658)] = 214265, + [SMALL_STATE(8659)] = 214278, + [SMALL_STATE(8660)] = 214291, + [SMALL_STATE(8661)] = 214304, + [SMALL_STATE(8662)] = 214317, + [SMALL_STATE(8663)] = 214328, + [SMALL_STATE(8664)] = 214341, + [SMALL_STATE(8665)] = 214352, + [SMALL_STATE(8666)] = 214363, + [SMALL_STATE(8667)] = 214374, + [SMALL_STATE(8668)] = 214385, + [SMALL_STATE(8669)] = 214396, + [SMALL_STATE(8670)] = 214407, + [SMALL_STATE(8671)] = 214418, + [SMALL_STATE(8672)] = 214429, + [SMALL_STATE(8673)] = 214440, + [SMALL_STATE(8674)] = 214451, + [SMALL_STATE(8675)] = 214464, + [SMALL_STATE(8676)] = 214475, + [SMALL_STATE(8677)] = 214486, + [SMALL_STATE(8678)] = 214497, + [SMALL_STATE(8679)] = 214508, + [SMALL_STATE(8680)] = 214519, + [SMALL_STATE(8681)] = 214530, + [SMALL_STATE(8682)] = 214541, + [SMALL_STATE(8683)] = 214552, + [SMALL_STATE(8684)] = 214563, + [SMALL_STATE(8685)] = 214574, + [SMALL_STATE(8686)] = 214585, + [SMALL_STATE(8687)] = 214596, + [SMALL_STATE(8688)] = 214607, + [SMALL_STATE(8689)] = 214618, + [SMALL_STATE(8690)] = 214629, + [SMALL_STATE(8691)] = 214640, + [SMALL_STATE(8692)] = 214651, + [SMALL_STATE(8693)] = 214662, + [SMALL_STATE(8694)] = 214673, + [SMALL_STATE(8695)] = 214684, + [SMALL_STATE(8696)] = 214697, + [SMALL_STATE(8697)] = 214708, + [SMALL_STATE(8698)] = 214719, + [SMALL_STATE(8699)] = 214730, + [SMALL_STATE(8700)] = 214741, + [SMALL_STATE(8701)] = 214752, + [SMALL_STATE(8702)] = 214763, + [SMALL_STATE(8703)] = 214774, + [SMALL_STATE(8704)] = 214785, + [SMALL_STATE(8705)] = 214796, + [SMALL_STATE(8706)] = 214807, + [SMALL_STATE(8707)] = 214818, + [SMALL_STATE(8708)] = 214829, + [SMALL_STATE(8709)] = 214840, + [SMALL_STATE(8710)] = 214851, + [SMALL_STATE(8711)] = 214862, + [SMALL_STATE(8712)] = 214873, + [SMALL_STATE(8713)] = 214884, + [SMALL_STATE(8714)] = 214895, + [SMALL_STATE(8715)] = 214906, + [SMALL_STATE(8716)] = 214917, + [SMALL_STATE(8717)] = 214928, + [SMALL_STATE(8718)] = 214939, + [SMALL_STATE(8719)] = 214950, + [SMALL_STATE(8720)] = 214963, + [SMALL_STATE(8721)] = 214974, + [SMALL_STATE(8722)] = 214987, + [SMALL_STATE(8723)] = 214998, + [SMALL_STATE(8724)] = 215009, + [SMALL_STATE(8725)] = 215020, + [SMALL_STATE(8726)] = 215031, + [SMALL_STATE(8727)] = 215042, + [SMALL_STATE(8728)] = 215055, + [SMALL_STATE(8729)] = 215066, + [SMALL_STATE(8730)] = 215077, + [SMALL_STATE(8731)] = 215088, + [SMALL_STATE(8732)] = 215099, + [SMALL_STATE(8733)] = 215110, + [SMALL_STATE(8734)] = 215121, + [SMALL_STATE(8735)] = 215132, + [SMALL_STATE(8736)] = 215143, + [SMALL_STATE(8737)] = 215154, + [SMALL_STATE(8738)] = 215165, + [SMALL_STATE(8739)] = 215176, + [SMALL_STATE(8740)] = 215187, + [SMALL_STATE(8741)] = 215198, + [SMALL_STATE(8742)] = 215209, + [SMALL_STATE(8743)] = 215220, + [SMALL_STATE(8744)] = 215231, + [SMALL_STATE(8745)] = 215242, + [SMALL_STATE(8746)] = 215253, + [SMALL_STATE(8747)] = 215264, + [SMALL_STATE(8748)] = 215277, + [SMALL_STATE(8749)] = 215288, + [SMALL_STATE(8750)] = 215301, + [SMALL_STATE(8751)] = 215312, + [SMALL_STATE(8752)] = 215323, + [SMALL_STATE(8753)] = 215334, + [SMALL_STATE(8754)] = 215345, + [SMALL_STATE(8755)] = 215356, + [SMALL_STATE(8756)] = 215367, + [SMALL_STATE(8757)] = 215378, + [SMALL_STATE(8758)] = 215389, + [SMALL_STATE(8759)] = 215400, + [SMALL_STATE(8760)] = 215411, + [SMALL_STATE(8761)] = 215422, + [SMALL_STATE(8762)] = 215433, + [SMALL_STATE(8763)] = 215444, + [SMALL_STATE(8764)] = 215455, + [SMALL_STATE(8765)] = 215466, + [SMALL_STATE(8766)] = 215477, + [SMALL_STATE(8767)] = 215488, + [SMALL_STATE(8768)] = 215499, + [SMALL_STATE(8769)] = 215510, + [SMALL_STATE(8770)] = 215521, + [SMALL_STATE(8771)] = 215532, + [SMALL_STATE(8772)] = 215545, + [SMALL_STATE(8773)] = 215556, + [SMALL_STATE(8774)] = 215567, + [SMALL_STATE(8775)] = 215578, + [SMALL_STATE(8776)] = 215591, + [SMALL_STATE(8777)] = 215602, + [SMALL_STATE(8778)] = 215613, + [SMALL_STATE(8779)] = 215624, + [SMALL_STATE(8780)] = 215635, + [SMALL_STATE(8781)] = 215646, + [SMALL_STATE(8782)] = 215657, + [SMALL_STATE(8783)] = 215668, + [SMALL_STATE(8784)] = 215679, + [SMALL_STATE(8785)] = 215690, + [SMALL_STATE(8786)] = 215701, + [SMALL_STATE(8787)] = 215712, + [SMALL_STATE(8788)] = 215723, + [SMALL_STATE(8789)] = 215734, + [SMALL_STATE(8790)] = 215745, + [SMALL_STATE(8791)] = 215756, + [SMALL_STATE(8792)] = 215769, + [SMALL_STATE(8793)] = 215780, + [SMALL_STATE(8794)] = 215793, + [SMALL_STATE(8795)] = 215804, + [SMALL_STATE(8796)] = 215815, + [SMALL_STATE(8797)] = 215826, + [SMALL_STATE(8798)] = 215839, + [SMALL_STATE(8799)] = 215850, + [SMALL_STATE(8800)] = 215863, + [SMALL_STATE(8801)] = 215874, + [SMALL_STATE(8802)] = 215885, + [SMALL_STATE(8803)] = 215896, + [SMALL_STATE(8804)] = 215907, + [SMALL_STATE(8805)] = 215920, + [SMALL_STATE(8806)] = 215931, + [SMALL_STATE(8807)] = 215942, + [SMALL_STATE(8808)] = 215953, + [SMALL_STATE(8809)] = 215966, + [SMALL_STATE(8810)] = 215977, + [SMALL_STATE(8811)] = 215990, + [SMALL_STATE(8812)] = 216003, + [SMALL_STATE(8813)] = 216014, + [SMALL_STATE(8814)] = 216025, + [SMALL_STATE(8815)] = 216036, + [SMALL_STATE(8816)] = 216047, + [SMALL_STATE(8817)] = 216058, + [SMALL_STATE(8818)] = 216071, + [SMALL_STATE(8819)] = 216084, + [SMALL_STATE(8820)] = 216095, + [SMALL_STATE(8821)] = 216108, + [SMALL_STATE(8822)] = 216119, + [SMALL_STATE(8823)] = 216130, + [SMALL_STATE(8824)] = 216141, + [SMALL_STATE(8825)] = 216154, + [SMALL_STATE(8826)] = 216165, + [SMALL_STATE(8827)] = 216178, + [SMALL_STATE(8828)] = 216189, + [SMALL_STATE(8829)] = 216200, + [SMALL_STATE(8830)] = 216211, + [SMALL_STATE(8831)] = 216222, + [SMALL_STATE(8832)] = 216233, + [SMALL_STATE(8833)] = 216244, + [SMALL_STATE(8834)] = 216257, + [SMALL_STATE(8835)] = 216268, + [SMALL_STATE(8836)] = 216281, + [SMALL_STATE(8837)] = 216292, + [SMALL_STATE(8838)] = 216305, + [SMALL_STATE(8839)] = 216318, + [SMALL_STATE(8840)] = 216329, + [SMALL_STATE(8841)] = 216340, + [SMALL_STATE(8842)] = 216351, + [SMALL_STATE(8843)] = 216362, + [SMALL_STATE(8844)] = 216373, + [SMALL_STATE(8845)] = 216384, + [SMALL_STATE(8846)] = 216397, + [SMALL_STATE(8847)] = 216408, + [SMALL_STATE(8848)] = 216421, + [SMALL_STATE(8849)] = 216432, + [SMALL_STATE(8850)] = 216443, + [SMALL_STATE(8851)] = 216456, + [SMALL_STATE(8852)] = 216467, + [SMALL_STATE(8853)] = 216478, + [SMALL_STATE(8854)] = 216489, + [SMALL_STATE(8855)] = 216500, + [SMALL_STATE(8856)] = 216511, + [SMALL_STATE(8857)] = 216522, + [SMALL_STATE(8858)] = 216535, + [SMALL_STATE(8859)] = 216546, + [SMALL_STATE(8860)] = 216557, + [SMALL_STATE(8861)] = 216568, + [SMALL_STATE(8862)] = 216581, + [SMALL_STATE(8863)] = 216592, + [SMALL_STATE(8864)] = 216603, + [SMALL_STATE(8865)] = 216616, + [SMALL_STATE(8866)] = 216627, + [SMALL_STATE(8867)] = 216638, + [SMALL_STATE(8868)] = 216651, + [SMALL_STATE(8869)] = 216664, + [SMALL_STATE(8870)] = 216675, + [SMALL_STATE(8871)] = 216688, + [SMALL_STATE(8872)] = 216699, + [SMALL_STATE(8873)] = 216710, + [SMALL_STATE(8874)] = 216723, + [SMALL_STATE(8875)] = 216734, + [SMALL_STATE(8876)] = 216745, + [SMALL_STATE(8877)] = 216756, + [SMALL_STATE(8878)] = 216769, + [SMALL_STATE(8879)] = 216780, + [SMALL_STATE(8880)] = 216791, + [SMALL_STATE(8881)] = 216802, + [SMALL_STATE(8882)] = 216813, + [SMALL_STATE(8883)] = 216824, + [SMALL_STATE(8884)] = 216835, + [SMALL_STATE(8885)] = 216848, + [SMALL_STATE(8886)] = 216859, + [SMALL_STATE(8887)] = 216870, + [SMALL_STATE(8888)] = 216881, + [SMALL_STATE(8889)] = 216894, + [SMALL_STATE(8890)] = 216905, + [SMALL_STATE(8891)] = 216916, + [SMALL_STATE(8892)] = 216929, + [SMALL_STATE(8893)] = 216940, + [SMALL_STATE(8894)] = 216951, + [SMALL_STATE(8895)] = 216964, + [SMALL_STATE(8896)] = 216975, + [SMALL_STATE(8897)] = 216986, + [SMALL_STATE(8898)] = 216997, + [SMALL_STATE(8899)] = 217008, + [SMALL_STATE(8900)] = 217021, + [SMALL_STATE(8901)] = 217032, + [SMALL_STATE(8902)] = 217043, + [SMALL_STATE(8903)] = 217054, + [SMALL_STATE(8904)] = 217067, + [SMALL_STATE(8905)] = 217080, + [SMALL_STATE(8906)] = 217093, + [SMALL_STATE(8907)] = 217104, + [SMALL_STATE(8908)] = 217115, + [SMALL_STATE(8909)] = 217126, + [SMALL_STATE(8910)] = 217137, + [SMALL_STATE(8911)] = 217150, + [SMALL_STATE(8912)] = 217161, + [SMALL_STATE(8913)] = 217174, + [SMALL_STATE(8914)] = 217185, + [SMALL_STATE(8915)] = 217196, + [SMALL_STATE(8916)] = 217207, + [SMALL_STATE(8917)] = 217218, + [SMALL_STATE(8918)] = 217231, + [SMALL_STATE(8919)] = 217244, + [SMALL_STATE(8920)] = 217255, + [SMALL_STATE(8921)] = 217268, + [SMALL_STATE(8922)] = 217279, + [SMALL_STATE(8923)] = 217290, + [SMALL_STATE(8924)] = 217301, + [SMALL_STATE(8925)] = 217312, + [SMALL_STATE(8926)] = 217325, + [SMALL_STATE(8927)] = 217336, + [SMALL_STATE(8928)] = 217349, + [SMALL_STATE(8929)] = 217362, + [SMALL_STATE(8930)] = 217373, + [SMALL_STATE(8931)] = 217384, + [SMALL_STATE(8932)] = 217395, + [SMALL_STATE(8933)] = 217408, + [SMALL_STATE(8934)] = 217421, + [SMALL_STATE(8935)] = 217432, + [SMALL_STATE(8936)] = 217443, + [SMALL_STATE(8937)] = 217454, + [SMALL_STATE(8938)] = 217465, + [SMALL_STATE(8939)] = 217476, + [SMALL_STATE(8940)] = 217489, + [SMALL_STATE(8941)] = 217500, + [SMALL_STATE(8942)] = 217513, + [SMALL_STATE(8943)] = 217524, + [SMALL_STATE(8944)] = 217535, + [SMALL_STATE(8945)] = 217546, + [SMALL_STATE(8946)] = 217559, + [SMALL_STATE(8947)] = 217570, + [SMALL_STATE(8948)] = 217583, + [SMALL_STATE(8949)] = 217596, + [SMALL_STATE(8950)] = 217607, + [SMALL_STATE(8951)] = 217618, + [SMALL_STATE(8952)] = 217629, + [SMALL_STATE(8953)] = 217642, + [SMALL_STATE(8954)] = 217653, + [SMALL_STATE(8955)] = 217664, + [SMALL_STATE(8956)] = 217675, + [SMALL_STATE(8957)] = 217686, + [SMALL_STATE(8958)] = 217697, + [SMALL_STATE(8959)] = 217710, + [SMALL_STATE(8960)] = 217721, + [SMALL_STATE(8961)] = 217734, + [SMALL_STATE(8962)] = 217745, + [SMALL_STATE(8963)] = 217758, + [SMALL_STATE(8964)] = 217771, + [SMALL_STATE(8965)] = 217782, + [SMALL_STATE(8966)] = 217793, + [SMALL_STATE(8967)] = 217804, + [SMALL_STATE(8968)] = 217817, + [SMALL_STATE(8969)] = 217828, + [SMALL_STATE(8970)] = 217839, + [SMALL_STATE(8971)] = 217850, + [SMALL_STATE(8972)] = 217861, + [SMALL_STATE(8973)] = 217872, + [SMALL_STATE(8974)] = 217883, + [SMALL_STATE(8975)] = 217896, + [SMALL_STATE(8976)] = 217907, + [SMALL_STATE(8977)] = 217920, + [SMALL_STATE(8978)] = 217931, + [SMALL_STATE(8979)] = 217944, + [SMALL_STATE(8980)] = 217955, + [SMALL_STATE(8981)] = 217966, + [SMALL_STATE(8982)] = 217979, + [SMALL_STATE(8983)] = 217990, + [SMALL_STATE(8984)] = 218001, + [SMALL_STATE(8985)] = 218012, + [SMALL_STATE(8986)] = 218023, + [SMALL_STATE(8987)] = 218036, + [SMALL_STATE(8988)] = 218047, + [SMALL_STATE(8989)] = 218058, + [SMALL_STATE(8990)] = 218069, + [SMALL_STATE(8991)] = 218080, + [SMALL_STATE(8992)] = 218091, + [SMALL_STATE(8993)] = 218104, + [SMALL_STATE(8994)] = 218117, + [SMALL_STATE(8995)] = 218128, + [SMALL_STATE(8996)] = 218141, + [SMALL_STATE(8997)] = 218152, + [SMALL_STATE(8998)] = 218163, + [SMALL_STATE(8999)] = 218174, + [SMALL_STATE(9000)] = 218185, + [SMALL_STATE(9001)] = 218198, + [SMALL_STATE(9002)] = 218209, + [SMALL_STATE(9003)] = 218222, + [SMALL_STATE(9004)] = 218235, + [SMALL_STATE(9005)] = 218246, + [SMALL_STATE(9006)] = 218257, + [SMALL_STATE(9007)] = 218268, + [SMALL_STATE(9008)] = 218281, + [SMALL_STATE(9009)] = 218294, + [SMALL_STATE(9010)] = 218305, + [SMALL_STATE(9011)] = 218318, + [SMALL_STATE(9012)] = 218329, + [SMALL_STATE(9013)] = 218340, + [SMALL_STATE(9014)] = 218351, + [SMALL_STATE(9015)] = 218362, + [SMALL_STATE(9016)] = 218375, + [SMALL_STATE(9017)] = 218386, + [SMALL_STATE(9018)] = 218397, + [SMALL_STATE(9019)] = 218408, + [SMALL_STATE(9020)] = 218419, + [SMALL_STATE(9021)] = 218430, + [SMALL_STATE(9022)] = 218443, + [SMALL_STATE(9023)] = 218454, + [SMALL_STATE(9024)] = 218467, + [SMALL_STATE(9025)] = 218480, + [SMALL_STATE(9026)] = 218491, + [SMALL_STATE(9027)] = 218502, + [SMALL_STATE(9028)] = 218515, + [SMALL_STATE(9029)] = 218526, + [SMALL_STATE(9030)] = 218537, + [SMALL_STATE(9031)] = 218550, + [SMALL_STATE(9032)] = 218561, + [SMALL_STATE(9033)] = 218572, + [SMALL_STATE(9034)] = 218583, + [SMALL_STATE(9035)] = 218596, + [SMALL_STATE(9036)] = 218609, + [SMALL_STATE(9037)] = 218620, + [SMALL_STATE(9038)] = 218633, + [SMALL_STATE(9039)] = 218646, + [SMALL_STATE(9040)] = 218657, + [SMALL_STATE(9041)] = 218668, + [SMALL_STATE(9042)] = 218679, + [SMALL_STATE(9043)] = 218692, + [SMALL_STATE(9044)] = 218703, + [SMALL_STATE(9045)] = 218714, + [SMALL_STATE(9046)] = 218727, + [SMALL_STATE(9047)] = 218738, + [SMALL_STATE(9048)] = 218749, + [SMALL_STATE(9049)] = 218760, + [SMALL_STATE(9050)] = 218773, + [SMALL_STATE(9051)] = 218784, + [SMALL_STATE(9052)] = 218797, + [SMALL_STATE(9053)] = 218808, + [SMALL_STATE(9054)] = 218821, + [SMALL_STATE(9055)] = 218832, + [SMALL_STATE(9056)] = 218845, + [SMALL_STATE(9057)] = 218856, + [SMALL_STATE(9058)] = 218869, + [SMALL_STATE(9059)] = 218880, + [SMALL_STATE(9060)] = 218891, + [SMALL_STATE(9061)] = 218902, + [SMALL_STATE(9062)] = 218913, + [SMALL_STATE(9063)] = 218924, + [SMALL_STATE(9064)] = 218935, + [SMALL_STATE(9065)] = 218948, + [SMALL_STATE(9066)] = 218959, + [SMALL_STATE(9067)] = 218972, + [SMALL_STATE(9068)] = 218983, + [SMALL_STATE(9069)] = 218996, + [SMALL_STATE(9070)] = 219007, + [SMALL_STATE(9071)] = 219018, + [SMALL_STATE(9072)] = 219031, + [SMALL_STATE(9073)] = 219042, + [SMALL_STATE(9074)] = 219053, + [SMALL_STATE(9075)] = 219064, + [SMALL_STATE(9076)] = 219075, + [SMALL_STATE(9077)] = 219088, + [SMALL_STATE(9078)] = 219099, + [SMALL_STATE(9079)] = 219112, + [SMALL_STATE(9080)] = 219123, + [SMALL_STATE(9081)] = 219134, + [SMALL_STATE(9082)] = 219145, + [SMALL_STATE(9083)] = 219158, + [SMALL_STATE(9084)] = 219171, + [SMALL_STATE(9085)] = 219182, + [SMALL_STATE(9086)] = 219195, + [SMALL_STATE(9087)] = 219206, + [SMALL_STATE(9088)] = 219217, + [SMALL_STATE(9089)] = 219228, + [SMALL_STATE(9090)] = 219239, + [SMALL_STATE(9091)] = 219252, + [SMALL_STATE(9092)] = 219263, + [SMALL_STATE(9093)] = 219276, + [SMALL_STATE(9094)] = 219287, + [SMALL_STATE(9095)] = 219298, + [SMALL_STATE(9096)] = 219309, + [SMALL_STATE(9097)] = 219320, + [SMALL_STATE(9098)] = 219333, + [SMALL_STATE(9099)] = 219346, + [SMALL_STATE(9100)] = 219357, + [SMALL_STATE(9101)] = 219368, + [SMALL_STATE(9102)] = 219379, + [SMALL_STATE(9103)] = 219390, + [SMALL_STATE(9104)] = 219401, + [SMALL_STATE(9105)] = 219414, + [SMALL_STATE(9106)] = 219425, + [SMALL_STATE(9107)] = 219438, + [SMALL_STATE(9108)] = 219449, + [SMALL_STATE(9109)] = 219460, + [SMALL_STATE(9110)] = 219471, + [SMALL_STATE(9111)] = 219482, + [SMALL_STATE(9112)] = 219495, + [SMALL_STATE(9113)] = 219506, + [SMALL_STATE(9114)] = 219519, + [SMALL_STATE(9115)] = 219532, + [SMALL_STATE(9116)] = 219543, + [SMALL_STATE(9117)] = 219554, + [SMALL_STATE(9118)] = 219565, + [SMALL_STATE(9119)] = 219576, + [SMALL_STATE(9120)] = 219589, + [SMALL_STATE(9121)] = 219600, + [SMALL_STATE(9122)] = 219611, + [SMALL_STATE(9123)] = 219624, + [SMALL_STATE(9124)] = 219635, + [SMALL_STATE(9125)] = 219646, + [SMALL_STATE(9126)] = 219659, + [SMALL_STATE(9127)] = 219670, + [SMALL_STATE(9128)] = 219683, + [SMALL_STATE(9129)] = 219694, + [SMALL_STATE(9130)] = 219705, + [SMALL_STATE(9131)] = 219716, + [SMALL_STATE(9132)] = 219727, + [SMALL_STATE(9133)] = 219738, + [SMALL_STATE(9134)] = 219751, + [SMALL_STATE(9135)] = 219762, + [SMALL_STATE(9136)] = 219775, + [SMALL_STATE(9137)] = 219786, + [SMALL_STATE(9138)] = 219797, + [SMALL_STATE(9139)] = 219810, + [SMALL_STATE(9140)] = 219821, + [SMALL_STATE(9141)] = 219834, + [SMALL_STATE(9142)] = 219845, + [SMALL_STATE(9143)] = 219856, + [SMALL_STATE(9144)] = 219867, + [SMALL_STATE(9145)] = 219880, + [SMALL_STATE(9146)] = 219891, + [SMALL_STATE(9147)] = 219904, + [SMALL_STATE(9148)] = 219915, + [SMALL_STATE(9149)] = 219926, + [SMALL_STATE(9150)] = 219937, + [SMALL_STATE(9151)] = 219950, + [SMALL_STATE(9152)] = 219961, + [SMALL_STATE(9153)] = 219974, + [SMALL_STATE(9154)] = 219985, + [SMALL_STATE(9155)] = 219996, + [SMALL_STATE(9156)] = 220009, + [SMALL_STATE(9157)] = 220020, + [SMALL_STATE(9158)] = 220033, + [SMALL_STATE(9159)] = 220044, + [SMALL_STATE(9160)] = 220055, + [SMALL_STATE(9161)] = 220068, + [SMALL_STATE(9162)] = 220079, + [SMALL_STATE(9163)] = 220092, + [SMALL_STATE(9164)] = 220103, + [SMALL_STATE(9165)] = 220114, + [SMALL_STATE(9166)] = 220125, + [SMALL_STATE(9167)] = 220138, + [SMALL_STATE(9168)] = 220149, + [SMALL_STATE(9169)] = 220162, + [SMALL_STATE(9170)] = 220173, + [SMALL_STATE(9171)] = 220184, + [SMALL_STATE(9172)] = 220197, + [SMALL_STATE(9173)] = 220208, + [SMALL_STATE(9174)] = 220221, + [SMALL_STATE(9175)] = 220232, + [SMALL_STATE(9176)] = 220243, + [SMALL_STATE(9177)] = 220254, + [SMALL_STATE(9178)] = 220267, + [SMALL_STATE(9179)] = 220278, + [SMALL_STATE(9180)] = 220291, + [SMALL_STATE(9181)] = 220302, + [SMALL_STATE(9182)] = 220315, + [SMALL_STATE(9183)] = 220326, + [SMALL_STATE(9184)] = 220337, + [SMALL_STATE(9185)] = 220350, + [SMALL_STATE(9186)] = 220361, + [SMALL_STATE(9187)] = 220374, + [SMALL_STATE(9188)] = 220385, + [SMALL_STATE(9189)] = 220396, + [SMALL_STATE(9190)] = 220407, + [SMALL_STATE(9191)] = 220420, + [SMALL_STATE(9192)] = 220431, + [SMALL_STATE(9193)] = 220442, + [SMALL_STATE(9194)] = 220455, + [SMALL_STATE(9195)] = 220466, + [SMALL_STATE(9196)] = 220479, + [SMALL_STATE(9197)] = 220492, + [SMALL_STATE(9198)] = 220503, + [SMALL_STATE(9199)] = 220514, + [SMALL_STATE(9200)] = 220525, + [SMALL_STATE(9201)] = 220538, + [SMALL_STATE(9202)] = 220551, + [SMALL_STATE(9203)] = 220562, + [SMALL_STATE(9204)] = 220575, + [SMALL_STATE(9205)] = 220586, + [SMALL_STATE(9206)] = 220599, + [SMALL_STATE(9207)] = 220610, + [SMALL_STATE(9208)] = 220621, + [SMALL_STATE(9209)] = 220632, + [SMALL_STATE(9210)] = 220645, + [SMALL_STATE(9211)] = 220656, + [SMALL_STATE(9212)] = 220669, + [SMALL_STATE(9213)] = 220682, + [SMALL_STATE(9214)] = 220693, + [SMALL_STATE(9215)] = 220704, + [SMALL_STATE(9216)] = 220717, + [SMALL_STATE(9217)] = 220728, + [SMALL_STATE(9218)] = 220739, + [SMALL_STATE(9219)] = 220752, + [SMALL_STATE(9220)] = 220763, + [SMALL_STATE(9221)] = 220774, + [SMALL_STATE(9222)] = 220785, + [SMALL_STATE(9223)] = 220798, + [SMALL_STATE(9224)] = 220811, + [SMALL_STATE(9225)] = 220822, + [SMALL_STATE(9226)] = 220835, + [SMALL_STATE(9227)] = 220846, + [SMALL_STATE(9228)] = 220859, + [SMALL_STATE(9229)] = 220870, + [SMALL_STATE(9230)] = 220883, + [SMALL_STATE(9231)] = 220896, + [SMALL_STATE(9232)] = 220907, + [SMALL_STATE(9233)] = 220918, + [SMALL_STATE(9234)] = 220931, + [SMALL_STATE(9235)] = 220942, + [SMALL_STATE(9236)] = 220955, + [SMALL_STATE(9237)] = 220966, + [SMALL_STATE(9238)] = 220977, + [SMALL_STATE(9239)] = 220988, + [SMALL_STATE(9240)] = 221001, + [SMALL_STATE(9241)] = 221012, + [SMALL_STATE(9242)] = 221025, + [SMALL_STATE(9243)] = 221036, + [SMALL_STATE(9244)] = 221047, + [SMALL_STATE(9245)] = 221058, + [SMALL_STATE(9246)] = 221071, + [SMALL_STATE(9247)] = 221082, + [SMALL_STATE(9248)] = 221093, + [SMALL_STATE(9249)] = 221106, + [SMALL_STATE(9250)] = 221117, + [SMALL_STATE(9251)] = 221130, + [SMALL_STATE(9252)] = 221141, + [SMALL_STATE(9253)] = 221154, + [SMALL_STATE(9254)] = 221165, + [SMALL_STATE(9255)] = 221178, + [SMALL_STATE(9256)] = 221189, + [SMALL_STATE(9257)] = 221202, + [SMALL_STATE(9258)] = 221213, + [SMALL_STATE(9259)] = 221226, + [SMALL_STATE(9260)] = 221237, + [SMALL_STATE(9261)] = 221248, + [SMALL_STATE(9262)] = 221259, + [SMALL_STATE(9263)] = 221272, + [SMALL_STATE(9264)] = 221283, + [SMALL_STATE(9265)] = 221296, + [SMALL_STATE(9266)] = 221307, + [SMALL_STATE(9267)] = 221318, + [SMALL_STATE(9268)] = 221329, + [SMALL_STATE(9269)] = 221342, + [SMALL_STATE(9270)] = 221353, + [SMALL_STATE(9271)] = 221366, + [SMALL_STATE(9272)] = 221379, + [SMALL_STATE(9273)] = 221390, + [SMALL_STATE(9274)] = 221401, + [SMALL_STATE(9275)] = 221414, + [SMALL_STATE(9276)] = 221425, + [SMALL_STATE(9277)] = 221438, + [SMALL_STATE(9278)] = 221449, + [SMALL_STATE(9279)] = 221460, + [SMALL_STATE(9280)] = 221473, + [SMALL_STATE(9281)] = 221484, + [SMALL_STATE(9282)] = 221497, + [SMALL_STATE(9283)] = 221508, + [SMALL_STATE(9284)] = 221519, + [SMALL_STATE(9285)] = 221530, + [SMALL_STATE(9286)] = 221541, + [SMALL_STATE(9287)] = 221554, + [SMALL_STATE(9288)] = 221565, + [SMALL_STATE(9289)] = 221578, + [SMALL_STATE(9290)] = 221589, + [SMALL_STATE(9291)] = 221600, + [SMALL_STATE(9292)] = 221613, + [SMALL_STATE(9293)] = 221624, + [SMALL_STATE(9294)] = 221637, + [SMALL_STATE(9295)] = 221648, + [SMALL_STATE(9296)] = 221661, + [SMALL_STATE(9297)] = 221672, + [SMALL_STATE(9298)] = 221683, + [SMALL_STATE(9299)] = 221694, + [SMALL_STATE(9300)] = 221705, + [SMALL_STATE(9301)] = 221718, + [SMALL_STATE(9302)] = 221729, + [SMALL_STATE(9303)] = 221740, + [SMALL_STATE(9304)] = 221753, + [SMALL_STATE(9305)] = 221766, + [SMALL_STATE(9306)] = 221777, + [SMALL_STATE(9307)] = 221790, + [SMALL_STATE(9308)] = 221801, + [SMALL_STATE(9309)] = 221814, + [SMALL_STATE(9310)] = 221825, + [SMALL_STATE(9311)] = 221836, + [SMALL_STATE(9312)] = 221849, + [SMALL_STATE(9313)] = 221860, + [SMALL_STATE(9314)] = 221873, + [SMALL_STATE(9315)] = 221884, + [SMALL_STATE(9316)] = 221897, + [SMALL_STATE(9317)] = 221908, + [SMALL_STATE(9318)] = 221919, + [SMALL_STATE(9319)] = 221930, + [SMALL_STATE(9320)] = 221943, + [SMALL_STATE(9321)] = 221954, + [SMALL_STATE(9322)] = 221967, + [SMALL_STATE(9323)] = 221978, + [SMALL_STATE(9324)] = 221989, + [SMALL_STATE(9325)] = 222000, + [SMALL_STATE(9326)] = 222013, + [SMALL_STATE(9327)] = 222024, + [SMALL_STATE(9328)] = 222035, + [SMALL_STATE(9329)] = 222046, + [SMALL_STATE(9330)] = 222057, + [SMALL_STATE(9331)] = 222070, + [SMALL_STATE(9332)] = 222081, + [SMALL_STATE(9333)] = 222094, + [SMALL_STATE(9334)] = 222105, + [SMALL_STATE(9335)] = 222116, + [SMALL_STATE(9336)] = 222129, + [SMALL_STATE(9337)] = 222140, + [SMALL_STATE(9338)] = 222153, + [SMALL_STATE(9339)] = 222164, + [SMALL_STATE(9340)] = 222175, + [SMALL_STATE(9341)] = 222186, + [SMALL_STATE(9342)] = 222199, + [SMALL_STATE(9343)] = 222210, + [SMALL_STATE(9344)] = 222223, + [SMALL_STATE(9345)] = 222234, + [SMALL_STATE(9346)] = 222245, + [SMALL_STATE(9347)] = 222256, + [SMALL_STATE(9348)] = 222269, + [SMALL_STATE(9349)] = 222280, + [SMALL_STATE(9350)] = 222293, + [SMALL_STATE(9351)] = 222304, + [SMALL_STATE(9352)] = 222315, + [SMALL_STATE(9353)] = 222328, + [SMALL_STATE(9354)] = 222339, + [SMALL_STATE(9355)] = 222352, + [SMALL_STATE(9356)] = 222363, + [SMALL_STATE(9357)] = 222374, + [SMALL_STATE(9358)] = 222387, + [SMALL_STATE(9359)] = 222398, + [SMALL_STATE(9360)] = 222411, + [SMALL_STATE(9361)] = 222422, + [SMALL_STATE(9362)] = 222433, + [SMALL_STATE(9363)] = 222446, + [SMALL_STATE(9364)] = 222457, + [SMALL_STATE(9365)] = 222470, + [SMALL_STATE(9366)] = 222481, + [SMALL_STATE(9367)] = 222492, + [SMALL_STATE(9368)] = 222503, + [SMALL_STATE(9369)] = 222516, + [SMALL_STATE(9370)] = 222527, + [SMALL_STATE(9371)] = 222540, + [SMALL_STATE(9372)] = 222551, + [SMALL_STATE(9373)] = 222562, + [SMALL_STATE(9374)] = 222575, + [SMALL_STATE(9375)] = 222586, + [SMALL_STATE(9376)] = 222599, + [SMALL_STATE(9377)] = 222610, + [SMALL_STATE(9378)] = 222621, + [SMALL_STATE(9379)] = 222634, + [SMALL_STATE(9380)] = 222645, + [SMALL_STATE(9381)] = 222658, + [SMALL_STATE(9382)] = 222669, + [SMALL_STATE(9383)] = 222680, + [SMALL_STATE(9384)] = 222691, + [SMALL_STATE(9385)] = 222704, + [SMALL_STATE(9386)] = 222715, + [SMALL_STATE(9387)] = 222728, + [SMALL_STATE(9388)] = 222739, + [SMALL_STATE(9389)] = 222750, + [SMALL_STATE(9390)] = 222763, + [SMALL_STATE(9391)] = 222774, + [SMALL_STATE(9392)] = 222787, + [SMALL_STATE(9393)] = 222798, + [SMALL_STATE(9394)] = 222809, + [SMALL_STATE(9395)] = 222822, + [SMALL_STATE(9396)] = 222833, + [SMALL_STATE(9397)] = 222844, + [SMALL_STATE(9398)] = 222857, + [SMALL_STATE(9399)] = 222868, + [SMALL_STATE(9400)] = 222881, + [SMALL_STATE(9401)] = 222892, + [SMALL_STATE(9402)] = 222903, + [SMALL_STATE(9403)] = 222914, + [SMALL_STATE(9404)] = 222927, + [SMALL_STATE(9405)] = 222938, + [SMALL_STATE(9406)] = 222951, + [SMALL_STATE(9407)] = 222964, + [SMALL_STATE(9408)] = 222975, + [SMALL_STATE(9409)] = 222988, + [SMALL_STATE(9410)] = 222999, + [SMALL_STATE(9411)] = 223012, + [SMALL_STATE(9412)] = 223023, + [SMALL_STATE(9413)] = 223034, + [SMALL_STATE(9414)] = 223045, + [SMALL_STATE(9415)] = 223058, + [SMALL_STATE(9416)] = 223069, + [SMALL_STATE(9417)] = 223080, + [SMALL_STATE(9418)] = 223091, + [SMALL_STATE(9419)] = 223104, + [SMALL_STATE(9420)] = 223115, + [SMALL_STATE(9421)] = 223128, + [SMALL_STATE(9422)] = 223139, + [SMALL_STATE(9423)] = 223152, + [SMALL_STATE(9424)] = 223163, + [SMALL_STATE(9425)] = 223174, + [SMALL_STATE(9426)] = 223185, + [SMALL_STATE(9427)] = 223198, + [SMALL_STATE(9428)] = 223209, + [SMALL_STATE(9429)] = 223222, + [SMALL_STATE(9430)] = 223233, + [SMALL_STATE(9431)] = 223244, + [SMALL_STATE(9432)] = 223255, + [SMALL_STATE(9433)] = 223268, + [SMALL_STATE(9434)] = 223279, + [SMALL_STATE(9435)] = 223292, + [SMALL_STATE(9436)] = 223303, + [SMALL_STATE(9437)] = 223314, + [SMALL_STATE(9438)] = 223325, + [SMALL_STATE(9439)] = 223336, + [SMALL_STATE(9440)] = 223349, + [SMALL_STATE(9441)] = 223360, + [SMALL_STATE(9442)] = 223371, + [SMALL_STATE(9443)] = 223382, + [SMALL_STATE(9444)] = 223395, + [SMALL_STATE(9445)] = 223406, + [SMALL_STATE(9446)] = 223417, + [SMALL_STATE(9447)] = 223428, + [SMALL_STATE(9448)] = 223441, + [SMALL_STATE(9449)] = 223452, + [SMALL_STATE(9450)] = 223465, + [SMALL_STATE(9451)] = 223476, + [SMALL_STATE(9452)] = 223487, + [SMALL_STATE(9453)] = 223500, + [SMALL_STATE(9454)] = 223511, + [SMALL_STATE(9455)] = 223524, + [SMALL_STATE(9456)] = 223535, + [SMALL_STATE(9457)] = 223546, + [SMALL_STATE(9458)] = 223559, + [SMALL_STATE(9459)] = 223570, + [SMALL_STATE(9460)] = 223581, + [SMALL_STATE(9461)] = 223594, + [SMALL_STATE(9462)] = 223605, + [SMALL_STATE(9463)] = 223616, + [SMALL_STATE(9464)] = 223629, + [SMALL_STATE(9465)] = 223640, + [SMALL_STATE(9466)] = 223653, + [SMALL_STATE(9467)] = 223664, + [SMALL_STATE(9468)] = 223675, + [SMALL_STATE(9469)] = 223688, + [SMALL_STATE(9470)] = 223699, + [SMALL_STATE(9471)] = 223712, + [SMALL_STATE(9472)] = 223723, + [SMALL_STATE(9473)] = 223734, + [SMALL_STATE(9474)] = 223747, + [SMALL_STATE(9475)] = 223758, + [SMALL_STATE(9476)] = 223769, + [SMALL_STATE(9477)] = 223782, + [SMALL_STATE(9478)] = 223795, + [SMALL_STATE(9479)] = 223806, + [SMALL_STATE(9480)] = 223819, + [SMALL_STATE(9481)] = 223830, + [SMALL_STATE(9482)] = 223841, + [SMALL_STATE(9483)] = 223854, + [SMALL_STATE(9484)] = 223865, + [SMALL_STATE(9485)] = 223878, + [SMALL_STATE(9486)] = 223889, + [SMALL_STATE(9487)] = 223902, + [SMALL_STATE(9488)] = 223913, + [SMALL_STATE(9489)] = 223924, + [SMALL_STATE(9490)] = 223937, + [SMALL_STATE(9491)] = 223948, + [SMALL_STATE(9492)] = 223961, + [SMALL_STATE(9493)] = 223972, + [SMALL_STATE(9494)] = 223983, + [SMALL_STATE(9495)] = 223994, + [SMALL_STATE(9496)] = 224007, + [SMALL_STATE(9497)] = 224018, + [SMALL_STATE(9498)] = 224029, + [SMALL_STATE(9499)] = 224040, + [SMALL_STATE(9500)] = 224051, + [SMALL_STATE(9501)] = 224064, + [SMALL_STATE(9502)] = 224075, + [SMALL_STATE(9503)] = 224086, + [SMALL_STATE(9504)] = 224099, + [SMALL_STATE(9505)] = 224110, + [SMALL_STATE(9506)] = 224121, + [SMALL_STATE(9507)] = 224132, + [SMALL_STATE(9508)] = 224143, + [SMALL_STATE(9509)] = 224156, + [SMALL_STATE(9510)] = 224167, + [SMALL_STATE(9511)] = 224180, + [SMALL_STATE(9512)] = 224191, + [SMALL_STATE(9513)] = 224204, + [SMALL_STATE(9514)] = 224215, + [SMALL_STATE(9515)] = 224226, + [SMALL_STATE(9516)] = 224237, + [SMALL_STATE(9517)] = 224250, + [SMALL_STATE(9518)] = 224261, + [SMALL_STATE(9519)] = 224274, + [SMALL_STATE(9520)] = 224285, + [SMALL_STATE(9521)] = 224296, + [SMALL_STATE(9522)] = 224309, + [SMALL_STATE(9523)] = 224320, + [SMALL_STATE(9524)] = 224333, + [SMALL_STATE(9525)] = 224344, + [SMALL_STATE(9526)] = 224355, + [SMALL_STATE(9527)] = 224366, + [SMALL_STATE(9528)] = 224377, + [SMALL_STATE(9529)] = 224388, + [SMALL_STATE(9530)] = 224401, + [SMALL_STATE(9531)] = 224414, + [SMALL_STATE(9532)] = 224425, + [SMALL_STATE(9533)] = 224438, + [SMALL_STATE(9534)] = 224449, + [SMALL_STATE(9535)] = 224460, + [SMALL_STATE(9536)] = 224473, + [SMALL_STATE(9537)] = 224484, + [SMALL_STATE(9538)] = 224497, + [SMALL_STATE(9539)] = 224508, + [SMALL_STATE(9540)] = 224519, + [SMALL_STATE(9541)] = 224530, + [SMALL_STATE(9542)] = 224541, + [SMALL_STATE(9543)] = 224552, + [SMALL_STATE(9544)] = 224565, + [SMALL_STATE(9545)] = 224576, + [SMALL_STATE(9546)] = 224587, + [SMALL_STATE(9547)] = 224600, + [SMALL_STATE(9548)] = 224611, + [SMALL_STATE(9549)] = 224624, + [SMALL_STATE(9550)] = 224635, + [SMALL_STATE(9551)] = 224648, + [SMALL_STATE(9552)] = 224661, + [SMALL_STATE(9553)] = 224674, + [SMALL_STATE(9554)] = 224685, + [SMALL_STATE(9555)] = 224696, + [SMALL_STATE(9556)] = 224707, + [SMALL_STATE(9557)] = 224720, + [SMALL_STATE(9558)] = 224733, + [SMALL_STATE(9559)] = 224746, + [SMALL_STATE(9560)] = 224757, + [SMALL_STATE(9561)] = 224770, + [SMALL_STATE(9562)] = 224783, + [SMALL_STATE(9563)] = 224796, + [SMALL_STATE(9564)] = 224807, + [SMALL_STATE(9565)] = 224820, + [SMALL_STATE(9566)] = 224831, + [SMALL_STATE(9567)] = 224842, + [SMALL_STATE(9568)] = 224853, + [SMALL_STATE(9569)] = 224866, + [SMALL_STATE(9570)] = 224877, + [SMALL_STATE(9571)] = 224890, + [SMALL_STATE(9572)] = 224903, + [SMALL_STATE(9573)] = 224914, + [SMALL_STATE(9574)] = 224925, + [SMALL_STATE(9575)] = 224938, + [SMALL_STATE(9576)] = 224951, + [SMALL_STATE(9577)] = 224962, + [SMALL_STATE(9578)] = 224973, + [SMALL_STATE(9579)] = 224984, + [SMALL_STATE(9580)] = 224997, + [SMALL_STATE(9581)] = 225008, + [SMALL_STATE(9582)] = 225019, + [SMALL_STATE(9583)] = 225032, + [SMALL_STATE(9584)] = 225043, + [SMALL_STATE(9585)] = 225054, + [SMALL_STATE(9586)] = 225067, + [SMALL_STATE(9587)] = 225080, + [SMALL_STATE(9588)] = 225093, + [SMALL_STATE(9589)] = 225104, + [SMALL_STATE(9590)] = 225117, + [SMALL_STATE(9591)] = 225128, + [SMALL_STATE(9592)] = 225139, + [SMALL_STATE(9593)] = 225152, + [SMALL_STATE(9594)] = 225163, + [SMALL_STATE(9595)] = 225176, + [SMALL_STATE(9596)] = 225189, + [SMALL_STATE(9597)] = 225200, + [SMALL_STATE(9598)] = 225213, + [SMALL_STATE(9599)] = 225224, + [SMALL_STATE(9600)] = 225237, + [SMALL_STATE(9601)] = 225248, + [SMALL_STATE(9602)] = 225261, + [SMALL_STATE(9603)] = 225272, + [SMALL_STATE(9604)] = 225285, + [SMALL_STATE(9605)] = 225296, + [SMALL_STATE(9606)] = 225309, + [SMALL_STATE(9607)] = 225322, + [SMALL_STATE(9608)] = 225335, + [SMALL_STATE(9609)] = 225348, + [SMALL_STATE(9610)] = 225359, + [SMALL_STATE(9611)] = 225370, + [SMALL_STATE(9612)] = 225383, + [SMALL_STATE(9613)] = 225396, + [SMALL_STATE(9614)] = 225407, + [SMALL_STATE(9615)] = 225420, + [SMALL_STATE(9616)] = 225433, + [SMALL_STATE(9617)] = 225444, + [SMALL_STATE(9618)] = 225457, + [SMALL_STATE(9619)] = 225468, + [SMALL_STATE(9620)] = 225481, + [SMALL_STATE(9621)] = 225492, + [SMALL_STATE(9622)] = 225505, + [SMALL_STATE(9623)] = 225516, + [SMALL_STATE(9624)] = 225529, + [SMALL_STATE(9625)] = 225542, + [SMALL_STATE(9626)] = 225553, + [SMALL_STATE(9627)] = 225566, + [SMALL_STATE(9628)] = 225577, + [SMALL_STATE(9629)] = 225590, + [SMALL_STATE(9630)] = 225601, + [SMALL_STATE(9631)] = 225612, + [SMALL_STATE(9632)] = 225625, + [SMALL_STATE(9633)] = 225638, + [SMALL_STATE(9634)] = 225651, + [SMALL_STATE(9635)] = 225662, + [SMALL_STATE(9636)] = 225675, + [SMALL_STATE(9637)] = 225688, + [SMALL_STATE(9638)] = 225699, + [SMALL_STATE(9639)] = 225710, + [SMALL_STATE(9640)] = 225721, + [SMALL_STATE(9641)] = 225734, + [SMALL_STATE(9642)] = 225747, + [SMALL_STATE(9643)] = 225758, + [SMALL_STATE(9644)] = 225769, + [SMALL_STATE(9645)] = 225780, + [SMALL_STATE(9646)] = 225793, + [SMALL_STATE(9647)] = 225804, + [SMALL_STATE(9648)] = 225815, + [SMALL_STATE(9649)] = 225826, + [SMALL_STATE(9650)] = 225839, + [SMALL_STATE(9651)] = 225850, + [SMALL_STATE(9652)] = 225863, + [SMALL_STATE(9653)] = 225874, + [SMALL_STATE(9654)] = 225885, + [SMALL_STATE(9655)] = 225896, + [SMALL_STATE(9656)] = 225907, + [SMALL_STATE(9657)] = 225920, + [SMALL_STATE(9658)] = 225931, + [SMALL_STATE(9659)] = 225942, + [SMALL_STATE(9660)] = 225953, + [SMALL_STATE(9661)] = 225966, + [SMALL_STATE(9662)] = 225977, + [SMALL_STATE(9663)] = 225990, + [SMALL_STATE(9664)] = 226003, + [SMALL_STATE(9665)] = 226014, + [SMALL_STATE(9666)] = 226027, + [SMALL_STATE(9667)] = 226038, + [SMALL_STATE(9668)] = 226051, + [SMALL_STATE(9669)] = 226064, + [SMALL_STATE(9670)] = 226077, + [SMALL_STATE(9671)] = 226088, + [SMALL_STATE(9672)] = 226101, + [SMALL_STATE(9673)] = 226112, + [SMALL_STATE(9674)] = 226123, + [SMALL_STATE(9675)] = 226136, + [SMALL_STATE(9676)] = 226149, + [SMALL_STATE(9677)] = 226160, + [SMALL_STATE(9678)] = 226173, + [SMALL_STATE(9679)] = 226186, + [SMALL_STATE(9680)] = 226197, + [SMALL_STATE(9681)] = 226208, + [SMALL_STATE(9682)] = 226219, + [SMALL_STATE(9683)] = 226230, + [SMALL_STATE(9684)] = 226241, + [SMALL_STATE(9685)] = 226252, + [SMALL_STATE(9686)] = 226265, + [SMALL_STATE(9687)] = 226276, + [SMALL_STATE(9688)] = 226287, + [SMALL_STATE(9689)] = 226298, + [SMALL_STATE(9690)] = 226311, + [SMALL_STATE(9691)] = 226322, + [SMALL_STATE(9692)] = 226335, + [SMALL_STATE(9693)] = 226346, + [SMALL_STATE(9694)] = 226359, + [SMALL_STATE(9695)] = 226370, + [SMALL_STATE(9696)] = 226383, + [SMALL_STATE(9697)] = 226394, + [SMALL_STATE(9698)] = 226407, + [SMALL_STATE(9699)] = 226420, + [SMALL_STATE(9700)] = 226431, + [SMALL_STATE(9701)] = 226442, + [SMALL_STATE(9702)] = 226455, + [SMALL_STATE(9703)] = 226468, + [SMALL_STATE(9704)] = 226481, + [SMALL_STATE(9705)] = 226492, + [SMALL_STATE(9706)] = 226505, + [SMALL_STATE(9707)] = 226516, + [SMALL_STATE(9708)] = 226527, + [SMALL_STATE(9709)] = 226538, + [SMALL_STATE(9710)] = 226549, + [SMALL_STATE(9711)] = 226562, + [SMALL_STATE(9712)] = 226573, + [SMALL_STATE(9713)] = 226584, + [SMALL_STATE(9714)] = 226595, + [SMALL_STATE(9715)] = 226606, + [SMALL_STATE(9716)] = 226619, + [SMALL_STATE(9717)] = 226632, + [SMALL_STATE(9718)] = 226643, + [SMALL_STATE(9719)] = 226656, + [SMALL_STATE(9720)] = 226667, + [SMALL_STATE(9721)] = 226678, + [SMALL_STATE(9722)] = 226691, + [SMALL_STATE(9723)] = 226704, + [SMALL_STATE(9724)] = 226715, + [SMALL_STATE(9725)] = 226728, + [SMALL_STATE(9726)] = 226741, + [SMALL_STATE(9727)] = 226752, + [SMALL_STATE(9728)] = 226765, + [SMALL_STATE(9729)] = 226776, + [SMALL_STATE(9730)] = 226789, + [SMALL_STATE(9731)] = 226800, + [SMALL_STATE(9732)] = 226811, + [SMALL_STATE(9733)] = 226822, + [SMALL_STATE(9734)] = 226835, + [SMALL_STATE(9735)] = 226848, + [SMALL_STATE(9736)] = 226859, + [SMALL_STATE(9737)] = 226872, + [SMALL_STATE(9738)] = 226883, + [SMALL_STATE(9739)] = 226894, + [SMALL_STATE(9740)] = 226907, + [SMALL_STATE(9741)] = 226920, + [SMALL_STATE(9742)] = 226931, + [SMALL_STATE(9743)] = 226942, + [SMALL_STATE(9744)] = 226955, + [SMALL_STATE(9745)] = 226968, + [SMALL_STATE(9746)] = 226979, + [SMALL_STATE(9747)] = 226990, + [SMALL_STATE(9748)] = 227003, + [SMALL_STATE(9749)] = 227014, + [SMALL_STATE(9750)] = 227025, + [SMALL_STATE(9751)] = 227036, + [SMALL_STATE(9752)] = 227049, + [SMALL_STATE(9753)] = 227062, + [SMALL_STATE(9754)] = 227075, + [SMALL_STATE(9755)] = 227088, + [SMALL_STATE(9756)] = 227099, + [SMALL_STATE(9757)] = 227112, + [SMALL_STATE(9758)] = 227123, + [SMALL_STATE(9759)] = 227136, + [SMALL_STATE(9760)] = 227147, + [SMALL_STATE(9761)] = 227160, + [SMALL_STATE(9762)] = 227173, + [SMALL_STATE(9763)] = 227184, + [SMALL_STATE(9764)] = 227195, + [SMALL_STATE(9765)] = 227206, + [SMALL_STATE(9766)] = 227217, + [SMALL_STATE(9767)] = 227230, + [SMALL_STATE(9768)] = 227241, + [SMALL_STATE(9769)] = 227252, + [SMALL_STATE(9770)] = 227263, + [SMALL_STATE(9771)] = 227274, + [SMALL_STATE(9772)] = 227285, + [SMALL_STATE(9773)] = 227298, + [SMALL_STATE(9774)] = 227311, + [SMALL_STATE(9775)] = 227322, + [SMALL_STATE(9776)] = 227335, + [SMALL_STATE(9777)] = 227348, + [SMALL_STATE(9778)] = 227361, + [SMALL_STATE(9779)] = 227374, + [SMALL_STATE(9780)] = 227385, + [SMALL_STATE(9781)] = 227398, + [SMALL_STATE(9782)] = 227409, + [SMALL_STATE(9783)] = 227422, + [SMALL_STATE(9784)] = 227433, + [SMALL_STATE(9785)] = 227444, + [SMALL_STATE(9786)] = 227457, + [SMALL_STATE(9787)] = 227468, + [SMALL_STATE(9788)] = 227479, + [SMALL_STATE(9789)] = 227492, + [SMALL_STATE(9790)] = 227505, + [SMALL_STATE(9791)] = 227516, + [SMALL_STATE(9792)] = 227529, + [SMALL_STATE(9793)] = 227540, + [SMALL_STATE(9794)] = 227553, + [SMALL_STATE(9795)] = 227566, + [SMALL_STATE(9796)] = 227579, + [SMALL_STATE(9797)] = 227590, + [SMALL_STATE(9798)] = 227603, + [SMALL_STATE(9799)] = 227616, + [SMALL_STATE(9800)] = 227629, + [SMALL_STATE(9801)] = 227640, + [SMALL_STATE(9802)] = 227651, + [SMALL_STATE(9803)] = 227664, + [SMALL_STATE(9804)] = 227677, + [SMALL_STATE(9805)] = 227688, + [SMALL_STATE(9806)] = 227701, + [SMALL_STATE(9807)] = 227712, + [SMALL_STATE(9808)] = 227725, + [SMALL_STATE(9809)] = 227736, + [SMALL_STATE(9810)] = 227749, + [SMALL_STATE(9811)] = 227760, + [SMALL_STATE(9812)] = 227773, + [SMALL_STATE(9813)] = 227786, + [SMALL_STATE(9814)] = 227799, + [SMALL_STATE(9815)] = 227810, + [SMALL_STATE(9816)] = 227821, + [SMALL_STATE(9817)] = 227834, + [SMALL_STATE(9818)] = 227845, + [SMALL_STATE(9819)] = 227858, + [SMALL_STATE(9820)] = 227871, + [SMALL_STATE(9821)] = 227884, + [SMALL_STATE(9822)] = 227895, + [SMALL_STATE(9823)] = 227908, + [SMALL_STATE(9824)] = 227919, + [SMALL_STATE(9825)] = 227932, + [SMALL_STATE(9826)] = 227945, + [SMALL_STATE(9827)] = 227958, + [SMALL_STATE(9828)] = 227969, + [SMALL_STATE(9829)] = 227979, + [SMALL_STATE(9830)] = 227989, + [SMALL_STATE(9831)] = 227999, + [SMALL_STATE(9832)] = 228009, + [SMALL_STATE(9833)] = 228019, + [SMALL_STATE(9834)] = 228029, + [SMALL_STATE(9835)] = 228039, + [SMALL_STATE(9836)] = 228049, + [SMALL_STATE(9837)] = 228059, + [SMALL_STATE(9838)] = 228069, + [SMALL_STATE(9839)] = 228079, + [SMALL_STATE(9840)] = 228089, + [SMALL_STATE(9841)] = 228099, + [SMALL_STATE(9842)] = 228109, + [SMALL_STATE(9843)] = 228119, + [SMALL_STATE(9844)] = 228129, + [SMALL_STATE(9845)] = 228139, + [SMALL_STATE(9846)] = 228149, + [SMALL_STATE(9847)] = 228159, + [SMALL_STATE(9848)] = 228169, + [SMALL_STATE(9849)] = 228179, + [SMALL_STATE(9850)] = 228189, + [SMALL_STATE(9851)] = 228199, + [SMALL_STATE(9852)] = 228209, + [SMALL_STATE(9853)] = 228219, + [SMALL_STATE(9854)] = 228229, + [SMALL_STATE(9855)] = 228239, + [SMALL_STATE(9856)] = 228249, + [SMALL_STATE(9857)] = 228259, + [SMALL_STATE(9858)] = 228269, + [SMALL_STATE(9859)] = 228279, + [SMALL_STATE(9860)] = 228289, + [SMALL_STATE(9861)] = 228299, + [SMALL_STATE(9862)] = 228309, + [SMALL_STATE(9863)] = 228319, + [SMALL_STATE(9864)] = 228329, + [SMALL_STATE(9865)] = 228339, + [SMALL_STATE(9866)] = 228349, + [SMALL_STATE(9867)] = 228359, + [SMALL_STATE(9868)] = 228369, + [SMALL_STATE(9869)] = 228379, + [SMALL_STATE(9870)] = 228389, + [SMALL_STATE(9871)] = 228399, + [SMALL_STATE(9872)] = 228409, + [SMALL_STATE(9873)] = 228419, + [SMALL_STATE(9874)] = 228429, + [SMALL_STATE(9875)] = 228439, + [SMALL_STATE(9876)] = 228449, + [SMALL_STATE(9877)] = 228459, + [SMALL_STATE(9878)] = 228469, + [SMALL_STATE(9879)] = 228479, + [SMALL_STATE(9880)] = 228489, + [SMALL_STATE(9881)] = 228499, + [SMALL_STATE(9882)] = 228509, + [SMALL_STATE(9883)] = 228519, + [SMALL_STATE(9884)] = 228529, + [SMALL_STATE(9885)] = 228539, + [SMALL_STATE(9886)] = 228549, + [SMALL_STATE(9887)] = 228559, + [SMALL_STATE(9888)] = 228569, + [SMALL_STATE(9889)] = 228579, + [SMALL_STATE(9890)] = 228589, + [SMALL_STATE(9891)] = 228599, + [SMALL_STATE(9892)] = 228609, + [SMALL_STATE(9893)] = 228619, + [SMALL_STATE(9894)] = 228629, + [SMALL_STATE(9895)] = 228639, + [SMALL_STATE(9896)] = 228649, + [SMALL_STATE(9897)] = 228659, + [SMALL_STATE(9898)] = 228669, + [SMALL_STATE(9899)] = 228679, + [SMALL_STATE(9900)] = 228689, + [SMALL_STATE(9901)] = 228699, + [SMALL_STATE(9902)] = 228709, + [SMALL_STATE(9903)] = 228719, + [SMALL_STATE(9904)] = 228729, + [SMALL_STATE(9905)] = 228739, + [SMALL_STATE(9906)] = 228749, + [SMALL_STATE(9907)] = 228759, + [SMALL_STATE(9908)] = 228769, + [SMALL_STATE(9909)] = 228779, + [SMALL_STATE(9910)] = 228789, + [SMALL_STATE(9911)] = 228799, + [SMALL_STATE(9912)] = 228809, + [SMALL_STATE(9913)] = 228819, + [SMALL_STATE(9914)] = 228829, + [SMALL_STATE(9915)] = 228839, + [SMALL_STATE(9916)] = 228849, + [SMALL_STATE(9917)] = 228859, + [SMALL_STATE(9918)] = 228869, + [SMALL_STATE(9919)] = 228879, + [SMALL_STATE(9920)] = 228889, + [SMALL_STATE(9921)] = 228899, + [SMALL_STATE(9922)] = 228909, + [SMALL_STATE(9923)] = 228919, + [SMALL_STATE(9924)] = 228929, + [SMALL_STATE(9925)] = 228939, + [SMALL_STATE(9926)] = 228949, + [SMALL_STATE(9927)] = 228959, + [SMALL_STATE(9928)] = 228969, + [SMALL_STATE(9929)] = 228979, + [SMALL_STATE(9930)] = 228989, + [SMALL_STATE(9931)] = 228999, + [SMALL_STATE(9932)] = 229009, + [SMALL_STATE(9933)] = 229019, + [SMALL_STATE(9934)] = 229029, + [SMALL_STATE(9935)] = 229039, + [SMALL_STATE(9936)] = 229049, + [SMALL_STATE(9937)] = 229059, + [SMALL_STATE(9938)] = 229069, + [SMALL_STATE(9939)] = 229079, + [SMALL_STATE(9940)] = 229089, + [SMALL_STATE(9941)] = 229099, + [SMALL_STATE(9942)] = 229109, + [SMALL_STATE(9943)] = 229119, + [SMALL_STATE(9944)] = 229129, + [SMALL_STATE(9945)] = 229139, + [SMALL_STATE(9946)] = 229149, + [SMALL_STATE(9947)] = 229159, + [SMALL_STATE(9948)] = 229169, + [SMALL_STATE(9949)] = 229179, + [SMALL_STATE(9950)] = 229189, + [SMALL_STATE(9951)] = 229199, + [SMALL_STATE(9952)] = 229209, + [SMALL_STATE(9953)] = 229219, + [SMALL_STATE(9954)] = 229229, + [SMALL_STATE(9955)] = 229239, + [SMALL_STATE(9956)] = 229249, + [SMALL_STATE(9957)] = 229259, + [SMALL_STATE(9958)] = 229269, + [SMALL_STATE(9959)] = 229279, + [SMALL_STATE(9960)] = 229289, + [SMALL_STATE(9961)] = 229299, + [SMALL_STATE(9962)] = 229309, + [SMALL_STATE(9963)] = 229319, + [SMALL_STATE(9964)] = 229329, + [SMALL_STATE(9965)] = 229339, + [SMALL_STATE(9966)] = 229349, + [SMALL_STATE(9967)] = 229359, + [SMALL_STATE(9968)] = 229369, + [SMALL_STATE(9969)] = 229379, + [SMALL_STATE(9970)] = 229389, + [SMALL_STATE(9971)] = 229399, + [SMALL_STATE(9972)] = 229409, + [SMALL_STATE(9973)] = 229419, + [SMALL_STATE(9974)] = 229429, + [SMALL_STATE(9975)] = 229439, + [SMALL_STATE(9976)] = 229449, + [SMALL_STATE(9977)] = 229459, + [SMALL_STATE(9978)] = 229469, + [SMALL_STATE(9979)] = 229479, + [SMALL_STATE(9980)] = 229489, + [SMALL_STATE(9981)] = 229499, + [SMALL_STATE(9982)] = 229509, + [SMALL_STATE(9983)] = 229519, + [SMALL_STATE(9984)] = 229529, + [SMALL_STATE(9985)] = 229539, + [SMALL_STATE(9986)] = 229549, + [SMALL_STATE(9987)] = 229559, + [SMALL_STATE(9988)] = 229569, + [SMALL_STATE(9989)] = 229579, + [SMALL_STATE(9990)] = 229589, + [SMALL_STATE(9991)] = 229599, + [SMALL_STATE(9992)] = 229609, + [SMALL_STATE(9993)] = 229619, + [SMALL_STATE(9994)] = 229629, + [SMALL_STATE(9995)] = 229639, + [SMALL_STATE(9996)] = 229649, + [SMALL_STATE(9997)] = 229659, + [SMALL_STATE(9998)] = 229669, + [SMALL_STATE(9999)] = 229679, + [SMALL_STATE(10000)] = 229689, + [SMALL_STATE(10001)] = 229699, + [SMALL_STATE(10002)] = 229709, + [SMALL_STATE(10003)] = 229719, + [SMALL_STATE(10004)] = 229729, + [SMALL_STATE(10005)] = 229739, + [SMALL_STATE(10006)] = 229749, + [SMALL_STATE(10007)] = 229759, + [SMALL_STATE(10008)] = 229769, + [SMALL_STATE(10009)] = 229779, + [SMALL_STATE(10010)] = 229789, + [SMALL_STATE(10011)] = 229799, + [SMALL_STATE(10012)] = 229809, + [SMALL_STATE(10013)] = 229819, + [SMALL_STATE(10014)] = 229829, + [SMALL_STATE(10015)] = 229839, + [SMALL_STATE(10016)] = 229849, + [SMALL_STATE(10017)] = 229859, + [SMALL_STATE(10018)] = 229869, + [SMALL_STATE(10019)] = 229879, + [SMALL_STATE(10020)] = 229889, + [SMALL_STATE(10021)] = 229899, + [SMALL_STATE(10022)] = 229909, + [SMALL_STATE(10023)] = 229919, + [SMALL_STATE(10024)] = 229929, + [SMALL_STATE(10025)] = 229939, + [SMALL_STATE(10026)] = 229949, + [SMALL_STATE(10027)] = 229959, + [SMALL_STATE(10028)] = 229969, + [SMALL_STATE(10029)] = 229979, + [SMALL_STATE(10030)] = 229989, + [SMALL_STATE(10031)] = 229999, + [SMALL_STATE(10032)] = 230009, + [SMALL_STATE(10033)] = 230019, + [SMALL_STATE(10034)] = 230029, + [SMALL_STATE(10035)] = 230039, + [SMALL_STATE(10036)] = 230049, + [SMALL_STATE(10037)] = 230059, + [SMALL_STATE(10038)] = 230069, + [SMALL_STATE(10039)] = 230079, + [SMALL_STATE(10040)] = 230089, + [SMALL_STATE(10041)] = 230099, + [SMALL_STATE(10042)] = 230109, + [SMALL_STATE(10043)] = 230119, + [SMALL_STATE(10044)] = 230129, + [SMALL_STATE(10045)] = 230139, + [SMALL_STATE(10046)] = 230149, + [SMALL_STATE(10047)] = 230159, + [SMALL_STATE(10048)] = 230169, + [SMALL_STATE(10049)] = 230179, + [SMALL_STATE(10050)] = 230189, + [SMALL_STATE(10051)] = 230199, + [SMALL_STATE(10052)] = 230209, + [SMALL_STATE(10053)] = 230219, + [SMALL_STATE(10054)] = 230229, + [SMALL_STATE(10055)] = 230239, + [SMALL_STATE(10056)] = 230249, + [SMALL_STATE(10057)] = 230259, + [SMALL_STATE(10058)] = 230269, + [SMALL_STATE(10059)] = 230279, + [SMALL_STATE(10060)] = 230289, + [SMALL_STATE(10061)] = 230299, + [SMALL_STATE(10062)] = 230309, + [SMALL_STATE(10063)] = 230319, + [SMALL_STATE(10064)] = 230329, + [SMALL_STATE(10065)] = 230339, + [SMALL_STATE(10066)] = 230349, + [SMALL_STATE(10067)] = 230359, + [SMALL_STATE(10068)] = 230369, + [SMALL_STATE(10069)] = 230379, + [SMALL_STATE(10070)] = 230389, + [SMALL_STATE(10071)] = 230399, + [SMALL_STATE(10072)] = 230409, + [SMALL_STATE(10073)] = 230419, + [SMALL_STATE(10074)] = 230429, + [SMALL_STATE(10075)] = 230439, + [SMALL_STATE(10076)] = 230449, + [SMALL_STATE(10077)] = 230459, + [SMALL_STATE(10078)] = 230469, + [SMALL_STATE(10079)] = 230479, + [SMALL_STATE(10080)] = 230489, + [SMALL_STATE(10081)] = 230499, + [SMALL_STATE(10082)] = 230509, + [SMALL_STATE(10083)] = 230519, + [SMALL_STATE(10084)] = 230529, + [SMALL_STATE(10085)] = 230539, + [SMALL_STATE(10086)] = 230549, + [SMALL_STATE(10087)] = 230559, + [SMALL_STATE(10088)] = 230569, + [SMALL_STATE(10089)] = 230579, + [SMALL_STATE(10090)] = 230589, + [SMALL_STATE(10091)] = 230599, + [SMALL_STATE(10092)] = 230609, + [SMALL_STATE(10093)] = 230619, + [SMALL_STATE(10094)] = 230629, + [SMALL_STATE(10095)] = 230639, + [SMALL_STATE(10096)] = 230649, + [SMALL_STATE(10097)] = 230659, + [SMALL_STATE(10098)] = 230669, + [SMALL_STATE(10099)] = 230679, + [SMALL_STATE(10100)] = 230689, + [SMALL_STATE(10101)] = 230699, + [SMALL_STATE(10102)] = 230709, + [SMALL_STATE(10103)] = 230719, + [SMALL_STATE(10104)] = 230729, + [SMALL_STATE(10105)] = 230739, + [SMALL_STATE(10106)] = 230749, + [SMALL_STATE(10107)] = 230759, + [SMALL_STATE(10108)] = 230769, + [SMALL_STATE(10109)] = 230779, + [SMALL_STATE(10110)] = 230789, + [SMALL_STATE(10111)] = 230799, + [SMALL_STATE(10112)] = 230809, + [SMALL_STATE(10113)] = 230819, + [SMALL_STATE(10114)] = 230829, + [SMALL_STATE(10115)] = 230839, + [SMALL_STATE(10116)] = 230849, + [SMALL_STATE(10117)] = 230859, + [SMALL_STATE(10118)] = 230869, + [SMALL_STATE(10119)] = 230879, + [SMALL_STATE(10120)] = 230889, + [SMALL_STATE(10121)] = 230899, + [SMALL_STATE(10122)] = 230909, + [SMALL_STATE(10123)] = 230919, + [SMALL_STATE(10124)] = 230929, + [SMALL_STATE(10125)] = 230939, + [SMALL_STATE(10126)] = 230949, + [SMALL_STATE(10127)] = 230959, + [SMALL_STATE(10128)] = 230969, + [SMALL_STATE(10129)] = 230979, + [SMALL_STATE(10130)] = 230989, + [SMALL_STATE(10131)] = 230999, + [SMALL_STATE(10132)] = 231009, + [SMALL_STATE(10133)] = 231019, + [SMALL_STATE(10134)] = 231029, + [SMALL_STATE(10135)] = 231039, + [SMALL_STATE(10136)] = 231049, + [SMALL_STATE(10137)] = 231059, + [SMALL_STATE(10138)] = 231069, + [SMALL_STATE(10139)] = 231079, + [SMALL_STATE(10140)] = 231089, + [SMALL_STATE(10141)] = 231099, + [SMALL_STATE(10142)] = 231109, + [SMALL_STATE(10143)] = 231119, + [SMALL_STATE(10144)] = 231129, + [SMALL_STATE(10145)] = 231139, + [SMALL_STATE(10146)] = 231149, + [SMALL_STATE(10147)] = 231159, + [SMALL_STATE(10148)] = 231169, + [SMALL_STATE(10149)] = 231179, + [SMALL_STATE(10150)] = 231189, + [SMALL_STATE(10151)] = 231199, + [SMALL_STATE(10152)] = 231209, + [SMALL_STATE(10153)] = 231219, + [SMALL_STATE(10154)] = 231229, + [SMALL_STATE(10155)] = 231239, + [SMALL_STATE(10156)] = 231249, + [SMALL_STATE(10157)] = 231259, + [SMALL_STATE(10158)] = 231269, + [SMALL_STATE(10159)] = 231279, + [SMALL_STATE(10160)] = 231289, + [SMALL_STATE(10161)] = 231299, + [SMALL_STATE(10162)] = 231309, + [SMALL_STATE(10163)] = 231319, + [SMALL_STATE(10164)] = 231329, + [SMALL_STATE(10165)] = 231339, + [SMALL_STATE(10166)] = 231349, + [SMALL_STATE(10167)] = 231359, + [SMALL_STATE(10168)] = 231369, + [SMALL_STATE(10169)] = 231379, + [SMALL_STATE(10170)] = 231389, + [SMALL_STATE(10171)] = 231399, + [SMALL_STATE(10172)] = 231409, + [SMALL_STATE(10173)] = 231419, + [SMALL_STATE(10174)] = 231429, + [SMALL_STATE(10175)] = 231439, + [SMALL_STATE(10176)] = 231449, + [SMALL_STATE(10177)] = 231459, + [SMALL_STATE(10178)] = 231469, + [SMALL_STATE(10179)] = 231479, + [SMALL_STATE(10180)] = 231489, + [SMALL_STATE(10181)] = 231499, + [SMALL_STATE(10182)] = 231509, + [SMALL_STATE(10183)] = 231519, + [SMALL_STATE(10184)] = 231529, + [SMALL_STATE(10185)] = 231539, + [SMALL_STATE(10186)] = 231549, + [SMALL_STATE(10187)] = 231559, + [SMALL_STATE(10188)] = 231569, + [SMALL_STATE(10189)] = 231579, + [SMALL_STATE(10190)] = 231589, + [SMALL_STATE(10191)] = 231599, + [SMALL_STATE(10192)] = 231609, + [SMALL_STATE(10193)] = 231619, + [SMALL_STATE(10194)] = 231629, + [SMALL_STATE(10195)] = 231639, + [SMALL_STATE(10196)] = 231649, + [SMALL_STATE(10197)] = 231659, + [SMALL_STATE(10198)] = 231669, + [SMALL_STATE(10199)] = 231679, + [SMALL_STATE(10200)] = 231689, + [SMALL_STATE(10201)] = 231699, + [SMALL_STATE(10202)] = 231709, + [SMALL_STATE(10203)] = 231719, + [SMALL_STATE(10204)] = 231729, + [SMALL_STATE(10205)] = 231739, + [SMALL_STATE(10206)] = 231749, + [SMALL_STATE(10207)] = 231759, + [SMALL_STATE(10208)] = 231769, + [SMALL_STATE(10209)] = 231779, + [SMALL_STATE(10210)] = 231789, + [SMALL_STATE(10211)] = 231799, + [SMALL_STATE(10212)] = 231809, + [SMALL_STATE(10213)] = 231819, + [SMALL_STATE(10214)] = 231829, + [SMALL_STATE(10215)] = 231839, + [SMALL_STATE(10216)] = 231849, + [SMALL_STATE(10217)] = 231859, + [SMALL_STATE(10218)] = 231869, + [SMALL_STATE(10219)] = 231879, + [SMALL_STATE(10220)] = 231889, + [SMALL_STATE(10221)] = 231899, + [SMALL_STATE(10222)] = 231909, + [SMALL_STATE(10223)] = 231919, + [SMALL_STATE(10224)] = 231929, + [SMALL_STATE(10225)] = 231939, + [SMALL_STATE(10226)] = 231949, + [SMALL_STATE(10227)] = 231959, + [SMALL_STATE(10228)] = 231969, + [SMALL_STATE(10229)] = 231979, + [SMALL_STATE(10230)] = 231989, + [SMALL_STATE(10231)] = 231999, + [SMALL_STATE(10232)] = 232009, + [SMALL_STATE(10233)] = 232019, + [SMALL_STATE(10234)] = 232029, + [SMALL_STATE(10235)] = 232039, + [SMALL_STATE(10236)] = 232049, + [SMALL_STATE(10237)] = 232059, + [SMALL_STATE(10238)] = 232069, + [SMALL_STATE(10239)] = 232079, + [SMALL_STATE(10240)] = 232089, + [SMALL_STATE(10241)] = 232099, + [SMALL_STATE(10242)] = 232109, + [SMALL_STATE(10243)] = 232119, + [SMALL_STATE(10244)] = 232129, + [SMALL_STATE(10245)] = 232139, + [SMALL_STATE(10246)] = 232149, + [SMALL_STATE(10247)] = 232159, + [SMALL_STATE(10248)] = 232169, + [SMALL_STATE(10249)] = 232179, + [SMALL_STATE(10250)] = 232189, + [SMALL_STATE(10251)] = 232199, + [SMALL_STATE(10252)] = 232209, + [SMALL_STATE(10253)] = 232219, + [SMALL_STATE(10254)] = 232229, + [SMALL_STATE(10255)] = 232239, + [SMALL_STATE(10256)] = 232249, + [SMALL_STATE(10257)] = 232259, + [SMALL_STATE(10258)] = 232269, + [SMALL_STATE(10259)] = 232279, + [SMALL_STATE(10260)] = 232289, + [SMALL_STATE(10261)] = 232299, + [SMALL_STATE(10262)] = 232309, + [SMALL_STATE(10263)] = 232319, + [SMALL_STATE(10264)] = 232329, + [SMALL_STATE(10265)] = 232339, + [SMALL_STATE(10266)] = 232349, + [SMALL_STATE(10267)] = 232359, + [SMALL_STATE(10268)] = 232369, + [SMALL_STATE(10269)] = 232379, + [SMALL_STATE(10270)] = 232389, + [SMALL_STATE(10271)] = 232399, + [SMALL_STATE(10272)] = 232409, + [SMALL_STATE(10273)] = 232419, + [SMALL_STATE(10274)] = 232429, + [SMALL_STATE(10275)] = 232439, + [SMALL_STATE(10276)] = 232449, + [SMALL_STATE(10277)] = 232459, + [SMALL_STATE(10278)] = 232469, + [SMALL_STATE(10279)] = 232479, + [SMALL_STATE(10280)] = 232489, + [SMALL_STATE(10281)] = 232499, + [SMALL_STATE(10282)] = 232509, + [SMALL_STATE(10283)] = 232519, + [SMALL_STATE(10284)] = 232529, + [SMALL_STATE(10285)] = 232539, + [SMALL_STATE(10286)] = 232549, + [SMALL_STATE(10287)] = 232559, + [SMALL_STATE(10288)] = 232569, + [SMALL_STATE(10289)] = 232579, + [SMALL_STATE(10290)] = 232589, + [SMALL_STATE(10291)] = 232599, + [SMALL_STATE(10292)] = 232609, + [SMALL_STATE(10293)] = 232619, + [SMALL_STATE(10294)] = 232629, + [SMALL_STATE(10295)] = 232639, + [SMALL_STATE(10296)] = 232649, + [SMALL_STATE(10297)] = 232659, + [SMALL_STATE(10298)] = 232669, + [SMALL_STATE(10299)] = 232679, + [SMALL_STATE(10300)] = 232689, + [SMALL_STATE(10301)] = 232699, + [SMALL_STATE(10302)] = 232709, + [SMALL_STATE(10303)] = 232719, + [SMALL_STATE(10304)] = 232729, + [SMALL_STATE(10305)] = 232739, + [SMALL_STATE(10306)] = 232749, + [SMALL_STATE(10307)] = 232759, + [SMALL_STATE(10308)] = 232769, + [SMALL_STATE(10309)] = 232779, + [SMALL_STATE(10310)] = 232789, + [SMALL_STATE(10311)] = 232799, + [SMALL_STATE(10312)] = 232809, + [SMALL_STATE(10313)] = 232819, + [SMALL_STATE(10314)] = 232829, + [SMALL_STATE(10315)] = 232839, + [SMALL_STATE(10316)] = 232849, + [SMALL_STATE(10317)] = 232859, + [SMALL_STATE(10318)] = 232869, + [SMALL_STATE(10319)] = 232879, + [SMALL_STATE(10320)] = 232889, + [SMALL_STATE(10321)] = 232899, + [SMALL_STATE(10322)] = 232909, + [SMALL_STATE(10323)] = 232919, + [SMALL_STATE(10324)] = 232929, + [SMALL_STATE(10325)] = 232939, + [SMALL_STATE(10326)] = 232949, + [SMALL_STATE(10327)] = 232959, + [SMALL_STATE(10328)] = 232969, + [SMALL_STATE(10329)] = 232979, + [SMALL_STATE(10330)] = 232989, + [SMALL_STATE(10331)] = 232999, + [SMALL_STATE(10332)] = 233009, + [SMALL_STATE(10333)] = 233019, + [SMALL_STATE(10334)] = 233029, + [SMALL_STATE(10335)] = 233039, + [SMALL_STATE(10336)] = 233049, + [SMALL_STATE(10337)] = 233059, + [SMALL_STATE(10338)] = 233069, + [SMALL_STATE(10339)] = 233079, + [SMALL_STATE(10340)] = 233089, + [SMALL_STATE(10341)] = 233099, + [SMALL_STATE(10342)] = 233109, + [SMALL_STATE(10343)] = 233119, + [SMALL_STATE(10344)] = 233129, + [SMALL_STATE(10345)] = 233139, + [SMALL_STATE(10346)] = 233149, + [SMALL_STATE(10347)] = 233159, + [SMALL_STATE(10348)] = 233169, + [SMALL_STATE(10349)] = 233179, + [SMALL_STATE(10350)] = 233189, + [SMALL_STATE(10351)] = 233199, + [SMALL_STATE(10352)] = 233209, + [SMALL_STATE(10353)] = 233219, + [SMALL_STATE(10354)] = 233229, + [SMALL_STATE(10355)] = 233239, + [SMALL_STATE(10356)] = 233249, + [SMALL_STATE(10357)] = 233259, + [SMALL_STATE(10358)] = 233269, + [SMALL_STATE(10359)] = 233279, + [SMALL_STATE(10360)] = 233289, + [SMALL_STATE(10361)] = 233299, + [SMALL_STATE(10362)] = 233309, + [SMALL_STATE(10363)] = 233319, + [SMALL_STATE(10364)] = 233329, + [SMALL_STATE(10365)] = 233339, + [SMALL_STATE(10366)] = 233349, + [SMALL_STATE(10367)] = 233359, + [SMALL_STATE(10368)] = 233369, + [SMALL_STATE(10369)] = 233379, + [SMALL_STATE(10370)] = 233389, + [SMALL_STATE(10371)] = 233399, + [SMALL_STATE(10372)] = 233409, + [SMALL_STATE(10373)] = 233419, + [SMALL_STATE(10374)] = 233429, + [SMALL_STATE(10375)] = 233439, + [SMALL_STATE(10376)] = 233449, + [SMALL_STATE(10377)] = 233459, + [SMALL_STATE(10378)] = 233469, + [SMALL_STATE(10379)] = 233479, + [SMALL_STATE(10380)] = 233489, + [SMALL_STATE(10381)] = 233499, + [SMALL_STATE(10382)] = 233509, + [SMALL_STATE(10383)] = 233519, + [SMALL_STATE(10384)] = 233529, + [SMALL_STATE(10385)] = 233539, + [SMALL_STATE(10386)] = 233549, + [SMALL_STATE(10387)] = 233559, + [SMALL_STATE(10388)] = 233569, + [SMALL_STATE(10389)] = 233579, + [SMALL_STATE(10390)] = 233589, + [SMALL_STATE(10391)] = 233599, + [SMALL_STATE(10392)] = 233609, + [SMALL_STATE(10393)] = 233619, + [SMALL_STATE(10394)] = 233629, + [SMALL_STATE(10395)] = 233639, + [SMALL_STATE(10396)] = 233649, + [SMALL_STATE(10397)] = 233659, + [SMALL_STATE(10398)] = 233669, + [SMALL_STATE(10399)] = 233679, + [SMALL_STATE(10400)] = 233689, + [SMALL_STATE(10401)] = 233699, + [SMALL_STATE(10402)] = 233709, + [SMALL_STATE(10403)] = 233719, + [SMALL_STATE(10404)] = 233729, + [SMALL_STATE(10405)] = 233739, + [SMALL_STATE(10406)] = 233749, + [SMALL_STATE(10407)] = 233759, + [SMALL_STATE(10408)] = 233769, + [SMALL_STATE(10409)] = 233779, + [SMALL_STATE(10410)] = 233789, + [SMALL_STATE(10411)] = 233799, + [SMALL_STATE(10412)] = 233809, + [SMALL_STATE(10413)] = 233819, + [SMALL_STATE(10414)] = 233829, + [SMALL_STATE(10415)] = 233839, + [SMALL_STATE(10416)] = 233849, + [SMALL_STATE(10417)] = 233859, + [SMALL_STATE(10418)] = 233869, + [SMALL_STATE(10419)] = 233879, + [SMALL_STATE(10420)] = 233889, + [SMALL_STATE(10421)] = 233899, + [SMALL_STATE(10422)] = 233909, + [SMALL_STATE(10423)] = 233919, + [SMALL_STATE(10424)] = 233929, + [SMALL_STATE(10425)] = 233939, + [SMALL_STATE(10426)] = 233949, + [SMALL_STATE(10427)] = 233959, + [SMALL_STATE(10428)] = 233969, + [SMALL_STATE(10429)] = 233979, + [SMALL_STATE(10430)] = 233989, + [SMALL_STATE(10431)] = 233999, + [SMALL_STATE(10432)] = 234009, + [SMALL_STATE(10433)] = 234019, + [SMALL_STATE(10434)] = 234029, + [SMALL_STATE(10435)] = 234039, + [SMALL_STATE(10436)] = 234049, + [SMALL_STATE(10437)] = 234059, + [SMALL_STATE(10438)] = 234069, + [SMALL_STATE(10439)] = 234079, + [SMALL_STATE(10440)] = 234089, +}; + +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(10440), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10439), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10438), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8213), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10436), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10435), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10434), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8218), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10312), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), + [195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2723), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2723), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2225), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2225), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3126), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(5137), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2463), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(5045), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(442), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(123), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(922), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3051), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(10439), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1353), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(706), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(10438), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2729), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3128), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(130), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(136), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(726), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(8213), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(10436), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(921), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(921), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1343), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1334), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4864), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4670), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(137), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(10435), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(735), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4859), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6444), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6448), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2651), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6456), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6632), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4870), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3455), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(5928), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(10434), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6462), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3334), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6478), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(6481), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(5742), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2680), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3041), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3025), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2824), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3109), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3108), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3107), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3107), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3106), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3106), + [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(8218), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3118), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(922), + [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1352), + [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(374), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1334), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10304), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10430), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 2), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statements, 2), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8663), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10305), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9934), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6717), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6682), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10280), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 3), + [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statements, 3), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7941), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8673), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10351), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8632), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8762), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8776), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10290), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_transfer_statement, 1), + [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_transfer_statement, 1), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9929), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10400), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9932), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10421), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7232), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10218), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8660), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10362), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10405), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8244), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10412), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10386), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8379), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10277), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10428), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10278), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9939), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10401), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10297), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10283), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5561), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6195), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10293), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10429), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10294), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__tuple_type_item_identifier, 2, .production_id = 3), SHIFT(1162), + [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__tuple_type_item_identifier, 2, .production_id = 3), SHIFT(1162), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__tuple_type_item_identifier, 2, .production_id = 3), SHIFT(676), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__tuple_type_item_identifier, 2, .production_id = 3), SHIFT(124), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_item_identifier, 2, .production_id = 3), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_item_identifier, 2, .production_id = 3), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6669), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 2), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_argument_repeat1, 2, .production_id = 61), SHIFT(1162), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_argument_repeat1, 2, .production_id = 61), SHIFT(1162), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_argument_repeat1, 2, .production_id = 61), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT(1162), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT(1162), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 2), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10313), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10431), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10314), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_custom_operator, 2), + [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_operator, 2), + [4527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prefix_unary_operator, 1), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prefix_unary_operator, 1), + [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__referenceable_operator, 1), + [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__prefix_unary_operator, 1), REDUCE(sym__referenceable_operator, 1), + [4536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__referenceable_operator, 1), + [4538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__prefix_unary_operator, 1), REDUCE(sym__referenceable_operator, 1), + [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__additive_operator, 1), + [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__additive_operator, 1), REDUCE(sym__prefix_unary_operator, 1), + [4546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__additive_operator, 1), + [4548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__additive_operator, 1), REDUCE(sym__prefix_unary_operator, 1), + [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__range_operator, 1), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_operator, 1), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1, .production_id = 9), + [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1, .production_id = 9), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_end_range_expression, 2, .production_id = 21), + [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_end_range_expression, 2, .production_id = 21), + [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_custom_operator, 1), + [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_custom_operator, 1), + [4567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_custom_operator, 1), SHIFT(1099), + [4570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__three_dot_operator, 1), + [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__three_dot_operator, 1), + [4574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang_line, 2), + [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang_line, 2), + [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 134), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 134), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conjunction_expression, 3, .production_id = 51), + [4626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conjunction_expression, 3, .production_id = 51), + [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3, .production_id = 51), + [4630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3, .production_id = 51), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 143), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 143), + [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, .production_id = 50), + [4644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, .production_id = 50), + [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_expression, 2, .production_id = 23), + [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_expression, 2, .production_id = 23), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 56), + [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, .production_id = 56), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3, .production_id = 51), + [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3, .production_id = 51), + [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 4, .production_id = 90), + [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 4, .production_id = 90), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_expression, 3, .production_id = 51), + [4664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_expression, 3, .production_id = 51), + [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 127), + [4668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 127), + [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunction_expression, 3, .production_id = 51), + [4672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunction_expression, 3, .production_id = 51), + [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nil_coalescing_expression, 3, .production_id = 55), + [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nil_coalescing_expression, 3, .production_id = 55), + [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_start_range_expression, 2, .production_id = 22), + [4680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_start_range_expression, 2, .production_id = 22), + [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entry_suffix, 2, .production_id = 209), + [4684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_entry_suffix, 2, .production_id = 209), + [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3, .production_id = 51), + [4688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3, .production_id = 51), + [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3, .production_id = 51), + [4692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3, .production_id = 51), + [4694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, .production_id = 12), + [4696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, .production_id = 12), + [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, .production_id = 12), + [4700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, .production_id = 12), + [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 7, .production_id = 220), + [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 7, .production_id = 220), + [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitwise_operation, 3, .production_id = 51), + [4708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitwise_operation, 3, .production_id = 51), + [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 6, .production_id = 183), + [4712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 6, .production_id = 183), + [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 6, .production_id = 171), + [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 6, .production_id = 171), + [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 6, .production_id = 171), + [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 6, .production_id = 171), + [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 5, .production_id = 127), + [4724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 5, .production_id = 127), + [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 4, .production_id = 90), + [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 4, .production_id = 90), + [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_custom_operator, 1), SHIFT(1138), + [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unannotated_type, 1), + [4735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unannotated_type, 1), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8434), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 1), + [4751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 1), + [4753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_call_suffix_repeat1, 2, .production_id = 97), SHIFT_REPEAT(4895), + [4756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_suffix_repeat1, 2, .production_id = 97), SHIFT_REPEAT(4895), + [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_suffix_repeat1, 2, .production_id = 97), + [4761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_call_suffix_repeat1, 2, .production_id = 97), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 2, .production_id = 45), + [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 2, .production_id = 45), + [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_condition_sequence_item, 1), + [4811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_condition_sequence_item, 1), + [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_let_binding, 3), + [4815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_let_binding, 3), + [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_identifier, 1), + [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_identifier, 1), + [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__throw_statement, 2), + [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__throw_statement, 2), + [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 5, .production_id = 78), + [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 5, .production_id = 78), + [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 6, .production_id = 113), + [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 6, .production_id = 113), + [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_transfer_statement, 2, .production_id = 42), + [4835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_transfer_statement, 2, .production_id = 42), + [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 5, .production_id = 113), + [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 5, .production_id = 113), + [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_statement, 1), + [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_statement, 1), + [4845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 2), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 2), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_path_expression, 1), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), + [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_path_expression, 1), + [4861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 3), + [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 3), + [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_call_suffix_repeat1, 3, .production_id = 3), + [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_suffix_repeat1, 3, .production_id = 3), + [4869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 4), + [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 4), + [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 4, .production_id = 41), + [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 4, .production_id = 41), + [4877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 4, .production_id = 78), + [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 4, .production_id = 78), + [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [4883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_user_type, 1, .production_id = 4), REDUCE(sym__expression, 1), + [4886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [4888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(4501), + [4891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directly_assignable_expression, 1), + [4893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 5, .production_id = 41), + [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 5, .production_id = 41), + [4897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 3, .production_id = 41), + [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 3, .production_id = 41), + [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2), + [4903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2), + [4905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 3, .production_id = 35), + [4907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 3, .production_id = 35), + [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, .production_id = 148), + [4911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, .production_id = 148), + [4913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 4), + [4915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 4), + [4917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unary_expression, 1), REDUCE(sym_await_expression, 2, .production_id = 12), + [4920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unary_expression, 1), REDUCE(sym_await_expression, 2, .production_id = 12), + [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 2), + [4925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 2), + [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1), + [4929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1), + [4931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 3), + [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, .production_id = 90), + [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, .production_id = 90), + [4939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_call_suffix, 1), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1), + [4942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_call_suffix, 1), REDUCE(sym_expr_hack_at_ternary_binary_call_suffix, 1), + [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 3), + [4947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 3), + [4949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 5), + [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5), + [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_expression, 2, .production_id = 19), + [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_expression, 2, .production_id = 19), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_suffix, 2, .production_id = 54), + [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_suffix, 2, .production_id = 54), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_expression, 1), + [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_expression, 1), + [4965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 4), + [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), + [4969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unary_expression, 1), REDUCE(sym_try_expression, 2, .production_id = 12), + [4972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__unary_expression, 1), REDUCE(sym_try_expression, 2, .production_id = 12), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, .production_id = 66), + [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, .production_id = 66), + [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_expression, 1), + [4981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_self_expression, 1), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), + [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, .production_id = 39), + [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, .production_id = 39), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, .production_id = 72), + [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, .production_id = 72), + [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_path_component, 2), + [4997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__key_path_component, 2), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), + [5003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(161), + [5006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2), + [5008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(1213), + [5011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(1213), + [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_path_component, 1), + [5016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__key_path_component, 1), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 1), + [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 1), + [5024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(6272), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), + [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2), + [5031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6272), + [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 2), + [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 2), + [5038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(6272), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), + [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8402), + [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_composition_type, 2), + [5051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_composition_type, 2), + [5053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, .production_id = 38), + [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2, .production_id = 38), + [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_path_expression, 2), + [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_path_expression, 2), + [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2, .production_id = 16), + [5063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2, .production_id = 16), + [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_path_postfixes, 2), + [5067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__key_path_postfixes, 2), + [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_path_postfixes, 4), + [5071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__key_path_postfixes, 4), + [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_path_expression, 3), + [5075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_path_expression, 3), + [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_path_expression_repeat1, 2), + [5079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2), SHIFT_REPEAT(5014), + [5082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2), + [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 1, .production_id = 4), + [5086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 1, .production_id = 4), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), + [5090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_path_postfixes, 3), + [5092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__key_path_postfixes, 3), + [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), + [5096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), + [5098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4700), + [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), + [5103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_optional_type_repeat1, 2), + [5105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(1235), + [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opaque_type, 2), + [5110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_opaque_type, 2), + [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 70), + [5114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 70), + [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 149), + [5118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 149), + [5120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, .production_id = 45), + [5122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, .production_id = 45), + [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metatype, 3), + [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metatype, 3), + [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 2, .production_id = 4), + [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 2, .production_id = 4), + [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, .production_id = 133), + [5134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, .production_id = 133), + [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 109), + [5138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 109), + [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 37), + [5142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 37), + [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_type, 5, .production_id = 108), + [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_type, 5, .production_id = 108), + [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 4, .production_id = 74), + [5150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 4, .production_id = 74), + [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2, .production_id = 29), + [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2, .production_id = 29), + [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 2), + [5158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 2), + [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_expression, 2, .production_id = 18), + [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_expression, 2, .production_id = 18), + [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, .production_id = 53), + [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, .production_id = 53), + [5168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_await_expression, 2, .dynamic_precedence = 1, .production_id = 12), + [5171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym_await_expression, 2, .dynamic_precedence = 1, .production_id = 12), + [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_value_arguments, 4), + [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_value_arguments, 4), + [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_value_arguments, 2), + [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_value_arguments, 2), + [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__playground_literal, 7), + [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__playground_literal, 7), + [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 2), + [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 2), + [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__playground_literal, 6), + [5192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__playground_literal, 6), + [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, .production_id = 20), + [5196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, .production_id = 20), + [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 2), + [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 2), + [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 1, .production_id = 1), + [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 1, .production_id = 1), + [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 4), + [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 4), + [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_line_string_literal, 2), + [5212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_line_string_literal, 2), + [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 5), + [5216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 5), + [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 4, .production_id = 39), + [5220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 4, .production_id = 39), + [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_string_literal, 2), + [5224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_string_literal, 2), + [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 4, .production_id = 72), + [5228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 4, .production_id = 72), + [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 5, .production_id = 74), + [5232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 5, .production_id = 74), + [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 5, .production_id = 72), + [5236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 5, .production_id = 72), + [5238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_try_expression, 2, .dynamic_precedence = 1, .production_id = 12), + [5241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym_try_expression, 2, .dynamic_precedence = 1, .production_id = 12), + [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 4, .production_id = 40), + [5246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 4, .production_id = 40), + [5248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 4), + [5250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 4), + [5252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_suffix, 1), + [5254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_suffix, 1), + [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_string_literal, 3, .production_id = 34), + [5258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_string_literal, 3, .production_id = 34), + [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_hack_at_ternary_binary_call, 2), + [5262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_hack_at_ternary_binary_call, 2), + [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 1), + [5266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 1), + [5268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_expression, 3, .production_id = 52), + [5270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_expression, 3, .production_id = 52), + [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 3, .production_id = 40), + [5274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 3, .production_id = 40), + [5276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_value_arguments, 3), + [5278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_value_arguments, 3), + [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_line_string_literal, 3, .production_id = 34), + [5282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_line_string_literal, 3, .production_id = 34), + [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 3, .production_id = 39), + [5286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 3, .production_id = 39), + [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [5290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 3), + [5294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 3), + [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_path_string_expression, 4), + [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_path_string_expression, 4), + [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_literal, 3), + [5302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_literal, 3), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 2), + [5310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 2), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 3), + [5322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 3), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10404), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8756), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8645), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 4, .production_id = 12), + [5378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 4, .production_id = 12), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8806), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [5388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(10404), + [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), + [5393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(6535), + [5396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(4840), + [5399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(6514), + [5402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(6362), + [5405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(2529), + [5408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(6360), + [5411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(6341), + [5414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(4889), + [5417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(3455), + [5420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(5671), + [5423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(8645), + [5426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(6462), + [5429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(7443), + [5432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(7076), + [5435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(2971), + [5438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(6533), + [5441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(6507), + [5444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(5742), + [5447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(2680), + [5450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(3041), + [5453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(3025), + [5456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(2824), + [5459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(3109), + [5462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(3108), + [5465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(3107), + [5468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(3106), + [5471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_class_body_repeat1, 2), SHIFT_REPEAT(3106), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8736), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8644), + [5478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_custom_operator, 1), SHIFT(1333), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10212), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9936), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), + [5513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_custom_operator, 1), SHIFT(1358), + [5516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_custom_operator, 1), SHIFT(1340), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8640), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8758), + [5525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_custom_operator, 1), SHIFT(1336), + [5528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_custom_operator, 1), SHIFT(1362), + [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_member_declarations, 3), + [5533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_member_declarations, 2), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [5537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(185), + [5540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(1392), + [5543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(1392), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [5548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(5978), + [5551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(5978), + [5554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(5978), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9043), + [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), + [5563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(1405), + [5566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4718), + [5569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2), SHIFT_REPEAT(5088), + [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__async_modifier, 1), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 1), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 1), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 4, .production_id = 90), + [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 4, .production_id = 147), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [5846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 3, .production_id = 104), + [5848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 3, .production_id = 103), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 2, .production_id = 35), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [5902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 1, .production_id = 31), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), + [5906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_capture_list_repeat1, 2), + [5908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), + [5910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(5843), + [5913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(6164), + [5916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat3, 4), + [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__playground_literal_repeat1, 4), + [5920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 4, .production_id = 45), + [5922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6164), + [5925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list_item, 3, .production_id = 104), + [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 3, .production_id = 137), + [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, .production_id = 35), + [5935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 4, .production_id = 90), + [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 6, .production_id = 161), + [5939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 2, .production_id = 39), + [5941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dictionary_literal_item, 3, .production_id = 71), + [5943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list_item, 4, .production_id = 90), + [5945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 7, .production_id = 199), + [5947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(6164), + [5950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_modifiers, 1), + [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_modifiers, 1), + [5954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 4, .production_id = 177), + [5956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat3, 2), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10025), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8755), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10279), + [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_statement, 1), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [6034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_member_declarations, 2, .production_id = 87), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [6044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2), + [6046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2), + [6048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 2), SHIFT(315), + [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_member_declarations, 3, .production_id = 124), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [6061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 5), + [6063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5), + [6065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 6), + [6067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 6), + [6069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 7), + [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 7), + [6073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 8), + [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 8), + [6077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [6079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_custom_operator, 1), SHIFT(2269), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [6090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 1, .production_id = 3), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [6094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_parameter, 1, .production_id = 3), + [6096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6106), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [6105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6173), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [6114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(5954), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [6121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(5948), + [6124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(2305), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), + [6131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 1, .production_id = 14), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 1, .production_id = 14), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [6139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6245), + [6142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1), + [6144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_modifiers, 1), SHIFT(3109), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), + [6151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(3109), + [6154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(3033), + [6157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5742), + [6160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(2680), + [6163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(3041), + [6166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(3025), + [6169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(2824), + [6172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(3108), + [6175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(3107), + [6178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(3106), + [6181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(3106), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8923), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [6190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4691), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [6195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 2, .production_id = 16), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 2, .production_id = 16), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 3, .production_id = 58), + [6207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 3, .production_id = 58), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [6213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(2343), + [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, .production_id = 16), + [6218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, .production_id = 16), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [6222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_repeat2, 1), + [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat2, 1), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 2), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [6244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 2), + [6246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(2371), + [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 3), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [6255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 3), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [6265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_lambda_parameter, 1, .production_id = 3), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 9, .production_id = 275), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [6276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 9, .production_id = 275), + [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 10, .production_id = 265), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [6282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 10, .production_id = 265), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3, .production_id = 58), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [6292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 3, .production_id = 58), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, .production_id = 214), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, .production_id = 214), + [6302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4709), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8998), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 4, .production_id = 58), + [6311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 4, .production_id = 58), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 2, .production_id = 16), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [6319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 2, .production_id = 16), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8652), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 1), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [6329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 1), + [6331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 2, .production_id = 45), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [6335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 2, .production_id = 45), + [6337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4693), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 3, .production_id = 82), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [6346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 3, .production_id = 82), + [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 4), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 4), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 5), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 5), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 5, .production_id = 161), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [6368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 5, .production_id = 161), + [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 6), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [6374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 6), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 6, .production_id = 199), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [6382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 6, .production_id = 199), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 6, .production_id = 161), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 6, .production_id = 161), + [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 6, .production_id = 202), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [6394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 6, .production_id = 202), + [6396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 7), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [6400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 7), + [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 7, .production_id = 199), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [6406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 7, .production_id = 199), + [6408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 7, .production_id = 234), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [6412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 7, .production_id = 234), + [6414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 7, .production_id = 240), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [6418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 7, .production_id = 240), + [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 7, .production_id = 161), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [6424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 7, .production_id = 161), + [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 7, .production_id = 202), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [6430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 7, .production_id = 202), + [6432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 8, .production_id = 258), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [6436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 8, .production_id = 258), + [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 8, .production_id = 199), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [6442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 8, .production_id = 199), + [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 8, .production_id = 234), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [6448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 8, .production_id = 234), + [6450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 8, .production_id = 240), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [6454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 8, .production_id = 240), + [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 8, .production_id = 265), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [6460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 8, .production_id = 265), + [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 8, .production_id = 202), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [6466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 8, .production_id = 202), + [6468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 9, .production_id = 258), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [6472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 9, .production_id = 258), + [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 9, .production_id = 234), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [6478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 9, .production_id = 234), + [6480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 9, .production_id = 240), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [6484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 9, .production_id = 240), + [6486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 3, .production_id = 16), + [6488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 3, .production_id = 16), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [6492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 10, .production_id = 275), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [6496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 10, .production_id = 275), + [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 1), + [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 9, .production_id = 265), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [6504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 9, .production_id = 265), + [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 10, .production_id = 258), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [6510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 10, .production_id = 258), + [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 11, .production_id = 275), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [6516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 11, .production_id = 275), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10423), + [6548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [6552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(6448), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10434), + [6563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(5712), + [6566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(3019), + [6569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(3433), + [6572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(3430), + [6575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(3430), + [6578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_binding_pattern, 1), + [6580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_binding_pattern, 1), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [6584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_capture_list_item, 1, .production_id = 3), + [6587] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__simple_user_type, 1, .production_id = 4), REDUCE(sym__expression, 1), REDUCE(sym_capture_list_item, 1, .production_id = 3), + [6591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_user_type, 1, .production_id = 4), REDUCE(sym__expression, 1), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_entry_repeat1, 2, .production_id = 16), + [6598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_entry_repeat1, 2, .production_id = 16), + [6600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 3, .production_id = 16), + [6602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 3, .production_id = 16), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 4, .production_id = 16), + [6616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 4, .production_id = 16), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [6620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 8), + [6622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 8), + [6624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 4, .production_id = 82), + [6626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 4, .production_id = 82), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), + [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [6648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_modifier, 1), + [6650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_property_modifier, 1), SHIFT(3455), + [6653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_property_modifier, 1), SHIFT(6462), + [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_modifier, 1), + [6658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 3, .production_id = 45), + [6660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 3, .production_id = 45), + [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 12, .production_id = 275), + [6664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 12, .production_id = 275), + [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 11, .production_id = 265), + [6668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 11, .production_id = 265), + [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 2, .production_id = 14), + [6672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 2, .production_id = 14), + [6674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 8, .production_id = 161), + [6676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 8, .production_id = 161), + [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 11, .production_id = 258), + [6680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 11, .production_id = 258), + [6682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 58), + [6684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 58), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [6688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 10, .production_id = 234), + [6690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 10, .production_id = 234), + [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 10, .production_id = 240), + [6694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 10, .production_id = 240), + [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 9, .production_id = 199), + [6698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 9, .production_id = 199), + [6700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_binding_pattern, 9, .production_id = 202), + [6702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_binding_pattern, 9, .production_id = 202), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7908), + [6718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 1, .production_id = 14), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [6772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 3, .production_id = 60), + [6774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 3, .production_id = 60), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [6808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 4, .production_id = 16), + [6810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 4, .production_id = 16), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [6814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__possibly_implicitly_unwrapped_type, 1, .production_id = 77), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [6818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__possibly_implicitly_unwrapped_type, 1, .production_id = 77), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [6836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 2, .production_id = 17), + [6838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 2, .production_id = 17), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [6848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 4, .production_id = 95), + [6850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 4, .production_id = 95), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), + [6856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), + [6858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(6637), + [6861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [6863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [6869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6117), + [6872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, .production_id = 69), + [6874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, .production_id = 69), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [6882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 3), + [6884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 3), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [6888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(2633), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [6897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(5081), + [6900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), + [6902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constraints_repeat1, 2), + [6904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__possibly_implicitly_unwrapped_type, 2, .production_id = 77), + [6906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__possibly_implicitly_unwrapped_type, 2, .production_id = 77), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 2), + [6912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 2), + [6914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2), + [6916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 2), + [6918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 5, .production_id = 145), + [6920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 5, .production_id = 145), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [6928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4685), + [6931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3, .production_id = 170), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [6935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 3, .production_id = 170), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8983), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [6941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_constraint, 3, .production_id = 165), + [6943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_constraint, 3, .production_id = 165), + [6945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_constraint, 4, .production_id = 205), + [6947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inheritance_constraint, 4, .production_id = 205), + [6949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, .production_id = 247), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [6953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, .production_id = 247), + [6955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 6, .production_id = 268), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [6959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 6, .production_id = 268), + [6961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, .production_id = 246), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [6965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, .production_id = 246), + [6967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_constraint, 3, .production_id = 164), + [6969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inheritance_constraint, 3, .production_id = 164), + [6971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(5742), + [6974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(2690), + [6977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(3108), + [6980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(3106), + [6983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1), SHIFT(3106), + [6986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym_capture_list_item, 1, .production_id = 3), + [6989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), + [6991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(5742), + [6994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(2690), + [6997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(3108), + [7000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(3106), + [7003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(3106), + [7006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3, .production_id = 168), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [7010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 3, .production_id = 168), + [7012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, .production_id = 213), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [7016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, .production_id = 213), + [7018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 1), + [7020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 1), + [7022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, .production_id = 212), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [7026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, .production_id = 212), + [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, .production_id = 245), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [7032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, .production_id = 245), + [7034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_entry_repeat1, 2, .production_id = 211), SHIFT_REPEAT(6525), + [7037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_entry_repeat1, 2, .production_id = 211), + [7039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_entry_repeat1, 2, .production_id = 211), + [7041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, .production_id = 210), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [7045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, .production_id = 210), + [7047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_constraint, 4, .production_id = 206), + [7049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_constraint, 4, .production_id = 206), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [7055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entry_suffix, 1, .production_id = 169), + [7057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_entry_suffix, 1, .production_id = 169), + [7059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 4, .production_id = 101), + [7061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 4, .production_id = 101), + [7063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 4, .production_id = 88), + [7065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 4, .production_id = 88), + [7067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 8, .production_id = 343), + [7069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 8, .production_id = 343), + [7071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 4, .production_id = 60), + [7073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 4, .production_id = 60), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [7077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 4, .production_id = 89), + [7079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 4, .production_id = 89), + [7081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 9, .production_id = 381), + [7083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 9, .production_id = 381), + [7085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 4, .production_id = 91), + [7087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 4, .production_id = 91), + [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 8, .production_id = 199), + [7091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 8, .production_id = 199), + [7093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 4, .production_id = 102), + [7095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 4, .production_id = 102), + [7097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 4, .production_id = 133), + [7099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 4, .production_id = 133), + [7101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 8, .production_id = 249), + [7103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 8, .production_id = 249), + [7105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 7, .production_id = 222), + [7107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 7, .production_id = 222), + [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 7, .production_id = 221), + [7111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 7, .production_id = 221), + [7113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 7, .production_id = 215), + [7115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 7, .production_id = 215), + [7117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 6, .production_id = 145), + [7119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 6, .production_id = 145), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [7123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 6, .production_id = 185), + [7125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 6, .production_id = 185), + [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 6, .production_id = 184), + [7129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 6, .production_id = 184), + [7131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 6, .production_id = 182), + [7133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 6, .production_id = 182), + [7135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 6, .production_id = 181), + [7137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 6, .production_id = 181), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [7141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 6, .production_id = 173), + [7143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 6, .production_id = 173), + [7145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 6, .production_id = 172), + [7147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 6, .production_id = 172), + [7149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, .production_id = 92), SHIFT_REPEAT(4862), + [7152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, .production_id = 92), + [7154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, .production_id = 92), + [7156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 6, .production_id = 294), + [7158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 6, .production_id = 294), + [7160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1), REDUCE(sym_lambda_parameter, 1), + [7163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 5, .production_id = 161), + [7165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 5, .production_id = 161), + [7167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 5, .production_id = 45), + [7169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 5, .production_id = 45), + [7171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 6, .production_id = 202), + [7173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 6, .production_id = 202), + [7175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 6, .production_id = 199), + [7177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 6, .production_id = 199), + [7179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 144), + [7181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 144), + [7183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 142), + [7185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 142), + [7187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 141), + [7189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 141), + [7191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 5, .production_id = 95), + [7193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 5, .production_id = 95), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 2), + [7199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 2), + [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_entry_repeat1, 3, .production_id = 168), + [7203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_entry_repeat1, 3, .production_id = 168), + [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 129), + [7207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 129), + [7209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 3, .production_id = 47), + [7211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 3, .production_id = 47), + [7213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 3, .production_id = 48), + [7215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 3, .production_id = 48), + [7217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 128), + [7219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 128), + [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 3, .production_id = 17), + [7223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 3, .production_id = 17), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [7227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 126), + [7229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 126), + [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 125), + [7233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_property_declaration, 5, .production_id = 125), + [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 7, .production_id = 161), + [7237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 7, .production_id = 161), + [7239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 7, .production_id = 234), + [7241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 7, .production_id = 234), + [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [7247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 1), + [7249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 1), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), + [7253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 1), REDUCE(aux_sym_capture_list_repeat1, 1), + [7256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 1), + [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type_parameters, 3, .production_id = 45), + [7260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type_parameters, 3, .production_id = 45), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [7264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutation_modifier, 1), + [7266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutation_modifier, 1), + [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 3, .production_id = 47), + [7270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 3, .production_id = 47), + [7272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property, 3), + [7274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property, 3), + [7276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(174), + [7279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(2827), + [7282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(2827), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 3), + [7291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 3), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [7299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 4, .production_id = 88), + [7301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 4, .production_id = 88), + [7303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 5, .production_id = 125), + [7305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 5, .production_id = 125), + [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property, 2), + [7309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property, 2), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [7333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(182), + [7336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(2843), + [7339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(2843), + [7342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(157), + [7345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(2844), + [7348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(2844), + [7351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), + [7353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(144), + [7356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(4239), + [7359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(4235), + [7362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(5712), + [7365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(3546), + [7368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(4236), + [7371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(4229), + [7374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(4237), + [7377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(3433), + [7380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(4240), + [7383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(3430), + [7386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(3430), + [7389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2), SHIFT_REPEAT(10312), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8713), + [7396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(6304), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [7401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 4, .production_id = 94), + [7403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 4, .production_id = 94), + [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 5, .production_id = 132), + [7407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 5, .production_id = 132), + [7409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, .production_id = 170), + [7411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, .production_id = 170), + [7413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 5, .production_id = 243), + [7415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 5, .production_id = 243), + [7417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(6304), + [7420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 5, .production_id = 244), + [7422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 5, .production_id = 244), + [7424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 5, .production_id = 207), + [7426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 5, .production_id = 207), + [7428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(6097), + [7431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, .production_id = 58), + [7433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, .production_id = 58), + [7435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, .production_id = 214), + [7437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, .production_id = 214), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [7441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, .production_id = 28), + [7443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, .production_id = 28), + [7445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typealias_declaration, 2, .production_id = 27), + [7447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typealias_declaration, 2, .production_id = 27), + [7449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(5949), + [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 2, .production_id = 26), + [7454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 2, .production_id = 26), + [7456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precedence_group_declaration, 4), + [7458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_precedence_group_declaration, 4), + [7460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_typealias_declaration, 5, .production_id = 119), + [7462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_typealias_declaration, 5, .production_id = 119), + [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 2, .production_id = 24), + [7466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 2, .production_id = 24), + [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 1), + [7470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 1), + [7472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 5, .production_id = 120), + [7474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 5, .production_id = 120), + [7476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 6, .production_id = 267), + [7478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 6, .production_id = 267), + [7480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(6051), + [7483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(147), + [7486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(2876), + [7489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__key_path_component_repeat1, 2), SHIFT_REPEAT(2876), + [7492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 6, .production_id = 243), + [7494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 6, .production_id = 243), + [7496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(6051), + [7499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 6, .production_id = 244), + [7501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 6, .production_id = 244), + [7503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 7, .production_id = 268), + [7505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 7, .production_id = 268), + [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 5, .production_id = 131), + [7509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 5, .production_id = 131), + [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 4, .production_id = 93), + [7513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 4, .production_id = 93), + [7515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deinit_declaration, 3, .production_id = 167), + [7517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deinit_declaration, 3, .production_id = 167), + [7519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 3, .production_id = 98), + [7521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 3, .production_id = 98), + [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 5, .production_id = 146), + [7525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 5, .production_id = 146), + [7527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [7529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [7531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 6, .production_id = 166), + [7533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 6, .production_id = 166), + [7535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 6, .production_id = 166), + [7537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 6, .production_id = 166), + [7539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_typealias_declaration, 4, .production_id = 83), + [7541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_typealias_declaration, 4, .production_id = 83), + [7543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 3), + [7545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 3), + [7547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [7549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [7551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 6, .production_id = 174), + [7553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 6, .production_id = 174), + [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 6, .production_id = 175), + [7557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 6, .production_id = 175), + [7559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 5, .production_id = 120), + [7561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 5, .production_id = 120), + [7563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 4, .production_id = 96), + [7565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 4, .production_id = 96), + [7567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 6, .production_id = 176), + [7569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 6, .production_id = 176), + [7571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 2), + [7573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 2), + [7575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 7, .production_id = 267), + [7577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 7, .production_id = 267), + [7579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 4, .production_id = 85), + [7581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 4, .production_id = 85), + [7583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6097), + [7586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 7, .production_id = 281), + [7588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 7, .production_id = 281), + [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3, .production_id = 16), + [7592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 3, .production_id = 16), + [7594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 1, .production_id = 8), + [7596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 1, .production_id = 8), + [7598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_body, 3, .production_id = 123), + [7600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_body, 3, .production_id = 123), + [7602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precedence_group_declaration, 5), + [7604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_precedence_group_declaration, 5), + [7606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, .production_id = 168), + [7608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 4, .production_id = 168), + [7610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 8, .production_id = 281), + [7612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 8, .production_id = 281), + [7614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 4, .production_id = 207), + [7616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 4, .production_id = 207), + [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typealias_declaration, 1, .production_id = 6), + [7620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typealias_declaration, 1, .production_id = 6), + [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 1, .production_id = 5), + [7624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 1, .production_id = 5), + [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 6, .production_id = 175), + [7628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 6, .production_id = 175), + [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deinit_declaration, 2, .production_id = 121), + [7632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_deinit_declaration, 2, .production_id = 121), + [7634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 6, .production_id = 186), + [7636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 6, .production_id = 186), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4), + [7642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [7646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 4, .production_id = 94), + [7648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 4, .production_id = 94), + [7650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6051), + [7653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, .production_id = 213), + [7655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, .production_id = 213), + [7657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, .production_id = 212), + [7659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, .production_id = 212), + [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 7, .production_id = 208), + [7663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 7, .production_id = 208), + [7665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 7, .production_id = 208), + [7667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 7, .production_id = 208), + [7669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 2), + [7671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 2), + [7673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), + [7675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), + [7677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 5, .production_id = 210), + [7679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 5, .production_id = 210), + [7681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(6097), + [7684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 8, .production_id = 250), + [7686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 8, .production_id = 250), + [7688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 8, .production_id = 248), + [7690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 8, .production_id = 248), + [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 6, .production_id = 245), + [7694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 6, .production_id = 245), + [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 8, .production_id = 248), + [7698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 8, .production_id = 248), + [7700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 6, .production_id = 246), + [7702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 6, .production_id = 246), + [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 6, .production_id = 247), + [7706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_entry, 6, .production_id = 247), + [7708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_body, 2), + [7710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_body, 2), + [7712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 7, .production_id = 223), + [7714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 7, .production_id = 223), + [7716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 3, .production_id = 49), + [7718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 3, .production_id = 49), + [7720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 7, .production_id = 217), + [7722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 7, .production_id = 217), + [7724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associatedtype_declaration, 7, .production_id = 218), + [7726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associatedtype_declaration, 7, .production_id = 218), + [7728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 7, .production_id = 217), + [7730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 7, .production_id = 217), + [7732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_declaration, 4, .production_id = 98), + [7734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_declaration, 4, .production_id = 98), + [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 5, .production_id = 130), + [7738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 5, .production_id = 130), + [7740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 5, .production_id = 131), + [7742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 5, .production_id = 131), + [7744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 3, .production_id = 46), + [7746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 3, .production_id = 46), + [7748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 4, .production_id = 85), + [7750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 4, .production_id = 85), + [7752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_class_declaration, 7, .production_id = 216), + [7754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_class_declaration, 7, .production_id = 216), + [7756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6304), + [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_declaration, 3, .production_id = 46), + [7761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_declaration, 3, .production_id = 46), + [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 5), + [7765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 5), + [7767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(6193), + [7770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6075), + [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8893), + [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [7777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4731), + [7780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifier, 1), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8240), + [7784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_modifier, 1), + [7786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2), SHIFT_REPEAT(5048), + [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), + [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9103), + [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8253), + [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [7797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4739), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [7804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(2992), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [7811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6193), + [7814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2), SHIFT_REPEAT(5035), + [7817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2), SHIFT_REPEAT(5059), + [7820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(6193), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [7827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(3011), + [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [7832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(5712), + [7835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(3019), + [7838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(3433), + [7841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(3430), + [7844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(3430), + [7847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4726), + [7850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(3021), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10387), + [7857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [7859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8706), + [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), + [7869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(3036), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8653), + [7874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4733), + [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_modifier, 1), + [7879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_modifier, 1), + [7881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(3056), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [7888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6089), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [7893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [7895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [7905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6300), + [7908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ownership_modifier, 1), + [7910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ownership_modifier, 1), + [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifier, 1), + [7914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifier, 1), + [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_modifier, 1), + [7918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inheritance_modifier, 1), + [7920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_path_expression_repeat1, 2), SHIFT_REPEAT(5017), + [7923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4707), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9028), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [7930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6131), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [7945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(4239), + [7948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(4235), + [7951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(5712), + [7954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(3546), + [7957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(4236), + [7960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(4229), + [7963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(4237), + [7966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(3433), + [7969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(4240), + [7972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(3430), + [7975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2), SHIFT_REPEAT(3430), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [7980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(3305), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8326), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [8007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4728), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9073), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [8020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(3389), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [8087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_property_modifier, 1), SHIFT(3455), + [8090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_property_modifier, 1), SHIFT(6462), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [8097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4722), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9116), + [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8303), + [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8674), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8303), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [8116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6060), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [8123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(3488), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [8132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(5042), + [8135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 3), + [8137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 3), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [8141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_statement_repeat1, 2), + [8143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_statement_repeat1, 2), + [8145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_statement_repeat1, 2), SHIFT_REPEAT(4675), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9058), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [8152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4724), + [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 2), + [8157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 2), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [8161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_while_statement, 6, .production_id = 163), + [8163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_while_statement, 6, .production_id = 163), + [8165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [8175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_while_statement, 6, .production_id = 162), + [8177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_while_statement, 6, .production_id = 162), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_while_statement, 5, .production_id = 118), + [8191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_while_statement, 5, .production_id = 118), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [8203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_while_statement, 7, .production_id = 204), + [8205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_while_statement, 7, .production_id = 204), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [8221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, .production_id = 92), SHIFT_REPEAT(4881), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [8244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 81), SHIFT_REPEAT(135), + [8247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 81), + [8249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 81), + [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2), + [8253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2), + [8255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2), SHIFT_REPEAT(118), + [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 80), + [8260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 80), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 2), + [8266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 2), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [8270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 44), + [8272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 44), + [8274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 44), + [8276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 44), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), + [8280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 1), + [8282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statements, 1), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [8286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_condition, 5), + [8288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_condition, 5), + [8290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_availability_condition, 4), + [8292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_availability_condition, 4), + [8294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 3), + [8296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 3), + [8298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 3, .production_id = 115), + [8300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 3, .production_id = 115), + [8302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 4, .production_id = 115), + [8304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 4, .production_id = 115), + [8306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 260), + [8308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 260), + [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 459), + [8312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 459), + [8314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 21, .production_id = 497), + [8316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 21, .production_id = 497), + [8318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 20, .production_id = 496), + [8320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 20, .production_id = 496), + [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 20, .production_id = 497), + [8324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 20, .production_id = 497), + [8326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 20, .production_id = 495), + [8328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 20, .production_id = 495), + [8330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 20, .production_id = 494), + [8332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 20, .production_id = 494), + [8334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 20, .production_id = 493), + [8336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 20, .production_id = 493), + [8338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 20, .production_id = 492), + [8340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 20, .production_id = 492), + [8342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 19, .production_id = 496), + [8344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 19, .production_id = 496), + [8346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 19, .production_id = 491), + [8348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 19, .production_id = 491), + [8350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 19, .production_id = 490), + [8352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 19, .production_id = 490), + [8354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 19, .production_id = 489), + [8356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 19, .production_id = 489), + [8358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 19, .production_id = 488), + [8360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 19, .production_id = 488), + [8362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 19, .production_id = 495), + [8364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 19, .production_id = 495), + [8366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 19, .production_id = 494), + [8368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 19, .production_id = 494), + [8370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 19, .production_id = 487), + [8372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 19, .production_id = 487), + [8374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 19, .production_id = 486), + [8376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 19, .production_id = 486), + [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 19, .production_id = 493), + [8380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 19, .production_id = 493), + [8382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 19, .production_id = 485), + [8384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 19, .production_id = 485), + [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 19, .production_id = 484), + [8388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 19, .production_id = 484), + [8390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 19, .production_id = 483), + [8392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 19, .production_id = 483), + [8394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 19, .production_id = 482), + [8396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 19, .production_id = 482), + [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 19, .production_id = 492), + [8400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 19, .production_id = 492), + [8402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 19, .production_id = 481), + [8404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 19, .production_id = 481), + [8406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 19, .production_id = 480), + [8408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 19, .production_id = 480), + [8410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 19, .production_id = 479), + [8412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 19, .production_id = 479), + [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 478), + [8416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 478), + [8418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 491), + [8420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 491), + [8422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 490), + [8424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 490), + [8426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 477), + [8428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 477), + [8430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 476), + [8432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 476), + [8434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration, 2, .production_id = 24), + [8436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifierless_function_declaration, 2, .production_id = 24), + [8438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 489), + [8440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 489), + [8442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 475), + [8444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 475), + [8446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 474), + [8448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 474), + [8450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 488), + [8452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 488), + [8454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 473), + [8456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 473), + [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 472), + [8460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 472), + [8462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 471), + [8464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 471), + [8466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_property_declaration, 2, .production_id = 26), + [8468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_property_declaration, 2, .production_id = 26), + [8470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_typealias_declaration, 2, .production_id = 27), + [8472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_typealias_declaration, 2, .production_id = 27), + [8474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 487), + [8476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 487), + [8478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 2, .production_id = 43), + [8480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_function_declaration, 2, .production_id = 43), + [8482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 486), + [8484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 486), + [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 470), + [8488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 470), + [8490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 469), + [8492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 469), + [8494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_class_declaration, 2, .production_id = 28), + [8496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_class_declaration, 2, .production_id = 28), + [8498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 485), + [8500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 485), + [8502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 484), + [8504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 484), + [8506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 468), + [8508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 468), + [8510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 467), + [8512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 467), + [8514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 466), + [8516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 466), + [8518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 483), + [8520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 483), + [8522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 465), + [8524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 465), + [8526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 464), + [8528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 464), + [8530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 463), + [8532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 463), + [8534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 482), + [8536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 482), + [8538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 462), + [8540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 462), + [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 461), + [8544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 461), + [8546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 460), + [8548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 460), + [8550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 459), + [8552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 459), + [8554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 481), + [8556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 481), + [8558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 480), + [8560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 480), + [8562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 458), + [8564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 458), + [8566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 457), + [8568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 457), + [8570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 479), + [8572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 479), + [8574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 456), + [8576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 456), + [8578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 18, .production_id = 455), + [8580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 18, .production_id = 455), + [8582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 478), + [8584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 478), + [8586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 454), + [8588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 454), + [8590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 453), + [8592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 453), + [8594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 452), + [8596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 452), + [8598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 477), + [8600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 477), + [8602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 476), + [8604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 476), + [8606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 451), + [8608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 451), + [8610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 450), + [8612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 450), + [8614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 475), + [8616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 475), + [8618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 474), + [8620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 474), + [8622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 449), + [8624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 449), + [8626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 448), + [8628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 448), + [8630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 473), + [8632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 473), + [8634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 472), + [8636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 472), + [8638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 447), + [8640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 447), + [8642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 446), + [8644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 446), + [8646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 471), + [8648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 471), + [8650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 445), + [8652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 445), + [8654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 444), + [8656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 444), + [8658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 470), + [8660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 470), + [8662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 469), + [8664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 469), + [8666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 443), + [8668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 443), + [8670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 468), + [8672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 468), + [8674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 467), + [8676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 467), + [8678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 442), + [8680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 442), + [8682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard_statement, 4, .production_id = 44), + [8684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_guard_statement, 4, .production_id = 44), + [8686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 441), + [8688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 441), + [8690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 466), + [8692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 466), + [8694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 440), + [8696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 440), + [8698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 439), + [8700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 439), + [8702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 438), + [8704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 438), + [8706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 437), + [8708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 437), + [8710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 465), + [8712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 465), + [8714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 44), + [8716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 44), + [8718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 464), + [8720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 464), + [8722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 436), + [8724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 436), + [8726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 435), + [8728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 435), + [8730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 463), + [8732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 463), + [8734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 434), + [8736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 434), + [8738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 433), + [8740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 433), + [8742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 432), + [8744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 432), + [8746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 462), + [8748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 462), + [8750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 461), + [8752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 461), + [8754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 431), + [8756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 431), + [8758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 430), + [8760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 430), + [8762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 460), + [8764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 460), + [8766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 429), + [8768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 429), + [8770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 428), + [8772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 428), + [8774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 427), + [8776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 427), + [8778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 426), + [8780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 426), + [8782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 425), + [8784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 425), + [8786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 458), + [8788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 458), + [8790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 457), + [8792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 457), + [8794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 424), + [8796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 424), + [8798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 423), + [8800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 423), + [8802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 456), + [8804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 456), + [8806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 455), + [8808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 455), + [8810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 422), + [8812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 422), + [8814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 17, .production_id = 421), + [8816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 17, .production_id = 421), + [8818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 454), + [8820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 454), + [8822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 453), + [8824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 453), + [8826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 420), + [8828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 420), + [8830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 419), + [8832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 419), + [8834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 452), + [8836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 452), + [8838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 418), + [8840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 418), + [8842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 417), + [8844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 417), + [8846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 451), + [8848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 451), + [8850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 450), + [8852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 450), + [8854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 416), + [8856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 416), + [8858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 449), + [8860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 449), + [8862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 448), + [8864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 448), + [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 415), + [8868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 415), + [8870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 414), + [8872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 414), + [8874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 447), + [8876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 447), + [8878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 446), + [8880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 446), + [8882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 413), + [8884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 413), + [8886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 412), + [8888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 412), + [8890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 445), + [8892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 445), + [8894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 444), + [8896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 444), + [8898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 411), + [8900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 411), + [8902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 410), + [8904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 410), + [8906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 443), + [8908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 443), + [8910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 442), + [8912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 442), + [8914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 441), + [8916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 441), + [8918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 409), + [8920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 409), + [8922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 408), + [8924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 408), + [8926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 407), + [8928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 407), + [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 440), + [8932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 440), + [8934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 439), + [8936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 439), + [8938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 406), + [8940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 406), + [8942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 405), + [8944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 405), + [8946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 438), + [8948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 438), + [8950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 404), + [8952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 404), + [8954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 403), + [8956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 403), + [8958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 437), + [8960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 437), + [8962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 402), + [8964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 402), + [8966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 401), + [8968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 401), + [8970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 400), + [8972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 400), + [8974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 436), + [8976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 436), + [8978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 435), + [8980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 435), + [8982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 399), + [8984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 399), + [8986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 398), + [8988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 398), + [8990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 434), + [8992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 434), + [8994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 433), + [8996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 433), + [8998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 397), + [9000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 397), + [9002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 396), + [9004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 396), + [9006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 432), + [9008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 432), + [9010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 395), + [9012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 395), + [9014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 394), + [9016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 394), + [9018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 393), + [9020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 393), + [9022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 431), + [9024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 431), + [9026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 430), + [9028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 430), + [9030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 392), + [9032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 392), + [9034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 391), + [9036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 391), + [9038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 429), + [9040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 429), + [9042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 428), + [9044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 428), + [9046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 390), + [9048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 390), + [9050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 389), + [9052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 389), + [9054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 44), + [9056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 44), + [9058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard_statement, 5, .production_id = 80), + [9060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_guard_statement, 5, .production_id = 80), + [9062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 427), + [9064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 427), + [9066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 426), + [9068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 426), + [9070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 388), + [9072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 388), + [9074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 387), + [9076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 387), + [9078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5, .production_id = 12), + [9080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5, .production_id = 12), + [9082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 425), + [9084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 425), + [9086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 386), + [9088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 386), + [9090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 116), + [9092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 116), + [9094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 117), + [9096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 117), + [9098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 385), + [9100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 385), + [9102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 424), + [9104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 424), + [9106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 44), + [9108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 44), + [9110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 80), + [9112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 80), + [9114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 423), + [9116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 423), + [9118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 384), + [9120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 384), + [9122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 422), + [9124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 422), + [9126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 421), + [9128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 421), + [9130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 383), + [9132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 383), + [9134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 382), + [9136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 382), + [9138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 420), + [9140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 420), + [9142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 419), + [9144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 419), + [9146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 380), + [9148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 380), + [9150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 379), + [9152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 379), + [9154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 418), + [9156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 418), + [9158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 417), + [9160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 417), + [9162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 378), + [9164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 378), + [9166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 377), + [9168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 377), + [9170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 416), + [9172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 416), + [9174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 415), + [9176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 415), + [9178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 414), + [9180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 414), + [9182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 376), + [9184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 376), + [9186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 413), + [9188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 413), + [9190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 412), + [9192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 412), + [9194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 375), + [9196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 375), + [9198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 411), + [9200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 411), + [9202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 410), + [9204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 410), + [9206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 374), + [9208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 374), + [9210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 373), + [9212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 373), + [9214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 409), + [9216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 409), + [9218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 408), + [9220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 408), + [9222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 372), + [9224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 372), + [9226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 371), + [9228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 371), + [9230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 407), + [9232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 407), + [9234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 370), + [9236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 370), + [9238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 369), + [9240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 369), + [9242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 368), + [9244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 368), + [9246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 406), + [9248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 406), + [9250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 405), + [9252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 405), + [9254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 367), + [9256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 367), + [9258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 366), + [9260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 366), + [9262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 404), + [9264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 404), + [9266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 403), + [9268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 403), + [9270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 365), + [9272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 365), + [9274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 364), + [9276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 364), + [9278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 402), + [9280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 402), + [9282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 401), + [9284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 401), + [9286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 363), + [9288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 363), + [9290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 362), + [9292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 362), + [9294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 400), + [9296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 400), + [9298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 361), + [9300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 361), + [9302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 360), + [9304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 360), + [9306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 399), + [9308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 399), + [9310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 398), + [9312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 398), + [9314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 359), + [9316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 359), + [9318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 397), + [9320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 397), + [9322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 396), + [9324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 396), + [9326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 358), + [9328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 358), + [9330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 357), + [9332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 357), + [9334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 395), + [9336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 395), + [9338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 394), + [9340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 394), + [9342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 356), + [9344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 356), + [9346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 355), + [9348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 355), + [9350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 393), + [9352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 393), + [9354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 354), + [9356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 354), + [9358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 353), + [9360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 353), + [9362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 392), + [9364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 392), + [9366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 391), + [9368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 391), + [9370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 352), + [9372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 352), + [9374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 390), + [9376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 390), + [9378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 389), + [9380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 389), + [9382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 351), + [9384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 351), + [9386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 350), + [9388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 350), + [9390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 388), + [9392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 388), + [9394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 387), + [9396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 387), + [9398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 349), + [9400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 349), + [9402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 348), + [9404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 348), + [9406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 386), + [9408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 386), + [9410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 385), + [9412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 385), + [9414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 347), + [9416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 347), + [9418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 80), + [9420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 80), + [9422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 346), + [9424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 346), + [9426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 384), + [9428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 384), + [9430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 383), + [9432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 383), + [9434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 382), + [9436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 382), + [9438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 154), + [9440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 154), + [9442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 155), + [9444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 155), + [9446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 156), + [9448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 156), + [9450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 345), + [9452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 345), + [9454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 116), + [9456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 116), + [9458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 157), + [9460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 157), + [9462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 158), + [9464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 158), + [9466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 117), + [9468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 117), + [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 159), + [9472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 159), + [9474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 160), + [9476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 160), + [9478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 344), + [9480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 344), + [9482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 380), + [9484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 380), + [9486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 80), + [9488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 80), + [9490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__labeled_statement, 2), + [9492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__labeled_statement, 2), + [9494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 379), + [9496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 379), + [9498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 342), + [9500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 342), + [9502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 378), + [9504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 378), + [9506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 377), + [9508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 377), + [9510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 341), + [9512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 341), + [9514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 340), + [9516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 340), + [9518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 376), + [9520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 376), + [9522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_class_declaration, 1, .production_id = 8), + [9524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_class_declaration, 1, .production_id = 8), + [9526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 1, .production_id = 13), + [9528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_function_declaration, 1, .production_id = 13), + [9530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_typealias_declaration, 1, .production_id = 6), + [9532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_typealias_declaration, 1, .production_id = 6), + [9534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_property_declaration, 1, .production_id = 5), + [9536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_property_declaration, 1, .production_id = 5), + [9538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_declaration, 1, .production_id = 8), + [9540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_declaration, 1, .production_id = 8), + [9542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_declaration, 1, .production_id = 13), + [9544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_declaration, 1, .production_id = 13), + [9546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 375), + [9548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 375), + [9550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_declaration, 1, .production_id = 6), + [9552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_declaration, 1, .production_id = 6), + [9554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_declaration, 1, .production_id = 5), + [9556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_declaration, 1, .production_id = 5), + [9558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 374), + [9560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 374), + [9562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 373), + [9564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 373), + [9566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 339), + [9568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 339), + [9570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 372), + [9572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 372), + [9574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 371), + [9576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 371), + [9578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 338), + [9580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 338), + [9582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 337), + [9584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 337), + [9586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 370), + [9588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 370), + [9590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 369), + [9592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 369), + [9594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 336), + [9596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 336), + [9598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 335), + [9600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 335), + [9602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 368), + [9604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 368), + [9606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 334), + [9608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 334), + [9610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 333), + [9612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 333), + [9614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 298), + [9616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 298), + [9618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 367), + [9620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 367), + [9622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 286), + [9624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 286), + [9626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 366), + [9628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 366), + [9630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 332), + [9632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 332), + [9634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 365), + [9636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 365), + [9638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 364), + [9640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 364), + [9642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 331), + [9644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 331), + [9646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 330), + [9648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 330), + [9650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 363), + [9652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 363), + [9654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 362), + [9656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 362), + [9658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 329), + [9660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 329), + [9662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 328), + [9664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 328), + [9666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 361), + [9668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 361), + [9670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 360), + [9672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 360), + [9674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 327), + [9676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 327), + [9678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 326), + [9680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 326), + [9682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 189), + [9684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 189), + [9686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 190), + [9688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 190), + [9690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 154), + [9692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 154), + [9694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 191), + [9696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 191), + [9698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 192), + [9700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 192), + [9702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 155), + [9704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 155), + [9706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 193), + [9708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 193), + [9710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 194), + [9712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 194), + [9714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 156), + [9716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 156), + [9718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 195), + [9720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 195), + [9722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 196), + [9724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 196), + [9726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 157), + [9728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 157), + [9730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 158), + [9732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 158), + [9734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 197), + [9736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 197), + [9738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 159), + [9740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 159), + [9742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 160), + [9744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 160), + [9746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 198), + [9748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 198), + [9750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 359), + [9752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 359), + [9754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 200), + [9756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 200), + [9758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 201), + [9760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 201), + [9762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 358), + [9764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 358), + [9766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 357), + [9768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 357), + [9770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 203), + [9772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 203), + [9774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 325), + [9776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 325), + [9778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 356), + [9780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 356), + [9782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 355), + [9784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 355), + [9786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 324), + [9788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 324), + [9790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 323), + [9792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 323), + [9794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 354), + [9796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 354), + [9798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 353), + [9800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 353), + [9802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 322), + [9804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 322), + [9806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 321), + [9808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 321), + [9810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 352), + [9812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 352), + [9814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 351), + [9816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 351), + [9818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 350), + [9820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 350), + [9822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 320), + [9824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 320), + [9826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 349), + [9828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 349), + [9830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 348), + [9832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 348), + [9834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 319), + [9836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 319), + [9838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 347), + [9840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 347), + [9842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 346), + [9844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 346), + [9846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 318), + [9848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 318), + [9850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 317), + [9852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 317), + [9854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 345), + [9856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 345), + [9858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 344), + [9860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 344), + [9862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 316), + [9864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 316), + [9866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 315), + [9868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 315), + [9870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 314), + [9872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 314), + [9874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 342), + [9876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 342), + [9878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 341), + [9880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 341), + [9882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 340), + [9884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 340), + [9886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 313), + [9888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 313), + [9890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 339), + [9892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 339), + [9894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 338), + [9896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 338), + [9898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 337), + [9900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 337), + [9902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 312), + [9904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 312), + [9906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 311), + [9908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 311), + [9910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 336), + [9912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 336), + [9914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 335), + [9916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 335), + [9918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 310), + [9920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 310), + [9922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 309), + [9924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 309), + [9926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 189), + [9928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 189), + [9930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 225), + [9932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 225), + [9934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 226), + [9936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 226), + [9938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 227), + [9940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 227), + [9942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 190), + [9944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 190), + [9946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 228), + [9948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 228), + [9950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 229), + [9952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 229), + [9954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 191), + [9956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 191), + [9958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 192), + [9960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 192), + [9962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 230), + [9964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 230), + [9966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 193), + [9968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 193), + [9970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 299), + [9972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 299), + [9974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 231), + [9976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 231), + [9978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 232), + [9980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 232), + [9982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 195), + [9984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 195), + [9986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 196), + [9988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 196), + [9990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 233), + [9992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 233), + [9994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 197), + [9996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 197), + [9998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 198), + [10000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 198), + [10002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 334), + [10004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 334), + [10006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 333), + [10008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 333), + [10010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 235), + [10012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 235), + [10014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 200), + [10016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 200), + [10018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 236), + [10020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 236), + [10022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 237), + [10024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 237), + [10026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 201), + [10028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 201), + [10030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 238), + [10032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 238), + [10034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 239), + [10036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 239), + [10038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 308), + [10040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 308), + [10042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 307), + [10044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 307), + [10046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 332), + [10048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 332), + [10050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 203), + [10052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 203), + [10054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 241), + [10056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 241), + [10058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 242), + [10060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 242), + [10062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 331), + [10064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 331), + [10066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 330), + [10068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 330), + [10070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 306), + [10072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 306), + [10074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 329), + [10076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 329), + [10078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 328), + [10080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 328), + [10082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 305), + [10084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 305), + [10086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 327), + [10088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 327), + [10090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 326), + [10092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 326), + [10094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 304), + [10096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 304), + [10098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 303), + [10100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 303), + [10102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 325), + [10104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 325), + [10106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 324), + [10108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 324), + [10110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 323), + [10112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 323), + [10114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 302), + [10116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 302), + [10118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 322), + [10120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 322), + [10122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 321), + [10124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 321), + [10126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 301), + [10128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 301), + [10130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 300), + [10132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 300), + [10134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 320), + [10136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 320), + [10138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 319), + [10140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 319), + [10142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 318), + [10144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 318), + [10146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 317), + [10148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 317), + [10150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 299), + [10152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 299), + [10154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 316), + [10156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 316), + [10158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 315), + [10160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 315), + [10162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 298), + [10164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 298), + [10166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 251), + [10168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 251), + [10170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 225), + [10172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 225), + [10174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 226), + [10176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 226), + [10178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 252), + [10180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 252), + [10182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 227), + [10184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 227), + [10186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 253), + [10188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 253), + [10190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 254), + [10192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 254), + [10194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 228), + [10196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 228), + [10198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 229), + [10200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 229), + [10202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 255), + [10204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 255), + [10206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 230), + [10208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 230), + [10210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 231), + [10212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 231), + [10214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 232), + [10216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 232), + [10218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 256), + [10220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 256), + [10222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 257), + [10224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 257), + [10226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 233), + [10228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 233), + [10230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 297), + [10232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 297), + [10234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 314), + [10236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 314), + [10238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 296), + [10240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 296), + [10242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 259), + [10244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 259), + [10246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 235), + [10248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 235), + [10250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 260), + [10252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 260), + [10254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 261), + [10256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 261), + [10258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 236), + [10260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 236), + [10262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 237), + [10264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 237), + [10266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 262), + [10268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 262), + [10270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 238), + [10272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 238), + [10274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 239), + [10276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 239), + [10278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 263), + [10280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 263), + [10282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 264), + [10284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 264), + [10286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 295), + [10288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 295), + [10290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 293), + [10292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 293), + [10294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 313), + [10296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 313), + [10298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 241), + [10300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 241), + [10302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 242), + [10304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 242), + [10306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 266), + [10308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 266), + [10310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 292), + [10312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 292), + [10314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 312), + [10316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 312), + [10318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 311), + [10320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 311), + [10322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 291), + [10324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 291), + [10326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 310), + [10328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 310), + [10330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 309), + [10332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 309), + [10334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 290), + [10336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 290), + [10338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 308), + [10340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 308), + [10342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 307), + [10344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 307), + [10346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 289), + [10348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 289), + [10350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 288), + [10352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 288), + [10354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 306), + [10356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 306), + [10358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 305), + [10360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 305), + [10362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 304), + [10364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 304), + [10366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 303), + [10368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 303), + [10370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 287), + [10372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 287), + [10374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 302), + [10376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 302), + [10378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 301), + [10380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 301), + [10382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 251), + [10384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 251), + [10386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 269), + [10388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 269), + [10390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 270), + [10392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 270), + [10394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 252), + [10396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 252), + [10398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 271), + [10400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 271), + [10402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 253), + [10404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 253), + [10406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 254), + [10408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 254), + [10410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 272), + [10412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 272), + [10414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 255), + [10416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 255), + [10418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 256), + [10420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 256), + [10422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 257), + [10424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 257), + [10426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 273), + [10428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 273), + [10430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 274), + [10432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 274), + [10434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 300), + [10436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 300), + [10438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 194), + [10440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 194), + [10442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 297), + [10444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 297), + [10446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 285), + [10448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 285), + [10450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 259), + [10452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 259), + [10454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 276), + [10456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 276), + [10458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 277), + [10460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 277), + [10462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 284), + [10464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 284), + [10466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 261), + [10468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 261), + [10470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 278), + [10472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 278), + [10474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 262), + [10476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 262), + [10478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 263), + [10480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 263), + [10482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 264), + [10484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 264), + [10486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 279), + [10488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 279), + [10490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 280), + [10492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 280), + [10494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 296), + [10496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 296), + [10498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 295), + [10500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 295), + [10502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 283), + [10504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 283), + [10506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 266), + [10508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 266), + [10510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 282), + [10512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 282), + [10514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 293), + [10516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 293), + [10518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 280), + [10520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 280), + [10522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 279), + [10524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 279), + [10526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 278), + [10528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 278), + [10530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 292), + [10532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 292), + [10534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 277), + [10536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 277), + [10538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 276), + [10540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 276), + [10542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 291), + [10544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 291), + [10546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 290), + [10548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 290), + [10550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 289), + [10552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 289), + [10554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 288), + [10556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 288), + [10558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 274), + [10560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 274), + [10562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 287), + [10564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 287), + [10566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 273), + [10568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 273), + [10570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 286), + [10572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 286), + [10574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 269), + [10576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 269), + [10578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 270), + [10580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 270), + [10582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 282), + [10584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 282), + [10586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 283), + [10588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 283), + [10590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 271), + [10592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 271), + [10594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 284), + [10596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 284), + [10598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 285), + [10600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 285), + [10602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 272), + [10604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 272), + [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), + [10616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 7), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [10620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 7), + [10622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), + [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), + [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10416), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), + [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10280), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [10648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 5), + [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [10652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 5), + [10654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 3), + [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [10658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 3), + [10660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 8), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [10664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 8), + [10666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 4), + [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [10670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 4), + [10672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 6), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [10676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 6), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10022), + [10680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_entry, 9), + [10682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_entry, 9), + [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [10688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6036), + [10691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6270), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [10708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [10710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), + [10712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 1), REDUCE(aux_sym_capture_list_repeat1, 1), + [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), + [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [10735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [10743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), + [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), + [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [10753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), + [10763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [10771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [10781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), + [10783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [10793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [10801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [10803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [10811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [10813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [10821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), + [10823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [10829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [10831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [10839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), + [10841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [10849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [10851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [10859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), + [10861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [10869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), + [10871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [10879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [10889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), + [10891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), + [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [10899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [10903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [10911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [10915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), + [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [10935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), + [10937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8804), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), + [10975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(5920), + [10978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(4666), + [10981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(4741), + [10984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(4743), + [10987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__locally_permitted_modifiers, 2), SHIFT_REPEAT(4743), + [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [10996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), + [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [11006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [11014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), + [11016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [11020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [11022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), + [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [11048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), + [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), + [11076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), + [11078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), + [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), + [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), + [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), + [11130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_computed_property_repeat1, 2), + [11132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_computed_property_repeat1, 2), SHIFT_REPEAT(4852), + [11135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_computed_property_repeat1, 2), SHIFT_REPEAT(5372), + [11138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_computed_property_repeat1, 2), SHIFT_REPEAT(5528), + [11141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_computed_property_repeat1, 2), SHIFT_REPEAT(5920), + [11144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_computed_property_repeat1, 2), SHIFT_REPEAT(2824), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), + [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [11165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), + [11167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), + [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), + [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), + [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), + [11181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [11187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [11189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7005), + [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [11197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter_specifier, 2), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [11203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__getter_effects, 2), + [11205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__getter_effects, 2), SHIFT_REPEAT(5141), + [11208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__getter_effects, 2), SHIFT_REPEAT(5144), + [11211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6258), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [11216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6092), + [11219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), + [11221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [11227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__navigable_type_expression, 1), + [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), + [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [11237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), + [11239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), + [11241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter_specifier, 1), + [11243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter_specifier, 3), + [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [11247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), + [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [11251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [11259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), + [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10435), + [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), + [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [11285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [11287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), + [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [11297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [11299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [11307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [11313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [11315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [11325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6103), + [11328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(5974), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8663), + [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9934), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [11347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [11355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [11357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [11363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [11379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [11383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifiers, 1), + [11385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifiers, 1), + [11387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [11391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7851), + [11393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 2, .production_id = 25), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [11407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [11409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), + [11413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6279), + [11416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(4930), + [11419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(5963), + [11422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 3, .production_id = 57), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [11428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2), SHIFT(6106), + [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [11433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), + [11435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), + [11437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(5107), + [11440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2), SHIFT_REPEAT(5107), + [11443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(4953), + [11446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1), SHIFT(6106), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [11455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [11457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [11469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6057), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8908), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [11476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6165), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [11493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6098), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [11502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), + [11506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10029), + [11508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [11510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [11512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [11518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [11520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [11522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [11528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), + [11534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [11536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6206), + [11539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4679), + [11542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6039), + [11545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(5033), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [11552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [11570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [11572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [11574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4711), + [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [11581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [11585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6160), + [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [11592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [11598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [11600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [11602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [11608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 2, .production_id = 16), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [11612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_parameter, 2, .production_id = 16), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [11620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 2, .production_id = 30), SHIFT_REPEAT(6110), + [11623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 2, .production_id = 30), SHIFT_REPEAT(6274), + [11626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 2, .production_id = 30), SHIFT_REPEAT(10029), + [11629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 2, .production_id = 30), + [11631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 2, .production_id = 30), SHIFT_REPEAT(154), + [11634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 2, .production_id = 30), SHIFT_REPEAT(6184), + [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [11641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [11643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [11651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [11657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(5092), + [11660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [11664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10422), + [11666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [11668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6540), + [11670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [11672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [11676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [11678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6177), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [11689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [11691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [11697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [11699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6150), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [11704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(5939), + [11707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6055), + [11710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [11720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [11730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throws, 1), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [11734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__async_keyword_internal, 1), + [11736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6295), + [11739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(5148), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [11756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type_item_identifier, 3, .production_id = 16), + [11758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_item_identifier, 3, .production_id = 16), + [11760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6252), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), + [11765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(5163), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [11774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_line_string_literal_repeat1, 2, .production_id = 30), + [11776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_line_string_literal_repeat1, 2, .production_id = 30), SHIFT_REPEAT(6537), + [11779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_line_string_literal_repeat1, 2, .production_id = 30), SHIFT_REPEAT(10422), + [11782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_line_string_literal_repeat1, 2, .production_id = 30), SHIFT_REPEAT(158), + [11785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_line_string_literal_repeat1, 2, .production_id = 30), SHIFT_REPEAT(6540), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [11790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [11792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [11794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8429), + [11820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(5932), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [11835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 3, .production_id = 25), + [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [11847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(5219), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [11868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4699), + [11871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(5238), + [11874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 4, .production_id = 57), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), + [11882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4704), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8510), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), + [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8968), + [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [11921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4690), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [11974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(5312), + [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [11983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(5317), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [11996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4714), + [11999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6309), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [12014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_setter, 1), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [12018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_setter, 2), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8801), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7908), + [12042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 2, .production_id = 64), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8750), + [12058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter_specifier, 1), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [12062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_getter, 1), + [12064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_modify, 1), + [12066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(5377), + [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8646), + [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8855), + [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [12085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_setter, 5), + [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [12089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 1), + [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [12093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4695), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [12100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(5411), + [12103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 1, .production_id = 33), + [12105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 2), + [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9540), + [12111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_modify, 2), + [12113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 3), + [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [12121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6007), + [12124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4732), + [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [12135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_getter, 2), + [12137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(5967), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8938), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [12148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4719), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [12153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter_specifier, 2), + [12155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6017), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10251), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9202), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [12192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(5495), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9088), + [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [12211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4737), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [12222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_setter, 4), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [12226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_protocol_property_requirements_repeat1, 2), + [12228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_property_requirements_repeat1, 2), SHIFT_REPEAT(4852), + [12231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_property_requirements_repeat1, 2), SHIFT_REPEAT(5372), + [12234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_property_requirements_repeat1, 2), SHIFT_REPEAT(2824), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [12239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_argument_repeat1, 2, .production_id = 65), SHIFT_REPEAT(4895), + [12242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_argument_repeat1, 2, .production_id = 65), + [12244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modify_specifier, 1), + [12246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4720), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8759), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [12263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameters, 3, .production_id = 98), + [12265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(5546), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [12270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 2), SHIFT(299), + [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [12275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(5828), + [12278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binding_pattern_kind, 1), + [12280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern_kind, 1), + [12282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precedence_group_attributes, 1), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8878), + [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), + [12298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4702), + [12301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_operator, 1), + [12303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_operator, 1), + [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [12307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameters, 2), + [12309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(5596), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [12324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(4895), + [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [12331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6158), + [12334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(5920), + [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [12339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2), SHIFT_REPEAT(6284), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8871), + [12346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_precedence_group_attributes_repeat1, 2), SHIFT_REPEAT(4895), + [12349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_precedence_group_attributes_repeat1, 2), + [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), + [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [12355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6693), + [12357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modify_specifier, 2), + [12359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameters, 4, .production_id = 135), + [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9013), + [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [12365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4684), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [12394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_modifiers, 1), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [12412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 3), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), + [12418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 3), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [12430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_setter, 6), + [12432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(5708), + [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), + [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [12445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 2), + [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), + [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), + [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8828), + [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), + [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [12483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4680), + [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [12490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_function_type_parameters_repeat1, 2), SHIFT_REPEAT(5208), + [12493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_function_type_parameters_repeat1, 2), + [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [12529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 4, .production_id = 25), + [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), + [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), + [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [12565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_modify, 3), + [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [12575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_setter, 3), + [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [12581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_getter, 3), + [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), + [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), + [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [12599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 5, .production_id = 57), + [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), + [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [12623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type_parameters, 2), + [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [12627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4715), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8595), + [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [12634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat2, 2), SHIFT_REPEAT(4895), + [12637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat2, 2), + [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), + [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), + [12655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type_parameters, 1), + [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [12671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 6, .production_id = 161), + [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [12675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 6, .production_id = 161), + [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [12681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 5, .production_id = 151), + [12683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 3, .production_id = 62), + [12685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 3, .production_id = 62), + [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), + [12691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 1), + [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [12695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 8, .production_id = 199), + [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [12699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 8, .production_id = 199), + [12701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 6, .production_id = 202), + [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [12705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 6, .production_id = 202), + [12707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 8, .production_id = 234), + [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [12711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 8, .production_id = 234), + [12713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 8, .production_id = 240), + [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [12717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 8, .production_id = 240), + [12719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 8, .production_id = 265), + [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [12723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 8, .production_id = 265), + [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [12729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 5), + [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [12733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 6, .production_id = 199), + [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [12737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 6, .production_id = 199), + [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [12743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 6), + [12745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 9, .production_id = 234), + [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), + [12749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 9, .production_id = 234), + [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [12757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 9, .production_id = 240), + [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), + [12761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 9, .production_id = 240), + [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [12765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 9, .production_id = 275), + [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [12769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 9, .production_id = 275), + [12771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 9, .production_id = 265), + [12773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [12775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 9, .production_id = 265), + [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [12779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [12783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 9, .production_id = 258), + [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [12787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 9, .production_id = 258), + [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [12799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 5, .production_id = 152), + [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [12805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 2), + [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [12811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 3, .production_id = 82), + [12813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 2, .production_id = 45), + [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), + [12817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 2, .production_id = 45), + [12819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__uni_character_literal, 3), + [12821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__uni_character_literal, 3), + [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7897), + [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), + [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), + [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [12837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 7, .production_id = 199), + [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [12841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 7, .production_id = 199), + [12843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 7, .production_id = 234), + [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [12847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 7, .production_id = 234), + [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [12855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 7, .production_id = 240), + [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [12859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 7, .production_id = 240), + [12861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 7, .production_id = 161), + [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), + [12865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 7, .production_id = 161), + [12867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 7, .production_id = 202), + [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [12871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 7, .production_id = 202), + [12873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 8, .production_id = 202), + [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), + [12877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 8, .production_id = 202), + [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [12883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 7), + [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), + [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), + [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [12901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 10, .production_id = 275), + [12903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [12905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 10, .production_id = 275), + [12907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 10, .production_id = 258), + [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), + [12911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 10, .production_id = 258), + [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [12915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [12919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 8, .production_id = 258), + [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [12923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 8, .production_id = 258), + [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), + [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), + [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), + [12935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 10, .production_id = 265), + [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), + [12939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 10, .production_id = 265), + [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), + [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [12957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 4), + [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), + [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [12965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), + [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [12979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), + [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [13003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(5036), + [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), + [13042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 11, .production_id = 275), + [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [13046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 11, .production_id = 275), + [13048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 1, .production_id = 11), + [13050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 1, .production_id = 11), + [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), + [13056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 1, .production_id = 1), + [13058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_line_string_literal_repeat1, 1, .production_id = 1), + [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [13068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(6442), + [13071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), + [13073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [13083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(5075), + [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), + [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), + [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), + [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), + [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), + [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), + [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), + [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), + [13122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_optional_type_repeat1, 2), SHIFT_REPEAT(6144), + [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [13137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 5, .production_id = 161), + [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [13141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 5, .production_id = 161), + [13143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [13145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [13147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), + [13149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [13151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 2), SHIFT(301), + [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), + [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [13166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 4), + [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), + [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), + [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), + [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [13190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_str_escaped_char, 1), + [13192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_str_escaped_char, 1), + [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), + [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), + [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [13208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 3, .production_id = 82), + [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), + [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), + [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), + [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), + [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), + [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [13244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 5, .production_id = 153), + [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), + [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), + [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), + [13260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [13264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [13276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), + [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [13292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 4), + [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [13308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 4, .production_id = 111), + [13310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 4, .production_id = 112), + [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), + [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [13316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 3), + [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [13328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 6, .production_id = 188), + [13330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), + [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), + [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [13338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), + [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), + [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), + [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), + [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), + [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [13370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_line_str_text, 1), + [13372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_line_str_text, 1), + [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), + [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), + [13384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [13386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), + [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), + [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [13398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [13400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [13402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 4, .production_id = 114), + [13404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [13406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [13414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameter, 3, .production_id = 76), + [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [13422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), + [13430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), + [13432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), + [13434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), + [13436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), + [13438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [13440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [13442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [13444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), + [13446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 7, .production_id = 219), + [13448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), + [13450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 9, .production_id = 258), + [13452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [13454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 9, .production_id = 275), + [13456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), + [13458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 9, .production_id = 234), + [13460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), + [13462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10082), + [13464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [13466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [13468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [13470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [13472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 9, .production_id = 240), + [13474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [13476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), + [13478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [13480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), + [13484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 3, .production_id = 45), + [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), + [13488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 9, .production_id = 265), + [13490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [13492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [13494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [13498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), + [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [13504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [13506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [13508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [13510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [13520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), + [13524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), + [13526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [13528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [13530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [13532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), + [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), + [13538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [13540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), + [13542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8107), + [13544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [13546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [13548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [13550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), + [13552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), + [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [13558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), + [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), + [13562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), + [13564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [13566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [13568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [13570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), + [13572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [13574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), + [13576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [13578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 7, .production_id = 199), + [13580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [13582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), + [13584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [13586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [13588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [13590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), + [13592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), + [13594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [13596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [13598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [13600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [13602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [13604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [13606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), + [13608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), + [13610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10263), + [13612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [13614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [13616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), + [13618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [13620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 4, .production_id = 45), + [13622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), + [13624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 4, .production_id = 133), + [13626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [13628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), + [13630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [13632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [13634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(6589), + [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), + [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [13645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [13651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_member_declaration, 1, .production_id = 86), + [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), + [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), + [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), + [13663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), + [13667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), + [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [13673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [13677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 112), + [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), + [13681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 111), + [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8121), + [13685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 7, .production_id = 202), + [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), + [13691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [13693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_precedence_group_attribute, 3), + [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [13697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [13701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 7, .production_id = 161), + [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7885), + [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), + [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [13713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 7, .production_id = 240), + [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), + [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [13719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 7, .production_id = 234), + [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), + [13725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), + [13729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [13733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 2, .production_id = 45), + [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), + [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), + [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), + [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), + [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), + [13759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), + [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7957), + [13763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_binding_pattern, 2), + [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), + [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), + [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [13781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_function_decl, 1, .production_id = 3), + [13783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8309), + [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), + [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [13789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), + [13793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [13797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), + [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [13801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), + [13803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7946), + [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [13809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8664), + [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), + [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7988), + [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), + [13821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), + [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [13837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7962), + [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [13841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), + [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [13845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [13847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [13849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [13851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [13853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), + [13855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [13857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [13859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [13861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [13863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [13865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), + [13867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [13869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [13871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [13873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), + [13875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), + [13877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [13879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [13881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [13883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [13887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), + [13889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), + [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [13895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), + [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [13899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), + [13901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [13903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), + [13905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [13907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [13911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [13915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [13923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [13927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [13931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), + [13935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), + [13937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), + [13939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), + [13941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [13943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_str_text, 1), + [13945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_str_text, 1), + [13947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), + [13949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [13951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), + [13953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_line_string_literal_repeat1, 1, .production_id = 1), + [13955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_line_string_literal_repeat1, 1, .production_id = 1), + [13957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_line_string_literal_repeat1, 1, .production_id = 11), + [13959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_line_string_literal_repeat1, 1, .production_id = 11), + [13961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_binding_pattern, 3), + [13963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), + [13965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [13967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), + [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [13971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), + [13973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inheritance_specifiers_repeat1, 2), SHIFT_REPEAT(4844), + [13976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inheritance_specifiers_repeat1, 2), + [13978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), + [13980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [13982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), + [13984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [13986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [13988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), + [13990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [13992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [13994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [13996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [13998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [14000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), + [14002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [14004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [14006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), + [14008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [14010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [14012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4689), + [14015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), + [14019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), + [14023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [14025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), + [14027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [14029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), + [14031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [14033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), + [14035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [14037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [14039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inheritance_specifiers, 1), + [14041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 5, .production_id = 161), + [14043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), + [14045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [14047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [14049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [14051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 8, .production_id = 258), + [14053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), + [14055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 4, .production_id = 100), + [14057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8953), + [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [14061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 8, .production_id = 199), + [14063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [14065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), + [14067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 8, .production_id = 234), + [14069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), + [14071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 8, .production_id = 240), + [14073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [14075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), + [14077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [14079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8014), + [14081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [14083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), + [14085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), + [14087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), + [14089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_protocol_composition_type_repeat1, 2), SHIFT_REPEAT(4734), + [14092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 8, .production_id = 265), + [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [14100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), + [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), + [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [14108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), + [14110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [14114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 8, .production_id = 202), + [14116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), + [14118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [14122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 5, .production_id = 133), + [14124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), + [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), + [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [14134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), + [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), + [14140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), + [14142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), + [14144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), + [14146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [14148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [14150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [14152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), + [14154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [14156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), + [14158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [14160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [14162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [14164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [14166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [14168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [14170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), + [14172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [14174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), + [14176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8109), + [14178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [14180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [14182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [14184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [14186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [14188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), + [14190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [14192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [14194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [14196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7939), + [14198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [14200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), + [14202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [14204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [14206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), + [14208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [14210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 6, .production_id = 180), + [14212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [14214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [14216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 6, .production_id = 179), + [14218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [14220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [14222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [14224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [14226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [14228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), + [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [14232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [14234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), + [14236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [14238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), + [14240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [14242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), + [14244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [14246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), + [14248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [14250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [14252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [14254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [14256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [14258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [14260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), + [14264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [14268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [14270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [14272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), + [14274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [14276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [14278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), + [14280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), + [14282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), + [14284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [14286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), + [14288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), + [14290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), + [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [14300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [14302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 4), + [14304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), + [14306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), + [14308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), + [14310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), + [14318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [14320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), + [14322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(5070), + [14325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), + [14327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [14329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), + [14331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), + [14333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [14335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), + [14337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), + [14339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 5, .production_id = 139), + [14341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), + [14343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), + [14345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [14347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), + [14349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), + [14351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), + [14353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), + [14355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), + [14357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [14359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), + [14361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [14363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [14365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), + [14367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), + [14369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), + [14371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [14373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 11, .production_id = 275), + [14375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), + [14377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), + [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [14381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [14383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [14385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [14387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [14389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), + [14391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [14393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [14395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), + [14399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [14401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), + [14405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [14407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [14411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 5, .production_id = 140), + [14413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), + [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [14417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 6, .production_id = 202), + [14419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [14421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 6, .production_id = 161), + [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [14425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [14427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 6, .production_id = 199), + [14429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [14431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), + [14433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), + [14435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [14437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [14439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [14441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), + [14443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), + [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), + [14447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [14449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [14451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [14455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), + [14457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [14459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [14461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [14463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [14467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [14469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [14471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [14473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [14475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [14479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [14481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), + [14483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), + [14485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), + [14487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [14489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), + [14491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [14493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [14495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7947), + [14497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [14499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [14501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [14503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [14505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [14507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [14509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [14511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [14513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), + [14515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), + [14517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [14519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), + [14521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [14523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), + [14525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [14527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), + [14529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), + [14531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [14533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), + [14535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [14537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [14539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [14541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [14543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), + [14545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [14547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [14549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), + [14551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [14553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [14555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), + [14557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [14559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), + [14561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [14563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [14565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [14567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), + [14569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [14571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [14573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [14575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [14577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), + [14579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [14581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [14583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [14585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [14587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), + [14593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7959), + [14597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [14599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), + [14601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [14605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 76), + [14607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), + [14609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), + [14613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), + [14615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [14617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), + [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [14621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), + [14623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [14625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), + [14627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [14629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 3, .production_id = 82), + [14631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), + [14633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), + [14635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [14637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), + [14639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [14641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), + [14643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), + [14645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_statement_repeat1, 2), SHIFT_REPEAT(4674), + [14648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [14652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [14654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), + [14658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [14660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inheritance_specifiers, 2), + [14662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [14664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [14666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), + [14668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [14670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [14672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [14676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [14680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [14686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [14688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [14690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [14692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [14694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [14696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), + [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [14700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [14702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), + [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [14708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [14710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 151), + [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [14716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), + [14718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [14720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [14722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [14724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), + [14726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [14728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [14730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [14738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), + [14740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [14742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [14744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), + [14746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [14748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), + [14750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [14752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), + [14754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [14756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [14758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [14760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), + [14762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6935), + [14764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [14766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [14768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [14770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), + [14772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7876), + [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [14776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), + [14778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), + [14780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [14782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [14784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), + [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), + [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [14792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [14794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), + [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [14798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [14800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), + [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), + [14804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [14806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [14808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [14810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), + [14814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [14816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [14818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 10, .production_id = 265), + [14820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), + [14822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [14824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), + [14826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 10, .production_id = 275), + [14828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), + [14830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 10, .production_id = 258), + [14832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [14834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), + [14836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [14838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [14840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), + [14842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [14844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), + [14846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [14848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), + [14850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [14852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [14854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), + [14856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [14858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__direct_or_indirect_binding, 2), + [14860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [14862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [14864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [14866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), + [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [14870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [14876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), + [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), + [14884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), + [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), + [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [14890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), + [14892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), + [14894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), + [14900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [14902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [14906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), + [14908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [14910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [14912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [14914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [14920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), + [14922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [14924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), + [14926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [14928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), + [14930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [14932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [14934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7035), + [14936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), + [14938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [14940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [14942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [14946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [14948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), + [14950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [14952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [14954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [14956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_binding_pattern_repeat1, 2), + [14958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 11, .production_id = 258), + [14960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 11, .production_id = 258), + [14962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 11, .production_id = 265), + [14964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 11, .production_id = 265), + [14966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 4, .production_id = 82), + [14968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 4, .production_id = 82), + [14970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [14972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [14974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constructor_value_arguments_repeat1, 2), + [14976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constructor_value_arguments_repeat1, 2), SHIFT_REPEAT(223), + [14979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat3, 3), + [14981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [14983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__annotated_inheritance_specifier, 2), + [14985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [14987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 8), + [14989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [14991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [14993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 3, .production_id = 45), + [14995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [14997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(5820), + [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [15002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [15004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 2, .production_id = 14), + [15006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [15008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [15012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_binding_pattern_repeat1, 4), + [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [15018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 3, .production_id = 45), + [15020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [15022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [15024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 8, .production_id = 161), + [15026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 8, .production_id = 161), + [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9576), + [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), + [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [15042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 9, .production_id = 199), + [15044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 9, .production_id = 199), + [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [15048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 12, .production_id = 275), + [15050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 12, .production_id = 275), + [15052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 9, .production_id = 202), + [15054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 9, .production_id = 202), + [15056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__availability_argument, 2), + [15058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list_item, 1, .production_id = 3), + [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [15062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 4, .production_id = 45), + [15064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9708), + [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), + [15068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 4, .production_id = 133), + [15070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), + [15072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [15074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [15076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [15078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [15080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(6771), + [15083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [15085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [15087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 10, .production_id = 234), + [15089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 10, .production_id = 234), + [15091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [15093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 5), + [15095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [15097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [15099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 10, .production_id = 240), + [15101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern, 10, .production_id = 240), + [15103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [15105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [15107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [15109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [15111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_specifier, 1, .production_id = 84), + [15113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list_item, 2, .production_id = 16), + [15115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [15117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [15119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [15121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [15123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [15125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, .production_id = 92), SHIFT_REPEAT(4874), + [15128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [15130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 5, .production_id = 133), + [15132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9639), + [15134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 5, .production_id = 199), + [15136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [15138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_member_declarations, 1), + [15140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [15142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), + [15144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [15146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_member_declarations_repeat1, 2), + [15148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations_repeat1, 2), SHIFT_REPEAT(1388), + [15151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 1), + [15153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [15155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [15157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [15159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [15161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 2), + [15163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [15165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [15167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [15169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 4, .production_id = 161), + [15171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [15173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9498), + [15175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [15177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__availability_argument, 3), + [15179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [15181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), + [15183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [15185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [15187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 2, .production_id = 45), + [15189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [15191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__modifierless_property_declaration_repeat1, 2, .production_id = 92), SHIFT_REPEAT(4871), + [15194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [15196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [15198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__availability_argument_repeat1, 2), + [15200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__availability_argument_repeat1, 2), SHIFT_REPEAT(10082), + [15203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [15205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 81), SHIFT_REPEAT(142), + [15208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 4), + [15210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8883), + [15212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [15214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [15216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [15218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), + [15220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [15222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [15224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [15226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [15228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 7, .production_id = 179), + [15230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 9, .production_id = 199), + [15232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [15234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 7, .production_id = 180), + [15236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [15238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [15240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [15242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, .production_id = 67), + [15244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, .production_id = 67), SHIFT_REPEAT(560), + [15247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), + [15249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 9, .production_id = 202), + [15251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [15253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [15255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [15257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [15259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), + [15261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [15263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [15265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [15267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation_contents, 2, .production_id = 63), + [15269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [15271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6865), + [15273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [15275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [15277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [15279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [15281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [15283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [15285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [15287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [15289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [15291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [15293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8718), + [15295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [15297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [15299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), + [15301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [15303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [15305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 2, .production_id = 97), + [15307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_type_parameters_repeat1, 2, .production_id = 97), SHIFT_REPEAT(4329), + [15310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [15312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [15314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [15316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), + [15318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [15320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [15322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [15324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), + [15326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [15328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [15330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10168), + [15332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [15334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [15336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [15338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), + [15340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [15342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_str_interpolation, 3, .production_id = 62), + [15344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [15346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [15348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), + [15350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [15352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [15354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [15356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [15358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [15360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [15362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [15364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [15366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [15368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [15370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10234), + [15372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 2, .production_id = 73), SHIFT_REPEAT(857), + [15375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_literal_repeat1, 2, .production_id = 73), + [15377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 4), + [15379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [15381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), + [15383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [15385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [15387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [15389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [15391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [15393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [15395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [15397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [15399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [15401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [15403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), + [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [15407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_literal_repeat1, 2, .production_id = 75), SHIFT_REPEAT(329), + [15410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_literal_repeat1, 2, .production_id = 75), + [15412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [15414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8741), + [15416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [15418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [15420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), + [15422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 8, .production_id = 219), + [15424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [15426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), + [15428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [15430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [15432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), + [15434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [15436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), + [15438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [15440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [15442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [15444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [15446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [15448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [15450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 5), + [15452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [15454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [15456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [15458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [15460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [15462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [15464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), + [15466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [15468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10164), + [15470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [15472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), + [15474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [15476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [15478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [15480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [15482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [15484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [15486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), + [15488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [15490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [15492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), + [15494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [15496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [15498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 5, .production_id = 45), + [15500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_with_expr, 6, .production_id = 133), + [15502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [15504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [15506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [15508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [15510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [15512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [15514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [15516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [15518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 6, .production_id = 140), + [15520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, .production_id = 151), + [15522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 6, .production_id = 57), + [15524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [15526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 6, .production_id = 139), + [15528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [15530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [15532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [15534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [15536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [15538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [15540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [15542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), + [15544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [15546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), + [15548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2), SHIFT_REPEAT(117), + [15551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_value_parameters_repeat1, 2, .production_id = 136), + [15553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_value_parameters_repeat1, 2, .production_id = 136), SHIFT_REPEAT(5423), + [15556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [15558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [15560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [15562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), + [15564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8675), + [15566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [15568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [15570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [15572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [15574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [15576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [15578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [15580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [15582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [15584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [15586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [15588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [15590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [15592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [15594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [15596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [15598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), + [15600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [15602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [15604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [15606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 81), SHIFT_REPEAT(132), + [15609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [15611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), + [15613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [15615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [15617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [15619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), + [15621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [15623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [15625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8628), + [15627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [15629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 4, .production_id = 82), + [15631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [15633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [15635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), + [15637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [15639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [15641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [15643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [15645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_binding_pattern_repeat1, 2), SHIFT_REPEAT(4914), + [15648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [15650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 10, .production_id = 234), + [15652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 10, .production_id = 240), + [15654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [15656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_member_declarations, 2, .production_id = 124), + [15658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [15660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), + [15662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), + [15664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [15666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), + [15668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [15670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [15672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [15674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [15676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), + [15678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [15680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, .production_id = 97), SHIFT_REPEAT(4572), + [15683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, .production_id = 97), + [15685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [15687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [15689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 112), + [15691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [15693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [15695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 111), + [15697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [15699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [15701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [15703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [15705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [15707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [15709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [15711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [15713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_binding_pattern_repeat2, 2, .production_id = 97), + [15715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_non_binding_pattern_repeat2, 2, .production_id = 97), SHIFT_REPEAT(267), + [15718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [15720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), + [15722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [15724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [15726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [15728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [15730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [15732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [15734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8630), + [15736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [15738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [15740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [15742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [15744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [15746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [15748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [15750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [15752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [15754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [15756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), + [15758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [15760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [15762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [15764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [15766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [15768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), + [15770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), + [15772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [15774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [15776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [15778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [15780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [15782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [15784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [15786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [15788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [15790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [15792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [15794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [15796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [15798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [15800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), + [15802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), + [15804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [15806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [15808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [15810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [15812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [15814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [15816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 5, .production_id = 25), + [15818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(4761), + [15821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [15823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [15825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [15827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [15829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [15831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [15833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8668), + [15835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [15837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifierless_function_declaration_no_body, 5, .production_id = 100), + [15839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(5212), + [15842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [15844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [15846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [15848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), + [15850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [15852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation_contents, 1, .production_id = 32), + [15854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [15856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [15858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [15860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [15862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2, .production_id = 30), SHIFT_REPEAT(8218), + [15865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2, .production_id = 30), + [15867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [15869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [15871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [15873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_pattern, 1, .production_id = 77), + [15875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [15877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), + [15879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [15881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), + [15883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [15885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), + [15887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), + [15889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [15891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [15893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [15895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [15897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [15899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [15901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [15903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [15905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), + [15907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [15909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), + [15911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [15913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [15915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [15919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [15921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [15923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [15925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [15927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 11, .production_id = 258), + [15929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 11, .production_id = 265), + [15931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [15933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [15935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [15937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [15939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [15941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [15943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [15945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [15947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [15949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [15951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 97), + [15953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 97), SHIFT_REPEAT(183), + [15956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [15958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [15960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), + [15962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), + [15964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), + [15966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [15968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [15970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [15972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [15974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [15976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [15978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), + [15980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), + [15982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [15984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [15986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), + [15988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), + [15990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [15992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [15994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), + [15996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), + [15998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [16000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [16002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [16004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [16006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [16008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [16010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [16012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [16014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [16016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), + [16018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), + [16020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [16022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), + [16024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [16026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [16028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [16030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [16032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [16034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [16036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), + [16038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [16040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [16042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [16044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [16046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), + [16048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [16050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [16052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [16054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [16056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8666), + [16058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [16060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [16062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [16064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [16066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), + [16068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [16070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [16072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [16074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [16076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [16078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [16080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), + [16082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__direct_or_indirect_binding, 1), + [16084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [16086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [16088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [16090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [16092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [16094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [16096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [16098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [16100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [16102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [16104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [16106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [16108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat2, 2), SHIFT_REPEAT(4965), + [16111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat2, 2), + [16113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [16115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 8, .production_id = 161), + [16117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [16119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [16121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [16123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [16125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [16127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [16129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [16131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [16133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [16135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [16137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [16139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [16141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [16143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [16145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [16147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [16149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, .production_id = 73), + [16151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, .production_id = 73), SHIFT_REPEAT(3598), + [16154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [16156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [16158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [16160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [16162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [16164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [16166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [16168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), + [16170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [16172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [16174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2), SHIFT_REPEAT(4999), + [16177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), + [16179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [16181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [16183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [16185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [16187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [16189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [16191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 12, .production_id = 275), + [16193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [16195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [16201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [16203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [16205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [16207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [16209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [16211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [16213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 81), SHIFT_REPEAT(129), + [16216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [16218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2, .production_id = 10), + [16220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), + [16222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [16224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [16226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), + [16228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_function_type_parameters_repeat1, 2), SHIFT_REPEAT(5359), + [16231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [16233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [16235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [16237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [16239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), + [16241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [16243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [16245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolation_contents_repeat1, 2, .production_id = 106), + [16247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__interpolation_contents_repeat1, 2, .production_id = 106), SHIFT_REPEAT(224), + [16250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [16252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [16254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bodyless_function_declaration, 3, .production_id = 59), + [16256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [16258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [16260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [16262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [16264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 99), + [16266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [16268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [16270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [16272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10103), + [16274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [16276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [16278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [16280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [16282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), + [16284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [16286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [16288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [16290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [16292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [16294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [16296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [16298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), + [16300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__protocol_member_declarations_repeat1, 2, .production_id = 124), + [16302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__protocol_member_declarations_repeat1, 2, .production_id = 124), SHIFT_REPEAT(2271), + [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [16307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_availability_condition_repeat1, 2), + [16309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_availability_condition_repeat1, 2), SHIFT_REPEAT(5625), + [16312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [16314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [16316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [16318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [16320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [16322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [16324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [16326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [16328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_member_declarations, 1, .production_id = 87), + [16330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [16332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [16334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [16336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [16338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [16340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [16342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [16344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [16346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [16348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [16350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [16352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [16354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [16356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [16358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [16360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [16362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [16364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [16366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [16368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bodyless_function_declaration, 2, .production_id = 15), + [16370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), + [16372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [16374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [16376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [16378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [16380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [16382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [16384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [16386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [16388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [16390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [16392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [16394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat3, 2), SHIFT_REPEAT(314), + [16397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [16399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [16401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [16405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 76), + [16407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [16409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), + [16411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [16413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [16415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [16417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [16419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [16421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [16423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [16425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [16427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), + [16429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [16431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [16433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [16435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [16437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [16439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [16441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [16443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [16445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [16447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [16449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [16451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [16453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [16455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 5), + [16457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [16459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [16461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [16463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [16465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bodyless_function_declaration, 1, .production_id = 7), + [16467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [16469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [16471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [16473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [16475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [16477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [16479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [16481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [16483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [16485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), + [16489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [16491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [16493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [16495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__playground_literal_repeat1, 2), + [16497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__playground_literal_repeat1, 2), SHIFT_REPEAT(6402), + [16500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [16502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [16504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [16506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [16508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [16510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [16512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [16514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [16516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [16518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), + [16520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [16522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [16524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [16526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [16528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [16530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [16532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [16534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [16536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [16538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [16540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [16542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [16544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_entry_repeat1, 2), SHIFT_REPEAT(143), + [16547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_entry_repeat1, 2), + [16549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [16551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [16553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [16555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [16557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [16559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [16561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [16563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [16565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [16567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [16569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [16571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [16573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [16575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [16577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [16579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [16581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [16583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [16585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [16587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), + [16589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [16591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [16593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10374), + [16595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [16597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [16599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [16601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [16603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [16605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [16607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10403), + [16609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [16611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [16613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [16615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [16617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), + [16619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [16621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), + [16623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [16625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [16627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [16629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [16631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [16633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10407), + [16635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [16637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [16639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [16641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [16643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6816), + [16645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [16647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [16649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_constructor_function_decl, 2, .production_id = 16), + [16651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_function_decl, 2, .production_id = 3), + [16653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), + [16655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10383), + [16657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [16659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [16661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [16663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [16665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 3, .production_id = 10), + [16667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_item, 1, .production_id = 36), + [16669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [16671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10360), + [16673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [16675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [16677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [16679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [16681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), + [16683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [16685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [16687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [16689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [16691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), + [16693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [16695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_item, 2, .production_id = 68), + [16697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_item, 2, .production_id = 69), + [16699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [16701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_literal_repeat1, 2, .production_id = 40), + [16703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [16705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10191), + [16707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), + [16709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [16711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [16713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [16715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [16717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [16719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [16721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [16723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [16725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [16727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [16729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10281), + [16731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [16733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interpolation_contents_repeat1, 2, .production_id = 105), + [16735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, .production_id = 39), + [16737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type_item, 3, .production_id = 107), + [16739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_custom_operator, 1), SHIFT(2703), + [16742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [16744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [16746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [16748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [16750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [16752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [16754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [16756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [16758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [16760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [16762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [16764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [16766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__protocol_member_declaration, 2, .production_id = 122), + [16768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_declaration, 2, .production_id = 3), + [16770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [16772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [16774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [16776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, .production_id = 45), + [16778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [16780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [16782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_value_parameters_repeat1, 2, .production_id = 98), + [16784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [16786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 138), + [16788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [16790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [16792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), + [16794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [16796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [16798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [16800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [16802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [16804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [16806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [16808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [16810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [16812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [16814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [16816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), + [16818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [16820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [16822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [16824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [16826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [16828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [16830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [16832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [16834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [16836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [16838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [16840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [16842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [16844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [16846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [16848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [16850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [16852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [16854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [16856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [16858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [16860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [16862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [16864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [16866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [16868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [16870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [16872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [16874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [16876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [16878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [16880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [16882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [16884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [16886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [16888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [16890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [16892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [16894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__protocol_member_declarations_repeat1, 2, .production_id = 123), + [16896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [16898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), + [16900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_requirements, 2), + [16902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_declaration, 3, .production_id = 3), + [16904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_declaration, 3, .production_id = 16), + [16906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [16908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [16910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 178), + [16912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, .production_id = 45), + [16914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_requirements, 3), + [16916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_declaration, 4, .production_id = 3), + [16918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_declaration, 4, .production_id = 16), + [16920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [16922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_binding_pattern_repeat2, 2, .production_id = 45), + [16924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), + [16926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [16928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [16930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [16932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [16934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [16936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [16938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [16940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [16942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [16944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [16946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [16948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 6, .production_id = 133), + [16950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [16952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [16954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [16956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [16958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [16960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [16962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [16964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [16966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_non_binding_pattern_repeat2, 4, .production_id = 161), + [16968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_binding_pattern_with_expr, 5, .production_id = 45), + [16970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [16972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 4, .production_id = 161), + [16974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [16976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [16978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), + [16980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [16982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_property_declaration, 5, .production_id = 16), + [16984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [16986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), + [16988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [16990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [16992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [16994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [16996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [16998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [17000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [17002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [17004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [17006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [17008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [17010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [17012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [17014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [17016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [17018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [17020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [17022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [17024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [17026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [17028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [17030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [17032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [17034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [17036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [17038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [17040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [17042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [17044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [17046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [17048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [17050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [17052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [17054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [17056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [17058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [17060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8619), + [17062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [17064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [17066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8552), + [17068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [17070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [17072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [17074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [17076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [17078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [17080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [17082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [17084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [17086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [17088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), + [17090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [17092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [17094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [17096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [17098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [17100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [17102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [17104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8321), + [17106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [17108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [17110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [17112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [17114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [17116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [17118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [17120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [17122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [17124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [17126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [17128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 7, .production_id = 224), + [17130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [17132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [17134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [17136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [17138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [17140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [17142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [17144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [17146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), + [17148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [17150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [17152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [17154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [17156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [17158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [17160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [17162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [17164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [17166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [17168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [17170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [17172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [17174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [17176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [17178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [17180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [17182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [17184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [17186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [17188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [17190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [17192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [17194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [17196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [17198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [17200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [17202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [17204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [17206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), + [17208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [17210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [17212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [17214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [17216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [17218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [17220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [17222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [17224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [17226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [17228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [17230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [17232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [17234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [17236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [17238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [17240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [17242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [17244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [17246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [17248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [17250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [17252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [17254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [17256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [17258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [17260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [17262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [17264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [17266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [17268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [17270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [17272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [17274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [17276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [17278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [17280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [17282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [17284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [17286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [17288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [17290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [17292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [17294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [17296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [17298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [17300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [17302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [17304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [17306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 6, .production_id = 187), + [17308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [17310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [17312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [17314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [17316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [17318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [17320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [17322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [17324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [17326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [17328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [17330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [17332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [17334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [17336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [17338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [17340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [17342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [17344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8615), + [17346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10309), + [17348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [17350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [17352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [17354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [17356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [17358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [17360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10291), + [17362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [17364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [17366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [17368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [17370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [17372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10287), + [17374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [17376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [17378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [17380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [17382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [17384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [17386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [17388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [17390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [17392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [17394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [17396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [17398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [17400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [17402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [17404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [17406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [17408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [17410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [17412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [17414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [17416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [17418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [17420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [17422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [17424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [17426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [17428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 5, .production_id = 150), + [17430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [17432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [17434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [17436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), + [17438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [17440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [17442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [17444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [17446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [17448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [17450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [17452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [17454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [17456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [17458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [17460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [17462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [17464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [17466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [17468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [17470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [17472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [17474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [17476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [17478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), + [17480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [17482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [17484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [17486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [17488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [17490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [17492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [17494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [17496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [17498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [17500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [17502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [17504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [17506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [17508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [17510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [17512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [17514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [17516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [17518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [17520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [17522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [17524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [17526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [17528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [17530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [17532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [17534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [17536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [17538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [17540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [17542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [17544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [17546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [17548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [17550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [17552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [17554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [17556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [17558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [17560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [17562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [17564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [17566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [17568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [17570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [17572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [17574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [17576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [17578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9093), + [17580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [17582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [17584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [17586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [17588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [17590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [17592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [17594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [17596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [17598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [17600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [17602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [17604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [17606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [17608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [17610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [17612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [17614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [17616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [17618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [17620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [17622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [17624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [17626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [17628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [17630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [17632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [17634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [17636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [17638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [17640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [17642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [17644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [17646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [17648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [17650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [17652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [17654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [17656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [17658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [17660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [17662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [17664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [17666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [17668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 4, .production_id = 110), + [17670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [17672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [17674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [17676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [17678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [17680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [17682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [17684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [17686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [17688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [17690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [17692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [17694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [17696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [17698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [17700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [17702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [17704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [17706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [17708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [17710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [17712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [17714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [17716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [17718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [17720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [17722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [17724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [17726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [17728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [17730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [17732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10115), + [17734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [17736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [17738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [17740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [17742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [17744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [17746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [17748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [17750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [17752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [17754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [17756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [17758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [17760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [17762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [17764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [17766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [17768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [17770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [17772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [17774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [17776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [17778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [17780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10130), + [17782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [17784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [17786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [17788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [17790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [17792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [17794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [17796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [17798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8779), + [17800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8761), + [17802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [17804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [17806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [17808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [17810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [17812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [17814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8753), + [17816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [17818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [17820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [17822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [17824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [17826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [17828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [17830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [17832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [17834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [17836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [17838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [17840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [17842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8737), + [17844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8734), + [17846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [17848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [17850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [17852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [17854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [17856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [17858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), + [17860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__direct_or_indirect_binding, 3), + [17862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8730), + [17864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [17866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [17868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function_type, 3, .production_id = 79), + [17870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [17872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [17874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [17876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [17878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [17880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [17882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [17884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [17886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [17888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8659), + [17890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [17892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [17894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [17896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [17898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [17900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [17902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [17904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10295), + [17906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [17908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [17910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [17912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [17914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), + [17916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [17918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [17920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [17922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [17924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [17926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [17928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [17930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [17932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [17934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [17936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [17938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [17940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [17942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [17944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [17946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [17948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), + [17950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [17952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [17954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [17956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [17958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10339), + [17960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [17962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [17964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [17966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [17968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [17970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [17972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8671), + [17974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [17976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), + [17978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [17980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [17982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [17984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [17986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [17988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [17990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [17992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [17994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [17996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [17998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [18000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [18002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [18004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [18006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [18008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [18010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10376), + [18012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [18014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [18016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [18018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [18020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [18022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [18024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [18026] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [18028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), + [18030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [18032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [18034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [18036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [18038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [18040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), +}; + +#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/vendor/tree-sitter-swift/src/tree_sitter/parser.h b/vendor/tree-sitter-swift/src/tree_sitter/parser.h new file mode 100644 index 000000000..2b14ac104 --- /dev/null +++ b/vendor/tree-sitter-swift/src/tree_sitter/parser.h @@ -0,0 +1,224 @@ +#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_